QHD reverted

This commit is contained in:
Mirek Fidler 2026-04-18 10:16:13 +02:00
parent a93b234018
commit 0c4992feea
39 changed files with 1012 additions and 1050 deletions

View file

@ -73,9 +73,6 @@ extern const char *sClipFmtsRTF;
id menubar;
double Ctrl::display_scale = 1;
double Ctrl::display_unscale = 1;
void CocoInit(int argc, const char **argv, const char **envptr)
{
Ctrl::GlobalBackBuffer();
@ -105,13 +102,16 @@ void CocoInit(int argc, const char **argv, const char **envptr)
Font::SetFace(0, ToString((CFStringRef)[sysfont familyName]), Font::TTF);
Ctrl::SetUHDEnabled(true);
Ctrl::display_scale = 1;
for (NSScreen *screen in [NSScreen screens])
Ctrl::display_scale = max(Ctrl::display_scale, [screen backingScaleFactor]);
Ctrl::display_unscale = 1 / Ctrl::display_scale;
bool uhd = true;
for (NSScreen *screen in [NSScreen screens]) {
if([screen backingScaleFactor] < 2) {
uhd = false;
break;
}
}
SetUHDMode(uhd);
Font::SetDefaultFont(StdFont(fceil(Ctrl::display_scale * [sysfont pointSize])));
Font::SetDefaultFont(StdFont(fceil(DPI([sysfont pointSize]))));
GUI_DblClickTime_Write(1000 * NSEvent.doubleClickInterval);

View file

@ -6,12 +6,8 @@ private:
static Ptr<Ctrl> lastActive;
static bool always_use_bundled_icon;
static double display_scale;
static double display_unscale;
friend void CocoInit(int argc, const char **argv, const char **envptr);
friend void Coco_PaintCh(void *cgcontext, int type, int value, int state);
protected:
virtual void MMClose() {}
@ -37,5 +33,3 @@ public:
void RegisterCocoaDropFormats();
static Rect GetScreenArea(Point pt);
static double GetDisplayScale() { return display_scale; }
static double GetDisplayUnScale() { return display_unscale; }

View file

@ -12,9 +12,8 @@ void SystemDraw::Init(void *cgContext, void *view)
CGContextSetBlendMode(cgHandle, kCGBlendModeNormal);
CGContextSetTextPosition(cgHandle, 0, 0);
CGContextSetTextDrawingMode(cgHandle, kCGTextFill);
double sc = Ctrl::GetDisplayUnScale();
if(sc != 1)
CGContextScaleCTM(cgHandle, sc, sc);
if(IsUHDMode())
CGContextScaleCTM(cgHandle, 0.5, 0.5);
}
SystemDraw::SystemDraw(void *cgContext, void *nsview)

View file

@ -329,9 +329,12 @@ void ImageDraw::Init(int cx, int cy)
colorSpace, kCGImageAlphaPremultipliedFirst,
NULL, NULL), NULL);
CGContextTranslateCTM(cgHandle, 0, cy);
double sc = Ctrl::GetDisplayScale();
CGContextScaleCTM(cgHandle, sc, -sc);
CGContextTranslateCTM(cgHandle, 0, -cy / sc);
if(IsUHDMode()) {
CGContextScaleCTM(cgHandle, 2, -2);
CGContextTranslateCTM(cgHandle, 0, -cy / 2.0);
}
else
CGContextScaleCTM(cgHandle, 1, -1);
}
ImageDraw::ImageDraw(Size sz)

View file

@ -112,8 +112,10 @@ inline Upp::Rect MakeRect(const CGRect& r, int dpi) {
}
inline CGRect CGRectDPI(const Upp::Rect& r) {
double sc = Upp::GetDPIUnScaleRatio();
return CGRectMake(sc * r.left, sc * r.top, sc * r.GetWidth(), sc * r.GetHeight());
if(Upp::IsUHDMode())
return CGRectMake(0.5 * r.left, 0.5 * r.top, 0.5 * r.GetWidth(), 0.5 * r.GetHeight());
else
return CGRectMake(r.left, r.top, r.GetWidth(), r.GetHeight());
}
#endif

View file

@ -68,12 +68,12 @@ void TopWindow::Init()
int Ctrl::GetGtkTitleBarHeight(const TopWindow *tw)
{
return max(tw->custom_titlebar_cy, DPI(31));
return max(tw->custom_titlebar_cy, IsUHDMode() ? 60 : 31);
}
int Ctrl::GetGtkTitleBarButtonWidth()
{
return DPI(47);
return IsUHDMode() ? 94 : 47;
}
void TopWindow::SyncIcons()

View file

@ -110,12 +110,12 @@ close 232,17,35
int Ctrl::GetWin32TitleBarHeight(const TopWindow *tw)
{
return max(tw->custom_titlebar_cy, DPI(31));
return max(tw->custom_titlebar_cy, IsUHDMode() ? 60 : 31);
}
int Ctrl::GetWin32TitleBarButtonWidth()
{
return DPI(47);
return IsUHDMode() ? 94 : 47;
}
Rect Ctrl::GetTitleBarRect(const TopWindow *win) // TODO (image, cy)

File diff suppressed because one or more lines are too long

View file

@ -17,9 +17,8 @@ void Coco_PaintCh(void *cgcontext, int type, int value, int state)
{
auto dopaint = [&] {
auto cg = (CGContextRef) cgcontext;
double sc = Upp::Ctrl::GetDisplayScale();
if(sc != 1)
CGContextScaleCTM(cg, sc, sc);
if(Upp::IsUHDMode())
CGContextScaleCTM(cg, 2, 2);
CGRect cr = CGRectMake(0, 0, 140, 140);
if(type == COCO_NSCOLOR) {
CGContextSaveGState(cg);

View file

@ -473,11 +473,10 @@ struct ZoomIconMaker : ImageMaker {
ImagePainter w(sz);
w.Clear(RGBAZero());
w.Move(DPI(11), DPI(11)).Line(DPI(16), DPI(16)).Stroke(DPI(2), SBlack());
int scale = GetDPIScale();
w.Circle(DPI(7), DPI(7), scale > DPI_100 ? scale * 3 : 6.5).Stroke(scale - 1, SBlack());
w.Circle(DPI(7), DPI(7), IsUHDMode() ? 12 : 6.5).Stroke(IsUHDMode() ? 3 : 1, SBlack());
String txt = AsString(int(zoom * 100));
Image numbers = scale >= DPI_200 ? CtrlImg::Numbers2() : CtrlImg::Numbers1();
int gcx = 3 + scale / 2;
Image numbers = IsUHDMode() ? CtrlImg::Numbers2() : CtrlImg::Numbers1();
int gcx = IsUHDMode() ? 6 : 4;
Size tsz(txt.GetCount() * gcx, numbers.GetHeight());
int y = DPI(7) - tsz.cy / 2;
int x = DPI(7) - tsz.cx / 2;

View file

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

View file

@ -129,7 +129,7 @@ void Font::SyncStdFont()
}
LLOG("SyncStdFont " << StdFontSize);
SyncDPIScale();
SyncUHDMode();
}
void (*whenSetStdFont)();

View file

@ -81,7 +81,6 @@ class ImageBuffer : NoCopy {
void InitAttrs();
friend class Image;
friend void iml_ReplaceAll(Image& tgt, const Image& src);
public:
void SetKind(int k) { kind = k; }
@ -180,7 +179,7 @@ private:
friend struct scImageMaker;
void SetAuxData(uint64 data);
friend void iml_ReplaceAll(Image& tgt, const Image& src);
friend void iml_ReplaceAll(Image& tgt, Image& src);
public:
Size GetSize() const { return data ? data->buffer.GetSize() : Size(0, 0); }
@ -275,6 +274,13 @@ Vector<ImageIml> UnpackImlDataUncompressed(const String& data);
Vector<ImageIml> UnpackImlData(const void *ptr, int len);
Vector<ImageIml> UnpackImlData(const String& d);
enum {
GUI_MODE_NORMAL = 0,
GUI_MODE_DARK = 1,
GUI_MODE_UHD = 2,
GUI_MODE_DARK_UHD = 3,
};
enum {
IML_IMAGE_FLAG_FIXED = 0x1,
IML_IMAGE_FLAG_FIXED_COLORS = 0x2,
@ -282,31 +288,28 @@ enum {
IML_IMAGE_FLAG_UHD = 0x8,
IML_IMAGE_FLAG_DARK = 0x10,
IML_IMAGE_FLAG_S3 = 0x20,
IML_IMAGE_FLAG_QHD = 0x40,
};
Image MakeImlImage(const String& id, Event<int, ImageIml&, String&> GetRaw);
Image MakeImlImage(const String& id, Function<ImageIml (int, const String&)> GetRaw, dword global_flags);
class Iml {
struct IImage : Moveable<IImage> {
std::atomic<bool> loaded;
Image image;
IImage() { loaded = false; }
IImage() { loaded = false; }
};
struct Data : Moveable<Data> {
const char *data;
int len, count;
};
Vector<Data> data;
Vector<Data> data[4]; // 0 normal, 1 HiDPI - HD, 2 DK - Dark, 3 HDK - HiDPI + dark
VectorMap<String, IImage> map;
const char **name;
dword global_flags = 0;
bool premultiply;
VectorMap<String, IImage> map;
Index<String> id;
int version = 0;
Index<String> ex_name[3]; // 0 HiDPI - HD, 1 DK - Dark, 2 HDK - HiDPI + dark
void Init(int n);
@ -319,15 +322,15 @@ public:
int Find(const String& id) const { return map.Find(id); }
void Set(int i, const Image& img);
ImageIml GetRaw(int i);
ImageIml GetRaw(int mode, int i); // tries to get image for mode, can return Null
ImageIml GetRaw(int mode, const String& id); // tries to get image for mode by id, can return Null
// these methods serve for .iml import
Iml(const char **name, int n);//Deprecated - legacy .iml
void AddData(const byte *data, int len, int count);
void AddData(const byte *data, int len, int count, int mode = 0);
void AddId(int mode1, const char *name);
void Premultiplied() { premultiply = false; }
void GlobalFlag(dword f) { global_flags |= f; }
void Version(int v) { version = v; }
static void ResetAll(); // clears all .iml caches
static void SkinAll(); // reskins all .iml caches

View file

@ -7,7 +7,7 @@ Image WithHotSpots(const Image& m, Point hotspot, Point hotspot2 = Point(0, 0));
Image WithHotSpots(const Image& m, int x1, int y1, int x2, int y2);
Image WithHotSpot(const Image& m, int x1, int y1);
void ScanOpaque(Image& m);
void ScanOpaque(Image& m);
void DstSrcOp(ImageBuffer& dest, Point p, const Image& src, const Rect& srect,
void (*op)(RGBA *t, const RGBA *s, int n), bool co = false);
@ -266,37 +266,19 @@ Image Upscale2x(const Image& src);
Image Downscale2x(const Image& src);
Image Downscale6x(const Image& src);
enum {
DPI_100 = 2, // Normal resolution
DPI_150 = 3, // QHD
DPI_200 = 4, // UHD
DPI_300 = 6,
DPI_600 = 12, // Used for 'master' Image drawn without aliasing
};
void SetUHDMode(bool b = true);
bool IsUHDMode();
void SyncUHDMode();
void SetDPIScale(int scale);
void SyncDPIScale();
// Image DPI(const Image& m);
Image DPI(const Image& img, int expected);
inline int GetDPIScale() { extern int DPIScaleGlobal_; return DPIScaleGlobal_; }
inline double GetDPIScaleRatio() { extern double DPIScaleGlobalF_; return DPIScaleGlobalF_; }
inline double GetDPIUnScaleRatio() { extern double IDPIScaleGlobalF_; return IDPIScaleGlobalF_; }
inline int DPI(int a) { return IsUHDMode() ? 2 * a : a; }
inline double DPI(double a) { return IsUHDMode() ? 2 * a : a; }
inline Size DPI(Size sz) { return IsUHDMode() ? 2 * sz : sz; }
inline Size DPI(int cx, int cy) { return Size(DPI(cx), DPI(cy)); }
inline int DPI(int a) { return (GetDPIScale() * a) >> 1; }
inline double DPI(double a) { return GetDPIScaleRatio() * a; }
inline Size DPI(int cx, int cy) { return Size(DPI(cx), DPI(cy)); }
inline Size DPI(Size sz) { return DPI(sz.cx, sz.cy); }
Image DPISmartRescale(const Image& src, Size sz);
Image DPISmartRescaleCached(const Image& src, Size sz);
int ImlFlagsToDPIScale(int imlflags);
int DPIScaleToImlFlags(int dpiscale);
inline int DPI2(int dpi200val, int dpi100val) {
int scale = GetDPIScale();
return (dpi200val - dpi100val) * (scale - DPI_100) / 2 + dpi100val;
}
inline Image DPI(const Image& a, const Image& b) { return IsUHDMode() ? b : a; }
struct RGBAV {
dword r, g, b, a;

View file

@ -41,13 +41,10 @@ Vector<ImageIml> UnpackImlData(const String& d)
return UnpackImlData(~d, d.GetLength());
}
void iml_ReplaceAll(Image& tgt, const Image& src)
void iml_ReplaceAll(Image& tgt, Image& src)
{ // this very special function replaces all unmodified instances of Image with new content
Image h = src; // make sure src has refcount 1, basically 'clone'
ImageBuffer ib = h;
h = ib;
if(tgt.GetSize() == h.GetSize() && tgt.data && src.data) {
tgt.data->buffer = h.data->buffer;
if(tgt.GetSize() == src.GetSize() && tgt.data) {
tgt.data->buffer = src.data->buffer;
tgt.data->NewSerial();
}
else
@ -75,59 +72,15 @@ void Iml::Skin()
}
}
void Iml::AddData(const byte *s, int len, int count)
{
Data& d = data.Add();
d.data = (const char *)s;
d.len = len;
d.count = count;
data.Shrink();
}
void Iml::AddId(int mode1, const char *name)
{
map.Add(name);
}
ImageIml Iml::GetRaw(int i)
{
for(const Data& d : data) {
if(i < d.count) {
ImageIml m = MakeValue(
[&] {
String key;
RawCat(key, d.data); // all is static
RawCat(key, i);
return key;
},
[&](Value& v) {
Vector<ImageIml>& m = CreateRawValue<Vector<ImageIml>>(v);
m = UnpackImlData(d.data, d.len);
int sz = 0;
for(ImageIml& img : m) {
sz += img.image.GetLength();
if(premultiply)
img.image = Premultiply(img.image);
if(version == 0) // cleanup some bits that are set for legacy reasons
img.flags &= 0x3f;
}
return sz;
}
).To<Vector<ImageIml>>()[i];
m.flags |= global_flags;
return m;
}
i -= d.count;
}
return ImageIml();
}
static StaticMutex sImlLock;
void Iml::Set(int i, const Image& img)
{ // TODO: MT
IImage& m = map[i];
iml_ReplaceAll(m.image, img);
Image h = img; // make sure h has refcount 1, basically 'clone'
ImageBuffer ib = h;
h = ib;
iml_ReplaceAll(m.image, h);
m.loaded = true;
}
@ -137,13 +90,7 @@ Image Iml::Get(int i)
if(!m.loaded) {
Mutex::Lock __(sImlLock);
if(!m.loaded) {
Image h = MakeImlImage(GetId(i), [&](int i, ImageIml& m, String& id) {
id.Clear();
if(i < GetCount()) {
id = map.GetKey(i);
m = GetRaw(i);
}
});
Image h = MakeImlImage(GetId(i), [&](int mode, const String& id) { return GetRaw(mode, id); }, global_flags);
iml_ReplaceAll(m.image, h);
m.loaded = true;
}
@ -151,94 +98,89 @@ Image Iml::Get(int i)
return m.image;
}
int ImlFlagsToDPIScale(int imlflags) {
int scale = DPI_100;
if(imlflags & IML_IMAGE_FLAG_UHD)
scale = DPI_200;
if(imlflags & IML_IMAGE_FLAG_S3)
scale *= 3;
if(imlflags & IML_IMAGE_FLAG_QHD)
scale++;
return scale;
}
int DPIScaleToImlFlags(int dpiscale) {
return dpiscale == DPI_600 ? IML_IMAGE_FLAG_S3|IML_IMAGE_FLAG_UHD
: get_i(dpiscale, 0, 0,
0, // DPI_100
IML_IMAGE_FLAG_QHD, // DPI_150
IML_IMAGE_FLAG_UHD, // DPI_200
IML_IMAGE_FLAG_UHD|IML_IMAGE_FLAG_QHD, // 'DPI_250' - not used
IML_IMAGE_FLAG_S3 // DPI_300
);
}
Image MakeImlImage(const String& id, Event<int, ImageIml&, String&> GetRaw)
ImageIml Iml::GetRaw(int mode, int i)
{
int ii = 0;
ImageIml best;
ImageIml exact_scale;
int scale = GetDPIScale();
bool dark = IsDarkTheme();
int best_dark = 10; // minimize this
int best_scale = -1; // maximize this
for(;;) {
ImageIml im;
String iid;
GetRaw(ii++, im, iid);
if(IsNull(iid))
break;
int q = iid.Find("__");
if(q > 0)
iid.Trim(q);
if(iid == id) {
bool isdark = im.flags & IML_IMAGE_FLAG_DARK;
int iscale = ImlFlagsToDPIScale(im.flags);
if(isdark == dark && iscale == scale) // found perfect match
return im.image;
if(iscale == scale)
exact_scale = im;
int idark = !!isdark - dark;
if(CombineCompare(best_dark, idark)(iscale, best_scale) > 0) { // prioritize color, then find highest scale
best = im;
best_dark = idark;
best_scale = iscale;
Mutex::Lock __(sImlLock);
if(data[mode].GetCount()) {
int ii = 0;
while(ii < data[mode].GetCount()) {
const Data& d = data[mode][ii];
if(i < d.count) {
static const char *cached_data[4];
static Vector<ImageIml> cached[4];
if(cached_data[mode] != d.data) { // cache single .iml
cached_data[mode] = d.data;
cached[mode] = UnpackImlData(d.data, d.len);
if(premultiply)
for(int i = 0; i < cached[mode].GetCount(); i++)
cached[mode][i].image = Premultiply(cached[mode][i].image);
}
return cached[mode][i];
}
i -= d.count;
ii++;
}
}
return ImageIml();
}
auto AdjustColor0 = [&](const Image& img, dword flags) { // flip light to dark if needed
if(dark && !(flags & (IML_IMAGE_FLAG_FIXED|IML_IMAGE_FLAG_FIXED_COLORS)))
return DarkTheme(img);
return img;
};
ImageIml Iml::GetRaw(int mode, const String& id)
{
ASSERT(mode >= 0 && mode < 4);
int ii = -1;
if(mode == 0)
ii = map.Find(id);
else
ii = ex_name[mode - 1].Find(id);
return ii >= 0 ? GetRaw(mode, ii) : ImageIml();
}
if(best_dark && !IsNull(exact_scale.image)) { // dark color version not found, but we have exact scale
return AdjustColor0(exact_scale.image, exact_scale.flags);
}
auto AdjustColor = [&](const Image& m) { // flip light to dark if needed
return best_dark ? AdjustColor0(m, best.flags) : m;
Image MakeImlImage(const String& id, Function<ImageIml(int, const String& id)> GetRaw, dword global_flags)
{
int mode = IsUHDMode() * GUI_MODE_UHD + IsDarkTheme() * GUI_MODE_DARK;
const static int mode_candidates[4][4] = {
{ GUI_MODE_NORMAL, GUI_MODE_UHD, -1 },
{ GUI_MODE_DARK, GUI_MODE_DARK_UHD, GUI_MODE_NORMAL, GUI_MODE_UHD },
{ GUI_MODE_UHD, GUI_MODE_NORMAL, -1 },
{ GUI_MODE_DARK_UHD, GUI_MODE_DARK, GUI_MODE_UHD, GUI_MODE_NORMAL }
};
if(best.flags & (IML_IMAGE_FLAG_FIXED|IML_IMAGE_FLAG_FIXED_SIZE))
return AdjustColor(best.image);
ImageIml im;
Image original;
const int *candidates = mode_candidates[mode];
if(best_scale == DPI_600) {
if(scale == DPI_100)
return AdjustColor(Downscale6x(best.image));
if(scale == DPI_150)
return AdjustColor(Downscale2x(DownSample2x(best.image)));
if(scale == DPI_200)
return AdjustColor(DownSample3x(best.image));
if(scale == DPI_300)
return AdjustColor(DownSample2x(best.image));
for(int i = 0; i < 4 && candidates[i] >= 0; i++) {
int cmode = candidates[i];
auto Mode = [&](dword m, const char *s) { return cmode & m ? String(s) : String(); };
im = GetRaw(GUI_MODE_NORMAL, id + Mode(GUI_MODE_UHD, "__UHD") + Mode(GUI_MODE_DARK, "__DARK"));
if(IsNull(im.image))
im = GetRaw(cmode, id); // try alternative iml
if(!IsNull(im.image)) {
original = im.image;
if(im.flags & IML_IMAGE_FLAG_S3)
im.image = DownSample3x(im.image);
break;
}
}
return DPISmartRescale(best.image, scale * best.image.GetSize() / best_scale);
if(IsNull(im.image))
return Null;
if(!(mode & GUI_MODE_UHD) && (im.flags & IML_IMAGE_FLAG_UHD) && !((im.flags | global_flags) & (IML_IMAGE_FLAG_FIXED|IML_IMAGE_FLAG_FIXED_SIZE))) {
if(im.flags & IML_IMAGE_FLAG_S3)
im.image = Downscale6x(original);
else
im.image = Downscale2x(im.image);
}
if((mode & GUI_MODE_UHD) && !(im.flags & IML_IMAGE_FLAG_UHD) && !((im.flags | global_flags) & (IML_IMAGE_FLAG_FIXED|IML_IMAGE_FLAG_FIXED_SIZE)))
im.image = Upscale2x(im.image);
if((mode & GUI_MODE_DARK) && !(im.flags & IML_IMAGE_FLAG_DARK) && !((im.flags | global_flags) & (IML_IMAGE_FLAG_FIXED|IML_IMAGE_FLAG_FIXED_COLORS)))
im.image = DarkTheme(im.image);
ScanOpaque(im.image);
return im.image;
}
Iml::Iml(const char **name, int n)
@ -248,6 +190,20 @@ Iml::Iml(const char **name, int n)
Init(n);
}
void Iml::AddData(const byte *s, int len, int count, int mode)
{
Data& d = data[mode].Add();
d.data = (const char *)s;
d.len = len;
d.count = count;
data[mode].Shrink();
}
void Iml::AddId(int mode1, const char *name)
{
ex_name[mode1].Add(name);
}
void Iml::ResetAll()
{
for(int i = 0; i < GetImlCount(); i++)

View file

@ -102,50 +102,18 @@ Image Upscale2x(const Image& src)
return Image(h);
}
Image DPIRescale(const Image& src, Size sz)
Image Downscale2x(const Image& src)
{
if(IsNull(src))
return src;
Size s2 = src.Get2ndSpot();
Size sz0 = src.GetSize();
if(sz0 == sz)
return src;
// When 2nd spot is defined, it is likely Chameleon rescaling item (e.g. button)
// in that case, filtering by smarter rescale methods could lead to artifacts (stay BILINEAR)
Image m = RescaleFilter(src, sz, s2.cx > 0 || s2.cy > 0 ? FILTER_BILINEAR : FILTER_LANCZOS3);
Size s2 = src.Get2ndSpot(); // see above...
Image m = RescaleFilter(src, src.GetSize() / 2, s2.cx > 0 || s2.cy > 0 ? FILTER_BILINEAR : FILTER_LANCZOS3);
ImageBuffer h(m);
h.SetHotSpot(s2 * sz / sz0);
h.Set2ndSpot(src.Get2ndSpot() * sz / sz0);
h.SetHotSpot(s2 / 2);
h.Set2ndSpot(src.Get2ndSpot() / 2);
return Image(h);
}
Image DPISmartRescale(const Image& src, Size sz)
{
Image m = src;
for(;;) {
Size isz = m.GetSize();
if(isz.cx * isz.cy == 0)
return Null;
if(isz.cx >= sz.cx && isz.cy >= sz.cy)
break;
m = Upscale2x(m);
}
return DPIRescale(m, sz);
}
Image DPISmartRescaleCached(const Image& src, Size sz)
{
return MakeImage(
[&] { StringBuffer s; RawCat(s, src.GetSerialId()); RawCat(s, sz); return (String)s; },
[&] { return DPISmartRescale(src, sz); }
);
}
Image Downscale2x(const Image& src)
{
return DPIRescale(src, src.GetSize() / 2);
}
Image Downscale6x(const Image& src)
{
if(IsNull(src))
@ -158,26 +126,31 @@ Image Downscale6x(const Image& src)
return Image(h);
}
int DPIScaleGlobal_ = 2;
double DPIScaleGlobalF_ = 1;
double IDPIScaleGlobalF_ = 1;
static bool sUHDMode;
void SetDPIScale(int scale)
void SetUHDMode(bool b)
{
Iml::ResetAll();
DPIScaleGlobal_ = scale;
DPIScaleGlobalF_ = 0.5 * scale;
IDPIScaleGlobalF_ = 1 / DPIScaleGlobalF_;
sUHDMode = b;
}
void SyncDPIScale()
bool IsUHDMode()
{
int fcy = GetStdFontCy();
int scale = clamp((fcy + 3) / 8, 2, 5);
if(scale == 5)
scale = DPI_300;
if(scale != GetDPIScale())
SetDPIScale(scale);
return sUHDMode;
}
void SyncUHDMode()
{
bool uhd = GetStdFontCy() > 24;
if(uhd != IsUHDMode())
SetUHDMode(uhd);
}
Image DPI(const Image& img, int expected)
{
if(img.GetSize().cy <= expected && IsUHDMode())
return AdjustImage(img, Upscale2x);
return img;
}
};

View file

@ -1,16 +1,10 @@
//#BLITZ_APPROVE
#ifdef VERSION
#undef VERSION
#endif
#define IMAGE_META(k, v)
#define IMAGE_VERSION(v)
#define IMAGE_SCAN(s)
#define IMAGE_PACKED(n, d)
#define PREMULTIPLIED
#define VERSION(x)
#define IMAGE_BEGIN_DATA
#define IMAGE_DATA(a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf)
#define IMAGE_END_DATA(n, c)
@ -56,7 +50,6 @@ public:
#undef IMAGE_SCAN
#undef IMAGE_PACKED
#undef IMAGE_META
#undef IMAGE_VERSION
#undef IMAGE_BEGIN_DATA
#undef IMAGE_END_DATA
@ -65,8 +58,4 @@ public:
#ifndef IMAGE_KEEP
#undef IMAGECLASS
#undef IMAGEFILE
#undef PREMULTIPLIED
#undef VERSION
#endif

View file

@ -1,14 +1,8 @@
//#BLITZ_APPROVE
#ifdef VERSION
#undef VERSION
#endif
#define VERSION(v)
#define PREMULTIPLIED
#define IMAGE_META(k, v)
#define PREMULTIPLIED
#define IMAGE_ID(n)
#define IMAGE_BEGIN_DATA
#define IMAGE_END_DATA(n, c)
@ -71,6 +65,30 @@ UPP::Iml& IMAGECLASS::Iml() {
#include IMAGEFILE
#ifdef IMAGEFILE_DARK
#undef IMAGE_ID
#undef IMAGE_END_DATA
#define IMAGE_ID(n) iml.AddId(0, #n);
#define IMAGE_END_DATA(n, c) }; iml.AddData(data, n, c, 1); }
#include IMAGEFILE_DARK
#endif
#ifdef IMAGEFILE_UHD
#undef IMAGE_ID
#undef IMAGE_END_DATA
#define IMAGE_ID(n) iml.AddId(1, #n);
#define IMAGE_END_DATA(n, c) }; iml.AddData(data, n, c, 2); }
#include IMAGEFILE_UHD
#endif
#ifdef IMAGEFILE_DARK_UHD
#undef IMAGE_ID
#undef IMAGE_END_DATA
#define IMAGE_ID(n) iml.AddId(2, #n);
#define IMAGE_END_DATA(n, c) }; iml.AddData(data, n, c, 3); }
#include IMAGEFILE_DARK_UHD
#endif
#undef IMAGE_BEGIN_DATA
#undef IMAGE_END_DATA
#undef IMAGE_DATA
@ -82,13 +100,10 @@ UPP::Iml& IMAGECLASS::Iml() {
#undef PREMULTIPLIED
#define PREMULTIPLIED iml.Premultiplied();
#undef VERSION
#define VERSION(v) iml.Version(v);
#include IMAGEFILE
#undef PREMULTIPLIED
#define PREMULTIPLIED
#undef VERSION
#define VERSION(v)
}
return iml;
}
@ -161,9 +176,6 @@ static COMBINE(IMAGECLASS, __Reg) COMBINE(IMAGECLASS, ___Reg);
#undef IMAGE_META
#undef PREMULTIPLIED
#undef VERSION
#ifdef IMAGEFILE_UHD
#undef IMAGEFILE_UHD
#endif

View file

@ -317,16 +317,5 @@ CKWISE. Flip mode values are compatible with Raster`::GetOrientation
and are equal to EXIF orientation `- 1. This function is intended
to flip Image to correct orientation (usually JPEG from digital
camera).&]
[s3; &]
[s4; &]
[s5;:Upp`:`:DPISmartRescale`(const Image`&`,Size`): Image [* DPISmartRescale]([@(0.0.255) c
onst] Image[@(0.0.255) `&] [*@3 src], Size [*@3 sz])&]
[s2;%% Intended to rescale `"not fitting`" icons to current GUI scaling,
using variety of `"smart`" methods (xBR upscaling, Lancosz 3,
bilienear downscaling) to maintain the acceptable appearance.&]
[s3; &]
[s4; &]
[s5;:Upp`:`:DPISmartRescaleCached`(const Image`&`,Size`): Image [* DPISmartRescaleCache
d]([@(0.0.255) const] Image[@(0.0.255) `&] [*@3 src], Size [*@3 sz])&]
[s2;%% Same as DPISmartRescale, with added caching of results.&]
[s2;%% &]
[s0;%% ]]

View file

@ -0,0 +1,52 @@
topic "Ultra High Definition Displays support";
[i448;a25;kKO9;2 $$1,0#37138531426314131252341829483380:class]
[l288;2 $$2,2#27521748481378242620020725143825:desc]
[0 $$3,0#96390100711032703541132217272105:end]
[H6;0 $$4,0#05600065144404261032431302351956:begin]
[i448;a25;kKO9;2 $$5,0#37138531426314131252341829483370:item]
[l288;a4;*@5;1 $$6,6#70004532496200323422659154056402:requirement]
[l288;i1121;b17;O9;~~~.1408;2 $$7,0#10431211400427159095818037425705:param]
[i448;b42;O9;2 $$8,8#61672508125594000341940100500538:tparam]
[b42;2 $$9,9#13035079074754324216151401829390:normal]
[2 $$0,0#00000000000000000000000000000000:Default]
[{_}
[ {{10000@(113.42.0) [s0;%% [*@7;4 Ultra High Definition Displays support]]}}&]
[s0;i448;a25;kKO9;@(0.0.255) &]
[ {{10000F(128)G(128)@1 [s0;%% [* Function List]]}}&]
[s0;%% &]
[s5;:Upp`:`:SetUHDMode`(bool`): [@(0.0.255) void]_[* SetUHDMode]([@(0.0.255) bool]_[*@3 b])&]
[s2;%% Sets the UHD mode.&]
[s3;%% &]
[s4; &]
[s5;:Upp`:`:IsUHDMode`(`): [@(0.0.255) bool]_[* IsUHDMode]()&]
[s2;%% Returns true if UHD mode is active.&]
[s3; &]
[s4; &]
[s5;:Upp`:`:SyncUHDMode`(`): [@(0.0.255) void]_[* SyncUHDMode]()&]
[s2;%% Sets the UHD mode if current GUI font is bigger than 27 pixels
(in windows, that corresponds to text size bigger than approximately
160%).&]
[s3; &]
[s4; &]
[s5;:Upp`:`:DPI`(const Upp`:`:Image`&`): [_^Upp`:`:Image^ Image]_[* DPI]([@(0.0.255) const]_
[_^Upp`:`:Image^ Image][@(0.0.255) `&]_[*@3 img])&]
[s2;%% Eventually upscales or downscales [%-*@3 img] based on its UHD
flag and current mode. Standard images are upscaled 2x in UHD
mode, UHD images are downscaled 2x in standard mode.&]
[s3;%% &]
[s4; &]
[s5;:Upp`:`:DPI`(const Upp`:`:Image`&`,int`): [_^Upp`:`:Image^ Image]_[* DPI]([@(0.0.255) c
onst]_[_^Upp`:`:Image^ Image][@(0.0.255) `&]_[*@3 img], [@(0.0.255) int]_[*@3 expected])&]
[s2;%% Upscales [%-*@3 img] 2x if its height is less than or equal
to [%-*@3 expected] and UHD mode is active.&]
[s3;%% &]
[s4; &]
[s5;:Upp`:`:DPI`(int`): [@(0.0.255) int]_[* DPI]([@(0.0.255) int]_[*@3 a])&]
[s2;%% Returns 2 `* [%-*@3 a] if UHD is active and [%-*@3 a] otherwise.&]
[s3;%% &]
[s4; &]
[s5;:Upp`:`:DPI`(Upp`:`:Size`): [_^Upp`:`:Size^ Size]_[* DPI]([_^Upp`:`:Size^ Size]_[*@3 sz])
&]
[s2;%% Returns 2 `* [%-*@3 sz] if UHD is active and [%-*@3 sz] otherwise.&]
[s3;%% &]
[s0;%% ]]

File diff suppressed because one or more lines are too long

View file

@ -135,10 +135,8 @@ Size SplashCtrl::MakeLogo(Ctrl& parent, Array<Ctrl>& ctrl, bool splash)
#endif
if(items.GetCount())
h << classes.GetCount() << " classes, " << items.GetCount() << " items\n";
int scale = GetDPIScale();
h << decode(scale, DPI_150, "QHD ", DPI_200, "UHD ", DPI_300, "XHD ",
AsString(50 * scale) + "% ");
if(IsUHDMode())
h << "UHD ";
#ifdef GUI_GTK
if(Ctrl::IsXWayland())

View file

@ -113,6 +113,12 @@ void IconDes::SettingBar(Bar& bar)
{
using namespace IconDesKeys;
Slot *c = IsCurrent() ? &Current() : NULL;
bar.Add("Show UHD/Dark syntetics", IconDesImg::ShowOther(),
[=] { show_synthetics = !show_synthetics; show_downscaled = false; SyncShow(); SetBar(); })
.Check(show_synthetics);
bar.Add("Show downscaled", IconDesImg::ShowSmall(),
[=] { show_downscaled = !show_downscaled; show_synthetics = false; SyncShow(); SetBar(); })
.Check(show_downscaled);
bar.Add("Show secondary grid", IconDesImg::grid2(),
[=] { show_grid2 = !show_grid2; Refresh(); SetBar(); })
.Check(show_grid2);
@ -334,14 +340,14 @@ void IconDes::SerializeSettings(Stream& s)
SetBar();
if(version >= 2)
s % ImgFile();
bool b = false;
if(version >= 3) {
s % b;
bool b = false;
s % b % show_downscaled;
}
if(version >= 4)
s % paste_mode;
if(version >= 5)
s % b;
s % show_synthetics;
if(version >= 6)
s % show_grid2;
if(version >= 7)

View file

@ -56,6 +56,8 @@ void IconDes::SyncShow()
Slot& c = Current();
iconshow.image = c.image;
iconshow.flags = c.flags;
iconshow.show_downscaled = show_downscaled;
iconshow.show_synthetics = show_synthetics;
ilist.Set(2, RawToValue(MakeTuple(c.image, c.flags)));
}
iconshow.Refresh();

View file

@ -193,6 +193,8 @@ private:
bool doselection = false;
bool selectrect = false;
int paste_mode;
bool show_synthetics = true;
bool show_downscaled = false;
bool show_grid2 = true;
bool antialiased = false;
int fill_type = 0;

View file

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

View file

@ -1,20 +1,20 @@
LAYOUT(ImageLayout, 168, 328)
LAYOUT(ImageLayout, 168, 252)
ITEM(Upp::Label, dv___0, SetLabel(t_("Name")).LeftPosZ(8, 40).TopPosZ(8, 19))
ITEM(Upp::EditString, name, LeftPosZ(52, 108).TopPosZ(8, 19))
ITEM(Upp::Label, dv___2, SetLabel(t_("Size")).LeftPosZ(8, 40).TopPosZ(32, 19))
ITEM(Upp::EditIntSpin, cx, Min(1).Max(8192).LeftPosZ(52, 44).TopPosZ(32, 19))
ITEM(Upp::Label, dv___4, SetLabel(t_("x")).LeftPosZ(100, 12).TopPosZ(32, 16))
ITEM(Upp::EditIntSpin, cy, Min(1).Max(8192).LeftPosZ(116, 44).TopPosZ(32, 19))
ITEM(Upp::Option, fixed, SetLabel(t_("Fixed")).LeftPosZ(8, 156).TopPosZ(60, 16))
ITEM(Upp::Option, fixed_colors, SetLabel(t_("Fixed colors")).LeftPosZ(12, 156).TopPosZ(76, 16))
ITEM(Upp::Option, fixed_size, SetLabel(t_("Fixed size")).LeftPosZ(12, 156).TopPosZ(92, 16))
ITEM(Upp::Option, dark, SetLabel(t_("Dark variant")).LeftPosZ(8, 156).TopPosZ(228, 16))
ITEM(Upp::Option, exp, SetLabel(t_("Export as icon.ico and .png")).LeftPosZ(8, 160).TopPosZ(248, 16))
ITEM(Upp::Button, ok, SetLabel(t_("OK")).LeftPosZ(28, 64).TopPosZ(296, 24))
ITEM(Upp::Button, cancel, SetLabel(t_("Cancel")).LeftPosZ(96, 64).TopPosZ(296, 24))
ITEM(Upp::Label, estimated_size, SetAlign(Upp::ALIGN_RIGHT).LeftPosZ(8, 156).TopPosZ(272, 19))
ITEM(Upp::LabelBox, dv___14, SetLabel(t_("Target resolution")).LeftPosZ(8, 152).TopPosZ(112, 108))
ITEM(Upp::Switch, scale, SetLabel(t_("600% (master)\n100% HD\n150% QHD\n200% UHD\n300% XHD")).LeftPosZ(16, 140).TopPosZ(132, 84))
ITEM(Upp::Option, fixed, SetLabel(t_("Fixed")).LeftPosZ(8, 156).TopPosZ(56, 16))
ITEM(Upp::Option, fixed_colors, SetLabel(t_("Fixed colors")).LeftPosZ(12, 156).TopPosZ(72, 16))
ITEM(Upp::Option, fixed_size, SetLabel(t_("Fixed size")).LeftPosZ(12, 156).TopPosZ(88, 16))
ITEM(Upp::Option, uhd, SetLabel(t_("UHD variant")).LeftPosZ(8, 156).TopPosZ(112, 16))
ITEM(Upp::Option, dark, SetLabel(t_("Dark variant")).LeftPosZ(8, 156).TopPosZ(128, 16))
ITEM(Upp::Option, s3, SetLabel(t_("Supersampled 3x")).LeftPosZ(8, 156).TopPosZ(152, 16))
ITEM(Upp::Option, exp, SetLabel(t_("Export as icon.ico and .png")).LeftPosZ(8, 160).TopPosZ(176, 16))
ITEM(Upp::Button, ok, SetLabel(t_("OK")).LeftPosZ(28, 64).TopPosZ(220, 24))
ITEM(Upp::Button, cancel, SetLabel(t_("Cancel")).LeftPosZ(96, 64).TopPosZ(220, 24))
ITEM(Upp::Label, estimated_size, SetAlign(Upp::ALIGN_RIGHT).LeftPosZ(8, 156).TopPosZ(196, 19))
END_LAYOUT
LAYOUT(ImageSizeLayout, 168, 68)

View file

@ -46,8 +46,9 @@ void AlphaImageInfo::Serialize(Stream& stream)
stream % size % hotspot % encoding;
}
void ScanIML(CParser& parser, Array<ImlImage>& out_images, VectorMap<String, String>& out_settings)
{ // This is for backward compatibility with the very old iml format
void ScanIML(CParser& parser, Array<ImlImage>& out_images,
VectorMap<String, String>& out_settings)
{
String name, bid;
bool exp = false;
while(!parser.IsEof())
@ -188,12 +189,6 @@ bool LoadIml(const String& data, Array<ImlImage>& img, int& format)
format = 0;
try {
bool premultiply = !p.Id("PREMULTIPLIED");
int version = 0;
if(p.Id("VERSION")) {
p.Char('(');
version = p.ReadNumber();
p.Char(')');
}
Vector<String> name;
Vector<bool> exp;
while(p.Id("IMAGE_ID")) {
@ -247,19 +242,10 @@ bool LoadIml(const String& data, Array<ImlImage>& img, int& format)
for(int i = 0; i < count; i++) {
ImlImage& c = img.Add();
(ImageIml &)c = m[i];
if(version == 0)
c.flags &= ~IML_IMAGE_FLAG_QHD;
c.name = name[ii];
c.exp = exp[ii++];
c.name.TrimEnd("__DARK");
c.name.TrimEnd("__UHD");
c.name.TrimEnd("__100");
c.name.TrimEnd("__150");
c.name.TrimEnd("__200");
c.name.TrimEnd("__250");
c.name.TrimEnd("__300");
c.name.TrimEnd("__350");
c.name.TrimEnd("__600");
if(premultiply)
c.image = Premultiply(c.image);
}
@ -286,16 +272,16 @@ bool LoadIml(const String& data, Array<ImlImage>& img, int& format)
String SaveIml(const Array<ImlImage>& iml, int format, const String& eol) {
StringStream out;
out << "PREMULTIPLIED" << eol;
out << "VERSION(20260403)" << eol;
Index<String> names;
Index<String> saved_names;
for(int i = 0; i < iml.GetCount(); i++) {
const ImlImage& c = iml[i];
names.FindAdd(c.name);
out << "IMAGE_ID(" << c.name;
int scale = ImlFlagsToDPIScale(c.flags);
if(saved_names.Find(c.name) < 0)
if((c.flags & (IML_IMAGE_FLAG_UHD|IML_IMAGE_FLAG_DARK)) == 0)
saved_names.FindAdd(c.name);
else
out << "__" << AsString(scale * 50);
if(c.flags & IML_IMAGE_FLAG_UHD)
out << "__UHD";
if(c.flags & IML_IMAGE_FLAG_DARK)
out << "__DARK";
out << ")";
@ -304,6 +290,10 @@ String SaveIml(const Array<ImlImage>& iml, int format, const String& eol) {
out << eol;
}
for(String id : names) // allow UHD versions to be downscaled
if(saved_names.Find(id) < 0)
out << "IMAGE_ID(" << id << ")" << eol;
int ii = 0;
while(ii < iml.GetCount()) {
int bl = 0;

View file

@ -13,10 +13,12 @@ String IconDes::FormatImageName(const Slot& c)
if(c.flags & IML_IMAGE_FLAG_FIXED_SIZE)
r << " Sz";
}
int scale = ImlFlagsToDPIScale(c.flags);
r << decode(scale, DPI_100, " 100%", DPI_150, " 150%", DPI_200, " 200%", DPI_300, " 300%", "");
if(c.flags & IML_IMAGE_FLAG_UHD)
r << " HD";
if(c.flags & IML_IMAGE_FLAG_DARK)
r << " Dk";
if(c.flags & IML_IMAGE_FLAG_S3)
r << " S3";
if(c.exp)
r << " X";
return r;
@ -71,9 +73,8 @@ void IconDes::PlaceDlg(TopWindow& dlg)
void IconDes::PrepareImageDlg(WithImageLayout<TopWindow>& dlg)
{
CtrlLayoutOKCancel(dlg, "New image");
dlg.cx <<= 96;
dlg.cy <<= 96;
dlg.scale <<= 0;
dlg.cx <<= 16;
dlg.cy <<= 16;
if(IsCurrent()) {
Size sz = GetImageSize();
dlg.cx <<= sz.cx;
@ -83,11 +84,11 @@ void IconDes::PrepareImageDlg(WithImageLayout<TopWindow>& dlg)
dlg.fixed <<= !!(flags & IML_IMAGE_FLAG_FIXED);
dlg.fixed_colors <<= !!(flags & IML_IMAGE_FLAG_FIXED_COLORS);
dlg.fixed_size <<= !!(flags & IML_IMAGE_FLAG_FIXED_SIZE);
dlg.uhd <<= !!(flags & IML_IMAGE_FLAG_UHD);
dlg.dark <<= !!(flags & IML_IMAGE_FLAG_DARK);
int scale = ImlFlagsToDPIScale(flags);
dlg.scale = decode(scale, DPI_100, 1, DPI_150, 2, DPI_200, 3, DPI_300, 4, 0);
dlg.s3 <<= !!(flags & IML_IMAGE_FLAG_S3);
for(Ctrl& q : dlg)
if(dynamic_cast<Option *>(&q))
@ -112,9 +113,12 @@ dword IconDes::GetFlags(WithImageLayout<TopWindow>& dlg)
flags |= IML_IMAGE_FLAG_FIXED_COLORS;
if(dlg.fixed_size)
flags |= IML_IMAGE_FLAG_FIXED_SIZE;
if(dlg.uhd)
flags |= IML_IMAGE_FLAG_UHD;
if(dlg.dark)
flags |= IML_IMAGE_FLAG_DARK;
flags |= DPIScaleToImlFlags(get_i((int)~dlg.scale, DPI_600, DPI_100, DPI_150, DPI_200, DPI_300));
if(dlg.s3)
flags |= IML_IMAGE_FLAG_S3;
return flags;
}

View file

@ -9,52 +9,99 @@ void IconShow::Paint(Draw& w)
Size sz = GetSize();
static Color color[] = { White(), Black(), WhiteGray(), LtGray(), Gray(),
Yellow(), Brown(), Red(), Green(), Blue(), Cyan(), Magenta() };
int image_scale = ImlFlagsToDPIScale(flags);
auto GetSize = [&](int scale) {
return scale * image.GetSize() / image_scale;
};
auto GetScaled = [&](int scale) {
if(image_scale == DPI_600) {
if(scale == DPI_100)
return Downscale6x(image);
if(scale == DPI_150)
return Downscale2x(DownSample2x(image));
if(scale == DPI_200)
return DownSample3x(image);
if(scale == DPI_300)
return DownSample2x(image);
}
return DPISmartRescale(image, scale * image.GetSize() / image_scale);
};
Image image = this->image;
if(show_downscaled || show_synthetics)
if(flags & IML_IMAGE_FLAG_S3)
image = DownSample3x(image, true);
Size sz300 = GetSize(DPI_300);
if(sz300.cx * sz300.cy > 20000) {
w.DrawRect(sz, SColorPaper);
w.DrawImage(DPI(5), DPI(5), image);
return;
Size msz = image.GetSize();
Size isz = msz;
int gap = DPI(8);
double fits = msz.cx * msz.cy < 20000;
if(fits) {
if(show_downscaled) {
isz.cx += (isz.cx + 1) / 2 + gap;
isz.cy += max(isz.cy, (isz.cy + 1) / 2 + (isz.cy + 2) / 3 + gap);
}
if(show_synthetics) {
if(flags & IML_IMAGE_FLAG_UHD) {
isz.cx += isz.cx + gap;
isz.cy += (isz.cy + 1) / 2 + gap;
if(IsUHDMode())
isz.cy += msz.cy + gap;
}
else {
isz.cx += 3 * isz.cx + gap;
isz.cy += 2 * isz.cy + gap;
}
}
}
int n = min(__countof(color), sz.cx / (sz300.cx + DPI(15)));
int cx = sz.cx / n;
int y = DPI(5);
for(int i = 0; i < n; i++)
w.DrawRect(i * cx, 0, cx + n, sz.cy, color[i]);
for(int sc : { DPI_100, DPI_150, DPI_200, DPI_300 }) {
Size isz = GetSize(sc);
Image m1 = GetScaled(sc);
Image m2 = DarkTheme(m1);
for(int i = 0; i < n; i++) {
int x = i * cx;
if(image_scale == sc)
w.DrawRect(x + DPI(1), y, DPI(2), isz.cy, SLtBlue);
w.DrawImage(x + DPI(5), y, m1);
w.DrawImage(x + sz300.cx + DPI(10), y, m2);
int n = isz.cx ? clamp(sz.cx / isz.cx, 1, __countof(color)) : 1;
int ncx = sz.cx / n;
Image m2, m3;
Image dk, s2, s2dk, s22, s2dk2;
if(fits) {
if(msz.cx && show_downscaled) {
m2 = DownSample2x(image);
m3 = DownSample3x(image);
}
if(show_synthetics) {
dk = DarkTheme(image);
if(flags & IML_IMAGE_FLAG_UHD) {
s2 = Downscale2x(image);
s2dk = Downscale2x(DarkTheme(image));
if(IsUHDMode()) {
s22 = Magnify(s2, 2, 2, true);
s2dk2 = Magnify(s2dk, 2, 2, true);
}
}
else {
s2 = Upscale2x(image);
s2dk = Upscale2x(DarkTheme(image));
}
}
}
else
isz = msz;
for(int i = 0; i < n; i++) {
int x = i * ncx;
int cx = (i + 1) * ncx - x;
w.DrawRect(x, 0, cx, sz.cy, color[i]);
if(msz.cx) {
Point pos(x + (cx - isz.cx) / 2, (sz.cy - isz.cy) / 2);
if(fits) {
int x2 = pos.x + isz.cx / 2;
if(show_synthetics) {
w.DrawImage(pos.x, pos.y, image);
w.DrawImage(x2, pos.y, dk);
pos.y += msz.cy + gap;
w.DrawImage(pos.x, pos.y, s2);
w.DrawImage(x2, pos.y, s2dk);
if((flags & IML_IMAGE_FLAG_UHD) && IsUHDMode()) {
pos.y += (msz.cy + 1) / 2 + gap;
w.DrawImage(pos.x, pos.y, s22);
w.DrawImage(x2, pos.y, s2dk2);
}
}
else {
int y = pos.y + (isz.cy - msz.cy) / 2;
w.DrawImage(pos.x, y, image);
if(show_downscaled) {
w.DrawImage(x2, y, m2);
w.DrawImage(x2, y + (msz.cx + 1) / 2 + gap, m3);
}
}
}
else {
w.Clip(x, 0, isz.cx, sz.cy);
w.DrawImage(x + DPI(2), DPI(2), image);
w.End();
}
}
y += isz.cy + DPI(5);
}
}

View file

@ -101,7 +101,7 @@ void IconDes::Text()
textdlg.NoCenter().SetRect(r);
}
Paste(CreateImage(Size(1, 1), RGBAZero()));
textdlg.nonaa = ImlFlagsToDPIScale(Current().flags) == DPI_600;
textdlg.nonaa = Current().flags & IML_IMAGE_FLAG_S3;
textdlg.WhenClose = THISBACK(CloseText);
textdlg <<= THISBACK(PasteText);
textdlg.Open();

View file

@ -91,13 +91,9 @@ void InsertImageDlg::Load()
id.TrimEnd("__DARK");
id.TrimEnd("__UHD");
if(map.Find(id) < 0) {
Image m = MakeImlImage(id, [&](int ii, ImageIml& m, String& id) {
id.Clear();
if(ii < img.GetCount()) {
id = img.GetKey(ii);
m = img[ii];
}
});
Image m = MakeImlImage(id, [&](int mode, const String& id) {
return mode ? ImlImage() : img.Get(id, ImlImage());
}, 0);
Size isz = m.GetSize();
if(max(isz.cx, isz.cy) > DPI(32))
m = Rescale(m, GetFitSize(isz, DPI(32), DPI(32)));

View file

@ -82,10 +82,10 @@ WebSearchTab::WebSearchTab()
{
list.AddColumn("Name", 5);
list.AddColumn("URI", 5);
if(GetDPIScale() >= DPI_200)
if(IsUHDMode())
list.AddIndex();
list.AddColumn("Icon").SetDisplay(Single<IconDisplay>());
if(GetDPIScale() < DPI_200)
if(!IsUHDMode())
list.AddIndex();
list.Moving().RowName("search engine").Removing();
list.WhenLeftDouble = [=] { Edit(); };
@ -243,9 +243,9 @@ void Ide::OnlineSearchMenu(Bar& menu, const String& what, bool accel)
Image& m = search_icon.At(i);
if(!b) {
b = true;
m = StreamRaster::LoadStringAny(Decode64(search_engines[i][GetDPIScale() == DPI_100 ? "Icon16" : "Icon32"]));
m = StreamRaster::LoadStringAny(Decode64(search_engines[i][IsUHDMode() ? "Icon32" : "Icon16"]));
}
return DPISmartRescaleCached(m, DPI(16, 16));
return m;
};
String name, uri;

View file

@ -748,7 +748,7 @@ struct PackageDisplay : Display {
if(IsNull(icon))
icon = IdeImg::Package();
else
icon = DPISmartRescaleCached(icon, DPI(16, 16));
icon = DPI(icon, 16);
w.DrawRect(r, paper);
w.DrawImage(r.left, r.top + (r.Height() - icon.GetHeight()) / 2, icon);
w.DrawText(r.left + DPI(20), r.top + (r.Height() - Draw::GetStdFontCy()) / 2, txt, fnt, ink);
@ -808,7 +808,7 @@ void SelectPackageDlg::SyncList(const String& find)
icon = pkg.upphub ? IdeImg::HubPackage() : IdeImg::Package();
}
nest_list.Add(pkg.nest);
clist.Add(pkg.package, DPISmartRescaleCached(icon, DPI(16, 16)));
clist.Add(pkg.package, DPI(icon, 16));
alist.Add(pkg.package, GetFileName(pkg.nest), pkg.description, icon);
alist.SetDisplay(alist.GetCount() - 1, 0, pkg.main ? bpd : pd);
}
@ -940,7 +940,7 @@ void SelectPackageDlg::Load(const String& find)
if(d.ispackage) {
String icon_path;
if(GetDPIScale() >= DPI_200)
if(IsUHDMode())
icon_path = AppendFileName(path, "icon32x32.png");
if(IsNull(icon_path) || !FileExists(icon_path))
icon_path = AppendFileName(path, "icon16x16.png");

File diff suppressed because one or more lines are too long

View file

@ -2361,384 +2361,342 @@ COMPRESSED
94,240,110,54,141,189,62,36,54,152,230,190,112,146,220,32,246,133,248,204,113,176,178,71,163,124,235,204,26,96,247,189,250,219,107,211,171,174,61,160,131,99,19,219,242,246,244,111,242,13,192,134,213,64,43,122,253,151,221,111,194,127,236,62,138,255,174,213,96,250,219,162,22,164,192,122,41,65,244,55,128,78,79,196,182,235,155,213,192,148,250,229,82,3,60,225,78,162,222,10,200,74,217,112,190,224,106,10,113,68,53,213,165,187,158,61,124,248,60,253,171,215,194,152,109,109,119,230,49,248,192,38,199,169,147,55,83,251,209,194,244,209,76,227,135,10,31,243,148,142,98,58,53,216,89,75,102,156,125,22,206,90,50,58,161,159,133,155,252,226,9,208,174,74,105,51,118,101,195,210,171,245,147,203,176,204,153,26,226,11,123,83,125,124,60,235,201,202,198,167,151,119,91,144,131,159,49,136,18,135,217,59,212,138,248,252,247,236,153,184,93,16,231,221,157,125,25,88,109,74,153,73,62,123,242,96,103,62,3,122,238,43,199,204,194,4,67,251,159,94,20,136,127,53,21,23,
208,159,201,224,61,255,250,139,243,131,169,109,231,63,220,102,246,224,131,84,124,243,102,173,170,126,62,255,55,22,251,244,49,7,204,189,102,112,204,210,44,7,202,251,181,166,177,212,140,132,9,13,44,37,57,113,242,139,151,146,223,68,47,128,151,231,52,34,130,184,235,227,58,206,88,19,136,88,203,123,252,194,75,157,163,12,241,58,31,49,208,176,98,209,92,185,203,215,135,64,216,119,45,35,110,23,228,46,223,228,109,147,0,111,123,80,208,120,141,56,93,250,214,147,200,218,8,40,61,177,216,226,217,139,87,188,38,34,132,35,105,36,206,143,168,12,154,241,69,182,49,239,109,166,135,137,149,131,220,56,0,92,171,7,0,19,157,253,171,206,37,42,133,141,206,184,143,206,238,157,33,240,91,189,22,148,2,32,243,180,77,203,15,15,248,250,189,91,4,85,157,218,190,245,139,240,146,175,128,173,202,4,252,60,247,81,189,253,225,1,206,95,60,224,128,215,223,245,121,22,202,91,220,126,174,219,115,13,243,223,30,31,101,47,215,106,94,135,103,191,14,48,156,254,138,48,
142,224,126,106,154,170,242,11,36,67,231,92,11,149,103,157,121,223,60,81,162,250,171,238,135,173,28,204,78,224,134,189,125,102,227,161,18,183,27,242,54,56,25,174,200,242,241,62,158,223,56,181,5,30,24,35,151,196,170,183,47,43,160,101,204,180,48,189,42,117,64,139,145,191,115,148,94,196,189,42,101,241,122,214,91,9,124,78,67,236,255,166,83,203,172,234,95,250,244,160,31,1,42,251,195,163,143,163,192,62,247,247,209,29,62,17,119,94,44,198,26,234,198,98,122,81,227,228,133,30,202,131,177,142,202,81,29,75,48,182,101,95,223,39,173,15,94,94,89,59,245,187,146,11,73,142,191,245,86,13,64,205,62,150,157,254,113,26,35,167,238,75,237,74,111,79,245,246,9,190,121,5,167,223,176,97,107,169,125,139,7,69,105,97,206,110,255,111,125,100,245,58,4,254,142,204,244,25,254,103,241,248,91,195,182,78,251,253,115,215,191,237,22,78,232,252,83,95,79,223,171,211,31,139,9,118,125,166,118,144,34,119,65,175,165,101,151,79,253,102,255,169,129,218,77,10,
90,14,33,234,171,111,29,27,71,169,180,8,77,163,213,217,152,85,32,105,105,198,152,45,44,143,53,141,3,155,127,107,168,190,223,19,113,188,137,197,219,6,162,214,1,250,223,242,63,185,143,150,202,152,140,220,152,212,182,47,248,118,172,2,53,122,214,177,121,156,165,218,206,175,58,182,218,40,234,171,117,191,141,65,227,241,173,226,11,159,247,185,101,128,23,75,53,251,89,132,34,210,190,253,105,2,83,161,244,236,195,29,25,23,167,169,52,153,208,231,219,127,152,76,7,206,179,45,243,212,250,95,221,111,115,126,231,24,234,171,180,6,8,64,194,119,189,207,1,236,110,50,128,4,119,29,117,230,11,9,25,114,125,54,187,77,126,243,193,52,0,9,127,122,209,129,65,251,246,58,245,144,219,103,49,142,59,83,145,203,57,85,137,50,110,163,103,27,147,162,251,127,104,123,175,101,199,149,172,77,236,85,230,106,66,10,92,192,59,41,20,33,146,32,60,225,253,132,46,96,9,239,1,2,120,122,37,89,231,239,238,209,140,66,138,254,187,235,226,236,93,187,206,6,211,172,
245,153,149,137,204,39,94,202,85,182,58,207,235,125,44,169,21,98,47,204,106,178,67,2,162,246,143,110,250,135,90,22,247,182,235,239,120,82,2,100,52,89,245,114,173,93,101,29,231,13,237,155,213,91,168,25,97,89,37,17,250,164,34,25,146,37,157,45,124,207,37,80,30,177,240,221,3,51,152,53,208,163,230,71,115,127,231,195,125,239,185,105,36,224,18,107,48,174,213,244,104,249,159,205,148,34,255,87,83,177,109,0,193,145,31,149,175,87,55,68,55,151,123,78,160,255,225,119,171,197,177,88,166,244,120,122,252,123,101,118,254,30,41,198,202,86,102,40,10,223,125,21,220,101,115,17,155,241,51,14,193,255,62,156,125,17,106,48,144,52,254,36,227,32,46,141,152,98,147,30,240,206,60,44,93,139,14,243,95,62,243,247,21,152,74,4,15,130,118,222,77,115,45,182,179,197,117,8,120,209,159,217,36,190,175,28,39,22,173,42,195,127,199,51,192,87,222,189,49,207,191,103,232,78,69,251,125,183,224,199,57,127,91,243,18,85,146,221,190,239,203,27,236,241,215,62,
234,248,57,84,82,14,124,243,31,15,93,233,127,250,218,140,160,223,223,26,124,32,20,212,202,244,149,57,228,77,95,184,244,135,63,122,24,120,77,133,84,155,249,252,189,19,137,63,179,191,239,229,20,127,133,163,192,236,230,142,252,106,18,250,117,232,228,110,93,210,233,81,126,43,142,83,104,54,228,43,114,220,35,20,44,8,255,147,139,184,22,131,136,58,247,219,39,236,106,41,168,148,187,112,156,207,251,59,52,153,228,93,195,5,240,35,7,83,241,179,17,96,196,62,252,246,78,97,255,80,159,40,185,149,246,238,73,71,6,190,87,45,235,247,210,153,23,165,252,116,10,72,70,196,52,2,212,229,191,47,149,254,222,153,226,60,47,173,129,147,124,159,205,248,180,66,79,254,233,20,16,58,85,84,185,173,219,151,203,179,25,162,187,244,178,191,249,216,116,178,29,252,71,61,206,127,224,39,227,242,205,0,245,84,252,54,117,3,141,215,247,223,112,238,250,251,153,181,223,178,169,248,245,233,63,207,46,213,211,85,242,188,25,41,46,12,236,205,215,187,252,83,117,232,235,140,
55,167,79,105,229,212,128,176,126,141,211,55,255,190,190,241,123,182,250,21,10,7,44,130,92,137,4,11,231,235,240,122,151,67,190,114,55,188,124,190,91,250,175,125,173,149,216,231,205,223,214,161,235,136,202,241,39,107,132,245,150,148,107,22,120,247,94,166,148,250,134,141,127,211,214,245,108,255,131,87,124,213,168,246,184,77,202,215,151,143,175,184,219,202,14,184,146,204,241,92,47,244,135,89,50,39,165,185,126,117,101,244,97,218,47,187,153,27,70,46,27,244,246,245,48,60,240,48,227,120,251,7,15,99,168,116,153,202,143,79,254,21,181,3,18,76,144,240,119,109,141,34,61,205,19,99,60,7,34,49,61,242,71,13,100,159,159,73,224,251,63,254,220,108,236,180,131,255,104,186,28,144,6,102,79,250,173,204,221,130,21,75,14,159,50,128,113,243,208,156,64,246,253,120,197,115,144,161,189,253,120,99,1,178,79,13,102,45,74,231,101,150,48,0,105,103,55,82,232,203,249,214,38,243,94,250,157,119,169,157,214,95,117,179,252,188,149,91,126,127,199,194,172,4,182,126,
19,238,16,162,253,199,250,8,78,2,76,171,222,190,9,59,24,182,237,163,25,88,184,68,79,84,34,90,152,84,15,212,240,227,137,37,65,181,121,178,1,79,12,115,19,197,221,248,208,184,232,193,153,152,4,248,119,248,241,111,8,188,98,9,248,23,192,12,31,43,231,19,104,155,247,127,207,191,163,200,133,114,25,223,191,96,178,242,238,168,12,186,92,41,214,205,172,134,225,185,163,192,67,200,22,99,76,194,255,16,151,193,119,65,251,119,78,253,151,39,110,255,122,158,64,59,245,175,119,33,117,16,143,223,27,31,178,46,42,63,145,248,73,133,242,143,62,124,125,175,142,255,189,84,103,63,237,135,9,120,247,151,223,105,149,166,214,47,191,73,166,94,172,170,250,237,141,12,132,102,59,128,243,48,61,52,251,6,96,200,15,191,117,166,242,177,206,222,253,251,32,237,10,171,78,158,170,227,153,137,230,13,120,106,9,250,71,31,130,105,64,196,60,148,106,177,126,62,196,105,42,97,112,129,167,22,126,158,26,104,127,233,105,126,148,49,246,30,182,217,85,63,129,40,217,149,
180,244,59,255,25,212,123,196,26,202,163,54,115,21,121,64,200,237,202,197,40,99,141,89,254,219,89,23,192,63,51,30,119,170,212,31,47,253,167,246,91,74,205,40,195,223,119,32,165,141,116,224,98,105,220,148,231,64,50,131,188,230,126,231,140,31,162,39,55,125,254,221,43,33,65,212,223,207,179,136,92,182,246,97,59,62,35,103,140,237,245,155,202,157,252,197,78,241,222,20,218,165,96,124,41,12,212,151,95,191,122,229,175,245,227,208,172,223,132,46,189,77,158,102,156,106,251,229,52,254,106,248,198,248,115,103,194,118,160,217,169,255,169,155,23,225,31,140,76,170,191,213,112,137,166,188,94,172,227,150,64,176,124,215,138,158,0,35,55,117,160,38,53,244,93,239,255,129,145,166,231,6,3,37,89,19,255,123,55,241,155,211,202,221,122,252,181,95,221,117,223,18,176,126,219,253,205,223,93,217,232,89,179,19,74,194,120,201,63,191,140,102,239,223,90,221,55,16,123,8,250,247,114,235,188,206,11,218,226,121,71,125,206,57,232,251,152,66,154,53,157,148,51,14,252,202,
59,49,129,4,94,47,57,233,57,106,227,190,40,189,152,164,103,46,45,173,152,202,90,124,51,223,107,230,44,99,38,146,237,255,71,93,55,31,114,73,240,61,124,182,192,179,126,60,155,174,245,233,126,223,81,154,181,127,239,154,12,231,177,58,170,57,219,171,149,173,51,236,94,229,80,172,151,132,145,75,13,38,49,172,165,43,22,192,204,198,66,47,53,77,8,176,138,66,94,156,86,169,7,14,124,88,241,199,135,93,178,248,55,77,139,161,100,192,83,202,175,166,18,198,16,43,102,133,223,182,252,172,176,142,253,238,202,45,3,83,242,143,60,234,109,255,127,242,172,90,46,144,227,218,187,227,159,47,225,237,241,95,191,111,135,252,61,79,128,174,181,255,81,215,202,7,8,18,245,200,223,127,243,251,19,187,50,255,177,255,136,229,77,231,252,114,230,31,254,244,254,212,86,154,201,249,174,230,254,234,219,158,193,64,182,7,140,152,122,214,223,177,131,126,107,44,124,214,108,102,246,199,171,17,127,223,23,190,246,206,119,191,199,216,0,155,240,197,123,238,125,26,3,17,10,184,
214,100,154,109,253,246,3,107,149,53,216,252,83,218,68,233,231,97,245,187,100,8,84,189,95,80,189,215,196,252,195,40,54,183,126,123,130,217,85,0,8,37,244,17,106,90,68,174,177,123,252,194,214,9,8,144,232,161,218,152,4,124,172,216,141,211,251,104,162,231,79,191,146,172,21,120,40,240,185,158,233,152,88,181,149,32,195,26,217,245,154,239,114,84,125,166,213,59,182,92,179,114,249,46,178,29,32,67,222,67,249,110,4,231,87,251,3,100,186,105,239,230,201,221,70,101,84,153,98,18,62,174,193,145,165,36,61,234,12,16,217,141,65,222,88,17,88,49,3,227,254,191,183,246,215,64,64,125,124,235,124,29,185,39,183,207,161,111,179,116,74,21,75,248,98,138,200,15,214,122,41,214,199,229,135,240,117,207,13,157,148,138,11,118,81,40,147,84,41,25,232,192,111,198,79,49,209,223,114,157,211,219,152,217,162,217,131,139,177,3,29,127,117,166,117,4,82,67,136,187,131,215,156,144,64,180,70,210,184,176,6,190,182,218,174,150,4,218,206,114,222,212,159,161,123,202,
190,231,62,193,7,205,159,180,106,66,171,49,75,215,3,58,227,115,198,229,243,33,133,218,163,89,91,192,147,223,251,45,149,251,237,163,216,147,13,139,84,185,240,220,7,10,237,199,109,192,3,133,190,253,246,183,160,8,192,117,182,253,247,250,212,210,24,5,235,235,79,175,23,190,189,135,176,115,158,77,206,151,22,17,11,79,169,123,238,41,127,183,62,223,117,80,129,216,191,107,114,240,76,61,85,33,148,232,63,119,29,73,44,158,85,10,177,229,228,31,191,100,137,27,189,39,33,102,9,223,9,248,251,250,73,147,126,207,68,253,143,117,185,32,154,40,148,71,53,235,134,102,190,244,91,255,47,101,16,102,130,215,158,122,5,240,211,54,35,27,36,239,243,195,223,126,241,6,196,133,57,40,145,160,84,20,127,187,125,239,190,222,15,104,72,238,38,99,116,207,223,250,255,185,253,131,95,250,251,187,230,255,158,181,208,140,136,151,68,0,84,152,101,190,213,220,185,231,215,192,155,205,67,255,213,50,17,89,184,223,220,226,183,135,234,187,245,184,8,233,231,207,179,247,203,31,
93,219,228,127,56,48,36,145,95,156,81,2,6,178,61,246,143,231,170,126,227,235,91,155,15,107,193,106,82,0,156,28,202,122,247,76,140,149,239,158,13,96,231,43,74,104,121,175,140,127,0,231,154,192,183,87,194,87,143,153,230,247,88,114,93,250,72,95,61,246,228,129,98,27,109,215,126,5,188,251,120,220,148,199,119,239,62,53,254,191,197,25,13,33,255,94,61,118,9,38,226,241,226,223,235,27,8,217,52,127,213,141,142,242,35,223,41,28,101,191,235,236,235,37,223,163,107,84,211,0,101,181,122,166,129,78,101,131,214,254,213,229,196,210,22,23,122,152,112,45,248,221,232,21,240,65,255,186,102,0,88,40,91,14,99,252,44,7,120,164,44,96,197,60,126,159,109,192,7,195,60,196,211,52,62,60,62,169,148,106,48,201,220,51,53,105,146,44,229,113,190,26,147,224,36,239,81,9,55,83,169,190,165,185,206,170,134,173,52,111,119,203,123,56,36,236,202,192,174,128,168,50,127,245,223,32,188,179,195,159,69,35,18,222,94,255,94,62,176,214,215,245,250,238,223,81,
111,181,137,188,34,217,82,116,238,70,80,175,250,113,171,94,105,70,229,44,62,42,191,181,181,148,202,81,116,84,10,177,201,201,205,226,243,96,79,73,93,57,192,24,172,115,242,194,198,249,67,251,24,214,173,227,199,113,113,12,43,167,79,237,98,68,57,196,52,208,168,196,223,52,42,166,73,108,224,185,188,235,1,211,100,3,74,184,43,15,72,28,90,254,41,223,20,175,181,197,71,8,48,215,124,219,156,43,52,163,199,203,192,152,30,128,15,222,111,160,245,27,160,245,39,245,254,151,214,55,238,148,150,95,142,42,121,127,197,214,191,89,235,31,79,228,195,232,250,159,152,170,129,231,60,144,8,68,152,85,95,155,13,36,134,213,131,72,234,164,195,130,105,152,221,200,212,139,226,197,97,96,226,236,59,0,91,189,241,57,186,105,47,163,147,189,183,39,249,2,92,155,66,166,228,234,2,119,111,206,232,86,54,231,253,134,152,161,118,179,26,157,227,36,254,134,60,125,206,84,173,91,139,190,2,134,71,239,184,251,28,57,44,197,115,146,33,148,211,128,4,103,189,246,200,71,
251,33,47,220,52,222,62,159,105,0,72,70,239,30,103,92,103,100,56,159,148,53,186,136,204,185,122,128,87,186,161,23,122,103,235,164,184,66,32,136,146,64,70,163,64,76,198,108,223,224,32,76,84,101,65,63,249,234,213,157,127,210,14,255,233,94,144,70,246,26,50,69,78,205,244,205,96,136,97,120,57,167,112,163,157,251,247,34,173,26,90,81,216,24,178,245,69,137,33,139,233,20,238,65,77,124,65,33,42,124,192,172,192,72,188,178,147,28,23,158,48,238,143,41,216,207,202,11,182,171,136,58,136,248,52,250,14,227,89,249,26,73,23,46,144,210,12,233,202,166,17,160,252,196,233,178,158,178,93,85,16,169,188,234,82,201,161,158,0,142,9,119,16,25,185,19,80,249,122,111,55,7,164,54,164,63,239,36,167,2,226,149,234,113,222,92,29,80,134,99,5,240,201,159,22,12,133,134,90,215,112,11,65,47,177,97,160,52,237,47,42,42,140,131,64,164,212,208,35,170,112,128,245,119,238,68,193,92,8,147,107,87,65,210,27,125,226,25,77,225,217,213,64,48,165,47,
251,119,145,146,14,66,26,244,129,211,228,101,165,232,132,143,59,251,12,68,192,16,88,127,109,175,104,139,28,37,27,27,162,23,115,249,168,181,231,144,112,53,34,188,105,11,194,41,35,176,161,21,51,156,41,91,197,223,197,22,148,53,27,100,237,38,220,128,210,176,53,225,216,212,142,172,27,119,140,34,103,5,72,201,157,237,160,75,67,175,114,200,10,120,119,110,145,67,205,16,60,222,222,22,44,180,120,121,90,146,17,116,213,205,108,121,30,62,17,75,124,184,44,107,152,203,179,212,247,193,145,184,139,125,88,247,244,189,213,146,133,164,82,77,1,6,182,158,86,159,184,117,217,146,101,212,98,125,215,203,209,189,69,34,253,164,235,177,218,155,122,219,205,246,181,0,9,47,191,54,71,245,3,57,106,61,56,142,21,188,112,90,7,223,206,178,68,200,144,162,119,121,217,78,154,86,117,168,162,16,17,11,50,72,69,225,4,252,29,128,124,177,194,109,31,148,236,14,193,167,3,44,3,68,209,15,133,130,112,147,130,193,0,146,189,24,204,108,255,217,28,38,118,38,250,195,
200,192,108,20,212,130,88,15,79,222,235,166,52,205,253,217,138,7,82,26,70,192,2,195,148,14,211,11,190,165,170,211,127,184,187,28,86,122,33,218,79,230,94,82,223,190,32,94,175,126,159,71,120,55,24,238,234,243,243,97,186,254,130,146,194,24,27,102,23,234,51,76,13,121,129,13,160,174,13,121,128,12,249,205,24,242,94,224,114,159,225,113,146,227,114,157,226,242,90,4,98,155,5,242,188,101,103,16,39,235,218,133,179,150,230,19,25,200,233,216,97,190,92,191,200,131,186,186,52,67,226,90,137,70,9,23,197,73,183,206,224,17,106,101,73,176,198,58,238,17,41,174,228,238,83,65,133,124,193,174,109,242,171,203,34,160,157,157,57,78,130,184,194,102,212,139,131,115,104,15,200,181,39,22,155,97,13,239,31,124,249,61,87,136,145,27,67,233,41,8,209,31,226,203,255,94,61,246,124,175,118,34,29,138,235,138,215,247,133,122,201,193,17,248,97,250,34,48,173,198,219,224,190,113,255,121,196,82,253,27,39,41,202,193,80,60,51,45,58,75,148,128,197,109,18,69,
228,3,21,87,66,178,175,190,33,144,220,225,14,240,221,200,106,253,8,76,119,201,168,121,255,254,108,9,131,111,201,170,110,52,130,2,81,112,108,9,141,109,244,112,98,57,126,38,73,6,117,4,46,231,35,134,249,99,179,180,7,165,150,105,203,208,181,144,228,238,217,203,64,64,30,120,189,188,172,185,21,62,4,251,203,253,21,170,81,100,159,179,29,249,91,238,51,221,27,67,142,65,171,241,129,157,189,136,246,98,12,154,90,43,7,49,182,219,147,23,64,116,17,9,20,253,65,244,125,87,155,75,104,168,9,54,78,71,114,131,115,212,144,180,177,213,111,254,63,229,35,202,152,76,114,62,168,145,59,174,248,144,234,157,120,62,158,44,124,123,219,129,196,205,191,216,15,161,146,255,142,67,116,162,223,84,227,6,64,161,218,222,35,103,238,212,22,181,24,34,248,174,71,176,188,111,62,185,8,191,88,227,126,245,127,225,95,195,174,73,77,46,73,3,173,115,67,45,227,190,94,70,148,236,218,250,61,124,102,77,219,137,76,178,148,108,223,11,55,206,134,227,199,215,170,247,
110,120,73,135,16,194,172,53,189,210,15,37,138,161,206,5,52,190,35,121,215,103,115,11,32,138,205,182,17,244,88,92,208,206,159,140,210,141,161,30,245,231,98,226,163,194,179,191,175,127,187,193,152,41,51,156,237,11,231,101,4,101,248,56,127,38,181,157,5,133,120,168,141,162,210,110,119,190,236,81,35,210,38,126,60,137,102,129,244,70,38,168,125,149,21,174,124,90,56,243,40,149,20,190,133,178,250,188,227,36,117,171,203,87,97,86,18,80,26,11,25,210,172,49,165,24,149,25,114,201,192,252,46,150,111,166,191,22,166,119,26,166,175,7,166,224,192,223,89,56,0,130,249,59,245,223,16,152,229,52,32,215,52,200,131,132,118,79,204,39,96,237,232,108,86,107,187,213,144,19,181,144,54,254,192,143,237,53,174,109,231,210,142,92,234,14,83,84,111,36,45,107,253,245,57,133,251,229,254,173,255,13,24,102,42,200,156,110,67,13,121,214,214,231,23,227,72,99,98,125,200,141,81,104,64,101,210,181,41,88,145,189,156,206,216,46,161,235,7,192,7,56,243,159,103,223,
58,44,108,243,247,122,147,213,29,248,103,51,159,181,167,217,42,96,60,154,225,212,159,35,77,21,165,36,115,153,97,246,166,8,80,237,124,16,119,77,176,106,130,48,197,230,181,3,244,175,244,110,35,77,138,53,142,154,132,52,163,255,16,126,253,135,251,206,216,0,160,96,112,87,15,194,30,255,123,223,155,115,155,17,108,155,155,3,219,142,43,153,211,182,35,232,44,39,209,106,117,64,223,69,105,231,205,66,35,219,181,127,69,220,168,117,200,241,58,54,157,179,38,157,43,27,29,254,228,143,119,177,67,239,160,2,0,15,7,67,166,42,255,19,28,240,98,127,14,168,218,157,91,43,233,153,161,181,168,53,128,146,61,127,42,28,141,67,36,17,200,57,175,162,44,145,62,245,16,96,127,30,75,119,165,193,173,211,28,134,162,178,191,253,235,247,17,2,30,88,71,50,161,184,233,226,232,16,220,251,217,88,162,81,143,143,252,118,178,160,235,18,165,92,45,55,35,144,176,239,159,79,238,144,91,88,245,50,105,136,22,169,139,119,210,160,33,252,192,179,79,144,225,227,12,192,
175,76,3,40,39,182,90,141,254,199,57,143,212,134,9,30,17,71,26,29,131,130,105,215,152,6,233,227,92,0,115,189,185,33,183,35,194,141,0,162,25,201,119,146,21,215,177,119,41,40,155,215,149,79,212,129,109,95,241,101,50,192,55,34,126,133,173,126,131,205,30,79,185,231,201,42,163,87,0,2,109,146,121,231,76,10,103,211,78,250,244,94,0,166,92,126,212,16,255,229,0,48,229,95,12,44,193,148,195,253,240,208,133,145,62,243,146,184,223,50,216,108,192,24,128,220,127,144,247,76,183,107,137,112,68,68,218,190,132,175,251,27,109,82,132,126,144,88,238,140,84,254,16,75,22,40,118,242,69,111,172,246,135,202,9,63,19,181,26,40,249,53,237,189,118,89,183,40,81,211,238,135,115,27,118,248,155,151,168,13,226,63,72,131,196,133,23,118,94,121,214,53,159,78,220,244,227,244,43,55,185,0,145,223,62,12,4,196,230,223,240,62,250,159,225,189,31,91,180,31,123,211,127,240,248,244,15,60,158,193,251,245,175,226,241,32,5,207,187,178,191,184,237,238,32,76,
7,116,75,199,94,153,159,225,121,183,94,41,47,102,127,36,93,162,38,64,193,225,242,184,105,103,48,174,75,59,146,170,156,118,21,17,120,133,64,156,29,222,190,198,51,118,170,180,37,104,238,25,119,230,41,202,131,118,247,103,24,36,244,22,101,234,146,247,46,25,111,24,110,199,125,131,116,7,165,149,77,206,246,109,60,231,158,61,199,81,160,76,184,74,90,113,143,196,59,131,229,204,203,19,129,255,189,194,127,101,76,99,57,32,49,70,19,91,66,209,65,24,111,206,118,109,14,134,110,115,119,108,51,181,77,143,89,161,246,236,234,108,90,203,218,197,209,162,25,216,38,37,82,123,196,63,143,23,217,235,14,150,30,141,190,32,120,23,85,175,227,147,107,86,5,112,41,109,223,132,38,238,57,108,81,242,138,109,1,144,129,104,71,37,43,63,228,87,28,137,3,196,7,51,85,120,113,9,192,188,157,90,102,26,211,162,117,167,61,155,224,43,35,63,101,152,229,5,142,254,75,117,235,65,0,142,154,174,141,254,108,212,118,233,228,238,248,228,230,244,58,91,184,214,60,1,
151,186,46,89,68,47,40,230,31,47,180,219,28,52,29,155,205,177,34,213,80,53,146,201,163,203,61,59,132,120,117,79,210,56,48,96,125,153,242,173,59,102,200,53,56,93,12,108,161,34,27,222,81,184,99,99,29,230,120,203,86,99,133,53,104,55,106,2,78,101,210,66,118,210,98,212,6,64,77,194,202,232,230,179,7,119,52,94,62,222,16,11,175,27,127,6,165,205,22,185,120,231,58,144,159,223,184,181,127,92,173,40,34,209,12,160,47,242,15,160,21,110,21,45,160,217,74,202,133,110,196,93,126,90,23,65,153,253,251,181,135,95,128,6,20,5,0,90,156,21,122,167,115,106,59,247,13,112,112,243,227,224,125,144,60,52,227,105,49,18,49,129,50,254,210,99,221,132,186,214,73,5,114,216,139,230,47,102,15,180,212,107,63,114,12,69,59,206,184,118,163,164,68,4,243,243,210,123,220,8,38,86,213,176,205,142,139,26,241,169,126,245,134,238,55,151,164,208,6,13,52,163,206,57,161,137,165,200,49,250,63,204,37,12,127,49,239,28,161,125,229,222,229,197,183,248,
120,89,146,250,227,226,150,191,51,167,155,137,64,123,176,198,167,225,75,168,30,64,188,126,216,71,118,75,111,93,37,29,95,153,114,10,65,3,18,84,116,124,144,160,57,203,2,177,9,204,35,59,199,4,8,84,135,194,54,103,2,116,131,199,212,155,206,162,105,57,219,97,119,162,104,118,79,255,60,165,31,254,24,175,108,241,214,251,79,111,70,247,206,112,220,176,110,32,209,76,174,219,135,42,50,45,159,49,36,89,243,6,97,122,64,37,27,192,216,68,139,218,169,110,98,45,119,168,221,51,148,217,91,159,67,59,123,23,100,77,255,125,78,162,255,210,156,196,183,101,222,88,53,87,187,113,226,230,152,212,103,133,52,64,14,78,180,234,87,215,203,235,246,10,221,0,135,126,185,196,175,42,163,79,35,46,188,58,151,80,187,230,203,161,26,51,144,162,156,202,229,254,226,184,145,69,80,202,8,217,77,67,161,62,100,229,159,126,146,23,172,179,40,221,154,127,250,193,101,166,213,71,236,197,175,3,131,20,166,194,2,19,23,209,159,195,205,243,29,111,129,70,37,220,61,192,
203,143,73,86,21,140,146,195,251,57,57,153,40,63,170,18,146,21,163,46,31,127,146,16,24,50,36,98,110,68,222,26,111,253,102,91,207,244,167,173,56,21,251,38,225,48,235,32,9,125,122,9,60,38,200,68,207,195,5,178,95,86,196,7,188,229,174,60,149,204,124,194,171,209,15,63,229,130,167,205,68,8,207,62,26,95,242,226,255,98,177,73,219,79,204,73,33,152,57,90,6,184,101,39,197,12,132,81,184,106,75,55,127,11,0,88,111,199,98,237,82,103,140,118,77,142,118,223,13,147,178,163,198,113,96,87,48,54,211,252,182,49,26,55,239,232,25,214,143,204,43,112,86,106,20,131,112,59,72,183,229,59,149,34,246,227,57,12,59,148,191,37,34,238,119,153,18,223,64,3,2,158,120,228,240,219,148,212,134,71,126,152,243,21,132,4,152,173,23,25,211,43,64,208,85,253,190,251,65,7,192,226,207,153,215,185,236,157,130,109,106,110,211,246,244,179,123,21,58,126,225,51,104,119,119,177,159,198,7,185,158,226,66,233,34,226,125,0,96,25,2,175,227,3,238,147,
87,104,183,126,220,135,198,63,238,139,51,249,199,125,242,252,229,190,96,114,227,150,104,95,235,248,211,183,241,190,248,63,141,191,192,1,89,189,228,15,206,108,177,88,152,195,127,30,39,39,22,232,53,66,193,48,72,194,186,83,95,208,143,191,122,27,132,6,242,176,240,239,64,35,207,248,242,93,209,161,130,85,147,171,164,78,3,161,110,50,239,55,55,190,17,128,185,193,243,103,50,102,13,66,139,3,139,96,128,187,117,68,56,99,237,62,228,108,50,202,115,30,89,115,49,122,74,73,131,33,154,70,86,194,217,9,58,254,104,151,139,205,254,149,218,37,38,139,44,107,247,52,106,13,240,12,44,69,227,233,77,22,210,147,31,246,138,220,245,71,84,235,14,149,216,196,153,155,4,65,139,114,204,59,102,42,86,233,39,126,16,192,123,53,232,101,124,59,66,245,161,17,39,145,230,83,87,173,141,77,87,19,158,176,119,192,165,136,107,48,153,145,175,88,116,151,122,213,200,134,48,147,67,4,49,27,134,67,213,71,218,17,72,239,225,7,99,147,143,10,66,229,165,6,137,147,
139,178,240,46,117,89,253,229,189,62,211,182,253,38,128,211,132,111,131,221,27,31,225,97,31,183,236,23,131,223,174,128,48,3,137,227,235,176,19,71,179,19,241,106,150,243,180,21,139,62,70,170,2,117,232,18,78,238,106,29,205,96,242,88,174,114,236,64,172,151,204,27,34,78,74,249,218,12,121,205,217,121,192,8,93,96,211,22,180,34,204,28,36,242,132,251,207,104,214,222,192,67,54,248,156,13,104,120,77,94,124,125,87,94,128,61,143,167,200,198,10,130,101,143,95,254,99,34,192,206,99,212,193,236,124,218,19,104,169,95,92,253,114,134,191,63,24,219,253,149,14,216,2,105,248,251,89,13,23,115,255,172,122,113,123,61,219,74,34,127,254,82,16,135,47,112,91,126,186,100,249,132,23,192,252,122,184,40,147,223,21,128,180,48,200,51,61,186,3,228,134,229,126,58,43,188,196,241,50,127,90,233,110,34,130,85,252,201,117,47,201,102,100,107,92,84,160,251,152,246,94,221,130,213,154,53,116,32,158,196,217,143,236,57,143,7,143,187,20,50,177,108,197,199,225,231,
174,29,127,120,135,254,151,242,206,196,72,107,251,1,112,53,165,72,127,164,120,71,226,175,140,159,83,48,49,102,206,131,134,139,150,2,124,171,28,242,247,116,71,89,115,70,51,115,197,118,155,178,28,55,25,255,226,148,70,0,58,175,99,233,86,152,59,160,243,32,123,240,106,92,34,103,207,57,49,21,126,22,252,87,211,230,240,246,47,213,180,69,213,167,56,104,50,218,141,151,157,241,117,30,245,26,79,20,226,84,187,174,200,17,118,163,221,219,132,45,122,129,13,26,49,3,14,29,209,171,100,205,122,1,96,81,247,195,34,158,207,119,159,245,64,204,251,147,29,123,149,103,83,125,235,14,57,116,21,225,45,254,213,27,138,96,4,88,132,122,64,178,85,230,0,151,118,66,124,161,232,59,230,18,128,34,248,231,167,167,156,233,135,252,102,138,5,34,3,93,3,221,111,239,205,12,156,159,15,61,216,135,250,229,193,171,157,55,68,88,243,65,235,151,61,78,28,151,28,95,85,185,25,14,198,32,250,4,151,139,90,223,9,217,161,224,28,56,165,183,135,110,140,135,234,27,
236,253,198,120,113,209,14,201,128,193,165,222,65,157,143,168,73,77,94,131,76,124,188,158,88,172,185,204,186,193,128,202,254,232,18,40,249,151,198,199,130,58,0,23,91,77,6,241,33,206,176,26,139,166,255,129,120,146,51,19,158,45,182,30,213,23,15,201,17,31,133,190,177,76,21,238,180,162,55,192,197,94,172,149,238,4,1,218,64,177,94,152,189,145,151,14,37,74,13,32,21,117,108,134,239,220,127,212,181,150,127,101,93,139,118,102,4,233,162,43,205,123,86,30,178,155,202,17,73,243,186,111,133,71,31,69,64,145,168,189,194,203,214,167,196,184,102,75,143,118,83,164,201,251,142,116,111,215,141,33,160,18,254,180,117,70,191,109,205,13,247,28,91,44,249,123,91,169,127,89,91,195,179,108,169,177,63,62,137,64,224,122,88,191,95,137,115,35,6,156,134,119,113,98,89,104,196,28,170,119,242,40,195,32,224,150,230,64,27,181,6,234,16,167,140,119,159,180,167,195,11,102,43,178,166,168,114,79,36,157,219,64,34,50,226,253,195,232,246,135,209,77,43,30,184,13,
196,205,127,2,163,181,78,196,39,109,175,195,180,172,195,240,1,52,74,196,58,115,239,97,120,254,81,178,171,234,80,12,76,111,60,162,246,130,183,121,157,38,50,136,5,30,245,7,224,240,17,223,83,186,16,112,59,223,62,103,178,231,246,39,111,145,20,28,46,106,3,11,77,51,48,122,28,188,220,0,250,213,108,126,57,229,62,213,67,182,190,241,119,161,176,109,186,162,162,212,198,71,124,32,36,115,251,216,190,84,247,223,1,188,133,121,249,29,64,62,58,191,167,89,125,8,225,77,49,240,86,124,69,47,179,3,237,32,103,234,218,163,80,151,6,201,202,102,128,23,48,199,79,70,214,26,122,30,99,139,78,65,253,70,244,168,161,245,148,197,247,206,51,110,221,94,164,89,210,143,148,235,66,160,45,13,228,77,147,87,143,41,154,205,28,246,63,115,219,124,113,106,144,156,202,254,121,147,122,130,144,102,208,65,134,20,31,229,57,2,126,120,55,11,200,253,47,143,127,211,29,140,222,4,68,111,189,3,146,141,233,0,135,78,136,142,116,139,74,50,184,70,135,213,148,193,
92,106,131,38,210,51,181,187,38,152,92,7,152,140,175,122,176,126,49,247,152,216,19,38,181,204,118,240,104,167,17,4,1,253,203,113,204,193,97,170,193,250,129,77,153,173,22,140,193,242,217,255,60,119,1,238,164,99,6,198,10,50,158,206,192,79,12,18,210,238,83,48,181,132,49,181,49,125,211,130,105,243,204,201,222,130,51,142,64,243,104,30,182,142,160,130,59,17,98,13,240,135,94,96,16,176,234,145,246,5,140,227,27,218,237,112,2,227,148,115,66,175,111,157,53,193,165,255,220,28,31,40,165,69,187,54,95,16,9,19,89,55,28,2,64,108,188,2,49,22,204,232,196,202,114,160,36,136,79,194,242,106,42,35,30,192,107,128,24,27,81,144,13,91,192,91,111,20,56,69,234,76,159,228,27,10,179,107,6,167,221,51,53,79,150,106,168,255,172,70,126,204,222,180,178,112,218,198,37,239,207,186,82,218,155,207,181,204,198,22,83,96,30,236,6,69,132,118,37,128,163,18,10,184,180,57,203,131,30,198,69,158,9,15,86,145,240,127,65,221,110,106,211,57,232,169,
235,233,39,221,11,39,52,27,56,150,179,56,2,102,159,191,87,24,178,197,66,71,121,128,211,88,249,217,107,65,156,173,238,248,207,115,193,232,73,35,132,48,3,29,48,194,237,65,41,231,81,82,112,48,126,192,127,218,136,252,23,198,229,134,171,112,249,74,159,217,147,111,235,0,129,86,31,102,139,249,92,216,52,56,106,17,25,234,76,134,25,202,146,247,127,190,174,224,135,81,94,194,51,37,99,14,204,221,69,43,161,245,111,23,247,126,194,131,150,100,179,160,4,31,36,237,185,108,32,180,69,206,255,124,141,157,73,64,220,212,149,42,194,3,235,175,212,111,172,62,255,186,126,68,38,196,46,251,78,201,135,3,161,68,39,145,106,203,10,201,247,218,92,140,85,103,158,187,40,26,208,201,173,97,3,232,37,63,43,246,23,244,223,117,52,23,4,253,246,245,23,246,159,176,107,52,228,59,247,185,1,116,151,250,126,34,145,0,124,48,151,15,25,44,191,224,63,125,105,24,7,244,165,172,174,13,161,51,57,56,241,2,162,152,32,247,217,109,229,154,127,70,107,36,7,183,
147,90,79,61,61,144,240,102,127,58,42,114,238,132,227,212,13,45,61,36,165,99,247,126,119,11,114,143,33,166,232,196,129,247,125,157,104,182,127,81,31,0,217,150,82,251,30,131,64,253,156,236,176,28,86,241,203,71,75,250,173,39,152,61,232,207,23,143,56,151,37,53,51,5,163,253,197,3,7,204,245,93,78,223,250,174,90,207,84,162,89,110,37,203,150,252,45,51,54,219,193,205,168,161,63,0,78,20,229,70,22,113,147,180,92,233,7,51,243,97,165,225,252,103,52,47,248,128,157,188,183,127,214,49,221,182,250,142,213,43,47,176,61,65,160,202,79,90,214,4,134,253,4,131,255,79,228,28,183,163,122,63,253,165,169,109,27,228,186,233,166,24,93,244,48,204,164,125,106,3,115,53,243,68,148,187,121,248,207,112,97,6,141,8,99,158,204,15,182,108,0,188,213,163,238,138,157,38,35,184,16,141,47,54,75,237,66,22,174,106,82,204,144,30,255,196,250,238,141,102,157,145,42,249,227,187,160,135,52,223,121,224,197,6,134,11,219,193,48,178,246,241,158,253,172,183,
223,240,252,147,177,105,112,9,114,3,127,148,23,65,220,65,92,238,32,46,171,44,155,249,167,251,207,121,199,239,152,195,27,110,62,62,183,255,239,63,207,219,1,31,80,194,207,72,241,191,254,215,255,235,191,45,200,255,254,95,254,124,249,63,254,203,127,195,254,203,255,249,127,86,93,252,206,255,55,138,197,255,43,74,160,248,255,114,195,165,59,243,150,254,254,251,192,247,211,9,202,182,247,139,47,114,134,93,82,44,225,220,82,122,188,68,77,47,138,198,216,243,188,23,119,248,228,58,185,119,12,195,180,249,93,102,224,75,151,32,121,62,64,142,119,215,237,106,63,105,171,236,109,63,174,77,6,225,98,189,223,1,247,125,156,90,9,194,171,31,89,209,191,181,82,98,13,50,191,14,108,40,251,126,121,167,110,180,49,19,62,198,103,182,235,131,127,246,99,195,197,30,134,253,40,53,238,234,40,122,236,55,106,155,54,122,162,183,121,156,199,126,39,89,243,78,7,22,154,193,30,130,98,197,52,199,139,46,78,199,241,17,18,155,88,189,32,192,113,158,216,124,240,149,134,160,
60,195,233,245,34,49,65,55,146,172,59,163,84,23,56,87,59,252,40,133,234,179,186,180,218,131,184,229,83,238,105,113,51,11,44,74,158,146,80,69,40,169,228,154,195,86,169,220,220,70,233,161,152,60,249,78,237,35,182,53,130,124,112,234,20,16,133,42,195,48,78,80,159,119,172,178,78,18,97,211,75,118,122,78,130,250,70,44,39,17,103,252,237,204,90,231,92,237,215,157,124,219,246,237,236,31,36,25,114,65,75,161,97,198,67,76,184,22,58,71,68,226,74,157,20,211,245,125,185,194,105,174,122,232,135,40,116,188,175,232,32,53,159,119,46,86,90,78,24,161,195,120,86,55,175,185,223,210,149,188,1,49,195,151,73,47,40,138,64,181,223,179,70,109,130,129,225,186,78,162,98,211,3,51,53,196,180,103,170,242,102,62,69,201,179,111,123,146,65,100,213,86,247,172,225,204,116,113,30,248,38,45,67,14,39,139,96,17,121,52,242,5,166,190,112,134,49,107,233,193,53,218,120,171,186,199,42,9,147,169,175,232,59,29,163,251,167,227,149,28,83,233,235,163,89,8,
217,181,130,249,228,164,220,190,91,134,202,215,242,161,171,27,227,84,158,180,134,71,88,84,145,76,186,119,240,209,239,143,226,153,104,233,81,119,119,159,197,22,131,139,25,85,20,247,45,61,238,207,71,101,106,104,79,207,201,124,101,43,198,20,238,103,142,221,111,123,5,233,233,190,83,231,193,116,207,58,48,146,45,120,245,69,34,179,7,69,191,16,34,190,189,133,251,48,136,131,25,135,86,195,204,18,47,92,130,234,116,96,152,36,39,124,155,206,195,218,4,219,29,73,154,174,123,138,133,18,237,67,118,253,3,168,179,239,245,83,66,37,68,13,47,99,180,86,222,97,182,70,73,94,143,228,207,119,68,193,3,239,67,217,69,119,219,106,34,33,238,135,168,184,128,57,123,60,223,210,253,29,76,19,253,129,141,74,149,239,154,125,110,137,214,65,77,161,210,232,233,106,89,84,183,150,33,58,37,66,170,1,119,124,40,40,205,76,25,96,2,107,203,203,9,31,18,104,216,29,41,227,1,111,158,241,66,142,142,70,63,209,166,142,25,173,216,223,245,142,239,60,239,21,41,163,
179,80,145,211,168,118,85,119,120,50,141,216,51,58,252,243,122,220,6,101,35,84,67,97,85,193,161,117,180,211,250,236,94,223,12,234,172,236,69,49,212,144,93,145,2,122,221,68,180,134,33,232,101,91,18,14,114,64,172,15,226,249,84,136,79,170,35,50,140,72,62,86,61,94,148,174,168,200,91,146,223,201,52,169,55,178,245,222,207,243,120,26,54,23,17,98,10,193,178,168,170,52,139,128,28,137,80,20,197,175,32,8,174,104,184,162,51,97,33,82,86,213,189,55,91,47,103,211,237,10,1,181,236,34,55,126,239,179,154,19,26,65,243,92,125,126,156,162,40,140,254,123,7,204,190,141,82,117,201,61,144,16,90,119,197,1,28,244,73,196,7,166,89,221,220,251,80,116,119,219,190,79,176,198,189,251,55,50,198,163,50,116,79,94,241,147,139,224,216,124,131,139,154,227,112,118,65,227,201,64,2,120,196,225,34,125,97,176,112,41,43,208,114,3,0,134,96,66,149,30,164,54,77,155,170,75,189,28,156,101,198,103,173,210,36,150,190,98,224,174,97,244,112,11,152,176,
24,61,11,50,163,208,209,185,164,105,240,65,192,220,190,95,161,76,232,55,196,176,204,218,150,124,43,246,204,84,136,131,170,123,122,211,204,154,103,104,34,175,90,61,39,23,184,247,253,178,44,24,74,225,121,109,79,170,8,102,163,9,121,15,248,169,25,61,104,13,197,109,251,20,47,146,100,233,24,195,39,217,60,243,226,34,240,169,15,162,5,134,50,20,38,207,110,47,224,61,30,19,252,172,161,17,223,251,135,114,184,82,199,115,99,64,106,196,121,67,238,115,105,192,116,87,208,244,49,174,80,193,137,91,114,65,136,83,213,215,62,214,48,225,208,48,25,32,106,61,98,152,247,198,152,84,14,86,19,2,241,254,170,29,36,64,251,112,213,59,71,65,19,198,96,11,189,43,186,25,253,48,153,30,20,91,237,104,253,116,139,16,70,183,228,101,153,230,131,160,89,106,247,185,5,139,128,215,202,224,149,128,220,165,231,74,150,203,97,191,192,207,22,133,114,163,88,41,189,117,58,246,35,221,7,199,125,40,185,111,159,39,13,27,80,193,6,243,61,20,149,213,212,164,241,181,
145,247,240,93,189,240,243,156,174,73,151,185,209,114,206,19,228,115,143,221,253,60,175,202,14,4,72,110,4,183,33,211,251,160,94,201,102,116,78,106,104,28,245,64,32,135,243,223,60,74,178,121,22,47,20,12,67,52,156,37,94,221,159,151,15,1,108,118,247,253,146,105,246,141,125,30,111,229,49,111,247,208,172,98,127,106,222,35,189,84,150,168,168,129,242,78,117,49,106,174,136,138,155,153,83,235,46,202,114,99,175,187,142,98,82,195,157,218,86,206,187,17,206,116,39,71,97,130,64,251,96,29,113,206,235,121,31,141,35,205,95,183,81,4,25,5,119,48,188,177,143,33,226,200,221,213,110,167,128,127,54,87,241,97,63,128,206,236,54,89,212,212,147,11,5,12,223,187,22,89,232,36,179,87,243,60,98,44,49,122,183,91,3,88,101,251,142,178,10,220,221,248,6,167,120,142,55,98,8,222,167,252,76,219,98,47,146,24,57,33,253,34,71,244,131,230,80,1,20,192,55,70,5,150,33,152,28,221,123,120,18,11,170,66,39,196,153,110,132,236,1,76,120,188,217,37,
188,159,231,177,169,153,63,91,173,133,180,119,197,156,22,102,237,113,92,142,178,52,93,24,118,167,51,138,77,145,217,235,47,100,8,83,200,222,217,108,47,64,132,192,150,161,161,4,75,128,54,31,123,193,208,84,55,26,102,170,55,79,88,0,201,129,110,97,39,131,241,38,217,184,63,120,138,162,242,45,90,87,12,192,251,152,21,16,187,193,120,145,123,51,125,97,135,205,110,227,96,152,67,230,24,15,106,121,75,74,245,124,43,163,249,81,226,101,126,202,124,245,97,97,82,76,97,70,18,241,0,15,188,59,5,145,228,50,145,41,5,65,244,60,205,202,11,80,41,235,106,26,115,17,31,99,81,91,20,133,142,152,238,251,126,47,191,225,80,228,93,11,116,219,94,96,73,177,207,2,155,67,29,172,147,44,203,238,170,170,226,32,16,88,2,142,24,26,93,176,68,219,192,24,110,32,126,131,30,247,60,175,48,135,188,186,85,213,87,11,184,119,211,14,164,71,101,159,97,115,156,253,105,31,231,192,115,22,69,17,4,208,211,72,4,165,198,197,158,176,81,2,63,243,161,181,
222,161,46,57,201,54,156,65,66,38,241,36,132,129,44,11,224,121,193,243,143,6,222,177,194,112,31,39,244,162,215,230,98,54,219,89,133,30,167,203,111,30,236,3,147,235,6,72,143,123,104,33,89,121,35,249,59,106,45,1,200,252,231,253,241,52,163,90,44,124,181,108,99,137,61,0,38,199,68,110,192,197,180,7,56,80,102,90,172,242,36,196,228,162,40,30,225,66,207,5,116,50,186,51,34,4,155,23,140,158,58,217,150,75,0,156,139,141,34,241,148,129,54,104,139,34,60,1,243,145,211,61,190,98,4,100,36,241,93,227,25,157,38,228,59,166,112,211,155,136,7,31,63,193,131,24,159,166,34,77,247,15,60,100,244,98,26,29,28,234,194,167,8,231,122,204,99,64,202,60,63,121,151,236,240,188,147,13,201,28,51,197,112,48,83,194,16,39,237,139,110,223,197,225,59,133,204,179,8,235,210,118,136,85,23,63,93,137,220,245,130,200,184,17,139,119,42,156,216,144,249,172,210,168,159,205,227,189,18,102,243,194,179,176,105,19,37,17,214,116,127,104,3,155,21,6,
157,197,184,123,143,55,145,43,153,162,200,167,79,65,1,242,174,48,149,23,231,113,161,115,22,243,231,100,43,242,60,150,17,239,169,96,36,9,65,187,208,247,235,0,105,243,184,229,175,21,5,49,211,62,238,182,70,251,245,186,140,47,221,50,51,151,230,33,223,207,3,26,134,165,250,249,150,87,217,206,63,251,19,134,229,68,48,213,237,93,176,138,224,92,193,119,99,39,170,35,238,219,189,102,128,229,215,162,43,161,55,150,116,72,33,121,137,56,130,2,221,88,217,143,166,252,118,59,165,55,117,195,239,122,134,88,54,59,42,182,175,120,2,70,133,16,20,39,2,210,72,145,4,230,137,206,143,208,64,233,239,235,187,20,243,158,12,118,35,226,108,119,118,182,162,226,35,231,85,103,197,185,13,14,95,9,192,36,114,210,58,236,237,88,241,125,72,158,197,188,3,120,118,69,231,86,242,113,25,136,87,241,17,85,236,225,118,55,43,126,129,57,238,163,239,37,108,223,35,208,51,29,206,161,60,128,235,139,238,29,68,108,185,140,233,199,91,137,107,66,104,244,168,39,37,64,
107,210,171,164,55,4,228,24,55,251,41,75,124,27,0,30,200,147,151,226,31,101,12,199,234,99,14,212,140,150,0,247,172,219,153,50,96,142,179,5,51,10,154,56,150,52,199,174,219,201,108,21,150,132,218,44,82,188,166,120,29,159,78,128,19,113,233,113,194,202,34,110,230,211,235,149,247,217,236,55,37,184,80,97,152,95,247,87,32,70,55,55,92,193,231,251,150,197,240,118,169,220,136,97,126,168,227,3,21,174,28,190,79,230,27,30,249,50,139,129,62,248,224,16,35,2,252,70,106,9,218,132,242,108,152,165,239,47,172,73,139,32,97,219,147,208,231,115,54,199,209,154,204,249,152,31,85,229,51,143,181,222,246,69,146,201,96,152,108,13,12,137,178,59,31,93,74,155,187,11,151,2,82,239,173,126,53,240,204,28,111,137,142,182,208,144,37,117,148,194,214,166,52,70,236,86,57,22,152,215,244,137,49,52,98,200,165,175,87,156,125,191,102,175,166,79,74,209,102,116,130,250,69,28,135,216,240,169,204,129,129,194,21,33,222,132,1,88,44,171,149,148,68,26,164,241,
156,4,27,135,54,194,200,212,15,60,195,64,203,34,119,121,8,173,123,51,65,238,8,60,99,212,155,227,80,243,93,230,200,23,209,190,243,166,170,90,233,102,188,232,92,217,176,130,60,12,17,245,156,5,96,73,132,176,251,247,176,145,29,102,227,105,158,231,99,135,66,173,105,22,161,128,227,143,143,78,71,180,5,128,114,47,128,95,1,174,182,172,222,201,36,204,160,151,214,151,4,148,9,220,152,7,1,204,28,198,220,24,233,42,207,47,21,147,163,142,160,16,19,242,46,110,157,248,13,224,80,249,114,130,75,130,229,246,249,122,84,31,71,159,233,23,197,219,93,245,240,115,62,58,106,66,73,210,20,243,22,40,209,55,61,166,38,44,203,178,43,0,192,57,36,209,76,195,55,0,191,172,44,171,5,13,32,70,17,61,128,200,48,44,222,86,238,6,28,15,221,158,71,60,122,198,129,132,155,14,124,193,5,127,224,22,162,139,61,121,233,89,150,106,69,30,79,20,20,165,182,155,201,250,115,216,30,150,31,22,110,246,189,128,237,58,60,93,60,244,66,120,132,41,136,83,
166,78,6,96,7,248,199,103,250,100,212,128,35,199,29,0,95,117,126,158,197,10,3,181,38,38,59,78,38,17,147,193,218,81,24,251,73,238,199,197,224,15,4,222,96,207,216,97,96,19,225,203,188,195,16,10,159,89,211,236,91,160,82,16,31,165,59,104,35,104,247,235,41,22,176,237,244,248,53,188,15,120,1,25,7,7,70,91,24,23,255,97,72,134,133,165,22,64,114,106,192,103,77,86,6,210,120,37,239,59,226,7,29,140,69,104,223,139,161,5,252,187,122,99,92,234,171,182,76,157,70,101,193,219,123,184,153,74,108,79,45,239,240,205,98,78,158,106,19,217,70,161,197,21,32,30,0,222,108,201,131,18,200,0,100,127,4,148,202,226,181,113,161,73,8,167,217,234,47,211,145,192,231,7,150,101,14,34,233,139,240,161,29,94,113,156,4,114,5,7,8,15,52,54,122,144,100,60,26,69,175,214,36,144,123,172,214,27,201,62,51,36,155,49,208,170,1,225,12,37,140,142,63,72,193,245,178,171,123,174,41,78,117,93,22,93,164,64,63,117,41,15,244,92,63,221,
1,104,129,25,137,216,163,10,109,99,40,69,119,0,62,9,210,158,207,145,2,160,91,121,174,14,180,245,3,141,202,228,164,115,219,65,134,196,158,124,77,6,208,67,71,43,8,200,139,235,233,245,36,199,0,47,0,198,136,160,43,227,5,79,52,24,87,240,61,81,226,40,91,56,64,127,58,112,150,67,240,139,195,209,1,75,83,120,223,168,171,135,241,40,128,47,30,225,97,136,12,65,63,116,53,238,178,180,233,111,77,89,121,126,202,117,181,79,87,207,4,163,147,250,244,248,62,123,80,170,29,64,118,19,128,49,191,235,27,19,200,139,45,19,142,159,133,231,155,120,188,39,146,187,125,54,56,99,111,185,165,138,194,251,229,239,14,13,109,232,185,78,104,76,105,16,31,51,153,81,39,137,50,237,47,252,138,97,175,229,34,179,243,61,21,21,72,210,220,192,231,139,74,76,145,41,106,236,153,8,83,68,2,63,141,98,230,154,251,197,134,240,3,134,153,29,105,109,156,254,12,7,140,22,70,78,123,124,56,194,112,87,184,103,199,183,134,58,144,23,4,119,203,48,1,109,
43,118,29,111,231,7,99,86,105,48,58,38,17,150,16,11,137,225,77,251,116,105,251,20,132,126,129,24,239,166,13,150,221,60,205,59,176,160,67,241,40,138,93,135,27,16,66,60,64,41,84,136,67,216,192,97,72,222,97,31,160,134,253,136,143,217,149,248,250,185,236,59,236,212,6,252,38,170,60,240,209,164,200,215,45,196,160,10,102,33,76,87,13,60,225,75,138,38,174,26,198,112,117,37,24,135,133,105,124,67,211,23,136,95,216,49,96,252,50,246,34,131,54,170,232,77,52,75,153,20,252,248,149,54,207,115,106,17,17,130,217,19,200,205,189,107,91,114,160,133,43,156,39,140,51,213,167,186,12,26,50,117,97,218,120,221,115,206,128,238,158,94,214,121,5,254,165,240,15,190,50,72,246,180,253,239,54,155,49,10,247,109,223,183,156,198,49,35,210,165,231,178,204,25,14,227,219,24,101,153,85,138,221,53,83,190,82,147,174,93,9,173,160,162,231,253,220,204,187,4,187,150,251,48,203,244,163,53,92,62,247,242,99,127,237,49,196,210,216,78,48,4,13,211,66,79,
2,81,57,63,13,120,224,224,209,100,103,247,53,109,175,71,198,76,102,87,27,31,78,113,237,241,244,185,79,183,74,239,165,128,151,122,255,122,188,40,48,186,128,203,104,118,246,244,223,239,33,90,96,1,83,98,42,38,12,153,196,187,84,67,109,31,63,158,48,9,188,137,140,126,156,224,30,70,34,248,192,119,69,189,190,236,234,195,239,143,71,246,212,221,165,117,166,77,104,149,203,206,7,94,145,23,242,165,184,20,94,247,219,116,151,44,140,91,212,23,111,77,165,103,234,203,47,223,139,234,213,4,141,127,117,252,219,107,219,185,41,122,214,108,56,169,96,222,204,5,133,240,44,250,22,84,160,15,243,85,146,39,119,113,66,201,191,121,211,124,178,209,157,44,107,183,250,60,0,198,189,212,219,107,168,1,234,91,225,221,124,150,217,242,102,18,114,72,194,187,251,188,115,100,211,215,130,198,205,55,229,246,150,138,215,2,156,216,59,11,239,177,168,221,152,69,218,107,198,250,254,127,165,246,46,153,235,10,243,55,239,155,126,221,55,98,35,36,175,230,54,157,15,36,5,109,
185,209,81,243,230,93,19,171,236,207,157,165,113,25,81,99,111,106,30,183,231,189,2,191,127,123,243,36,104,215,227,22,116,55,239,38,221,243,127,249,207,100,207,21,28,22,32,92,232,53,132,191,195,239,225,254,137,143,219,117,2,186,43,158,121,142,190,129,100,175,125,24,68,197,157,160,138,125,186,205,189,122,127,176,238,135,221,95,253,3,51,151,158,46,110,254,3,98,211,92,91,244,241,172,210,137,8,156,181,184,229,165,243,114,175,181,120,248,206,198,152,144,152,249,117,217,151,240,203,85,87,231,177,161,49,193,240,196,250,122,16,143,103,126,169,161,7,187,27,156,224,199,76,114,36,186,182,1,44,209,115,7,229,120,248,190,128,153,60,204,13,193,208,156,10,178,92,79,59,228,141,183,26,26,101,35,48,61,179,150,208,215,71,166,95,162,9,41,142,149,226,251,108,146,198,33,246,43,232,90,32,65,129,205,129,22,230,183,176,126,45,128,126,144,245,149,208,52,223,27,123,71,150,25,241,186,199,211,231,81,63,124,153,15,203,46,189,77,84,46,96,246,22,162,145,57,
71,198,84,223,36,225,225,225,55,101,190,61,245,187,23,200,42,157,80,233,219,243,111,121,244,33,184,120,111,120,117,248,214,57,31,202,247,20,179,250,195,77,144,233,110,21,187,239,31,125,190,25,250,155,60,34,255,180,51,36,64,168,98,250,192,159,147,255,140,203,109,52,73,216,36,253,135,223,35,34,66,230,7,249,125,224,193,214,231,210,180,198,176,143,7,204,163,225,29,8,220,13,120,50,219,127,121,247,132,8,31,94,186,76,60,75,113,30,248,39,68,212,147,201,115,167,61,245,31,86,220,164,226,19,80,147,231,29,17,100,145,53,137,104,27,169,245,237,121,222,61,247,158,159,82,230,145,26,117,243,252,209,215,147,22,134,186,79,141,114,44,86,56,50,235,206,154,215,206,39,20,25,215,2,47,89,14,12,218,141,19,229,119,235,43,135,98,164,10,208,41,222,155,175,173,40,215,222,192,119,57,217,123,12,239,169,89,115,104,50,210,54,42,159,231,246,121,128,33,116,30,175,192,155,90,247,252,158,219,191,51,182,53,240,160,153,222,155,171,187,195,110,131,142,79,120,
79,217,130,220,93,249,177,57,27,215,166,209,150,198,105,31,137,79,206,75,167,54,172,180,248,112,186,27,67,245,116,200,240,145,80,165,99,187,204,85,46,116,230,245,24,246,11,135,23,82,36,123,208,248,75,248,100,5,191,152,145,1,109,250,130,217,159,52,184,21,163,156,34,96,48,77,96,22,5,165,84,246,135,114,84,43,204,219,218,196,90,188,225,214,104,140,218,115,227,181,140,255,97,93,206,234,90,99,206,51,223,251,132,189,128,60,15,105,151,45,57,36,11,95,67,176,19,94,142,93,116,48,34,157,81,32,8,138,199,112,248,66,225,140,208,114,68,237,214,62,175,142,251,222,8,221,243,171,232,64,100,116,191,251,55,75,148,26,207,91,130,160,60,231,245,54,201,30,52,126,130,60,157,58,100,160,177,124,19,171,226,126,156,242,145,91,248,163,7,36,74,180,115,75,218,190,255,84,63,122,104,49,88,62,194,228,163,161,86,74,85,155,40,99,70,247,246,122,48,105,229,120,174,77,250,49,154,149,225,2,0,12,246,2,251,181,112,59,79,51,103,238,21,17,241,120,
197,200,153,171,10,246,129,235,249,19,193,134,72,51,192,181,131,72,44,21,71,165,246,143,239,29,96,70,38,18,215,214,217,11,31,202,188,76,90,237,212,176,13,244,3,188,84,154,85,54,48,83,97,84,229,167,158,125,20,143,103,192,251,173,95,80,20,119,5,207,184,122,188,80,230,60,191,193,238,246,82,135,6,76,80,138,222,251,53,229,90,107,207,152,107,133,216,120,67,224,48,70,31,234,58,217,141,122,198,164,71,177,110,174,36,86,224,123,194,10,43,66,173,150,158,119,123,238,114,207,199,108,160,43,11,209,198,214,233,234,155,122,159,182,143,215,14,119,120,167,58,239,89,86,109,129,215,172,23,249,224,203,194,6,253,6,61,215,60,130,48,68,75,174,150,111,223,188,252,16,12,175,231,233,35,103,212,52,196,164,9,190,53,139,59,0,83,223,158,153,6,60,222,32,103,73,215,185,145,112,243,26,169,100,252,41,0,161,76,90,245,158,37,86,166,230,192,181,78,78,142,47,141,197,25,202,164,234,162,237,31,190,228,167,13,172,1,219,246,0,195,10,184,215,105,211,
167,110,17,14,25,72,177,159,88,145,21,244,184,118,126,180,107,10,146,87,149,70,91,5,237,143,60,122,216,194,39,162,27,232,41,121,179,50,61,31,85,241,18,136,101,191,238,52,234,13,197,152,23,211,70,64,164,114,230,206,116,127,39,103,80,145,141,57,74,254,163,108,129,191,46,3,3,0,199,102,201,134,171,108,68,231,179,236,123,131,98,205,187,90,88,10,35,175,104,189,48,157,157,195,157,65,119,85,181,16,75,167,247,149,32,135,121,169,32,249,104,247,247,103,138,112,148,196,231,197,98,13,231,122,79,103,51,37,215,126,186,108,6,180,225,192,197,59,61,3,191,84,103,26,17,188,183,129,138,221,145,75,92,63,227,225,188,73,63,60,127,145,85,207,160,53,162,214,198,40,231,117,191,36,161,233,166,168,86,36,65,215,77,164,189,106,239,144,185,224,63,207,158,152,244,32,175,79,238,126,49,173,127,221,23,236,37,63,158,11,38,114,202,214,222,89,200,117,189,141,184,221,71,249,67,134,68,227,85,253,83,2,145,237,132,206,118,162,107,24,153,159,240,124,117,87,
229,129,111,81,128,108,230,24,62,129,173,176,157,32,170,166,234,99,247,131,187,136,3,253,2,134,99,162,83,199,160,13,179,163,248,219,23,57,142,81,125,42,221,238,207,18,239,33,139,182,242,230,237,117,107,19,89,77,110,202,235,110,133,114,82,164,75,167,158,215,65,16,38,151,73,222,85,110,165,165,247,20,197,43,68,122,210,9,59,151,178,228,3,250,225,124,192,81,46,62,37,31,167,194,210,101,49,198,20,246,62,199,155,236,47,182,224,116,168,40,38,194,195,241,107,253,114,83,16,111,124,166,160,231,251,203,77,250,131,121,223,238,176,159,97,26,107,195,113,112,204,244,141,1,28,101,103,204,10,230,55,163,225,235,5,21,99,150,234,148,154,82,69,88,7,123,178,13,204,130,234,212,66,161,180,83,196,108,204,125,238,244,115,160,138,185,70,66,97,132,144,238,96,136,84,95,185,6,254,139,91,211,208,16,149,44,105,240,246,122,188,229,7,250,228,12,213,193,88,198,34,105,144,120,183,225,14,52,133,249,120,243,232,155,7,74,35,56,206,25,169,169,203,185,189,239,
195,221,125,119,179,114,3,240,123,187,173,183,199,124,187,113,200,109,90,110,55,195,252,253,140,253,242,214,255,228,103,227,107,190,191,63,89,240,221,157,166,166,247,123,240,89,89,221,235,139,254,152,8,235,146,43,252,212,190,220,57,236,211,17,46,185,252,18,132,116,197,231,39,25,225,98,78,182,88,242,56,146,61,42,196,42,213,209,53,184,111,190,240,200,72,85,245,116,98,237,208,146,39,206,194,198,219,165,135,188,214,189,110,70,38,67,53,246,240,188,135,88,34,44,58,50,171,238,53,186,33,214,52,252,249,188,119,99,252,132,89,255,36,15,104,183,70,168,87,78,160,155,208,84,130,144,63,109,240,94,133,160,142,149,51,162,212,106,243,168,242,224,144,179,125,183,182,211,192,119,250,174,76,109,69,148,154,106,160,193,104,196,196,75,127,251,75,51,216,233,95,237,255,28,194,8,135,179,207,229,148,195,138,203,115,154,92,9,39,243,43,90,208,6,126,179,252,112,129,223,21,192,163,188,229,201,34,253,102,116,124,224,251,66,5,7,196,125,59,235,125,223,101,3,125,29,
149,54,61,225,101,237,240,36,172,207,163,149,197,43,60,130,84,162,113,60,150,16,149,46,82,21,121,34,100,6,1,207,178,176,111,77,179,11,236,5,236,26,203,82,20,133,20,112,94,138,84,2,35,52,82,26,170,16,52,48,144,153,44,82,239,198,87,120,13,222,118,238,253,69,210,26,116,159,244,18,122,153,20,144,0,53,210,104,234,72,61,94,253,29,154,137,59,61,238,110,254,177,167,217,116,0,28,225,65,126,21,239,184,30,10,245,185,245,204,125,10,204,140,205,114,211,105,158,145,238,176,254,199,193,237,156,96,65,96,217,101,135,72,184,162,175,32,111,167,210,57,143,98,146,200,248,82,34,199,125,38,122,141,122,159,26,118,114,233,167,239,170,78,80,211,197,131,111,142,130,47,132,116,97,72,118,3,38,97,151,107,62,251,212,192,171,72,61,10,136,36,35,237,197,43,7,247,113,250,121,181,109,15,253,123,181,242,110,49,104,55,155,87,206,23,167,131,37,228,7,78,128,83,214,82,44,209,112,184,134,87,78,140,117,141,81,96,149,169,237,134,25,106,234,209,163,
239,201,102,150,220,134,242,146,203,209,99,224,13,179,42,228,186,77,185,61,132,33,59,15,61,210,38,228,173,41,114,1,41,17,173,86,48,174,215,152,218,240,226,145,189,135,137,58,11,3,140,122,231,30,129,73,165,111,34,34,210,24,89,26,250,231,168,150,138,157,184,222,210,231,69,202,124,182,89,197,158,90,145,176,26,216,165,240,197,105,179,232,61,70,211,103,143,77,204,65,145,251,158,107,54,20,37,56,125,165,79,134,90,67,39,71,178,102,239,199,0,120,246,94,49,100,174,84,252,4,165,178,236,74,62,27,121,45,158,131,65,147,236,231,122,175,29,222,54,98,233,147,93,28,127,188,248,189,82,199,107,225,78,72,208,31,137,82,162,190,61,192,245,243,53,177,68,49,228,136,142,120,29,239,166,67,105,63,102,64,224,245,14,60,130,196,193,184,125,171,101,89,105,189,249,190,103,65,227,154,81,80,205,223,35,94,222,250,21,181,247,158,195,234,17,174,10,63,193,120,210,79,3,234,67,75,185,26,187,241,236,18,150,159,90,238,96,219,164,61,97,167,155,32,83,100,
104,72,125,75,129,247,218,203,251,205,137,202,44,72,4,248,125,175,177,39,187,185,247,147,37,245,77,206,44,79,119,123,65,185,30,243,69,174,169,42,241,50,170,125,239,52,211,157,89,236,197,65,153,150,33,126,121,65,46,120,112,181,3,85,46,12,98,210,93,245,212,14,164,181,32,19,51,203,10,65,242,27,94,27,105,175,22,139,122,14,48,24,215,51,229,154,108,36,64,44,145,173,183,140,150,66,111,148,197,125,80,63,205,198,137,74,9,49,10,242,194,179,39,86,54,73,76,124,65,142,75,199,188,219,59,252,75,137,134,81,48,61,170,48,198,98,122,36,236,113,43,12,156,100,32,56,89,125,84,231,184,134,234,183,123,93,86,129,7,1,5,240,177,187,19,204,235,60,90,107,200,145,170,13,43,98,48,200,118,6,179,76,197,113,211,234,6,65,87,188,102,248,165,198,79,45,9,206,231,54,1,24,181,114,110,106,63,223,195,192,112,169,127,64,161,204,208,53,174,57,115,166,60,243,52,220,172,190,172,122,155,22,68,190,107,139,26,238,80,120,147,164,222,25,40,251,
254,123,174,60,237,238,196,57,238,167,79,37,47,213,23,105,27,197,86,199,44,179,201,110,246,96,235,101,114,163,159,197,199,80,189,116,140,87,38,118,85,132,28,35,199,119,66,182,111,221,152,163,71,121,16,131,49,62,181,133,101,38,209,82,202,208,107,209,149,57,66,96,251,62,181,42,194,170,46,251,58,213,135,74,238,171,123,163,26,75,198,138,20,64,214,9,41,154,143,237,135,62,44,37,106,241,136,241,134,58,200,131,82,67,229,131,10,106,118,216,41,173,60,205,21,206,169,18,88,157,87,214,76,117,251,124,162,1,119,132,108,151,123,251,19,122,145,242,145,218,125,54,92,211,221,43,69,89,194,171,244,125,167,207,76,98,158,163,160,123,194,248,153,134,53,234,233,103,232,237,173,16,60,179,15,214,223,224,167,4,184,14,125,45,195,48,196,236,209,150,154,158,247,208,83,79,250,42,247,224,36,83,1,22,201,24,239,117,176,24,159,118,221,186,132,255,169,215,103,97,135,2,111,24,77,250,2,49,17,196,117,98,207,161,1,217,216,88,238,183,36,178,42,163,143,252,
201,147,7,70,228,229,172,164,10,244,126,89,219,21,60,244,15,215,140,145,183,76,196,61,114,214,202,192,176,249,46,103,222,187,103,41,7,164,113,147,223,225,112,51,130,16,150,237,27,51,51,151,19,172,135,250,127,19,247,30,221,146,50,13,118,238,15,98,144,120,146,33,144,120,72,18,111,102,120,239,61,191,254,198,121,191,214,149,90,221,45,93,105,114,87,85,173,83,43,78,26,8,179,247,126,130,32,176,213,133,127,236,70,85,84,108,135,172,102,17,145,201,83,9,124,125,17,66,65,6,213,242,85,247,143,159,74,119,84,8,159,137,188,205,38,130,190,228,237,144,156,120,8,101,247,166,138,117,179,244,155,199,213,55,105,136,58,231,87,107,251,74,166,216,78,6,160,205,65,45,161,128,234,114,33,138,222,192,67,190,75,77,42,104,251,142,160,38,254,5,242,21,127,197,178,24,250,75,146,169,17,119,17,76,234,89,167,109,52,36,180,128,153,93,81,105,215,175,51,124,173,33,191,217,143,103,239,109,6,149,245,8,59,245,47,60,164,126,127,219,211,119,231,91,98,119,
211,27,120,5,131,234,230,76,205,157,87,183,129,229,127,234,159,23,106,34,249,218,23,59,33,21,31,55,165,231,238,33,144,95,18,237,122,107,122,106,206,2,230,232,193,84,47,123,206,113,209,84,234,224,152,175,227,123,164,139,42,34,121,66,75,106,18,47,140,126,195,154,68,215,186,181,161,252,240,111,254,171,139,51,175,201,131,80,111,152,194,73,3,125,215,149,231,202,203,129,205,203,169,199,172,16,95,45,240,8,95,116,55,238,217,223,214,93,207,83,185,185,104,228,190,87,175,181,190,230,74,29,60,104,111,181,43,163,224,151,240,225,17,160,138,225,188,255,241,213,80,30,188,99,117,230,11,3,214,141,97,156,16,41,130,101,20,168,17,191,35,19,90,254,249,190,179,242,109,203,117,6,186,233,159,15,56,152,219,172,136,23,24,83,109,239,121,241,230,47,94,125,225,131,25,70,247,99,248,203,213,164,41,213,31,186,79,9,251,133,17,31,84,83,154,151,152,241,17,154,129,86,122,63,225,218,218,15,48,126,108,245,91,249,232,19,210,79,155,54,120,163,84,37,245,253,
203,122,159,243,124,163,32,67,208,231,219,96,217,189,126,21,76,245,192,91,198,1,3,14,232,57,20,40,133,251,161,63,111,217,204,227,160,153,146,131,101,144,43,25,158,57,86,102,100,76,14,58,185,146,101,52,234,191,46,3,136,16,121,37,207,196,140,229,51,230,103,100,65,102,101,140,82,248,43,251,35,237,255,80,166,251,151,221,146,61,12,222,220,51,228,202,148,31,147,35,79,142,249,50,218,194,200,12,204,236,255,101,89,125,197,139,195,95,250,135,57,245,76,178,96,140,37,255,238,201,221,143,5,135,208,14,107,4,147,103,214,218,39,188,48,150,170,119,59,100,52,1,178,26,253,122,145,179,12,115,36,44,67,136,193,210,2,21,152,28,179,240,213,40,216,83,223,178,6,244,2,52,225,192,132,113,84,174,134,78,2,58,225,70,121,49,10,19,19,31,83,237,172,215,152,42,98,162,186,120,56,139,31,151,69,84,136,118,89,70,153,126,230,188,193,89,224,89,154,29,43,110,85,193,60,55,239,177,246,38,25,254,243,216,126,237,161,40,244,42,50,48,218,129,31,153,
101,94,153,104,255,218,7,123,4,222,173,85,174,172,20,126,200,112,122,79,252,113,127,89,154,131,75,100,218,230,92,57,165,194,45,100,141,53,19,175,12,47,155,17,224,137,251,228,70,134,96,173,94,40,198,131,200,215,112,127,10,65,93,97,184,42,231,191,246,96,93,41,22,61,91,254,203,182,38,171,158,54,32,84,161,228,62,250,118,78,75,190,72,143,161,31,87,160,36,152,53,79,146,86,100,177,227,168,66,190,125,191,179,125,146,141,77,251,154,5,120,185,101,204,197,15,61,244,222,243,194,180,12,53,219,103,85,137,102,84,122,225,79,103,97,157,225,166,10,50,91,47,139,254,187,236,172,147,200,32,188,86,39,170,111,58,70,196,160,250,217,196,49,98,163,212,105,169,142,227,165,8,14,129,105,152,206,231,243,143,250,82,53,181,201,215,199,12,60,97,99,138,215,30,155,187,144,48,44,35,112,31,160,237,180,105,93,13,77,62,34,32,47,110,201,101,55,93,103,78,169,88,2,74,243,199,178,240,47,101,143,12,107,136,121,119,127,68,106,233,87,38,105,95,196,147,
18,158,85,42,116,162,11,51,243,245,25,155,147,145,197,7,97,95,226,147,206,156,236,188,220,206,123,100,20,85,240,22,79,3,42,236,69,35,124,140,34,91,177,30,162,157,127,79,126,106,190,49,92,239,235,83,12,6,163,189,170,134,83,101,34,112,127,44,116,254,204,101,177,107,207,213,168,116,180,178,107,241,71,34,82,23,209,107,210,215,125,45,11,232,203,8,223,141,93,72,26,159,14,125,190,131,135,102,135,38,129,160,225,29,227,89,189,249,185,185,179,48,199,238,48,102,161,252,231,37,185,62,139,186,194,136,156,3,115,35,232,194,6,25,77,205,74,66,71,211,92,175,72,221,21,178,6,45,17,150,152,144,97,174,132,36,243,2,57,18,53,148,18,69,123,18,29,171,176,32,203,53,239,109,60,34,190,98,142,53,215,83,124,66,102,113,5,110,190,184,228,139,210,198,46,201,146,106,186,75,118,126,76,189,182,49,123,115,231,213,251,208,83,98,0,64,27,231,16,50,157,185,213,21,251,110,5,214,82,210,239,201,148,90,242,55,167,203,48,146,248,95,207,141,74,170,
251,126,253,62,31,63,78,5,48,38,213,150,191,254,249,189,181,169,232,189,254,107,68,154,60,24,145,180,93,105,2,146,5,1,66,23,86,117,114,56,192,87,113,246,240,92,170,42,253,187,199,65,170,239,103,192,104,95,245,169,103,34,168,140,178,84,53,158,9,217,207,228,135,193,172,81,83,30,145,33,217,125,73,24,232,134,13,242,247,146,73,30,2,42,138,172,194,113,201,55,93,100,248,250,71,171,183,77,55,214,181,199,14,225,146,116,201,119,168,105,188,111,164,238,79,86,239,82,63,124,239,249,119,248,93,217,31,43,254,140,237,172,17,198,155,246,243,9,91,48,62,62,102,198,220,152,221,24,223,241,111,142,168,228,214,177,250,99,75,54,180,236,63,109,227,182,36,10,204,42,148,112,251,231,143,212,52,32,84,60,32,70,240,119,217,144,175,253,216,179,213,100,27,160,34,95,1,255,226,165,147,114,221,245,153,202,229,83,65,79,104,251,247,16,104,111,147,104,26,122,58,50,198,119,213,248,187,112,74,186,121,156,169,230,112,234,117,16,200,210,150,233,126,125,196,235,
62,150,16,99,242,107,166,107,33,79,87,106,211,221,221,9,140,193,64,119,82,83,58,241,232,97,54,167,23,255,29,120,253,59,70,209,11,194,187,118,81,125,146,55,9,165,71,215,114,198,2,150,45,54,150,57,124,189,137,108,173,33,71,255,166,115,150,24,216,96,56,94,189,63,24,156,144,7,9,56,238,111,38,103,35,12,180,43,60,106,18,152,144,0,220,18,181,154,63,109,158,171,106,23,76,113,167,88,238,102,53,163,220,107,117,113,238,198,155,76,25,101,89,244,171,64,204,25,40,97,208,189,115,151,94,220,141,148,119,173,171,102,147,55,64,221,142,180,207,37,49,232,33,165,181,248,235,172,189,104,124,91,235,70,77,252,165,18,147,100,20,213,48,56,49,142,245,37,143,158,220,53,188,223,187,205,136,101,99,8,64,33,199,79,58,188,140,4,157,97,235,52,253,242,212,220,209,87,61,248,211,176,124,240,4,84,114,136,234,111,83,23,3,164,79,197,199,60,70,47,167,27,221,100,48,252,1,7,116,74,102,39,192,187,52,117,81,113,170,195,203,153,241,248,209,68,
55,119,165,117,37,21,196,205,225,79,120,3,199,227,196,74,249,133,61,192,4,158,12,50,19,186,16,42,226,248,20,38,43,134,172,178,58,10,116,140,182,250,151,225,56,159,29,127,87,53,151,140,227,197,155,232,156,36,200,55,137,223,98,18,17,229,107,99,208,196,137,186,80,161,210,213,202,222,91,252,163,251,61,234,217,235,69,25,235,238,198,190,46,189,102,21,242,114,232,252,70,236,151,136,225,137,234,222,18,38,108,115,237,222,20,169,89,100,106,214,124,68,122,251,48,146,95,6,137,145,239,16,221,217,235,197,86,62,158,174,33,51,67,120,53,113,132,53,74,196,3,249,255,166,25,95,16,27,222,62,118,15,60,95,84,218,167,106,5,129,178,143,139,155,144,16,104,45,172,243,147,169,96,240,242,145,79,93,101,151,106,237,129,162,80,16,164,136,155,60,147,88,205,141,219,177,73,59,62,75,55,246,167,37,9,105,171,138,43,20,43,7,37,100,29,133,188,249,26,206,73,49,93,165,11,224,174,62,130,85,133,75,80,211,191,190,248,4,7,91,150,126,248,177,192,48,
129,43,132,8,255,22,45,166,160,131,247,159,78,86,61,227,100,206,250,142,87,189,77,16,16,38,141,103,174,151,70,17,126,51,67,121,143,160,168,102,136,246,147,153,50,230,91,84,103,134,97,142,148,1,63,56,250,207,203,24,13,99,212,18,148,57,220,242,19,111,43,243,64,153,138,49,231,13,242,105,9,146,6,235,51,30,208,165,124,20,60,134,97,73,59,91,103,32,52,14,176,254,15,176,254,204,117,11,22,120,47,16,154,0,9,227,19,98,244,216,154,59,95,172,240,212,105,182,122,192,28,161,150,78,238,177,245,247,188,111,248,62,201,127,158,174,50,102,108,13,66,60,191,72,101,84,202,124,50,255,187,166,60,54,146,249,93,76,135,189,58,83,163,3,206,89,254,96,246,10,47,177,14,63,61,223,62,23,144,109,214,155,196,45,200,27,21,17,47,18,18,19,227,51,191,128,15,35,191,111,9,162,77,134,207,216,119,22,46,251,207,75,57,95,20,73,239,16,93,26,145,25,160,169,193,191,230,159,212,227,159,60,52,106,254,198,47,115,47,178,208,36,109,62,173,202,
25,204,6,223,98,17,198,54,139,15,220,163,147,49,201,159,198,38,196,183,31,77,5,1,159,64,229,184,182,81,13,247,76,5,246,112,11,99,240,124,158,35,112,117,16,84,52,37,163,161,178,169,87,31,221,222,241,185,151,10,16,213,76,18,153,47,49,91,8,242,63,161,57,246,77,190,155,224,126,120,231,19,50,164,171,223,177,5,45,41,183,127,223,174,171,189,189,121,24,100,148,231,200,148,28,59,33,142,232,174,120,212,70,94,84,229,14,194,69,97,103,38,250,59,31,156,159,216,219,88,182,18,68,3,141,215,23,36,118,93,164,119,127,63,121,136,179,141,39,16,69,254,154,146,126,98,245,242,142,21,175,156,159,90,144,190,162,125,255,180,187,65,115,237,167,76,246,142,79,217,170,48,72,126,218,132,41,52,144,203,159,40,163,99,108,170,130,42,49,69,226,7,165,216,215,11,233,207,125,138,108,92,125,214,196,71,221,30,95,103,157,210,44,31,247,222,158,102,213,107,43,142,124,15,79,158,215,126,108,214,144,93,133,43,76,9,38,132,168,74,61,148,54,89,18,177,
84,236,167,114,97,82,114,137,85,117,241,68,188,110,59,84,191,113,101,139,165,224,88,162,137,71,89,210,183,169,131,213,230,8,94,135,72,95,102,233,89,95,76,28,51,135,236,212,95,3,164,143,207,69,113,172,87,93,175,245,51,38,242,19,27,16,63,226,37,154,74,223,211,104,64,14,233,106,88,14,114,25,42,108,117,22,104,35,149,119,156,156,188,113,96,16,6,95,169,180,15,190,95,7,159,137,68,59,72,93,169,18,146,252,84,194,246,209,178,150,249,202,1,188,124,53,11,142,133,5,153,129,73,183,96,220,126,196,245,156,210,139,21,136,105,147,96,63,8,127,238,203,40,238,139,156,18,107,179,47,66,207,124,119,227,233,81,71,233,6,171,214,196,147,220,100,85,21,173,118,34,6,84,4,173,158,183,254,225,202,24,79,148,191,92,252,58,106,107,177,85,48,4,202,89,203,18,57,67,242,151,61,163,20,192,131,139,150,239,223,130,21,221,252,115,215,238,133,72,0,123,217,247,157,82,177,118,65,139,104,126,218,79,50,249,110,16,36,223,82,19,234,135,1,63,25,
145,183,72,175,230,209,132,38,211,212,112,13,183,156,124,170,252,48,154,160,34,255,121,222,248,117,171,98,218,30,39,93,237,224,169,76,90,139,155,10,115,192,2,176,255,171,235,181,213,221,45,194,77,232,251,14,3,93,136,25,239,95,243,193,255,217,28,241,127,93,150,219,92,252,15,95,200,255,41,115,124,229,188,102,227,155,189,153,76,95,44,53,68,189,82,245,202,198,103,179,9,216,19,48,252,205,149,22,115,232,61,0,172,146,211,44,12,136,136,138,227,40,68,188,197,202,227,92,76,167,68,85,112,209,169,12,76,242,130,226,150,85,57,226,53,48,68,228,142,148,226,200,243,26,230,26,92,218,128,71,69,182,14,111,148,1,158,119,149,157,85,134,189,190,149,66,198,188,31,141,87,103,122,197,196,65,209,142,220,87,243,223,91,157,95,44,245,233,147,141,202,175,68,251,138,208,90,125,201,113,75,154,188,125,219,163,11,0,70,240,89,2,93,248,183,119,97,107,150,23,225,241,198,78,12,70,188,80,240,38,1,194,20,52,41,233,116,210,5,27,166,177,102,109,106,102,
214,207,139,91,80,254,141,253,98,30,161,196,194,111,97,105,129,168,223,128,36,191,232,182,14,148,218,79,86,43,59,35,22,11,186,172,247,254,190,118,68,51,216,247,163,170,46,8,207,32,212,44,220,211,249,63,28,31,184,206,106,99,52,33,243,126,141,139,161,220,181,152,240,75,242,242,34,197,87,200,188,107,167,251,167,11,189,32,228,172,41,140,107,58,99,29,211,226,182,92,121,32,101,91,112,106,123,39,52,22,174,158,252,161,198,44,102,6,117,188,126,240,27,213,110,202,126,143,175,54,31,121,183,114,166,192,220,225,176,157,137,112,121,166,215,199,142,71,55,161,54,165,246,235,224,204,143,62,116,179,111,35,36,8,110,225,51,228,23,222,240,17,107,118,63,117,203,6,218,69,136,93,105,137,72,240,78,115,236,151,243,148,121,32,141,233,244,25,122,51,11,236,110,119,196,216,203,155,207,60,3,201,206,24,111,96,184,52,167,4,224,237,56,231,82,243,94,33,235,250,26,87,237,232,8,211,111,99,187,78,158,13,112,93,95,58,172,35,23,185,251,180,246,123,99,27,
138,58,213,194,47,92,150,114,142,191,199,204,184,46,237,69,248,70,247,16,54,107,109,71,114,159,119,30,109,85,231,58,147,235,180,114,204,41,202,10,82,192,252,54,41,13,166,207,79,220,172,113,102,195,234,174,66,18,156,92,227,69,159,222,23,234,87,85,132,140,25,173,139,154,10,170,226,72,210,81,71,40,125,207,156,132,85,215,195,146,241,145,215,99,31,93,140,111,176,129,12,44,209,200,33,28,24,221,206,116,245,109,171,123,111,225,28,173,27,80,215,123,126,143,203,70,150,214,52,151,158,199,236,139,13,123,169,149,92,154,71,166,5,233,33,143,235,114,175,143,202,34,158,150,83,247,59,36,178,132,60,86,97,106,149,240,240,119,209,203,213,254,162,116,214,91,91,65,243,97,15,183,126,64,240,97,145,240,94,86,248,158,17,129,156,41,121,233,60,124,196,151,247,117,25,38,186,111,212,111,155,221,126,221,22,69,89,252,109,156,95,223,95,28,139,176,188,133,115,203,209,105,244,187,180,92,247,23,129,94,158,65,84,88,186,83,105,149,240,110,47,221,122,12,141,210,
136,60,11,144,229,231,133,230,78,237,184,138,11,185,85,42,232,135,95,58,63,240,254,41,24,117,233,203,41,198,106,233,29,136,210,33,228,83,16,122,15,68,237,175,112,167,163,148,55,94,115,101,228,120,52,6,124,75,187,59,151,32,246,20,40,14,26,12,133,72,51,239,137,23,51,2,105,101,121,60,83,37,165,184,186,125,45,254,137,183,246,33,171,9,158,183,95,241,116,61,195,65,245,207,162,200,192,181,215,217,243,223,3,47,237,43,226,77,203,144,161,4,83,28,246,61,118,216,161,117,248,169,117,75,168,222,229,193,74,213,60,106,63,194,66,215,231,210,140,33,62,106,137,150,15,123,126,227,2,190,67,66,251,247,92,135,251,80,196,152,163,5,96,79,206,99,49,93,52,25,83,153,3,123,6,76,51,117,147,235,62,15,177,210,169,181,233,140,95,58,109,215,8,99,52,12,79,116,202,90,140,51,27,231,159,245,116,221,26,146,95,11,94,82,234,201,48,31,16,155,140,16,11,194,7,166,181,130,192,222,39,207,72,61,231,49,2,192,115,172,198,62,64,171,217,248,
255,219,124,203,255,89,25,171,113,72,213,165,251,34,103,128,103,243,151,65,59,47,140,122,214,44,130,84,84,112,104,174,160,13,233,225,209,215,104,128,124,103,178,98,179,36,10,148,253,212,126,216,80,208,87,71,88,254,62,54,13,239,56,27,178,125,56,131,30,117,108,244,115,38,212,197,162,208,62,200,111,208,24,12,35,207,0,168,253,249,61,154,190,91,84,39,140,101,40,140,147,151,115,142,140,171,91,252,252,122,124,132,32,229,185,178,36,77,19,126,92,201,154,215,167,6,152,12,247,67,167,132,254,239,195,164,47,201,224,78,80,206,221,203,239,243,186,170,205,12,3,186,50,119,17,203,22,26,37,183,225,179,160,29,68,101,30,86,213,215,214,234,89,254,115,230,185,104,189,149,111,21,58,197,46,163,59,70,162,64,21,137,135,139,10,17,150,54,44,237,53,182,251,134,240,10,116,229,222,166,75,20,3,171,169,187,220,35,6,180,107,124,223,34,135,31,252,126,129,73,189,232,45,226,95,212,214,177,175,187,122,23,45,86,33,211,59,56,150,114,50,29,76,222,10,235,
40,18,164,134,71,237,192,19,151,198,133,89,246,35,251,35,196,154,39,220,208,226,36,217,182,60,133,42,217,153,65,175,125,225,210,101,139,35,147,195,170,175,150,27,141,85,174,201,177,253,100,59,228,116,83,164,15,226,11,188,110,72,182,241,253,102,156,229,69,137,216,67,168,61,110,213,174,221,239,171,228,82,245,40,60,228,182,93,98,7,170,142,207,102,56,169,222,167,159,187,134,48,72,105,231,239,192,126,12,116,132,46,110,224,75,197,188,239,187,203,130,163,230,206,187,134,95,16,142,189,160,188,92,44,152,200,8,169,234,160,29,141,60,177,6,168,126,151,227,171,23,90,197,152,94,186,170,173,103,142,109,179,96,127,101,254,138,171,183,16,187,185,240,251,145,226,68,217,117,242,163,212,200,64,53,211,11,45,79,130,160,85,22,215,247,202,56,45,117,217,162,188,98,84,156,202,5,187,105,62,231,201,100,148,253,250,102,127,255,221,228,104,21,250,84,253,214,177,171,168,27,50,141,28,105,22,207,176,111,127,179,87,209,247,3,17,67,159,203,135,124,52,243,28,172,181,
123,193,248,73,232,30,117,175,35,36,107,40,72,222,52,246,194,242,47,23,33,146,218,208,122,97,245,40,230,142,135,228,167,98,110,231,188,107,224,190,11,183,251,119,22,177,16,249,216,59,44,2,94,150,203,191,149,79,164,77,138,88,171,117,50,189,78,60,32,42,202,159,130,217,105,23,180,57,16,145,74,93,196,48,39,88,179,196,182,211,46,0,107,174,132,16,116,140,20,47,251,135,158,198,106,30,15,138,192,161,186,189,230,205,172,165,209,225,241,158,238,205,11,187,244,124,100,41,12,39,225,176,177,12,201,190,167,43,197,15,211,42,252,79,23,99,159,157,222,141,248,145,34,34,11,131,146,245,186,188,77,245,163,243,106,168,136,139,107,224,99,106,62,167,243,233,238,195,12,82,202,118,6,148,136,135,243,135,147,84,240,197,159,9,147,160,142,72,194,37,242,146,110,160,12,228,149,137,253,237,253,94,139,177,117,0,114,45,123,65,148,87,10,245,223,140,86,239,139,146,118,158,193,44,11,35,205,240,201,96,201,210,152,34,1,52,77,9,116,153,134,24,115,23,218,190,
237,95,81,116,181,115,141,223,188,87,200,158,244,58,61,208,135,132,9,81,119,136,121,105,74,124,65,223,94,146,124,195,120,160,50,131,127,176,69,191,180,126,125,39,110,197,118,157,224,50,6,73,248,233,243,162,129,221,209,233,239,121,63,175,109,154,177,123,188,95,32,152,227,109,161,83,228,15,245,22,233,181,198,222,203,139,21,31,224,93,64,103,32,212,139,219,157,148,175,189,23,199,98,112,234,103,30,49,121,247,189,243,116,253,169,120,111,209,167,60,66,203,135,125,180,135,232,199,199,63,53,78,26,103,91,190,245,117,157,190,24,36,196,49,250,78,212,227,17,222,171,155,20,181,231,220,165,241,59,16,7,127,126,26,39,224,97,189,1,203,3,90,85,224,34,181,192,34,72,180,195,27,153,133,8,73,221,241,150,179,78,122,175,250,246,155,251,246,197,177,90,24,6,54,172,175,226,91,226,4,67,59,116,217,90,191,234,135,12,14,222,233,49,75,75,17,112,104,93,112,149,160,35,248,191,31,151,142,172,6,247,150,251,28,212,167,238,210,239,241,118,231,234,131,189,154,
131,72,167,178,111,210,87,163,179,202,165,189,134,79,142,118,194,245,109,232,37,246,76,27,31,116,205,139,86,153,250,201,234,42,207,29,100,127,8,84,122,255,50,184,179,151,154,117,182,122,86,169,219,240,102,182,74,100,203,171,4,126,9,154,189,227,96,110,153,217,247,40,128,30,211,190,140,186,205,231,31,52,177,24,209,188,246,15,115,255,104,52,43,208,52,72,158,189,242,183,221,71,18,156,102,126,220,88,172,201,85,226,60,24,242,59,179,225,243,123,37,51,232,32,85,216,182,39,245,167,33,242,175,232,97,73,53,162,121,197,19,139,222,189,176,250,17,6,46,188,231,177,59,185,9,229,110,82,74,223,90,169,157,72,247,175,115,247,231,179,5,242,102,63,11,71,188,115,85,122,238,226,141,190,163,188,45,138,0,163,147,215,139,238,167,30,67,126,36,76,54,56,55,133,22,172,34,233,71,106,73,8,129,19,184,148,54,204,195,159,254,132,86,171,116,53,174,32,194,15,10,250,190,223,250,233,100,234,75,58,196,68,229,131,156,20,195,44,27,71,114,38,9,163,247,110,
211,149,60,107,109,166,92,20,105,124,161,193,41,255,87,107,81,8,84,88,104,168,11,69,127,183,168,65,185,84,189,80,169,109,197,52,192,82,143,89,95,36,27,34,249,243,125,115,107,227,116,109,55,51,239,113,234,124,222,187,180,120,226,214,253,205,148,73,181,26,8,223,151,30,205,72,29,171,129,49,189,93,239,135,254,218,171,93,243,62,70,193,54,225,63,6,48,248,55,3,23,185,125,65,63,97,195,191,2,253,38,35,6,231,128,67,16,241,231,82,203,65,253,179,7,65,205,63,135,240,160,91,236,224,26,226,215,114,156,127,49,5,18,211,121,104,53,168,146,181,234,244,70,229,42,7,193,237,39,156,176,5,59,206,221,190,146,136,124,40,135,95,244,65,106,102,18,119,184,171,145,160,149,134,69,136,229,187,236,199,141,250,242,219,8,172,33,242,223,155,228,249,32,243,134,119,161,190,60,82,222,218,77,249,69,11,6,252,229,113,12,251,105,208,117,123,137,198,46,229,186,228,101,52,183,48,215,164,200,159,70,251,170,72,48,17,70,24,133,177,146,203,48,170,80,214,
72,107,10,76,88,53,233,198,90,204,152,114,255,122,117,2,9,146,192,218,83,140,110,55,70,131,9,104,243,214,105,213,197,248,31,56,102,19,119,147,115,219,51,18,99,252,137,162,201,217,136,229,200,77,71,67,1,232,20,135,179,72,54,218,100,163,131,3,254,69,115,204,127,16,229,121,135,113,229,137,24,20,209,99,232,250,245,194,214,16,236,220,233,213,1,97,177,145,236,80,134,87,35,197,234,120,126,195,51,31,177,159,146,4,244,177,183,239,158,131,8,92,145,166,194,150,26,123,246,100,175,141,36,184,50,99,208,66,94,14,151,130,199,112,28,90,16,222,2,49,45,252,249,47,175,79,253,91,217,100,250,171,222,132,232,183,41,241,93,108,172,113,38,247,101,91,55,163,25,73,82,135,216,50,228,233,252,149,252,247,44,227,202,144,28,172,103,75,95,52,77,99,244,171,64,23,77,9,247,192,157,94,235,250,158,152,214,211,138,26,103,74,78,21,125,0,142,241,190,64,16,244,30,226,192,194,50,146,46,14,140,32,243,99,220,154,117,80,238,72,180,248,112,98,224,184,
73,205,101,109,13,91,7,223,193,59,139,35,95,122,32,5,65,144,91,42,17,110,254,157,192,117,72,223,187,123,91,0,137,83,251,115,136,191,186,5,175,149,154,191,251,19,63,157,166,14,65,145,239,193,129,81,29,87,24,2,219,162,32,5,151,160,91,49,98,215,12,130,23,94,118,110,187,213,125,173,234,100,30,63,157,99,64,44,186,239,233,239,204,91,118,94,44,75,112,213,16,26,236,41,113,40,210,168,198,235,251,243,131,177,246,142,87,177,244,30,211,198,178,234,193,98,169,206,132,32,230,142,139,37,223,72,60,131,228,10,126,57,50,23,22,117,94,105,9,128,187,234,58,215,215,188,197,197,50,56,115,238,129,167,127,38,76,101,148,3,147,95,200,234,243,91,113,135,126,251,96,165,239,221,110,67,174,230,146,8,104,24,187,117,15,193,27,218,111,48,23,95,32,201,72,126,141,176,8,35,149,215,205,45,13,14,125,93,184,42,35,49,236,54,193,87,198,152,175,145,221,80,18,91,184,73,102,138,48,181,59,172,176,149,103,216,169,170,55,19,43,80,63,237,64,248,
207,29,49,99,197,198,162,75,41,25,148,173,218,46,20,89,198,210,56,194,176,90,30,216,114,26,186,134,14,218,93,148,128,25,206,243,168,68,170,102,72,134,186,222,12,134,38,223,255,158,99,236,212,109,188,228,154,216,222,1,189,168,252,104,160,50,130,215,126,28,199,174,240,83,5,243,18,167,194,162,91,17,240,228,222,193,51,187,221,51,74,172,71,79,236,248,27,189,83,122,251,145,217,218,148,23,207,117,88,165,76,81,222,183,221,102,210,69,171,157,77,124,147,41,129,94,7,232,118,234,91,85,20,47,182,156,141,26,159,104,154,225,160,90,118,46,195,154,38,221,92,107,242,75,47,98,12,38,138,42,127,220,103,36,222,236,30,247,140,178,204,212,85,85,74,50,238,16,42,49,214,238,157,190,198,32,9,33,167,241,212,187,94,141,240,29,75,185,13,50,82,85,93,196,252,12,29,248,104,159,193,140,32,159,216,230,139,153,69,187,252,170,38,9,199,215,0,112,162,221,27,164,154,13,217,3,86,7,223,156,142,254,173,19,119,156,72,237,172,109,76,39,45,5,245,246,
13,199,217,189,4,3,99,239,197,19,215,8,217,59,120,61,182,19,112,35,254,125,194,64,8,99,160,192,179,82,35,119,161,3,6,201,68,195,244,130,137,204,167,37,240,247,189,143,61,16,62,133,252,3,186,196,183,109,175,241,105,201,129,45,237,5,32,11,240,238,165,196,185,143,23,8,86,174,156,87,153,14,242,253,94,26,122,90,236,133,147,24,162,242,246,192,65,253,234,168,156,196,203,216,152,59,229,243,230,102,48,90,245,182,82,197,106,180,45,31,77,64,58,185,144,182,144,206,247,57,182,141,102,43,49,29,118,188,110,205,191,13,162,62,70,234,144,170,214,240,173,40,23,188,60,206,50,195,125,22,65,69,212,86,202,176,12,81,234,122,179,44,232,111,173,198,20,9,187,123,36,216,35,196,31,242,45,85,252,104,169,226,217,142,138,7,171,111,93,248,124,52,117,190,129,129,30,46,183,31,116,237,156,200,192,61,148,141,61,85,67,226,225,19,34,133,88,180,227,76,91,73,1,241,46,47,43,145,55,15,49,254,138,154,71,182,207,152,78,119,244,16,89,246,34,229,
66,159,205,212,63,5,26,58,36,33,20,62,130,250,35,240,118,151,174,79,96,11,130,252,131,253,212,67,208,141,89,187,252,102,2,86,6,57,73,210,148,137,192,230,126,154,67,87,19,224,56,219,194,222,229,135,151,63,141,172,93,57,122,123,73,99,228,23,11,52,248,50,140,64,109,107,89,7,22,43,137,169,143,70,158,17,161,246,25,170,70,140,75,203,192,242,195,215,248,154,39,55,119,177,218,254,54,33,181,132,212,126,34,139,104,227,150,43,34,74,157,58,130,243,248,142,233,87,67,85,119,177,25,115,172,168,178,74,136,215,142,103,95,29,61,220,78,175,162,46,101,201,169,26,187,120,242,194,94,240,198,156,218,169,25,73,182,115,42,34,46,46,62,12,252,93,179,254,156,115,245,179,219,46,27,51,164,232,143,46,8,63,137,15,211,191,102,249,94,108,100,169,104,218,102,175,130,130,158,180,204,132,83,31,51,230,99,58,35,137,113,34,251,46,38,76,214,80,255,199,150,101,160,43,10,154,13,133,57,128,214,221,138,84,9,66,88,83,140,181,47,51,191,100,255,214,
126,166,165,255,239,184,53,157,15,243,71,76,4,8,214,204,211,118,181,224,69,102,233,185,12,35,254,219,156,99,183,48,106,255,109,66,220,248,148,248,234,107,249,50,147,189,76,223,23,156,73,133,51,156,250,135,25,26,132,202,20,88,96,84,78,134,65,32,26,8,134,30,4,225,124,21,32,223,176,78,10,207,158,54,120,194,41,168,194,102,145,48,211,50,253,191,124,96,28,55,156,166,50,44,65,160,87,176,84,13,183,59,45,161,55,242,253,93,175,15,233,249,15,91,75,248,167,15,85,197,83,254,158,197,190,44,139,54,104,194,218,7,154,39,70,167,58,21,90,157,225,59,203,176,252,233,0,206,85,196,79,199,42,136,82,218,170,36,189,123,246,239,18,187,124,63,220,124,224,23,24,121,117,16,43,63,230,141,50,28,67,70,93,215,37,226,173,63,60,131,244,115,165,134,9,167,252,185,166,117,27,249,214,36,139,173,215,171,147,224,145,237,154,206,69,245,189,69,8,250,42,168,26,223,92,130,187,93,157,78,62,81,224,156,143,14,210,165,75,38,99,63,249,221,247,248,
58,179,85,60,235,98,54,127,159,15,199,138,128,129,209,243,142,156,187,107,130,198,222,156,104,85,48,165,91,157,168,225,97,247,142,177,230,178,6,22,25,93,68,32,238,237,179,10,252,38,62,10,36,79,235,182,100,97,76,213,148,39,4,231,3,189,251,86,217,115,96,50,105,191,242,41,24,33,34,96,198,72,186,160,161,93,19,249,230,171,117,190,216,143,9,27,243,101,5,63,74,68,88,175,236,51,114,18,139,62,161,184,34,53,149,242,201,228,143,154,194,211,146,192,194,181,140,228,62,39,5,95,184,134,156,163,49,53,37,104,96,199,35,235,2,111,153,214,119,83,84,155,8,253,61,97,17,110,117,137,61,35,206,65,204,181,242,134,4,244,227,237,115,129,216,253,51,50,189,205,97,178,253,20,3,192,7,21,110,113,124,235,140,54,167,59,97,177,107,45,131,173,156,186,117,24,136,132,167,235,229,236,253,144,9,27,65,72,254,66,105,87,230,132,209,217,177,17,91,209,211,252,190,71,251,174,48,30,160,156,165,173,135,54,5,63,121,165,73,4,74,62,250,42,111,86,
42,250,177,223,140,247,15,181,91,118,135,142,227,111,0,145,242,116,226,189,231,113,200,129,142,9,36,110,184,71,174,50,18,81,245,146,158,19,123,110,151,229,254,198,200,69,229,88,240,188,174,132,9,234,86,91,104,150,206,45,140,107,140,173,119,207,117,213,150,155,201,251,161,174,92,40,246,15,114,55,157,149,237,155,125,84,172,21,68,112,216,205,60,202,120,169,172,172,225,168,153,1,189,153,82,114,39,253,2,3,66,95,94,93,157,132,51,233,47,211,199,193,44,62,81,35,11,238,142,93,142,39,31,15,114,141,177,152,251,230,58,47,153,127,170,141,113,147,219,196,154,234,201,166,195,34,125,119,255,102,213,38,40,75,254,158,117,121,79,254,156,197,247,176,253,166,232,87,136,249,150,157,9,250,244,208,224,188,85,225,16,134,243,178,190,152,104,145,143,33,122,33,24,190,228,99,3,93,112,142,111,20,127,47,65,229,254,158,32,113,251,170,87,52,31,40,158,216,205,36,234,233,54,157,129,79,157,174,243,96,4,103,203,46,72,56,128,78,250,167,36,236,199,13,186,44,
149,25,165,6,46,130,191,146,6,9,129,21,187,23,18,132,30,26,73,97,214,147,89,148,10,36,53,171,13,65,110,192,77,80,36,9,21,214,171,128,57,131,180,244,167,87,74,34,169,8,208,48,210,254,128,28,162,91,78,5,14,242,172,19,155,180,104,243,171,172,20,137,81,41,67,94,191,114,220,8,200,94,62,103,37,116,78,194,202,42,208,82,119,50,193,144,192,218,93,81,17,86,162,190,150,18,89,17,89,49,229,107,161,195,138,145,115,81,232,204,6,68,139,202,110,5,114,25,5,136,120,156,255,232,41,193,7,116,66,189,168,223,200,168,24,243,84,136,129,164,170,43,25,153,148,65,133,202,13,108,109,29,111,19,133,5,49,2,214,62,255,80,252,125,241,111,117,15,146,35,212,119,210,2,57,236,251,130,188,252,245,222,136,115,147,38,167,246,63,249,73,203,9,227,177,72,216,56,245,174,226,134,154,125,42,232,184,146,229,130,251,239,68,153,42,21,148,188,117,196,178,225,43,97,231,73,255,133,215,40,75,231,145,189,207,134,11,114,244,185,103,195,254,134,62,237,
6,93,110,196,163,230,134,133,189,120,90,90,37,173,119,3,65,195,33,14,143,179,13,126,16,168,133,36,166,219,86,13,128,25,145,242,118,8,166,16,204,64,114,96,250,187,250,83,128,235,240,163,94,244,149,172,68,140,191,201,107,133,43,173,16,233,79,77,122,110,172,92,63,242,106,16,182,198,174,191,205,214,136,142,31,127,147,191,65,93,52,49,122,178,169,57,170,214,30,232,156,117,232,121,85,50,131,49,148,237,152,61,189,219,168,123,235,141,9,95,98,242,153,198,17,88,65,2,195,4,203,90,124,203,242,114,93,121,189,8,80,0,67,64,102,197,85,44,51,251,208,222,176,175,84,96,16,180,98,60,111,173,18,144,90,165,20,72,61,27,231,231,35,94,239,124,194,120,96,71,26,91,50,206,87,137,208,116,120,37,29,72,232,51,74,155,93,33,123,124,69,34,246,71,152,121,225,111,30,245,102,253,255,237,58,187,191,9,176,53,17,175,51,149,88,43,92,253,191,107,223,107,68,117,205,136,27,208,240,45,67,241,243,27,26,148,124,74,249,111,30,116,156,9,246,119,
179,148,1,242,12,244,26,112,148,235,169,9,158,3,67,253,212,42,172,197,141,87,126,100,150,55,54,189,113,145,43,138,46,10,162,246,96,1,41,35,248,136,93,250,111,12,226,68,245,240,30,55,81,227,127,127,215,116,97,123,116,248,235,139,97,129,27,236,190,22,173,189,59,235,79,237,221,144,199,39,87,202,49,32,110,130,118,27,111,94,80,107,103,116,152,214,55,126,23,96,10,240,155,171,3,198,31,92,245,243,157,248,29,182,115,246,90,25,158,69,159,229,35,3,210,136,250,145,157,190,158,234,158,40,111,2,97,54,26,117,207,110,7,77,109,131,51,84,133,148,223,67,171,194,215,113,173,235,218,27,99,125,51,188,163,88,220,66,71,200,251,156,183,172,75,236,5,13,125,210,163,245,116,157,235,43,220,200,157,218,155,57,119,55,242,140,60,218,234,79,42,14,232,24,248,221,145,174,9,118,161,91,131,49,196,104,60,17,246,52,250,28,113,155,158,196,85,228,171,137,22,99,182,177,110,95,90,159,129,102,181,166,63,242,75,72,252,141,253,66,34,1,205,175,141,108,
139,247,194,243,223,143,121,46,66,231,45,59,29,227,134,207,10,95,137,67,227,209,195,225,129,186,212,47,143,135,7,207,215,11,0,235,159,186,202,211,102,173,157,126,181,60,218,115,200,234,150,51,245,81,48,220,113,142,214,157,151,141,101,217,50,149,24,152,22,50,251,137,52,45,128,216,44,38,52,213,199,79,25,63,250,149,9,29,17,185,169,208,182,38,47,72,125,138,55,220,239,86,181,160,174,161,233,247,173,231,10,121,137,112,12,87,119,183,235,119,168,16,211,79,206,46,169,141,80,155,5,217,205,74,93,24,254,141,97,164,248,0,95,169,80,61,69,0,155,175,131,130,150,185,158,136,182,64,58,225,215,246,168,66,238,147,149,27,255,242,17,60,2,70,43,123,177,234,102,122,90,130,215,253,230,234,173,249,226,184,167,225,32,88,74,96,178,81,230,33,221,129,213,111,238,149,74,13,82,16,171,62,251,204,141,124,66,193,67,12,54,208,76,74,214,114,226,91,111,82,90,184,31,163,110,64,6,221,154,101,88,115,216,174,42,107,177,84,80,37,55,204,150,128,93,226,
113,243,164,78,73,42,127,182,58,161,83,215,57,98,158,9,165,133,190,203,38,74,108,91,1,29,200,11,251,20,133,72,244,26,158,42,159,208,171,7,181,20,124,134,7,239,159,226,124,80,240,159,239,15,91,219,15,205,90,3,221,124,115,5,230,133,223,25,100,119,195,182,195,117,250,187,18,11,120,98,99,223,162,239,123,103,170,176,179,86,207,7,127,134,167,225,244,211,175,167,10,61,156,78,89,125,242,172,10,44,210,218,12,60,139,34,1,208,145,214,18,37,209,197,32,76,234,159,171,87,77,207,5,57,9,110,101,19,254,126,236,248,190,179,124,243,141,21,88,129,4,144,35,95,16,198,239,60,147,32,171,31,167,88,13,23,18,197,36,30,44,213,98,44,145,50,229,161,63,197,107,116,33,156,53,61,241,111,203,38,224,3,241,200,103,65,134,41,119,191,207,50,22,102,196,100,148,215,120,76,191,65,232,137,213,27,241,214,198,197,211,85,57,107,10,109,95,148,123,109,45,7,170,219,86,115,5,125,169,182,247,203,82,201,7,83,176,107,54,116,191,103,228,246,120,105,
145,217,232,97,119,106,238,22,116,109,167,242,144,150,169,159,68,109,137,233,3,19,147,78,40,9,145,242,146,4,188,54,207,122,252,101,149,143,156,63,241,22,174,27,126,17,36,183,7,168,21,231,84,31,28,108,117,189,126,66,133,111,228,239,78,189,205,17,47,167,167,141,141,152,135,31,98,183,55,244,34,129,212,144,143,91,46,95,42,173,170,106,232,226,127,239,9,99,67,44,237,11,227,214,217,122,117,62,164,174,134,140,98,61,248,67,102,78,99,132,228,17,91,35,126,81,223,177,51,197,84,166,217,119,66,216,26,191,117,240,144,251,28,142,61,120,136,117,223,213,197,103,196,222,68,59,81,62,248,12,254,198,195,68,247,176,186,143,192,30,23,71,150,155,139,112,35,10,45,181,68,220,180,201,139,236,154,181,44,14,99,13,152,213,10,188,230,169,237,217,49,63,99,118,46,87,150,30,24,212,196,83,198,178,125,244,222,159,255,46,230,87,161,23,215,212,142,29,11,2,70,191,64,12,138,2,218,215,68,79,52,81,23,60,20,9,133,81,230,207,232,69,85,3,100,139,
46,28,216,224,54,204,85,254,54,34,120,44,140,126,29,127,172,194,39,236,205,158,159,239,37,214,139,174,39,210,69,14,169,121,68,225,42,50,172,14,119,67,116,23,244,30,104,221,189,36,136,237,51,158,211,126,124,210,116,55,203,220,254,214,42,152,42,250,175,117,15,124,183,116,102,184,245,67,149,50,173,244,173,9,148,252,215,186,5,131,99,255,199,181,81,177,41,46,127,199,243,49,113,67,235,102,120,86,247,165,126,185,107,134,89,48,172,188,63,204,249,165,232,253,177,50,43,100,74,78,17,255,150,208,128,227,57,129,113,33,244,43,7,113,136,5,7,67,32,214,42,88,149,22,102,155,9,78,179,170,230,191,54,84,147,88,207,65,86,161,95,11,66,226,238,179,180,151,1,160,75,111,64,188,131,16,107,63,195,138,254,171,19,96,172,81,175,212,56,73,146,212,13,134,126,87,35,78,159,138,83,192,17,82,190,172,38,163,112,124,37,36,74,196,133,188,219,46,110,111,49,227,122,76,255,152,131,194,217,87,221,125,211,56,143,8,63,117,135,107,190,190,155,124,144,127,
139,170,202,111,29,70,145,127,173,14,127,51,180,55,142,245,44,156,118,20,139,22,156,125,28,200,73,96,210,46,153,206,250,253,140,156,229,201,147,175,150,239,176,25,197,19,51,245,112,85,118,228,19,211,59,0,128,187,27,252,114,122,89,7,162,169,6,119,126,79,219,179,128,253,181,253,214,251,126,96,141,109,240,23,201,174,238,167,250,223,220,80,209,254,9,179,41,94,159,236,242,227,181,98,12,213,67,96,43,240,64,84,249,222,4,200,250,214,180,8,72,56,175,219,144,203,51,138,5,218,91,54,3,107,151,221,144,94,223,28,241,13,191,4,254,29,163,146,60,239,95,67,24,74,136,90,0,173,128,102,137,98,53,134,110,93,239,238,76,161,175,237,242,46,97,247,135,254,36,66,162,97,112,177,78,117,172,230,44,4,99,2,208,233,183,94,181,98,252,121,194,165,238,150,200,251,142,101,151,72,178,186,159,119,6,241,48,69,8,234,76,153,166,25,74,44,105,228,129,211,53,170,21,242,197,151,231,175,185,162,5,213,204,8,215,162,158,27,177,155,34,68,12,232,182,63,
218,99,119,21,176,142,120,129,34,141,169,231,22,229,167,130,228,103,74,149,172,223,191,174,169,53,157,30,71,232,107,21,61,235,13,39,59,36,42,33,23,131,136,180,182,19,208,188,98,237,194,79,74,255,10,80,93,30,98,57,48,117,96,247,47,227,249,2,160,162,83,191,163,228,164,144,208,66,64,184,228,169,15,61,69,190,79,43,201,102,177,113,236,234,250,58,46,255,88,201,170,5,34,162,191,151,216,121,188,67,39,239,224,122,160,42,91,29,130,39,6,60,200,94,88,122,97,90,220,175,235,223,131,0,216,173,134,185,26,39,186,69,128,49,224,49,251,88,203,58,132,127,239,78,76,95,41,107,216,7,228,43,27,188,72,212,238,143,27,127,112,181,188,42,71,232,32,246,50,75,249,167,164,255,178,255,6,70,151,59,107,239,30,252,199,29,231,246,22,134,24,241,77,117,192,84,122,205,206,140,128,228,12,241,231,8,125,86,223,54,49,231,183,4,169,65,175,94,79,206,218,211,198,211,37,124,100,67,92,222,141,239,217,171,154,141,145,87,178,246,103,249,106,14,76,0,
16,33,1,145,212,200,27,242,157,215,84,87,62,238,190,150,249,76,188,185,17,12,27,244,137,3,27,125,93,176,178,204,233,90,131,60,185,233,111,222,17,100,57,51,158,137,89,187,12,81,255,180,132,232,232,105,113,64,88,229,124,41,123,190,117,74,219,176,207,162,149,71,144,154,215,207,160,131,129,26,103,199,94,70,205,71,155,132,7,253,64,7,110,99,243,114,44,86,147,18,70,249,225,47,129,109,190,11,32,57,252,128,18,246,151,216,14,85,182,62,98,76,72,150,112,84,192,128,170,171,171,130,97,255,188,250,206,54,113,123,62,223,178,5,24,241,226,184,197,83,17,213,253,155,234,34,52,128,189,179,92,216,18,84,112,206,247,155,81,69,172,131,177,55,125,137,79,30,210,149,168,84,87,6,209,234,133,55,131,252,55,231,245,74,175,169,68,142,115,92,192,80,207,183,84,33,11,84,49,62,105,6,248,234,191,249,80,156,221,148,187,37,93,39,80,133,203,190,188,208,106,242,86,160,194,239,127,152,251,218,198,139,34,185,118,142,114,18,65,225,41,234,248,119,172,89,
241,94,107,215,127,159,255,18,250,177,145,119,71,96,51,187,48,95,50,109,205,230,11,144,48,108,200,33,80,145,105,142,123,129,187,50,113,72,124,165,83,101,232,239,249,88,3,29,60,55,168,206,196,233,135,236,237,171,234,128,46,78,195,199,230,125,234,222,98,93,13,26,42,170,57,200,1,50,244,71,172,13,127,214,195,208,68,152,244,144,190,194,139,215,247,162,253,82,25,92,253,139,79,211,244,157,47,160,146,237,128,150,208,49,55,137,223,155,132,212,242,216,209,46,62,252,37,11,115,182,55,158,227,106,105,231,188,145,155,134,237,146,220,40,239,15,97,67,26,255,101,183,40,56,66,88,232,197,250,207,120,0,146,248,21,0,146,125,241,118,140,235,232,86,153,222,58,48,158,11,77,184,9,31,13,66,49,133,241,51,70,113,229,240,232,119,75,28,24,50,0,123,252,61,10,34,186,255,49,30,234,123,179,112,192,220,21,204,124,89,163,89,82,57,252,155,27,73,75,96,60,111,145,99,211,179,29,34,52,163,141,66,237,0,222,243,39,23,59,231,255,228,55,43,121,252,
179,70,85,122,254,181,54,247,63,91,175,251,255,115,89,36,150,94,205,248,12,82,127,21,164,37,198,46,180,6,224,181,109,43,219,145,1,152,115,248,0,99,20,102,17,253,36,102,100,185,224,92,184,127,183,142,248,159,121,61,105,186,58,77,121,67,133,186,194,167,204,252,179,136,240,255,98,207,152,127,204,24,48,154,252,191,224,182,127,87,134,204,171,222,252,107,21,51,252,149,172,52,216,248,125,153,73,232,88,200,88,202,191,222,105,50,183,146,180,128,53,114,169,142,11,76,26,134,161,0,141,27,175,181,185,28,102,179,152,148,228,58,71,246,207,125,78,106,5,178,74,104,186,20,14,109,249,235,215,180,4,228,133,107,204,23,241,96,146,28,95,174,255,186,55,4,249,208,149,57,38,107,20,212,181,236,26,230,224,142,148,7,88,67,44,33,14,160,14,146,121,194,22,149,173,221,75,166,25,215,248,120,96,160,158,63,95,133,20,188,100,121,209,116,247,119,75,154,143,113,21,202,127,230,128,38,107,197,214,42,87,173,124,229,80,242,13,102,68,6,134,146,72,157,146,44,
196,185,214,175,201,32,199,22,13,122,20,58,153,9,75,187,162,187,255,128,234,215,201,127,93,191,177,225,238,248,245,91,51,35,142,122,196,94,45,213,239,76,148,75,197,219,249,130,110,103,225,221,117,25,240,218,123,97,214,160,245,246,101,146,169,181,62,195,146,45,187,33,73,23,32,121,228,86,133,50,186,188,153,57,9,154,201,252,188,123,192,125,49,141,115,40,198,112,203,102,136,29,243,130,67,192,17,149,215,149,73,153,28,200,149,237,247,141,19,177,10,9,174,47,27,66,144,157,150,207,249,240,143,117,218,111,18,111,171,191,223,213,111,112,120,41,132,17,132,240,61,73,224,195,80,199,105,70,181,67,16,35,33,229,89,190,63,206,143,183,38,122,38,184,161,210,71,203,74,244,180,103,55,31,47,199,197,110,235,55,62,217,84,91,122,95,179,19,254,149,246,35,152,18,38,95,109,78,67,149,175,161,83,131,198,147,202,251,210,25,215,249,228,234,136,21,217,235,56,220,182,115,153,225,163,141,19,245,173,15,188,201,73,180,30,39,155,1,159,246,114,166,243,28,16,143,
107,208,168,48,117,41,217,144,31,214,198,149,92,213,178,10,243,154,230,187,110,85,47,150,143,83,170,170,27,111,65,218,104,204,80,188,183,88,35,85,8,218,21,128,82,21,11,2,254,149,133,57,100,253,178,178,98,196,158,189,148,218,81,36,46,35,97,89,207,227,71,78,91,103,87,106,156,3,225,214,175,243,14,209,98,85,43,169,165,118,57,121,32,206,11,89,241,97,239,3,111,53,83,216,149,249,180,175,248,49,7,193,86,122,76,20,248,169,113,224,100,186,216,150,52,76,229,141,148,203,75,172,79,110,45,101,152,196,234,251,233,12,53,254,233,145,213,189,136,41,232,183,97,65,155,79,252,126,134,77,247,147,232,219,125,56,104,174,172,247,87,40,133,72,118,34,239,16,49,94,174,159,201,169,126,236,238,163,183,224,150,9,162,116,187,19,69,231,241,236,159,207,26,47,140,124,159,61,183,112,154,10,229,194,45,29,15,143,96,220,98,140,182,210,126,185,124,27,215,223,98,11,85,83,210,139,5,206,217,228,221,40,190,10,55,110,181,140,234,82,58,106,138,88,170,133,
104,106,132,200,122,250,99,231,58,107,236,70,40,215,85,50,23,48,21,38,133,196,162,33,252,19,139,171,237,207,126,51,194,191,96,225,209,108,136,176,20,55,131,67,99,211,212,18,223,171,113,127,5,52,102,142,174,243,200,145,242,151,93,166,230,65,160,191,154,78,141,223,84,162,90,189,117,148,189,230,62,205,21,11,234,134,91,116,48,21,85,154,110,108,171,0,74,249,31,239,211,216,223,134,86,17,122,192,156,209,107,199,42,209,255,217,42,138,12,211,227,129,76,204,42,209,222,214,145,142,205,110,251,235,198,22,140,153,141,180,146,153,181,136,191,189,135,6,133,250,86,26,82,159,140,246,173,24,154,137,21,1,34,194,215,175,127,204,46,160,106,174,11,13,215,96,132,81,12,226,93,119,11,180,91,41,253,33,235,169,33,88,99,54,161,118,158,10,206,83,44,124,83,128,6,178,50,227,185,64,87,254,189,78,206,236,127,212,206,255,195,178,65,92,215,254,137,214,249,223,246,234,240,255,19,61,5,205,21,249,127,87,55,216,114,84,141,70,134,166,52,253,111,247,145,69,
245,37,128,119,253,173,41,173,198,92,226,223,68,98,83,91,131,117,35,227,143,241,63,247,195,93,15,158,177,156,235,3,221,255,252,237,61,10,141,251,78,135,220,248,143,94,1,239,120,236,188,242,146,153,220,7,123,11,220,70,16,114,36,96,79,118,252,213,182,163,8,145,146,71,72,199,72,170,145,105,152,146,213,73,225,85,226,94,11,179,185,252,116,69,20,175,206,133,92,132,32,54,254,215,25,64,26,42,161,100,59,95,13,180,150,110,34,255,94,208,46,156,227,72,33,94,196,151,128,38,187,36,87,121,101,248,153,168,224,27,169,85,255,126,61,12,51,244,191,88,249,50,160,127,113,228,99,131,30,136,213,31,208,67,121,247,88,249,57,9,51,188,65,75,71,223,218,153,198,82,183,24,189,235,46,208,133,142,114,239,153,223,216,7,68,240,109,75,97,249,253,16,139,104,247,56,126,4,164,252,36,182,103,15,65,131,52,179,144,184,107,5,13,66,113,83,144,103,156,46,181,59,112,213,60,44,54,111,152,148,102,175,81,145,143,212,28,3,170,153,113,250,189,186,74,114,
17,115,36,91,208,225,137,7,123,253,38,89,67,24,221,127,234,99,124,122,219,22,46,211,156,28,198,126,238,3,96,33,142,194,245,194,174,184,68,67,36,150,159,143,164,128,76,236,124,138,205,121,239,9,101,145,169,83,119,214,244,2,168,58,78,142,76,117,102,144,17,25,37,126,14,159,46,159,47,51,222,88,220,222,201,175,7,111,221,85,149,239,221,57,44,222,107,71,225,174,87,120,249,145,27,18,122,70,29,87,195,222,15,209,25,233,75,123,46,231,73,175,124,115,247,11,238,117,3,33,173,151,3,245,158,101,231,119,124,217,61,83,58,139,174,53,175,93,139,16,136,120,159,227,33,223,197,146,99,184,68,174,69,247,129,114,205,187,203,5,202,145,10,19,29,88,10,107,116,66,66,102,158,56,169,152,131,139,2,20,225,171,94,94,251,171,15,121,223,119,224,74,113,58,97,79,245,73,55,130,175,3,92,155,246,88,173,165,42,64,33,247,190,248,254,26,90,40,68,218,238,110,126,17,205,154,253,89,222,75,250,195,84,121,66,131,249,86,135,93,35,182,59,147,182,79,
164,205,158,104,56,63,170,208,154,171,167,130,212,15,138,174,71,100,139,221,39,138,107,44,173,58,201,168,152,82,108,119,92,210,85,105,172,30,131,17,135,117,83,156,62,188,134,244,233,185,87,97,123,158,246,82,5,120,61,152,236,144,222,171,92,96,11,254,52,201,180,251,250,205,92,207,66,50,200,123,234,176,141,90,76,245,132,79,173,156,132,224,157,94,36,183,50,97,72,115,158,184,75,31,226,12,101,163,29,230,153,41,27,18,212,227,97,17,100,200,26,240,108,175,137,174,142,190,18,51,232,2,160,213,61,91,172,86,104,142,86,129,56,97,227,111,92,221,185,163,68,138,84,145,217,11,139,215,1,24,213,216,164,46,234,4,251,213,155,42,116,222,101,176,172,240,156,119,122,247,27,53,14,33,55,220,48,69,197,6,160,44,82,225,52,95,102,63,118,254,202,119,236,203,209,225,249,54,151,193,217,130,112,49,151,171,4,88,161,24,194,12,180,33,134,240,140,62,18,86,85,23,91,244,242,229,178,87,153,26,133,18,253,252,108,86,187,249,120,225,100,200,18,65,254,251,
81,215,199,233,73,253,247,22,41,246,215,157,141,151,88,94,254,87,207,227,23,34,199,174,197,154,111,128,8,179,74,3,150,82,248,13,176,72,32,64,9,201,238,238,183,54,213,28,127,215,219,55,236,1,115,158,193,152,163,139,218,189,229,2,111,0,183,192,118,191,111,213,16,122,75,220,2,162,192,218,86,17,98,45,119,126,174,126,161,93,193,14,250,2,198,201,170,94,246,2,0,125,80,74,33,127,5,218,80,250,34,172,67,63,217,171,242,36,159,40,58,146,115,34,233,62,212,117,191,221,37,173,12,37,117,180,118,149,18,183,171,240,119,179,147,68,14,157,191,142,67,50,232,102,61,120,250,8,222,143,155,0,39,59,26,95,228,25,10,183,202,1,126,181,52,78,23,61,26,34,24,83,183,135,107,184,255,45,146,49,234,120,139,251,103,37,116,234,80,175,97,47,36,91,159,233,49,205,232,116,77,242,224,178,47,146,237,126,4,146,227,113,182,187,89,106,216,148,239,139,8,250,91,32,140,103,45,56,238,82,59,30,127,217,33,79,235,94,102,76,21,87,36,27,221,65,
14,34,89,203,7,210,140,48,210,22,66,35,135,120,239,132,200,193,167,90,83,234,237,91,39,225,120,244,125,139,240,242,139,164,175,61,43,61,15,242,104,40,126,25,228,68,173,34,184,104,12,210,19,12,16,235,252,254,149,133,30,189,174,33,166,139,36,188,137,144,41,9,225,17,87,53,145,66,91,12,76,24,122,237,147,207,112,239,165,40,114,69,227,242,81,170,145,24,225,17,200,165,186,117,22,200,251,94,98,254,246,250,47,119,124,209,89,112,26,155,12,230,222,214,14,28,237,20,74,81,102,207,212,206,126,27,251,21,165,24,87,3,146,140,138,84,164,106,183,201,60,177,29,61,168,41,46,137,171,44,160,165,176,229,36,240,116,204,38,197,132,61,136,4,102,246,201,99,67,126,250,128,131,179,251,182,65,70,252,195,172,241,181,105,17,106,117,72,231,72,55,151,249,21,220,237,207,72,178,186,93,182,140,201,59,207,162,104,66,41,193,180,183,182,152,170,238,204,161,72,162,142,12,59,17,77,29,197,145,101,212,188,232,191,76,239,216,169,55,19,118,106,117,11,118,49,
19,0,137,104,172,142,190,157,188,236,168,16,143,193,218,166,235,125,235,241,164,129,250,124,189,97,255,170,74,183,5,9,99,130,52,252,191,219,35,225,223,151,117,120,54,11,32,147,151,12,242,191,121,31,23,84,127,75,228,25,131,249,223,174,111,251,207,202,42,223,225,186,210,230,254,124,219,7,175,248,63,241,124,223,199,63,255,239,254,91,10,19,252,179,199,225,34,132,179,160,175,116,20,46,195,138,210,79,19,86,87,70,170,148,94,223,88,120,164,118,96,50,243,201,153,28,113,233,193,125,90,91,201,170,81,144,234,233,136,155,191,158,98,56,96,104,85,62,142,250,223,222,162,159,190,12,12,245,206,104,152,195,189,62,183,204,251,171,224,147,56,217,63,161,133,77,22,156,71,153,222,86,238,126,13,65,177,77,65,115,107,227,26,78,223,93,73,133,253,251,146,111,34,83,150,176,127,180,248,168,43,147,67,76,127,1,160,108,223,159,47,26,243,2,183,197,172,221,121,109,199,198,131,187,132,138,119,149,31,185,153,184,187,222,206,184,141,28,102,0,92,51,119,154,11,48,
102,13,204,138,249,76,31,165,196,224,125,115,103,88,169,132,234,122,0,110,6,135,164,255,125,23,67,158,16,118,164,121,2,152,7,95,0,44,9,243,143,36,158,90,154,253,175,149,249,127,217,231,61,114,139,242,149,228,183,235,162,41,239,135,164,21,80,45,252,69,109,213,91,68,208,54,50,151,133,38,186,101,35,66,78,152,168,70,166,210,52,35,149,223,118,227,183,135,255,254,219,115,163,60,144,50,10,38,167,8,49,39,179,85,216,222,51,211,249,231,92,69,202,82,45,239,239,190,254,114,33,6,94,236,109,78,172,24,38,9,177,172,158,231,97,244,98,72,64,166,133,1,136,52,107,151,73,190,218,201,207,223,11,10,163,104,190,198,19,170,87,84,87,238,49,75,254,177,247,167,45,229,137,138,38,223,140,93,186,222,70,67,182,222,98,167,155,167,241,63,247,167,209,8,170,248,193,111,16,40,255,221,239,42,175,21,214,7,244,55,201,100,255,87,251,177,253,135,50,67,9,171,180,36,53,144,17,189,158,35,106,242,127,145,33,255,51,78,159,170,159,223,127,252,105,79,
135,134,198,220,13,123,137,27,130,175,133,228,166,114,241,61,223,24,236,100,124,234,82,52,102,141,112,129,81,27,70,189,254,158,193,120,110,247,169,17,52,4,213,134,162,247,186,195,245,189,143,187,121,248,211,148,47,149,166,191,33,153,95,140,111,126,3,0,5,203,171,185,229,235,56,230,178,22,134,153,185,237,92,250,84,48,89,92,20,166,13,199,8,108,31,42,148,102,183,89,245,218,228,8,48,53,241,10,15,96,96,200,80,240,198,167,18,223,223,195,53,218,139,254,82,150,6,253,96,90,114,252,218,116,243,191,9,172,249,103,134,198,3,161,85,231,143,183,140,216,246,134,227,217,62,166,130,151,113,212,5,123,123,10,101,6,145,33,225,200,75,123,253,117,3,185,207,36,228,16,213,110,40,216,155,99,168,246,24,15,219,88,34,5,209,101,249,179,219,208,243,230,128,166,209,50,235,61,160,109,74,47,184,185,248,170,53,48,190,22,69,249,133,160,184,244,188,178,11,78,14,228,87,141,159,119,248,218,102,97,229,71,8,188,86,103,189,152,245,10,89,89,68,121,95,65,
67,181,45,93,10,129,193,122,62,231,253,115,23,214,223,253,64,243,209,242,72,35,4,34,248,2,206,47,78,14,20,207,7,163,130,98,175,225,3,208,116,62,168,163,179,238,66,20,19,248,18,68,121,179,83,126,172,90,70,81,148,65,208,39,60,142,253,39,137,229,106,124,191,52,129,95,120,4,144,204,186,4,186,168,177,164,14,177,119,157,107,216,194,84,191,163,171,150,43,174,146,85,201,216,98,247,149,231,209,174,175,31,59,170,232,139,110,241,75,167,189,167,159,113,53,215,227,131,119,30,170,103,28,10,217,186,36,128,248,132,135,212,193,79,24,22,218,239,130,52,78,187,3,240,107,79,136,112,57,184,4,7,131,89,164,47,196,86,23,148,159,38,120,49,188,6,88,166,21,224,191,120,245,3,227,207,91,44,80,97,71,143,217,11,200,129,7,140,96,122,90,215,204,83,191,214,123,130,98,59,241,59,172,189,239,89,244,216,227,111,61,252,87,201,105,127,46,104,145,109,222,191,67,200,222,94,35,14,68,111,56,10,185,203,155,8,135,43,63,57,119,210,121,132,138,238,
210,242,255,176,247,110,205,174,42,219,153,224,95,89,47,221,97,119,86,157,228,126,41,135,31,64,8,33,9,1,146,16,2,58,234,129,91,130,16,32,174,201,37,252,227,59,181,214,222,219,246,113,149,237,227,142,126,234,61,231,84,76,72,37,73,94,70,142,241,125,201,24,100,217,176,189,141,94,241,251,117,163,163,83,179,179,100,45,110,165,54,170,150,219,110,234,156,243,73,158,245,214,162,101,102,226,59,121,206,174,188,59,168,253,178,167,121,109,223,18,100,143,92,58,55,78,147,158,141,237,195,217,169,80,168,218,239,123,51,165,250,116,222,146,164,118,72,153,245,238,144,170,109,30,139,66,81,172,210,110,67,144,185,190,228,202,234,222,201,176,219,157,215,213,9,106,143,186,97,22,133,135,184,199,240,227,26,135,115,189,0,98,44,42,55,205,75,50,156,243,119,69,84,142,33,30,78,222,235,81,26,250,177,76,159,143,251,60,78,147,137,56,52,9,237,147,78,78,170,203,6,15,223,163,247,129,57,9,200,139,143,150,219,169,198,51,126,122,77,161,63,163,219,126,140,219,
187,38,48,238,89,107,244,119,245,32,42,80,123,233,189,157,101,93,215,237,87,2,83,102,52,11,189,117,122,62,135,188,69,138,220,94,71,110,108,245,104,39,61,9,67,175,157,116,100,76,149,27,188,135,58,85,250,117,12,141,58,241,72,53,41,170,155,251,155,238,132,39,155,232,3,183,63,157,63,254,253,73,133,91,135,248,75,208,173,111,58,78,221,165,228,159,237,125,202,46,118,95,123,38,117,239,10,188,214,217,190,123,43,207,221,163,148,106,198,139,12,90,233,63,232,48,240,208,205,15,175,235,211,57,149,213,227,165,235,81,22,6,179,227,219,167,115,70,166,75,223,7,42,233,159,157,215,182,167,173,163,174,97,15,206,246,145,25,155,75,20,212,149,10,250,206,162,118,41,77,104,140,45,50,55,243,116,126,95,8,183,160,15,68,238,156,211,68,251,187,133,125,116,114,126,12,188,194,57,191,189,199,11,25,254,110,187,140,241,61,246,210,83,122,107,134,39,62,118,209,169,226,175,252,119,55,184,164,98,41,110,160,110,130,38,189,62,117,181,155,122,213,228,14,173,66,
19,140,111,187,52,235,250,55,143,174,171,234,245,220,251,245,101,235,74,24,24,131,37,33,54,46,8,76,169,110,151,225,242,209,99,17,39,101,204,179,85,211,132,171,1,247,226,105,127,159,34,233,196,39,115,167,115,119,92,34,7,155,26,102,95,1,61,6,28,31,26,166,149,46,254,184,223,88,133,143,139,23,109,115,167,220,80,87,82,222,245,50,60,62,150,69,24,148,180,157,65,122,8,156,44,53,130,183,114,50,97,183,220,175,219,93,124,97,169,158,180,73,101,44,77,152,206,12,221,247,14,129,232,155,24,142,126,113,146,197,197,89,94,63,231,224,186,107,199,155,43,140,74,117,87,254,75,58,165,111,200,21,234,217,33,152,228,63,214,111,185,249,221,43,233,185,74,153,205,62,128,0,7,197,81,103,241,187,235,202,121,144,32,132,43,159,128,108,117,95,219,124,53,146,189,215,215,109,12,37,182,200,229,6,221,39,165,0,50,118,88,115,67,55,187,144,25,17,179,61,237,62,104,43,60,45,33,103,27,27,39,125,237,7,99,54,139,28,205,43,182,221,155,80,115,18,
166,210,27,173,190,214,171,69,233,34,183,64,37,78,247,241,7,127,16,153,48,214,161,244,244,181,88,150,188,170,202,69,73,185,253,219,101,179,61,209,225,3,180,242,232,103,188,68,95,243,162,220,236,32,251,146,18,59,45,119,86,125,56,120,52,169,134,203,29,110,207,234,98,231,42,156,30,24,137,85,181,242,97,241,214,30,95,63,210,175,47,255,169,210,79,227,49,250,174,237,31,119,255,219,120,206,227,88,234,217,153,232,93,241,104,151,4,72,154,151,162,116,119,200,113,182,121,134,46,194,62,102,195,150,122,41,71,141,80,136,40,120,12,125,117,193,108,169,139,144,187,165,65,171,228,187,64,123,214,251,112,127,58,63,99,50,53,17,93,74,32,38,74,57,57,42,7,133,105,213,195,125,119,175,117,24,56,212,187,121,158,9,110,172,231,245,3,8,102,79,109,54,154,213,54,62,173,95,239,206,249,161,92,212,199,125,167,57,39,45,31,159,187,180,155,131,135,243,20,174,71,165,190,116,181,27,142,129,28,100,143,161,113,154,109,72,178,140,89,249,37,181,28,194,134,104,
42,87,20,254,109,116,129,194,21,117,182,82,204,119,28,196,150,22,228,151,209,139,219,122,31,131,147,170,236,130,229,60,97,60,244,195,245,246,41,106,119,215,127,247,31,131,21,53,85,124,50,62,197,16,64,212,13,212,156,43,23,165,190,171,175,90,87,247,199,40,72,159,200,39,237,26,210,192,59,247,31,73,182,84,205,221,205,196,198,40,202,181,211,239,187,169,222,181,123,163,59,30,247,243,27,172,107,114,36,196,83,114,190,121,246,203,240,80,21,229,152,223,92,213,127,107,183,163,145,9,187,245,235,128,198,179,207,234,158,101,217,241,188,31,152,222,59,127,58,62,181,155,187,118,27,152,247,113,90,221,114,80,142,58,152,143,249,167,205,223,55,117,122,145,94,50,211,252,52,86,35,23,223,39,231,112,88,226,116,98,198,39,246,205,254,17,28,212,34,248,250,22,180,111,38,110,154,109,93,111,41,66,142,113,253,60,172,208,95,20,229,99,85,215,165,67,131,187,28,9,70,154,109,173,61,62,107,85,62,234,231,171,249,206,67,172,71,201,157,215,95,58,99,146,62,3,
189,215,73,149,174,201,101,18,179,14,34,63,242,65,74,157,27,154,241,222,149,78,159,77,58,59,20,127,241,151,18,30,134,200,153,113,94,172,39,247,122,88,110,194,75,102,246,78,169,157,26,169,185,46,27,71,17,65,190,133,111,139,117,166,231,118,97,15,168,12,157,165,190,166,199,115,116,213,223,249,165,205,251,122,247,76,188,20,222,13,56,88,129,71,247,238,235,105,123,203,139,63,220,246,247,190,123,236,14,70,247,22,205,106,5,78,84,60,139,224,126,146,143,209,129,137,8,86,63,214,239,70,86,116,219,29,67,126,180,222,20,119,31,45,152,175,220,37,57,190,175,205,171,183,247,93,33,238,165,59,129,61,3,99,238,212,241,162,73,156,94,234,236,131,55,239,184,129,74,248,146,155,67,254,143,127,255,63,127,223,9,244,215,255,23,45,8,220,63,216,242,63,252,248,191,255,175,31,250,107,201,210,255,249,223,255,201,45,178,31,63,247,8,253,241,26,126,160,42,202,243,44,253,209,124,198,31,227,231,71,156,253,232,179,225,181,145,148,40,73,62,125,250,106,242,111,
122,50,245,125,214,140,63,30,134,246,163,254,164,25,201,223,255,136,122,82,196,56,252,72,62,21,57,75,138,168,249,150,244,106,126,164,81,255,254,153,237,47,127,93,141,255,93,181,126,149,49,252,7,181,251,117,139,223,242,254,23,111,244,109,220,255,203,78,24,146,168,250,38,253,103,111,236,70,125,158,141,223,50,63,213,52,190,62,205,111,247,31,255,58,253,47,63,110,89,242,169,235,172,73,191,247,110,219,254,19,37,197,183,134,228,238,105,31,205,63,50,156,245,235,88,124,239,30,13,63,4,138,250,63,126,212,209,48,102,253,143,249,53,22,159,105,252,65,170,22,13,228,251,255,76,197,180,111,247,225,168,127,69,205,248,215,125,242,106,198,95,213,64,100,108,255,166,126,190,79,109,214,15,81,221,86,228,106,118,249,235,130,211,207,220,252,254,109,156,145,210,179,31,211,144,253,183,159,13,248,145,125,219,203,46,236,143,150,12,86,245,35,174,62,201,155,116,80,75,250,136,244,252,183,217,223,182,85,217,111,223,19,17,24,139,159,163,53,85,227,127,166,110,251,165,253,
244,227,183,239,142,9,233,239,87,242,249,17,53,233,143,191,180,77,254,215,245,204,126,102,253,37,208,223,62,250,76,195,183,47,234,104,252,217,57,31,114,82,165,164,227,63,232,199,95,94,117,245,3,189,72,181,230,34,251,57,41,126,36,81,243,149,163,246,149,188,191,237,92,127,196,211,171,74,127,144,17,77,178,97,248,86,128,100,32,35,92,189,146,232,59,244,63,72,85,154,225,247,26,115,34,243,71,11,152,127,248,31,220,255,248,97,147,118,246,63,72,119,68,213,15,34,31,211,143,15,233,228,159,87,254,118,209,31,27,255,210,12,245,127,146,207,223,169,7,69,9,254,229,190,193,223,125,127,195,146,47,151,155,174,95,210,248,117,237,206,58,47,230,175,219,233,117,219,123,183,128,219,110,135,195,69,10,242,242,133,110,202,195,21,183,89,47,110,213,109,178,45,149,187,43,193,103,190,149,154,126,152,93,103,191,183,20,101,190,15,221,238,53,124,88,12,143,229,8,118,52,143,9,225,235,187,169,105,133,113,74,229,183,36,57,23,25,111,29,198,155,128,125,42,62,133,
244,105,199,236,30,20,27,32,214,107,207,190,34,28,96,136,98,175,27,233,55,183,202,149,172,51,134,76,51,153,158,72,137,36,11,250,22,32,241,17,38,23,200,126,236,221,94,28,71,53,219,228,85,109,90,57,125,159,179,163,231,112,60,131,252,198,219,203,147,83,124,18,32,47,218,220,18,236,202,133,204,5,132,53,159,92,33,231,116,82,131,152,143,233,166,238,118,218,12,209,101,141,97,144,187,11,37,58,155,213,62,216,155,99,177,159,139,237,242,165,204,116,9,14,59,91,114,223,76,0,129,160,59,159,17,244,216,188,220,106,209,146,252,83,188,206,33,216,144,14,110,130,59,27,20,158,29,193,232,28,105,205,70,69,119,198,2,198,139,49,56,205,195,153,6,85,183,96,205,162,78,208,182,77,166,91,89,101,153,72,112,101,229,102,136,150,143,216,229,99,95,138,90,194,51,14,136,253,42,211,151,197,168,236,164,112,209,89,248,100,2,0,214,8,2,67,154,119,197,172,104,249,213,200,3,71,61,102,234,245,162,118,23,37,72,110,183,69,53,242,232,50,202,49,14,83,
38,135,73,151,148,243,73,120,153,140,242,102,84,60,40,236,205,118,99,111,112,135,108,23,72,187,37,80,231,165,41,95,182,173,242,23,65,51,32,97,167,212,122,68,39,225,218,236,95,153,242,190,168,135,68,219,115,234,91,218,181,156,118,155,167,134,177,158,227,66,56,126,212,250,231,244,180,218,32,108,148,222,62,94,184,247,246,50,237,211,192,169,188,216,243,4,182,181,165,122,31,197,205,17,199,134,233,232,209,231,117,240,74,118,3,87,110,175,100,58,238,184,189,206,29,204,249,238,21,176,165,197,71,31,111,140,245,102,69,239,187,141,39,229,164,123,78,127,115,239,118,57,123,249,185,207,47,68,28,38,69,207,42,73,134,207,92,52,89,20,244,161,5,104,183,102,177,135,41,149,38,121,34,95,177,39,53,205,84,65,218,83,65,217,46,51,173,81,44,133,174,2,95,134,52,201,43,187,45,5,199,71,214,237,121,172,106,142,226,102,106,157,40,19,167,167,243,33,206,147,109,190,177,249,214,154,82,197,138,88,92,112,82,200,218,207,235,128,251,137,74,204,233,195,104,139,
179,197,230,70,249,245,218,192,147,2,51,77,149,118,26,183,51,230,68,101,165,199,44,239,194,10,166,173,240,209,106,8,14,75,213,76,178,186,159,15,210,172,150,156,105,204,250,54,219,70,190,219,148,11,97,76,155,138,232,102,122,49,65,30,58,113,133,162,118,243,193,141,136,180,49,201,251,102,214,157,61,37,221,183,197,48,242,12,43,106,38,154,42,172,160,192,209,150,198,107,124,37,103,33,236,88,7,11,250,252,106,36,73,39,4,137,128,254,38,247,76,130,106,95,15,127,207,53,46,232,83,241,61,13,162,200,8,207,140,215,228,183,140,45,185,171,120,113,94,28,126,144,204,118,143,149,40,83,169,65,125,74,215,120,57,225,253,19,248,162,37,63,24,233,41,139,254,43,133,188,22,54,60,84,240,147,59,84,157,49,37,88,177,165,187,184,24,120,15,164,199,62,130,12,99,211,122,207,139,26,22,61,158,91,250,39,190,38,241,201,165,229,138,12,79,131,23,199,205,175,242,213,235,21,165,159,31,40,15,160,114,2,234,77,34,157,209,60,112,239,211,158,222,96,121,7,
65,189,148,194,209,145,158,205,35,178,241,212,66,101,124,126,16,231,47,135,246,165,197,251,39,82,106,240,194,41,6,112,182,105,235,237,72,53,252,92,57,113,176,12,151,9,228,173,207,122,197,150,221,228,122,224,106,60,187,40,127,66,37,5,38,167,193,209,15,55,89,102,179,142,95,196,163,51,208,134,207,208,183,174,133,215,17,44,218,7,230,15,54,15,161,66,166,198,202,228,154,56,71,252,2,101,175,24,13,223,103,222,176,244,229,221,1,54,2,247,66,135,12,126,189,49,99,251,179,24,119,232,67,133,238,161,34,48,249,6,149,6,40,88,210,16,167,194,57,198,80,182,224,173,80,44,136,79,80,191,56,225,25,245,59,11,134,166,228,192,2,139,128,206,187,89,215,102,109,177,165,171,228,141,9,84,229,51,188,192,121,85,68,110,148,24,32,55,239,118,54,225,32,43,104,151,194,216,148,108,72,189,68,254,13,197,62,116,1,141,210,254,227,197,138,13,6,90,246,161,24,19,81,163,241,58,64,157,222,32,125,52,144,208,192,157,243,244,36,188,33,110,119,57,203,185,
60,225,142,221,98,113,192,112,188,32,161,85,201,152,239,46,20,109,188,197,160,239,153,9,86,12,148,165,7,40,145,137,66,145,39,4,65,170,55,186,121,210,135,35,192,61,150,108,22,226,5,240,80,238,0,230,196,51,3,79,189,220,66,31,223,133,13,94,247,253,98,72,232,42,21,128,55,241,228,72,39,57,103,211,94,136,183,252,62,193,52,165,73,103,159,246,45,15,203,251,152,9,254,254,225,36,164,6,162,124,160,233,207,61,99,50,136,48,125,58,7,54,96,16,20,79,80,78,69,3,62,62,185,168,194,216,129,99,5,27,68,179,138,204,14,120,73,115,8,86,82,85,3,138,38,240,3,4,7,95,8,219,207,161,117,200,121,86,217,12,218,37,15,214,11,101,204,34,213,162,179,52,182,216,197,149,81,243,212,82,249,129,98,158,158,183,212,107,24,152,114,134,66,254,4,99,6,250,108,171,179,93,72,78,145,104,121,162,125,144,198,249,106,247,134,146,58,8,140,143,231,127,252,199,191,255,226,129,99,51,100,4,15,252,180,156,127,249,203,79,244,204,253,195,111,169,
196,68,255,104,178,249,183,47,255,22,43,155,46,126,42,179,123,61,39,52,195,57,122,217,133,50,184,163,103,24,205,203,120,171,218,203,62,242,102,48,164,204,107,178,239,223,109,57,222,188,58,155,172,183,156,89,255,22,164,186,56,45,233,148,39,83,85,160,251,94,222,243,130,43,148,139,29,231,199,45,141,47,209,5,94,140,130,109,239,206,145,183,235,242,9,74,233,86,118,196,170,180,159,80,72,94,153,181,123,35,144,20,134,131,207,183,146,221,222,199,5,242,235,62,1,82,123,112,144,125,45,41,201,110,101,101,255,190,152,39,65,27,68,110,29,125,194,40,44,1,30,102,110,201,34,254,73,108,91,200,110,222,1,107,78,162,48,73,48,140,137,180,147,152,77,106,238,182,95,50,199,177,30,114,207,78,40,161,231,116,126,88,31,87,171,65,135,124,44,105,65,251,220,231,196,89,166,9,221,112,235,51,75,215,101,225,150,92,66,159,5,149,78,239,119,162,58,4,70,39,114,7,183,209,167,26,244,232,131,63,254,129,159,122,233,182,38,146,235,247,248,164,208,146,195,244,
147,18,218,131,79,52,218,40,159,65,145,116,207,217,50,52,214,98,233,142,247,35,74,77,21,121,129,241,229,209,113,219,165,107,60,57,102,86,135,215,153,128,61,161,231,22,192,90,27,253,157,195,233,178,101,161,23,221,199,212,0,169,147,118,44,31,31,102,145,165,197,159,93,2,43,22,168,39,66,48,95,250,78,218,129,35,31,194,79,116,88,142,88,204,207,159,85,207,130,146,78,169,141,211,216,18,4,144,209,170,216,70,180,96,8,155,236,203,2,242,124,121,133,151,186,100,10,56,158,232,157,229,43,47,179,129,139,113,113,228,2,18,149,183,87,129,196,207,112,96,246,144,217,92,135,10,172,207,88,155,254,16,179,79,243,35,39,8,84,27,36,179,67,208,26,204,206,122,120,49,7,102,27,78,144,109,22,104,143,225,225,21,213,80,120,71,15,165,166,116,145,197,128,147,198,3,167,150,79,236,88,22,227,85,48,137,172,173,252,176,221,150,14,239,139,1,141,108,22,249,14,213,219,38,194,252,201,198,71,69,158,88,129,123,223,125,80,169,149,98,248,71,236,9,141,228,
202,31,187,23,44,17,203,128,42,238,112,242,14,181,106,174,205,125,20,36,122,61,73,64,112,195,241,77,247,19,255,146,50,98,165,180,104,15,133,49,64,75,188,115,228,67,136,68,184,114,92,186,85,50,15,251,112,59,1,23,199,133,40,200,35,222,195,152,138,180,115,243,188,127,130,157,104,55,153,65,227,167,6,133,242,206,35,141,231,147,53,68,141,198,15,172,109,176,205,196,246,71,61,249,128,56,19,211,169,10,13,134,114,38,1,109,184,40,97,2,86,19,220,228,58,35,170,66,237,55,231,124,172,169,148,21,195,19,79,168,118,57,177,89,195,229,18,125,80,231,115,105,92,113,228,66,69,76,169,225,121,229,139,134,145,182,48,110,156,13,81,18,215,247,126,207,50,179,72,47,10,16,147,27,28,226,236,1,31,56,114,196,65,226,27,188,223,22,2,85,234,146,223,189,89,23,192,180,230,63,208,11,46,11,27,50,171,14,29,91,202,15,165,188,177,48,76,248,15,187,29,249,22,244,155,16,194,4,158,106,195,71,232,65,244,57,96,121,195,46,162,0,126,195,178,71,
148,98,9,101,25,116,68,246,144,102,79,222,171,51,30,198,99,190,109,142,36,153,0,134,10,5,189,247,37,150,153,116,52,17,235,244,23,36,122,184,43,157,96,42,18,232,243,244,37,17,198,143,1,96,115,241,113,230,12,78,112,0,166,227,132,2,135,141,50,87,178,107,83,133,33,239,107,133,176,199,70,255,121,216,61,64,57,253,236,166,248,252,172,39,214,99,59,184,129,81,14,115,216,62,175,103,84,130,212,53,28,54,146,193,236,71,4,103,176,170,204,136,158,207,58,211,182,213,247,198,140,182,21,75,226,170,74,83,92,204,252,142,101,207,238,184,9,188,216,29,13,207,72,88,150,177,184,85,228,202,204,0,116,170,96,161,116,124,118,6,207,35,64,97,139,100,216,209,26,12,76,189,105,0,109,205,174,229,36,70,31,179,31,38,190,204,8,225,227,62,172,216,204,18,43,210,27,159,71,82,138,113,73,4,230,181,208,136,53,198,235,204,10,4,248,38,18,123,6,45,216,90,246,147,82,178,216,180,85,154,200,105,70,139,114,69,239,69,62,17,101,97,236,77,56,74,
241,174,95,57,210,225,54,146,21,112,71,206,237,187,127,118,195,37,239,62,32,182,201,150,15,221,114,5,52,219,102,79,211,254,100,203,77,156,49,124,39,79,89,194,189,65,139,2,153,55,20,134,103,86,220,186,29,207,210,139,40,197,239,243,131,204,241,198,45,11,168,226,202,217,54,152,34,231,180,134,151,53,66,184,23,54,241,145,27,102,227,60,1,125,2,65,26,184,64,168,157,134,181,119,86,234,16,49,230,190,99,196,121,105,235,79,144,183,22,109,131,172,48,93,123,215,165,64,154,96,209,144,150,198,129,244,30,56,236,247,209,4,13,163,145,49,14,173,54,61,50,86,156,8,83,96,142,50,149,186,67,249,18,251,106,227,99,38,155,36,19,49,24,87,60,47,50,54,66,136,92,184,224,247,74,173,208,110,140,3,224,157,166,19,245,230,72,175,121,156,105,81,102,243,153,128,228,157,64,52,136,31,173,116,133,165,59,197,127,219,184,79,158,166,31,143,58,51,201,62,99,166,165,171,177,59,99,184,33,83,188,120,7,215,5,68,225,111,238,18,103,102,188,198,230,56,
31,125,15,50,226,7,211,141,232,25,100,56,172,84,42,1,16,174,114,79,110,67,23,108,233,83,78,221,140,84,6,62,81,112,22,99,147,230,169,180,46,195,44,123,223,67,53,61,51,88,96,82,15,12,15,79,209,34,9,198,226,35,115,135,35,12,0,127,149,189,192,73,171,85,214,228,78,27,176,127,212,135,1,90,168,189,83,240,201,246,184,122,149,139,41,109,236,157,221,240,211,64,51,96,74,48,58,27,174,217,84,139,207,77,255,217,107,158,32,9,42,251,38,189,33,201,188,166,57,251,240,215,181,78,37,148,161,194,124,154,55,36,44,171,19,158,82,151,117,195,97,49,88,225,106,35,177,44,183,99,131,240,231,148,140,166,117,118,211,22,200,248,137,226,229,48,248,4,65,49,47,217,227,46,217,75,100,22,250,21,98,23,122,224,105,224,238,80,239,64,203,66,192,184,141,150,192,200,247,87,173,97,79,91,115,79,49,26,39,177,143,248,91,164,8,125,243,145,123,163,129,40,28,174,243,197,221,57,46,187,1,79,211,68,118,39,103,147,125,75,121,51,167,156,235,42,
136,83,112,190,143,189,60,178,17,122,158,207,143,195,118,98,40,113,22,102,87,16,89,198,221,207,219,86,130,216,22,67,242,219,159,112,34,64,105,73,37,185,200,10,155,213,24,159,250,100,107,228,46,100,254,103,245,70,218,59,33,89,243,206,224,56,68,7,141,130,51,10,23,152,88,146,197,51,12,102,216,116,1,147,251,60,219,51,22,86,53,185,164,226,102,154,195,93,96,248,166,4,76,63,127,199,183,115,142,114,240,97,61,248,36,248,135,143,99,129,101,222,168,71,41,3,116,188,140,130,200,29,253,238,242,65,162,116,88,53,246,241,44,48,194,69,44,197,25,6,158,139,46,80,200,69,157,123,211,231,81,67,246,8,247,131,154,138,40,227,29,219,147,89,246,74,191,99,227,217,90,13,140,167,1,102,186,112,176,139,56,198,195,192,177,239,140,54,69,199,235,55,23,158,51,166,19,176,120,117,68,163,26,251,216,143,42,182,63,112,154,220,116,59,31,118,186,49,152,25,127,222,56,20,241,28,161,63,18,240,223,4,213,214,65,207,3,248,125,190,31,111,151,140,241,82,
170,127,136,98,8,74,40,100,56,109,240,145,103,158,205,128,54,55,113,137,38,231,109,31,209,164,195,48,176,182,56,57,236,250,123,211,46,77,106,144,139,185,108,214,216,21,93,253,9,85,189,236,63,38,17,80,108,52,189,25,16,153,186,69,136,121,132,159,242,50,58,79,56,92,162,154,104,207,178,23,183,51,209,251,117,123,24,239,119,71,206,141,58,207,120,6,32,129,50,108,59,232,0,188,131,9,186,244,100,194,105,67,119,27,42,126,143,46,86,28,243,167,183,46,194,29,15,77,84,107,40,200,136,93,247,121,54,251,100,23,11,236,135,62,147,102,1,202,198,199,103,167,117,182,134,60,12,101,136,70,158,198,151,171,72,38,220,40,8,88,64,34,91,11,24,22,188,31,68,161,159,175,155,152,193,72,176,208,233,185,237,73,197,55,22,59,212,88,222,19,27,92,140,203,243,116,81,70,105,252,176,111,196,231,37,79,159,98,169,77,82,70,98,217,227,67,134,21,33,92,222,23,35,63,1,138,14,19,91,212,83,39,129,132,180,39,222,90,66,18,188,13,167,204,121,26,
82,63,174,237,169,29,221,232,187,151,202,165,106,235,80,66,104,176,193,139,170,220,115,195,47,181,212,206,146,224,11,185,154,60,37,143,245,133,103,80,202,146,74,141,105,100,143,103,16,216,114,240,88,130,179,204,63,122,30,79,92,95,45,181,99,63,36,138,186,203,229,69,202,164,146,58,60,125,255,120,160,225,38,10,169,251,194,99,236,250,190,200,232,26,51,89,219,152,65,188,138,153,193,26,188,241,116,189,35,35,75,148,215,210,173,200,168,27,212,249,200,38,232,190,106,232,244,109,178,196,168,207,99,150,179,119,121,39,157,61,249,72,208,210,176,88,50,171,203,235,109,225,171,109,99,95,93,135,66,186,211,160,232,30,9,98,93,93,87,210,18,144,111,74,51,87,83,12,156,82,176,177,119,214,38,39,118,93,52,246,15,6,24,133,198,30,44,103,177,54,97,71,169,205,171,204,86,68,193,134,78,50,225,113,160,74,118,64,7,192,26,32,102,104,134,47,235,91,40,248,4,44,56,224,29,234,167,137,78,70,248,70,43,8,42,147,190,231,60,225,27,62,205,101,34,100,
107,151,126,175,68,118,22,126,125,99,240,246,231,17,117,101,200,121,237,225,142,233,151,202,103,210,107,28,249,167,100,81,141,226,179,23,83,160,198,184,131,89,207,79,82,216,182,15,74,220,29,88,119,215,52,217,249,104,51,165,58,212,141,26,133,187,248,236,143,129,194,166,73,151,73,203,42,250,13,116,185,43,164,207,234,105,156,151,243,107,99,172,61,35,225,136,209,98,150,203,152,102,233,125,92,47,176,159,3,181,255,220,183,186,142,165,145,157,123,143,115,206,204,128,214,98,105,231,101,83,90,238,178,78,216,100,134,220,87,156,104,147,170,11,194,1,124,205,58,235,5,32,19,140,23,209,138,175,40,111,197,182,38,236,64,182,89,83,202,80,127,172,164,165,200,95,59,36,38,167,99,186,250,203,184,110,93,93,207,161,76,63,158,213,3,86,97,218,94,37,42,216,149,236,120,171,87,157,178,23,186,180,219,236,35,197,229,166,138,219,225,67,70,253,50,85,251,198,67,242,194,133,150,151,105,206,93,186,248,14,19,212,174,231,231,27,81,250,187,205,198,202,86,220,87,187,
87,57,214,232,189,89,195,205,241,182,137,235,59,144,37,126,119,249,87,188,134,99,19,9,229,150,220,236,102,231,39,147,187,101,245,7,255,182,124,251,59,143,251,149,54,252,87,24,92,223,244,203,205,59,92,208,226,221,47,147,213,205,31,189,87,174,129,176,5,1,183,237,15,59,59,202,230,55,243,208,13,181,232,89,86,153,150,206,219,171,143,139,114,125,92,185,188,82,63,197,75,219,140,195,254,117,123,189,136,42,99,46,131,9,93,103,2,37,174,159,254,101,117,6,152,216,25,186,52,167,55,153,229,219,137,159,217,164,33,246,165,241,157,201,127,116,229,35,155,169,90,98,218,198,20,0,206,133,6,139,0,157,124,70,78,29,102,23,51,56,32,8,18,167,226,13,78,145,35,175,11,59,250,128,39,26,29,132,41,85,151,51,255,134,249,138,232,228,254,28,79,2,236,137,246,242,151,195,50,149,48,246,33,14,63,8,80,40,17,239,80,238,179,134,134,173,41,200,53,23,105,75,79,227,219,201,180,18,208,183,18,60,165,228,202,138,151,157,243,64,39,243,98,2,102,132,
98,4,229,49,134,12,253,61,90,193,48,62,138,123,35,46,71,81,192,127,164,251,112,236,33,1,148,44,125,224,147,150,89,105,122,96,251,202,33,136,7,31,210,164,205,8,18,230,220,177,233,251,27,246,207,254,68,208,223,69,128,198,67,104,210,211,72,104,77,16,61,76,173,168,136,94,234,163,125,159,148,207,80,185,13,10,197,110,217,116,0,183,201,96,211,207,57,13,110,40,208,253,72,99,159,123,74,84,116,113,46,202,96,7,131,26,240,167,101,208,225,89,190,99,228,200,141,251,201,170,35,99,5,146,46,231,89,250,81,210,252,57,116,172,151,70,20,100,139,239,194,234,210,218,218,122,49,222,123,237,69,69,152,42,173,132,17,92,218,137,224,126,236,178,34,231,141,163,160,124,183,19,48,20,207,152,55,125,54,213,217,255,176,80,175,251,126,120,192,1,48,131,11,172,168,110,147,235,145,127,135,203,222,125,5,46,23,94,143,144,24,24,203,30,128,155,114,223,224,228,188,46,186,230,61,58,71,225,121,189,55,138,222,92,43,176,135,149,215,213,205,19,221,39,134,15,
37,133,182,238,145,123,206,174,131,173,98,59,247,157,194,57,229,207,143,47,31,41,254,78,243,190,201,16,58,29,209,165,24,178,84,206,88,137,96,236,128,186,171,21,206,159,19,239,173,182,239,240,19,67,211,193,44,18,230,244,78,89,217,190,49,232,169,89,99,127,118,60,199,249,88,111,138,194,197,165,207,147,254,163,244,193,45,76,84,15,105,132,184,142,190,154,21,88,26,128,17,159,121,73,93,164,109,19,8,51,98,232,113,51,25,11,172,53,45,93,172,100,231,36,170,134,52,211,87,122,86,137,216,121,161,231,144,115,193,51,1,192,99,113,127,64,175,4,102,87,224,70,156,220,251,192,156,210,116,162,68,156,199,125,110,136,31,95,228,12,33,208,124,43,55,251,123,110,68,58,164,9,11,34,226,212,136,22,22,171,195,0,61,7,190,47,32,103,208,85,201,78,10,184,221,164,92,170,21,201,228,172,253,17,198,118,6,83,13,56,53,66,108,151,38,153,140,64,81,215,194,94,21,180,5,236,79,79,229,110,114,143,122,45,118,171,69,105,208,100,174,114,231,0,149,200,
54,22,45,179,169,171,23,33,124,81,220,94,154,252,220,124,226,74,82,150,240,234,69,247,112,117,168,141,221,24,5,98,177,113,24,221,142,221,102,27,212,109,178,197,77,82,78,252,59,154,95,145,84,152,123,244,113,82,20,105,12,109,193,137,105,158,131,40,13,60,26,237,85,179,56,34,208,68,188,143,189,180,235,36,181,131,218,1,42,53,222,63,207,98,11,91,81,201,24,119,139,105,135,24,124,217,69,79,14,181,248,205,162,227,4,174,114,166,74,224,101,41,80,204,22,86,102,154,235,69,82,123,49,138,64,184,129,183,131,146,11,61,57,194,65,42,140,112,103,73,218,9,42,45,84,195,194,225,219,80,4,162,75,57,34,67,49,91,131,9,84,198,206,20,179,171,42,195,247,29,127,206,152,187,97,78,239,5,77,65,57,184,54,164,14,59,210,101,40,217,102,27,15,162,128,250,151,141,195,88,244,56,209,13,29,208,244,98,93,194,220,241,133,125,3,212,6,40,30,40,82,152,147,191,242,231,181,134,35,210,246,16,114,154,199,80,208,223,203,217,236,83,62,212,184,131,
218,152,247,213,40,36,93,210,203,3,90,36,6,221,18,22,45,1,233,127,29,10,83,2,71,130,69,64,58,58,206,43,195,161,41,156,96,219,192,237,44,190,96,234,68,60,202,8,103,100,4,97,231,70,26,209,59,56,98,127,187,215,121,128,78,96,77,212,38,91,136,223,104,77,96,54,188,148,181,214,24,140,32,183,200,198,56,113,176,63,185,18,84,44,149,61,177,246,5,156,108,54,251,227,187,156,237,156,85,67,9,31,131,199,148,30,62,18,115,199,34,31,193,232,137,128,60,3,26,137,188,76,166,7,220,96,228,64,8,250,183,41,102,107,71,128,84,89,208,46,1,217,177,7,175,142,148,176,125,198,64,111,8,139,76,148,123,27,184,104,47,19,123,148,58,130,79,6,255,19,138,132,6,51,76,37,15,115,210,137,24,133,108,182,6,5,45,27,128,169,190,74,81,58,203,171,188,103,212,142,80,51,162,107,27,127,242,103,207,19,71,201,28,77,2,204,25,159,232,71,204,94,38,6,195,39,61,94,211,58,29,13,73,214,83,26,1,255,156,14,99,26,91,2,239,202,
68,61,46,13,81,143,53,76,167,189,24,10,2,21,211,107,37,98,255,89,126,223,43,243,111,63,206,198,194,89,147,208,99,188,252,213,186,38,234,63,245,143,164,122,181,241,39,234,211,127,103,121,243,87,206,239,179,212,63,114,255,229,199,17,125,83,250,159,79,67,163,106,248,144,11,198,108,25,127,188,198,172,254,253,209,235,31,217,255,219,247,169,39,201,56,13,223,71,215,191,217,220,31,77,84,255,141,134,183,97,215,101,209,13,98,120,111,148,103,137,38,227,63,213,221,226,81,183,253,254,118,40,95,22,33,115,198,100,225,44,181,135,36,187,31,119,65,253,210,243,227,177,248,136,215,224,172,31,14,166,38,214,14,134,82,177,225,42,3,170,116,17,6,49,117,227,38,197,34,156,116,122,133,39,49,221,134,16,124,167,147,178,93,162,67,213,70,207,159,31,203,143,189,7,213,240,222,200,110,241,13,163,174,153,64,156,89,113,154,0,54,246,215,94,196,53,83,62,137,190,74,1,35,221,89,209,54,233,76,76,163,172,158,90,107,230,238,39,68,75,122,199,28,233,33,110,
3,133,25,95,207,38,146,57,81,124,242,80,98,230,99,28,236,212,177,220,51,235,121,139,21,126,28,118,79,70,105,227,23,67,224,108,91,220,46,134,88,74,18,108,132,208,104,211,243,234,245,87,252,156,73,57,154,24,94,124,148,122,149,253,182,25,117,47,6,207,108,121,201,133,39,30,227,180,230,67,120,11,235,39,27,37,58,131,54,163,202,222,89,240,134,67,17,51,139,6,99,29,141,57,82,129,166,156,241,9,63,207,1,0,242,93,42,5,110,38,213,241,162,44,200,147,88,225,110,234,76,8,187,83,232,25,1,200,251,205,20,71,71,66,105,185,110,50,33,35,55,98,90,139,155,241,10,223,220,97,64,57,163,244,107,76,159,235,16,101,237,153,197,241,97,252,153,167,41,139,164,225,246,247,164,56,89,203,238,45,244,71,7,4,174,130,235,170,115,89,31,77,212,217,25,37,216,86,82,219,54,110,114,141,237,69,39,229,129,236,152,72,30,79,238,139,7,10,194,20,210,111,5,85,23,215,134,177,92,87,64,235,99,73,98,166,235,6,111,146,127,84,204,228,182,159,
150,215,147,211,79,168,72,170,85,61,175,248,200,50,25,210,134,45,25,174,66,129,159,48,110,65,156,216,171,191,109,252,43,244,63,207,62,185,50,211,226,63,131,34,27,23,133,17,247,110,252,226,115,188,153,114,195,95,229,33,136,10,231,6,80,11,107,158,22,30,72,74,215,30,210,151,88,58,140,147,194,176,220,44,38,175,120,156,45,38,42,115,134,211,65,136,70,152,150,210,149,237,17,75,8,174,72,42,219,208,64,67,29,65,223,58,191,52,4,83,56,199,151,33,105,74,214,221,53,56,244,20,170,89,249,40,242,88,164,79,145,28,67,33,52,173,11,159,169,119,135,243,247,82,30,215,193,137,231,30,46,253,188,34,73,221,252,245,241,144,172,197,223,93,31,146,76,123,59,37,145,229,202,211,148,132,150,42,221,209,18,111,126,143,199,105,108,22,211,121,125,119,104,204,216,54,211,155,34,11,251,103,16,209,28,177,130,163,47,12,47,8,179,180,242,106,121,222,194,145,219,49,176,52,194,253,27,114,81,42,94,183,115,48,148,77,232,197,230,100,19,60,237,114,96,62,
166,58,183,93,7,106,217,11,166,104,69,171,251,64,220,98,73,175,1,206,89,178,231,220,100,164,138,139,104,246,166,88,124,55,219,49,98,209,56,25,220,231,112,78,79,117,32,6,89,216,120,49,189,109,54,20,149,6,230,38,90,178,203,7,164,213,252,173,3,70,27,216,104,115,105,135,86,22,249,116,118,11,193,47,66,201,175,99,63,129,219,248,174,119,100,236,22,9,147,242,223,163,182,13,19,249,188,92,10,239,54,14,239,230,19,97,7,164,165,96,19,182,156,115,42,80,203,130,189,54,243,134,33,226,64,154,177,242,48,44,253,64,109,77,48,31,178,229,125,28,246,68,63,110,55,179,242,197,158,61,194,139,35,32,138,39,12,138,149,19,109,43,157,97,231,23,119,179,72,83,113,160,92,94,3,61,41,110,174,208,230,184,100,156,32,6,196,162,48,129,229,215,126,178,169,103,169,24,81,1,83,110,120,32,161,202,74,105,5,236,90,127,98,6,157,49,188,60,134,16,122,235,236,250,19,180,246,147,135,104,7,203,232,214,209,106,181,244,97,209,71,96,51,66,70,14,
115,59,179,241,126,55,233,27,59,109,158,243,246,101,159,135,141,20,215,49,19,70,35,78,93,177,161,125,141,221,78,50,187,234,61,48,68,246,181,120,176,19,179,13,16,150,167,249,57,49,238,108,122,110,102,17,209,246,34,136,241,232,19,226,91,108,91,40,138,165,14,231,51,11,211,186,67,39,86,142,249,177,153,163,81,73,179,160,190,115,62,38,237,41,157,197,119,247,44,93,213,74,129,44,16,183,73,143,228,116,101,197,212,185,194,11,125,193,203,14,96,23,92,224,126,74,193,149,226,17,141,48,3,195,54,114,248,186,45,225,235,4,75,6,85,120,75,225,19,196,33,60,56,138,35,212,72,112,249,7,192,136,113,41,88,109,23,99,212,196,152,24,126,26,77,4,1,116,9,22,22,181,154,42,106,221,232,233,200,245,19,177,236,252,68,230,202,248,6,165,212,202,20,203,218,33,212,41,222,165,22,170,79,87,20,211,49,232,167,140,148,47,119,112,106,54,115,123,24,155,47,115,0,77,231,205,133,215,135,115,68,69,23,215,6,172,229,186,145,247,4,70,131,148,113,87,
87,244,178,17,63,77,6,141,21,150,178,37,228,226,85,38,224,38,163,36,186,52,122,240,73,171,158,104,81,232,11,245,70,195,77,166,95,183,218,184,208,72,146,145,116,91,105,200,46,125,11,15,56,206,248,14,126,255,72,75,9,80,215,222,240,146,169,63,207,55,199,242,225,5,133,223,147,26,118,246,120,79,223,32,70,238,224,216,62,71,140,64,220,55,204,22,1,15,165,18,35,69,172,208,242,164,239,138,39,139,172,241,32,131,46,19,249,241,35,60,255,176,41,255,252,241,61,14,127,124,53,82,90,95,249,205,72,107,211,47,247,159,63,248,234,31,9,195,47,219,250,155,191,217,111,46,73,95,159,163,230,107,127,219,207,240,250,229,51,244,203,6,87,175,97,252,219,140,108,75,38,221,103,214,21,239,250,30,158,115,249,156,71,134,81,28,237,160,20,229,41,87,131,181,0,11,146,157,2,40,239,180,123,39,48,20,169,112,143,57,220,125,68,33,49,39,185,175,198,59,197,186,81,189,159,15,202,124,200,37,61,79,45,167,37,234,164,109,101,122,130,82,89,222,145,158,
190,35,213,29,23,40,9,91,182,135,178,156,244,50,122,83,19,205,188,216,130,217,135,68,222,225,179,99,227,184,133,175,138,146,236,6,60,179,120,3,110,236,136,126,44,190,39,159,71,38,191,187,77,15,88,63,214,179,108,116,242,177,253,76,81,163,63,203,128,129,164,186,82,22,160,87,51,251,0,239,29,218,99,31,215,92,132,156,236,127,7,223,125,220,144,9,134,92,204,125,129,134,211,213,225,60,0,16,239,231,18,28,154,54,221,157,170,65,174,142,18,45,150,173,103,208,151,98,182,95,235,234,175,171,249,26,19,162,121,112,41,240,11,171,224,237,27,76,179,195,52,15,239,215,107,9,153,231,242,188,153,94,182,152,193,68,224,104,156,230,26,76,28,142,49,92,247,10,249,97,248,160,13,138,15,25,85,210,168,215,164,157,103,137,126,13,161,122,224,93,41,43,185,41,217,64,242,2,177,48,24,199,148,62,122,13,161,108,164,108,26,122,51,64,130,36,118,186,240,209,76,180,41,129,174,30,196,195,145,62,80,159,2,154,28,46,192,38,239,96,66,238,147,236,32,75,
218,212,16,96,235,222,210,228,187,71,98,196,156,204,225,41,212,194,4,5,120,220,195,6,210,13,88,135,134,40,192,6,26,77,194,133,176,6,51,156,91,201,163,112,212,179,188,31,137,141,123,239,233,199,39,242,30,200,21,188,123,116,194,37,225,143,162,234,112,43,20,17,101,35,150,135,43,190,60,97,179,145,217,155,105,216,18,213,70,74,224,192,165,208,33,10,24,136,236,21,78,152,126,182,45,65,11,217,82,136,0,97,65,146,161,197,202,118,182,145,211,216,9,175,50,172,75,208,216,112,33,227,107,12,132,15,139,116,115,122,52,252,112,119,228,33,231,27,133,88,45,7,137,130,119,90,93,240,112,208,102,145,124,35,71,174,3,151,11,130,141,193,67,118,197,147,43,20,192,198,246,71,60,63,111,126,40,145,121,217,81,217,13,79,67,20,192,123,149,214,71,1,83,35,164,15,181,195,88,95,25,216,160,97,37,241,208,3,76,80,214,235,10,219,205,223,25,32,66,92,217,107,118,131,193,186,177,89,22,63,185,59,140,225,166,82,251,203,134,210,61,5,32,70,162,127,
195,221,37,238,9,77,114,96,105,121,40,4,157,200,3,109,29,197,3,203,32,73,76,139,157,236,200,8,95,100,194,42,112,234,83,112,109,219,206,248,190,69,57,104,202,241,4,124,59,120,76,116,10,119,172,117,134,142,207,134,151,4,22,174,223,226,202,21,31,44,192,157,24,210,18,198,130,224,15,226,98,217,136,126,27,31,196,180,244,50,185,14,124,102,137,95,51,179,41,71,136,128,134,150,204,135,126,154,8,94,253,156,17,255,17,11,34,219,204,43,230,48,11,129,207,190,63,75,117,131,149,140,162,230,157,54,242,36,246,119,145,208,232,135,232,66,228,248,9,63,27,112,138,27,29,110,37,81,124,169,46,223,182,217,130,16,110,43,112,210,94,16,36,78,69,144,230,135,58,179,4,255,229,97,137,101,105,92,152,139,20,194,65,174,19,169,190,66,188,46,30,176,70,230,173,97,115,168,4,172,241,183,230,224,250,164,152,201,16,62,106,215,8,103,232,94,19,6,182,115,58,153,165,198,138,146,97,192,239,227,86,42,125,56,204,182,215,68,184,186,221,11,139,185,161,15,
180,6,142,153,221,137,112,132,37,160,16,127,209,16,204,89,219,247,249,35,148,12,136,85,156,16,70,22,16,217,215,148,72,155,163,43,192,179,113,89,220,225,252,247,255,194,107,147,232,63,199,58,12,255,236,167,241,43,253,75,78,170,95,74,114,248,215,222,152,63,85,230,144,85,89,242,245,227,76,95,61,57,248,244,235,223,166,43,209,173,252,156,20,109,31,22,205,200,14,153,120,89,50,225,210,239,108,154,98,134,19,116,203,19,123,26,95,88,241,245,240,117,124,29,91,189,37,192,134,198,214,109,61,175,79,211,54,235,243,54,153,103,131,217,199,50,115,60,192,251,25,222,156,168,28,227,49,146,216,130,250,128,4,100,180,127,193,157,83,52,91,83,49,234,218,65,227,246,216,178,81,104,196,170,164,145,142,125,143,173,88,161,220,197,0,3,78,107,46,45,96,147,35,20,251,7,153,158,222,51,219,150,82,162,187,146,64,29,163,193,82,0,205,136,219,96,246,50,89,3,193,155,144,202,21,148,9,52,18,43,132,110,89,124,57,160,208,103,40,227,137,15,0,249,50,10,
56,184,216,231,247,119,241,238,104,128,23,214,209,148,128,199,14,146,97,86,67,207,96,186,185,130,23,12,222,118,247,234,23,145,213,230,101,145,33,116,12,195,96,161,212,109,236,76,111,61,199,113,18,132,184,44,203,13,2,250,38,114,209,194,74,174,88,37,48,118,217,152,81,31,83,112,89,225,28,76,3,22,48,77,228,142,181,165,32,109,181,9,177,72,220,48,119,150,203,65,60,59,169,63,76,176,238,153,24,173,30,188,225,207,0,229,198,199,141,156,35,230,13,183,5,10,15,120,187,65,113,15,227,2,142,101,44,30,29,57,65,89,172,18,53,35,178,166,51,92,81,70,248,249,160,65,230,10,67,13,142,185,195,136,88,30,174,96,73,225,187,103,176,188,149,226,145,5,204,5,69,53,92,23,150,63,183,228,95,35,19,30,0,67,23,128,206,129,232,198,16,222,228,68,233,5,1,241,10,160,169,59,98,66,33,0,239,12,172,192,163,230,202,32,134,173,95,207,101,136,96,225,147,243,208,148,176,45,81,232,227,233,137,140,69,83,30,152,143,230,249,201,87,20,126,253,
22,230,71,103,155,135,195,74,255,150,153,127,133,244,239,134,191,255,183,142,71,159,38,251,241,233,127,212,95,231,232,111,166,223,60,142,127,1,129,159,230,254,235,101,253,155,127,242,239,78,201,95,119,252,159,178,255,245,102,254,241,151,184,110,127,252,165,108,201,81,254,250,78,138,228,243,187,220,147,90,252,231,68,63,190,117,159,203,172,239,93,66,148,92,145,23,233,113,190,157,246,229,61,104,14,55,135,45,154,186,251,190,19,224,22,212,147,204,118,188,8,118,60,34,226,40,139,110,192,201,0,210,170,8,113,199,142,82,6,253,170,100,1,74,187,109,17,101,249,6,99,110,92,233,134,36,137,219,88,150,172,16,109,50,46,141,84,122,100,80,126,77,204,116,65,30,247,150,97,121,240,152,201,66,62,71,201,60,125,242,9,231,180,143,158,228,100,18,161,113,228,110,205,69,103,26,98,242,160,67,235,117,115,60,132,15,31,180,120,143,207,240,8,85,4,86,146,211,32,164,63,6,166,84,179,97,101,16,201,237,32,75,75,240,204,2,159,59,197,224,40,103,147,15,78,39,
50,151,4,188,177,238,89,78,94,34,232,160,153,38,27,45,24,152,50,9,66,8,155,126,48,224,91,50,165,135,12,19,30,230,248,156,222,224,197,21,5,205,145,168,2,13,104,152,200,180,198,69,188,135,226,179,32,151,112,79,217,202,225,232,140,67,92,52,164,153,210,5,12,201,211,0,158,234,2,22,107,108,209,75,44,52,217,66,228,88,118,147,230,168,96,229,186,76,46,112,144,98,29,64,64,102,43,92,169,58,59,85,22,95,204,196,138,98,38,35,118,242,116,48,210,166,108,132,237,218,51,161,206,5,16,170,142,168,115,25,32,29,46,247,37,65,42,48,50,192,56,143,196,174,21,226,83,134,172,169,14,213,184,56,32,225,132,159,146,40,182,141,232,32,163,21,121,121,58,193,173,97,119,165,44,54,13,245,123,157,129,62,184,112,140,246,120,243,139,152,98,185,39,185,150,254,220,161,149,233,216,69,36,9,104,224,205,48,15,118,47,114,219,246,126,29,155,158,213,40,61,3,206,55,240,132,8,213,143,203,247,9,204,212,254,207,191,85,206,74,53,254,202,153,226,223,
0,104,100,137,118,199,99,221,222,246,50,158,55,235,58,31,101,58,213,27,101,56,18,212,26,6,192,140,91,239,115,130,12,158,60,79,240,177,211,221,124,64,9,71,233,9,211,195,203,161,123,234,198,97,16,89,123,100,162,174,252,23,223,173,147,3,245,241,221,81,111,40,250,205,169,14,235,176,145,9,192,97,23,115,130,72,62,217,160,146,183,14,222,37,254,35,73,213,40,58,25,165,235,139,124,70,174,15,152,26,86,16,69,252,11,244,14,8,179,44,119,216,225,0,122,171,249,104,178,168,226,190,71,130,9,169,164,119,174,142,188,92,48,125,131,12,96,18,76,234,234,155,130,181,5,60,188,77,49,123,114,81,48,70,41,172,55,97,0,141,211,150,32,134,245,10,208,22,48,54,162,226,154,39,181,121,48,19,75,48,220,167,148,35,121,159,153,68,185,221,140,149,21,62,148,7,199,147,251,221,80,244,129,232,241,12,61,66,158,106,217,172,125,224,180,80,140,31,147,137,4,161,129,99,177,49,6,52,72,158,193,6,129,44,0,44,199,193,122,217,155,132,152,57,162,150,
49,172,92,246,16,168,114,186,8,51,228,30,144,199,207,64,128,4,109,245,35,185,35,94,116,17,50,239,248,123,220,151,144,234,183,141,109,210,12,49,12,134,213,132,82,126,122,142,134,120,158,64,7,196,168,70,177,0,41,94,180,38,150,31,109,228,54,15,185,113,48,203,203,223,99,74,134,255,238,177,150,109,50,26,246,121,99,114,224,203,135,254,89,126,190,241,33,191,235,195,203,63,63,190,35,114,245,85,137,223,111,255,21,239,249,241,13,218,248,244,223,72,140,111,204,197,207,117,202,159,1,60,81,223,255,10,72,154,190,33,35,223,240,153,252,103,172,71,218,127,218,255,45,2,216,41,202,241,175,196,115,9,67,209,213,45,255,112,81,250,219,190,170,249,197,44,95,180,170,53,186,242,137,51,105,108,83,45,126,174,192,215,223,55,109,39,156,171,186,120,105,165,116,219,115,224,44,49,26,177,26,7,246,182,236,179,253,193,97,205,189,125,212,246,4,116,43,135,115,249,124,94,87,164,223,84,227,112,14,54,65,43,223,245,102,14,125,105,213,246,155,146,154,26,14,52,
123,79,221,83,148,150,19,228,79,9,229,68,168,161,161,37,243,236,198,70,165,75,240,229,141,41,133,93,248,214,118,55,201,145,15,215,178,199,12,125,162,133,195,200,25,80,120,159,83,235,110,45,203,7,250,58,190,207,224,98,187,239,34,185,157,212,229,94,132,144,123,30,197,186,148,239,55,217,106,4,187,70,108,149,143,116,193,126,80,162,95,198,56,57,120,245,133,165,215,229,238,207,8,53,46,33,140,148,142,124,189,234,211,30,84,157,104,228,199,153,185,49,41,3,114,219,176,59,229,147,232,234,157,90,24,203,103,117,220,31,38,163,85,64,35,76,38,1,173,27,163,82,202,107,161,215,190,147,252,238,195,51,179,195,230,241,227,197,36,62,195,178,24,190,77,175,166,188,113,75,83,53,112,151,222,179,105,190,53,64,204,115,146,250,112,249,178,2,188,151,110,79,74,105,212,154,130,25,50,77,81,50,61,110,74,97,149,10,160,141,223,71,118,152,16,183,36,58,71,107,219,157,93,161,172,230,47,33,229,26,191,169,128,112,153,111,190,216,112,78,228,86,210,205,221,210,
183,207,83,71,200,222,77,74,241,64,126,167,253,155,243,214,62,237,30,228,41,0,5,115,229,206,180,58,79,103,203,38,42,40,137,13,46,221,34,70,147,158,61,255,221,211,42,88,158,196,126,196,204,251,100,93,65,201,164,162,180,163,154,141,62,62,150,211,253,153,80,175,240,82,239,233,235,249,244,26,93,230,34,70,173,22,48,7,74,16,12,83,83,163,92,12,181,91,189,91,51,202,221,134,86,118,225,30,235,126,12,106,63,243,160,89,250,135,50,105,228,91,236,40,194,93,27,221,69,19,155,138,191,218,125,36,46,151,3,159,206,101,150,121,189,204,124,223,18,199,101,121,120,191,92,206,98,48,151,213,206,151,187,203,254,204,32,179,155,185,207,69,154,123,93,211,54,230,26,22,39,254,117,90,21,213,174,156,245,176,89,251,86,106,184,243,119,221,13,81,102,19,104,15,4,159,71,202,114,183,202,209,130,39,165,126,158,224,172,183,181,103,30,157,243,112,83,49,55,177,31,241,150,174,254,157,94,21,158,226,66,10,16,224,214,27,18,10,30,195,39,57,213,134,135,144,
47,57,111,35,199,81,23,202,78,13,210,157,30,14,241,174,0,253,168,155,175,198,63,178,199,227,225,32,214,198,91,124,29,253,163,243,60,120,251,163,113,93,236,93,243,58,223,21,88,235,178,98,189,29,67,48,40,87,187,47,80,201,154,139,144,104,145,195,123,116,73,32,238,45,177,147,105,172,26,182,145,160,147,23,195,96,55,98,179,93,69,67,120,134,214,45,50,210,43,117,242,112,46,201,169,175,148,236,227,208,21,17,198,231,215,164,101,72,13,35,247,38,107,101,66,13,102,150,6,67,192,100,187,37,9,65,81,239,16,174,231,83,210,154,167,75,159,9,160,240,147,98,55,30,102,167,177,36,204,26,14,125,60,242,137,201,131,156,58,236,202,98,119,31,55,115,103,218,215,128,95,198,98,15,3,169,36,10,190,172,6,186,211,81,238,58,238,110,1,218,78,30,187,156,226,205,196,58,246,226,124,160,234,242,116,180,197,57,243,7,174,144,93,139,145,185,188,210,5,232,117,248,182,237,77,168,149,33,219,29,236,76,206,60,126,4,86,5,156,218,58,93,83,3,157,125,
45,168,155,37,177,241,107,255,86,47,3,235,67,230,146,118,79,49,8,196,22,180,244,51,196,107,111,101,14,127,200,148,41,135,126,31,231,94,180,77,212,245,180,1,58,5,183,153,204,11,197,114,148,187,218,248,187,245,104,226,144,102,231,163,253,86,45,193,240,243,207,155,233,177,63,193,53,224,249,189,203,31,246,240,61,174,61,117,125,32,225,233,149,195,184,61,149,166,242,139,166,154,138,181,166,38,101,37,160,127,23,185,134,149,123,222,247,125,75,173,134,81,25,194,217,217,158,15,98,231,118,210,168,213,117,99,74,58,44,66,201,184,254,182,156,181,155,198,255,208,242,171,181,162,94,255,133,229,79,8,199,179,174,251,189,127,19,143,157,69,25,133,211,87,111,203,138,198,227,59,20,162,67,125,175,238,129,77,238,217,136,174,187,53,247,241,82,28,67,217,151,204,239,203,178,234,251,104,62,134,149,129,2,149,199,39,10,199,169,69,189,196,84,134,185,132,70,204,110,192,104,174,236,228,33,13,66,179,99,216,104,119,70,114,98,157,113,197,178,231,93,132,196,239,113,203,
50,221,174,67,252,247,120,100,153,243,78,128,242,155,189,59,53,196,62,220,155,12,3,233,180,134,115,30,167,48,189,196,158,179,195,131,134,33,199,66,44,247,4,240,63,116,22,194,235,225,67,16,228,148,139,233,25,230,141,5,118,136,13,84,152,230,14,96,174,44,23,110,40,111,100,86,1,155,45,42,8,14,42,94,183,3,212,156,120,80,224,68,120,186,168,68,27,203,67,72,116,58,228,36,9,38,155,35,203,242,170,144,66,8,137,121,91,54,198,142,237,136,18,32,211,151,5,35,129,154,3,66,144,156,35,167,217,32,76,8,166,93,225,184,245,192,33,231,188,4,191,223,201,98,127,139,133,133,204,156,111,18,201,9,9,208,97,71,40,77,223,139,8,129,195,171,8,50,153,254,200,114,0,80,249,43,15,11,1,60,32,46,99,225,202,179,50,17,22,219,249,153,166,219,22,170,157,138,251,174,239,56,98,8,14,168,108,56,98,136,240,111,199,43,75,67,176,13,119,113,0,79,185,59,33,89,232,6,81,122,223,83,115,128,185,246,217,219,202,237,151,117,223,125,218,245,
111,134,134,84,241,24,110,138,126,116,11,227,24,108,131,177,59,60,201,100,86,151,213,190,172,234,243,120,210,62,206,245,177,83,152,192,82,219,157,105,184,123,108,197,22,111,110,76,8,117,214,211,95,33,154,121,101,55,187,202,245,154,231,69,161,170,213,210,236,37,62,250,0,15,128,133,181,222,133,211,249,76,108,239,208,190,146,152,90,5,78,207,76,192,2,125,137,162,116,224,3,65,192,11,109,79,174,152,240,222,40,22,20,18,159,162,111,199,27,141,91,71,127,84,248,142,157,27,6,96,159,16,182,189,142,220,5,58,44,40,2,126,155,37,191,45,70,50,141,59,209,138,183,91,209,58,252,109,131,130,194,188,68,231,128,216,193,40,3,70,212,89,102,208,54,62,74,166,59,130,94,19,125,236,39,1,169,195,199,138,6,192,235,4,235,241,18,190,162,162,182,96,191,253,98,217,93,195,139,83,120,122,224,149,134,211,251,0,14,3,251,60,78,48,125,66,103,74,100,247,197,193,210,101,94,163,134,84,68,140,235,40,237,68,20,216,24,8,57,97,234,140,160,224,175,80,
153,143,152,59,195,84,49,224,168,226,162,183,36,21,17,65,4,204,175,60,179,142,37,158,104,251,77,58,194,232,127,157,71,204,101,132,12,43,38,168,182,184,253,92,13,64,82,243,250,178,127,140,69,100,210,40,52,112,38,198,7,204,118,248,233,224,62,53,95,37,4,192,38,2,5,69,194,12,137,84,177,93,26,39,215,233,148,192,32,193,191,86,19,164,36,33,178,43,202,216,15,79,43,28,154,223,87,20,128,237,160,1,3,68,165,157,76,181,129,20,72,88,255,61,63,130,155,40,127,164,143,200,195,127,94,133,128,224,14,123,31,162,245,254,250,55,229,179,62,63,46,26,157,9,94,67,135,113,115,59,48,7,44,243,227,10,133,253,219,20,55,141,83,186,6,39,191,193,81,231,27,89,253,239,73,236,255,2,45,6,140,18,168,145,149,235,199,121,23,229,10,56,92,131,67,227,41,71,247,33,93,135,160,83,63,217,3,158,223,156,184,12,106,238,61,138,56,163,140,186,218,248,221,120,67,169,121,87,192,249,170,60,80,231,70,59,241,168,57,201,44,103,139,65,212,185,
191,95,242,234,232,220,57,54,191,44,138,92,192,163,214,108,117,62,221,20,233,186,51,53,198,28,23,16,28,222,250,123,118,120,231,101,16,189,179,234,159,107,188,129,245,192,107,227,82,196,207,66,209,142,126,251,18,239,241,30,21,39,163,172,91,147,210,142,3,123,173,15,74,92,130,9,236,20,47,183,22,187,212,106,106,40,96,141,168,211,82,72,35,184,143,4,190,81,214,78,57,65,153,55,63,170,142,227,119,171,201,221,164,24,117,74,155,155,177,249,201,117,223,103,159,249,169,180,238,120,125,186,239,171,162,199,12,21,143,182,145,63,203,64,189,94,210,92,81,170,19,49,87,127,0,253,71,147,126,254,198,142,21,67,255,166,5,39,210,140,64,204,111,206,71,205,151,156,61,42,170,75,112,78,186,192,100,214,19,63,184,41,135,228,102,88,6,60,54,227,189,247,149,33,117,49,119,75,86,149,150,218,52,201,142,239,250,126,218,121,76,198,27,181,115,228,227,164,239,206,233,209,57,66,228,241,62,234,133,184,124,13,132,229,163,166,182,164,136,187,36,156,204,82,227,17,
226,236,198,152,214,44,14,205,140,234,3,32,12,172,190,216,67,70,144,137,62,56,150,28,61,108,117,145,227,98,48,36,238,11,40,51,150,104,94,2,127,184,99,246,150,41,205,106,83,9,59,113,37,95,25,225,173,249,133,205,196,231,91,217,83,45,177,73,128,192,71,38,237,101,39,76,28,70,155,162,62,47,101,55,109,52,170,159,238,142,172,39,64,93,50,98,125,152,143,149,141,50,114,46,12,99,34,105,198,140,146,112,10,127,121,223,179,126,86,27,197,29,196,223,25,248,45,251,173,99,9,121,122,12,211,207,96,241,168,249,231,215,1,252,30,81,206,255,143,31,199,159,172,234,175,195,200,95,140,36,253,12,61,255,211,91,227,79,111,141,63,189,53,254,244,214,248,211,91,227,79,111,141,255,223,123,107,252,247,127,250,195,53,227,183,213,200,191,251,227,61,49,201,167,125,101,233,247,225,228,119,77,242,235,81,249,135,127,198,207,87,218,124,83,135,168,206,126,68,227,216,191,226,105,204,134,191,252,151,108,237,159,65,229,127,6,149,255,25,84,254,103,80,249,159,65,
229,127,6,149,255,25,84,254,103,80,249,159,65,229,127,6,149,255,25,84,254,103,80,249,159,65,229,255,159,4,149,255,247,127,250,45,164,252,95,185,225,255,135,212,237,127,185,116,157,201,90,114,156,247,199,199,182,211,207,207,213,189,93,47,87,229,174,123,84,119,126,183,209,73,11,143,187,153,210,218,139,116,212,84,173,44,8,78,204,74,83,69,210,94,127,26,237,93,215,49,235,135,34,222,19,43,5,63,206,225,218,97,239,209,54,94,61,190,16,115,177,186,145,204,80,71,40,69,255,249,184,5,175,125,29,188,225,91,58,92,81,41,164,131,175,134,47,23,184,215,227,64,212,207,206,44,175,0,231,26,77,179,77,72,57,5,62,40,55,122,151,48,224,113,111,2,187,93,86,5,100,230,84,31,226,84,48,158,163,75,3,11,76,183,173,225,74,130,36,29,167,248,236,84,81,27,51,30,60,181,48,214,84,190,76,214,69,133,253,243,33,234,82,216,195,237,105,133,75,252,170,164,193,42,183,14,177,42,182,238,239,68,127,23,232,44,44,131,211,158,57,201,50,248,1,81,
79,97,131,162,67,49,146,197,92,215,6,209,207,121,134,35,6,193,247,217,143,51,64,208,103,169,195,5,136,50,198,224,229,203,48,147,192,190,172,222,80,102,192,184,74,13,221,207,78,208,182,80,122,33,44,175,90,105,98,166,149,18,164,39,227,96,223,226,218,116,160,127,49,193,90,166,190,110,57,226,30,110,119,94,128,119,94,34,31,32,251,218,199,7,14,152,19,50,137,32,76,23,78,81,30,64,231,142,95,138,127,47,62,243,47,95,226,239,107,86,127,174,137,255,17,229,248,125,229,241,175,119,187,254,85,80,198,175,128,199,255,26,161,239,217,142,254,127,104,123,179,166,103,121,117,77,236,175,172,202,81,186,212,137,152,133,186,42,7,198,216,96,27,3,182,49,198,28,53,147,48,152,121,134,95,31,249,253,190,181,246,78,186,147,84,118,39,85,15,126,108,6,1,210,61,92,151,164,251,214,114,212,174,225,226,186,7,39,1,56,62,132,71,239,126,184,209,191,62,91,134,212,192,131,136,76,52,94,108,63,56,149,74,118,127,31,142,7,83,15,246,217,233,249,238,204,
12,227,73,178,121,251,233,147,99,162,69,47,159,154,23,190,66,231,21,99,190,250,200,194,244,165,172,159,218,251,106,178,195,114,97,254,123,57,241,158,219,34,221,227,135,52,113,76,71,125,43,133,20,209,144,85,110,29,63,196,208,181,218,155,84,108,156,228,63,63,172,81,13,95,174,81,91,207,218,98,123,50,215,225,253,38,185,215,229,181,200,249,178,162,255,198,64,249,203,108,95,230,212,253,220,186,57,170,231,19,239,143,245,213,10,192,185,101,223,26,251,86,112,112,196,47,202,30,118,59,238,115,98,211,55,78,15,230,231,21,102,43,251,105,121,104,135,79,2,111,1,188,93,206,157,245,57,122,215,248,173,187,191,191,29,191,13,209,52,233,101,41,152,156,188,231,250,51,255,246,198,57,141,235,71,92,142,104,226,235,254,140,158,167,187,121,96,29,36,39,150,60,13,118,107,85,214,251,243,175,60,1,54,167,216,92,218,177,31,157,97,225,61,182,162,184,61,156,92,207,151,57,106,43,152,78,174,144,18,124,154,62,0,239,28,44,211,246,217,233,187,84,191,144,198,227,
136,246,252,235,220,183,28,231,56,168,86,14,77,224,216,5,159,185,87,63,154,158,245,54,173,200,116,159,23,14,211,1,179,114,218,37,190,28,46,174,126,251,117,63,139,213,30,134,147,149,80,130,180,61,217,252,115,214,51,182,152,213,235,170,189,193,65,176,14,180,214,228,206,174,204,188,123,77,73,30,75,93,159,88,31,224,88,213,52,84,4,105,156,232,8,204,77,216,63,37,237,9,148,167,117,224,34,163,167,168,248,10,169,115,197,24,62,157,195,119,39,186,241,176,240,54,95,131,23,127,134,120,105,5,39,162,64,1,40,189,181,35,214,135,216,41,49,210,157,81,63,12,65,59,31,161,56,199,58,238,34,178,176,251,26,139,11,15,217,154,72,254,184,16,73,227,201,237,49,42,183,49,149,167,207,190,75,31,93,125,233,132,123,43,28,91,209,193,7,24,71,174,135,94,58,244,15,17,103,141,48,201,129,248,101,40,100,75,204,218,250,239,228,9,240,183,122,215,227,59,129,79,253,5,218,137,11,117,68,166,59,203,162,144,71,140,150,74,191,60,2,124,230,84,26,63,
238,200,248,33,83,74,190,30,100,21,118,106,59,92,46,128,158,21,39,160,155,36,45,112,106,79,175,119,186,240,56,10,154,21,42,39,112,190,203,126,150,17,185,181,90,220,87,216,36,61,176,20,16,171,216,120,76,96,148,65,44,35,51,98,156,132,168,187,42,141,142,253,201,17,190,229,242,80,215,66,58,3,89,152,121,150,5,155,64,89,205,32,209,230,182,79,252,86,213,199,106,241,236,44,33,218,62,57,234,119,130,51,203,229,90,194,152,120,44,187,46,151,87,155,196,160,171,17,43,169,5,191,79,250,59,5,218,5,73,169,151,49,189,58,226,133,3,119,231,54,220,44,226,84,231,56,102,75,174,225,39,171,2,203,231,18,1,209,23,94,104,206,121,10,218,4,157,61,66,90,182,10,144,254,24,162,148,25,240,216,14,252,242,48,240,5,198,108,215,43,78,101,124,174,36,171,97,250,134,233,193,174,61,251,104,83,183,183,73,130,46,78,109,184,197,38,239,233,60,165,71,45,101,106,199,141,178,182,127,31,251,191,39,159,132,113,0,35,0,132,91,218,226,95,130,126,
88,168,160,116,70,31,89,14,50,23,13,235,141,192,219,143,203,36,139,128,68,118,104,203,187,73,222,119,80,65,112,167,195,93,1,47,164,213,255,200,148,212,142,183,224,1,121,239,209,172,38,191,60,137,79,204,188,242,189,121,54,132,135,48,111,43,42,65,204,203,124,236,201,168,124,27,180,173,111,219,47,232,192,253,240,4,77,141,184,158,249,133,33,190,13,117,50,34,235,240,167,76,28,198,60,135,164,29,156,79,163,211,3,52,177,170,5,36,164,115,211,96,200,16,166,146,15,75,136,222,210,13,244,186,47,235,145,16,246,192,200,121,21,112,2,226,165,126,10,113,180,195,38,211,140,201,22,238,253,172,226,181,43,168,174,255,204,249,121,165,220,130,90,115,15,228,163,137,244,81,102,100,50,139,7,79,226,30,124,5,84,149,181,63,185,205,128,92,186,179,92,197,0,7,50,201,188,17,121,203,17,139,101,72,113,53,244,39,40,1,16,183,109,7,41,106,31,249,219,205,130,132,83,225,109,98,187,68,197,57,143,64,248,48,175,160,161,156,3,36,34,58,80,104,15,221,
169,134,247,101,210,124,2,184,41,116,70,15,142,88,114,173,198,0,20,204,57,131,13,214,224,99,203,87,128,174,16,32,27,22,214,76,14,126,39,223,243,114,224,168,202,114,30,110,49,131,81,40,121,150,238,242,48,174,226,148,64,191,250,183,45,152,26,94,158,106,157,137,255,156,191,238,152,39,244,254,31,237,116,232,15,15,253,217,198,37,28,192,127,155,11,245,223,229,73,61,175,75,201,203,59,185,40,218,83,250,167,179,251,209,20,191,20,230,255,109,248,97,95,82,247,152,116,255,46,216,38,205,166,164,250,147,84,255,255,236,3,255,30,105,150,254,203,95,243,40,254,164,143,255,123,16,250,68,175,24,130,42,14,186,248,223,29,252,207,255,150,76,224,159,157,236,125,61,118,81,242,159,126,110,182,249,157,23,255,131,2,178,238,191,19,28,249,63,255,149,75,255,63,253,61,217,55,40,154,79,240,103,185,128,42,41,126,83,132,105,1,97,242,9,166,172,238,254,153,154,253,239,245,10,254,203,127,231,177,255,95,123,242,60,14,251,107,170,158,194,15,63,21,171,136,25,
107,252,126,157,221,109,94,192,41,242,214,87,252,122,55,194,20,184,199,164,147,143,172,151,0,212,102,252,0,27,249,204,117,174,88,181,191,244,184,93,195,163,235,235,56,73,42,124,118,99,188,85,41,47,178,144,36,7,24,18,52,178,26,109,40,88,195,193,15,94,231,83,84,195,186,217,140,42,34,235,87,111,198,119,151,134,220,1,150,204,129,35,235,192,71,55,233,12,29,78,200,248,243,73,178,224,221,107,206,138,82,65,27,119,204,117,178,139,174,210,173,190,123,145,100,183,194,106,147,72,165,107,67,222,221,230,12,20,84,124,203,232,198,24,240,157,206,166,183,121,81,90,118,128,109,201,27,9,230,23,142,29,243,221,173,84,69,42,30,86,242,241,1,10,194,75,160,146,43,153,126,157,117,0,126,81,23,201,18,106,201,222,182,161,208,194,222,99,203,205,155,171,136,15,66,223,131,146,157,140,14,208,168,66,129,142,60,24,245,79,28,17,4,12,28,98,252,72,112,135,194,95,134,140,58,18,106,12,63,253,137,64,106,13,132,137,90,194,2,64,32,123,208,162,183,176,
209,198,17,106,167,116,94,174,142,209,19,190,103,159,199,83,158,123,208,182,139,131,110,242,195,5,38,3,56,240,224,114,33,177,195,73,192,147,171,53,83,127,1,40,224,52,149,123,191,81,182,77,106,137,112,187,134,101,98,73,31,185,223,73,37,110,66,248,133,199,234,170,61,246,106,57,241,51,201,121,201,146,65,138,227,181,146,189,36,184,69,61,168,60,152,99,172,229,228,217,65,92,129,103,230,85,166,221,114,240,121,11,114,252,65,152,77,194,222,191,236,227,155,140,193,204,219,197,198,194,217,168,151,242,90,221,134,142,148,57,125,211,175,124,121,188,182,59,140,33,182,224,166,139,107,53,216,50,228,235,39,239,120,165,21,241,191,196,200,2,135,206,67,213,243,192,157,250,11,243,155,213,212,136,88,190,82,68,177,65,80,85,220,30,8,241,114,181,58,157,71,111,66,240,0,160,198,35,57,36,195,130,1,231,201,60,204,196,186,133,246,1,142,68,165,213,235,236,255,124,240,80,118,86,36,203,14,16,105,89,31,135,163,238,118,202,136,103,231,57,225,13,250,244,22,89,
94,151,229,181,159,95,146,148,179,106,72,86,67,127,254,172,193,233,135,129,169,2,253,89,247,227,7,143,255,172,189,240,71,251,255,94,193,226,55,206,245,55,82,254,75,99,255,241,139,180,11,254,44,212,240,139,74,250,41,237,220,81,190,74,77,69,184,254,243,156,191,139,201,170,168,24,227,255,86,107,255,67,138,232,43,78,111,238,14,7,231,206,43,203,88,181,243,157,179,15,117,202,37,146,36,122,204,48,23,98,248,236,101,189,244,120,253,154,82,167,146,177,165,188,81,253,202,208,140,188,248,157,200,150,189,197,95,220,109,55,73,35,9,56,14,60,229,185,86,141,120,180,165,79,173,229,131,14,128,93,60,150,160,33,148,40,22,93,111,243,23,221,25,170,171,61,246,54,135,107,118,122,94,3,32,220,216,203,232,2,249,38,190,220,4,72,225,116,75,10,244,30,225,110,229,251,61,6,41,173,241,179,234,249,113,203,37,80,80,167,219,214,161,183,37,43,144,143,187,224,136,190,10,68,110,23,122,120,78,89,254,5,135,146,192,29,146,177,83,6,212,241,131,149,232,85,
181,108,240,49,137,196,26,121,116,178,145,124,248,117,240,111,21,128,103,59,223,54,89,132,211,234,8,50,38,19,176,255,181,159,106,9,85,64,48,178,33,70,5,204,55,71,16,32,149,11,193,135,20,170,68,83,141,104,25,127,205,13,221,68,89,194,107,193,22,240,207,252,207,191,231,144,18,76,4,153,1,150,13,225,23,216,38,21,27,8,69,251,87,142,8,155,14,90,191,185,171,22,65,50,61,72,230,31,190,250,215,111,11,54,8,248,165,95,248,236,17,57,34,94,83,42,84,255,245,127,250,203,240,135,65,244,253,175,255,211,63,254,235,255,242,79,169,248,203,158,255,107,201,143,254,207,25,105,87,143,85,252,39,124,227,111,145,251,45,36,210,5,115,245,151,67,200,134,127,63,191,233,223,166,57,161,255,242,143,199,159,240,79,74,230,254,131,20,45,95,252,63,243,155,62,60,218,49,81,175,220,65,36,203,239,189,90,47,236,233,24,124,51,38,31,86,92,117,156,71,225,198,82,136,183,183,124,120,191,133,239,114,239,116,93,211,172,179,246,121,153,94,178,97,29,85,
250,38,59,147,100,168,99,204,7,9,31,23,146,44,95,187,50,204,108,186,131,71,22,186,70,76,210,184,70,59,137,106,102,9,27,221,40,203,113,178,115,68,112,4,159,70,241,188,84,246,195,238,162,12,139,49,142,9,211,21,228,205,138,193,11,110,201,219,175,154,225,138,191,32,39,15,36,13,40,212,140,150,231,62,50,167,162,100,186,60,8,96,70,158,148,176,62,154,107,233,146,209,207,212,202,38,21,215,78,82,92,61,158,173,180,255,206,21,156,118,5,247,209,164,146,33,11,121,20,238,227,206,183,55,91,10,198,250,60,177,39,118,154,58,171,205,135,164,204,181,219,23,214,138,235,221,52,216,158,146,247,177,149,118,4,191,111,187,43,86,182,138,84,111,187,58,79,207,175,156,149,240,254,84,215,195,110,125,168,7,161,134,124,65,2,183,67,56,177,52,97,44,83,110,55,171,39,237,115,221,173,218,109,230,174,233,249,48,239,203,26,47,168,36,136,143,225,42,133,143,131,122,126,94,223,243,245,204,86,189,14,94,177,14,60,124,18,101,23,241,250,168,159,58,9,230,
199,6,225,104,204,167,216,30,162,3,106,15,249,84,73,42,55,86,254,50,233,240,27,37,162,44,79,6,144,29,169,123,210,154,225,3,5,63,213,97,244,14,147,246,213,15,179,158,133,187,251,57,61,196,193,35,177,34,41,254,242,13,84,89,242,252,42,199,111,115,141,234,214,240,222,21,55,5,19,121,65,242,54,164,206,126,103,114,195,248,172,41,125,117,39,25,207,162,121,222,49,171,210,190,110,129,121,61,51,229,245,16,25,92,101,57,49,10,251,246,59,115,229,245,170,61,39,237,224,78,20,91,182,65,247,117,21,244,228,195,232,101,223,135,93,81,206,217,250,75,141,118,186,138,133,125,156,40,85,1,44,11,19,15,219,79,97,169,190,115,122,88,94,206,227,200,104,252,36,115,120,43,57,156,195,246,149,241,161,34,179,74,67,226,232,56,189,225,125,228,48,239,56,67,104,177,144,53,188,96,48,96,96,238,33,210,89,10,39,44,182,71,30,252,190,70,118,208,183,155,158,196,29,148,204,86,15,95,244,203,106,123,26,114,69,11,235,236,38,79,224,142,227,36,222,228,
114,32,184,145,187,138,103,137,36,89,81,46,193,140,212,85,64,249,138,104,7,144,87,7,199,151,148,193,126,67,222,110,199,238,251,82,36,137,179,31,67,179,8,179,251,61,184,223,235,67,254,174,125,179,246,190,73,17,251,68,203,184,43,49,117,39,207,239,106,159,253,211,107,128,195,38,25,233,139,179,229,71,26,108,46,189,144,245,190,197,107,214,134,112,247,234,46,86,183,143,21,140,208,249,186,238,37,253,251,12,86,197,57,186,170,97,190,43,60,18,63,238,158,65,206,85,213,247,20,244,137,105,202,138,198,237,30,225,251,54,244,39,60,124,20,176,30,60,159,98,244,155,142,99,239,154,114,121,240,144,94,15,173,174,171,183,212,131,1,241,167,33,27,238,73,121,51,99,139,147,100,13,6,183,41,184,29,157,250,226,8,247,155,192,38,36,97,41,158,223,131,20,30,112,36,63,54,45,220,246,199,45,11,120,192,219,245,200,174,231,16,134,5,215,112,149,214,200,87,63,218,7,145,242,34,170,229,237,198,225,122,22,29,123,76,225,247,184,49,167,173,171,190,164,76,150,
197,12,109,175,98,171,68,60,14,85,139,48,25,137,241,217,93,145,112,51,234,139,33,220,47,194,113,47,169,43,56,92,70,211,168,166,151,149,67,230,28,13,232,126,234,253,180,239,227,140,188,40,193,24,30,249,170,91,251,141,140,220,152,182,61,43,112,83,250,234,82,171,171,35,46,56,69,161,112,8,205,233,133,47,230,76,116,193,104,11,63,185,191,251,97,201,8,39,226,98,169,7,76,18,238,240,195,131,246,167,140,210,41,218,119,68,65,222,94,255,16,95,129,46,73,199,34,121,184,119,169,51,72,88,177,83,226,223,245,77,187,87,128,229,125,118,62,226,217,196,92,174,81,116,151,68,57,22,119,84,130,39,61,238,183,254,184,140,186,248,49,156,34,121,7,61,28,144,96,108,78,40,81,114,153,196,41,84,102,180,35,250,160,93,63,79,114,126,131,251,242,128,63,58,47,159,71,77,252,216,113,149,246,241,241,207,243,121,204,238,117,167,128,82,208,205,118,92,73,250,240,178,139,125,97,252,189,12,110,190,92,108,199,17,227,47,23,167,87,73,132,123,92,92,134,162,
234,55,137,159,230,226,244,24,66,24,160,170,88,119,71,105,119,220,188,188,0,74,145,236,220,228,19,71,61,15,251,18,122,36,5,245,139,162,130,100,97,125,28,242,210,211,61,78,157,17,247,70,39,238,248,181,41,223,253,116,240,146,79,69,82,47,129,152,7,193,52,197,28,225,185,68,148,22,211,90,236,167,145,44,207,225,56,81,161,133,125,112,143,29,16,116,19,191,238,200,247,38,179,111,176,75,193,167,182,231,189,183,6,111,29,47,161,208,77,111,237,98,159,166,144,194,253,177,1,10,107,14,145,71,101,167,5,121,159,177,23,251,22,9,42,125,79,25,158,68,184,59,146,203,215,39,179,75,40,11,157,141,251,186,71,139,209,119,144,15,139,203,95,215,100,175,185,124,146,150,2,99,73,215,129,162,131,93,1,216,122,129,169,11,63,230,47,91,95,189,163,117,18,80,25,1,5,122,56,173,197,100,28,96,38,6,129,180,158,102,89,127,27,184,156,118,84,148,89,180,36,91,190,88,92,190,196,194,99,81,146,201,238,40,9,57,122,99,134,219,72,60,88,60,5,204,
71,227,243,13,28,184,112,27,119,4,60,206,194,59,21,6,242,146,114,124,254,12,93,175,158,40,211,96,77,192,91,241,67,114,41,107,69,246,231,213,76,253,47,168,185,34,27,84,55,207,22,17,120,18,104,230,160,39,189,39,31,195,203,172,12,189,247,178,249,181,10,237,192,174,61,254,73,245,159,61,94,68,232,88,124,46,125,192,242,164,37,137,75,123,225,58,104,158,90,23,22,54,83,37,27,27,165,91,115,244,166,46,12,7,124,6,220,152,176,158,252,101,99,202,212,129,76,238,28,241,120,105,193,42,109,23,22,56,82,131,7,194,173,143,35,28,23,49,201,219,47,235,128,254,105,51,24,136,154,64,175,37,207,56,130,3,145,128,238,46,176,133,140,202,73,196,183,87,99,136,56,78,208,229,229,0,197,249,194,33,177,100,76,31,46,148,48,175,22,125,207,118,140,45,79,103,85,118,217,246,194,30,217,141,61,6,196,181,71,246,251,148,151,218,210,179,160,131,190,217,34,192,221,143,38,183,85,254,4,208,123,142,98,9,48,228,190,225,156,202,211,193,230,54,222,224,
30,176,210,71,155,227,96,130,207,109,56,116,49,160,182,60,154,13,4,37,101,51,92,131,127,76,33,122,120,16,94,115,52,169,170,107,79,250,68,101,1,56,226,150,245,173,61,214,174,209,84,157,14,222,32,250,176,88,216,120,86,102,245,83,72,247,216,146,29,45,72,102,107,54,138,107,32,82,216,199,191,203,202,186,175,1,90,240,12,37,117,56,29,38,235,46,37,66,131,25,220,26,185,17,218,111,157,207,161,62,221,212,13,122,18,181,237,149,1,31,189,180,124,77,198,161,140,135,87,88,221,30,54,53,14,73,108,239,227,33,176,252,144,179,222,193,51,131,40,34,151,59,214,27,142,37,130,38,192,86,132,62,8,37,31,89,240,15,86,217,62,214,137,48,166,21,21,218,63,187,17,40,86,163,0,174,255,39,2,251,155,229,255,213,143,254,67,111,63,208,255,111,19,208,255,17,196,241,47,196,183,251,107,216,229,111,122,240,175,196,132,255,42,230,127,253,199,190,200,162,239,63,130,52,248,145,142,250,31,63,60,248,67,137,255,92,37,239,159,107,243,253,80,229,143,175,
244,99,216,39,237,248,235,45,248,119,119,155,51,122,232,175,165,254,134,46,251,147,33,228,239,57,124,255,246,192,99,53,100,197,223,137,13,163,160,138,232,129,255,88,95,191,223,52,249,226,30,143,39,223,216,171,106,189,219,95,46,115,125,55,215,232,113,149,214,157,182,238,238,251,189,118,56,159,30,249,169,254,168,71,66,49,35,30,93,202,163,199,246,122,171,131,219,71,81,243,243,113,129,179,43,203,105,114,147,119,199,39,220,155,91,226,12,27,106,29,135,225,95,45,224,125,207,192,94,181,57,219,121,37,206,21,37,168,114,143,158,55,57,230,229,241,184,61,178,231,45,251,62,211,239,225,91,46,76,191,247,242,110,157,182,228,201,64,207,0,130,104,240,182,255,44,2,167,245,248,254,110,232,35,58,18,30,174,20,106,226,203,41,68,237,84,243,86,249,101,110,205,33,105,206,230,139,183,7,177,189,128,137,185,5,79,157,223,224,206,217,29,212,189,119,128,64,153,245,105,27,63,185,198,46,252,110,222,117,15,229,155,40,74,183,130,84,127,207,251,154,130,99,89,87,211,
228,236,162,217,248,218,145,148,116,118,16,231,243,195,76,117,61,125,218,187,80,75,101,162,28,184,221,190,220,165,210,174,79,58,169,131,174,233,192,51,24,172,232,34,235,185,155,12,202,209,142,63,168,92,123,27,48,46,133,70,235,134,202,173,39,2,147,179,201,71,89,67,254,92,37,210,88,91,239,251,97,86,158,242,129,145,247,119,225,7,113,173,220,211,61,18,79,209,135,114,253,0,141,231,179,80,142,253,110,19,142,85,102,145,157,156,236,52,185,85,203,81,55,37,187,28,22,61,14,126,207,71,226,247,206,23,246,209,124,48,22,107,203,212,226,224,200,249,2,191,3,195,80,143,1,196,149,161,192,12,248,232,153,97,185,83,244,239,125,213,161,163,141,135,161,131,192,132,110,59,94,64,9,143,30,197,190,21,8,182,87,234,69,23,33,150,102,163,152,88,151,165,215,195,82,102,66,177,50,163,179,248,86,224,150,51,188,222,253,192,214,67,207,109,78,218,144,220,70,55,124,13,54,225,175,253,107,102,2,84,183,120,153,103,187,196,148,42,152,150,11,35,234,89,10,241,
173,74,75,122,252,156,12,243,210,91,188,235,162,188,72,99,29,27,59,204,118,71,61,145,146,143,182,104,251,89,121,200,135,245,157,151,75,90,236,47,58,28,88,55,18,68,230,108,160,155,130,175,168,114,216,11,80,220,94,185,244,187,22,40,102,116,15,250,157,36,171,131,112,2,23,217,135,151,254,129,31,251,123,194,202,182,245,43,51,231,223,55,99,57,79,187,39,151,82,96,97,1,53,254,26,186,13,2,236,178,6,180,120,111,184,66,7,9,59,125,62,217,233,137,164,12,220,53,220,206,225,46,203,18,194,51,105,62,210,87,116,224,149,191,7,115,17,148,124,154,176,169,2,211,43,217,137,92,90,176,169,137,83,167,31,37,65,28,176,33,124,80,234,203,118,132,110,30,42,245,26,90,187,157,149,126,173,84,25,187,244,170,230,123,90,95,117,123,54,152,211,142,135,55,47,74,238,115,17,19,127,22,118,79,105,255,4,59,198,58,91,123,32,117,34,70,61,218,203,146,34,131,221,254,201,203,202,148,61,192,169,19,52,126,83,187,188,238,241,195,186,17,123,137,153,120,
57,70,187,1,236,145,152,7,194,118,94,62,97,22,48,67,94,81,102,219,88,217,114,134,100,138,201,13,140,233,29,156,36,102,27,228,135,77,189,9,5,140,165,5,13,253,154,182,30,160,62,105,56,24,48,61,194,107,247,156,4,157,204,119,152,58,80,241,214,210,38,180,164,225,49,151,251,211,46,219,159,212,244,50,8,76,180,41,124,47,37,210,158,200,123,40,168,120,86,225,108,135,19,97,205,151,180,247,218,29,122,147,13,191,66,45,155,30,120,234,228,241,35,71,37,9,114,85,23,204,16,85,166,142,58,147,114,73,209,230,7,217,56,231,4,193,35,212,136,3,183,80,126,201,114,14,51,94,218,100,205,152,130,221,24,196,175,247,83,40,224,196,223,249,55,181,225,235,251,197,95,9,239,9,195,169,32,91,167,95,54,238,68,4,167,97,54,224,121,246,116,39,91,85,34,67,232,196,51,146,125,108,150,122,223,22,186,236,209,246,109,86,15,167,182,116,81,172,215,83,134,96,142,12,175,186,32,234,66,203,211,242,136,109,236,198,38,173,159,2,201,103,134,130,153,50,
230,161,195,237,250,49,39,62,137,19,199,70,184,170,158,245,3,34,127,76,138,83,108,71,222,226,13,9,28,153,96,117,252,35,78,128,148,112,226,152,241,24,93,189,210,150,176,164,81,130,26,223,225,33,89,16,52,97,16,27,112,52,5,149,54,10,38,136,196,26,203,133,193,203,27,175,66,62,97,114,145,108,214,19,173,126,124,169,6,91,77,186,244,4,247,68,180,46,248,109,163,77,58,36,35,159,78,35,207,189,225,126,212,99,97,162,128,102,198,231,164,56,212,72,12,177,201,85,227,66,140,254,190,106,248,5,253,41,73,193,227,238,200,23,228,176,191,68,107,108,221,169,201,149,253,192,83,37,107,135,41,195,143,138,74,96,8,218,150,87,246,94,31,159,209,82,9,42,152,148,217,56,188,225,96,183,119,106,150,66,210,217,251,128,239,110,71,118,255,24,143,132,21,128,220,73,86,11,63,236,30,158,38,120,201,108,144,129,130,156,154,227,233,172,92,206,203,181,138,20,246,80,200,186,240,87,111,220,244,39,69,208,255,209,37,254,135,124,82,24,230,191,94,235,131,131,
224,6,227,99,242,45,247,37,179,55,167,116,61,231,232,97,183,219,115,158,210,235,201,227,240,55,187,159,255,218,110,43,66,49,159,150,241,99,58,67,248,57,18,200,39,170,240,197,66,167,87,113,171,28,67,128,241,180,110,144,115,214,147,171,134,120,61,23,55,202,54,49,103,146,93,148,160,209,150,12,249,195,10,214,19,144,148,222,181,227,240,2,125,162,89,56,165,175,200,201,87,246,173,176,239,177,26,121,56,166,230,164,50,112,156,205,1,95,4,219,133,121,199,88,204,94,218,113,183,13,155,152,55,187,27,186,233,26,60,223,189,243,205,155,60,46,50,166,121,207,55,209,142,200,252,50,114,140,58,204,78,84,113,27,4,131,240,76,224,14,128,131,226,213,186,77,205,185,30,174,168,99,251,43,152,164,134,207,169,241,111,2,175,248,12,91,158,158,169,99,128,26,159,92,151,184,9,229,44,145,48,179,107,77,219,181,175,35,240,175,28,228,151,75,168,250,66,213,79,248,74,213,255,222,124,157,166,227,121,184,188,101,202,190,120,222,232,83,29,149,20,189,11,215,49,4,
192,240,23,133,179,147,26,214,85,87,170,183,29,1,86,37,78,103,181,41,163,242,195,207,211,117,178,154,55,142,156,178,130,80,181,38,83,236,147,254,243,45,172,38,231,187,220,10,245,60,141,87,61,247,74,134,209,45,202,79,208,248,192,146,188,150,41,191,104,237,55,249,205,245,225,236,162,96,228,74,143,164,42,131,37,131,51,231,89,49,91,157,76,120,173,207,178,106,165,165,204,19,232,191,51,24,14,2,191,156,24,115,240,130,239,108,83,238,43,235,253,212,199,220,123,126,199,178,116,23,115,29,248,88,226,241,148,216,108,37,228,155,230,125,173,94,228,209,70,114,237,73,172,97,96,55,198,108,78,81,131,125,202,179,42,180,60,66,53,187,8,6,86,182,199,64,93,219,135,235,5,22,62,18,244,218,130,148,170,167,66,198,158,107,132,142,247,95,210,186,95,9,98,54,130,74,4,236,118,80,18,178,173,163,157,79,207,154,146,207,232,139,23,32,79,199,235,118,61,70,23,49,134,161,181,61,141,183,248,188,193,143,110,217,106,228,69,55,183,134,82,158,180,228,123,186,
200,170,116,167,167,172,113,37,248,163,101,184,227,119,122,54,154,12,64,36,95,241,155,62,217,36,121,111,187,32,53,33,187,183,15,167,42,190,82,220,148,40,16,129,5,45,249,56,128,79,188,168,10,89,55,222,130,140,245,250,192,221,122,106,168,47,13,211,106,29,9,23,72,196,17,23,249,202,56,243,68,203,132,55,178,133,135,250,134,56,49,94,232,249,211,205,230,155,235,40,26,88,37,74,34,158,11,120,39,146,78,210,170,82,20,12,159,17,140,65,113,57,150,57,64,128,40,161,165,122,249,126,242,142,243,41,45,15,168,182,124,29,157,172,64,67,95,21,165,243,201,139,150,98,73,154,148,53,176,174,243,23,159,157,172,137,123,19,74,141,210,56,212,202,103,210,228,205,173,146,73,183,147,90,255,36,98,78,101,187,41,112,151,222,202,213,173,234,217,151,159,90,113,254,64,189,109,38,206,253,49,166,155,185,76,110,236,124,244,59,188,63,182,201,37,198,141,111,193,73,8,217,203,116,218,208,133,109,71,18,50,240,203,63,146,95,2,133,127,109,186,46,236,4,112,207,
139,235,207,198,236,255,64,221,255,47,108,76,204,118,97,219,207,199,157,147,190,72,215,55,199,81,124,128,194,146,236,23,198,231,99,166,204,185,38,130,131,191,122,20,227,212,25,216,37,205,37,191,157,159,148,143,24,125,244,221,199,175,61,229,238,221,238,218,65,204,70,250,27,170,215,41,117,218,121,61,39,144,86,193,57,133,224,174,78,72,134,94,49,244,161,246,90,234,6,192,227,144,123,196,35,18,163,2,12,123,248,251,255,134,11,140,31,10,220,65,28,40,240,196,203,44,252,218,88,132,8,146,165,211,42,54,170,208,149,58,83,137,211,2,102,218,26,33,63,189,160,53,101,86,17,202,18,80,176,65,120,55,69,27,70,10,183,245,46,3,172,49,185,193,104,142,25,33,199,157,194,59,95,155,187,234,177,245,134,47,186,79,82,177,67,247,181,54,211,235,250,20,16,101,27,78,229,83,5,23,103,154,81,3,112,58,231,160,116,198,147,208,0,54,101,114,160,57,99,42,64,190,82,21,102,174,117,80,170,159,252,249,187,86,181,86,82,223,174,26,22,96,178,187,219,194,
29,8,41,55,9,219,107,78,124,120,232,111,221,201,236,97,246,60,177,135,163,6,151,211,65,162,247,24,250,170,245,132,211,78,119,212,51,236,174,174,101,129,221,74,88,67,48,82,213,25,21,178,107,163,56,82,12,120,200,243,62,85,108,177,144,21,95,153,183,44,103,18,190,234,123,230,64,2,50,94,97,50,157,174,39,216,60,45,166,119,2,40,47,221,137,200,213,91,18,33,252,254,9,94,81,80,104,10,67,42,245,240,164,155,212,216,94,8,103,200,240,99,134,9,80,83,219,85,68,47,249,77,144,129,45,238,21,5,114,115,28,93,118,240,215,143,186,165,95,162,78,134,62,77,220,199,138,191,146,176,83,160,110,92,161,121,152,0,235,56,102,116,69,64,10,214,43,172,200,104,243,122,50,229,95,202,231,98,30,80,47,11,192,91,6,9,48,111,17,95,184,254,144,128,181,226,41,48,176,237,15,114,236,147,41,129,214,158,176,147,31,175,32,181,224,60,108,102,110,109,252,108,247,61,132,135,103,167,121,144,71,111,38,132,42,113,111,126,137,122,117,29,100,6,91,28,
204,123,9,29,37,79,118,34,211,130,29,95,186,103,67,210,98,167,27,71,23,195,113,10,55,179,84,160,198,57,155,67,101,135,209,101,22,37,148,93,75,183,137,99,37,16,3,1,194,101,201,250,9,190,193,97,68,186,19,171,147,66,237,135,221,133,243,161,196,39,248,220,189,108,177,147,98,137,79,15,9,74,60,98,178,46,12,175,108,60,242,64,75,9,123,55,103,248,129,31,234,251,42,172,66,111,58,188,58,142,217,170,233,155,28,239,175,141,86,248,111,228,166,219,229,64,207,217,138,26,56,102,178,183,2,225,66,135,93,105,35,240,154,46,167,54,163,219,195,188,195,146,108,60,251,111,196,251,239,65,184,177,8,186,255,81,53,206,195,112,188,206,234,238,126,131,16,219,205,140,143,41,235,220,63,201,237,122,143,186,114,167,23,237,189,144,8,5,93,20,89,162,80,196,174,172,55,155,39,193,100,19,185,139,186,49,246,230,211,103,78,69,29,223,248,184,70,49,195,73,199,6,54,244,93,74,46,254,58,152,77,37,7,45,8,176,243,151,103,95,184,187,153,119,59,48,
212,183,95,121,79,50,158,140,151,110,46,123,116,17,165,227,12,225,64,221,144,170,137,121,239,66,180,247,87,247,211,217,97,169,6,57,200,70,185,84,181,102,226,106,53,11,113,218,189,220,156,67,51,247,69,88,174,33,115,11,123,139,61,106,66,78,244,199,6,183,244,77,201,223,107,226,87,117,103,203,95,173,93,55,34,175,141,179,121,228,55,36,214,233,226,190,33,66,250,97,74,30,110,70,207,98,95,23,95,130,193,188,98,30,23,77,104,129,129,3,83,25,193,155,116,55,222,238,83,124,85,67,78,240,23,19,14,164,118,100,229,43,210,93,109,127,142,121,27,110,18,174,183,123,237,159,10,96,117,242,211,70,16,242,5,134,43,158,61,23,65,80,77,121,180,243,71,3,22,218,159,147,152,199,112,13,204,248,134,20,143,199,214,182,168,77,223,221,11,255,83,97,111,35,191,176,203,78,114,214,114,18,235,185,37,80,178,171,162,138,168,44,230,199,72,250,221,223,159,228,175,172,97,104,12,105,205,151,60,175,164,212,227,122,68,81,166,99,114,184,143,55,232,18,238,59,
243,89,151,160,150,135,21,56,137,130,210,61,244,122,218,182,238,145,200,159,108,213,13,15,31,20,115,80,202,228,68,207,105,42,174,123,71,220,107,26,148,13,125,20,167,130,135,131,85,181,104,182,227,211,229,10,253,250,195,12,30,231,67,124,27,74,143,218,91,36,127,60,127,136,207,19,22,104,221,116,178,60,125,54,254,113,146,134,250,74,205,156,175,22,199,184,228,172,126,18,98,213,53,227,82,75,200,36,222,85,151,117,135,96,158,40,28,140,174,159,182,152,128,248,150,191,233,170,63,112,72,93,249,65,152,239,70,43,76,88,214,172,133,203,198,162,171,163,23,128,118,76,207,45,135,185,130,14,207,229,215,184,238,26,45,66,145,89,127,214,108,252,116,252,205,7,92,250,120,250,234,89,27,151,138,93,156,202,74,126,137,30,79,65,141,228,60,73,252,184,222,61,110,190,218,152,83,240,18,206,67,74,177,229,124,87,155,83,5,249,35,136,46,102,191,31,89,22,109,139,134,168,126,83,35,149,234,48,201,226,223,168,45,216,100,181,82,114,17,85,56,195,90,166,16,2,
36,150,27,199,152,83,56,255,160,70,84,222,10,254,35,143,163,36,110,239,42,44,111,213,108,75,163,36,225,165,174,226,124,130,158,242,205,47,4,11,49,176,224,187,182,183,10,102,162,38,134,144,16,94,53,229,130,8,214,54,171,244,55,135,249,89,91,11,216,56,188,240,251,95,58,124,175,245,83,161,123,119,178,96,156,237,226,24,89,161,237,243,228,230,91,206,229,6,19,225,234,28,128,58,225,116,141,74,237,3,197,244,93,157,251,156,136,247,66,120,21,57,112,208,61,87,236,71,101,223,76,219,33,149,254,161,110,65,155,119,13,196,217,13,106,189,250,166,170,98,142,79,162,73,103,24,190,148,19,136,18,13,29,229,240,114,180,65,239,233,51,225,240,237,21,17,103,218,252,119,3,151,156,162,6,122,125,158,5,71,8,210,60,71,236,28,24,133,142,35,115,200,60,184,62,66,168,141,234,141,86,135,241,153,134,64,48,173,251,36,192,192,143,182,98,247,127,213,71,56,253,251,254,187,127,59,240,247,180,157,95,223,224,63,115,250,149,245,216,255,73,148,250,248,100,100,
248,175,32,26,187,158,254,250,38,235,127,48,196,182,227,221,207,109,57,254,86,253,10,149,124,190,157,57,195,252,220,158,238,129,18,155,233,125,17,62,113,242,62,98,173,129,151,102,57,85,34,92,179,40,66,201,118,93,198,235,183,24,187,202,2,68,170,244,245,145,108,17,50,219,6,219,34,21,134,239,195,63,209,237,252,156,36,247,117,168,224,210,113,235,192,176,101,190,175,216,169,178,57,182,147,57,24,4,186,87,156,90,248,128,214,9,175,254,5,46,42,247,32,31,126,196,130,225,19,72,236,238,147,184,171,1,234,152,221,112,43,51,167,128,146,174,76,89,136,24,123,79,10,142,2,149,15,114,35,160,54,47,11,153,91,30,228,165,193,135,242,8,36,95,236,47,150,104,14,203,177,97,22,150,18,173,195,104,106,45,99,177,148,190,185,235,113,232,136,136,41,68,28,130,98,84,113,211,13,59,96,214,247,28,43,124,85,13,232,171,123,166,12,175,113,69,253,102,9,8,119,217,58,220,82,181,21,160,24,129,54,76,83,243,206,45,147,188,37,4,109,90,30,133,55,106,
90,63,108,111,101,183,27,15,47,177,145,35,36,46,41,41,222,252,137,240,86,110,150,32,72,33,211,75,172,233,190,99,67,127,30,117,230,118,95,41,226,55,6,75,232,31,189,158,136,45,32,104,46,243,55,72,5,171,60,50,135,47,171,201,182,104,47,161,216,170,98,13,162,77,139,8,123,217,6,88,134,77,91,254,249,254,123,166,130,26,151,54,238,66,120,188,138,80,186,247,30,122,234,189,79,241,120,181,85,38,60,216,49,145,62,98,215,139,25,202,223,46,224,148,40,103,139,88,105,227,219,43,49,61,187,112,100,150,215,183,24,149,29,187,217,245,163,96,248,49,221,143,99,126,171,196,110,74,62,254,210,75,48,216,113,79,148,63,164,207,202,248,222,119,63,192,160,67,221,43,114,238,252,248,134,79,105,19,219,225,192,198,10,111,158,10,2,88,125,243,122,33,235,38,142,177,197,186,97,55,233,26,54,47,33,163,46,235,73,204,100,187,28,8,252,188,140,120,28,6,45,198,74,252,249,237,87,227,234,249,22,81,100,224,247,0,4,37,169,211,196,34,15,250,8,195,
104,21,54,92,232,249,57,214,156,231,87,166,28,195,222,200,45,104,60,153,234,62,122,235,155,48,177,45,43,165,5,19,140,240,66,47,105,58,131,181,49,219,191,144,171,193,7,199,170,163,14,135,187,60,9,207,87,105,96,216,170,252,205,184,147,142,8,248,197,236,146,63,199,92,204,170,22,25,224,101,8,38,80,175,224,116,252,235,61,140,87,152,134,112,180,32,98,223,19,104,117,38,104,84,194,181,192,222,236,11,235,202,184,4,53,42,213,54,111,117,75,2,149,212,194,90,44,151,203,1,154,49,38,39,135,51,44,75,86,198,48,24,197,24,148,250,175,174,121,230,108,60,236,5,3,211,166,238,54,190,175,14,32,211,218,208,150,119,165,243,96,19,248,204,111,211,200,253,222,99,74,59,116,78,222,219,184,199,232,79,29,41,114,11,189,42,67,114,12,25,234,90,191,176,118,121,74,65,117,59,217,121,71,27,82,96,13,107,131,23,62,240,73,152,75,233,67,110,51,163,233,82,169,251,192,92,84,185,35,28,226,232,65,240,232,159,240,204,79,11,197,204,147,121,171,210,
13,107,32,132,148,189,70,15,126,130,207,173,156,50,183,167,160,235,194,135,80,183,184,161,103,137,60,145,193,43,223,192,238,166,205,108,54,92,129,173,3,77,110,185,6,15,173,43,34,151,73,16,209,69,199,150,43,109,128,183,216,161,226,120,90,62,73,88,83,210,109,134,32,107,20,77,168,115,9,181,246,34,11,181,164,130,205,17,116,49,109,12,234,59,216,199,120,238,49,170,136,9,56,12,96,48,96,222,63,38,29,202,56,72,209,117,146,173,234,248,37,165,206,157,64,138,26,29,1,188,218,23,115,198,211,132,49,234,175,105,178,104,238,200,197,176,114,36,227,19,255,142,49,24,176,84,178,184,34,183,165,51,167,130,141,176,133,120,144,48,218,3,137,112,212,155,60,73,33,191,80,173,227,18,207,249,3,70,47,168,79,195,76,13,201,42,135,241,224,129,244,161,77,185,200,24,228,45,202,133,240,164,18,2,114,180,154,47,242,76,78,19,204,191,21,172,116,233,33,158,254,216,183,62,153,109,85,182,26,248,247,208,79,66,141,250,63,167,104,70,117,65,173,242,80,255,
159,38,143,253,15,66,210,174,250,203,86,171,255,247,182,186,151,41,29,7,171,177,30,173,173,171,238,150,22,79,231,166,56,143,81,21,169,240,23,54,147,111,43,183,140,199,145,101,172,92,70,250,53,94,126,91,101,165,252,113,117,40,174,129,23,54,111,99,51,216,222,88,12,182,9,58,46,136,251,23,16,139,135,236,197,141,83,125,134,135,221,233,253,1,238,39,60,177,94,182,33,136,67,5,123,215,130,202,89,56,69,60,112,31,1,246,74,156,62,130,69,17,38,233,109,187,1,228,153,100,251,161,228,31,180,186,177,99,218,197,59,174,185,31,107,139,113,98,15,68,233,118,220,36,78,218,206,159,209,72,124,165,255,4,97,163,6,143,132,217,47,141,203,125,249,167,135,68,207,37,239,5,222,18,204,227,243,115,72,73,208,162,155,173,213,215,154,138,116,15,194,32,137,227,183,49,10,113,132,23,16,38,247,201,177,101,130,23,24,244,7,249,76,104,67,55,72,133,197,38,53,253,94,105,199,247,19,82,184,201,193,69,116,180,154,240,183,212,61,233,217,44,136,248,74,49,
22,69,63,91,90,181,62,255,116,206,54,185,90,211,251,3,61,151,18,80,60,4,143,90,242,172,250,20,43,143,32,61,110,162,186,157,216,234,233,178,40,168,132,21,198,232,54,126,223,177,50,75,181,119,123,148,217,99,134,91,66,117,130,155,94,179,29,198,2,149,197,32,105,236,135,11,89,231,225,82,62,230,128,37,7,99,238,158,36,178,229,115,35,5,100,237,42,157,37,92,79,22,54,96,84,12,45,51,219,36,210,235,96,146,83,106,180,227,123,224,115,87,122,150,110,98,164,150,7,105,45,11,6,239,124,233,178,62,46,60,238,167,126,184,242,176,143,224,201,235,172,87,122,177,90,204,236,194,174,102,20,16,34,254,244,42,19,65,188,144,170,99,191,234,219,249,90,94,125,29,46,238,170,120,112,248,200,5,178,79,177,1,237,197,3,101,98,5,221,99,72,82,9,239,122,241,90,147,146,42,224,113,244,218,142,29,213,49,185,136,162,116,160,246,93,220,119,211,186,128,135,88,61,239,19,62,10,93,85,12,236,107,76,237,56,78,50,106,235,98,246,56,190,4,200,38,
195,76,248,108,124,61,237,250,68,110,39,129,0,78,95,61,39,36,79,130,142,2,234,201,237,203,158,109,157,52,57,181,149,218,161,147,43,159,135,177,150,207,83,85,64,102,87,181,205,95,207,64,25,143,31,74,211,42,37,47,120,211,146,98,106,171,167,9,67,3,145,244,243,94,121,158,114,226,212,54,22,98,193,15,27,164,234,140,112,79,190,227,152,38,44,71,176,35,147,53,219,240,206,91,207,79,104,14,184,200,150,6,174,141,192,81,174,67,229,4,39,182,1,235,15,190,180,183,95,61,230,216,9,218,17,38,42,57,198,155,178,220,63,122,21,219,58,118,237,245,234,247,143,143,189,133,196,99,142,235,177,120,13,183,55,2,92,5,194,104,124,80,39,21,21,129,82,100,100,131,127,222,145,188,157,55,47,200,244,126,128,154,119,222,224,142,50,159,48,182,240,134,38,62,38,171,167,106,241,28,82,160,4,103,120,248,58,50,181,83,241,133,44,16,1,120,156,64,133,1,103,128,207,196,188,36,51,202,173,9,9,84,94,134,196,219,6,196,57,32,32,204,181,178,32,246,
231,205,1,174,186,12,157,0,165,247,28,56,143,113,35,151,10,196,54,161,95,100,4,168,222,52,160,156,108,123,156,201,230,226,238,208,235,100,49,4,22,182,222,150,81,234,196,191,146,39,76,108,241,35,182,118,72,2,158,186,10,115,194,97,239,123,112,130,133,87,10,210,181,35,208,110,66,110,36,37,130,109,110,121,134,7,137,223,88,77,147,240,124,15,158,91,244,134,133,67,26,188,201,1,238,42,161,133,168,179,77,56,73,163,7,220,49,0,80,157,40,124,115,61,217,137,151,129,146,48,98,87,246,98,78,86,82,145,86,7,117,68,161,25,73,130,172,131,212,25,136,43,159,66,12,163,137,161,173,43,42,252,211,158,108,240,238,190,207,43,92,243,113,177,55,227,67,246,182,244,69,17,207,223,176,52,101,78,100,39,2,101,201,209,7,158,3,206,164,191,39,210,27,162,89,245,174,218,221,94,34,204,41,100,199,119,230,187,232,237,45,174,97,175,115,245,176,26,181,206,233,224,74,102,255,1,42,107,136,78,176,15,121,203,126,133,181,46,43,128,81,190,252,100,46,3,
207,82,112,117,107,57,215,19,6,156,111,174,49,127,112,152,227,156,103,220,16,230,218,25,82,103,178,161,3,116,42,112,21,242,241,42,24,253,244,27,99,59,22,147,240,47,191,144,148,205,176,254,255,228,21,150,46,60,218,149,30,145,165,191,94,132,115,177,5,187,7,199,48,199,75,42,186,226,229,164,40,251,91,38,29,248,243,252,62,203,2,86,191,162,236,248,219,33,46,55,61,138,178,248,118,205,220,219,245,243,182,62,254,33,8,170,139,31,184,65,16,12,151,27,115,137,219,111,231,52,223,42,110,17,239,115,76,21,242,149,227,224,210,64,200,223,250,200,235,50,251,10,150,3,191,217,7,82,159,78,79,69,172,70,188,17,27,85,187,253,169,60,151,239,254,158,93,238,143,253,111,28,222,161,30,88,254,94,46,14,120,86,96,58,40,87,181,40,246,147,225,119,104,132,227,5,251,96,122,90,114,243,156,58,212,243,223,119,197,176,111,156,226,35,16,242,218,99,101,18,93,142,45,165,98,17,52,184,105,111,125,9,101,149,198,24,2,254,60,120,136,13,237,167,174,106,
233,24,238,224,181,23,210,121,154,140,152,171,170,139,185,120,42,239,149,254,43,95,63,109,197,140,126,252,217,54,117,95,186,111,180,242,27,162,222,17,220,255,196,238,93,186,204,124,238,3,225,243,62,13,27,202,120,247,61,226,229,56,72,39,83,227,46,168,223,107,99,9,90,54,247,153,218,42,53,213,234,217,139,235,147,110,62,56,219,78,19,137,166,29,1,122,121,17,55,44,192,49,178,112,73,203,254,28,191,239,210,252,228,62,90,1,49,255,44,126,137,34,228,20,141,163,44,28,51,119,114,127,47,191,95,59,71,63,62,36,143,114,81,20,89,111,169,219,52,104,183,140,132,167,152,181,216,163,144,189,148,106,217,133,153,167,254,150,96,197,54,155,227,37,18,210,215,40,67,126,104,9,103,62,147,227,196,229,50,65,121,231,241,26,156,130,148,158,128,82,38,19,33,255,1,238,192,38,167,115,40,113,42,138,64,58,82,195,193,236,75,33,55,151,107,159,120,227,177,151,95,38,116,7,171,160,54,81,62,207,41,108,229,254,140,55,222,97,97,240,145,50,204,41,163,216,
113,152,123,14,216,83,91,249,222,45,106,184,247,32,219,56,30,23,223,67,20,33,193,75,184,88,178,138,104,58,128,42,78,165,152,162,145,227,160,13,28,253,224,28,29,81,3,25,72,225,67,52,238,233,112,249,218,54,55,53,149,240,98,237,137,176,211,147,77,45,120,144,228,119,184,83,71,195,188,26,57,76,184,201,246,64,146,0,219,55,138,78,69,50,160,46,48,190,236,195,120,26,92,99,224,205,204,166,21,199,61,37,207,125,30,253,175,54,236,187,167,244,235,47,148,143,129,248,91,53,201,83,4,56,233,47,106,77,248,35,20,2,113,155,38,94,123,229,92,71,244,172,155,159,39,161,94,213,227,189,240,209,99,22,125,111,95,184,178,172,112,227,48,183,1,165,8,115,78,219,40,46,235,23,171,242,119,216,59,214,169,177,34,210,147,160,104,80,159,247,21,160,47,0,78,131,67,190,248,125,199,132,141,219,99,101,99,129,32,89,0,92,162,83,51,125,131,158,60,83,230,52,23,213,247,1,135,147,20,131,229,220,4,162,138,80,231,212,199,120,209,80,102,220,142,16,
191,136,25,111,241,132,222,204,209,118,174,237,181,235,22,249,59,69,20,190,80,133,107,221,74,121,69,226,109,233,132,161,157,223,108,180,241,67,211,53,78,35,172,187,217,231,183,198,184,179,175,87,205,232,219,232,92,152,99,227,223,198,208,216,24,219,110,221,209,79,192,69,156,14,252,120,154,110,6,202,108,22,160,43,8,16,16,253,179,25,38,175,225,185,101,72,251,106,107,121,54,62,171,17,74,175,75,206,199,25,92,14,33,206,79,145,165,249,199,91,87,159,207,50,122,62,31,110,165,241,218,56,41,254,197,189,177,110,18,62,3,191,190,94,226,242,234,186,238,16,31,35,223,188,124,215,128,179,100,149,152,189,186,28,244,236,123,221,161,143,1,165,158,222,50,89,130,133,45,11,7,203,226,167,29,63,154,91,213,221,179,177,98,247,90,86,175,74,101,10,197,213,53,235,236,108,135,252,34,230,93,165,5,197,99,15,239,55,215,76,210,241,232,155,110,32,136,42,111,170,102,178,152,177,198,188,204,151,200,153,218,165,229,100,163,39,98,30,202,84,43,239,194,71,16,178,
252,211,253,110,153,72,201,61,214,3,15,204,215,188,210,145,147,237,127,139,114,41,224,210,195,0,73,200,199,199,12,233,224,193,161,56,252,246,187,230,52,148,54,116,171,205,115,50,131,168,156,250,176,250,41,78,131,106,244,56,212,220,207,205,221,168,9,64,118,57,226,81,185,83,119,145,98,42,74,15,195,153,217,47,181,246,196,196,242,245,0,185,49,27,67,248,214,94,247,13,0,82,28,140,239,30,142,29,189,8,200,111,22,73,28,118,227,126,187,191,226,231,254,37,70,15,63,222,197,110,210,213,241,25,159,250,199,33,221,158,11,111,7,135,251,154,222,14,205,62,103,221,177,56,25,10,133,175,109,0,202,75,110,181,140,150,13,233,224,106,34,255,136,22,129,29,15,24,117,161,223,29,35,86,94,195,1,200,228,98,236,82,202,136,126,239,97,251,7,225,226,25,48,136,237,183,95,233,79,174,80,98,255,121,20,27,191,108,27,227,116,78,124,151,182,46,105,37,247,38,249,148,205,220,217,64,205,178,46,244,118,47,177,157,31,23,92,158,90,255,21,45,230,49,185,188,
239,217,55,88,210,118,150,220,187,241,14,70,105,140,83,228,234,10,10,193,237,178,191,60,41,160,248,243,142,199,211,133,210,189,96,160,104,180,90,106,35,40,51,255,121,101,157,151,121,160,36,158,137,65,254,22,47,205,112,72,23,233,188,87,171,100,96,198,155,116,201,212,201,61,24,247,39,243,40,166,99,118,40,155,67,38,93,131,167,107,187,249,57,201,176,91,247,29,203,187,91,111,251,239,121,228,136,203,180,207,3,65,237,70,245,42,252,148,70,109,192,183,197,11,197,192,227,164,120,171,151,28,178,190,188,177,198,219,208,57,81,194,38,252,80,92,204,132,159,10,219,34,102,109,176,113,249,11,24,7,42,3,168,58,36,162,47,94,123,255,126,28,32,19,130,80,46,76,200,86,51,164,45,112,106,61,156,130,95,211,177,253,114,34,79,219,209,225,139,236,101,175,85,212,134,231,202,121,171,212,198,136,149,70,147,244,151,89,236,155,97,255,174,99,181,126,74,234,115,27,85,239,176,217,219,251,117,26,162,100,117,215,202,114,153,46,55,190,120,45,110,204,30,84,207,116,
59,213,247,26,42,240,121,168,94,82,118,56,50,142,136,15,148,87,12,106,104,191,181,122,195,221,212,14,39,192,155,137,95,41,48,227,120,237,254,142,220,98,124,75,230,49,51,93,218,156,246,163,158,170,67,220,140,66,219,142,151,254,209,167,135,99,84,135,95,215,44,60,89,60,46,214,108,55,49,182,234,107,46,94,239,145,48,61,169,213,41,15,104,121,56,221,85,95,167,187,92,232,98,190,123,177,152,251,189,243,2,231,196,238,250,248,45,114,90,64,162,168,114,213,243,152,171,101,160,167,81,247,172,107,171,125,8,175,203,47,41,8,211,137,235,122,8,191,171,194,27,141,92,39,27,243,12,216,45,103,9,229,110,41,119,255,146,234,253,240,17,72,191,27,123,78,147,226,126,162,20,231,193,37,135,145,146,39,216,244,164,37,120,195,141,172,135,92,116,115,9,227,241,223,170,69,244,25,152,248,219,225,27,246,33,32,189,105,64,112,231,57,166,180,219,77,235,230,230,112,64,216,139,253,166,96,251,161,87,71,106,93,168,114,156,152,209,8,90,113,107,92,124,116,239,5,
124,189,110,94,132,245,173,102,163,182,221,206,225,254,6,157,131,241,16,24,234,79,23,86,103,134,107,254,208,27,174,220,119,88,114,116,10,231,166,27,166,162,104,248,134,212,227,183,36,228,170,165,233,183,128,226,10,61,195,129,161,101,29,213,251,166,190,203,99,42,14,162,26,4,205,120,220,27,149,151,190,87,93,186,63,26,71,180,230,78,156,120,57,28,121,192,125,147,209,66,200,205,209,192,102,61,172,132,130,13,2,216,29,8,96,248,236,105,51,101,112,76,121,124,95,120,73,123,155,150,238,180,194,86,114,158,228,118,18,27,239,205,34,56,115,211,249,115,137,125,19,97,190,189,125,190,219,232,189,171,18,159,205,3,178,5,204,194,210,230,164,146,131,229,247,55,91,174,211,94,167,55,207,93,160,39,104,189,63,255,166,0,121,251,225,144,55,136,153,208,207,110,129,113,206,127,117,73,240,161,60,37,249,20,192,225,200,196,48,79,30,206,13,70,79,80,179,6,100,236,87,53,248,68,2,40,130,1,207,123,161,218,94,135,123,86,223,139,69,138,109,183,97,34,137,109,
202,111,220,158,142,159,73,113,130,236,117,105,101,241,122,161,98,148,129,10,4,142,238,73,43,176,223,114,204,67,11,155,61,156,76,205,176,121,254,57,232,128,139,100,203,120,109,220,231,91,193,215,194,148,142,30,222,97,248,64,122,122,85,147,98,78,152,66,103,243,178,73,39,247,101,45,195,88,184,215,0,125,30,185,96,239,60,223,91,221,199,153,192,210,11,54,148,128,141,49,159,194,198,19,1,118,118,189,100,150,157,236,110,109,162,187,197,76,43,182,203,184,247,161,207,113,71,238,50,218,252,188,13,250,199,160,119,221,217,251,88,154,146,50,111,205,244,29,47,108,219,244,197,181,187,38,228,87,41,111,209,226,42,191,165,52,163,74,138,31,103,79,222,94,90,15,251,248,226,23,212,160,83,78,32,151,100,241,166,222,176,208,245,208,118,240,237,111,54,37,42,211,195,118,29,172,35,255,221,216,130,130,50,248,178,63,157,148,241,28,215,16,73,145,0,24,0,191,133,138,116,129,3,12,238,156,9,60,52,217,141,46,231,149,131,3,201,30,148,39,148,149,55,245,25,195,
153,42,134,121,212,241,100,68,247,154,49,53,117,39,135,237,69,186,74,201,62,106,107,3,59,169,235,50,66,84,60,117,41,81,166,194,107,164,220,34,58,243,44,33,148,78,163,1,198,119,211,24,81,226,241,105,129,166,82,231,84,24,110,19,74,88,143,98,3,50,116,105,62,144,37,125,190,12,176,177,92,91,67,41,52,82,54,232,245,175,233,216,238,70,14,165,122,16,124,198,131,250,77,247,150,46,13,203,59,136,111,80,40,175,143,9,251,106,218,192,82,88,247,182,184,126,203,30,178,168,159,54,210,169,100,226,151,24,75,118,114,108,59,68,110,40,154,202,238,104,72,200,153,60,162,230,230,161,57,8,225,196,30,109,118,146,128,46,8,135,135,59,10,215,64,169,161,241,86,37,105,93,235,41,103,208,131,221,35,133,114,188,171,8,182,189,30,194,175,126,179,123,40,37,233,112,128,141,201,171,147,33,87,4,190,237,12,8,202,100,203,186,252,89,132,61,96,136,59,48,212,237,67,19,62,230,215,106,219,51,155,203,253,56,39,194,132,98,254,123,216,39,139,252,137,15,
184,27,123,2,232,235,171,181,78,235,104,118,90,163,183,152,228,99,143,246,198,203,154,48,233,232,248,245,248,131,157,144,109,105,41,118,235,111,96,176,45,65,175,60,109,243,98,24,51,240,126,206,6,197,145,61,41,127,142,207,131,195,248,34,171,183,20,108,188,236,65,63,4,37,100,117,121,249,194,86,247,121,112,190,239,127,28,230,241,104,237,27,228,56,165,123,206,255,219,95,115,210,134,164,107,234,226,207,202,181,85,93,253,69,240,254,21,223,73,57,222,95,123,232,145,254,31,67,183,254,198,110,232,206,168,75,126,9,85,211,46,136,179,95,63,225,208,5,213,95,153,83,127,209,218,195,156,36,127,98,74,203,191,3,184,233,95,255,91,6,146,146,196,34,73,131,104,253,7,25,171,63,84,241,63,255,61,30,244,43,40,40,126,3,66,255,86,102,93,23,127,175,252,88,172,255,248,19,6,62,12,191,136,193,223,72,83,63,252,35,10,250,127,229,99,253,103,212,160,252,95,254,113,44,178,166,255,207,255,40,179,174,171,187,254,79,224,97,87,15,244,105,255,99,81,169,
70,88,223,111,234,206,187,243,19,40,179,224,204,60,54,254,164,200,87,211,247,165,174,81,19,206,242,209,156,152,107,217,145,180,47,161,216,83,7,220,108,210,27,254,199,191,251,112,124,240,205,206,46,244,9,232,123,123,138,147,133,224,209,228,243,97,58,27,80,127,161,121,26,199,203,47,248,83,54,185,164,165,95,70,249,104,91,18,229,156,224,169,77,128,227,199,28,227,20,97,174,4,138,205,191,84,219,43,108,185,67,72,225,27,166,4,46,94,82,185,30,15,144,135,20,233,235,184,201,219,138,30,99,238,244,152,148,0,24,109,178,68,196,106,130,176,15,109,206,214,86,167,148,10,204,63,174,188,51,1,233,78,209,101,72,102,83,106,184,194,78,32,106,120,217,166,204,79,229,248,122,207,159,161,196,63,74,254,88,80,36,149,36,57,212,119,189,36,93,229,80,186,98,72,165,26,6,66,149,61,4,126,144,45,166,194,125,58,60,245,149,186,215,59,95,225,185,48,209,38,60,75,43,228,20,24,95,156,132,1,199,115,174,161,47,225,30,61,223,219,159,199,123,153,2,151,
15,13,245,49,2,214,204,74,92,77,252,58,51,237,52,56,191,67,83,51,53,124,208,52,112,145,66,33,166,168,21,110,35,91,78,114,252,146,61,162,55,25,180,99,139,56,158,204,193,184,98,124,252,31,255,110,110,215,237,202,142,169,42,172,212,124,205,63,37,210,235,46,219,234,106,160,2,76,168,244,253,196,252,175,88,216,250,127,120,246,198,199,8,210,235,114,60,184,10,226,161,163,63,231,121,247,38,154,83,97,134,41,222,113,162,155,247,88,10,67,39,238,130,190,90,201,50,37,243,32,235,66,53,178,195,245,34,176,201,50,94,51,15,122,23,190,15,43,51,65,56,127,11,83,7,3,14,236,133,97,232,194,183,142,17,122,113,243,20,216,125,24,238,6,88,176,58,135,167,20,70,210,74,203,233,182,46,224,103,175,205,145,198,207,35,214,57,115,162,186,213,197,74,184,253,242,178,122,104,179,37,22,68,115,200,154,239,45,100,119,33,53,44,16,153,148,243,193,227,36,96,168,77,2,11,53,72,235,173,228,233,71,198,203,47,152,243,114,0,115,79,14,225,70,209,43,
217,66,123,160,242,30,5,3,40,96,241,239,87,194,249,179,74,14,194,128,82,77,227,151,107,160,129,31,210,156,32,38,104,56,65,115,250,127,113,143,149,31,184,144,247,56,73,11,70,170,173,119,232,178,185,29,218,82,103,250,40,128,46,245,122,168,2,54,185,67,100,79,62,166,31,111,140,116,250,241,43,27,99,29,246,0,87,60,253,200,249,254,79,217,9,200,121,134,36,128,239,246,146,96,255,45,3,148,20,13,89,244,255,189,4,248,249,61,232,175,243,97,231,108,95,200,82,127,10,132,74,43,14,251,247,183,125,73,147,19,116,79,21,139,193,73,102,150,25,57,66,178,124,62,121,174,234,154,166,93,95,2,73,227,175,12,151,107,22,216,46,140,199,239,53,170,176,208,179,214,9,161,43,7,155,165,47,222,77,100,18,196,172,31,150,48,154,26,95,68,169,144,228,219,163,225,249,91,207,63,46,158,55,113,123,53,54,151,180,163,80,88,72,247,78,31,4,45,132,118,182,59,91,75,67,177,134,12,78,187,47,210,202,118,194,169,60,191,159,161,185,238,62,95,38,124,
26,199,207,110,171,95,193,94,29,236,85,25,79,22,4,251,215,65,149,188,9,90,66,26,60,84,136,216,189,82,95,175,6,190,78,146,154,221,184,49,57,59,20,243,46,117,116,77,62,157,45,167,253,83,179,109,182,130,183,231,73,253,168,84,76,100,125,167,124,63,83,79,207,223,221,88,13,106,126,1,111,100,167,100,246,116,68,6,216,49,123,53,215,71,182,179,193,142,215,89,255,73,141,64,116,181,113,44,25,168,111,233,115,11,106,68,220,194,97,61,188,67,157,212,183,9,197,26,186,10,33,89,123,41,177,52,32,65,15,137,41,72,134,21,237,222,225,11,240,236,112,191,86,146,133,73,225,117,31,133,165,42,52,240,211,253,55,79,213,186,171,124,154,114,43,63,153,159,255,157,182,247,216,121,21,218,210,69,95,165,154,247,138,198,36,135,38,54,38,103,48,6,122,228,156,51,79,127,249,119,133,91,251,72,71,58,170,170,163,165,95,11,99,27,195,152,99,124,129,48,7,181,124,163,208,68,243,55,52,102,19,43,146,88,108,202,121,222,28,193,43,16,161,156,0,151,
143,17,159,238,241,168,179,178,119,80,250,189,153,9,183,194,4,195,95,29,165,119,229,233,1,77,76,60,218,96,233,179,90,205,17,16,167,56,237,229,161,116,210,15,199,119,104,191,47,113,187,32,129,253,5,206,12,250,125,247,32,84,125,94,188,20,29,245,9,235,197,113,19,70,45,213,171,168,20,254,89,17,124,184,55,175,110,111,160,178,67,164,141,249,149,191,15,67,120,155,35,5,152,173,101,191,218,155,137,117,51,245,69,246,195,113,239,253,220,96,141,158,128,64,89,39,60,63,21,163,49,3,64,9,75,166,13,32,32,246,207,221,213,253,85,130,159,155,59,192,149,244,207,178,99,174,14,151,93,217,131,232,85,26,1,17,62,194,221,113,7,224,124,138,52,166,189,180,166,243,141,128,76,204,94,255,45,15,13,77,75,130,32,192,207,176,46,161,25,182,222,226,223,156,236,85,84,12,253,255,5,188,180,206,247,223,44,18,172,251,130,0,212,19,95,214,160,190,108,65,202,88,24,175,245,98,241,44,103,84,89,247,104,190,112,251,143,62,158,255,185,167,231,127,97,25,
22,161,22,217,179,34,39,182,228,201,38,198,94,52,154,135,152,227,226,64,251,183,140,64,216,241,229,128,247,44,51,30,116,31,63,14,240,127,203,36,200,37,237,13,178,33,41,0,61,232,199,126,207,122,81,195,51,51,252,221,84,220,21,143,76,174,10,236,253,128,225,74,63,34,96,39,107,204,143,146,231,229,124,63,99,9,253,0,198,0,192,161,95,15,54,41,18,51,163,158,246,169,146,201,23,145,225,135,28,71,94,249,232,243,89,152,123,196,11,132,150,8,33,22,134,205,40,116,0,124,18,160,137,25,7,19,154,202,189,219,35,130,3,87,17,227,243,65,161,254,9,134,248,200,239,21,5,255,189,152,252,199,114,248,252,11,248,220,98,87,28,122,147,255,204,149,255,42,209,254,39,71,191,56,185,69,250,235,70,251,194,76,224,216,85,239,224,78,32,241,203,227,248,183,109,157,98,130,22,223,11,122,238,251,168,255,19,123,64,151,22,181,16,114,81,103,252,16,193,57,67,250,67,165,192,216,211,254,159,152,197,97,238,156,138,255,219,159,49,211,16,204,170,48,130,107,
174,255,137,237,158,101,0,198,20,200,73,144,3,34,167,61,168,57,1,9,84,91,125,8,143,88,255,143,89,239,241,181,148,73,180,6,98,197,20,122,2,207,219,247,88,100,188,14,98,150,28,137,40,10,34,192,57,147,255,11,227,253,99,187,226,62,252,103,198,123,182,155,49,255,202,120,20,12,145,135,103,30,217,63,70,241,63,216,238,127,124,12,195,214,142,7,235,224,62,46,214,204,40,64,164,173,185,230,168,161,126,184,244,97,33,67,35,154,30,178,232,223,195,53,124,137,193,116,249,122,189,255,158,191,252,124,100,205,218,135,17,255,50,164,146,137,226,132,173,45,174,101,25,68,55,151,163,116,224,172,61,102,169,207,72,203,171,27,41,57,99,107,233,130,197,178,109,171,114,243,144,189,140,161,173,112,19,84,196,37,170,151,65,143,197,108,130,254,182,68,101,128,145,223,67,114,49,75,216,98,71,222,80,127,39,162,34,209,232,47,71,122,126,161,139,23,187,246,31,41,228,181,163,230,139,178,251,4,184,164,77,15,105,177,93,202,82,24,94,7,108,252,141,48,72,183,
94,173,117,223,248,202,118,246,81,130,117,4,66,34,132,61,199,75,36,6,110,137,125,24,239,118,160,133,198,195,142,59,109,104,1,56,193,190,142,18,93,1,125,233,130,243,102,224,124,54,49,153,123,137,9,189,204,57,173,105,146,70,33,199,26,129,179,101,95,37,49,235,209,159,60,228,176,241,251,236,47,209,24,12,1,25,84,179,197,179,137,223,71,138,250,122,219,51,33,174,80,42,138,94,207,239,4,152,200,108,231,49,196,98,134,3,127,161,109,189,186,183,214,18,132,15,186,50,70,63,246,213,135,112,180,121,245,95,35,218,152,103,157,42,184,161,142,236,40,48,244,92,200,156,143,81,103,27,236,109,39,153,222,188,229,183,118,108,94,34,108,216,1,208,35,223,46,90,96,63,131,15,34,176,189,32,76,114,6,205,53,98,209,44,246,241,208,38,201,27,111,16,136,212,178,153,172,48,16,100,173,63,222,34,213,66,255,253,122,178,125,4,67,180,112,31,202,234,183,93,199,32,200,179,2,19,141,217,199,159,192,86,232,9,165,201,76,121,190,70,201,254,186,138,74,221,
208,53,120,37,60,207,242,105,118,237,193,105,125,16,45,138,24,62,58,100,235,3,75,161,64,63,139,161,5,35,239,92,249,125,238,176,79,227,130,29,205,60,10,146,135,255,225,23,89,29,171,145,147,120,134,99,10,167,15,55,17,150,152,192,88,97,250,206,40,29,203,215,95,82,94,63,78,194,138,153,39,94,141,134,121,91,217,113,14,247,17,151,153,151,245,246,35,140,123,249,147,20,0,126,161,182,94,26,250,93,113,6,162,111,57,192,168,58,231,54,230,54,10,41,126,52,236,113,15,111,131,129,142,186,239,149,130,239,250,200,236,123,2,103,23,64,101,208,76,107,22,131,250,242,26,194,226,49,17,60,44,73,82,96,253,123,203,195,247,173,89,254,49,3,238,252,183,94,38,255,206,155,255,243,117,87,175,201,182,20,220,199,38,24,243,161,133,65,75,225,33,124,229,106,41,253,234,150,10,247,202,123,141,81,205,202,83,103,127,88,162,252,240,203,32,50,57,169,211,62,180,103,60,40,97,226,165,158,119,110,237,176,9,187,222,43,71,176,239,3,130,0,10,0,96,176,
233,45,153,114,135,214,187,9,91,204,40,19,77,134,252,53,206,100,17,205,215,192,79,0,221,4,207,80,158,205,7,180,34,33,3,153,44,216,176,233,43,35,140,2,178,113,177,163,34,103,96,242,109,102,123,153,239,112,116,162,92,183,153,158,37,62,129,17,215,131,4,251,198,48,138,247,232,40,178,23,87,36,53,129,1,191,42,163,211,221,34,160,24,131,90,252,59,36,218,151,61,193,194,157,66,201,73,145,39,248,101,104,127,248,227,35,111,22,33,101,64,216,208,250,52,63,62,199,199,228,210,120,76,176,74,11,72,138,23,152,158,17,244,83,207,200,14,171,16,166,99,42,234,115,204,8,133,51,46,192,38,201,50,214,138,138,209,113,206,133,206,229,245,81,47,230,173,209,111,146,98,128,229,190,192,47,239,34,232,157,174,218,135,3,66,46,128,25,118,223,245,253,201,225,152,1,240,55,50,53,21,220,12,156,77,71,92,236,105,243,237,169,126,196,8,25,101,234,2,121,27,36,128,31,60,158,62,122,1,78,176,123,238,66,1,103,183,169,87,31,109,49,63,127,244,55,
64,20,90,238,30,96,31,225,199,2,64,43,150,56,218,158,178,200,27,82,128,65,116,242,15,218,105,245,216,81,188,147,77,136,186,222,140,11,173,59,111,60,5,97,198,57,153,49,187,251,205,1,13,223,48,67,101,93,25,13,175,200,132,8,88,167,119,23,198,64,1,87,233,242,211,73,104,99,254,122,213,97,82,142,154,73,229,122,235,81,205,28,172,30,42,121,237,40,155,91,0,45,25,204,58,112,48,234,59,160,58,98,39,152,172,221,41,15,218,183,113,140,65,186,163,50,48,169,47,13,151,235,242,172,29,79,232,32,16,187,142,53,83,219,25,57,138,145,201,4,84,165,174,88,175,222,191,77,76,58,224,228,199,126,40,105,64,181,160,153,150,199,95,70,62,4,173,117,102,66,206,180,79,196,248,254,161,156,3,214,247,205,120,88,70,247,249,142,209,59,183,205,132,53,129,1,252,22,209,4,117,33,174,207,119,113,204,7,238,179,38,40,32,26,196,190,139,76,229,38,65,4,243,61,12,202,44,52,57,232,32,247,166,164,55,174,62,35,102,210,207,10,140,124,51,59,
204,227,51,117,184,143,126,128,80,17,32,3,201,166,34,45,124,232,24,78,129,152,242,16,151,244,164,240,89,114,139,201,205,132,87,204,20,131,104,166,187,115,46,229,97,149,106,105,66,253,60,235,115,144,250,85,223,63,220,75,187,168,136,9,24,64,189,96,33,0,227,181,7,131,127,3,48,248,102,65,45,59,164,18,161,4,128,67,48,82,106,135,241,136,101,249,235,137,157,197,232,212,183,48,17,198,80,98,122,68,56,38,119,170,238,1,106,62,231,74,152,58,246,116,3,234,142,203,69,200,124,158,50,186,31,65,245,232,132,44,229,128,6,96,247,223,177,227,143,23,155,119,126,136,135,149,199,222,63,30,15,99,224,127,73,179,98,206,178,229,95,79,138,253,151,209,98,95,147,116,121,88,250,141,216,247,41,222,184,6,71,192,53,4,204,121,169,58,171,119,85,79,202,76,87,223,30,38,86,252,28,140,21,102,191,56,250,197,142,238,65,245,21,97,168,252,199,36,216,66,249,236,110,248,46,91,123,156,237,23,26,3,159,128,122,50,125,216,49,157,221,34,163,240,3,54,
27,241,62,57,8,180,100,148,27,116,188,115,17,10,118,134,33,178,191,6,215,191,249,17,198,137,116,166,103,148,191,31,193,84,63,212,137,67,0,235,97,223,155,11,172,102,151,20,165,81,223,162,149,253,18,31,18,235,11,236,49,165,106,46,214,175,23,224,241,155,233,119,34,77,64,59,25,140,75,148,231,177,226,62,77,136,84,100,55,15,44,91,23,62,220,217,111,76,50,236,215,132,42,50,10,21,227,246,71,39,100,51,237,51,36,17,111,172,110,126,244,237,93,183,39,19,242,20,150,125,29,72,253,19,225,116,119,117,237,17,207,64,240,253,252,23,161,211,240,176,2,157,144,168,250,145,13,39,181,34,189,248,107,35,109,221,19,200,19,54,216,184,95,183,94,17,73,83,72,66,214,168,9,245,59,134,171,137,192,29,169,89,83,144,186,100,14,177,208,104,35,210,108,210,156,100,236,86,105,222,163,81,126,17,197,29,136,73,203,105,57,182,195,65,36,232,44,128,151,130,159,122,130,86,198,193,245,215,34,121,156,240,118,146,222,126,7,115,80,152,208,13,238,157,38,133,
193,92,21,150,218,167,187,210,247,192,176,207,10,60,71,69,170,45,186,216,34,152,168,158,2,242,21,177,39,203,173,24,244,125,224,2,106,242,155,192,129,142,187,154,247,2,237,60,93,38,229,66,200,54,84,168,130,124,188,235,46,84,160,106,209,8,102,18,146,209,138,71,118,239,50,242,188,2,251,3,217,167,30,189,241,108,52,67,245,88,160,19,197,229,113,143,84,98,7,162,202,17,221,51,38,1,182,192,75,6,5,54,144,1,213,174,241,62,92,235,203,81,17,248,93,67,30,64,103,159,92,139,90,203,175,175,105,83,58,75,160,196,74,219,21,44,250,32,255,72,96,208,153,88,1,238,162,34,175,7,116,240,194,28,92,225,164,63,121,226,118,150,74,39,163,222,1,15,73,174,251,195,44,234,151,202,92,88,16,188,157,201,124,162,188,2,242,248,21,101,125,44,40,0,214,251,16,128,80,195,53,112,196,197,161,88,96,154,251,73,185,196,9,102,14,189,210,69,252,82,158,101,179,57,67,159,28,227,79,229,148,19,244,100,60,44,47,229,65,106,181,7,121,223,98,223,
119,3,86,175,51,253,133,232,253,154,94,120,79,109,143,101,227,220,29,222,123,34,153,182,52,243,115,21,42,14,31,58,184,219,221,64,122,219,198,66,49,200,126,44,197,252,39,197,143,79,30,189,80,55,28,177,120,68,62,66,189,102,126,210,30,249,64,244,44,145,232,245,10,58,159,156,33,91,24,169,114,45,111,179,218,3,208,99,47,102,199,56,72,56,83,159,18,78,12,39,63,57,100,211,181,216,236,196,73,165,221,26,26,143,29,8,32,127,214,140,116,238,245,174,219,92,223,70,181,159,209,135,220,152,23,178,220,235,20,47,164,7,51,218,0,154,197,247,227,34,86,129,148,7,29,104,141,58,99,116,204,176,208,251,8,27,184,216,97,168,45,1,40,140,204,77,12,116,254,133,185,186,159,113,205,4,116,226,167,27,196,154,50,53,247,155,15,73,92,128,61,222,100,69,213,191,249,245,136,10,114,73,225,124,246,0,59,127,84,74,149,243,240,120,82,190,58,132,145,243,77,46,160,200,207,221,103,172,129,167,121,77,85,219,5,125,209,154,65,77,179,141,198,195,5,98,
43,64,25,34,72,190,139,125,153,205,32,252,67,65,228,221,73,41,140,176,172,157,54,215,28,11,168,18,165,25,92,137,114,164,147,192,123,79,49,16,23,16,118,238,94,236,254,122,220,92,150,168,12,160,61,140,249,212,223,230,77,167,14,136,168,231,206,103,50,170,157,30,58,80,243,208,252,4,74,14,41,222,173,66,159,167,94,105,127,219,188,27,99,112,224,57,212,56,245,33,9,77,192,132,186,175,242,104,149,232,215,214,36,12,167,43,210,161,80,206,238,208,12,57,98,159,183,183,255,236,36,37,98,235,66,16,79,96,15,28,201,246,60,78,75,184,58,48,96,129,212,78,72,232,54,211,160,10,0,180,154,210,158,119,194,33,234,106,176,6,188,58,96,200,241,133,161,13,172,89,95,231,102,243,96,249,89,5,17,42,91,224,142,208,13,125,213,191,211,189,213,96,35,218,197,75,46,212,128,66,87,244,151,177,220,143,155,213,254,249,143,19,8,27,10,252,161,223,30,180,103,231,184,90,231,104,190,254,123,96,159,198,101,252,216,106,238,49,26,216,14,181,143,179,129,57,
247,67,118,139,43,159,249,47,69,100,70,197,105,250,157,206,219,74,62,216,145,119,39,99,130,120,11,68,116,103,54,162,240,191,57,74,117,47,168,135,238,244,136,239,39,119,54,14,226,231,21,251,242,201,19,163,45,80,79,59,195,114,203,39,28,198,64,139,29,93,241,199,47,67,191,221,221,113,76,120,178,24,227,18,165,95,49,90,205,61,102,163,10,157,158,51,49,231,208,214,79,217,142,218,56,80,219,13,76,48,122,126,199,12,154,219,253,255,141,229,141,28,65,91,118,27,37,51,101,61,237,20,117,19,234,43,135,82,130,236,171,29,90,181,54,63,251,71,144,220,121,237,131,95,252,232,197,22,179,77,108,130,26,223,152,31,244,212,13,113,236,194,28,216,134,99,26,19,68,229,6,186,127,127,249,132,221,231,70,56,0,139,195,191,73,60,141,22,228,27,30,98,168,79,246,196,202,16,220,149,47,54,102,165,100,79,70,15,67,61,128,119,31,250,163,81,105,46,94,161,163,32,119,8,166,62,126,220,223,48,70,142,84,216,161,60,32,182,107,200,208,112,111,119,180,167,
73,115,251,235,131,201,236,16,35,65,211,179,122,93,115,224,100,147,184,118,49,238,51,27,150,242,152,171,83,19,116,230,216,153,34,55,116,173,171,200,64,33,13,114,207,52,243,201,58,49,234,221,171,62,223,111,168,55,253,186,104,198,41,236,45,146,66,222,167,115,219,219,249,42,26,12,122,119,59,90,99,25,17,94,62,229,63,118,202,237,27,134,50,55,140,248,79,203,57,99,121,174,65,106,223,127,180,230,248,155,114,250,95,242,170,253,187,152,247,255,252,163,209,226,30,205,213,176,45,255,210,101,107,57,164,203,255,251,191,92,213,99,254,189,229,241,191,126,233,191,212,239,56,132,229,31,239,123,194,158,251,102,165,31,29,75,23,239,169,40,20,150,28,12,227,205,86,205,81,85,108,45,13,108,129,23,82,93,9,194,108,4,119,219,184,227,99,26,167,199,229,102,39,250,120,236,205,117,16,94,20,133,10,30,183,112,242,218,97,180,16,129,65,226,68,120,184,149,65,32,209,181,149,188,235,90,134,185,169,60,116,129,9,238,199,187,170,216,111,3,49,52,251,25,67,81,
251,64,58,229,7,103,120,92,127,145,186,13,153,118,198,89,89,253,205,107,216,47,96,113,64,196,127,122,207,188,151,47,231,142,100,211,231,19,183,255,102,232,179,253,236,101,144,208,95,71,113,110,168,67,147,145,186,171,40,250,185,140,125,36,226,139,146,223,54,87,10,243,181,34,39,53,164,204,170,254,61,216,229,95,195,126,141,150,50,72,202,160,243,223,11,137,211,39,175,188,72,172,185,70,168,99,244,177,243,216,197,77,30,249,181,249,47,255,242,184,211,141,167,186,119,102,11,76,80,253,184,45,97,223,81,79,160,167,190,153,250,100,106,232,105,96,167,88,127,182,241,11,197,62,3,106,246,102,106,183,220,244,60,86,133,156,155,144,134,31,141,217,86,148,101,28,35,9,184,36,121,75,17,184,87,15,156,125,171,193,139,156,252,76,15,203,105,132,2,222,76,233,80,180,227,55,165,173,169,130,17,201,41,35,68,109,226,76,100,223,136,142,18,27,239,206,25,143,163,184,27,238,26,138,103,239,195,247,138,101,245,229,235,241,38,95,44,55,229,240,254,197,43,48,195,21,
104,233,186,235,105,94,17,132,155,146,110,236,83,122,198,96,202,94,178,122,26,27,181,186,199,146,209,228,221,175,236,119,248,254,129,22,58,90,134,64,225,252,203,5,168,141,181,219,59,251,116,200,246,248,61,107,225,97,52,106,217,117,167,48,213,158,245,22,140,144,115,103,126,231,189,201,13,241,213,138,108,139,85,60,49,5,178,168,230,16,180,121,92,168,159,67,0,37,218,223,121,124,169,209,117,67,40,221,162,71,45,124,139,95,51,116,143,165,242,41,163,133,9,52,245,253,57,175,85,180,165,126,157,170,26,77,220,160,30,190,16,46,179,7,29,124,139,70,194,244,165,186,83,175,84,128,201,36,171,236,96,81,224,71,14,148,191,58,94,155,103,17,161,75,171,145,38,91,203,12,128,160,206,125,57,185,234,86,184,85,88,130,55,212,221,237,236,210,26,40,154,2,138,141,207,93,255,183,180,119,246,197,178,224,220,248,216,246,209,111,90,250,246,185,144,232,60,217,140,122,245,225,185,48,66,86,75,86,147,116,213,156,98,47,187,247,208,218,138,20,186,218,138,226,158,153,
207,78,135,62,188,7,143,18,124,112,224,135,162,138,193,136,187,140,45,102,253,25,31,129,119,43,64,158,71,4,130,99,152,204,13,189,146,166,137,87,133,179,117,164,109,110,213,207,9,128,56,166,174,95,176,130,231,52,167,54,218,146,253,141,122,152,226,123,217,136,154,239,236,141,30,220,209,51,25,109,30,195,255,98,94,198,231,93,137,15,113,110,127,228,218,255,14,14,23,152,218,119,202,161,67,201,101,77,100,138,188,187,140,217,228,66,119,251,155,244,206,137,72,149,187,241,91,119,0,59,60,243,209,147,122,174,50,55,198,84,52,7,60,93,179,122,240,57,213,96,237,190,220,219,55,179,152,24,93,180,223,47,93,232,225,71,161,190,214,248,248,142,6,217,39,255,236,27,134,175,175,2,195,173,46,108,189,96,117,6,165,229,173,239,219,23,106,146,118,236,239,15,131,37,107,210,178,15,154,74,6,228,20,230,24,87,50,99,218,237,224,220,204,230,203,95,72,37,25,165,39,60,111,252,50,198,188,202,188,237,249,227,214,71,43,92,124,121,47,235,34,125,194,156,95,132,
120,89,213,101,36,214,235,135,184,11,164,81,76,26,179,71,181,93,218,97,2,65,220,240,227,61,59,142,146,201,214,31,77,67,226,245,66,209,41,154,94,218,219,86,95,135,192,69,195,85,226,169,47,184,35,60,233,42,1,181,193,56,79,132,231,243,140,23,242,37,223,182,63,236,242,192,246,65,157,245,247,140,104,130,58,91,155,243,217,89,222,35,67,200,76,180,77,192,22,41,168,70,213,238,126,76,208,208,248,94,176,249,74,52,243,100,26,63,139,127,119,130,182,218,138,52,245,9,182,65,212,35,228,41,245,108,230,195,245,231,93,235,50,17,122,229,95,61,179,245,95,244,113,66,242,164,245,95,75,8,70,102,230,235,156,90,68,145,188,208,31,37,84,232,124,54,78,236,17,196,114,78,48,85,158,72,20,195,140,48,186,161,224,32,211,207,20,163,214,84,219,213,235,98,136,137,232,244,218,190,100,58,109,100,53,68,67,166,213,194,44,30,139,60,17,216,190,207,126,24,110,179,27,213,25,232,238,45,187,224,9,23,169,239,74,56,187,64,241,36,67,209,51,46,10,94,
217,223,74,137,222,9,180,167,205,41,79,113,60,99,241,30,193,74,168,175,9,165,78,196,120,14,196,56,15,242,176,76,16,196,130,115,140,123,199,188,171,225,198,180,45,148,118,34,95,8,26,218,249,109,247,17,188,212,59,116,254,56,23,240,42,62,205,38,79,64,99,146,177,253,30,245,208,150,160,246,14,142,207,108,219,99,5,177,215,153,72,6,244,38,18,28,187,232,102,255,62,59,202,247,164,91,167,0,253,181,232,12,199,130,142,135,223,77,111,124,68,67,169,212,70,209,85,91,133,172,163,120,130,154,147,48,107,112,173,171,174,80,116,191,196,34,67,190,150,132,40,22,43,237,179,121,129,23,166,164,239,167,242,244,85,163,59,107,185,119,7,132,243,91,82,151,29,161,60,87,101,253,225,136,27,8,111,189,193,25,179,142,141,175,201,210,234,132,241,134,171,156,167,226,84,67,242,176,248,142,71,73,68,12,52,227,217,58,76,163,113,132,93,104,60,97,39,17,155,56,236,135,183,235,160,13,164,225,43,100,16,80,104,188,56,190,165,30,245,26,229,62,164,5,34,194,
212,92,129,174,112,190,147,72,85,27,119,237,195,184,253,212,147,217,123,64,240,116,5,90,166,46,93,219,121,244,79,127,9,18,104,198,222,116,232,248,126,43,35,27,22,141,91,161,137,158,142,217,195,227,88,32,145,247,114,72,254,80,89,114,230,53,243,188,57,171,220,212,147,7,120,248,32,225,29,207,103,138,149,156,115,134,140,38,149,65,100,42,230,228,67,52,235,189,69,167,40,103,30,192,61,143,25,157,197,117,15,69,110,106,140,19,39,135,118,51,69,79,75,220,19,249,245,116,175,122,157,175,216,217,190,174,72,232,93,3,115,32,63,167,49,149,63,159,240,215,25,230,21,155,22,158,126,235,191,246,167,217,246,4,98,142,27,24,154,230,101,251,77,17,238,202,83,185,57,223,110,210,157,83,99,172,67,243,84,132,206,117,171,107,249,212,106,140,57,92,200,124,106,66,165,202,26,50,26,197,1,208,18,55,209,244,113,71,195,238,251,72,194,61,34,215,99,233,93,65,244,144,30,239,8,22,225,11,105,51,9,167,130,231,71,153,37,51,149,10,149,2,253,23,234,60,
13,252,217,203,192,8,35,14,204,248,190,63,32,223,5,121,21,206,96,212,9,214,186,228,162,21,209,152,210,118,142,204,209,181,143,50,194,237,134,118,180,85,143,99,179,155,208,184,46,234,185,68,220,239,212,136,140,72,109,79,235,182,147,253,49,226,117,63,2,240,229,126,121,30,2,204,157,166,142,129,201,225,108,245,118,218,133,20,68,211,185,127,44,164,23,75,85,183,31,93,18,154,35,36,111,211,230,95,102,180,231,134,185,250,37,33,136,30,157,91,50,146,119,92,67,206,243,150,167,222,122,236,189,103,236,124,141,56,166,123,19,143,32,167,8,91,64,156,239,79,112,117,230,247,141,154,152,248,170,100,4,244,90,168,33,147,234,93,104,135,70,28,154,31,233,232,34,26,20,16,102,223,183,6,227,77,167,213,225,71,62,223,161,238,242,246,35,60,67,239,7,106,106,2,84,134,213,17,18,235,158,194,100,70,2,189,131,126,162,72,87,38,119,29,33,79,155,165,171,59,253,118,50,58,80,183,176,171,175,23,58,247,245,77,56,22,218,1,133,206,71,121,241,239,120,190,
127,109,158,190,175,136,229,78,180,99,162,208,140,114,131,127,35,206,130,121,216,207,168,120,78,239,249,188,227,9,159,248,94,79,53,65,201,30,33,247,239,103,141,247,30,82,196,185,84,65,8,69,228,51,198,185,65,188,153,71,173,188,235,54,219,15,227,97,103,136,251,184,116,110,170,180,121,194,141,23,168,61,206,150,152,185,31,27,161,9,201,189,83,129,79,16,31,50,192,250,70,31,119,101,213,100,4,71,157,248,174,98,192,130,13,89,23,249,164,89,152,218,219,132,67,226,87,159,168,212,161,206,248,116,211,38,181,4,160,76,128,117,62,182,152,124,17,45,3,202,48,246,247,33,6,235,111,145,32,35,136,87,69,122,79,206,11,106,209,97,101,82,207,143,52,164,127,171,35,45,4,98,127,87,98,113,178,29,140,170,31,46,111,104,230,149,50,124,197,188,104,70,168,241,147,118,138,52,72,158,244,0,117,129,19,63,5,86,6,166,39,160,72,55,8,237,144,220,79,249,178,126,82,205,242,206,98,1,77,82,223,250,3,71,8,98,244,95,53,56,131,125,96,242,190,127,
155,224,114,128,203,64,221,14,227,72,97,3,233,46,126,38,188,249,95,21,239,92,115,200,55,150,53,58,42,171,21,174,189,32,193,109,143,12,155,222,117,176,162,13,183,7,137,200,115,11,213,188,61,72,247,33,98,39,66,202,52,240,155,231,27,113,97,240,75,219,242,88,131,104,92,219,35,34,145,81,10,182,242,100,70,72,158,9,215,153,86,106,250,181,134,179,79,171,76,5,131,50,221,155,196,127,147,208,155,204,238,23,202,19,241,145,47,24,3,191,19,208,222,218,11,161,68,37,168,5,178,71,16,110,10,234,251,248,64,168,97,30,173,2,189,19,188,247,241,152,130,238,189,72,115,220,202,223,163,49,36,126,47,94,98,241,20,174,237,153,13,82,236,128,80,255,218,195,158,88,148,3,154,49,246,251,48,191,242,195,14,159,116,250,62,244,162,71,33,115,207,0,63,193,96,115,65,106,130,69,163,18,40,179,253,87,40,4,10,26,63,136,91,22,176,164,188,9,225,203,15,17,186,251,83,153,190,126,115,202,113,240,105,48,125,136,172,239,110,119,94,10,223,32,17,15,
114,202,213,175,175,24,67,185,102,211,155,227,146,170,124,203,143,65,164,15,138,108,124,250,251,75,210,159,87,169,91,255,55,245,176,150,170,184,88,200,24,70,170,69,174,146,165,181,15,41,176,134,227,129,34,43,95,189,137,121,87,3,203,102,189,144,170,9,199,106,226,39,59,87,138,153,65,175,128,224,231,234,209,5,102,117,11,161,20,10,106,149,36,169,177,100,192,108,142,52,227,120,244,78,162,205,62,136,230,26,173,67,182,125,171,157,195,137,119,182,135,185,207,18,171,133,26,242,253,100,234,124,235,37,68,114,100,246,74,4,51,53,71,50,116,190,40,11,105,44,130,190,208,252,245,157,131,143,186,228,254,83,209,155,134,214,36,232,214,33,201,62,69,81,19,12,7,161,208,252,225,196,152,98,222,164,152,3,75,127,252,38,195,49,62,96,222,168,10,30,175,78,124,93,114,242,121,5,32,243,52,190,85,74,29,157,24,44,247,254,29,64,28,255,221,139,62,48,208,117,191,121,146,228,181,7,73,45,156,123,77,175,216,97,107,82,23,54,33,18,21,83,34,146,151,167,
56,177,128,77,88,36,9,27,22,79,37,76,176,37,201,149,132,214,168,254,220,124,77,122,59,49,136,123,85,38,56,172,247,3,250,146,212,211,95,186,132,20,45,85,70,70,194,95,176,70,248,171,42,138,151,185,65,162,8,19,222,245,72,78,82,183,20,178,148,103,225,76,132,57,230,171,248,66,24,184,205,33,66,191,118,191,81,65,146,44,27,137,44,59,117,133,143,51,8,206,231,255,243,92,78,255,155,59,102,244,106,61,186,196,181,85,141,68,145,208,197,219,160,130,220,159,34,228,48,64,32,26,47,34,122,239,43,3,163,92,212,29,160,198,182,207,147,170,246,219,39,212,207,77,139,116,95,156,119,228,4,9,51,160,47,154,230,71,154,43,73,19,187,179,204,146,94,33,66,112,27,14,212,207,179,135,170,166,64,144,125,49,59,88,126,121,210,128,98,190,41,0,138,90,154,154,71,175,78,10,66,42,4,55,169,67,13,48,121,178,24,130,137,184,61,101,58,146,183,49,127,134,51,49,74,77,75,115,191,222,223,43,139,103,64,126,156,71,10,39,78,23,89,81,253,173,
202,79,5,255,78,177,36,164,240,113,48,35,50,15,239,221,183,196,108,43,82,34,97,17,62,97,143,126,223,135,237,251,240,193,75,110,59,83,50,181,100,41,129,108,216,64,222,146,186,204,202,93,200,232,190,37,130,162,5,39,49,35,213,59,120,222,177,247,99,39,58,140,230,64,61,95,58,161,60,0,217,81,77,76,99,80,156,22,187,157,126,192,134,73,38,238,66,34,45,5,127,187,201,199,14,147,20,228,139,199,161,191,123,145,125,220,199,232,111,92,164,62,203,137,123,166,23,43,154,12,181,186,214,67,74,187,220,138,102,241,250,246,82,53,148,125,70,241,104,134,85,137,81,10,12,249,9,53,54,22,108,127,25,216,144,21,15,231,215,56,158,81,176,97,58,27,84,99,136,147,73,224,201,227,74,217,73,113,23,193,3,201,194,227,36,170,212,253,10,14,224,105,141,111,26,120,79,92,146,77,79,70,243,164,115,56,143,164,216,92,237,231,190,216,193,237,136,73,142,195,183,75,54,90,194,198,40,221,24,247,88,9,106,219,147,152,21,88,14,53,134,181,38,108,84,81,
116,125,83,236,159,197,103,62,165,102,107,80,37,237,118,171,74,61,67,19,144,125,234,85,118,249,213,239,58,47,235,188,155,236,164,154,236,190,155,192,5,84,125,137,180,134,48,235,241,164,45,157,187,59,217,244,180,4,229,79,44,207,93,92,46,29,0,15,187,16,194,0,93,126,165,151,14,185,79,156,221,252,220,47,10,174,33,255,201,141,218,108,78,74,31,124,82,11,3,56,239,47,140,17,209,131,129,165,76,74,79,194,124,57,155,156,25,5,234,97,159,230,220,153,135,5,211,35,25,228,8,46,156,29,29,194,146,163,186,230,51,50,129,7,197,199,75,123,116,231,209,154,118,13,221,46,46,142,151,162,63,113,27,140,125,84,179,146,90,172,131,155,71,66,12,182,175,239,152,125,217,195,197,147,126,214,117,95,28,229,190,123,50,175,2,98,228,52,127,196,110,82,177,213,60,63,161,19,2,81,137,225,203,147,74,185,210,102,5,20,88,234,251,226,245,171,254,81,153,248,233,182,185,44,159,242,54,229,124,58,172,139,79,190,132,54,16,137,200,177,210,135,54,109,246,65,
220,47,148,155,69,145,155,229,97,47,104,80,82,43,47,54,185,130,237,232,231,3,101,225,29,15,11,126,34,26,129,208,191,164,120,60,171,129,99,180,76,168,64,208,9,83,2,204,64,111,204,27,236,79,10,62,102,9,162,246,102,70,107,90,76,234,188,205,175,248,193,227,226,31,1,188,185,139,162,77,92,4,34,207,127,173,195,197,195,220,8,160,163,198,233,138,48,45,244,245,34,242,26,141,52,234,135,183,22,36,28,219,157,105,25,51,178,43,145,107,12,181,114,162,232,8,134,97,7,10,129,207,16,9,31,201,7,79,12,54,223,228,84,60,30,179,162,60,250,112,177,23,200,189,47,177,3,60,222,228,62,46,8,41,147,28,65,189,3,156,79,232,146,225,193,95,12,102,151,110,85,129,205,220,44,214,191,127,179,249,232,82,88,226,9,100,76,51,169,50,167,68,203,253,253,225,204,251,115,125,158,213,117,211,30,226,98,199,178,100,164,118,200,243,18,213,248,141,137,127,162,139,234,37,45,236,172,107,60,142,70,244,236,80,203,140,234,85,224,31,89,212,134,195,240,85,
90,183,144,70,170,141,40,175,127,89,158,28,204,1,85,88,91,136,155,105,229,194,176,65,9,93,128,163,111,122,24,131,232,204,202,229,110,25,232,61,105,242,35,127,106,250,13,146,50,167,185,204,222,37,159,54,233,142,49,254,106,122,191,247,58,135,93,226,237,250,40,142,239,211,241,222,114,41,35,85,7,175,201,39,29,63,253,197,240,164,214,128,33,255,217,227,175,22,58,131,36,229,115,70,51,102,114,85,12,99,10,118,11,225,51,87,234,215,75,228,226,239,164,193,31,130,96,89,142,160,95,101,124,173,129,16,172,145,86,50,176,201,89,113,30,54,226,171,199,112,190,86,130,242,175,7,229,113,62,129,164,127,101,14,77,71,97,95,42,161,86,254,231,182,130,134,205,132,224,192,51,91,230,48,108,112,233,112,65,165,223,252,200,31,43,213,142,144,185,222,159,107,100,205,170,243,13,209,168,151,178,37,238,39,183,146,38,25,161,105,250,62,27,122,27,57,158,135,168,32,200,136,141,92,51,251,113,78,119,24,13,23,206,233,218,104,165,12,181,106,123,6,144,81,69,103,
63,98,252,175,43,108,146,225,40,35,203,213,205,162,158,3,34,130,195,44,115,215,36,8,130,131,62,64,51,229,253,192,68,198,145,193,133,252,213,180,0,170,191,154,86,105,25,178,50,39,71,243,167,166,119,40,137,78,208,204,5,112,246,158,254,12,209,65,52,221,144,189,114,230,134,136,15,67,37,185,5,222,101,6,137,92,102,16,17,92,234,104,6,208,242,25,41,129,112,185,25,87,116,186,222,52,229,209,141,45,179,27,1,87,204,253,33,114,214,43,140,29,98,103,23,50,32,126,25,158,85,36,41,132,149,34,164,195,47,197,130,212,233,115,58,197,233,241,169,149,229,201,33,128,137,57,170,9,248,35,223,160,30,63,141,239,89,222,21,210,228,47,130,32,95,156,3,118,233,250,172,209,98,239,110,227,4,165,36,14,170,180,24,164,68,163,144,28,42,75,108,143,220,254,147,180,172,193,172,55,67,112,68,250,65,220,41,231,201,87,164,107,118,103,225,198,165,156,63,79,211,112,249,230,185,161,228,173,30,207,224,141,4,28,105,228,224,52,186,118,12,171,39,23,99,109,
34,95,72,240,8,55,162,81,145,145,3,201,174,228,14,192,221,139,131,82,96,110,143,121,218,47,230,10,193,201,64,236,78,244,180,159,84,64,200,27,177,193,64,176,205,190,183,60,33,205,13,5,239,150,142,137,215,176,231,237,26,69,253,174,201,197,227,157,68,71,154,17,8,254,54,96,195,29,196,29,91,4,205,36,133,3,133,18,238,239,201,199,234,109,10,191,45,110,217,77,94,191,249,46,83,199,227,176,206,78,236,95,21,183,127,54,82,10,107,58,35,116,32,237,109,223,99,176,139,67,61,56,51,11,116,224,238,155,71,3,209,45,35,97,8,195,98,36,19,131,83,15,7,252,206,54,203,28,31,16,48,74,177,189,63,161,118,179,173,96,3,247,93,228,246,162,197,91,196,187,175,68,181,215,37,214,52,161,9,228,241,21,72,97,134,243,132,14,131,150,89,90,161,56,148,147,91,39,45,156,60,98,123,116,210,101,35,247,46,54,181,36,72,83,169,225,203,217,117,107,161,172,57,123,236,146,155,73,175,25,127,11,91,241,77,240,215,185,133,28,19,92,234,117,151,232,
88,42,160,237,27,17,246,33,241,137,151,146,55,15,56,130,83,221,139,248,225,150,12,232,152,188,223,61,81,18,47,224,63,187,94,61,199,212,155,231,95,76,161,145,96,10,70,201,251,70,251,145,50,222,157,38,164,126,126,189,69,254,36,231,151,157,122,129,165,155,189,254,60,87,96,137,120,208,74,92,2,15,237,251,124,10,20,156,138,6,39,4,60,54,0,12,111,131,172,12,186,129,151,206,17,192,41,65,188,143,184,97,58,147,10,33,164,102,133,221,130,206,29,180,132,10,57,251,12,57,61,166,50,42,228,67,225,69,97,91,171,135,35,148,219,12,163,251,143,137,40,28,91,179,186,251,144,22,23,38,27,82,219,225,249,74,155,108,87,54,195,24,142,211,18,233,41,236,80,107,215,144,218,113,187,37,156,63,215,161,216,243,18,52,70,219,30,246,11,196,151,13,199,1,243,122,120,195,250,141,149,216,56,251,118,18,150,239,211,239,55,200,247,3,103,211,126,145,249,25,231,132,43,199,239,58,190,56,16,254,197,35,63,31,202,131,4,240,49,165,29,105,30,209,61,81,
184,64,151,249,1,158,124,204,193,83,252,79,141,18,35,241,247,153,247,243,5,200,53,205,70,180,67,232,1,83,240,9,180,21,228,245,92,184,228,249,66,147,151,242,118,138,172,188,82,194,72,244,59,231,180,152,171,219,183,209,60,158,234,220,161,148,4,55,98,195,119,82,80,221,35,6,5,49,135,219,61,125,255,205,135,117,135,236,230,100,249,43,116,187,47,253,203,69,252,167,92,211,30,44,24,6,104,155,35,84,242,5,184,7,218,167,187,134,122,136,21,95,143,34,28,176,170,169,255,230,121,11,92,109,12,150,67,97,79,52,168,84,18,207,94,126,32,29,178,206,114,7,134,45,77,154,126,106,188,201,222,195,180,50,98,59,233,181,247,8,244,115,50,106,63,44,208,157,173,168,14,239,236,118,100,127,120,128,233,77,94,185,31,166,9,149,184,126,162,167,253,221,217,175,24,193,6,52,221,52,185,205,96,106,169,51,181,32,161,168,239,129,28,230,133,65,47,192,96,248,126,153,68,70,240,79,8,59,241,225,225,247,67,219,40,244,101,10,32,63,124,50,107,65,142,134,
80,94,240,174,89,245,98,199,2,168,90,29,76,191,212,42,225,248,55,51,249,236,76,89,177,111,38,216,67,9,101,8,85,102,55,81,20,128,1,157,62,188,84,46,218,75,199,170,223,218,200,150,227,1,24,27,51,181,125,235,234,87,228,166,87,114,65,9,203,206,155,146,226,149,233,247,3,121,252,205,247,181,130,195,174,111,200,88,0,160,216,39,237,55,184,242,147,28,200,233,173,223,231,171,24,30,142,209,46,226,180,235,68,12,20,124,50,40,41,230,213,132,180,248,237,122,99,173,213,241,160,152,58,136,51,183,175,106,140,91,254,109,118,26,106,168,73,80,216,210,209,222,174,93,252,248,85,148,197,116,172,22,87,250,176,183,44,74,181,134,55,138,230,199,180,2,35,128,120,19,65,166,60,118,158,134,242,67,51,114,40,200,112,249,15,243,130,7,243,172,157,226,46,23,114,128,254,120,231,36,255,171,213,249,161,142,47,36,62,58,240,230,158,90,213,129,182,247,125,131,209,39,228,60,49,108,49,18,250,125,151,45,31,78,162,197,161,210,121,32,106,82,115,115,64,94,
54,20,213,39,192,151,121,248,64,244,163,25,223,218,250,74,207,202,120,228,20,49,207,75,6,174,158,192,190,28,212,22,230,230,191,215,87,196,47,78,97,213,191,254,108,69,106,49,154,47,177,157,144,162,115,63,45,35,153,1,242,124,72,29,69,138,226,30,121,3,68,243,171,5,79,178,215,38,108,194,7,227,239,60,106,252,34,8,84,253,39,70,80,49,184,165,86,18,70,146,181,220,79,218,164,78,173,184,50,39,228,9,37,120,220,215,73,62,76,159,245,212,144,217,250,157,33,151,239,27,195,47,62,208,62,28,53,62,176,46,14,115,144,131,121,103,94,101,11,175,75,58,103,231,97,209,45,40,50,232,91,213,226,195,26,233,69,237,167,163,222,212,147,88,225,77,17,225,197,157,15,82,148,175,71,199,208,224,25,82,121,255,153,224,251,71,18,249,9,174,24,6,208,231,225,7,119,39,248,167,78,125,192,103,7,104,79,166,125,12,114,75,100,103,47,242,21,213,36,226,55,119,51,135,46,232,189,144,237,215,177,88,223,122,96,247,201,95,113,95,41,222,223,179,229,183,
122,58,201,215,85,63,16,37,4,84,131,17,46,141,62,121,45,155,141,41,3,102,28,17,234,3,98,7,43,114,234,89,135,129,95,18,229,196,217,130,126,76,255,113,145,87,73,131,76,56,91,202,35,14,188,236,215,60,183,190,188,128,4,117,2,7,101,211,4,154,37,200,180,113,217,98,38,240,184,120,228,13,243,243,151,202,102,135,186,114,129,98,42,143,160,208,201,102,101,250,175,171,227,241,53,199,181,1,237,129,224,124,222,89,103,171,77,165,69,248,67,187,63,65,18,9,72,32,204,125,179,211,224,174,81,115,233,235,228,132,50,168,255,190,239,249,94,54,95,203,250,247,43,179,82,19,199,97,122,204,169,25,225,158,24,245,16,213,103,4,32,231,154,130,239,191,219,213,254,114,209,38,100,192,67,28,164,3,57,115,192,61,63,216,232,82,243,205,208,185,229,207,51,70,125,126,211,145,48,143,228,233,243,253,85,18,60,30,189,38,178,189,130,58,16,24,255,103,230,84,228,138,82,198,193,66,235,1,44,167,251,188,3,66,143,165,36,68,170,244,254,162,13,227,241,190,
223,47,205,148,74,102,2,104,161,193,97,152,73,142,98,36,213,46,244,23,124,57,47,248,245,87,14,153,15,71,24,17,6,70,250,167,13,121,255,157,207,250,162,223,93,115,191,137,119,32,224,230,103,84,67,169,202,205,79,197,149,84,253,65,138,59,108,63,160,234,52,141,236,146,2,113,90,175,234,200,95,215,231,33,224,50,93,141,66,77,178,9,67,23,216,154,181,69,238,53,39,28,247,9,123,187,117,155,242,205,68,175,185,234,153,73,106,121,4,88,87,120,31,108,101,244,201,23,105,52,158,193,80,238,170,47,21,196,211,234,75,120,77,239,62,196,237,20,35,131,46,126,196,157,7,76,160,238,182,137,115,15,103,136,64,110,231,168,141,44,0,199,87,78,220,116,15,174,136,206,123,213,65,202,155,204,30,146,230,48,183,20,179,135,78,57,46,57,249,199,184,93,43,3,194,42,54,51,145,197,140,229,86,191,23,209,66,123,126,217,224,3,25,174,66,157,202,143,84,117,108,164,134,229,130,184,252,151,213,180,140,137,90,158,115,190,87,62,120,224,254,114,236,43,11,20,
196,148,53,67,51,48,77,211,59,130,161,218,155,204,111,111,62,204,63,152,176,195,19,103,30,49,176,198,141,234,159,236,115,128,94,192,225,154,203,75,14,187,10,87,201,154,245,167,40,1,230,94,55,170,166,93,132,20,217,64,26,218,196,226,40,94,87,159,40,140,46,95,39,234,60,235,150,6,182,81,156,146,37,147,249,190,79,217,233,174,87,245,99,115,88,124,101,230,194,126,93,56,51,78,198,42,1,142,120,7,133,247,210,27,74,236,203,245,173,22,120,62,7,145,148,65,81,215,187,80,229,253,193,161,141,80,128,152,247,249,157,66,121,78,7,64,86,156,234,139,156,9,17,112,39,78,174,151,71,66,91,191,139,138,114,127,231,186,36,60,29,33,241,129,35,32,194,215,104,40,243,158,192,139,147,28,93,76,250,154,212,123,163,248,243,137,171,5,230,210,206,42,76,63,242,87,6,134,235,111,82,190,96,190,52,221,5,42,27,171,16,30,78,135,9,185,31,61,83,213,213,86,21,168,75,142,215,44,67,194,242,33,211,77,166,126,183,56,15,183,180,64,219,201,169,38,
26,233,191,186,213,157,155,89,75,69,237,196,189,247,85,244,157,17,133,120,158,240,250,119,17,178,37,68,248,17,241,90,199,193,191,199,155,219,2,199,46,194,199,116,204,240,237,69,1,160,99,14,125,52,137,137,222,156,110,201,205,145,197,1,36,75,23,60,92,253,239,114,66,74,141,168,144,138,57,227,21,127,211,219,172,21,193,248,189,138,178,204,223,11,51,149,52,85,188,34,46,3,31,77,48,231,38,62,34,100,183,153,181,176,87,195,200,230,11,235,119,26,22,69,242,229,253,236,158,94,159,129,64,200,209,75,222,205,80,136,136,198,177,247,235,72,223,246,78,149,46,232,103,70,152,77,126,89,177,16,165,246,100,197,48,234,189,134,223,54,253,240,47,207,11,21,36,253,185,24,54,142,225,208,190,14,104,120,72,42,249,254,190,6,102,214,163,236,158,48,228,200,191,188,183,148,4,134,252,193,228,240,4,174,211,253,112,203,12,142,170,219,91,236,135,103,220,151,180,211,6,204,112,96,57,120,173,202,130,235,188,2,137,186,240,240,32,58,78,26,27,206,181,156,119,144,
248,65,91,19,127,118,35,171,18,69,37,156,154,52,101,130,231,81,162,102,219,36,134,52,156,120,106,169,174,204,204,196,177,111,241,108,44,209,54,149,52,129,165,13,238,223,196,138,80,64,106,86,155,120,12,114,179,38,247,90,203,250,22,234,250,93,107,50,147,157,225,112,155,9,236,190,20,46,211,174,60,254,76,202,209,233,255,118,221,188,65,97,133,198,225,224,118,169,17,181,72,73,128,34,89,172,76,220,101,125,251,113,103,238,99,68,117,133,121,193,36,26,226,34,115,152,49,20,177,114,231,238,105,54,124,103,115,71,15,223,127,224,165,250,169,120,154,250,37,174,125,61,209,90,127,13,135,103,159,215,223,83,62,224,187,255,227,124,216,151,208,58,34,186,90,101,29,5,219,243,81,209,253,77,74,239,203,195,54,189,221,112,157,194,237,142,70,135,234,196,237,5,105,109,141,226,86,26,36,123,192,220,98,191,43,239,40,205,88,141,120,108,216,7,24,20,65,170,248,45,144,8,202,12,190,248,195,133,67,197,126,34,152,185,144,169,255,102,120,218,139,173,60,10,156,48,
144,149,253,69,20,212,9,233,188,137,146,114,54,82,37,153,166,196,225,195,197,20,180,186,238,82,222,51,56,92,64,233,57,114,106,255,144,171,169,229,65,197,137,245,47,94,40,96,118,92,111,131,7,55,63,115,59,73,247,170,223,176,128,104,38,112,245,119,243,148,239,47,111,80,193,252,70,47,83,32,198,213,110,12,32,109,49,91,201,228,18,106,171,30,75,21,138,180,95,236,242,121,210,101,232,232,170,127,7,213,244,152,147,148,135,101,48,7,135,197,122,52,96,94,246,146,103,253,146,124,170,192,247,2,152,183,155,232,23,194,226,132,200,45,230,219,48,108,43,45,75,116,22,129,238,222,52,143,147,10,15,27,121,103,13,157,84,176,133,82,204,175,136,34,42,0,12,8,188,138,76,164,162,171,188,106,36,94,73,92,34,117,163,95,214,237,184,149,225,165,161,233,119,68,153,192,39,76,140,110,214,9,14,23,10,113,26,145,233,248,9,253,242,154,170,111,226,98,165,168,36,236,88,5,151,116,112,97,228,206,79,26,179,238,46,110,174,145,75,213,11,45,101,196,249,250,
145,22,25,229,52,9,98,246,164,207,67,116,45,182,217,100,158,188,168,98,19,169,21,123,172,143,177,28,171,9,226,84,116,179,213,138,83,103,36,158,180,209,129,157,86,246,158,149,16,245,122,147,98,141,106,247,238,82,92,247,216,2,57,241,63,121,37,166,191,10,217,94,213,42,147,65,45,171,137,159,117,95,65,122,83,174,248,235,67,102,41,210,56,137,2,147,205,201,245,181,10,141,169,91,90,67,39,200,11,231,240,123,14,101,13,180,186,223,154,235,200,175,97,8,149,140,9,5,65,70,13,78,187,173,145,174,207,223,122,74,248,6,18,197,36,185,246,253,168,56,110,135,222,139,30,111,143,85,192,73,96,197,24,254,218,118,127,30,180,99,40,151,82,42,161,218,123,95,79,136,159,200,112,137,172,245,140,57,230,53,2,108,175,171,53,98,195,80,170,35,218,120,131,99,94,44,97,18,153,195,156,43,44,207,79,207,71,22,218,23,154,61,113,198,47,113,68,72,83,55,167,179,165,1,176,215,28,142,39,189,87,115,186,116,42,31,153,68,127,1,166,133,39,128,136,196,
246,13,196,35,83,155,91,85,0,113,236,213,79,35,44,110,22,33,227,82,33,128,228,75,252,209,32,79,98,46,81,116,159,202,214,23,158,235,1,82,38,251,175,222,185,68,148,140,238,134,114,150,194,253,49,82,121,66,246,102,136,8,152,97,203,16,51,50,251,169,103,132,132,78,73,83,139,146,16,164,100,108,202,195,210,29,249,142,215,7,44,158,134,137,107,167,85,178,24,98,161,23,249,198,131,11,108,142,182,108,207,167,63,182,81,87,185,67,102,155,147,222,46,22,130,63,71,47,203,79,82,205,244,72,252,245,180,237,22,152,158,32,56,118,237,50,143,222,211,75,231,152,9,77,216,187,6,185,81,100,168,181,242,122,84,225,123,171,127,228,29,223,126,159,245,212,100,226,195,122,196,71,50,43,233,43,115,82,126,210,82,120,165,135,15,47,151,169,24,16,167,137,241,157,224,6,225,197,185,122,204,243,11,139,188,125,134,57,146,153,250,176,117,176,95,235,228,13,22,0,65,65,24,114,226,163,189,38,195,172,98,18,203,35,227,246,18,230,114,249,73,155,85,66,155,72,
154,102,185,58,82,44,138,216,206,209,105,131,106,2,118,22,29,249,216,65,229,203,228,76,9,249,185,249,219,112,84,140,114,133,127,87,109,182,149,40,186,24,7,98,205,119,114,97,37,205,23,190,33,160,82,153,27,36,238,191,82,239,112,253,18,141,57,42,251,180,137,136,52,134,119,96,243,96,169,248,35,16,3,156,114,159,146,196,177,80,19,215,91,148,35,121,182,5,156,151,227,148,93,39,171,173,190,37,106,27,235,165,125,226,22,189,94,216,88,190,62,117,87,189,189,188,36,196,158,200,147,12,68,218,242,233,178,11,125,216,191,59,235,136,94,160,229,175,241,158,239,148,170,15,162,85,87,80,150,78,14,87,219,184,101,124,65,123,39,65,167,50,242,31,109,199,141,48,207,101,226,197,100,181,252,249,107,107,16,219,61,181,199,112,161,138,103,95,64,162,1,105,59,8,233,119,129,146,228,141,202,223,216,76,225,89,85,48,90,89,81,50,37,203,73,123,130,188,166,224,128,228,137,77,178,118,194,57,148,136,214,247,98,178,174,113,127,115,118,231,46,184,147,23,245,239,
217,29,90,30,242,39,0,237,254,227,137,133,67,180,26,140,111,128,75,115,203,103,4,183,130,202,88,143,61,243,116,81,183,209,146,107,223,20,20,92,187,16,9,244,33,98,209,192,92,152,105,20,38,78,168,134,166,161,106,33,244,70,32,215,61,39,233,4,85,85,1,1,249,79,220,79,77,212,211,111,207,238,143,22,116,3,34,137,185,232,87,238,217,251,7,219,52,203,250,152,35,167,176,15,127,56,41,9,43,91,93,112,100,68,58,236,184,193,36,239,103,51,62,228,189,58,252,14,173,66,215,198,254,102,12,89,26,56,21,95,223,178,189,84,66,71,124,100,19,239,18,176,147,185,75,9,170,100,198,22,176,155,153,218,169,101,14,110,44,255,161,168,106,246,185,232,43,233,226,25,176,65,220,43,226,4,185,115,123,235,248,4,12,185,222,29,227,82,225,96,253,54,35,131,191,27,82,15,167,53,231,173,189,72,164,90,182,107,201,243,135,42,65,44,60,216,201,35,7,245,82,167,52,189,150,86,102,120,146,152,219,60,249,133,23,224,241,135,153,12,25,24,244,190,90,97,
55,56,180,75,100,198,138,17,254,166,230,47,125,216,209,121,149,170,41,23,166,0,27,161,39,199,164,22,98,69,68,30,250,233,189,236,175,41,210,190,179,36,152,83,75,19,155,99,197,46,16,252,43,192,215,153,149,24,201,7,59,150,194,142,255,99,83,129,171,191,181,174,191,89,10,193,29,123,56,75,119,53,139,155,100,227,51,36,216,95,142,90,241,15,217,209,198,71,91,238,215,170,232,236,58,107,141,137,48,75,203,101,168,134,159,75,161,84,216,50,104,232,60,242,41,62,178,235,172,221,71,68,239,5,22,234,152,215,83,198,135,234,64,109,24,219,119,131,164,125,61,166,99,230,47,74,120,183,240,93,194,35,35,48,201,20,96,217,30,245,198,55,198,177,20,103,57,207,172,17,105,253,101,107,72,36,41,39,106,6,14,159,219,71,186,106,246,79,5,209,140,73,15,210,85,221,228,81,107,208,89,184,226,17,197,50,83,37,208,89,231,67,188,126,247,239,61,248,95,110,195,200,158,44,69,84,192,67,2,101,81,4,194,27,98,130,78,215,121,9,208,87,108,180,17,216,
251,82,200,115,233,139,188,221,190,190,178,68,96,205,43,55,62,214,149,130,172,156,65,136,88,66,241,88,219,212,182,241,128,36,164,3,14,76,43,64,26,81,155,189,94,91,210,39,242,191,199,87,33,234,133,25,49,245,239,247,58,214,208,49,199,223,50,134,167,8,142,83,144,191,193,128,251,87,197,129,164,161,63,111,5,209,191,150,99,30,249,145,161,204,197,161,226,3,158,45,198,108,44,245,123,98,100,207,164,42,109,164,99,82,70,179,144,196,91,231,188,175,50,97,186,247,29,125,135,250,110,240,220,10,58,93,234,136,5,33,211,62,106,28,84,93,211,139,119,188,170,32,226,246,37,104,16,164,201,20,67,109,38,213,193,71,250,163,185,38,195,107,141,182,107,132,139,163,8,141,180,11,251,34,219,200,147,77,63,169,254,55,152,163,252,240,9,126,214,177,43,18,146,134,74,133,237,18,2,166,165,209,40,43,92,76,143,142,221,182,103,209,193,20,46,31,216,155,122,107,203,34,69,49,28,43,102,145,156,112,245,26,154,70,158,202,70,249,26,89,222,116,215,200,211,179,
27,27,240,154,180,201,213,18,254,178,103,81,183,212,40,61,64,203,131,254,210,15,145,59,70,65,197,143,150,95,104,18,158,66,42,15,3,221,211,126,227,64,175,94,166,110,4,223,109,52,71,2,176,83,26,209,167,16,75,9,154,189,31,12,195,123,82,217,57,211,87,66,218,159,172,125,12,228,145,94,191,234,205,119,222,207,141,38,71,137,107,81,33,206,115,29,61,114,125,140,41,100,38,8,144,66,162,88,12,95,101,238,44,199,29,178,243,132,149,17,117,61,54,35,142,2,170,249,109,152,152,251,133,197,7,233,115,184,91,118,26,71,55,33,115,164,171,196,82,209,217,203,75,196,33,255,72,206,202,139,134,0,234,251,125,80,88,51,129,160,218,26,6,232,237,142,159,55,176,181,79,179,106,124,128,183,239,177,159,52,34,37,167,180,160,146,88,228,133,179,31,198,204,33,247,203,223,144,56,119,80,115,86,246,245,205,175,78,184,59,107,143,54,108,62,189,114,57,104,22,20,73,154,68,61,63,160,9,221,220,111,152,60,164,145,45,164,195,106,123,44,169,72,235,251,189,
94,58,228,1,17,225,199,95,177,79,141,189,143,222,252,121,252,92,229,71,153,226,191,39,19,63,189,35,71,132,98,35,137,83,20,33,154,208,30,149,138,112,15,2,82,223,61,181,232,216,193,179,65,15,93,129,242,9,244,243,94,199,141,114,209,229,42,198,86,113,35,37,149,208,213,244,166,150,139,8,172,38,128,226,228,85,39,44,126,168,125,81,237,59,37,210,98,209,198,50,127,116,57,31,12,134,45,18,251,123,184,232,129,139,127,199,74,54,49,189,227,90,175,124,207,48,236,159,3,38,118,62,162,236,221,65,215,89,49,255,13,99,157,177,93,64,96,175,156,73,212,102,211,6,212,220,189,181,207,212,127,45,105,188,101,110,116,212,188,215,196,77,193,240,31,93,228,216,126,173,132,12,222,143,135,121,10,129,177,85,79,250,212,94,85,242,47,222,172,189,151,54,73,93,68,48,206,231,254,122,223,92,134,36,247,129,223,195,209,73,244,8,67,178,240,144,247,184,154,99,56,34,80,56,38,183,151,118,212,58,254,70,154,116,211,112,225,145,55,193,206,83,201,110,33,206,
218,57,25,213,198,245,174,162,89,172,63,239,37,208,103,4,231,26,197,135,201,16,177,87,115,41,50,37,91,170,6,254,55,93,254,224,32,234,197,255,63,14,246,110,249,64,47,33,222,179,81,209,213,36,166,89,23,120,150,115,198,60,207,147,131,71,124,191,196,119,137,243,66,133,120,192,97,210,147,8,68,249,119,82,200,236,250,102,103,164,229,81,158,78,78,111,243,148,144,126,255,211,100,83,59,61,150,226,211,211,12,209,61,169,234,140,166,235,188,117,40,95,43,117,47,139,123,108,65,238,232,234,5,111,2,83,56,232,232,170,216,133,203,219,7,199,43,135,180,45,236,62,28,241,248,242,33,233,21,213,67,151,244,144,165,17,131,94,126,135,81,87,114,251,129,230,121,255,87,45,182,43,255,148,139,163,72,88,90,130,230,98,182,153,48,114,113,171,52,172,101,90,122,194,174,116,152,82,185,178,187,233,16,183,59,57,5,17,250,115,44,130,41,61,190,146,62,9,142,177,149,49,192,17,37,71,252,103,112,171,112,124,172,174,243,36,31,236,230,50,157,170,48,209,168,135,
31,201,211,126,63,25,238,198,250,62,168,19,162,197,253,111,95,100,66,183,14,123,81,50,176,141,130,231,82,37,219,112,129,104,254,164,208,62,107,241,249,161,145,55,97,248,9,191,46,103,64,214,103,101,165,222,38,229,148,187,211,206,214,24,39,203,217,26,159,68,131,153,24,198,253,104,243,143,71,165,25,204,20,135,95,141,158,91,117,111,102,46,47,196,199,181,248,244,64,183,127,231,100,90,138,239,181,202,103,18,47,224,252,61,157,34,84,184,136,29,114,242,43,242,172,202,155,19,226,189,222,9,252,141,19,170,139,244,123,214,213,236,69,182,80,60,231,63,59,185,207,12,188,28,206,149,14,179,222,236,142,139,64,203,87,175,250,19,67,162,253,72,126,224,106,112,221,41,177,90,192,205,76,183,212,50,32,139,2,150,79,100,106,67,252,237,226,113,158,131,134,212,152,148,16,112,177,48,219,141,46,130,147,35,43,22,242,212,205,83,59,12,111,65,88,152,208,223,9,147,199,220,114,219,126,16,254,223,109,127,110,202,173,110,103,1,225,187,8,211,182,54,89,143,196,218,
69,113,9,230,17,237,109,44,201,113,215,159,143,66,252,61,229,125,251,34,178,43,14,148,202,234,217,145,161,121,54,212,111,124,205,14,152,142,28,186,254,183,113,140,13,250,242,247,71,113,166,121,143,65,161,127,155,64,107,162,235,241,255,185,66,245,121,97,146,236,223,249,238,239,205,198,11,185,197,5,246,72,59,186,254,129,38,129,242,33,194,124,95,67,48,185,219,233,16,192,111,0,250,42,251,255,152,123,179,101,103,121,44,91,244,85,190,216,87,167,66,187,74,244,160,125,103,27,219,216,166,51,6,27,184,74,58,97,99,192,180,162,121,250,45,175,239,175,236,42,163,78,85,86,156,136,19,43,88,216,178,16,32,205,57,230,24,52,154,213,210,62,38,99,29,108,111,237,134,40,123,151,178,126,195,109,75,194,73,91,62,247,229,195,2,153,145,193,176,225,148,129,243,34,46,77,53,233,231,120,62,44,229,165,60,174,151,219,200,78,151,165,126,62,15,11,13,164,9,191,169,219,220,47,59,162,249,112,133,47,30,109,224,81,146,182,246,137,21,7,18,133,103,73,246,175,
196,247,189,189,157,169,148,121,23,35,116,196,250,213,155,57,86,163,202,114,114,44,126,66,125,226,60,62,80,6,9,144,114,19,181,41,3,184,210,103,127,92,153,43,245,22,238,31,150,23,93,81,15,111,67,148,98,191,230,88,51,129,220,228,180,213,240,189,57,2,16,216,98,48,17,96,3,19,152,183,129,145,53,74,53,243,174,107,225,51,104,249,180,86,73,110,51,99,60,174,31,43,141,189,135,34,240,187,44,141,204,246,236,131,187,212,142,181,236,60,23,150,165,36,139,176,92,138,239,115,99,48,190,168,119,249,170,25,247,143,45,121,40,198,111,31,170,240,208,195,239,116,35,187,16,158,5,210,102,193,69,231,160,35,15,184,228,65,215,160,14,47,53,96,21,200,50,138,111,71,72,146,160,23,109,155,78,243,155,116,222,163,148,40,236,17,36,97,59,156,250,149,53,143,52,152,53,163,30,139,23,152,108,48,194,109,1,87,26,209,110,247,56,35,241,61,47,214,225,50,178,43,91,243,142,216,190,72,32,186,113,15,174,92,207,183,172,140,173,24,228,207,202,246,216,120,
229,217,237,88,8,190,56,49,21,215,226,129,156,81,40,241,113,174,192,43,187,226,39,114,15,228,73,14,84,69,176,144,133,17,22,184,69,246,217,59,39,219,119,44,73,71,32,185,82,38,235,82,134,158,13,71,252,87,5,93,42,225,185,79,35,142,166,1,188,49,141,205,186,115,6,157,106,241,249,110,68,159,145,172,241,227,190,218,68,86,14,80,110,191,151,56,40,79,149,175,37,156,190,247,86,31,46,143,96,123,96,180,183,124,87,188,11,62,35,215,57,115,82,207,178,151,235,81,142,226,36,119,90,203,144,234,109,182,127,68,113,225,130,34,189,77,216,231,98,148,100,81,107,241,48,116,150,171,190,161,97,54,122,95,23,42,50,62,96,250,144,80,133,50,124,16,8,1,57,66,25,173,94,170,76,242,112,255,180,88,120,127,31,207,55,176,95,20,195,37,19,98,197,103,213,76,197,142,142,51,241,104,206,29,113,235,235,202,241,58,180,217,115,113,58,212,123,175,224,62,193,229,19,138,222,37,188,164,108,170,164,20,45,253,155,152,236,244,159,199,145,110,100,221,0,18,
106,251,68,96,79,86,186,233,114,35,124,113,87,240,254,206,223,191,132,23,34,220,71,118,76,199,244,66,102,249,125,229,251,111,122,135,120,120,159,14,213,222,19,185,207,198,104,245,164,189,25,229,94,62,241,72,22,80,12,224,41,113,90,113,100,7,138,3,245,147,34,115,101,107,253,145,224,59,47,144,135,80,2,206,10,213,238,106,4,175,234,138,94,177,109,58,237,180,231,61,107,26,210,139,205,165,210,16,23,126,82,143,141,54,28,45,62,61,7,70,118,223,37,237,203,190,60,249,221,83,94,222,155,230,74,100,110,165,18,4,246,171,141,121,116,126,237,184,132,72,102,178,153,51,97,219,137,185,70,228,135,249,205,238,155,60,131,179,109,109,87,163,90,244,177,147,108,41,24,185,110,208,183,205,249,112,81,90,173,47,47,86,121,170,111,47,138,168,126,215,221,229,5,166,208,198,154,120,132,228,146,157,54,33,200,141,0,189,75,110,94,79,233,109,91,188,147,73,51,94,88,31,223,197,163,201,53,24,64,221,231,75,102,81,46,199,200,59,74,222,247,157,47,116,190,190,
164,90,148,229,67,4,109,62,238,120,164,184,193,11,15,154,142,205,252,78,183,127,198,103,188,219,174,125,187,232,225,145,111,129,171,180,170,192,109,195,221,49,180,14,155,234,246,86,26,27,242,35,253,83,224,32,13,152,7,75,154,11,22,119,188,56,235,38,89,206,10,37,227,102,84,149,4,205,220,163,239,207,91,67,109,34,195,99,240,142,63,115,144,5,162,69,45,114,236,6,108,77,115,24,185,169,27,14,3,96,236,99,231,167,243,251,124,1,49,2,9,188,115,184,134,44,11,121,208,95,22,61,38,133,76,48,42,70,82,19,213,134,17,63,131,135,3,108,18,83,240,196,53,138,181,15,7,109,8,48,196,172,152,185,46,160,176,3,71,31,193,15,22,18,211,150,229,147,12,236,152,164,31,104,167,60,126,66,196,181,246,204,139,80,138,211,251,127,241,29,186,25,98,42,64,102,38,251,156,127,79,123,186,45,199,238,23,252,213,63,163,174,201,254,201,41,16,26,222,27,166,73,59,249,88,141,159,71,181,223,80,46,85,188,49,35,30,118,84,142,109,183,103,233,200,55,
231,235,251,189,125,14,194,170,124,38,166,47,131,165,236,110,151,3,180,179,213,78,236,204,196,75,131,80,161,94,195,252,120,10,159,255,104,169,180,44,61,160,179,135,15,54,155,141,227,49,150,154,44,70,252,228,166,212,164,156,17,180,126,139,210,196,224,239,17,224,105,71,31,65,33,33,233,194,37,152,56,53,186,108,181,143,15,40,23,99,68,209,222,239,88,222,51,3,107,91,238,79,214,133,198,149,36,152,158,234,171,218,27,23,38,152,222,163,53,128,33,77,65,209,161,231,94,17,159,251,241,44,165,14,235,123,119,203,89,143,237,209,48,131,162,62,26,151,37,152,152,187,14,160,136,221,190,54,35,97,23,171,226,221,169,247,141,117,209,225,235,22,76,141,187,96,142,175,74,11,91,233,131,8,147,1,66,235,137,147,181,190,87,73,200,204,101,170,196,217,38,38,47,159,231,185,198,90,20,122,66,14,195,193,233,18,123,202,222,8,107,221,8,138,88,211,172,96,241,8,69,223,40,45,69,228,150,124,23,104,102,155,237,178,100,174,245,227,238,153,123,94,31,190,230,231,
37,174,225,241,146,28,34,202,14,17,203,174,143,209,205,216,92,115,219,68,88,202,231,16,76,193,231,53,248,0,91,238,29,115,2,59,158,225,37,168,44,57,22,7,39,201,21,14,142,215,172,98,216,71,127,25,162,169,172,140,84,18,62,102,188,115,121,121,181,234,110,45,121,217,51,63,136,163,237,246,17,234,174,150,228,41,239,202,172,205,62,240,198,185,200,56,131,181,101,61,45,224,158,196,130,118,74,25,94,68,78,242,125,128,129,155,197,83,35,156,82,217,114,131,57,18,95,42,63,94,254,168,251,192,76,193,35,183,102,211,7,140,55,160,100,52,56,94,54,243,196,40,91,30,31,162,26,149,128,5,157,13,174,242,56,172,199,81,255,158,207,19,109,82,112,209,228,87,56,89,154,101,76,194,84,30,22,200,61,36,13,152,25,200,97,67,154,217,73,20,134,130,22,131,246,123,161,156,215,194,74,130,139,171,233,180,103,229,26,246,3,103,35,7,222,176,123,196,125,38,14,154,179,205,48,48,249,13,15,167,243,247,42,216,171,185,1,30,12,64,214,198,198,135,105,148,
214,99,5,25,59,161,199,152,179,86,98,214,187,163,161,120,226,250,124,52,48,196,13,110,103,153,225,202,15,18,73,233,243,187,237,78,241,74,189,54,19,193,107,29,174,70,14,90,188,57,91,182,89,187,246,166,236,75,70,134,250,204,183,204,40,9,140,120,190,177,227,193,207,132,27,144,96,107,15,139,91,217,72,98,104,223,12,40,9,101,27,237,4,23,103,104,234,52,178,203,51,195,41,156,170,131,221,40,197,201,220,74,91,112,102,65,143,92,130,19,192,103,104,87,138,15,27,28,139,67,26,175,160,126,35,193,43,214,226,129,143,187,3,67,85,131,36,143,28,8,152,112,3,247,17,127,171,179,17,161,177,129,59,178,190,224,247,117,200,4,30,194,51,16,15,179,198,9,64,101,61,184,229,43,188,206,48,213,248,159,237,88,29,142,119,35,171,193,82,43,37,95,87,37,162,66,4,142,156,117,229,217,110,29,239,64,139,96,71,196,148,143,177,25,5,207,175,45,73,119,112,192,178,174,245,164,43,180,61,201,20,39,229,72,203,35,255,107,67,199,177,193,242,231,48,93,
26,177,169,134,228,83,79,251,187,239,15,41,140,233,201,137,196,61,218,223,11,36,171,255,48,34,184,240,70,204,181,139,80,84,10,75,207,195,198,233,152,48,53,165,131,152,40,112,130,200,68,0,234,178,6,174,76,253,180,197,19,47,186,144,35,246,21,203,157,18,138,18,215,193,73,100,202,157,238,17,42,132,80,177,86,214,205,107,228,130,242,113,142,213,70,112,25,192,132,88,23,162,241,176,70,223,123,137,0,226,117,79,54,16,49,43,93,120,165,3,12,218,138,219,238,83,67,185,33,74,12,30,194,225,129,136,146,125,52,40,97,202,133,108,200,193,16,188,48,172,61,137,121,84,101,244,134,140,47,211,240,71,203,182,150,21,183,3,165,58,252,236,34,10,83,207,138,194,84,5,83,101,207,223,37,137,137,73,91,74,196,127,168,129,243,58,254,195,229,209,186,88,209,238,226,54,255,201,105,254,77,55,244,125,103,252,255,137,210,98,236,135,159,228,230,191,167,189,26,62,83,212,165,127,151,175,238,95,254,73,60,215,188,254,58,29,246,87,113,147,224,124,179,157,84,55,
55,101,245,237,91,86,150,37,137,34,132,108,185,93,74,95,62,31,251,247,231,97,190,10,41,18,165,35,220,25,98,132,113,97,104,30,123,219,159,242,215,230,31,44,219,147,155,37,26,69,132,225,85,138,36,54,95,149,100,251,199,103,197,93,252,10,245,220,37,254,160,36,58,198,1,197,118,110,13,28,242,166,42,139,73,159,169,125,103,67,255,202,15,162,245,50,41,45,180,102,99,10,80,45,93,164,174,145,112,221,200,25,95,82,192,150,24,226,240,8,217,234,102,50,40,182,171,249,82,181,108,12,63,204,16,54,41,159,242,187,49,186,157,86,114,247,239,217,131,145,142,207,211,227,44,100,106,113,88,140,252,100,184,31,233,241,234,40,23,244,189,116,47,172,252,206,253,212,167,214,40,2,198,17,128,93,92,110,65,117,254,232,178,46,82,89,182,190,239,157,100,61,63,183,195,22,158,59,171,77,138,183,120,116,119,172,233,120,219,212,118,25,69,251,94,72,107,164,112,189,176,146,182,172,236,70,12,147,213,88,105,35,117,200,154,134,155,240,229,172,70,88,172,146,170,151,
154,181,99,91,149,117,172,35,182,87,101,122,235,187,169,191,235,59,97,60,191,166,65,191,250,188,12,12,38,224,56,49,61,40,124,195,214,227,221,225,174,117,240,233,245,5,249,189,126,89,174,31,151,139,41,78,43,148,50,114,67,203,40,71,83,25,91,16,121,252,219,188,16,184,104,253,211,186,179,169,255,138,31,236,224,184,29,213,66,251,185,15,143,137,173,112,9,108,253,4,49,96,212,66,234,188,73,37,151,244,244,207,236,98,22,9,239,113,243,16,59,90,204,161,254,252,193,92,156,126,103,93,140,115,77,31,56,95,100,157,44,19,67,200,58,226,212,8,75,90,135,140,55,202,163,60,155,114,166,61,181,136,112,53,143,49,39,167,7,144,120,44,225,219,130,207,41,88,241,72,168,212,92,48,46,106,174,216,175,84,5,110,76,136,132,64,9,192,133,26,239,211,79,131,141,104,211,177,56,125,36,187,88,122,193,114,203,179,165,50,72,205,100,220,216,61,144,187,239,252,200,242,122,12,125,63,182,76,204,231,118,85,106,38,151,54,241,11,218,147,50,39,254,193,241,85,
216,12,60,143,178,47,206,71,152,140,226,93,123,108,51,125,81,200,69,126,73,227,187,21,72,39,84,87,66,190,56,246,211,38,19,149,13,2,62,24,229,167,47,39,154,185,122,204,97,160,118,53,155,124,170,57,244,124,24,122,62,41,175,187,37,39,215,98,10,103,194,35,202,97,39,229,172,190,20,124,116,118,22,67,219,234,147,122,101,243,110,126,164,99,29,227,89,166,227,42,74,89,253,41,106,145,195,47,49,123,28,50,141,165,231,34,208,186,131,226,214,60,122,49,162,57,46,128,24,28,132,170,21,243,114,198,153,153,134,224,121,165,86,247,60,239,0,74,89,95,20,93,246,167,93,19,214,159,22,13,180,187,110,204,168,191,7,170,153,94,15,73,80,124,158,42,38,229,172,211,145,253,20,148,182,43,175,65,67,41,98,239,171,212,157,52,89,125,188,60,89,227,205,129,177,133,16,164,53,203,116,210,90,203,221,209,230,79,227,4,106,155,201,22,34,88,202,12,109,141,127,96,32,125,196,20,123,196,122,62,102,201,23,78,112,137,109,184,215,101,150,191,83,27,201,70,
248,126,212,154,73,198,25,52,152,229,249,123,173,119,130,200,247,121,86,249,128,115,228,85,238,76,10,253,177,93,81,184,127,216,124,247,99,139,44,229,181,27,16,120,48,52,60,153,82,255,124,250,72,168,41,208,55,116,84,141,133,241,186,218,247,109,250,17,74,88,103,88,2,245,167,28,71,91,23,75,202,210,35,186,61,44,108,94,134,38,132,112,131,161,12,98,172,177,50,243,57,65,81,244,74,31,98,69,185,192,17,42,202,250,28,59,40,69,213,249,101,38,188,111,195,102,204,156,85,121,159,19,12,26,139,67,69,176,124,95,253,164,177,42,177,32,255,121,92,200,55,127,129,200,80,158,158,109,49,124,105,24,230,164,135,202,53,187,8,91,56,238,105,145,205,249,83,124,145,117,229,65,181,136,208,113,62,93,137,221,17,211,186,162,86,137,85,80,58,254,184,131,224,156,222,35,19,10,167,249,191,128,109,83,190,59,157,254,225,114,83,93,113,235,124,28,215,15,190,152,191,249,141,244,201,179,251,84,209,63,137,231,212,191,205,205,225,228,175,26,195,26,178,204,105,124,
115,108,54,215,203,94,107,26,53,75,68,184,181,120,131,15,107,53,41,113,116,122,85,75,106,200,6,154,207,113,73,112,156,45,83,185,14,167,219,127,156,98,231,143,69,152,248,183,82,191,85,238,109,129,22,67,195,179,33,82,81,37,105,74,14,187,140,27,26,182,89,124,253,32,172,125,82,230,26,30,235,232,94,176,37,183,227,199,13,73,168,65,168,104,250,88,58,123,64,44,44,83,163,233,183,246,181,182,187,199,61,243,189,228,185,17,206,219,233,88,188,150,128,142,105,242,236,197,134,127,100,251,117,41,151,131,154,31,181,109,198,113,60,244,41,111,170,14,102,50,239,225,182,182,219,236,184,87,206,231,39,107,111,164,171,172,32,133,109,164,243,34,73,72,85,142,235,173,126,22,134,21,10,135,117,34,111,139,138,208,115,148,189,18,48,204,93,38,109,68,243,62,79,227,230,213,239,206,137,164,156,97,49,88,237,58,8,245,8,64,196,44,29,255,216,164,73,147,60,43,225,84,78,7,142,4,216,144,48,212,92,64,174,103,201,101,120,118,112,199,161,242,81,175,178,82,
253,60,214,155,116,220,104,137,108,108,225,122,94,31,22,193,253,149,235,248,193,173,233,169,10,123,80,100,185,167,244,131,224,134,211,86,46,226,28,195,171,252,202,196,231,202,158,164,88,144,27,32,202,29,60,227,203,113,100,221,23,79,97,110,216,156,146,73,82,182,48,130,247,21,94,82,94,179,82,63,161,189,70,181,239,70,114,28,225,164,82,101,183,123,240,178,250,229,205,4,120,242,104,37,209,40,22,208,25,123,86,193,155,189,144,213,83,69,153,203,219,146,106,112,7,245,32,162,23,7,185,171,114,40,238,138,223,25,96,39,78,211,240,236,40,171,153,82,222,70,103,138,159,17,15,251,76,98,213,118,57,115,34,222,93,4,236,79,53,109,99,28,105,27,44,128,21,36,129,220,17,84,124,99,67,160,73,64,127,40,155,80,216,201,147,251,237,35,214,102,13,36,201,46,107,9,188,152,162,156,215,5,255,251,194,146,230,138,172,160,131,22,240,52,14,73,0,73,234,141,5,107,61,14,46,51,197,5,29,227,73,196,207,139,66,201,62,108,73,195,59,212,149,63,166,238,
202,46,173,220,77,54,94,136,25,144,220,92,63,71,30,146,81,146,19,177,85,182,224,62,3,173,108,95,25,11,188,172,48,194,162,5,34,48,187,184,137,191,143,120,43,7,77,216,198,152,240,233,29,196,140,116,69,151,19,218,54,98,76,15,31,63,49,99,63,194,181,25,229,254,231,233,30,81,91,51,248,18,91,56,223,29,52,35,203,195,8,81,28,38,238,157,30,7,187,213,99,232,198,84,166,112,132,149,207,208,135,25,107,121,60,91,48,2,159,135,197,168,162,7,236,224,247,190,102,152,108,164,213,229,193,41,163,68,122,132,222,221,68,2,166,52,56,69,49,149,16,178,96,25,140,84,45,14,233,83,207,244,163,39,232,40,158,82,59,234,108,101,133,108,167,18,141,40,235,18,174,7,87,89,1,240,127,31,195,224,130,10,102,24,185,16,152,91,168,64,177,88,240,3,223,118,4,24,108,46,64,177,174,27,172,24,112,226,146,148,90,194,139,217,210,6,168,128,177,4,241,121,143,71,155,231,107,255,186,127,240,62,104,51,216,241,99,94,0,223,104,102,202,129,231,76,
212,87,139,56,54,132,116,89,121,142,159,62,161,44,104,64,10,33,216,82,141,162,66,55,132,243,139,154,234,7,27,223,58,156,117,132,223,156,206,126,29,196,148,247,218,204,26,161,55,184,125,185,177,182,218,12,109,179,120,18,193,95,86,168,26,155,245,31,46,72,45,225,134,154,158,108,39,191,57,110,61,116,81,63,252,147,89,34,182,110,110,204,251,189,235,240,219,121,212,158,209,186,217,92,220,200,80,57,153,215,225,187,234,112,246,188,135,31,52,143,59,191,146,11,105,16,235,70,123,128,14,90,241,17,34,172,160,54,133,156,237,89,114,10,31,53,223,17,105,181,83,100,183,4,68,188,108,3,91,182,23,59,213,232,96,71,80,132,84,253,117,15,4,223,201,233,187,205,219,166,33,242,66,197,141,202,209,94,39,223,89,162,191,109,172,43,145,152,148,163,53,186,118,181,1,163,80,184,242,124,66,197,18,163,196,41,140,106,236,210,186,114,44,177,128,154,71,231,116,33,15,163,187,13,18,121,12,237,140,226,233,29,243,172,6,238,246,99,137,197,154,245,161,171,193,200,
163,40,203,12,178,196,74,29,160,145,146,17,60,153,58,51,244,41,9,64,201,207,15,160,27,78,24,16,170,116,82,4,14,233,224,193,143,124,115,97,61,62,254,243,207,142,123,128,160,67,144,192,30,202,146,40,198,28,219,161,7,74,224,234,34,105,131,106,185,247,25,67,150,26,20,114,37,129,15,194,218,209,158,32,133,161,138,138,154,3,127,218,46,118,55,104,144,91,225,176,225,25,150,7,12,70,167,35,24,123,56,173,168,204,69,30,237,215,248,234,67,16,194,193,227,37,107,139,179,192,24,97,233,241,140,166,216,144,213,248,117,35,15,124,74,49,41,15,82,120,27,6,198,124,192,37,143,190,159,123,198,228,48,223,170,55,180,236,67,248,24,246,120,149,37,5,29,161,67,220,186,135,39,148,13,190,245,201,56,153,202,119,19,22,143,23,150,248,143,191,80,174,80,43,155,99,111,61,222,191,19,123,59,89,245,33,217,47,202,247,158,209,175,63,253,235,175,238,247,247,63,114,253,252,204,195,245,167,255,245,170,255,244,175,127,36,240,249,211,255,250,93,247,127,255,250,
212,229,242,171,204,34,242,205,212,131,199,146,126,251,52,81,59,126,21,217,79,107,156,40,254,203,79,166,157,223,201,130,254,40,101,254,229,143,198,255,247,239,214,127,151,82,152,205,250,231,167,76,127,69,253,175,38,234,162,42,27,178,238,255,213,238,183,155,205,254,239,236,62,224,54,65,102,111,240,235,184,9,182,183,203,30,174,8,129,231,205,96,144,126,155,206,69,6,42,77,10,172,248,250,128,224,3,133,140,192,41,185,209,45,189,253,241,154,255,133,98,188,234,244,69,94,233,24,149,191,156,95,199,95,219,95,27,202,58,162,186,254,115,167,244,175,170,41,179,95,89,59,254,15,166,208,107,229,93,127,190,238,55,225,147,103,87,236,111,134,115,224,104,79,202,30,66,146,76,246,99,238,222,71,121,119,181,183,114,136,234,85,171,239,3,110,116,100,178,29,142,249,89,134,169,156,65,205,23,53,144,146,167,133,154,111,206,128,181,64,248,204,221,14,28,135,151,218,76,138,143,45,149,106,72,40,45,143,117,57,229,208,117,10,97,191,183,253,116,93,103,191,128,215,250,56,
22,182,57,236,112,28,109,32,199,108,225,240,209,64,124,178,211,250,201,43,233,143,117,82,38,217,245,145,100,40,28,115,70,195,71,135,128,197,211,247,138,34,221,142,114,68,234,117,251,235,143,117,47,54,240,147,25,163,118,131,154,24,178,179,246,64,114,154,219,241,195,70,216,41,72,231,147,163,213,125,243,102,140,48,199,42,118,127,60,20,165,41,134,235,172,141,148,60,11,92,94,67,191,207,228,168,129,69,100,165,200,66,226,112,33,192,12,68,142,233,96,205,68,212,153,215,34,186,97,20,58,60,233,106,48,124,138,133,212,20,245,37,73,2,16,214,116,79,24,180,69,199,83,252,24,177,196,61,41,60,145,180,76,181,140,129,252,247,185,62,136,107,130,40,201,238,181,85,251,174,63,218,234,127,215,149,182,214,200,242,127,126,123,19,206,150,18,24,75,61,140,33,60,164,54,166,120,197,101,196,230,198,191,90,6,48,179,119,57,154,37,233,130,81,90,34,0,192,106,11,110,57,220,225,210,233,223,153,187,82,2,112,4,5,129,171,65,3,92,42,202,198,206,118,43,196,
244,210,164,8,239,38,186,125,211,39,87,159,207,215,195,254,245,87,148,166,253,175,103,84,226,63,253,235,111,143,248,195,3,135,207,175,254,119,165,238,51,230,207,95,89,154,103,253,191,253,186,125,170,108,122,70,195,175,79,220,127,74,234,43,223,4,88,56,34,191,103,255,190,241,191,250,177,201,232,184,125,141,52,253,125,89,228,239,179,98,177,204,255,249,165,118,209,244,59,121,215,167,252,231,38,208,195,113,220,27,249,126,227,219,13,196,54,195,137,247,187,80,145,220,78,219,245,253,4,230,169,172,30,251,215,230,202,138,112,157,16,214,33,167,249,246,110,151,93,77,206,178,246,135,114,138,223,185,126,135,38,81,75,86,174,54,110,96,28,204,66,125,83,203,16,243,133,4,193,121,67,227,234,154,175,125,4,221,201,94,102,73,132,102,173,22,140,13,218,235,45,237,25,227,213,96,216,31,25,100,23,60,191,177,154,138,157,105,168,169,245,86,133,218,134,171,40,207,237,121,25,111,205,35,39,65,19,117,189,177,121,196,188,43,211,129,222,44,80,41,198,124,21,89,177,82,
105,199,199,170,77,252,248,182,13,86,198,191,104,29,86,190,229,195,142,29,1,202,112,46,120,205,177,45,132,129,27,39,177,222,167,172,189,202,102,250,42,226,141,121,135,242,222,60,188,63,172,103,103,248,163,236,101,5,150,216,244,138,13,107,75,174,185,85,111,166,171,174,190,156,109,47,82,12,162,53,156,230,116,134,107,30,54,97,175,30,240,247,85,64,88,17,54,249,54,4,196,99,191,54,132,17,212,114,18,158,144,24,76,101,210,147,201,195,221,227,100,94,33,255,142,158,6,187,29,109,37,81,169,106,210,151,29,179,193,140,94,93,208,246,66,148,221,68,153,42,17,118,140,193,109,119,22,253,238,245,210,102,119,171,17,253,161,161,20,150,76,186,183,93,161,130,4,83,167,93,203,41,48,127,4,223,7,26,224,50,228,236,107,219,203,19,161,236,85,107,92,108,58,167,126,65,129,245,193,233,40,221,143,31,119,196,201,65,134,75,82,176,58,51,201,58,172,253,84,133,251,24,163,65,94,236,55,17,211,163,125,177,235,216,18,252,143,61,145,27,98,128,130,57,251,130,
97,18,119,74,0,250,44,58,47,219,26,103,187,157,159,144,194,92,158,148,226,250,116,4,90,97,134,154,252,198,254,205,219,152,80,126,114,188,236,88,36,143,69,24,217,38,78,205,104,192,171,70,117,238,39,225,129,116,32,12,238,199,222,128,153,96,211,96,31,79,167,135,105,8,139,104,179,139,13,223,80,84,78,119,89,46,112,103,98,10,58,141,170,217,188,163,28,212,81,157,70,176,65,119,217,3,198,188,11,209,238,78,249,194,241,80,225,237,196,197,155,248,42,80,232,106,3,140,18,249,26,152,59,53,203,113,248,136,242,195,6,74,186,215,65,187,95,107,91,81,194,193,222,4,144,209,157,109,62,148,228,166,120,136,5,89,72,80,31,108,194,250,180,141,165,130,243,247,246,76,62,30,217,193,233,98,231,170,225,172,220,117,135,229,177,196,37,203,67,78,109,235,116,38,0,62,108,108,197,124,124,5,217,204,168,239,63,79,200,189,183,207,87,146,31,77,98,51,15,10,11,135,46,203,40,24,208,208,249,117,204,127,46,182,132,91,234,152,223,140,25,142,166,51,188,203,
29,24,207,113,204,70,60,236,179,183,219,98,101,27,191,235,252,164,169,74,230,236,191,127,215,14,187,51,182,69,23,251,48,22,68,9,247,74,2,7,155,39,138,194,119,154,70,64,194,119,190,102,203,130,147,193,185,56,202,244,179,36,132,223,207,21,45,199,50,115,207,224,234,63,126,62,139,78,0,215,162,34,37,162,3,236,202,122,127,128,240,254,224,71,34,116,178,47,213,66,7,241,86,163,164,185,176,15,216,27,94,24,9,30,14,219,67,199,140,76,41,155,31,132,14,156,52,134,72,55,140,108,125,248,164,31,151,187,108,55,45,51,203,102,8,23,57,125,88,140,76,84,127,100,196,49,38,61,27,137,238,136,204,76,118,199,121,4,252,125,29,204,133,187,140,232,12,30,116,187,193,94,30,21,65,13,184,114,172,156,50,58,147,202,166,151,214,41,57,248,3,127,27,66,190,103,93,74,74,21,54,227,211,219,160,101,252,221,15,249,136,98,123,202,182,143,84,78,239,72,75,187,212,31,184,128,175,237,233,24,45,59,18,127,86,226,185,240,66,226,150,37,183,27,220,145,
208,231,253,165,227,66,200,38,15,248,33,236,125,11,65,139,74,124,135,55,18,251,34,255,34,92,95,3,11,37,41,132,169,4,102,252,137,40,75,141,186,209,95,121,133,100,26,61,25,68,0,93,241,104,156,160,84,80,80,69,149,144,41,38,230,40,71,249,230,210,131,50,93,101,71,178,226,191,170,223,199,232,3,218,241,48,120,63,219,82,3,227,233,234,217,41,60,212,249,167,60,177,52,130,209,21,82,98,56,200,147,189,186,127,179,47,44,157,237,244,184,102,218,239,187,159,250,171,206,254,39,246,22,255,216,219,230,238,196,178,46,75,137,232,246,167,163,203,126,222,169,164,220,245,71,97,109,96,255,46,174,74,181,248,223,9,57,32,127,5,135,184,235,169,0,188,200,126,229,14,159,72,76,88,36,95,146,165,134,204,200,26,194,202,11,118,148,14,129,172,104,241,83,163,134,203,185,252,69,59,139,7,190,176,151,248,194,150,220,66,98,178,79,75,254,230,119,188,57,6,62,139,43,14,131,71,18,0,195,152,105,247,134,74,159,160,192,195,49,197,101,232,125,164,143,232,
136,115,227,52,7,102,37,1,131,94,242,150,127,110,43,175,197,25,230,124,209,12,3,21,25,156,162,203,7,184,154,134,6,135,107,1,122,33,131,102,174,248,124,35,35,251,184,76,54,39,189,85,68,145,154,9,162,192,7,227,222,147,131,18,249,241,14,130,69,49,233,248,200,81,230,147,149,92,34,80,31,113,200,10,209,119,12,25,196,107,133,44,129,225,73,137,94,12,142,116,8,232,88,113,116,69,199,138,131,58,93,125,199,42,177,81,252,185,215,61,45,31,30,153,77,24,101,140,87,12,198,159,13,80,170,87,0,62,49,140,125,107,26,160,134,105,27,24,147,53,86,204,184,70,114,43,63,33,141,104,67,92,71,15,152,195,132,64,78,199,19,30,211,33,6,42,220,249,34,126,203,177,54,117,178,65,210,96,160,76,203,121,23,16,6,237,200,12,195,29,45,112,9,229,27,224,124,78,135,103,236,241,67,137,110,240,37,115,37,122,147,15,175,240,153,71,250,82,41,208,210,201,23,42,193,196,51,60,225,224,193,181,80,176,37,204,159,73,175,199,119,28,80,157,142,200,
203,94,18,255,91,255,160,184,84,81,39,28,74,153,35,224,100,235,158,81,57,50,136,43,186,45,108,68,246,150,220,9,181,66,60,89,208,199,5,127,114,34,233,44,28,18,185,97,191,79,233,80,217,114,246,222,58,188,1,191,143,25,126,32,30,159,67,73,104,58,83,185,207,84,245,253,244,53,61,247,33,251,233,155,225,223,251,244,128,153,205,72,229,235,225,183,77,239,203,111,222,207,255,137,89,63,157,228,117,154,213,141,115,45,122,217,1,6,120,190,95,231,247,230,189,110,3,163,108,219,219,163,107,65,216,141,138,46,69,143,75,92,239,229,123,66,36,96,59,172,98,142,196,105,36,203,102,245,166,54,158,153,151,42,176,192,145,110,220,69,116,24,108,251,146,8,47,206,247,189,163,249,146,252,5,248,67,178,74,24,138,32,155,56,155,97,63,160,114,96,68,194,78,133,195,122,175,13,27,141,15,69,220,216,2,234,143,247,209,31,162,138,142,85,111,9,48,60,49,60,253,93,151,237,222,96,115,217,154,171,162,94,236,111,34,30,199,207,0,202,167,126,170,225,49,34,
68,49,148,231,58,15,81,60,101,24,61,7,143,65,211,252,206,86,42,197,51,198,32,86,148,91,92,26,186,216,54,175,26,214,2,55,54,251,25,223,73,134,167,85,82,129,29,164,242,182,199,178,218,246,78,223,195,124,229,4,207,156,76,136,217,160,8,77,170,66,248,184,14,92,115,135,106,158,59,217,212,106,148,247,39,206,3,1,136,254,8,68,40,113,38,216,146,17,218,235,117,91,172,242,182,26,58,25,169,118,11,116,80,202,160,179,250,42,170,137,156,128,41,108,35,208,97,40,144,91,230,238,227,51,201,38,112,227,221,106,61,26,190,185,177,70,188,92,139,176,128,174,29,124,220,158,131,69,71,160,89,25,123,157,139,19,105,35,0,148,198,199,161,146,36,27,29,83,108,176,123,44,26,18,8,91,26,185,67,150,89,189,153,118,165,252,172,154,78,210,104,119,70,21,110,50,248,158,187,112,108,254,195,49,172,62,206,197,117,133,240,108,127,2,215,217,161,167,6,138,213,154,148,30,189,173,161,229,1,38,170,132,38,72,153,60,204,165,234,93,200,58,134,71,128,3,
42,19,226,87,215,24,176,93,143,55,77,190,217,104,216,62,27,120,126,153,158,38,215,124,44,151,168,232,37,60,209,243,112,208,208,193,176,50,130,42,248,94,153,125,63,173,70,38,54,130,94,138,224,231,195,93,225,117,5,140,23,157,72,159,137,17,168,240,116,119,111,43,149,93,223,246,169,136,138,129,107,197,5,9,84,190,102,93,204,132,110,5,80,194,156,11,169,23,203,11,120,214,202,71,96,175,48,218,33,7,60,240,236,223,152,78,190,250,99,188,71,186,106,8,67,9,109,158,55,142,123,24,149,208,101,43,227,88,98,254,73,13,76,178,86,115,152,39,241,85,78,235,244,166,17,239,110,39,189,210,208,224,51,111,4,11,145,102,129,243,252,214,135,29,124,106,60,62,186,195,232,43,56,129,1,26,160,12,16,63,55,93,72,155,214,168,50,173,228,33,114,184,39,115,164,220,75,231,1,229,76,67,22,128,10,138,233,54,99,198,117,172,210,84,217,41,41,212,216,206,50,160,235,141,144,80,149,118,19,14,208,67,88,129,200,30,102,119,130,208,207,108,182,186,49,58,
242,106,155,35,143,180,145,235,73,133,119,182,222,129,242,126,130,231,212,4,74,86,81,94,69,193,230,208,64,244,98,48,183,70,246,26,15,154,72,184,59,184,106,50,142,167,225,119,162,164,253,207,133,136,236,175,64,225,43,189,250,108,248,201,106,156,117,223,28,74,127,232,174,159,107,22,255,28,100,168,219,93,98,76,155,141,179,45,69,217,170,35,5,238,138,252,211,109,125,115,122,222,167,100,158,249,76,100,184,4,174,162,188,174,0,106,73,6,33,156,88,128,255,91,25,82,129,142,255,38,159,220,127,49,23,220,240,119,109,32,222,6,202,152,240,175,255,94,251,10,135,14,8,189,148,219,127,186,205,208,106,176,219,202,149,73,58,121,216,115,186,13,145,62,220,104,91,110,48,80,65,66,216,72,146,1,167,248,255,233,62,117,248,81,175,79,120,242,222,191,175,87,37,67,84,231,229,255,8,211,183,113,126,250,185,48,170,157,185,34,113,173,155,159,62,55,137,234,220,81,66,198,178,91,101,111,112,237,221,49,94,80,236,73,131,146,37,23,5,10,52,92,158,67,184,106,
16,92,87,88,16,129,167,146,82,228,37,8,249,210,146,144,15,230,51,123,38,137,133,135,194,106,82,88,185,233,43,102,221,26,94,214,214,205,100,15,6,85,122,173,161,105,200,111,216,122,88,180,156,254,13,165,97,206,27,32,59,48,23,143,75,42,175,144,169,131,10,93,69,200,245,210,155,31,239,54,215,212,158,37,203,48,114,71,55,27,48,209,185,178,246,70,164,192,86,235,93,171,75,87,17,236,107,143,210,108,242,134,196,181,26,87,102,161,233,188,27,0,92,57,22,198,255,95,236,131,194,52,60,200,201,142,63,215,94,11,185,179,37,154,210,115,69,67,200,234,68,121,225,193,181,218,20,54,183,244,70,117,81,45,111,214,246,142,101,168,204,133,232,236,204,82,163,44,70,180,155,219,0,223,60,119,145,152,14,139,166,248,26,145,234,192,79,115,92,206,176,115,139,243,21,177,33,122,55,214,220,192,55,5,86,15,50,205,252,110,50,233,3,23,175,8,223,244,171,211,183,153,252,86,38,143,4,38,164,112,29,166,212,35,184,155,196,20,88,28,190,237,29,121,160,70,
65,103,39,28,142,46,110,255,194,2,115,226,124,56,119,244,220,204,117,27,97,137,177,214,194,169,249,171,214,64,218,5,213,214,135,208,173,193,96,130,16,130,163,133,138,180,230,5,109,132,109,109,35,26,96,11,34,155,104,221,202,68,254,110,183,173,249,137,110,247,116,101,65,229,160,156,232,16,72,122,22,211,136,127,159,56,97,133,192,21,77,78,195,192,74,80,101,64,74,223,220,180,251,62,202,94,132,100,89,13,40,135,71,12,251,66,67,220,92,40,178,32,130,148,74,51,11,28,211,26,234,198,10,135,119,8,121,104,208,94,29,140,207,233,47,56,215,253,141,171,252,127,128,116,33,115,174,205,251,253,144,80,30,170,239,251,75,73,12,71,51,10,198,91,205,112,223,29,212,235,226,185,135,189,199,170,87,223,104,76,163,115,93,131,221,70,126,95,108,19,99,176,61,231,112,72,46,251,235,117,91,110,174,251,115,18,28,222,172,183,173,238,154,119,184,62,146,199,33,224,159,131,37,242,4,82,152,20,87,209,54,76,121,226,161,120,16,161,2,107,172,21,10,132,89,150,
1,153,212,164,151,69,36,67,163,45,61,112,203,177,227,146,219,169,173,184,75,233,181,252,253,46,113,212,156,200,194,251,239,53,156,146,53,247,22,166,189,175,175,14,221,131,168,115,77,110,58,197,247,253,249,62,194,211,205,15,193,167,53,95,165,172,63,186,170,185,127,160,84,167,59,63,61,163,8,180,251,96,184,239,69,183,122,228,75,173,107,153,207,112,122,54,120,108,21,180,97,192,94,120,252,25,146,78,143,206,154,100,25,205,173,84,235,251,224,159,163,216,39,55,254,22,183,68,207,238,87,93,149,170,228,19,95,166,165,97,139,46,45,212,56,38,29,30,3,162,147,239,68,158,220,163,114,244,71,124,175,110,124,221,225,169,240,47,123,51,148,202,45,159,62,102,227,67,14,39,246,94,202,161,148,159,31,203,205,188,222,47,26,34,104,95,186,181,144,121,225,236,115,35,80,31,49,185,208,253,43,66,43,185,74,177,176,33,240,194,91,67,200,144,30,249,98,43,194,148,181,77,231,4,221,185,190,120,159,76,178,95,242,199,81,211,129,57,4,85,245,204,86,54,8,220,
119,31,189,172,43,44,208,173,206,139,2,72,245,74,170,203,196,19,115,226,139,230,214,18,130,205,230,129,117,43,228,220,153,19,143,74,95,181,93,17,52,184,89,102,182,28,186,224,179,25,83,201,142,102,69,123,59,98,127,59,222,55,236,124,170,202,254,86,151,31,8,195,71,155,10,215,105,102,225,115,71,38,198,45,170,205,3,170,89,118,108,87,165,221,13,171,208,41,108,10,220,49,106,214,3,63,131,219,118,85,122,215,246,132,104,97,47,251,209,26,118,135,149,60,105,127,121,149,240,42,123,69,59,92,57,38,106,11,191,47,139,251,195,81,121,253,24,177,110,91,63,240,100,227,214,178,149,211,93,57,133,5,121,23,243,166,32,90,70,226,69,87,10,253,242,82,6,142,109,42,29,143,47,86,151,69,39,172,194,55,199,210,62,70,107,225,94,188,230,42,178,216,91,175,227,45,231,14,149,18,184,156,166,114,107,128,79,165,120,9,227,61,63,56,245,187,31,90,187,187,59,212,241,177,119,76,128,64,100,56,251,163,219,37,70,184,83,248,131,114,204,230,234,18,132,57,
24,79,49,167,20,107,199,163,115,216,230,202,192,59,49,240,192,117,32,122,31,9,220,33,97,151,66,61,62,154,43,226,194,192,91,94,138,183,225,227,84,125,8,195,36,224,221,135,215,228,141,121,148,15,247,216,145,40,49,42,11,206,116,212,248,241,189,153,213,179,53,151,101,157,124,22,36,34,143,163,101,225,94,225,181,41,235,15,243,149,49,38,108,80,163,136,165,22,145,243,112,200,248,82,42,245,161,73,154,155,44,244,102,208,23,213,99,125,65,144,68,225,237,169,215,143,52,123,41,193,222,191,193,224,97,110,142,113,194,202,252,250,98,118,113,248,60,201,225,171,7,225,101,192,215,34,186,77,186,157,186,85,247,250,116,194,118,20,208,157,31,84,40,31,240,46,169,244,190,86,53,140,24,91,80,166,2,110,142,46,220,34,208,120,169,120,41,15,150,210,186,151,183,210,243,187,250,212,168,235,172,136,116,167,154,87,113,226,43,223,137,252,7,213,239,249,194,41,73,191,169,227,114,40,147,204,196,175,156,232,206,110,100,245,82,186,206,48,222,105,92,221,102,183,87,108,
153,252,17,159,103,65,90,215,98,4,187,36,49,222,44,74,63,29,165,17,238,225,69,146,238,69,188,87,111,178,225,249,37,7,143,91,108,240,140,127,92,57,165,46,20,182,59,3,211,155,123,89,190,189,236,167,102,38,159,43,91,183,222,54,73,165,189,94,151,234,134,31,242,97,88,131,151,153,67,227,54,244,126,125,205,13,124,127,184,159,59,210,3,216,41,42,109,8,42,14,117,154,81,114,79,25,154,106,17,200,198,120,230,199,205,22,99,45,108,158,26,49,223,125,97,127,73,237,129,9,5,155,11,4,123,109,248,251,76,145,135,77,66,59,30,81,177,105,151,138,189,65,254,144,11,243,234,95,188,115,32,177,123,79,27,7,85,108,12,78,175,138,77,253,61,142,96,178,184,96,107,113,224,190,110,194,106,229,185,253,130,7,13,214,231,15,63,195,181,53,146,245,100,114,251,100,46,105,196,236,179,43,150,169,135,26,254,97,201,136,202,239,52,172,28,206,10,13,33,175,45,183,88,71,19,189,172,76,43,249,12,191,74,254,225,11,221,5,94,250,67,41,47,123,139,205,
148,226,106,91,123,106,134,79,245,145,53,215,195,204,127,174,99,42,84,115,198,56,225,200,20,87,62,80,222,231,94,127,45,211,120,82,135,239,13,204,238,40,5,219,133,179,94,203,250,232,250,85,195,109,249,180,17,229,7,67,136,252,17,195,187,101,133,130,165,108,83,232,179,227,93,57,147,114,28,72,177,238,148,77,236,111,57,234,223,88,96,19,6,138,162,48,200,203,184,241,145,120,210,252,90,13,185,197,165,210,237,175,199,229,84,143,85,165,14,213,203,29,186,253,246,33,111,206,156,188,113,30,242,65,236,147,199,158,168,135,128,161,35,221,143,143,96,72,220,200,26,173,100,59,46,252,82,105,182,118,74,215,87,96,143,138,226,154,130,5,172,17,126,58,50,142,65,190,60,4,26,82,20,190,214,73,113,129,250,103,91,203,139,202,219,242,205,228,219,105,86,228,103,191,40,170,82,129,102,160,163,99,24,97,84,170,190,239,10,143,203,46,54,159,221,49,8,211,60,87,148,67,124,30,158,216,188,78,219,146,28,230,215,238,178,21,223,31,157,251,156,199,91,217,181,232,
16,46,188,157,189,240,17,1,153,93,9,54,204,236,118,6,219,9,110,86,127,163,242,22,39,168,236,177,87,142,246,116,148,174,66,62,14,233,139,28,211,21,8,148,109,173,49,29,205,217,221,100,34,12,223,237,232,179,82,153,206,213,84,65,43,9,152,165,188,248,22,255,216,43,159,238,176,17,69,53,176,204,77,21,63,108,213,161,67,196,89,161,34,170,218,86,20,52,109,3,155,147,15,72,231,73,230,109,23,65,231,177,203,150,161,108,58,235,22,136,19,24,196,218,178,131,61,80,170,45,152,249,119,254,214,79,31,1,219,81,134,138,195,45,211,218,32,17,226,2,211,40,149,126,86,201,240,39,116,213,140,189,71,45,27,200,225,176,44,200,33,75,194,186,72,180,40,81,41,237,184,255,184,107,125,52,127,199,61,223,201,111,34,195,63,147,120,139,218,119,252,88,55,135,106,221,153,213,146,28,158,163,202,101,74,156,51,96,79,90,201,156,219,45,206,135,215,90,179,134,45,202,168,6,46,43,114,243,69,31,28,162,214,116,15,190,229,56,53,38,239,11,201,159,189,99,
89,163,137,166,153,131,115,144,36,137,123,4,81,223,193,228,161,89,27,94,85,197,141,94,130,228,157,137,242,0,79,185,127,25,22,255,190,181,62,97,87,94,246,125,26,21,93,32,104,214,200,77,73,116,234,185,39,136,171,43,25,242,189,28,62,5,37,62,6,39,173,116,176,59,235,247,145,98,220,122,58,119,119,60,31,164,40,129,66,251,96,71,199,90,0,99,95,240,3,104,162,164,218,100,182,178,153,223,241,123,199,127,74,189,182,97,241,4,246,170,106,167,113,83,51,29,208,172,125,150,100,155,4,131,90,21,207,93,93,52,39,80,176,98,79,129,96,241,236,119,161,228,238,153,180,241,159,113,159,101,153,159,152,121,9,76,174,61,155,92,31,28,99,227,88,57,11,83,129,237,51,7,211,162,47,248,118,38,195,65,3,239,22,235,78,100,184,27,85,94,159,163,145,242,51,114,130,249,5,189,147,229,58,50,79,12,63,58,142,73,50,201,114,212,159,18,245,117,2,106,222,35,205,62,89,196,26,101,191,93,129,26,200,244,184,114,89,128,227,241,124,5,62,255,94,187,
115,25,32,254,253,234,51,121,153,125,215,154,250,82,36,83,197,83,128,156,230,178,245,204,52,189,168,250,44,236,185,111,223,69,78,31,63,135,60,184,155,125,16,236,122,46,88,7,244,217,65,230,21,203,206,44,249,199,43,188,166,234,185,145,101,177,67,153,162,176,130,188,22,74,24,38,85,189,88,245,233,34,108,59,124,132,161,12,248,150,122,61,124,95,122,87,23,136,173,115,62,71,56,117,158,110,201,33,197,164,108,102,178,239,230,173,9,177,235,62,13,92,216,79,14,234,157,114,231,223,125,159,73,203,229,190,29,155,102,47,202,207,227,145,134,180,167,220,125,174,135,36,216,162,59,141,149,206,161,162,206,172,166,249,114,62,42,153,99,31,242,25,109,104,223,93,176,189,149,181,236,86,188,155,115,117,169,170,120,15,223,206,75,167,20,68,20,155,153,175,53,235,44,37,85,183,88,252,73,255,94,235,170,3,117,42,130,86,81,58,23,162,3,116,108,10,47,65,147,168,104,223,149,103,76,234,249,245,84,235,192,47,46,99,203,78,10,170,119,98,100,77,14,67,82,167,
57,19,101,106,29,242,222,217,59,51,105,174,101,209,121,206,53,147,152,83,57,114,237,102,224,90,119,216,56,61,61,194,188,250,221,127,74,182,3,39,234,187,117,83,85,185,85,218,19,168,6,142,212,153,49,167,156,31,176,66,189,104,56,154,107,45,121,173,84,211,100,240,36,39,249,250,226,79,246,209,10,100,212,165,70,65,94,135,10,213,80,186,90,254,148,139,30,84,115,14,236,248,88,64,137,95,28,52,251,128,250,179,54,246,239,67,32,11,133,61,15,107,99,207,12,210,112,137,143,55,239,133,229,234,207,241,208,78,111,199,41,101,62,100,176,131,155,144,28,205,246,45,223,135,34,128,187,205,124,53,251,249,17,246,245,236,188,166,171,244,116,233,17,43,203,132,63,35,202,55,219,184,51,158,143,213,91,30,160,86,38,36,201,5,153,57,99,180,174,186,252,200,150,198,178,148,235,162,188,230,5,219,39,243,26,196,60,130,148,52,66,21,182,234,134,133,121,195,107,199,80,233,95,228,160,14,10,248,156,181,131,109,59,142,210,136,47,98,218,237,7,220,18,38,200,116,
159,61,166,77,2,78,114,167,115,183,88,17,159,235,31,28,121,227,107,217,115,119,150,155,38,151,195,15,163,36,155,191,196,138,125,200,41,216,46,224,241,138,62,12,96,134,84,208,237,64,244,182,48,101,22,165,132,57,112,21,197,17,109,64,77,118,211,189,227,100,14,89,146,22,5,182,207,67,82,243,139,90,157,50,126,67,148,21,104,196,63,169,61,182,248,41,163,174,242,130,154,67,132,76,112,196,167,218,139,181,237,47,148,1,213,202,195,174,183,202,86,190,101,232,57,23,129,243,87,49,228,246,195,117,154,156,143,62,61,159,28,55,215,177,205,91,46,184,89,156,218,153,193,117,171,100,230,44,69,33,41,175,194,90,95,247,155,100,225,82,119,218,87,186,173,172,37,91,19,163,231,197,130,68,226,252,138,69,13,233,56,12,30,86,178,150,147,93,71,138,104,242,111,60,94,241,162,230,96,191,197,230,113,38,140,59,231,46,206,247,90,81,214,199,102,178,153,16,180,250,139,90,218,219,214,110,20,3,70,166,105,214,53,240,24,17,244,135,164,16,156,191,239,203,15,121,
5,104,91,109,82,199,54,104,140,49,204,99,188,101,95,182,122,173,214,211,129,251,120,10,123,248,144,85,156,182,129,163,151,244,100,68,111,157,241,44,31,78,92,57,2,120,76,6,209,47,244,44,69,0,71,186,108,251,57,149,58,105,148,116,26,57,145,164,134,203,254,120,202,121,117,190,187,90,47,4,45,46,132,82,209,10,121,75,255,47,195,69,211,46,178,132,68,109,80,221,102,227,66,254,241,66,118,87,223,210,179,43,226,98,251,198,187,255,136,159,150,16,31,39,42,60,242,176,159,110,116,97,194,31,91,109,38,200,132,143,115,175,14,91,31,140,139,184,63,20,66,246,218,116,173,35,148,83,141,114,219,146,150,195,152,130,97,76,40,109,39,47,248,137,87,60,172,252,3,103,43,202,23,133,210,45,93,123,231,227,181,88,246,239,69,97,201,148,225,68,57,100,224,74,109,27,115,79,65,56,227,90,186,5,249,136,230,92,86,234,153,246,72,255,156,87,184,148,11,210,248,19,98,88,107,151,81,51,121,214,151,250,233,30,63,15,124,253,198,199,186,26,138,235,97,100,
110,41,9,242,29,31,28,140,199,174,173,212,14,103,32,222,204,130,54,228,8,161,251,116,82,13,117,39,240,155,234,193,31,252,93,172,214,25,29,114,144,174,106,53,172,43,78,131,70,220,212,137,184,108,249,96,97,92,196,243,15,40,205,219,88,90,206,214,25,81,218,182,236,199,77,206,79,19,172,197,88,37,167,40,105,10,101,211,157,165,167,77,69,172,160,181,247,64,227,107,210,166,231,129,57,150,203,172,114,245,2,246,148,105,4,127,203,7,95,153,20,5,22,23,157,45,174,207,14,237,107,242,131,231,135,229,69,67,217,10,31,149,251,98,191,3,187,86,18,246,135,140,6,174,176,102,165,71,124,196,38,247,64,18,95,218,181,214,71,51,226,135,137,167,152,20,198,107,161,111,21,3,110,1,111,167,172,158,118,118,118,202,148,183,185,236,193,230,169,77,179,45,68,253,22,220,46,48,159,87,222,107,160,54,203,211,36,153,15,53,21,51,97,21,245,221,150,68,254,234,187,224,234,190,254,30,3,94,151,249,69,195,222,208,190,220,180,3,5,222,95,205,234,24,175,211,
161,159,235,88,186,30,224,103,207,115,69,1,175,172,246,193,133,166,223,170,173,53,60,235,151,109,205,228,146,177,60,71,62,142,198,59,218,158,23,237,145,99,95,23,59,176,129,15,183,205,24,99,21,93,21,75,122,153,83,98,191,66,237,228,201,59,22,111,14,118,62,140,138,81,58,136,23,241,56,124,95,8,220,60,234,141,18,38,151,32,73,141,196,110,50,35,13,149,247,22,10,47,218,232,90,28,43,239,115,155,249,150,18,254,226,163,118,142,235,140,148,103,15,104,51,33,150,234,173,252,173,128,237,101,35,247,71,110,169,85,120,59,216,195,158,7,239,39,141,70,246,70,216,250,197,231,48,101,247,51,148,18,81,155,53,32,39,50,223,35,251,64,170,236,10,237,44,166,174,159,84,226,12,78,163,52,215,156,96,188,187,56,151,197,176,207,166,179,98,129,141,38,107,224,147,39,154,39,228,247,229,144,77,67,61,57,57,84,181,74,22,7,210,113,39,63,203,46,215,164,93,169,202,135,47,91,20,43,182,190,161,199,128,35,87,237,92,197,250,11,7,245,172,52,61,110,
245,250,246,170,214,240,115,129,187,235,80,115,243,58,29,217,93,58,78,251,251,56,131,135,24,191,129,255,234,237,112,240,198,93,174,11,9,16,41,53,155,19,157,127,26,231,72,167,67,210,25,133,224,130,187,24,55,66,179,82,31,244,1,53,151,222,68,49,144,144,69,82,129,63,122,176,82,23,181,222,193,137,144,46,117,50,89,174,218,209,213,197,203,186,87,241,51,38,185,170,77,114,208,178,176,16,185,157,210,1,157,250,204,0,78,53,73,241,69,238,163,228,59,57,249,223,242,210,79,211,255,153,199,208,161,162,11,19,247,169,95,36,39,73,29,246,144,89,177,145,251,212,95,230,105,51,121,100,169,15,148,132,240,85,25,28,89,178,42,245,210,137,34,35,202,165,226,37,49,172,237,116,81,195,27,187,134,51,29,5,53,61,243,253,62,83,157,213,120,52,62,235,141,174,188,207,148,171,13,232,128,109,28,188,237,65,203,193,238,100,215,10,60,3,21,177,33,177,74,196,3,80,154,13,230,140,247,191,251,28,231,110,142,143,231,191,107,159,119,81,229,118,122,69,191,49,
2,157,18,69,237,207,28,120,111,177,189,81,46,198,99,235,92,167,245,36,70,199,203,237,33,12,223,91,82,227,169,152,26,234,211,103,179,89,95,199,51,153,196,150,15,34,101,88,10,66,187,24,46,84,6,198,189,33,190,99,72,37,126,193,22,234,132,196,157,221,31,232,177,98,141,63,243,240,124,77,158,69,126,41,21,163,6,234,77,192,35,75,196,233,209,115,144,47,69,89,95,85,7,159,138,33,197,199,147,139,107,203,248,185,126,160,101,237,107,195,178,26,231,44,185,154,254,248,222,113,91,173,219,115,69,171,87,235,33,172,190,182,188,167,49,14,54,45,128,231,60,56,146,103,178,63,22,102,248,102,154,210,163,180,221,84,74,225,62,6,128,140,252,106,7,145,156,6,74,125,240,135,161,11,0,184,138,204,118,199,63,235,2,147,115,71,121,207,163,206,38,183,103,241,25,63,223,202,245,32,239,56,218,223,123,120,188,217,42,229,146,245,233,84,111,36,34,152,36,31,5,242,34,39,243,197,147,56,34,221,121,128,194,184,83,206,195,74,233,74,240,23,221,189,59,199,
67,155,119,174,149,230,108,110,183,180,159,211,11,213,254,241,207,241,126,118,60,19,137,238,65,8,60,195,232,58,47,144,181,222,33,185,232,242,122,48,236,137,120,39,163,204,218,33,60,142,30,140,147,179,178,171,148,224,0,183,68,243,71,73,127,35,115,198,226,86,190,155,83,61,38,235,162,145,160,95,174,56,28,151,61,103,145,236,186,136,166,253,30,236,124,230,55,50,52,117,171,223,224,181,139,128,248,80,101,95,102,211,45,48,24,177,43,143,199,126,160,157,92,116,215,103,34,28,213,241,19,114,173,51,196,86,209,25,222,118,152,148,184,211,55,240,128,234,220,104,42,88,168,26,148,92,19,22,86,168,146,173,83,3,45,104,247,24,38,2,108,68,25,116,31,94,182,171,61,127,204,106,223,18,86,214,222,214,58,240,185,189,70,248,29,76,63,54,14,143,217,35,227,251,35,76,102,249,133,225,121,139,182,102,180,56,115,193,191,15,217,141,3,115,249,157,111,83,176,232,255,240,13,253,87,51,116,157,208,239,116,69,252,243,181,12,139,253,104,39,199,74,237,140,241,207,
87,46,194,68,201,53,192,7,103,91,19,172,97,167,154,2,225,246,2,214,186,13,98,130,32,185,24,23,76,72,47,81,242,173,114,133,188,103,60,127,71,32,62,38,68,57,65,174,176,99,76,89,252,3,5,41,58,250,111,155,124,44,98,47,185,6,253,196,132,111,120,40,250,173,99,115,201,71,224,228,42,77,157,235,58,4,230,172,214,38,79,29,14,224,45,76,134,142,52,195,94,163,192,91,141,95,224,101,219,211,104,185,207,64,101,246,76,124,86,210,151,161,198,202,105,84,177,153,190,142,69,154,68,176,19,172,207,2,69,176,135,148,81,64,19,192,141,214,114,19,199,198,195,9,104,201,247,206,215,30,158,72,13,217,123,9,95,85,130,133,142,30,39,175,43,113,122,86,226,228,3,2,37,139,82,161,211,65,134,159,217,13,151,158,175,195,181,12,160,24,251,254,140,0,188,223,125,222,246,8,216,43,131,188,34,5,216,156,54,164,37,227,225,239,115,243,74,47,203,202,125,176,209,67,182,121,27,146,217,125,233,110,11,179,212,112,98,141,135,107,239,191,106,212,17,130,
110,57,25,112,25,248,47,158,237,136,141,162,187,96,75,68,101,140,39,83,210,159,23,194,31,108,94,124,74,113,206,179,45,182,149,178,186,65,91,113,37,77,24,20,185,238,150,70,71,100,142,63,248,197,51,99,98,223,96,172,132,63,191,197,117,12,72,119,131,157,146,48,244,187,220,213,43,202,234,27,228,21,252,243,61,230,245,213,29,75,210,161,82,208,167,152,225,137,134,238,37,211,243,51,44,169,189,234,89,133,128,178,172,216,6,193,183,190,40,243,46,178,77,132,69,114,165,251,42,72,70,46,34,89,33,206,118,202,81,49,169,124,13,74,169,252,172,163,2,15,39,23,138,4,162,194,119,216,182,174,32,102,79,87,216,16,22,113,248,209,112,73,165,216,28,206,137,138,125,29,192,65,107,208,57,5,144,235,238,222,168,123,76,116,175,177,38,17,35,84,79,7,12,149,33,185,78,188,115,239,110,8,38,11,242,120,9,86,218,235,120,148,46,195,105,37,174,212,97,115,226,229,98,93,193,205,71,240,16,139,132,210,199,158,194,69,13,32,255,76,143,220,182,247,163,117,
90,129,40,115,160,110,133,209,11,150,200,18,162,240,164,80,209,66,138,115,39,161,230,213,69,12,13,227,91,183,209,106,8,223,103,201,217,212,92,66,169,98,114,176,222,22,150,193,206,38,252,57,157,85,247,185,170,223,244,166,144,112,41,237,202,144,123,44,237,125,122,79,197,12,206,129,156,55,52,198,64,155,189,135,51,111,92,16,61,85,134,181,77,5,102,112,223,167,147,39,93,3,204,3,51,156,206,162,254,97,235,207,42,239,48,4,163,103,45,17,95,170,12,137,14,22,222,103,251,80,174,197,58,215,9,237,106,202,75,49,132,137,118,81,45,5,40,246,140,218,115,214,0,221,110,45,255,186,2,60,218,107,16,195,237,60,43,49,207,198,124,197,23,208,211,51,170,146,241,247,197,165,7,207,191,33,23,123,219,121,26,54,24,62,240,217,157,93,24,124,4,17,246,94,18,64,46,178,12,44,159,181,35,70,239,98,213,193,226,136,37,60,27,104,161,125,151,137,255,149,186,195,4,183,169,45,89,159,233,123,39,55,74,95,81,249,43,239,232,58,171,135,127,251,229,62,
179,223,175,106,127,31,97,78,178,239,109,170,95,175,254,231,189,238,63,23,127,191,244,67,212,13,223,167,150,155,207,171,30,126,222,48,248,247,70,126,229,159,236,231,153,233,63,94,253,46,151,95,125,86,102,201,144,165,191,219,248,183,95,230,103,200,104,51,209,240,107,236,199,232,251,214,194,159,55,254,121,10,250,87,157,101,105,255,199,102,175,79,253,109,173,124,85,175,223,47,152,71,24,255,110,45,234,178,168,255,231,110,63,207,97,105,60,75,205,136,231,134,231,49,98,207,151,75,244,240,188,247,167,105,66,231,70,57,85,89,30,126,151,13,205,123,126,86,90,255,172,246,193,119,1,235,197,160,64,113,52,243,185,48,97,136,120,169,182,0,190,39,196,200,238,122,21,88,34,151,69,226,90,215,4,119,24,99,25,43,172,4,174,91,193,207,111,151,211,243,204,248,219,120,156,118,217,114,107,58,85,15,184,173,111,6,148,199,77,163,252,185,249,189,88,20,65,28,177,207,84,190,109,249,148,50,188,55,146,57,141,73,131,43,220,79,179,220,170,90,255,222,80,213,121,71,
57,37,222,187,122,236,173,236,22,156,16,59,219,220,181,208,251,38,149,166,59,123,206,59,248,56,144,112,127,201,164,30,202,103,134,225,180,94,13,28,197,200,107,134,217,218,241,217,51,159,245,196,29,112,113,218,162,242,42,203,225,211,237,199,105,13,84,206,204,109,129,83,225,247,218,250,48,236,185,51,112,131,195,193,13,246,92,61,53,141,253,148,31,84,214,247,104,135,194,209,108,231,226,220,174,171,127,40,124,16,171,227,142,219,160,158,219,161,131,162,73,97,111,75,186,176,55,215,211,222,124,92,3,74,18,47,15,242,188,60,122,231,195,197,57,219,7,47,177,95,138,46,64,27,110,122,56,195,179,10,135,167,34,227,77,223,197,219,190,195,106,82,199,187,251,184,236,186,84,80,23,196,232,156,188,193,3,121,111,98,179,127,114,134,172,246,42,171,5,212,147,166,171,148,230,91,30,237,196,208,199,133,115,240,240,91,6,239,44,175,236,41,133,145,233,248,182,52,126,19,192,16,201,132,123,241,230,17,142,192,38,115,9,87,163,6,196,132,243,153,24,116,116,85,198,168,
131,192,127,203,223,55,56,126,183,241,202,201,79,27,87,15,75,35,226,149,242,167,62,91,211,250,172,255,254,214,103,253,242,91,223,196,149,140,74,148,194,86,70,236,250,210,224,136,93,184,232,146,207,116,240,2,158,244,119,170,104,32,48,209,119,238,189,183,255,241,69,23,204,25,85,19,182,80,74,7,112,131,237,183,172,3,33,45,43,137,252,45,203,224,243,91,166,129,146,150,85,88,188,211,178,59,28,190,101,20,138,104,217,27,74,44,45,163,252,247,91,134,1,162,101,100,85,69,71,210,42,46,251,191,220,189,91,179,131,58,176,38,246,87,118,229,45,81,102,196,29,52,85,121,48,198,6,219,220,140,177,193,164,166,106,184,201,220,193,220,161,242,227,35,239,189,207,253,84,114,114,106,158,178,86,173,50,11,9,89,234,110,117,127,31,160,86,129,137,18,77,33,1,23,216,178,29,220,103,116,33,60,44,179,185,149,28,84,120,221,17,131,142,208,198,108,33,4,232,0,41,87,184,162,19,172,49,215,161,211,175,188,71,50,58,195,155,77,107,148,38,61,97,140,239,120,
223,209,245,119,110,166,27,114,142,33,66,122,224,69,67,103,114,238,136,137,24,125,169,130,9,169,183,178,200,68,191,124,137,12,75,177,146,15,49,126,192,69,65,10,178,161,103,139,66,191,189,160,3,165,150,190,134,48,132,232,183,69,94,136,9,137,37,74,34,66,35,186,74,82,255,167,35,133,232,232,151,79,36,155,175,172,24,1,7,158,201,7,187,63,236,189,231,204,101,6,250,251,10,191,128,32,134,57,99,143,54,177,129,6,248,156,41,141,192,142,47,176,103,142,152,135,31,118,131,156,178,20,224,195,217,112,176,14,208,152,115,91,153,249,226,3,193,137,83,36,130,46,36,157,96,52,5,242,251,199,38,117,117,18,110,114,82,151,154,142,16,222,118,106,164,244,102,222,122,174,95,88,32,112,191,101,219,71,162,203,98,38,223,39,146,54,0,167,73,11,144,165,43,28,82,5,34,162,113,86,1,39,76,250,91,32,245,103,11,171,212,227,17,75,220,207,110,216,191,236,140,173,126,123,129,66,109,75,0,5,239,196,174,224,3,223,88,209,135,87,155,216,80,39,13,24,
97,240,4,63,251,4,223,223,152,221,125,242,97,134,239,144,249,217,83,68,236,169,130,10,177,167,238,151,101,68,39,54,209,19,177,81,162,64,132,13,83,82,70,122,143,59,27,42,72,3,79,216,66,82,214,8,54,41,11,64,3,109,155,254,149,233,164,236,5,191,191,50,86,152,73,89,242,43,155,41,72,202,52,100,147,235,186,95,217,44,96,82,22,253,202,48,253,43,179,73,217,11,54,240,254,219,196,131,194,206,236,204,4,19,170,196,0,196,247,153,101,225,231,139,119,254,250,132,26,37,74,196,127,204,191,125,37,209,68,68,33,67,90,164,34,201,134,120,118,48,177,5,25,153,80,253,217,86,35,81,196,182,136,29,233,196,182,200,185,159,109,53,146,69,108,203,193,219,207,182,76,120,251,217,22,43,189,136,109,61,240,254,179,45,98,131,144,254,173,205,99,137,109,57,112,83,80,129,20,152,218,226,212,108,68,174,240,97,175,154,66,236,41,196,122,3,253,223,70,139,63,145,91,63,249,22,200,249,233,197,229,85,98,123,208,229,83,242,177,237,127,214,189,249,164,238,
132,245,159,46,244,191,116,49,254,116,17,255,116,49,75,183,159,14,103,186,39,58,100,155,109,6,20,200,112,123,97,33,191,209,16,72,93,10,161,245,36,116,189,209,137,229,114,141,84,179,87,224,207,2,11,106,150,231,36,233,13,136,216,200,32,231,18,3,43,25,203,48,1,233,158,207,81,211,137,100,78,108,149,8,37,158,224,36,224,144,144,13,17,153,0,64,78,154,182,193,8,94,73,104,218,16,79,144,223,35,33,248,175,33,97,71,103,27,188,34,194,17,241,150,16,175,52,64,13,126,94,229,97,172,188,191,223,30,15,251,127,21,205,255,49,82,255,21,191,255,127,24,204,131,181,207,207,175,215,217,136,253,183,83,157,186,211,249,164,172,250,195,49,202,244,185,62,42,167,187,102,215,242,165,86,39,71,62,31,203,87,91,6,247,119,172,197,248,26,213,197,213,114,123,214,217,156,129,189,209,199,173,122,60,70,93,244,94,129,23,222,3,231,14,134,236,118,187,180,138,72,189,253,23,72,121,122,159,45,156,170,209,107,19,187,82,28,160,176,112,122,193,166,35,11,137,
86,70,140,67,208,114,133,194,249,7,78,59,8,218,2,206,139,37,47,86,38,217,89,172,124,226,34,187,182,250,69,188,221,169,249,244,116,235,103,60,161,226,169,212,37,150,147,252,228,16,162,255,85,13,192,221,236,123,232,223,245,57,62,19,174,102,173,185,202,235,240,243,78,228,187,85,195,233,88,72,170,179,150,42,223,115,76,213,187,226,106,224,156,152,124,165,91,154,88,222,204,83,103,63,31,141,150,153,250,78,23,57,70,150,230,230,42,243,107,27,114,223,231,184,85,90,78,113,226,171,113,133,56,188,236,69,150,38,233,91,111,91,145,202,133,23,149,207,225,98,107,254,99,93,94,129,164,216,220,248,236,197,207,233,201,97,139,62,83,116,89,231,3,37,121,24,47,79,202,173,27,199,191,9,225,153,26,108,211,84,181,189,111,223,173,49,218,131,171,113,218,209,145,134,71,156,149,49,151,165,182,96,127,175,251,190,58,163,112,196,194,122,174,115,9,118,77,230,70,2,117,58,249,42,179,175,159,7,92,13,247,243,124,54,226,39,50,132,110,173,77,197,7,22,27,135,
74,11,79,106,126,148,4,147,87,118,39,115,95,65,251,166,64,98,42,103,185,26,37,238,48,97,174,182,239,90,117,77,107,221,146,17,243,153,204,133,91,236,44,77,245,223,163,168,81,109,244,44,72,226,182,105,169,65,117,148,75,85,134,199,85,233,47,127,181,113,109,247,243,193,182,206,46,187,233,5,117,234,158,133,208,170,119,218,129,193,71,19,65,114,210,206,252,7,27,215,145,98,188,124,227,194,235,111,249,65,20,149,91,153,169,249,198,216,89,253,47,198,128,36,174,27,222,92,109,221,47,150,151,193,118,107,179,18,239,200,168,247,62,224,78,236,215,228,161,251,136,29,180,76,51,213,81,252,163,112,2,129,123,249,190,151,8,186,85,92,196,18,84,163,230,57,153,36,8,234,77,209,93,241,104,153,143,119,196,92,238,15,118,49,148,70,193,43,104,105,137,119,195,33,117,31,185,62,235,209,83,152,39,179,35,50,198,77,180,58,137,253,140,168,44,24,207,52,218,30,231,132,140,127,73,146,72,39,178,18,197,37,79,225,226,167,217,108,132,190,88,148,167,0,9,91,
146,111,96,75,71,94,114,98,55,121,88,246,50,57,147,241,218,137,65,240,115,155,139,169,222,247,200,69,55,111,45,223,155,30,132,27,77,189,99,107,26,179,143,42,5,89,103,55,4,217,169,23,250,205,106,151,179,185,231,125,221,68,149,193,126,143,154,193,37,79,54,15,5,68,251,249,153,91,104,54,103,184,88,135,253,45,59,125,234,188,15,44,99,82,3,115,238,239,119,39,142,34,91,149,117,118,207,235,53,15,140,52,75,199,71,190,211,213,77,255,222,227,43,66,143,91,149,224,247,124,243,82,227,138,179,120,50,208,58,171,61,226,170,105,170,32,53,222,227,162,126,236,2,40,141,250,95,216,224,124,252,233,148,61,95,40,121,136,235,172,22,246,107,237,82,117,186,106,222,157,233,182,175,82,157,217,179,1,107,93,154,89,198,223,213,82,204,16,199,104,78,20,63,29,19,132,183,190,163,189,220,117,223,124,85,71,248,145,125,24,238,157,45,77,125,160,33,231,26,225,193,51,238,165,89,212,247,199,138,113,205,68,105,255,212,77,141,145,197,211,24,156,195,194,166,47,
233,25,64,135,246,28,225,51,214,171,180,184,35,136,47,125,55,102,83,193,120,161,62,239,242,25,141,187,240,152,34,237,233,173,35,18,110,71,93,137,34,110,145,99,64,237,167,119,224,170,87,247,46,150,247,146,79,144,76,141,177,16,29,38,38,83,124,13,191,207,226,133,125,251,76,233,84,70,83,223,38,25,176,227,168,253,94,146,112,27,128,234,189,0,51,173,82,119,201,203,53,129,123,104,110,243,206,172,52,12,141,191,230,180,243,198,192,184,52,115,91,201,186,122,121,212,235,126,201,130,253,210,191,167,228,229,185,22,213,221,248,125,31,58,145,242,135,61,108,52,241,124,126,95,133,230,69,31,230,58,178,14,224,155,227,40,40,131,125,146,4,98,115,169,93,151,119,24,58,81,50,62,117,138,226,159,255,82,7,195,229,237,42,58,94,143,68,92,239,202,84,38,247,225,217,247,68,56,94,155,164,43,247,192,224,242,59,98,231,16,196,199,119,202,217,195,78,9,230,91,69,199,105,168,204,96,18,150,100,59,219,76,175,23,115,233,140,212,80,52,213,120,178,233,161,2,
115,245,165,18,186,119,112,58,24,224,159,217,145,97,188,233,107,103,99,217,82,254,214,207,73,148,14,159,141,163,226,45,242,111,187,192,237,201,150,198,171,111,164,187,34,40,182,131,26,131,95,108,243,152,236,152,219,95,242,252,30,250,235,252,140,166,86,139,247,108,97,25,119,215,46,2,244,142,80,224,159,145,211,211,109,193,56,142,254,21,125,39,91,4,129,81,137,206,216,61,59,33,120,186,200,239,53,119,88,143,27,84,239,36,214,206,69,172,31,49,239,167,92,224,38,170,23,124,119,74,137,18,241,160,241,215,141,240,166,77,80,45,130,102,111,195,171,191,194,103,108,181,151,120,45,65,34,72,14,27,205,50,176,249,58,7,25,235,81,30,100,25,241,104,16,216,216,190,205,73,189,88,21,255,49,137,254,238,172,241,206,206,174,122,115,15,98,125,63,137,229,139,22,14,37,22,234,212,120,20,69,51,143,7,241,251,224,206,224,60,216,223,18,53,87,107,85,128,42,125,174,189,1,186,194,192,248,189,244,55,155,196,157,246,26,175,93,58,35,126,240,45,36,186,208,213,
154,240,2,177,183,255,253,157,198,100,142,69,254,167,205,235,156,178,30,47,245,16,87,153,247,58,153,151,50,217,174,132,33,233,189,121,215,60,243,190,22,236,177,241,214,16,192,57,72,55,220,172,215,245,21,212,189,157,106,35,124,247,116,169,173,77,77,80,231,43,177,218,91,188,142,0,163,79,54,17,176,46,24,72,116,52,24,132,210,101,255,115,158,109,28,195,88,23,133,32,182,63,125,75,21,86,242,178,81,77,156,219,90,114,96,219,167,251,34,112,138,222,10,246,48,239,196,40,16,103,199,79,255,108,223,123,186,18,37,53,184,226,81,222,107,254,173,10,165,61,159,210,181,98,98,184,5,130,74,0,192,216,137,220,178,130,83,176,55,80,124,205,46,139,31,111,137,162,222,216,154,178,252,179,81,64,186,188,108,124,137,67,211,56,231,167,110,136,189,233,66,127,8,117,45,95,196,119,36,171,110,115,136,154,139,115,91,193,241,184,52,104,158,4,195,12,25,100,206,150,20,191,83,172,214,73,11,153,132,175,136,59,56,49,189,125,68,69,56,244,210,218,11,159,117,215,
34,17,50,63,59,18,164,127,152,35,153,133,228,239,56,127,46,102,88,164,88,54,138,97,9,141,177,218,143,118,239,170,113,238,248,113,45,232,144,144,15,181,181,148,120,128,224,147,0,77,58,55,223,156,0,200,112,38,165,73,43,238,4,62,54,150,183,16,102,152,74,180,120,86,135,30,148,77,127,180,202,105,12,120,110,231,129,134,68,17,25,233,45,52,237,198,189,175,247,32,194,214,129,96,226,79,45,247,234,165,14,69,249,178,109,77,102,3,129,252,165,13,22,89,39,230,225,21,74,86,106,51,221,81,219,209,238,0,0,165,5,195,89,120,217,112,151,46,62,228,192,107,6,146,109,55,208,210,88,29,54,138,184,194,221,129,29,15,137,144,76,225,129,55,22,193,50,155,31,59,225,176,179,212,154,66,74,104,196,10,235,236,99,22,156,14,224,126,31,171,55,32,228,83,144,56,163,247,47,16,114,249,153,113,189,192,134,98,75,111,119,38,32,184,25,193,234,51,44,98,61,67,20,62,196,75,115,246,57,150,134,205,103,216,130,6,67,120,16,203,79,204,70,35,1,203,
170,62,20,49,231,184,39,8,65,160,157,101,166,162,203,97,124,93,94,179,4,186,36,91,41,197,108,31,113,42,216,230,129,23,21,227,193,139,219,39,142,63,251,105,74,81,59,42,131,202,141,171,127,172,95,197,197,224,81,247,210,110,147,111,226,212,45,88,16,91,124,178,127,98,165,197,255,22,207,17,253,195,131,169,165,147,246,75,31,160,181,227,208,181,227,31,73,138,243,38,255,51,15,197,31,207,166,202,75,130,109,155,237,143,150,128,220,254,79,32,252,191,255,209,231,159,108,252,163,110,167,33,253,35,154,198,145,96,225,63,223,6,31,82,130,83,146,63,178,191,90,250,207,221,208,162,157,168,53,150,211,197,201,154,109,208,184,98,225,221,135,224,46,226,131,126,157,157,111,153,60,244,132,47,71,88,128,235,186,135,203,26,24,242,215,191,116,191,203,143,154,14,173,130,160,169,223,11,131,235,248,218,169,19,33,105,175,53,225,11,156,159,103,103,167,100,158,53,2,205,82,239,29,200,234,182,248,236,129,180,21,194,111,185,90,130,131,167,35,222,32,44,23,132,196,142,
137,190,175,89,193,24,136,45,94,9,91,182,125,81,180,55,255,130,132,105,91,3,27,32,77,65,248,33,189,201,100,5,5,29,89,19,141,133,112,19,109,110,55,172,71,28,136,41,242,250,222,106,231,37,202,133,148,73,242,232,232,156,246,20,251,129,63,141,195,122,27,69,182,48,252,222,105,26,49,121,134,47,52,69,15,234,142,135,125,141,28,150,194,193,176,165,115,84,157,4,131,73,183,163,152,54,165,165,138,106,189,67,97,37,62,238,140,24,131,131,31,80,196,189,243,64,177,132,24,152,213,91,39,177,224,118,235,201,119,245,150,45,25,187,184,71,226,69,146,26,18,221,88,94,56,3,254,203,48,136,121,62,147,20,18,0,52,207,172,53,25,130,36,222,45,106,230,177,131,202,237,42,142,9,163,151,201,107,78,63,212,83,16,216,78,236,113,82,161,115,111,80,202,212,15,228,12,205,118,216,249,138,103,93,103,118,107,50,133,65,212,168,253,179,5,177,242,10,210,41,53,140,217,183,212,87,37,4,92,196,190,207,169,219,249,216,186,149,243,220,92,213,42,225,117,4,
167,60,241,102,199,210,252,111,115,238,105,55,71,66,231,164,240,217,250,201,151,114,39,90,184,82,66,53,242,87,226,153,138,132,233,29,75,124,9,1,5,25,32,152,108,56,158,196,49,206,192,63,92,43,236,16,53,208,120,81,238,72,174,163,195,127,188,14,244,119,75,244,219,230,213,83,110,78,11,221,34,160,39,55,167,223,167,63,211,183,51,75,104,157,112,69,205,92,252,253,221,3,118,172,97,148,240,252,178,116,246,91,41,34,122,228,127,126,55,251,28,152,167,61,35,3,139,127,182,67,71,179,104,213,9,108,138,154,142,174,165,66,218,216,196,182,81,205,63,63,241,37,98,113,197,248,12,182,177,96,245,23,255,202,46,49,123,159,30,80,46,217,225,35,53,226,42,170,169,181,203,91,2,62,172,216,225,247,224,166,53,7,183,97,147,74,105,162,102,11,77,187,215,71,40,120,149,254,207,150,31,62,117,140,203,252,132,254,74,172,227,166,235,248,239,174,81,250,79,77,49,231,170,12,151,229,124,120,201,69,39,68,196,187,232,171,124,84,202,37,172,30,132,203,127,161,
95,109,139,255,9,122,42,90,197,106,238,33,88,145,37,73,225,23,66,35,16,104,154,248,181,30,245,253,44,32,86,196,62,222,249,136,1,3,1,113,17,113,169,36,250,209,44,176,92,177,239,161,200,56,243,220,219,38,171,71,96,144,88,233,11,91,27,161,139,75,72,166,10,26,238,13,25,31,97,13,108,67,38,34,15,118,44,186,193,206,71,58,113,150,54,114,165,4,190,102,97,132,206,44,36,240,65,60,55,124,64,224,253,118,42,240,224,151,69,234,63,171,207,255,150,122,209,17,232,49,21,129,6,83,61,168,48,53,195,106,230,14,135,91,85,141,65,227,250,80,218,93,22,162,125,223,17,20,6,120,248,215,63,183,103,159,214,103,150,250,45,237,251,143,9,49,94,149,214,60,40,167,191,132,120,162,207,167,211,163,57,158,154,160,24,120,193,193,45,72,111,158,28,124,142,186,151,141,103,255,193,90,172,106,153,183,148,197,156,31,194,41,106,148,52,183,131,137,178,130,239,125,79,185,174,138,89,24,255,150,56,47,230,158,53,206,99,38,243,26,236,179,220,12,133,5,
42,24,169,247,2,190,9,233,228,48,136,209,9,186,95,125,110,164,84,240,151,242,202,52,136,209,89,75,147,45,8,158,120,234,34,65,134,141,60,209,13,224,212,99,210,205,143,57,130,4,93,192,193,185,209,44,239,126,27,97,71,57,12,229,93,124,62,133,43,224,224,123,102,172,231,238,98,223,218,81,101,59,246,16,56,9,96,53,202,21,44,212,156,169,66,48,145,102,177,69,40,35,13,208,69,184,254,238,174,206,193,234,205,194,154,182,18,11,83,243,52,154,24,186,24,189,193,128,31,218,34,127,142,45,124,165,37,15,225,99,180,49,164,250,159,240,111,20,250,167,255,33,18,209,61,254,23,58,216,172,231,53,166,68,131,254,252,135,149,144,139,191,60,1,39,162,4,28,245,208,63,168,250,229,68,229,165,115,9,244,190,220,151,107,192,196,33,143,37,77,35,104,43,155,139,89,156,234,113,204,155,27,30,69,130,178,11,192,49,233,45,96,211,117,162,210,164,119,228,9,210,161,154,42,1,219,50,148,136,18,145,121,51,161,98,229,21,230,105,130,158,61,20,74,251,183,
179,129,136,93,156,65,126,23,92,96,163,217,56,65,192,66,203,7,80,127,236,33,158,75,243,51,195,57,70,9,250,58,236,228,229,48,181,231,69,205,217,251,220,244,111,123,142,207,199,158,8,163,96,74,113,86,41,28,183,22,76,63,81,252,54,126,185,137,174,67,169,7,176,197,72,42,247,228,194,138,191,155,171,226,153,93,204,136,210,192,228,68,64,27,119,149,199,188,202,96,71,253,64,17,47,236,19,83,199,228,1,143,102,2,146,43,250,192,216,8,160,51,58,144,25,10,192,140,216,129,128,119,250,69,115,26,48,137,97,208,232,128,141,124,247,213,11,73,212,167,238,77,8,89,252,18,37,186,0,47,205,149,226,202,113,225,204,39,23,36,131,245,67,201,203,225,34,250,150,208,124,83,8,187,234,167,184,31,246,20,130,93,68,40,70,210,47,47,18,192,174,111,67,187,35,99,170,41,26,194,253,134,161,55,83,242,63,234,233,162,180,243,71,233,144,111,245,255,65,165,54,81,68,220,19,81,170,99,247,52,116,187,167,214,93,186,135,201,158,36,173,130,94,53,240,197,
165,127,24,135,86,215,238,252,133,122,24,128,253,190,224,140,102,210,171,184,78,49,15,193,48,197,216,151,200,49,187,75,18,236,237,166,65,113,0,118,126,101,93,143,28,27,208,182,132,247,0,96,244,194,35,32,228,119,37,192,175,150,184,183,196,193,126,183,71,241,62,131,153,7,146,73,163,170,217,40,23,52,104,211,236,203,208,239,240,121,133,6,16,20,246,100,189,118,228,203,48,157,199,167,196,127,248,126,54,15,182,200,138,254,140,63,129,47,62,103,255,106,226,219,60,14,1,109,230,126,95,142,211,109,70,33,64,55,58,143,60,70,217,25,165,44,88,232,219,146,72,111,177,199,39,80,82,44,49,172,128,224,188,110,14,122,66,201,67,95,95,188,42,222,25,255,198,33,172,196,253,205,15,24,220,66,150,132,174,229,78,143,88,124,112,112,213,224,82,244,167,89,252,81,198,10,174,87,4,59,46,220,11,230,115,224,233,171,206,172,146,41,54,128,234,109,214,145,109,97,174,154,43,52,3,13,238,66,192,226,221,235,224,174,175,59,71,195,104,38,31,188,20,17,7,201,
61,248,75,217,37,81,14,215,176,135,20,181,1,232,77,230,44,74,201,74,102,115,49,217,54,4,127,30,238,228,144,104,127,229,69,184,3,114,152,226,127,90,130,140,33,39,22,59,132,191,183,44,203,220,249,251,239,49,178,59,30,173,224,30,255,7,13,161,200,194,214,188,159,78,78,166,237,244,220,100,202,81,190,87,114,145,138,169,71,160,197,7,55,193,185,23,95,149,22,4,249,45,203,200,116,116,6,172,248,149,231,17,16,174,45,52,23,66,115,222,232,119,152,234,1,29,71,104,236,255,62,183,210,82,52,250,42,140,66,197,166,240,14,104,83,12,51,248,33,80,219,246,241,85,199,129,161,194,109,230,222,187,88,201,179,20,178,179,162,210,27,237,138,180,82,53,192,177,40,55,236,208,246,25,124,160,98,252,49,47,217,162,179,185,226,218,243,93,45,253,224,28,21,138,98,79,119,85,141,193,88,99,80,169,204,93,234,193,149,125,235,1,218,166,228,206,219,248,136,89,241,152,80,74,134,133,33,186,222,194,109,133,146,11,191,243,63,246,249,151,233,3,2,102,195,239,
93,114,121,191,187,136,7,204,38,28,92,62,13,124,3,117,30,88,224,75,119,238,34,62,83,2,255,26,214,62,87,60,160,213,167,247,208,196,167,223,136,84,16,37,236,0,4,169,127,186,183,90,130,76,99,72,211,114,123,141,171,68,143,103,228,51,141,248,164,52,58,241,112,66,187,164,137,27,192,224,203,68,245,159,217,123,76,230,6,207,147,79,250,64,184,207,71,84,88,40,53,239,24,194,65,84,52,22,146,192,77,216,20,36,135,108,195,113,128,204,47,251,204,106,179,200,89,11,113,239,87,70,35,194,183,150,21,65,30,168,246,12,109,114,136,248,191,178,2,253,126,221,146,57,12,183,81,203,195,255,104,156,21,149,63,83,193,184,142,166,80,172,43,200,199,187,170,156,232,86,162,104,112,49,134,219,203,181,205,238,236,231,32,103,96,71,21,214,222,199,105,108,161,129,225,226,37,141,116,107,227,151,215,230,161,113,253,244,231,74,139,250,99,154,57,132,22,209,181,16,191,237,181,215,217,69,252,229,210,72,159,145,96,64,93,240,52,32,82,72,212,39,13,7,41,218,
178,37,14,60,55,250,138,126,168,103,182,224,161,97,100,23,5,50,242,208,72,118,202,154,80,77,211,83,4,8,137,155,159,202,243,109,244,210,126,22,217,99,3,147,67,146,78,171,202,222,253,249,100,249,120,62,105,122,100,190,82,238,16,18,180,61,19,250,25,201,38,155,151,144,219,50,225,192,48,146,140,174,194,33,114,208,64,69,41,193,215,192,198,201,98,155,137,18,241,242,104,167,219,76,249,28,183,129,205,184,130,143,74,57,34,39,0,218,32,198,41,57,201,187,62,176,128,135,124,99,119,81,134,17,83,195,239,171,69,76,5,31,60,58,64,254,70,98,76,227,94,81,14,174,22,194,203,47,87,131,116,233,38,31,177,90,201,17,142,255,34,151,222,42,226,233,102,25,55,126,96,209,253,185,22,114,114,254,138,208,247,229,199,227,194,39,101,84,138,222,140,220,194,114,143,89,7,145,174,162,30,93,153,25,48,3,166,214,99,138,96,148,242,192,53,122,192,220,254,54,34,101,46,145,35,177,2,49,20,251,103,4,59,33,222,70,252,167,225,252,79,251,95,3,158,189,
146,47,75,212,20,223,53,166,123,44,195,47,13,222,143,137,254,158,200,116,105,243,199,146,39,99,246,75,103,215,167,213,111,59,204,191,31,229,252,191,82,211,35,9,92,255,202,20,223,204,225,163,14,159,67,252,200,29,239,18,112,239,165,60,30,133,60,56,215,110,219,38,247,164,186,182,50,49,185,238,32,71,30,125,184,149,224,96,149,5,233,211,53,11,222,39,235,164,122,99,101,246,242,212,170,105,88,50,229,201,158,88,45,112,210,113,113,22,220,162,73,219,166,245,115,239,41,93,145,62,174,17,149,137,171,113,103,69,139,87,11,107,220,124,176,116,24,234,159,83,129,168,207,8,201,68,103,165,71,70,119,111,111,184,251,34,147,174,140,38,41,5,108,111,186,213,201,222,1,104,105,149,241,197,157,109,47,105,5,143,195,115,153,179,147,101,187,233,157,190,174,242,155,196,253,183,47,217,229,44,116,119,101,145,115,87,146,115,182,219,175,118,229,223,213,205,228,27,254,33,170,73,113,183,189,217,92,15,98,123,109,236,236,27,52,86,167,75,135,111,241,190,109,247,213,92,
245,1,81,209,3,45,244,247,188,228,240,206,26,238,208,76,14,255,190,101,220,103,90,166,75,249,6,40,206,133,216,58,211,219,173,43,54,249,104,199,31,204,158,220,183,190,4,175,7,183,242,135,234,128,44,46,187,43,210,101,117,204,28,23,225,61,173,174,216,217,86,84,74,232,38,123,151,86,54,99,9,223,43,27,30,79,213,164,172,26,211,80,206,163,16,216,97,186,92,74,204,223,229,103,198,101,211,82,35,124,91,127,79,177,55,91,239,145,96,61,199,177,191,236,39,138,53,101,229,206,88,133,124,120,2,112,12,10,128,132,149,123,223,85,78,167,116,123,202,238,231,210,226,170,78,165,127,157,50,231,139,57,96,164,221,21,187,24,212,105,166,175,143,61,189,151,195,91,29,102,32,247,45,120,12,183,163,106,51,114,93,154,54,236,212,183,68,125,93,168,220,143,239,174,95,165,95,174,207,120,204,231,112,76,135,63,136,149,229,97,149,135,195,159,185,76,219,254,95,219,222,191,205,183,152,252,17,109,255,193,60,139,244,127,251,227,217,13,49,105,159,52,14,255,72,218,
165,249,251,191,255,92,122,211,143,108,245,208,216,143,207,185,14,62,177,53,86,111,235,248,188,132,159,248,203,242,101,163,231,129,105,83,38,92,85,78,43,191,141,150,155,182,45,94,130,201,92,228,39,151,232,120,177,30,190,120,60,203,187,38,188,189,240,176,100,15,223,170,117,234,3,110,231,211,204,210,169,233,58,247,29,16,191,69,132,70,235,20,199,13,208,183,222,78,205,138,139,240,136,27,248,186,133,24,42,141,191,28,99,67,239,68,34,198,191,6,71,164,248,215,238,27,204,250,199,244,167,28,255,199,255,50,212,97,63,254,49,253,85,254,103,230,216,79,219,231,99,86,147,26,127,73,16,255,50,189,46,109,95,254,158,204,254,93,241,143,166,237,235,176,34,58,32,162,158,254,124,108,251,151,96,127,117,158,154,242,71,221,38,233,127,253,195,238,219,40,140,170,141,84,31,255,152,211,126,251,53,138,167,234,231,58,254,234,73,146,14,249,167,249,15,164,145,253,119,159,236,206,99,244,184,103,167,211,157,213,63,184,52,111,252,145,81,243,120,63,4,187,41,24,123,217,
179,97,212,11,130,224,133,77,51,220,103,111,229,185,187,113,90,128,246,46,254,49,171,223,233,114,185,220,99,236,136,196,242,201,96,10,193,150,240,235,148,178,4,103,41,183,190,120,54,71,74,197,48,18,227,166,123,206,215,228,198,36,24,43,133,175,47,142,52,113,9,214,248,61,117,122,10,86,226,168,192,88,63,148,236,252,70,210,137,231,201,72,108,6,187,168,148,23,69,28,128,164,41,240,220,48,135,188,153,13,36,169,129,21,90,129,63,70,141,87,7,200,77,238,179,162,60,132,149,94,112,104,241,194,108,250,53,117,142,196,11,251,59,247,193,161,193,171,116,137,70,189,102,220,251,154,81,5,228,128,101,164,108,242,226,91,28,200,192,231,186,43,2,69,127,144,26,87,215,112,38,10,81,90,74,250,197,78,122,225,110,180,233,145,34,236,241,148,147,136,111,191,237,180,67,151,11,237,124,217,215,86,239,207,131,59,241,250,201,225,250,32,66,47,167,135,225,75,100,183,72,164,180,219,181,152,50,87,245,165,245,214,8,18,25,63,52,232,27,221,35,150,17,55,79,206,
199,2,250,216,99,53,240,62,177,51,163,27,97,143,58,73,29,120,79,180,94,48,80,25,86,170,195,208,90,252,129,199,232,133,122,135,107,12,202,148,208,210,189,101,8,169,34,155,88,60,25,69,5,124,246,88,125,20,8,195,137,129,189,95,71,207,150,154,167,179,126,212,240,86,177,233,52,7,245,102,78,211,203,60,224,25,132,128,215,120,118,255,218,190,102,53,31,115,7,35,62,177,214,44,209,132,64,224,211,139,222,59,238,72,104,201,107,181,217,57,125,42,19,78,98,144,28,26,93,160,209,26,209,79,90,200,26,7,4,65,43,202,169,187,177,236,213,94,102,194,100,27,51,142,133,244,96,219,124,111,103,28,11,128,52,48,85,198,238,1,117,140,231,124,198,169,77,219,103,48,237,110,74,250,90,126,216,6,141,138,246,197,98,130,235,38,37,193,38,118,133,158,99,208,43,1,244,168,125,57,92,141,106,97,3,47,241,163,151,137,216,139,120,153,23,150,189,52,209,228,37,77,23,210,196,150,135,247,141,133,85,175,50,82,46,92,81,39,208,215,75,186,16,6,72,89,
243,104,136,136,126,86,176,203,10,76,198,203,21,226,133,238,153,7,182,143,246,5,127,68,17,214,246,164,131,96,98,165,0,85,137,5,11,161,151,216,53,215,38,165,79,83,76,245,159,117,127,104,28,185,18,209,148,155,48,233,30,16,198,48,103,64,105,108,176,37,78,169,221,52,175,50,70,73,120,189,83,98,196,210,44,221,236,180,208,155,89,236,15,51,7,12,64,209,99,244,37,29,170,162,137,145,103,12,82,131,102,245,182,56,137,89,239,241,6,209,39,124,166,28,13,186,190,74,181,71,218,69,29,236,230,134,144,22,11,116,240,218,4,168,5,98,57,160,29,20,67,153,126,123,248,98,147,27,141,238,146,226,97,9,241,85,159,192,158,224,221,174,40,79,30,148,70,22,94,61,16,36,32,130,225,176,69,14,126,167,68,103,7,93,80,22,159,210,150,190,181,87,247,142,183,252,3,105,101,233,102,97,125,56,243,178,146,207,187,59,47,252,44,56,243,145,225,62,154,84,70,31,50,21,51,130,156,184,187,14,158,248,152,212,170,155,206,239,99,251,162,47,116,17,12,79,
35,118,90,59,211,218,249,157,165,152,86,239,241,19,150,189,187,238,180,106,191,150,167,127,35,210,112,196,90,192,139,203,18,66,160,161,143,134,40,22,81,198,235,194,175,166,143,60,182,44,231,69,75,178,229,70,250,246,250,171,111,25,233,219,35,255,0,90,62,32,65,61,136,165,33,179,142,249,183,79,209,47,30,52,236,228,229,24,212,253,207,59,141,255,214,255,70,191,228,47,93,26,254,245,98,205,159,105,94,254,147,62,48,138,99,227,115,58,121,221,109,241,42,173,74,221,160,90,141,83,30,58,107,163,82,10,115,192,31,11,4,92,60,89,163,251,61,222,56,231,114,187,255,83,19,104,242,119,67,156,142,180,224,9,25,148,98,101,198,139,38,129,34,253,173,46,74,74,4,13,66,75,29,17,188,5,37,254,65,250,70,155,57,68,189,54,5,34,16,154,251,204,90,10,48,49,221,52,48,30,20,204,99,106,7,211,61,226,161,79,226,62,216,193,240,156,226,203,192,75,62,180,98,50,205,235,225,89,199,253,141,103,253,91,227,49,195,85,135,91,222,209,97,213,152,152,
241,94,86,225,13,130,14,182,71,71,61,190,132,183,245,231,75,179,18,146,151,44,10,136,57,141,196,184,3,172,104,5,70,8,142,104,100,39,20,31,124,17,139,34,8,102,87,122,196,229,74,128,6,23,34,25,226,61,249,190,163,235,209,62,99,255,117,3,221,43,156,215,56,42,150,228,5,81,18,245,48,106,146,66,253,134,138,130,225,24,163,40,213,160,213,13,244,66,136,89,134,71,179,127,91,2,12,74,126,238,202,121,111,201,73,118,113,118,200,111,226,185,134,15,213,236,74,92,187,95,66,14,61,66,222,202,117,188,212,150,231,126,103,24,204,130,184,127,250,225,164,74,244,213,133,252,163,121,122,226,73,100,184,229,186,251,187,203,120,118,246,48,191,138,186,46,218,30,237,46,124,57,95,56,151,221,28,31,12,136,158,168,26,43,100,122,146,48,124,33,114,246,207,162,94,173,4,122,123,53,87,216,143,128,63,131,177,127,213,5,170,40,157,149,211,145,207,98,141,215,35,27,176,168,103,123,187,237,77,158,51,134,230,121,133,59,203,38,249,56,187,125,181,195,121,185,
193,111,213,132,67,83,132,42,199,241,131,40,35,91,232,240,119,75,0,116,25,31,224,216,138,167,136,113,33,43,222,166,100,131,142,144,24,66,34,237,135,29,0,236,73,85,215,238,129,122,96,149,250,77,23,176,153,107,44,133,82,226,60,45,33,14,98,182,109,0,225,103,169,133,137,211,229,10,57,127,90,0,103,193,108,219,8,207,14,186,7,29,118,223,75,178,8,181,148,3,132,224,69,146,251,23,224,131,187,40,211,54,241,33,155,59,40,139,151,240,219,135,85,170,11,218,32,63,201,88,68,219,26,251,11,188,53,111,243,9,209,69,36,30,135,14,98,6,116,23,153,221,213,6,116,174,216,206,209,123,46,162,233,147,236,67,7,107,28,248,146,254,58,97,103,178,146,7,228,11,46,66,79,142,53,224,144,30,109,107,102,28,195,159,194,68,139,129,100,10,135,33,131,197,11,233,254,101,62,226,52,62,7,171,34,206,194,46,138,182,61,90,188,153,132,162,77,71,176,180,107,2,141,175,9,162,245,108,217,143,39,22,242,186,88,216,76,68,205,95,91,122,113,226,246,165,
137,103,208,212,212,8,193,61,101,137,19,127,205,86,99,180,172,206,82,254,213,162,3,222,250,242,91,23,121,189,208,91,254,227,9,164,246,180,19,141,183,196,253,10,163,29,14,201,245,144,107,195,36,137,118,140,196,110,152,189,247,205,55,41,159,47,150,29,210,73,126,61,13,241,62,96,19,199,83,216,215,126,161,90,172,194,154,159,96,49,87,244,78,123,67,170,193,139,75,92,68,228,129,163,0,139,247,241,241,22,2,40,224,105,136,179,110,182,149,52,252,214,120,62,210,215,34,99,97,139,172,46,29,63,124,78,240,249,138,40,44,32,52,73,28,255,146,43,70,163,178,112,152,137,215,163,103,250,108,223,237,230,126,248,23,63,182,184,203,209,253,171,185,207,159,15,83,254,6,197,255,202,139,133,4,215,133,159,159,23,99,86,230,47,79,246,71,84,181,113,249,159,244,103,123,20,39,195,239,62,229,171,90,198,77,21,203,106,146,91,182,101,46,241,197,61,73,249,87,63,191,87,20,126,244,181,145,11,120,173,141,48,149,157,247,231,97,119,219,229,125,191,223,63,159,63,
51,54,111,167,155,196,38,189,214,191,232,89,76,199,235,196,138,16,210,163,39,19,219,2,212,139,209,123,191,71,146,148,156,199,61,95,77,244,110,183,162,72,205,72,28,246,133,120,10,241,195,236,108,30,87,199,216,139,22,56,14,118,121,56,192,137,11,36,37,130,169,182,221,79,39,4,21,243,30,146,120,124,30,139,148,25,247,40,153,142,69,51,115,252,237,192,85,68,79,86,181,23,11,202,225,89,81,90,109,126,199,169,86,137,17,189,246,183,93,233,180,185,141,31,150,205,124,167,93,232,216,35,138,112,88,61,245,175,166,127,146,135,152,132,83,141,46,130,93,245,218,179,213,28,59,13,182,139,222,60,138,153,189,13,252,26,246,107,105,53,230,90,216,135,228,49,71,225,84,161,153,207,68,83,44,172,244,179,95,212,71,70,92,99,167,191,188,157,4,230,62,153,188,193,61,82,29,101,221,1,106,13,152,164,249,23,195,199,244,101,199,25,204,244,112,17,35,173,11,195,160,167,52,1,191,100,59,74,215,130,133,58,30,122,189,166,227,20,75,135,20,126,159,188,189,90,
236,232,241,28,45,158,224,251,183,123,141,107,247,94,228,22,180,200,78,47,253,152,66,164,238,166,68,163,230,247,202,2,98,186,139,9,161,104,215,84,18,73,208,163,146,163,80,114,103,128,249,232,141,174,116,63,74,153,143,209,170,175,47,47,217,250,247,198,130,68,66,1,65,105,44,78,125,34,106,189,115,239,4,109,210,115,5,190,116,99,27,191,71,103,227,81,120,82,42,128,235,181,249,166,205,153,135,99,18,74,254,60,58,193,37,100,215,222,213,243,52,217,108,140,57,162,156,241,241,248,160,250,151,207,123,80,1,193,53,162,91,127,132,167,183,39,119,152,136,71,27,82,151,94,230,223,244,228,167,51,247,226,217,219,88,232,120,59,231,202,236,126,159,230,103,55,167,189,241,81,43,18,128,124,166,251,134,8,101,230,127,121,154,133,145,81,60,205,232,63,5,139,30,140,249,242,4,83,163,71,225,158,112,204,210,177,208,78,232,179,74,156,196,81,200,20,75,244,33,35,26,22,82,114,205,194,44,11,252,9,205,246,111,79,183,8,208,52,239,128,140,25,146,123,187,194,
77,180,143,47,154,129,9,20,93,166,179,4,154,160,116,112,145,98,107,163,230,150,219,82,204,126,225,29,150,56,183,79,36,60,2,59,148,224,16,63,117,246,206,21,43,187,126,11,122,30,185,239,130,186,168,236,121,149,167,250,91,166,20,243,166,188,66,131,76,83,147,41,138,175,76,91,193,180,191,29,165,153,87,175,231,139,253,204,193,95,134,105,35,147,214,106,133,31,18,66,225,228,128,116,164,97,45,37,203,166,225,207,81,33,208,172,216,149,180,226,197,41,99,151,49,98,89,38,248,78,230,3,87,9,130,57,236,65,28,135,201,72,4,176,234,250,6,120,201,177,156,140,22,33,21,207,36,100,68,242,87,90,27,40,115,112,102,153,168,76,17,22,44,111,101,143,2,92,125,83,131,144,75,39,18,13,6,69,43,234,231,187,57,6,7,54,71,80,234,81,202,139,182,84,105,160,247,139,144,159,71,85,137,139,221,221,68,170,89,88,130,3,125,130,3,191,4,7,58,7,40,52,159,214,38,88,240,190,112,131,134,134,211,33,182,196,12,232,43,119,113,129,129,143,82,122,
40,97,127,110,93,37,119,240,182,188,207,123,212,241,219,114,231,134,107,62,120,170,98,215,221,97,217,37,143,32,55,29,81,146,110,253,112,229,101,131,209,76,115,116,115,124,240,211,203,217,80,131,46,123,169,161,43,136,14,240,219,64,176,215,221,89,63,51,152,22,211,135,11,15,125,103,203,254,3,31,167,15,56,39,50,186,125,21,241,117,82,216,239,91,153,158,4,39,118,4,39,94,185,191,125,209,85,86,164,117,122,75,143,41,248,183,56,144,253,159,136,3,215,40,30,140,143,114,242,246,62,231,90,65,170,190,83,87,146,81,179,46,55,159,75,253,168,222,245,47,140,13,201,244,189,101,209,78,114,182,68,123,242,79,28,24,207,91,218,82,211,146,166,15,214,180,161,170,95,69,48,65,155,113,89,132,128,159,216,196,144,57,169,69,16,39,114,92,66,152,42,164,224,2,42,158,84,139,95,69,44,242,123,11,11,27,21,130,200,234,151,6,216,200,128,12,115,148,176,24,201,161,61,18,149,92,45,69,180,253,28,138,218,29,194,194,11,189,120,12,215,103,79,251,55,47,
54,111,48,179,250,202,180,111,225,44,218,191,186,69,224,35,113,81,80,193,249,96,165,116,248,22,52,56,36,10,244,172,12,234,103,22,97,200,212,43,131,132,238,147,224,206,194,112,23,209,97,231,193,93,159,197,217,68,53,95,93,69,136,197,152,127,218,160,211,80,34,204,204,87,43,226,88,217,53,180,241,179,6,154,34,24,15,92,1,67,59,142,70,34,14,188,53,181,111,48,43,153,76,124,39,81,23,196,75,241,99,18,192,1,94,57,203,32,209,39,213,64,43,238,73,21,45,204,101,124,64,90,5,184,192,21,58,194,106,28,143,156,137,30,240,44,142,1,255,228,73,204,241,207,195,33,214,165,135,192,135,128,21,235,111,201,160,244,201,159,106,77,234,252,102,110,30,240,203,150,82,112,8,91,188,91,227,37,250,50,51,10,161,197,116,27,226,104,214,121,140,163,214,55,76,22,10,249,110,50,2,75,231,131,56,175,166,11,108,247,52,126,123,244,229,182,234,163,185,33,77,56,149,112,27,218,232,102,113,241,159,219,98,174,253,110,98,159,89,63,244,135,53,42,131,23,
1,21,208,180,30,66,233,188,242,76,145,254,94,219,6,2,26,163,93,27,253,246,180,242,108,97,60,108,137,6,188,77,38,170,56,250,106,121,71,251,85,177,213,25,61,9,124,189,226,13,211,72,79,222,196,31,18,244,139,120,168,17,71,54,56,254,92,91,41,178,226,52,225,216,67,1,153,89,0,85,191,138,106,248,164,95,113,202,149,107,147,219,232,185,179,187,199,55,252,213,131,66,206,223,175,125,49,186,156,204,90,32,125,207,236,238,214,165,41,212,181,194,244,37,158,205,24,117,24,24,102,198,73,67,248,169,97,171,18,94,142,142,225,98,219,141,186,241,21,114,179,70,165,5,184,52,39,245,88,156,219,39,223,68,167,153,171,80,104,125,245,230,109,137,239,175,103,92,225,101,236,92,193,97,74,106,109,34,99,22,170,121,108,195,118,163,247,136,75,69,103,152,9,155,222,244,119,211,216,130,252,208,236,129,135,98,194,105,214,129,151,247,17,238,128,161,75,38,180,165,7,47,208,136,33,12,240,208,239,26,203,178,199,238,12,67,194,43,8,251,101,232,147,185,169,252,
203,72,222,115,107,241,173,127,67,17,161,186,7,177,58,179,241,65,106,147,166,199,37,252,118,144,182,183,137,79,206,45,90,234,177,96,123,204,137,20,232,244,83,55,6,136,238,207,247,67,18,64,103,174,199,97,245,7,143,5,223,109,28,40,227,110,50,190,48,126,183,102,189,173,16,52,124,42,201,92,214,55,118,101,71,163,158,26,108,56,67,204,112,137,204,114,202,129,61,198,4,10,204,143,52,20,105,139,209,102,24,165,161,122,20,94,50,235,206,244,244,4,31,226,163,137,155,73,76,134,15,132,233,26,191,40,37,246,164,175,153,100,8,21,95,33,169,246,90,158,12,116,194,54,74,45,20,56,136,77,14,241,227,35,199,62,168,121,130,230,103,149,31,33,59,124,218,15,83,89,173,162,222,15,122,13,135,157,111,190,152,242,159,243,54,154,26,91,252,51,172,117,60,158,69,233,96,32,152,46,194,191,135,19,217,127,133,19,217,149,253,247,112,226,63,222,140,101,254,219,31,175,60,93,126,47,191,253,188,226,191,222,244,230,255,252,223,254,131,119,97,143,31,117,206,109,
249,105,148,195,225,56,128,108,248,120,135,119,94,8,55,220,134,90,102,47,198,147,170,46,240,113,68,22,124,29,246,216,250,54,187,45,41,114,116,228,107,65,17,75,188,201,167,137,59,45,139,180,107,159,240,140,235,7,146,109,175,232,62,246,13,189,12,15,102,119,249,160,12,147,207,151,255,199,255,250,223,73,167,254,203,255,245,223,237,62,157,73,207,135,63,134,173,25,179,116,204,127,183,80,231,176,207,195,102,28,126,203,105,254,18,200,255,248,47,255,112,31,53,249,243,78,182,166,252,243,27,169,228,196,63,220,127,254,187,124,24,195,38,9,251,228,159,213,250,223,255,94,162,243,215,198,202,127,215,35,117,202,191,238,188,254,39,55,229,146,166,3,60,57,185,111,245,71,110,183,33,180,148,211,148,164,238,55,96,178,207,71,61,108,200,176,105,110,84,237,246,27,202,214,207,217,27,234,164,177,152,59,9,49,102,95,194,131,76,200,179,76,93,8,21,57,193,227,151,180,171,92,217,185,61,252,216,195,63,138,230,239,251,190,255,52,66,66,35,126,75,138,216,245,63,243,
248,72,76,140,236,244,57,124,142,7,130,13,102,212,153,178,57,164,131,138,62,79,231,189,85,126,69,177,99,42,66,199,158,17,3,36,92,117,62,129,32,240,186,205,152,93,193,62,198,208,38,188,246,74,176,74,188,134,57,147,29,204,223,147,174,172,37,221,12,147,228,207,183,53,255,92,254,156,39,63,229,253,236,150,72,153,91,185,127,200,203,155,55,127,164,164,218,159,139,147,254,72,72,24,111,146,159,129,255,22,49,253,214,77,253,182,190,254,7,165,255,215,63,47,207,135,127,184,3,254,211,215,159,173,252,143,255,210,165,253,111,145,211,255,243,163,138,255,143,104,160,23,71,138,126,157,13,108,207,244,173,115,44,239,245,60,245,91,213,93,253,47,153,177,253,247,70,8,108,181,223,217,206,17,2,150,210,123,214,181,64,37,167,105,28,168,89,126,82,203,143,153,141,167,5,154,135,247,4,155,113,31,235,36,5,12,218,247,134,237,127,155,185,160,5,173,176,144,226,11,114,2,192,206,137,32,206,233,180,185,27,1,74,173,28,148,213,83,124,57,179,109,228,236,253,171,
196,212,174,51,157,31,122,4,115,191,206,49,253,252,22,238,243,116,143,8,210,60,125,167,171,198,21,115,110,249,167,151,228,52,153,69,179,244,213,248,126,141,100,162,154,139,47,221,167,181,132,121,192,156,250,195,135,135,239,15,237,159,8,237,249,132,224,170,115,149,157,95,192,21,113,53,251,219,228,169,169,239,210,185,105,8,191,125,248,195,21,191,91,77,124,247,10,115,79,225,41,31,46,58,151,85,153,138,79,171,228,106,171,50,159,84,201,233,215,211,236,164,137,138,177,241,137,144,148,92,52,202,82,167,227,238,163,90,99,221,83,218,31,177,247,149,151,141,151,100,113,149,245,60,73,175,213,59,211,214,72,211,246,54,89,190,164,187,236,64,226,246,137,75,47,139,180,100,240,179,195,113,132,203,225,92,83,107,252,201,234,187,181,41,249,66,27,211,231,197,149,126,110,165,151,142,155,181,163,221,57,174,19,240,163,14,102,65,101,70,148,41,217,13,26,101,204,199,104,155,226,86,184,172,13,117,157,79,223,33,200,184,166,201,195,244,114,123,187,251,250,228,40,139,23,50,
196,119,5,19,223,150,36,0,59,184,204,92,86,172,154,86,171,26,170,91,8,52,100,2,24,10,139,172,75,110,107,239,9,175,19,245,146,239,170,8,116,189,30,98,193,191,8,203,110,42,72,134,6,19,115,6,26,144,153,244,31,51,130,170,119,201,134,183,204,213,182,55,223,114,201,126,79,120,115,7,113,193,97,207,22,236,109,190,3,224,174,199,166,190,106,192,171,102,97,147,7,220,193,69,94,237,253,180,67,190,187,223,178,167,40,214,180,140,92,62,21,88,240,30,32,199,161,125,165,32,23,243,107,0,3,65,151,40,103,70,231,20,63,230,235,45,244,230,79,234,72,222,109,246,78,61,193,55,150,224,57,110,87,177,62,165,203,147,34,16,94,121,75,31,182,160,72,217,205,168,208,211,203,99,235,58,77,47,220,207,199,91,111,15,189,48,205,66,4,222,192,64,146,126,202,237,183,190,223,12,161,178,174,48,111,244,59,255,85,56,150,195,123,201,65,222,21,118,112,85,13,40,188,120,87,181,47,185,33,32,2,217,107,50,114,254,193,93,145,220,127,140,69,246,37,30,
199,92,22,172,135,53,127,244,58,137,156,176,123,188,125,53,115,135,3,123,240,63,110,125,120,5,171,82,47,242,155,150,89,98,83,80,79,136,235,107,125,80,0,238,165,229,247,208,135,137,117,77,223,249,117,61,179,39,205,8,218,55,231,199,150,19,135,39,107,87,226,44,45,141,178,168,15,137,119,20,185,187,186,221,172,6,236,207,8,118,246,196,94,185,70,203,79,233,37,141,157,129,43,132,10,34,246,212,196,238,184,170,236,169,247,69,251,147,200,92,108,167,186,5,228,42,252,136,23,171,95,178,245,99,150,148,35,50,239,0,202,126,57,163,29,207,13,214,126,27,127,48,205,41,48,76,248,140,157,133,43,51,56,8,50,165,229,11,47,41,168,231,57,229,198,81,241,233,3,238,142,59,189,20,113,48,147,170,249,54,27,18,203,49,72,25,60,25,23,41,92,224,96,93,22,95,252,106,107,171,163,172,123,75,251,65,139,15,169,65,250,206,111,95,237,181,22,251,129,76,12,19,39,133,236,215,25,227,89,223,153,184,215,183,104,106,65,33,190,216,171,162,62,213,211,221,
64,6,80,40,165,184,71,82,22,239,151,179,253,105,14,22,142,165,116,83,214,119,15,162,99,208,113,182,135,106,59,74,187,89,133,76,133,214,88,227,124,218,30,146,178,96,124,73,143,93,99,93,84,27,81,30,126,243,219,121,31,82,120,96,28,137,71,23,127,187,235,151,139,32,157,194,133,75,205,253,24,168,176,143,28,155,176,14,14,190,17,136,174,218,48,75,117,91,64,167,67,173,162,193,187,93,220,207,40,107,40,149,239,247,178,180,106,57,48,79,55,211,73,188,219,6,61,53,220,104,250,140,54,91,104,216,92,42,211,13,115,81,238,76,23,118,22,141,79,162,176,58,8,249,162,168,225,122,190,176,44,165,48,23,123,22,79,17,37,209,190,228,236,240,229,31,96,99,102,196,253,81,229,181,113,41,100,35,31,88,49,253,150,226,27,29,212,159,245,201,248,86,162,193,175,54,55,67,198,19,14,178,232,175,58,124,95,145,75,195,60,253,18,143,147,120,72,22,180,121,245,197,16,25,71,114,81,157,167,80,10,219,118,108,192,0,27,28,176,127,93,243,184,33,188,177,
78,145,22,101,141,197,247,46,157,20,251,142,226,144,127,215,193,47,253,0,153,134,105,180,53,184,187,163,244,166,27,72,73,68,200,244,191,253,144,21,158,175,53,230,98,156,131,240,13,211,30,136,164,27,189,109,90,48,31,192,67,58,40,13,40,241,205,213,96,32,9,10,203,172,166,159,126,35,184,223,20,65,251,60,83,78,225,89,191,107,186,2,137,243,174,179,184,168,139,190,198,2,103,241,251,53,217,106,206,229,87,55,152,191,5,218,199,77,164,145,60,218,36,226,172,238,164,64,13,76,157,222,124,234,217,164,74,215,243,45,215,226,93,63,156,208,29,74,35,195,89,82,50,203,194,91,147,138,241,134,196,111,149,197,66,66,79,188,104,211,1,156,117,124,128,110,51,197,97,234,213,152,247,227,148,143,157,106,255,126,201,247,154,82,42,230,92,173,42,251,5,223,154,10,125,173,11,253,46,194,249,196,154,220,30,136,58,216,176,233,159,6,108,60,66,233,33,169,162,110,238,13,199,82,55,92,78,71,11,82,217,29,63,69,61,217,123,142,225,220,0,173,41,54,132,199,
28,6,37,236,188,129,184,166,252,212,64,74,225,40,89,220,246,133,253,8,208,147,174,113,173,186,156,113,100,213,156,174,140,10,95,207,79,198,235,108,41,60,33,58,47,60,127,146,30,235,246,29,101,233,221,238,172,53,233,186,79,95,107,155,85,171,171,121,152,164,20,131,151,33,165,178,157,141,61,56,42,251,219,191,25,103,230,160,166,219,245,105,204,55,182,192,98,155,70,187,178,250,211,192,133,59,122,223,158,136,208,48,129,55,85,224,191,142,46,72,142,96,122,1,164,173,141,22,90,28,43,190,237,242,217,45,254,251,208,137,101,251,48,97,110,241,60,127,98,137,7,177,216,93,249,248,113,123,232,48,75,203,145,171,249,153,21,176,220,181,229,58,8,190,166,252,118,230,179,212,51,7,92,30,180,226,221,47,119,123,123,159,205,87,249,250,61,244,164,102,83,249,116,223,33,131,1,87,160,143,72,88,149,43,158,133,19,42,89,68,203,220,75,253,128,84,245,230,248,118,21,197,179,215,89,225,17,158,10,168,25,217,193,25,144,12,242,180,18,183,46,71,61,75,155,29,
43,60,47,226,67,250,158,48,237,8,122,147,217,118,162,93,155,79,134,219,245,85,40,198,59,20,106,232,215,182,40,167,234,176,242,180,53,10,114,221,208,86,137,122,237,151,58,33,231,214,230,20,175,66,96,109,187,122,132,103,37,46,219,55,241,188,25,49,203,114,54,155,189,156,189,228,3,137,83,162,26,209,105,196,190,224,190,198,209,55,82,232,38,239,212,213,158,146,106,156,12,250,66,252,95,129,205,249,171,139,189,78,224,96,113,244,30,136,221,252,175,237,189,245,176,93,110,138,175,129,20,208,197,190,94,70,217,240,133,203,149,106,222,194,17,8,194,254,242,126,227,113,6,129,30,134,152,26,93,9,230,6,141,88,248,240,143,45,51,107,18,33,58,202,233,179,220,225,122,61,148,17,124,188,250,171,149,86,100,166,164,155,94,121,104,78,204,99,61,207,49,245,18,100,219,130,10,67,104,209,59,225,46,189,120,122,135,38,108,44,34,157,189,35,194,196,247,66,247,96,169,231,31,100,119,233,139,121,12,182,91,43,41,123,74,243,21,230,57,254,60,126,186,105,139,105,
115,154,107,74,87,69,151,198,117,148,115,141,218,219,52,127,247,244,186,226,46,218,224,217,227,226,214,134,45,191,225,42,91,217,72,157,230,7,100,35,85,236,244,189,27,144,206,54,110,169,228,236,96,191,43,97,209,182,86,25,27,35,147,109,169,86,11,204,235,211,254,242,137,220,151,238,171,177,31,58,161,35,195,121,6,33,131,173,192,60,190,132,224,173,169,144,54,217,215,80,34,101,223,186,242,228,224,183,68,96,145,36,196,71,158,13,148,190,90,158,1,100,83,20,38,82,197,11,184,218,137,95,137,227,89,249,204,80,101,56,102,81,69,108,126,90,17,150,174,34,38,251,210,62,208,222,84,252,73,203,193,232,121,6,252,222,100,179,253,234,83,60,200,12,197,121,116,183,206,253,157,74,43,118,179,159,164,125,131,13,198,180,224,45,163,63,125,32,212,216,107,75,211,145,227,141,231,107,72,200,111,116,85,51,112,73,19,145,233,251,230,49,14,202,235,118,209,190,215,224,230,81,148,126,103,102,103,162,234,35,223,223,166,199,192,189,167,60,53,219,157,23,79,114,39,62,
81,200,126,147,235,111,233,178,96,82,226,125,62,157,40,118,25,81,196,178,251,225,236,183,204,83,127,109,230,81,184,120,169,78,143,251,102,129,111,33,11,89,254,219,28,6,234,240,251,93,146,71,183,61,139,184,247,221,182,231,197,139,246,172,205,39,28,39,105,54,14,52,211,60,1,32,162,64,72,2,178,241,2,161,12,164,86,138,207,32,144,1,215,75,146,76,56,183,64,14,22,5,241,47,158,211,185,77,65,171,207,19,196,186,21,235,66,248,164,38,230,243,190,104,116,165,245,228,224,96,179,149,223,124,230,226,98,179,132,133,126,240,124,179,53,25,135,254,247,254,74,168,175,126,7,219,183,153,42,238,121,246,146,234,213,40,236,53,128,66,242,34,113,98,186,33,27,99,207,23,38,1,25,24,38,175,209,22,225,225,91,26,66,77,253,56,217,165,137,127,89,21,8,81,39,140,162,201,113,30,255,185,81,242,31,253,239,227,191,254,113,12,155,63,162,223,190,211,67,75,248,90,147,254,253,206,208,113,236,171,255,1,254,90,166,182,100,105,250,159,219,225,231,199,80,232,
63,55,38,153,103,230,26,170,175,240,144,169,55,249,121,108,47,101,46,231,159,99,70,93,95,135,242,238,158,46,101,140,95,234,154,7,5,186,166,85,173,6,245,92,182,62,229,5,186,120,153,148,213,46,175,197,227,112,121,148,194,211,84,229,223,42,60,112,50,139,222,138,124,192,51,201,148,16,226,194,175,251,59,54,255,129,181,128,216,128,1,15,4,218,70,128,159,235,41,153,159,72,115,120,103,131,47,249,197,191,28,88,159,147,180,58,155,149,113,3,210,47,181,206,30,138,91,219,55,223,179,96,142,123,95,250,206,117,60,219,161,222,56,49,184,53,153,142,28,236,104,84,160,166,111,78,126,222,87,94,204,172,215,68,69,232,60,81,46,60,77,212,125,121,155,144,106,205,223,19,117,245,151,106,1,244,118,123,76,78,69,219,38,231,121,181,147,26,122,165,244,213,228,49,149,92,255,219,249,142,54,153,202,38,69,10,75,216,203,153,161,158,248,65,9,167,198,105,168,135,157,251,220,156,150,10,229,161,243,236,104,184,226,165,224,32,9,242,196,138,84,141,237,64,92,234,
25,182,119,36,30,50,126,56,123,212,102,165,174,253,121,39,39,196,205,19,241,200,183,228,134,219,64,98,9,106,9,251,165,30,165,42,220,241,73,166,238,243,179,76,56,117,228,68,218,183,15,140,235,60,104,206,18,156,253,158,164,178,163,115,38,208,241,183,18,14,162,83,80,79,24,89,171,98,209,254,196,84,92,70,35,124,5,57,235,220,147,147,72,159,84,144,16,208,245,61,164,226,228,144,14,21,205,125,97,253,79,253,190,24,83,137,168,145,201,145,96,165,121,195,101,211,9,81,249,212,107,245,93,156,183,157,102,93,127,138,110,120,190,34,15,62,38,225,170,180,118,218,222,125,118,138,8,75,111,2,24,134,86,116,76,98,73,177,219,3,147,175,212,11,158,20,182,237,239,42,60,218,71,216,250,159,105,212,250,170,175,159,44,128,31,154,31,198,136,63,236,181,200,13,160,53,197,38,4,112,171,21,204,169,1,69,250,205,98,107,62,230,95,129,85,118,177,6,179,151,181,74,164,72,120,251,10,190,255,232,5,123,254,197,188,84,251,184,141,209,92,20,53,18,109,100,
243,50,42,58,14,111,133,144,219,223,123,191,178,185,225,182,26,154,207,80,84,116,105,20,11,73,173,142,148,220,98,14,211,152,210,18,237,251,254,160,112,123,227,207,164,205,215,221,214,53,107,30,44,0,23,37,158,165,25,57,103,156,114,80,155,229,230,211,51,227,33,215,193,180,16,64,241,148,53,168,143,42,221,167,72,142,250,61,218,110,221,11,104,64,36,176,243,121,67,241,236,241,31,199,90,116,233,41,45,4,23,1,58,148,126,236,40,140,61,217,96,85,200,191,13,218,76,127,207,155,142,146,145,118,231,156,215,134,115,122,210,198,163,120,96,86,71,114,210,147,63,170,162,76,187,172,246,219,66,123,60,231,82,67,208,88,248,150,197,106,181,83,91,152,51,59,155,86,21,92,80,73,223,173,228,112,27,1,164,219,239,116,22,168,135,254,128,181,38,238,150,115,108,119,125,186,207,113,150,241,197,121,79,119,133,71,91,188,201,118,28,42,158,29,227,40,11,208,14,101,124,139,58,117,60,57,84,149,126,110,148,191,59,172,125,136,31,183,215,246,166,116,112,249,36,131,
60,149,241,93,13,161,168,213,7,95,169,61,132,16,184,218,95,89,56,70,142,53,158,66,202,247,84,40,38,167,23,153,46,164,45,3,93,24,138,167,228,218,190,252,166,48,234,248,246,56,45,155,116,178,79,199,84,60,250,5,14,196,219,60,163,56,2,64,153,211,248,70,185,55,27,10,94,110,133,122,32,196,130,188,107,159,244,141,97,96,189,229,97,44,234,82,203,101,45,201,74,140,154,207,87,128,149,126,211,166,27,93,137,9,216,22,50,86,5,62,168,199,78,77,15,172,198,147,34,42,51,165,237,151,183,135,183,231,23,188,238,197,30,219,165,165,162,64,159,220,230,70,51,82,79,236,101,156,13,137,194,35,246,33,166,152,157,97,172,93,99,138,209,166,143,181,224,41,247,194,190,75,27,71,29,161,29,187,96,129,162,205,143,242,206,223,252,253,125,155,130,35,154,3,102,159,47,211,136,165,57,97,41,120,142,92,36,193,29,163,62,78,147,253,21,143,144,129,205,215,103,113,76,213,59,19,194,151,68,76,245,17,54,133,12,145,220,48,105,76,88,150,70,2,60,127,
56,171,220,162,213,165,127,17,79,76,170,108,232,193,108,5,98,88,29,175,6,250,242,121,33,42,238,230,139,77,69,237,107,243,133,4,93,6,226,179,223,51,209,132,93,157,135,161,190,3,130,135,62,62,170,21,235,179,139,138,177,240,187,167,225,131,68,229,123,24,78,137,92,204,102,145,63,130,134,173,175,34,22,212,111,192,137,22,59,249,150,77,228,2,158,169,196,150,191,254,57,233,109,38,173,149,3,23,111,215,21,218,161,228,199,80,4,133,132,223,180,75,134,155,43,162,190,30,147,106,43,160,181,55,190,200,70,66,205,65,142,53,190,143,61,224,175,57,190,193,207,94,247,218,224,212,175,47,225,68,214,194,155,11,11,106,223,198,123,179,209,127,157,15,23,145,47,191,117,190,133,55,165,21,231,79,26,72,204,5,138,254,112,175,233,58,24,122,26,22,117,22,191,231,117,254,191,91,59,115,37,86,113,32,138,254,202,196,163,64,236,136,208,120,1,131,1,217,198,128,169,154,0,179,99,179,47,6,125,253,200,47,156,120,178,14,144,160,91,213,151,123,10,74,18,94,
178,147,22,251,151,31,54,119,126,1,61,77,179,29,44,87,160,24,165,31,192,23,149,22,55,186,184,86,50,38,44,161,157,172,46,207,16,252,42,39,146,85,242,66,29,252,138,203,69,204,210,80,3,141,58,248,188,166,203,12,252,102,46,168,233,28,9,116,100,227,64,118,10,236,95,92,187,65,185,105,174,128,69,126,19,10,79,168,248,179,76,4,19,91,7,133,215,189,105,45,0,149,146,72,193,108,203,88,21,37,36,61,21,234,37,185,199,244,245,255,10,151,245,6,64,182,37,66,102,184,237,100,101,66,203,31,224,17,129,113,38,109,240,36,86,255,160,38,231,220,220,129,24,26,226,41,28,37,59,5,153,32,199,170,217,209,210,86,22,152,46,118,19,107,55,13,42,2,70,40,249,238,21,164,172,58,204,34,123,182,96,49,52,228,150,28,187,50,187,232,89,96,161,153,173,74,16,29,72,251,164,126,139,100,65,121,240,98,67,9,55,242,146,84,176,197,67,230,113,216,71,212,187,47,54,76,178,19,28,192,93,28,102,77,252,240,187,81,83,157,180,75,213,240,52,203,
148,174,222,127,232,42,133,61,9,18,68,40,93,5,171,204,218,153,149,157,22,223,167,80,232,90,88,228,71,119,245,148,243,141,174,161,171,231,245,213,79,57,112,226,239,98,126,161,93,150,121,249,29,205,134,220,219,131,248,148,210,73,106,44,5,21,113,162,152,49,80,106,13,211,166,223,197,17,145,67,129,253,148,29,119,132,103,180,75,249,223,231,121,238,77,116,249,77,130,131,251,48,50,140,122,100,101,42,236,198,54,77,105,98,201,103,119,7,185,151,222,59,169,50,45,47,162,253,25,190,196,223,30,48,159,101,218,51,208,22,138,118,105,124,29,159,179,46,44,42,56,245,162,146,20,88,25,60,139,178,131,203,72,131,194,227,170,182,20,48,18,177,189,180,62,202,141,200,13,9,51,217,40,147,201,193,107,104,37,39,16,52,99,154,94,237,166,215,43,251,187,10,159,234,146,140,6,140,115,10,211,245,88,161,103,116,81,165,236,164,135,113,184,153,17,84,226,193,216,169,229,215,76,205,19,184,232,62,59,236,58,131,103,149,18,215,105,72,149,81,164,147,179,17,136,162,
166,131,83,244,121,99,165,41,29,199,10,60,185,254,56,209,249,162,188,15,110,72,21,184,170,99,123,80,5,124,217,142,46,69,44,111,15,189,130,94,197,228,89,70,203,64,154,75,118,214,6,241,177,157,103,24,33,113,100,31,99,167,188,185,179,50,228,11,223,248,237,21,246,157,101,89,56,107,78,65,89,100,229,151,241,103,215,88,154,148,122,84,130,3,29,107,34,39,7,62,166,160,18,12,49,179,54,75,180,204,177,49,189,245,129,36,155,24,135,196,186,189,243,120,67,198,47,143,232,40,117,167,166,220,100,244,219,109,150,175,235,25,248,51,23,218,189,19,179,18,74,37,89,149,72,137,185,124,194,117,21,215,78,116,191,74,164,82,211,164,41,20,210,7,31,237,211,43,102,37,59,200,249,178,132,79,168,73,95,170,56,121,178,39,162,204,35,203,47,70,210,194,48,159,215,219,236,242,171,125,49,133,247,233,59,63,107,40,101,125,222,40,145,171,251,137,28,137,196,22,15,35,23,30,245,84,94,235,1,71,138,220,42,236,144,60,225,48,98,192,237,231,16,69,153,196,
91,96,47,228,21,215,140,91,184,203,164,247,91,145,130,35,144,65,173,205,105,36,147,149,165,181,173,23,236,67,114,27,96,32,45,34,136,53,204,153,94,58,223,164,232,186,177,215,109,108,164,214,0,221,229,78,21,79,175,21,209,37,129,53,70,162,19,15,126,76,23,117,254,141,85,151,248,81,116,23,37,100,252,44,122,113,96,18,31,47,105,115,57,81,255,188,187,224,191,227,95,214,148,196,108,184,173,124,120,230,235,197,148,86,110,113,34,91,68,65,243,112,185,134,55,79,117,130,76,234,71,116,167,211,44,82,250,100,139,159,46,123,187,97,165,98,20,126,185,248,184,131,187,96,74,208,4,217,121,246,23,7,16,110,73,3,167,148,12,199,230,94,233,168,2,108,72,197,106,98,255,163,29,127,199,42,57,202,90,12,245,220,139,45,213,132,21,219,21,187,32,233,89,164,98,246,88,94,73,109,86,153,63,250,87,174,90,136,99,140,147,196,204,152,137,197,136,23,219,229,247,168,124,3,231,111,222,137,58,223,145,235,205,6,21,55,106,7,11,85,191,83,34,71,117,186,
84,138,238,248,19,124,137,166,141,233,93,0,199,111,44,79,130,102,2,169,243,34,226,202,33,231,64,27,131,74,31,57,189,253,135,34,241,78,190,123,1,158,48,204,182,28,96,178,117,133,204,11,44,41,112,159,38,120,95,196,11,19,221,5,41,223,87,63,91,218,69,188,50,124,62,120,114,61,84,241,71,221,107,72,25,200,76,118,44,38,97,212,225,74,182,189,107,178,154,102,176,189,127,90,210,239,183,127,62,89,38,73,212,187,144,200,119,78,149,74,41,149,155,162,232,121,207,58,83,165,46,196,248,123,34,129,23,51,97,197,47,55,103,23,109,170,88,175,135,77,207,206,207,136,80,20,70,238,214,229,217,251,12,248,149,210,132,164,138,185,214,49,175,240,29,137,151,35,120,39,159,178,190,193,194,185,70,37,37,196,122,128,246,19,154,64,149,90,221,127,196,245,185,90,164,85,115,242,52,82,217,139,216,251,201,140,24,52,234,15,38,189,193,25,92,163,72,165,253,97,230,176,244,128,167,66,179,69,229,233,23,104,3,42,85,224,221,228,227,128,250,3,56,121,226,241,
242,11,140,64,124,232,168,175,182,243,159,32,90,182,179,46,122,250,120,95,182,22,11,94,240,190,254,9,62,217,231,154,125,123,70,112,250,67,15,77,212,239,251,175,132,54,108,86,253,230,244,95,156,150,45,24,192,216,47,149,62,8,29,132,230,32,172,18,48,51,184,246,20,31,224,110,127,100,238,54,250,243,207,95,250,127,18,226,223,194,95,255,252,243,47,41,221,38,176,
90,14,33,234,171,111,29,27,71,169,180,8,77,163,213,217,152,85,32,105,105,198,152,45,44,143,53,141,3,155,127,107,168,190,223,19,113,188,137,197,219,6,162,214,1,250,223,242,63,185,143,150,202,152,140,220,152,212,182,47,248,118,172,2,53,122,214,177,121,156,165,218,206,175,58,182,218,40,234,171,117,191,141,65,227,241,173,226,11,159,247,185,101,128,23,75,53,251,89,132,34,210,190,253,105,2,83,161,244,236,195,29,25,23,167,169,52,153,208,231,219,127,152,76,7,206,179,45,243,212,250,95,221,111,115,126,231,24,234,171,180,6,8,64,194,119,189,207,1,236,110,50,128,4,119,29,117,230,11,9,25,114,125,54,187,77,126,243,193,52,0,9,127,122,209,129,65,251,246,58,245,144,219,103,49,142,59,83,145,203,57,85,137,50,110,163,103,27,147,162,251,127,104,123,175,102,103,157,172,95,236,171,248,202,101,23,23,228,100,151,171,14,146,200,32,145,147,203,23,68,145,51,8,248,244,110,233,153,119,102,142,207,113,249,120,222,255,236,122,130,246,222,18,208,221,107,
253,194,234,166,225,241,82,169,178,213,225,175,247,177,164,86,136,233,152,213,100,135,12,68,237,31,221,244,79,181,172,199,219,174,191,253,73,137,144,209,100,149,238,90,187,198,58,206,27,218,55,171,183,80,51,194,178,74,38,94,147,134,100,72,150,116,182,248,221,151,64,189,199,226,119,13,204,96,214,64,143,154,159,167,251,219,31,238,251,156,155,70,6,46,177,6,253,90,77,247,86,248,217,76,57,242,127,53,21,219,6,16,28,249,81,169,235,221,16,113,238,131,159,64,251,195,239,82,139,99,177,76,249,206,123,194,123,101,118,225,22,169,198,202,86,102,40,137,223,117,21,143,203,126,68,108,38,204,56,4,255,251,112,86,39,180,96,32,105,156,39,227,32,46,141,152,98,147,30,240,206,60,44,93,139,14,243,223,124,230,239,127,96,42,17,60,8,218,121,55,205,181,216,206,22,127,65,192,139,254,204,38,241,189,229,56,177,104,77,29,254,43,158,1,190,242,230,141,121,254,221,67,119,42,218,239,189,5,63,206,249,251,156,151,164,145,236,246,189,95,222,96,143,191,173,163,
142,249,161,146,115,224,155,255,120,232,234,245,167,173,205,8,218,253,173,193,7,98,65,173,76,95,153,67,222,244,133,75,127,132,163,135,129,215,84,73,173,153,207,223,61,145,56,159,253,99,45,167,244,43,28,5,102,55,119,228,87,147,208,250,241,34,119,235,146,79,143,242,91,105,156,66,179,33,245,200,113,143,80,180,32,252,79,46,226,207,24,68,212,185,115,159,176,171,229,160,82,111,226,113,242,183,119,104,50,201,187,134,11,224,71,14,166,18,102,35,192,136,125,248,173,157,194,254,169,62,81,62,86,218,187,37,29,25,248,94,181,172,223,135,206,232,148,250,211,41,32,25,17,211,8,80,87,248,222,84,250,187,103,234,225,121,105,13,156,228,251,108,70,222,10,61,229,167,83,64,232,84,81,229,182,110,95,46,124,51,68,55,89,183,191,249,216,116,138,29,252,71,61,206,191,227,39,227,10,205,0,245,84,252,54,95,6,26,175,239,191,227,220,245,143,61,107,191,101,83,233,235,211,127,158,93,174,167,171,20,4,51,82,93,24,216,155,175,119,249,151,234,208,215,25,111,
78,159,210,234,249,4,194,90,31,167,111,254,125,125,227,119,111,245,43,20,15,88,2,185,18,137,22,46,212,225,245,46,135,124,125,112,120,201,191,91,250,111,235,90,43,169,207,155,191,207,67,215,17,149,227,60,107,132,245,150,148,107,22,120,183,94,161,212,154,195,198,191,107,235,122,182,255,201,43,234,53,250,188,115,147,250,245,229,163,30,119,91,217,1,87,146,57,158,235,133,254,48,203,230,164,54,215,175,174,140,222,77,91,183,155,185,97,148,178,65,185,175,135,17,128,135,25,71,238,159,60,140,161,209,101,170,220,63,249,87,212,14,72,48,65,226,63,180,53,138,244,180,64,140,241,28,72,196,116,207,239,53,144,125,126,38,131,215,127,252,185,217,216,105,7,255,209,116,57,32,13,204,158,94,92,153,187,5,43,149,15,124,202,0,198,205,67,115,2,217,247,227,21,207,65,134,150,251,241,198,2,100,159,22,204,207,40,157,151,89,198,0,164,157,221,72,161,186,243,173,77,230,189,252,219,239,242,121,90,127,171,155,229,39,87,110,249,237,29,139,179,26,216,47,78,188,
65,200,243,63,230,71,112,18,96,90,245,246,77,216,193,176,109,31,205,192,194,101,122,162,18,201,194,228,122,160,134,31,79,44,9,250,156,39,27,240,196,48,55,81,220,141,247,231,35,186,63,76,76,6,252,59,252,248,55,4,94,177,4,252,11,96,70,136,213,147,7,218,230,253,95,243,239,40,61,66,165,140,111,95,48,89,5,119,84,135,151,82,169,22,103,86,195,192,239,40,240,16,138,197,24,147,248,223,196,101,240,157,208,254,237,83,255,229,9,238,175,231,9,180,211,254,118,47,228,11,196,227,247,137,15,89,23,149,159,72,250,164,98,249,71,31,234,223,71,199,255,110,170,179,121,251,110,2,222,253,229,119,90,165,169,245,203,111,146,169,23,171,170,126,107,35,3,177,217,14,224,60,76,15,205,190,1,24,10,195,111,158,169,188,175,179,119,251,30,232,121,133,85,167,76,213,193,103,146,201,1,79,45,67,255,236,67,176,39,16,49,119,181,90,172,159,15,113,154,74,28,92,224,169,197,159,167,6,218,95,230,205,143,58,198,222,221,54,187,234,39,16,101,187,146,151,
126,23,62,131,118,139,88,67,189,215,102,174,33,119,8,225,174,92,138,50,214,152,149,191,239,117,1,252,51,227,61,78,141,250,227,165,255,212,126,75,185,25,21,248,123,15,164,188,145,14,92,44,141,155,10,15,144,204,32,175,31,191,125,198,15,201,83,154,62,255,174,149,144,33,234,31,251,89,68,46,91,251,176,29,159,145,51,198,246,250,77,229,78,249,98,167,116,107,138,231,165,98,66,41,14,212,151,95,191,122,229,111,243,199,161,89,191,137,151,252,54,5,154,113,170,237,151,211,184,222,8,141,241,231,153,9,219,129,102,231,235,79,221,188,8,255,96,100,82,253,189,134,75,52,229,165,179,142,91,2,193,242,157,43,226,1,70,110,218,64,77,90,232,187,222,255,3,35,77,207,13,6,74,182,38,225,119,111,226,55,167,213,155,117,255,219,122,117,215,125,203,192,250,109,183,183,112,115,21,163,103,205,78,44,9,67,87,126,126,25,205,222,191,185,186,111,32,246,16,244,239,229,214,121,157,23,180,197,243,142,250,156,115,208,247,49,133,52,107,58,169,103,28,248,149,119,
98,34,9,188,94,114,210,115,212,198,125,81,122,49,73,207,143,180,180,98,42,107,241,205,124,175,153,179,140,153,68,182,255,31,117,221,124,200,101,209,247,240,217,2,199,250,241,108,186,214,167,251,189,71,105,126,254,123,231,100,30,30,251,66,159,206,166,183,138,117,134,157,94,14,197,122,201,24,185,212,96,16,195,90,190,98,17,140,108,44,246,114,211,132,0,171,40,68,127,60,43,237,192,129,15,43,254,248,176,75,145,254,174,105,49,148,12,4,74,253,213,84,194,24,98,165,172,240,219,86,152,85,214,177,223,93,185,101,96,72,254,153,71,189,237,127,36,207,170,229,2,57,254,124,119,2,175,139,111,79,248,250,125,59,20,110,121,2,116,173,253,207,186,86,57,64,144,104,71,254,254,187,223,159,216,149,249,143,245,71,172,96,58,231,151,51,255,240,167,247,167,182,210,76,206,119,54,247,87,223,246,12,6,178,61,96,196,180,179,254,246,29,244,155,99,17,178,102,51,179,63,94,141,248,199,186,240,181,119,190,235,61,198,6,216,132,47,222,63,222,167,49,16,161,136,63,
155,236,105,91,191,245,192,207,202,26,108,129,151,55,73,254,121,216,215,77,54,68,170,222,47,168,222,107,98,254,97,20,155,91,191,53,193,236,42,2,132,18,251,8,53,45,34,127,178,123,172,99,235,4,4,72,116,215,108,76,6,62,86,234,198,233,125,52,17,255,211,175,36,107,5,30,10,124,174,103,58,38,86,109,37,200,176,70,113,189,230,59,29,85,159,105,245,142,45,215,172,92,161,139,108,7,200,144,247,80,190,27,209,249,213,254,0,153,110,207,119,195,63,184,81,29,53,166,152,196,143,107,60,200,82,150,239,117,6,136,140,99,144,55,86,4,86,204,192,184,255,239,173,253,53,16,80,31,223,58,95,71,238,9,247,57,94,219,44,159,114,197,18,190,148,34,202,157,181,116,213,250,184,194,16,234,183,220,120,145,114,113,193,46,10,101,178,38,39,3,29,248,205,248,41,38,250,91,174,115,122,27,51,91,52,187,63,98,236,64,199,95,157,105,29,129,212,16,227,238,16,158,78,72,32,207,70,126,62,194,26,248,218,106,187,90,18,104,59,203,121,83,127,186,142,87,
124,207,229,193,137,230,79,90,53,161,213,152,165,235,1,157,241,57,227,146,191,203,225,243,222,172,45,224,201,239,243,45,213,27,247,81,237,201,134,37,170,92,132,199,7,10,237,59,55,224,129,74,115,191,245,45,40,2,112,157,109,255,189,62,181,52,70,209,250,250,211,75,199,183,247,16,118,14,223,228,66,105,17,177,200,203,29,191,167,194,205,250,124,231,65,69,98,255,206,201,193,51,197,107,98,40,211,127,158,117,36,179,120,86,169,196,150,147,127,252,146,37,109,244,158,132,152,37,126,7,224,31,243,39,77,250,221,19,245,63,230,229,130,104,162,80,1,125,90,28,154,249,242,111,254,191,84,64,152,137,94,123,190,42,128,159,182,25,217,32,121,249,143,192,253,226,13,136,11,115,80,35,81,173,40,129,227,190,207,190,222,15,104,72,110,38,99,116,252,111,254,255,220,254,201,47,253,227,94,243,127,207,92,104,70,196,75,34,2,42,204,50,223,106,110,15,254,107,224,205,230,254,250,213,50,17,69,188,113,110,241,91,67,245,93,122,92,132,52,255,243,236,253,242,71,215,
54,249,31,14,12,73,228,23,103,148,136,129,108,143,253,131,95,181,111,124,125,107,243,97,45,90,77,10,128,243,129,178,222,45,147,98,245,187,102,3,216,249,138,18,91,193,43,227,31,192,185,38,240,237,149,248,213,99,166,249,221,150,252,37,127,228,175,30,227,5,160,216,70,219,181,245,64,112,239,119,78,189,127,215,238,83,227,255,91,156,209,16,242,239,213,99,151,104,34,158,32,253,163,190,129,144,77,243,183,186,209,81,126,148,27,133,163,236,119,158,125,189,148,91,116,141,90,26,160,236,179,158,105,160,83,217,160,181,127,117,57,169,180,165,133,30,38,252,25,252,158,232,21,8,65,175,95,51,0,44,148,45,135,49,230,203,1,30,41,11,88,49,79,216,103,27,240,193,48,15,241,52,141,119,79,72,42,181,26,76,50,247,204,167,60,201,150,122,63,245,198,36,30,178,119,175,68,206,84,171,111,105,174,179,170,97,43,77,238,102,121,119,135,132,93,5,216,21,16,85,230,175,254,27,132,55,118,248,51,105,68,194,155,254,239,229,3,107,213,47,253,187,126,71,227,106,
19,209,35,197,82,95,15,142,160,244,250,206,85,122,154,81,57,139,143,234,111,110,45,165,114,20,29,213,66,106,114,114,179,132,60,216,83,242,165,30,160,15,214,57,209,177,113,254,208,62,134,117,235,248,113,92,28,195,202,233,83,187,24,81,14,49,13,52,42,241,119,141,138,61,101,54,240,92,193,245,128,105,178,1,37,220,212,59,36,13,173,192,43,156,234,181,182,116,15,1,230,154,111,251,225,138,205,232,9,10,48,166,7,224,131,247,27,104,253,6,104,253,73,187,253,77,235,27,55,234,153,95,142,38,123,127,139,173,127,179,214,63,120,228,195,188,94,127,98,170,6,158,243,64,34,16,97,86,125,109,54,144,24,86,15,34,169,147,15,11,166,97,118,35,83,47,138,23,135,129,137,179,239,0,108,245,198,231,232,166,189,140,78,246,214,158,164,14,184,54,133,76,217,125,137,143,91,115,70,92,217,156,55,14,49,195,39,103,53,175,199,67,22,56,132,247,31,166,102,113,45,170,7,140,128,222,112,151,31,31,88,138,231,36,67,168,167,1,137,206,122,237,145,143,246,67,
94,184,105,188,125,62,211,0,144,140,222,189,135,113,157,145,225,124,82,214,232,34,50,127,212,3,188,210,13,189,208,59,91,39,197,21,2,65,148,4,10,26,5,82,50,102,251,6,7,97,162,169,11,250,201,87,175,238,252,147,118,132,79,167,67,79,178,127,34,83,228,212,76,223,12,134,20,134,151,115,138,28,237,220,190,15,210,170,161,21,133,141,33,91,117,74,10,89,236,69,225,30,212,196,23,20,162,226,7,140,10,140,196,43,59,41,113,225,137,227,126,159,130,253,172,188,96,187,138,168,131,136,79,243,218,97,60,43,245,145,116,225,2,41,205,144,174,108,26,1,202,79,154,46,139,87,236,170,130,72,85,175,75,53,135,122,2,56,38,220,65,20,228,70,64,165,254,222,56,7,164,54,244,226,111,228,67,3,196,43,215,227,188,185,47,64,25,142,21,192,167,112,90,48,20,26,90,93,195,45,4,233,82,195,64,105,218,95,84,84,24,7,129,200,169,241,138,168,194,1,214,223,185,17,5,115,33,76,254,188,10,146,222,232,19,207,104,10,207,174,6,130,169,215,178,127,
39,41,233,32,164,65,27,30,79,101,89,41,58,17,226,206,62,3,9,48,4,214,95,155,30,109,145,163,102,99,67,244,82,174,28,245,147,31,146,71,141,136,111,218,130,112,202,8,108,104,197,12,103,202,86,233,247,96,11,202,154,13,178,118,147,199,128,210,176,53,225,216,212,142,172,27,119,140,170,100,5,72,201,157,237,160,235,137,94,229,144,21,240,238,112,145,67,205,16,60,114,111,11,22,91,188,60,45,217,8,186,138,51,91,65,128,79,196,146,238,46,203,26,230,194,151,175,125,112,228,199,197,222,173,91,250,222,106,217,66,82,185,166,0,3,91,188,213,39,110,93,182,100,25,181,88,223,245,74,116,107,145,232,117,210,245,88,237,77,189,237,102,171,47,64,194,43,250,230,104,126,160,68,173,7,199,177,138,23,78,235,224,219,89,150,8,25,82,244,174,44,219,73,211,218,11,170,40,68,194,130,12,210,80,56,1,223,3,144,47,86,184,237,131,146,221,33,248,116,128,101,128,40,250,174,82,16,110,82,48,232,64,178,151,130,153,237,63,155,195,196,206,68,127,24,5,
152,141,130,90,16,235,238,41,123,221,148,166,185,243,173,116,32,165,97,4,44,48,76,233,48,233,48,151,106,78,255,121,220,148,176,122,21,146,205,51,183,146,250,182,5,241,122,237,123,60,194,227,96,184,171,207,207,135,233,250,11,74,10,99,108,152,93,172,207,48,53,148,5,54,128,186,54,148,1,50,148,55,99,40,123,129,43,125,134,199,73,142,43,117,138,43,107,17,72,109,22,40,243,150,157,65,156,172,107,23,206,207,52,159,200,64,73,199,14,243,149,90,39,15,234,234,210,12,137,107,53,26,101,92,146,166,151,117,6,247,240,89,150,4,107,172,227,30,145,210,74,238,62,21,84,200,23,236,218,38,191,186,44,2,218,217,153,227,36,136,43,108,70,189,56,56,135,246,128,92,123,98,177,25,126,226,253,93,40,191,251,10,49,74,99,168,61,5,33,175,187,164,251,223,71,143,241,239,213,78,228,67,117,93,233,250,222,80,47,59,56,2,223,77,95,2,166,213,120,27,143,111,220,127,238,177,92,255,250,73,142,114,208,21,124,246,140,206,18,37,96,105,155,36,9,249,
64,197,149,144,172,222,55,4,146,59,143,3,188,26,217,103,63,2,211,93,50,90,222,191,63,91,194,224,91,178,106,27,141,160,64,20,28,91,66,99,27,61,156,88,142,159,73,146,65,29,129,43,249,136,97,254,216,44,237,65,105,101,218,50,116,45,38,185,123,246,10,16,144,7,94,47,186,53,183,226,135,96,127,185,191,66,53,138,236,115,182,35,127,207,125,166,123,99,200,49,60,107,124,96,103,47,162,189,24,131,166,214,202,65,140,237,246,228,5,16,93,68,34,69,127,144,215,190,107,205,37,54,212,4,27,167,35,187,193,57,62,145,180,177,181,111,254,243,202,17,101,76,38,59,31,212,200,29,87,186,203,245,78,240,119,158,133,185,183,29,200,143,249,23,251,33,84,10,223,126,136,78,244,155,106,143,1,80,232,115,239,145,51,119,106,139,90,12,9,188,234,17,44,239,155,79,46,193,58,107,220,174,254,111,248,215,176,107,82,147,75,210,64,235,220,80,203,184,175,151,17,37,251,115,253,110,62,179,166,237,68,38,89,74,182,239,229,49,206,134,227,199,215,250,234,221,
240,146,15,49,132,89,107,210,211,15,37,73,225,235,17,208,248,142,228,93,159,205,45,128,40,54,219,70,208,98,105,65,59,127,50,74,55,134,122,212,159,139,73,136,10,207,254,222,254,237,6,99,166,206,112,182,47,15,47,35,40,195,199,133,51,169,237,44,40,164,67,107,84,141,118,187,83,183,199,39,145,54,241,157,39,154,5,122,53,10,65,237,171,162,62,74,222,194,153,123,169,166,48,23,42,26,127,195,73,138,171,75,189,48,43,25,40,141,133,12,105,214,152,82,140,202,12,165,100,96,97,151,202,55,211,95,11,211,59,13,211,215,3,83,60,192,247,44,28,0,193,252,29,250,111,8,204,74,26,144,107,26,228,65,66,187,39,230,19,240,243,232,108,246,217,118,171,161,36,90,33,111,194,129,31,155,62,174,109,231,210,142,82,190,28,166,168,222,72,90,214,47,253,115,138,183,203,253,123,251,27,208,205,84,144,57,221,134,26,202,252,92,249,47,198,145,198,196,250,144,27,163,208,128,42,164,107,83,176,170,120,57,157,177,93,66,215,119,128,15,112,230,243,103,223,58,
44,108,11,183,122,83,180,29,248,103,51,159,159,188,217,170,160,63,154,225,124,241,35,77,21,165,172,60,50,195,236,77,9,160,218,121,39,110,79,209,170,9,194,148,26,125,7,232,95,189,186,141,52,41,214,56,106,18,122,26,253,135,240,235,63,220,119,198,6,0,5,227,113,245,32,236,241,127,180,189,57,183,25,193,182,185,57,176,237,184,146,57,109,59,130,206,114,18,173,86,7,180,93,146,119,193,44,158,100,187,246,122,244,24,159,29,114,232,199,246,122,88,211,235,81,54,47,248,147,223,223,197,14,189,131,10,0,60,28,12,153,166,254,119,112,192,139,253,57,160,106,119,110,173,164,103,134,214,162,214,0,74,246,156,87,31,52,14,145,68,160,228,130,134,178,68,202,191,66,128,253,121,44,223,212,6,183,78,115,24,138,202,254,182,175,223,71,8,120,224,23,146,137,5,247,146,70,135,120,188,249,198,146,140,122,188,231,220,201,130,166,203,148,122,181,143,25,129,196,125,255,124,114,135,220,194,170,87,72,67,178,200,151,116,35,13,26,194,15,60,251,4,25,62,206,0,
252,202,52,128,114,98,171,181,232,191,29,243,72,107,152,224,30,61,72,163,99,80,48,236,79,166,65,250,56,23,193,88,111,110,248,216,17,145,35,128,104,70,242,157,100,165,117,236,93,10,202,230,117,21,18,109,96,91,61,190,76,6,248,70,196,175,176,213,111,176,217,19,40,247,60,89,117,244,10,64,160,77,50,239,15,147,194,217,180,147,63,189,23,128,33,87,238,53,36,124,57,0,12,249,23,3,75,48,228,112,63,220,95,226,72,159,121,73,220,184,12,54,27,208,7,32,247,239,228,45,123,217,181,76,56,18,34,111,95,194,127,249,27,109,82,196,235,32,177,220,25,169,252,46,149,44,80,236,164,78,111,236,243,15,149,19,126,38,61,107,160,228,215,180,247,218,101,221,162,68,75,187,31,206,109,216,225,111,94,162,53,136,127,39,13,18,23,117,236,188,242,172,107,62,157,180,189,142,211,175,220,228,2,68,206,125,24,8,136,205,191,227,125,244,223,195,123,63,182,104,63,246,166,255,224,241,233,159,120,60,131,247,235,175,226,241,32,5,199,187,178,191,113,219,205,65,
152,14,232,150,142,189,50,63,195,243,110,189,82,65,202,254,72,186,68,75,128,130,195,149,113,123,158,193,184,46,237,72,106,74,218,85,68,224,21,34,113,118,120,171,143,103,236,84,105,75,208,15,62,238,204,83,82,134,231,205,159,97,144,208,91,148,105,75,222,187,100,188,97,184,29,247,13,210,29,212,179,108,114,182,111,227,57,247,236,57,142,2,117,194,53,210,138,123,36,222,25,44,103,116,79,2,254,247,10,255,202,152,198,114,64,98,204,83,106,9,245,5,194,120,115,182,107,115,48,116,155,187,99,155,169,109,186,207,42,181,103,87,103,211,207,172,93,156,103,52,3,219,164,70,90,143,248,231,161,147,253,203,193,210,163,121,45,8,222,69,149,126,124,242,167,85,1,92,74,219,55,241,148,246,28,182,40,101,197,182,0,200,64,180,163,146,85,24,242,43,142,164,1,18,130,153,42,188,184,4,96,222,78,45,51,141,105,209,186,211,158,77,240,149,145,159,50,204,242,2,71,255,82,221,122,16,128,163,166,107,163,63,27,181,93,47,114,119,124,114,115,250,23,91,184,214,
60,1,151,186,46,89,68,47,40,230,31,58,218,109,14,154,142,205,230,88,145,102,104,79,146,201,163,203,61,59,132,208,59,158,52,14,12,88,95,166,124,191,28,51,124,52,56,93,12,108,161,33,27,222,81,184,99,99,29,230,120,203,86,99,133,53,60,57,106,2,78,101,122,134,236,244,140,81,27,0,53,9,171,163,155,207,30,220,209,120,121,127,67,44,188,110,194,25,148,54,91,228,210,237,209,129,252,252,198,173,253,227,106,85,149,136,102,0,109,81,126,0,173,62,86,201,2,154,173,164,92,136,35,110,10,111,93,4,101,246,111,125,15,191,0,13,40,10,0,180,52,171,244,78,231,212,118,238,27,224,224,230,199,193,251,32,123,104,38,208,82,36,97,34,101,252,77,143,117,19,234,90,39,21,40,97,47,153,191,152,61,208,242,85,251,145,99,168,207,227,140,107,55,74,74,68,52,63,250,171,199,141,96,98,181,39,182,217,113,81,35,62,213,175,222,208,253,198,146,20,219,160,129,102,212,57,39,52,177,84,37,70,255,155,177,132,225,47,230,157,35,180,175,143,119,121,
9,45,62,94,150,172,253,184,184,21,110,204,233,102,18,208,30,172,241,105,132,18,170,7,16,175,31,246,158,113,41,215,85,242,241,149,41,167,24,52,32,65,37,199,7,9,154,179,44,16,155,192,60,178,115,76,128,64,117,40,108,115,38,64,55,120,76,189,233,44,154,150,179,29,118,39,138,102,247,244,207,83,254,225,143,161,103,139,183,222,126,122,51,186,117,134,227,134,117,3,73,102,114,113,31,170,200,158,249,140,33,201,154,55,8,211,3,42,217,0,198,38,207,168,157,234,38,126,230,14,181,123,134,58,123,43,63,180,179,119,65,214,244,95,231,36,250,151,230,36,190,45,243,198,106,185,214,141,211,99,142,201,215,172,146,6,200,193,137,214,252,234,210,189,110,175,208,13,112,232,151,75,252,170,50,250,52,122,132,87,231,18,90,215,124,57,244,201,12,164,164,164,74,185,235,143,199,200,34,40,101,132,236,246,68,161,62,100,149,159,126,82,22,172,179,168,151,53,255,244,131,203,76,171,143,216,139,95,7,6,41,78,133,5,6,46,162,63,135,155,231,59,222,2,141,74,
184,123,128,151,31,147,172,42,24,37,135,55,63,57,153,164,220,171,18,82,84,163,46,239,127,146,16,24,50,36,98,56,34,111,141,247,139,179,45,62,253,105,171,135,134,125,147,112,152,95,32,9,125,122,9,60,38,200,36,207,195,69,178,95,86,196,7,188,229,174,2,149,204,66,34,104,209,15,63,149,66,160,205,68,12,207,62,26,117,101,241,127,177,216,164,237,39,126,200,33,24,57,90,1,184,101,39,197,12,132,81,184,62,151,110,254,22,0,176,222,142,165,218,165,206,24,237,154,28,237,190,11,38,21,71,139,227,192,174,96,108,166,133,109,99,158,143,121,71,207,176,190,103,94,129,179,114,163,26,132,219,65,47,91,185,81,41,98,223,249,97,216,161,252,45,19,113,191,43,148,244,6,26,16,240,196,61,135,223,166,172,53,2,242,195,156,175,32,36,192,104,233,100,76,175,0,65,87,237,123,239,7,29,0,139,63,103,94,231,178,55,10,182,169,185,77,219,211,207,110,85,232,248,133,207,160,221,205,197,126,26,31,228,122,138,139,165,139,72,183,1,128,101,8,188,142,
15,184,79,89,161,221,250,113,31,26,255,184,47,206,148,31,247,41,243,151,251,130,201,141,91,162,213,215,241,167,111,227,125,241,127,26,127,129,3,178,210,149,15,206,108,177,84,152,195,127,30,39,39,22,232,53,66,197,48,72,198,186,243,181,160,31,127,245,54,8,13,148,97,17,222,193,147,60,227,203,119,37,135,10,214,167,82,37,117,26,136,117,147,121,191,177,241,141,0,140,13,158,243,201,152,53,8,45,13,44,130,1,238,126,33,226,25,63,111,67,206,38,163,50,231,145,53,23,163,167,150,52,232,162,105,100,101,156,157,160,227,143,118,185,216,236,175,212,46,49,89,100,89,187,167,81,107,128,99,96,41,26,79,111,178,144,121,97,216,43,114,127,221,163,250,229,80,137,77,156,185,73,16,180,164,196,130,99,166,82,149,126,226,59,1,188,87,131,94,198,183,33,84,31,26,113,18,61,125,234,170,159,99,211,213,132,39,238,29,112,41,210,26,76,102,228,171,22,221,165,94,53,178,33,204,228,16,65,204,134,225,80,245,145,118,4,210,123,248,193,216,228,189,130,80,101,
169,65,226,228,146,34,190,203,151,162,253,242,254,53,211,182,253,38,128,211,132,185,193,238,141,143,120,183,15,46,251,197,224,183,41,32,204,64,226,248,47,216,137,163,217,137,4,45,203,5,218,138,37,31,35,53,145,58,94,50,78,238,90,29,205,96,240,216,71,229,216,129,84,47,153,55,68,15,57,21,106,51,20,158,206,46,0,70,232,2,155,182,160,21,97,230,32,81,38,220,231,163,249,249,6,30,178,193,231,108,64,195,107,242,226,235,59,243,2,236,121,60,69,54,86,16,44,123,252,242,31,147,0,118,30,227,11,140,206,167,61,129,150,250,197,213,47,103,132,219,157,177,221,95,233,128,45,144,70,184,157,213,112,49,183,207,250,42,56,157,111,43,153,252,249,75,81,26,190,192,109,249,233,146,229,19,94,0,243,235,225,146,66,126,103,0,210,194,32,207,244,232,14,144,27,150,251,233,172,240,146,198,203,252,105,165,155,137,136,86,241,39,215,189,36,155,145,173,113,81,145,238,99,218,211,187,5,171,159,214,208,129,120,146,102,63,178,231,60,30,188,199,165,146,137,101,
171,62,14,243,251,243,248,195,59,244,95,202,59,19,35,175,237,7,192,213,148,34,253,145,226,29,137,235,153,48,167,96,96,204,92,0,23,46,89,42,240,173,74,40,220,210,29,101,205,25,205,204,21,219,109,202,114,220,100,252,27,167,52,34,208,121,29,75,183,226,220,1,157,7,217,131,87,227,50,57,123,206,137,105,48,95,8,95,77,155,195,219,95,170,105,139,170,79,113,112,201,104,55,94,118,38,212,121,212,63,5,162,144,166,218,117,165,7,97,55,207,91,155,176,69,47,178,65,35,101,192,161,35,175,42,89,179,94,4,88,212,253,176,72,16,242,221,103,61,16,243,254,100,199,94,229,217,84,223,186,67,14,93,69,200,197,191,122,67,17,140,0,139,80,15,72,182,202,28,224,210,78,136,47,20,125,251,92,6,80,4,255,252,244,148,51,253,144,115,166,84,32,10,208,53,208,141,123,111,102,224,252,124,232,193,222,181,47,15,94,237,188,33,226,154,15,207,126,217,227,196,113,201,81,175,202,205,112,48,6,121,77,112,185,104,245,141,80,28,10,206,129,83,122,123,232,
198,120,232,107,131,189,95,31,47,46,218,33,25,48,184,212,59,168,243,17,53,169,201,107,144,73,136,215,19,139,159,46,179,110,48,160,178,63,186,4,74,254,210,248,88,80,7,224,98,251,84,64,124,72,51,172,197,146,233,127,32,129,124,152,137,192,22,91,143,190,22,15,201,17,31,133,190,177,76,21,238,180,162,28,224,98,47,126,150,238,4,1,218,64,177,94,156,189,81,144,15,53,74,13,32,21,95,216,12,223,30,255,81,215,90,254,202,186,22,237,204,8,210,69,87,154,247,172,50,100,156,246,32,146,70,191,109,133,71,31,69,64,145,168,189,194,203,214,167,196,184,102,75,143,118,83,244,84,246,29,233,222,174,27,67,64,37,252,185,214,25,253,94,107,110,184,231,216,98,201,63,174,149,250,203,174,53,60,203,150,26,251,227,147,136,4,254,10,235,183,158,56,28,49,224,52,188,75,19,203,66,35,230,80,189,147,71,25,6,1,183,52,7,207,241,217,64,29,226,148,241,238,147,246,116,120,193,108,69,214,20,85,238,137,164,115,27,200,68,70,188,127,24,221,254,48,
186,105,165,3,183,129,184,249,79,96,244,179,147,240,233,185,215,97,90,214,97,120,7,26,37,98,157,185,247,48,60,255,168,217,85,117,40,6,134,55,30,81,123,193,219,188,78,19,5,196,130,128,250,3,112,248,136,239,169,93,8,184,93,104,249,153,236,31,59,47,88,36,5,135,139,214,192,98,211,12,204,43,14,116,55,128,126,53,155,95,78,185,188,118,40,214,55,254,46,20,182,77,87,82,213,218,248,72,119,132,100,184,143,237,203,117,255,237,64,46,204,203,111,7,10,209,249,221,205,234,67,136,111,138,129,183,226,43,122,153,29,104,7,37,211,214,30,133,186,52,72,86,54,3,188,128,57,126,50,178,214,208,11,24,91,116,42,234,55,146,71,13,173,167,46,190,119,158,113,235,246,18,205,146,126,164,94,23,2,109,105,160,108,79,101,245,152,162,217,204,97,255,51,182,205,23,167,6,217,169,236,159,55,169,39,8,105,134,23,200,144,226,163,242,35,224,135,119,179,128,220,255,242,248,55,221,65,239,77,64,244,214,59,32,217,152,14,112,232,132,232,232,101,81,73,6,
215,232,176,154,10,24,203,231,240,148,232,153,218,93,19,12,174,3,76,198,87,61,88,191,152,187,79,236,9,147,207,204,118,240,104,167,17,4,1,237,203,113,204,193,97,170,193,250,129,77,153,173,22,141,193,242,217,255,60,119,1,238,164,99,6,198,10,50,158,206,192,79,12,18,122,222,166,96,106,9,99,106,99,154,123,6,211,230,153,147,189,5,103,28,129,203,163,5,216,58,130,10,238,36,136,53,192,23,189,192,32,96,181,35,237,11,24,199,55,180,219,225,4,198,41,231,132,244,111,157,53,193,229,255,220,24,31,40,245,140,246,231,124,65,36,76,100,221,112,136,0,177,241,10,196,88,48,163,19,171,40,129,154,32,62,9,43,171,169,142,120,0,175,1,98,108,68,65,54,108,1,111,189,81,224,20,249,98,250,36,223,80,152,93,51,56,237,248,212,60,89,170,161,254,179,26,249,62,123,211,202,194,105,27,151,130,63,191,212,210,222,252,71,203,108,108,49,5,230,193,110,80,68,60,175,4,112,84,66,1,151,54,103,121,208,195,184,36,48,225,193,170,50,254,23,212,
237,166,54,157,131,158,186,120,63,233,116,156,120,218,192,177,156,197,17,48,251,252,125,132,33,91,44,116,148,7,56,141,149,159,189,22,165,217,234,142,255,60,23,140,158,60,66,8,51,208,1,35,114,119,74,61,143,146,130,131,241,3,254,105,35,242,47,140,203,13,215,224,82,79,249,140,23,218,58,64,160,213,135,217,98,62,23,54,13,142,90,66,134,58,83,96,134,178,148,253,95,175,43,248,97,148,151,240,76,41,152,3,63,110,146,149,208,175,111,19,247,126,194,131,150,100,179,160,4,39,146,247,92,49,16,218,34,231,127,189,198,206,36,32,110,234,74,147,224,129,245,87,234,215,87,159,191,174,29,145,9,177,203,190,83,202,225,64,40,209,201,164,214,178,98,242,125,108,46,198,106,179,240,184,40,26,208,9,215,176,1,164,43,124,197,254,130,254,59,143,230,130,160,223,190,254,194,254,19,118,205,19,249,142,125,110,0,221,165,189,121,36,18,129,15,126,228,67,6,43,58,252,167,45,13,227,128,182,148,213,181,33,116,166,4,39,94,64,20,19,228,62,187,173,143,230,
95,209,26,201,241,216,201,103,79,241,30,72,120,179,63,29,13,57,119,194,113,234,134,150,239,178,218,177,123,191,187,5,185,199,16,83,116,210,32,248,254,139,104,182,191,168,13,128,108,75,185,125,143,65,160,125,78,118,88,14,171,248,229,163,37,255,230,19,204,30,180,231,139,71,15,151,37,159,102,10,122,251,139,7,14,24,235,155,146,190,95,187,102,241,169,76,179,143,149,44,91,242,55,205,216,108,199,99,70,141,215,29,224,68,81,110,100,17,55,73,251,40,253,96,102,62,172,60,156,255,138,230,5,39,216,201,91,251,103,30,211,109,171,111,95,233,121,129,237,9,2,85,126,210,178,38,48,236,39,232,252,127,33,231,30,59,250,234,167,191,105,106,219,6,185,110,186,41,70,23,61,12,51,105,159,218,192,92,205,2,17,229,110,30,254,43,92,152,65,35,194,152,39,243,131,45,27,0,111,117,175,187,98,167,201,8,46,36,227,139,205,114,187,144,133,171,153,20,51,164,199,191,48,191,203,209,172,51,82,165,112,124,39,244,144,230,59,14,130,212,192,112,97,59,24,70,
214,62,222,179,159,149,251,117,207,191,24,155,198,35,65,56,240,165,234,4,113,3,113,185,131,184,172,178,108,22,120,247,95,243,142,223,62,135,55,220,188,127,184,255,239,47,158,59,224,3,74,132,25,41,254,215,255,249,255,250,63,23,228,127,255,159,254,252,247,127,252,79,255,229,191,84,93,252,206,255,55,20,37,169,255,25,101,72,252,127,225,112,249,230,154,242,63,62,13,92,63,29,97,236,117,58,82,31,189,165,70,81,46,83,192,134,230,105,195,11,207,73,247,79,39,74,22,198,215,230,39,124,150,97,80,43,154,16,134,172,164,62,142,212,236,188,7,114,119,62,183,125,120,60,219,243,212,66,87,179,50,101,93,239,203,67,170,92,141,127,134,90,115,227,252,81,60,168,196,68,0,22,217,14,10,35,44,234,249,48,53,81,57,220,123,6,154,94,215,32,63,178,149,202,169,173,159,40,160,119,169,110,234,224,2,174,10,152,36,57,249,246,251,83,210,251,227,61,226,172,244,253,70,255,60,253,239,86,74,219,91,156,121,238,205,227,225,205,187,115,246,61,89,184,233,198,
41,183,39,198,121,220,32,190,69,154,83,223,238,195,124,120,149,96,222,31,195,109,58,238,242,237,134,112,104,88,242,92,69,113,241,98,222,57,39,123,11,174,124,147,149,237,115,31,120,174,225,113,77,180,189,2,214,241,130,54,14,87,59,16,118,94,58,158,171,181,210,246,23,102,131,97,60,97,86,218,144,16,42,123,194,207,162,126,92,41,158,1,1,34,40,81,88,125,214,118,239,193,69,105,55,171,243,59,255,237,248,242,68,230,129,51,178,48,196,200,185,224,229,228,176,131,107,111,15,178,243,39,239,243,41,179,162,144,164,96,188,202,202,95,60,215,238,48,79,163,105,34,176,240,11,195,24,56,135,181,198,14,164,134,126,49,143,111,91,238,251,107,117,183,190,164,147,141,174,45,41,167,167,203,118,153,57,233,232,189,72,226,209,169,55,241,241,184,190,13,183,239,225,94,1,201,117,74,112,0,3,197,5,143,6,76,73,140,240,82,79,221,29,143,176,153,68,239,126,158,75,168,174,158,183,140,193,101,237,162,35,194,186,187,23,131,0,250,211,17,92,128,139,64,177,225,
116,1,19,180,246,228,22,203,177,170,165,22,212,212,87,212,178,13,175,106,132,55,173,61,218,80,241,238,178,221,154,88,174,240,154,0,28,235,39,108,231,167,250,36,111,149,186,121,238,132,95,196,50,95,106,69,192,6,156,124,228,18,200,166,225,190,249,174,62,61,132,248,178,61,102,8,124,217,227,252,187,175,139,157,94,142,206,25,70,164,71,5,238,128,222,88,51,153,99,172,123,139,118,187,75,104,112,125,120,212,130,233,179,165,97,22,74,89,88,154,239,247,219,119,28,21,227,241,126,228,190,203,76,15,209,11,35,95,109,109,249,92,133,64,227,206,189,27,132,233,224,228,241,227,88,210,176,76,100,202,235,19,118,166,104,162,103,7,200,69,117,82,192,223,141,80,216,184,135,238,144,228,153,21,207,19,70,219,168,190,199,116,247,28,140,74,139,42,213,67,185,176,118,85,140,23,81,245,208,73,183,254,20,126,109,133,205,246,48,253,221,143,156,205,159,216,178,227,59,203,172,134,228,132,22,110,224,87,36,205,192,18,218,10,140,34,248,197,164,121,177,247,117,118,0,51,
5,23,28,203,178,218,94,140,21,252,186,3,152,110,92,139,196,37,200,111,173,180,205,185,99,207,210,221,192,231,101,63,245,123,152,160,239,174,179,198,209,57,66,188,26,217,209,113,52,226,102,175,204,46,246,192,30,168,240,166,180,30,37,20,133,81,189,217,229,154,137,237,174,161,21,182,67,152,58,94,222,195,131,243,57,69,89,140,36,251,160,128,115,7,13,108,54,166,227,42,120,183,46,85,89,205,81,93,12,100,217,39,175,242,114,223,78,223,54,223,202,233,42,213,56,74,110,147,215,181,73,76,32,183,107,81,88,117,191,114,18,130,178,225,58,94,18,124,16,157,113,211,169,136,233,26,96,142,143,115,173,251,41,138,77,26,147,114,185,179,239,247,84,243,78,209,11,136,94,109,130,72,237,227,12,46,42,97,32,167,34,155,195,72,140,226,145,44,140,115,96,169,34,219,86,193,121,97,181,128,43,58,142,243,247,48,67,63,186,131,188,115,171,79,5,122,244,23,215,179,38,230,49,102,240,91,204,15,22,134,159,124,159,103,173,150,175,200,115,1,98,112,50,205,118,173,
157,37,181,60,248,122,25,239,139,237,53,33,23,166,207,233,63,209,101,84,115,111,247,212,134,18,88,175,22,36,143,5,65,35,236,161,230,198,93,208,174,224,224,184,242,218,32,212,240,21,67,228,188,207,222,223,203,20,89,114,210,58,199,203,190,12,125,1,190,24,238,88,187,232,16,126,130,111,151,19,169,171,47,131,92,224,39,219,189,135,69,251,201,227,253,109,240,243,161,13,175,100,227,198,173,110,189,38,100,173,90,239,177,25,50,22,212,4,109,225,54,97,33,108,37,160,165,205,77,231,194,242,19,30,62,206,185,210,249,221,33,95,149,49,33,165,243,129,221,112,126,26,103,8,76,20,207,67,4,42,50,193,214,204,36,97,66,240,158,244,228,155,110,185,100,137,241,59,148,227,94,72,220,245,48,139,234,119,158,108,17,9,201,144,147,101,77,148,116,91,132,181,51,226,157,225,160,49,92,197,223,82,93,128,15,245,62,145,118,15,192,23,138,113,56,162,163,110,65,6,106,246,94,123,31,204,212,80,22,114,69,51,204,210,177,98,236,5,143,231,48,154,70,105,210,110,
26,183,250,110,219,187,143,102,210,69,84,159,108,174,184,0,195,41,118,221,13,77,117,93,56,26,159,5,35,168,35,233,196,106,227,243,218,22,69,179,161,190,87,134,134,233,221,215,226,205,135,67,210,157,176,170,16,207,157,165,248,132,236,101,45,139,49,140,213,111,135,71,65,185,85,183,188,18,26,5,144,165,64,253,64,185,163,52,31,6,130,94,92,112,219,61,211,118,114,51,172,166,118,109,6,235,19,142,12,251,78,15,165,184,121,214,71,41,213,251,137,167,68,62,180,98,56,158,132,19,245,112,121,199,179,182,20,204,233,70,112,189,70,59,138,159,216,45,150,225,198,117,195,179,204,94,85,186,150,218,128,41,117,128,63,211,71,166,6,184,80,222,52,119,26,251,51,51,212,90,231,237,251,147,230,232,13,135,16,9,89,183,157,157,239,65,190,207,150,144,113,131,240,190,129,104,226,213,65,145,213,8,189,203,214,248,255,198,29,225,205,189,191,99,238,71,69,230,147,123,126,113,77,126,125,137,74,126,243,210,151,138,120,243,174,125,169,8,240,218,151,168,204,55,255,238,
190,120,109,222,205,239,225,76,245,54,220,190,135,19,56,132,195,58,207,36,56,78,51,110,234,251,254,190,163,225,141,19,176,207,253,253,24,64,238,114,230,45,95,184,247,157,2,231,4,239,245,103,78,230,54,159,115,185,76,231,39,78,229,52,239,205,115,65,2,94,189,170,187,103,130,143,82,159,59,167,141,224,28,15,19,96,38,248,40,25,70,30,143,193,240,39,122,71,183,237,165,226,97,72,122,2,176,240,154,228,222,227,80,113,137,143,61,153,90,251,110,157,153,83,71,110,245,43,203,112,84,160,207,228,147,177,213,133,12,153,142,39,23,126,74,1,5,203,224,248,182,130,190,5,228,237,207,7,215,250,239,192,185,169,189,120,247,236,91,246,63,242,158,171,155,188,239,12,210,157,77,49,137,160,129,0,64,237,52,190,78,40,197,131,35,128,224,60,176,48,17,116,153,120,215,95,19,92,177,111,207,221,62,231,128,7,44,197,64,27,141,173,36,91,183,254,242,230,166,181,241,243,4,191,183,49,121,87,247,20,134,80,220,202,169,227,28,93,243,141,122,216,70,97,248,14,
56,11,140,81,99,149,150,143,89,240,121,86,123,11,51,230,224,131,126,52,31,35,31,142,254,227,58,183,211,43,18,50,25,87,52,188,212,36,209,118,13,160,159,55,121,190,66,23,207,53,27,78,140,6,89,95,143,147,84,198,75,170,145,202,154,94,125,206,143,71,211,166,76,1,23,113,130,81,16,205,208,36,205,174,203,78,211,249,110,244,163,39,109,179,71,157,4,3,199,17,67,103,126,192,33,125,182,247,243,69,169,17,140,46,88,226,195,219,242,234,47,146,126,81,33,154,13,189,208,185,216,162,207,45,63,160,158,33,16,22,160,214,23,99,37,222,126,183,29,114,228,227,9,178,90,244,49,230,19,145,86,126,135,185,228,118,136,98,72,134,175,13,211,15,97,147,41,47,30,101,246,2,66,3,207,22,20,208,132,180,163,184,143,178,105,91,204,241,167,5,34,35,134,82,140,88,123,49,51,32,122,24,166,200,160,200,189,238,17,168,245,243,98,234,28,213,81,176,43,67,223,117,102,44,233,208,242,164,224,249,45,142,196,19,57,180,49,238,197,243,195,126,37,182,72,149,
204,21,141,39,255,33,85,2,122,147,199,76,203,239,17,173,91,212,41,88,178,177,216,179,79,241,39,164,22,133,217,164,137,167,211,67,116,211,103,212,187,118,140,54,186,91,35,47,159,129,29,238,75,163,76,171,188,58,237,18,232,190,162,20,121,47,174,185,124,217,18,158,24,121,181,111,186,150,10,178,97,223,232,231,235,17,126,74,133,122,5,25,148,60,134,253,125,95,82,29,196,63,115,136,174,183,18,35,61,39,154,193,176,96,184,223,183,214,218,242,206,138,105,184,95,99,81,42,26,66,5,166,175,64,252,196,165,240,19,138,95,125,130,209,170,180,100,56,30,87,50,226,163,7,69,111,89,242,116,147,116,93,46,183,100,212,137,184,75,152,122,84,57,18,76,28,48,179,122,102,77,216,119,11,185,160,18,139,37,19,75,25,203,155,166,106,188,189,103,144,120,175,183,87,185,130,228,194,158,186,158,62,20,81,114,101,178,19,53,82,221,41,136,247,210,219,163,16,146,49,103,190,27,107,102,202,57,100,98,112,216,139,59,192,246,125,173,47,39,92,62,40,48,250,23,20,
204,120,115,62,113,243,121,122,175,59,226,104,156,170,222,238,181,231,158,59,166,81,102,142,88,175,18,203,95,158,151,44,36,92,69,241,45,32,189,100,109,195,37,71,142,174,129,25,2,30,236,114,190,169,27,87,58,211,146,238,137,234,196,243,177,10,41,75,80,84,235,251,129,127,30,204,147,159,62,111,111,139,214,153,110,183,86,76,244,85,197,107,84,130,118,239,140,95,104,50,38,41,6,50,61,237,2,62,30,131,154,52,110,226,100,136,172,214,242,248,165,42,109,155,211,241,53,171,56,209,78,144,18,24,106,255,180,124,221,242,14,73,140,143,57,147,49,215,249,40,207,218,208,208,254,251,104,228,152,220,253,247,78,54,232,181,117,149,215,79,231,231,220,92,27,196,128,62,211,117,173,206,184,0,6,68,139,38,210,187,238,66,18,211,82,150,103,249,220,202,123,154,76,168,233,101,222,118,207,247,21,104,25,106,245,217,13,151,120,111,192,50,87,158,61,229,18,188,207,10,163,94,42,37,198,36,8,207,13,118,54,138,30,111,76,19,13,47,205,27,189,181,167,233,178,157,
99,48,218,157,138,158,172,60,122,4,137,183,236,52,213,107,90,104,172,70,248,238,107,108,219,80,138,239,19,235,5,194,112,9,58,166,172,251,92,224,9,49,89,200,198,35,217,152,75,69,174,247,164,105,157,83,244,106,209,97,124,248,198,81,208,204,147,129,146,8,69,98,36,221,176,20,187,33,179,144,153,45,36,159,232,106,21,79,63,70,238,65,121,206,19,151,192,212,142,163,28,192,165,64,3,176,119,63,38,193,111,183,59,24,32,113,203,207,115,11,27,103,89,167,170,58,70,193,101,140,91,188,113,60,248,249,253,125,94,189,224,243,182,71,1,200,26,1,24,215,214,202,204,14,0,23,56,233,153,147,76,62,181,218,214,45,242,5,217,68,229,189,124,118,147,22,86,150,171,13,111,137,195,169,189,80,249,111,247,173,37,95,168,229,0,212,230,11,95,101,225,45,147,133,137,113,20,40,77,217,187,108,70,68,98,85,53,250,159,230,149,229,156,97,192,121,25,100,84,65,95,188,217,138,36,108,92,80,151,197,222,5,243,218,113,1,97,186,133,97,8,87,184,166,245,80,
231,135,14,43,71,6,13,215,167,154,180,166,171,20,56,102,180,148,225,38,230,170,121,56,4,49,50,1,117,129,169,65,142,64,159,179,255,188,82,135,169,103,77,30,168,40,9,247,243,35,122,99,111,200,57,217,151,130,235,43,25,98,67,56,19,112,212,174,147,199,3,215,25,121,170,72,101,171,10,4,174,8,193,35,251,151,12,29,109,217,186,158,178,50,54,116,207,99,216,147,29,9,104,177,11,28,152,173,181,135,58,76,22,56,48,139,127,159,95,196,198,16,12,28,223,94,64,44,141,159,59,196,227,111,245,191,61,159,203,237,48,12,222,0,127,222,7,236,138,4,198,178,89,148,28,17,83,70,152,232,65,214,85,21,77,4,224,64,178,181,68,130,99,226,74,48,118,1,90,188,148,68,226,137,227,125,215,191,30,37,37,183,113,116,157,210,22,17,150,39,108,158,109,67,71,16,224,56,218,144,48,19,189,140,15,113,192,240,38,189,149,233,188,158,255,113,126,210,83,52,90,103,33,182,126,225,219,51,90,86,116,91,150,218,150,54,5,178,250,54,192,32,159,74,34,55,
241,23,236,164,177,99,177,152,14,39,227,53,164,179,173,145,149,34,193,64,180,214,128,89,233,12,234,33,216,45,140,100,241,237,20,94,22,77,33,176,146,126,248,108,218,52,225,205,207,93,243,240,177,156,161,122,223,68,103,203,185,194,19,224,213,254,0,210,124,135,236,121,176,161,188,138,92,116,78,154,122,8,19,186,177,161,139,9,100,218,225,159,67,160,106,188,220,66,94,72,157,181,78,157,23,208,252,34,232,147,186,237,49,250,218,43,90,59,150,245,73,67,124,95,181,235,59,161,160,215,162,69,59,187,180,239,124,151,216,250,0,150,86,75,197,82,157,5,56,0,33,194,183,43,61,22,41,57,190,8,183,95,69,38,58,237,42,84,130,201,244,216,128,63,237,176,121,208,52,237,226,164,10,172,14,48,54,242,69,18,138,147,119,212,117,39,243,136,99,172,54,171,59,142,90,214,64,243,58,79,193,239,58,9,144,135,115,58,31,9,8,83,22,125,23,217,23,83,183,61,123,59,130,234,18,215,227,54,61,27,196,79,63,245,43,134,137,79,186,62,135,137,243,166,67,156,
96,180,191,52,246,80,199,131,120,61,103,167,77,231,176,81,212,196,8,14,161,189,189,81,24,73,97,73,62,198,49,9,199,10,75,53,72,119,251,81,18,117,90,51,69,33,27,15,108,210,148,139,117,113,27,155,1,204,37,229,53,101,193,210,43,62,37,52,214,112,52,93,147,60,148,2,24,223,110,145,53,149,157,11,243,16,33,121,229,112,179,48,185,134,46,197,188,97,134,131,84,117,102,205,112,155,153,118,134,89,135,207,115,77,6,71,244,208,196,81,98,126,107,81,171,162,72,45,72,13,216,114,178,178,137,36,195,191,151,186,94,66,165,154,0,6,218,148,209,203,249,240,240,85,175,41,80,91,123,157,2,34,106,47,245,41,195,195,11,123,221,170,240,46,240,252,186,48,185,20,92,66,159,39,196,190,218,42,176,192,101,126,55,42,178,79,137,122,201,152,56,38,34,103,117,223,80,22,65,166,13,240,99,98,135,40,153,95,9,223,112,59,207,14,25,156,86,93,20,199,197,97,244,27,89,119,211,231,41,147,34,242,10,77,52,135,116,224,56,186,193,100,156,126,149,210,
8,178,63,151,60,179,78,133,3,0,190,67,102,37,26,236,49,106,20,98,2,157,55,226,230,7,239,231,217,222,86,63,190,200,219,195,162,137,11,61,137,163,15,172,203,160,212,203,176,197,59,73,127,120,114,26,235,184,199,26,201,203,142,27,30,205,229,146,243,196,221,216,94,149,115,236,152,229,52,16,33,102,121,237,190,144,226,122,117,198,58,46,132,21,228,124,116,129,241,145,129,121,217,86,17,41,177,238,53,116,119,199,185,96,225,2,146,103,125,76,56,9,101,217,217,25,111,58,68,117,69,75,132,243,78,199,209,3,29,207,35,33,228,11,123,223,109,116,109,55,21,57,225,167,232,32,157,109,148,159,110,141,105,131,155,107,239,166,6,178,12,41,216,241,206,225,135,80,49,43,84,175,53,181,223,117,121,255,172,155,164,101,118,66,225,49,76,231,112,108,29,243,67,217,234,156,122,156,225,104,143,26,249,52,235,200,175,18,148,205,186,23,222,134,235,227,106,30,133,111,174,11,242,130,116,184,232,129,125,138,224,141,210,9,232,233,5,193,25,176,62,206,129,216,40,161,
59,67,179,251,174,29,9,180,5,188,52,250,113,120,90,118,174,119,7,252,122,77,78,106,45,148,227,127,178,166,93,219,70,76,11,22,130,177,109,99,89,124,159,157,192,82,110,225,118,14,197,27,63,90,154,36,81,252,122,41,49,108,244,146,1,147,22,133,238,216,190,192,209,99,164,45,44,130,172,7,225,230,174,129,63,212,45,50,38,204,142,86,64,92,17,233,151,108,49,98,79,166,167,8,43,60,24,183,58,124,54,199,81,147,61,59,13,150,221,32,209,232,128,36,217,195,163,59,7,196,163,46,105,237,9,23,249,182,173,175,214,16,10,148,98,242,155,112,122,155,181,10,17,109,193,98,193,39,12,191,158,83,0,93,109,45,205,56,141,78,16,235,149,10,99,111,168,103,19,183,127,194,122,19,135,203,136,49,212,54,161,45,251,134,230,124,50,93,88,5,188,84,148,188,221,236,101,27,205,185,201,161,253,58,252,69,31,89,240,65,144,89,203,84,141,194,90,13,48,42,200,146,71,88,219,108,220,191,156,53,15,237,115,29,139,155,160,74,17,229,64,63,126,104,111,21,
234,2,141,94,127,106,214,207,121,207,10,91,220,146,19,26,196,243,148,234,151,219,179,162,47,122,22,82,97,71,133,3,209,182,235,196,97,96,250,162,79,149,34,140,149,7,113,175,137,57,222,125,80,116,143,105,229,207,228,191,203,151,63,127,118,51,111,200,199,30,184,1,120,47,64,204,217,2,94,81,178,226,113,128,130,127,196,220,113,30,247,228,132,233,75,193,237,91,224,36,231,191,239,21,149,60,242,230,174,175,246,57,227,210,199,31,110,231,3,65,221,159,48,246,153,102,78,248,232,255,21,199,143,253,171,24,179,245,57,174,107,177,145,12,167,91,10,41,36,202,74,83,107,71,175,106,239,195,218,107,164,87,182,55,242,178,1,39,14,185,18,1,82,147,28,192,181,221,229,22,132,192,18,135,31,115,225,102,142,23,202,246,245,123,75,181,232,37,182,112,245,141,135,218,120,44,81,58,126,181,116,144,171,133,202,158,58,234,22,207,236,105,219,87,28,70,219,58,183,136,104,175,190,104,118,51,199,29,71,236,69,227,158,201,180,133,223,84,124,26,42,140,140,145,2,45,
131,184,60,188,87,156,107,237,26,192,97,233,114,93,186,93,118,191,53,47,102,93,253,218,62,41,181,152,177,169,138,222,175,9,15,157,217,250,182,187,179,236,69,238,110,110,49,181,87,120,124,156,173,218,109,49,39,15,7,101,39,2,244,129,202,247,32,150,201,169,245,197,175,132,77,131,219,251,206,36,25,156,79,48,49,92,226,246,189,126,224,45,35,236,173,159,53,189,236,153,135,132,15,6,247,110,171,125,243,204,187,184,9,231,12,113,17,135,53,162,55,135,89,86,131,254,39,251,251,232,117,237,4,175,33,78,61,84,234,214,196,161,93,78,144,252,126,184,129,26,121,181,104,108,231,231,5,165,79,221,28,122,207,49,25,163,231,208,207,220,98,149,135,36,77,154,166,19,81,43,227,94,251,194,59,47,232,232,137,126,30,28,135,5,209,225,227,181,45,16,164,83,54,24,112,109,13,155,220,176,132,143,79,228,237,216,159,135,153,118,173,223,20,203,234,78,121,235,15,227,238,112,185,135,176,193,214,237,120,254,222,209,206,3,33,189,154,0,76,69,2,196,212,251,149,109,
4,7,226,166,90,211,161,227,212,0,231,56,14,9,221,204,253,31,138,177,191,233,70,77,204,61,210,74,100,206,125,232,191,56,3,10,109,2,176,103,18,183,25,112,239,63,197,245,52,205,6,244,112,246,15,242,68,44,105,107,147,35,241,215,193,211,4,74,135,2,11,164,184,127,3,121,48,138,140,23,161,251,131,233,210,247,118,150,64,142,220,80,126,46,212,110,9,101,46,94,184,240,230,253,242,194,91,121,112,141,183,116,109,61,64,220,43,32,127,207,186,10,132,194,222,8,45,169,71,24,197,150,2,124,192,158,226,198,222,72,218,220,24,100,59,235,168,112,104,168,176,63,87,189,38,89,250,122,125,32,160,171,27,155,41,94,216,155,92,77,231,22,68,55,15,188,197,46,221,57,68,231,103,255,14,178,17,162,197,199,98,42,97,132,36,26,133,31,247,57,19,210,67,35,117,242,117,102,216,124,236,86,17,109,240,214,55,137,49,231,104,85,139,137,55,195,185,84,115,88,40,111,171,107,190,143,20,245,252,212,9,203,148,92,124,166,142,135,122,192,121,195,243,233,179,62,
166,182,8,39,116,111,73,148,60,77,22,24,239,59,189,181,80,78,28,196,243,234,214,247,56,223,31,11,134,149,251,141,158,121,181,84,84,194,51,109,157,170,239,231,146,236,102,80,72,168,66,104,148,251,214,247,135,26,116,250,120,215,93,40,104,217,182,54,183,24,17,230,164,210,81,253,166,55,115,174,110,232,216,98,247,49,147,145,34,214,178,190,128,183,142,37,6,198,127,170,196,233,119,152,212,117,34,38,46,22,32,72,227,213,90,0,245,80,246,113,175,238,225,1,56,110,53,179,70,234,179,226,53,144,210,227,17,63,110,171,105,133,99,96,189,116,221,154,141,13,163,123,73,221,44,106,22,229,23,14,143,194,196,61,216,32,182,130,130,227,107,92,205,177,82,44,98,66,83,119,130,24,167,203,84,223,194,216,223,5,175,107,38,4,141,8,221,255,0,203,152,94,70,119,232,225,246,64,222,92,133,221,27,123,46,21,36,65,5,116,198,78,84,231,26,254,227,97,41,240,112,53,205,116,149,240,100,65,222,188,219,235,201,169,117,72,79,115,189,198,175,7,179,109,59,109,
26,200,150,0,151,33,83,237,249,52,78,52,44,176,52,252,44,143,11,166,111,219,198,248,129,126,237,8,132,211,174,4,64,62,141,241,182,111,151,194,104,125,236,184,112,99,38,199,198,125,119,109,218,122,65,250,28,146,183,224,235,74,151,240,234,165,81,190,20,111,71,253,176,15,229,165,228,71,50,241,146,46,178,100,36,120,41,111,244,249,116,217,64,75,193,111,142,234,205,71,9,98,200,39,241,83,65,253,233,242,232,93,177,161,130,186,195,62,224,73,126,236,65,67,62,201,137,160,60,154,32,27,221,127,158,119,235,126,237,94,179,246,80,215,220,33,46,204,84,20,228,24,127,119,86,252,231,197,84,175,230,153,80,125,153,130,44,246,17,127,251,255,195,11,212,254,254,251,123,246,199,106,190,255,81,11,252,143,156,100,110,175,157,227,190,201,152,225,131,39,142,20,9,73,1,108,4,132,231,47,75,79,97,156,99,41,120,53,191,192,47,35,96,164,184,171,233,43,111,232,86,106,229,31,28,112,168,191,115,171,103,245,197,135,77,60,231,250,69,140,100,19,77,195,56,37,
105,95,226,186,150,85,109,36,221,103,95,219,103,141,167,251,206,104,207,7,179,208,57,121,9,163,178,190,101,159,148,167,77,22,73,66,117,150,62,233,214,62,25,210,13,114,231,220,241,48,40,88,140,185,64,52,68,123,50,33,22,237,228,211,217,83,58,59,96,50,145,158,213,250,22,125,146,154,22,98,251,32,100,29,174,164,134,190,36,107,83,68,42,195,134,119,31,71,108,187,69,219,193,122,239,142,156,153,219,194,81,199,141,104,195,136,46,109,157,126,18,91,38,100,140,224,76,131,118,248,31,13,222,223,86,170,228,45,80,48,109,135,113,153,91,231,255,224,5,36,141,221,181,249,46,33,2,73,3,251,235,157,176,215,237,195,112,40,253,208,90,46,145,24,62,42,215,183,100,169,56,72,150,28,36,75,90,228,29,65,193,237,91,199,74,78,10,197,122,45,118,102,83,69,74,61,114,216,203,237,117,120,191,174,71,194,217,30,214,120,248,231,38,163,68,253,65,196,147,51,86,102,202,188,163,22,166,170,111,167,158,237,210,239,117,95,188,224,77,237,84,180,9,145,250,159,
199,98,112,234,235,173,112,71,187,110,144,31,246,99,45,35,10,247,132,173,83,174,166,237,170,122,73,127,146,238,233,215,112,91,55,53,254,217,156,210,141,55,65,198,44,58,7,74,255,180,40,185,170,182,235,220,202,180,174,203,182,80,203,88,208,191,121,2,126,115,108,219,146,213,253,22,249,212,246,186,158,182,232,164,98,39,69,183,182,18,38,90,85,49,38,52,119,73,78,33,230,212,45,127,198,214,252,8,107,223,111,42,219,79,188,166,139,182,248,241,52,248,44,247,201,85,33,206,248,69,1,122,2,237,188,123,152,233,109,25,83,101,222,52,181,57,44,238,252,64,6,57,246,202,141,196,63,174,204,121,249,223,71,28,117,217,54,243,252,181,208,24,34,205,108,67,203,207,229,225,140,254,219,229,136,193,206,94,159,95,253,225,108,99,254,101,71,236,5,88,252,109,104,92,173,254,133,53,242,191,66,131,233,171,62,181,244,120,147,205,123,250,16,190,63,71,221,89,146,113,17,156,15,252,224,159,206,71,247,107,58,22,48,60,130,99,43,159,48,186,44,117,240,108,169,6,
250,92,95,11,120,85,230,182,64,54,12,251,96,152,79,236,1,123,176,121,110,242,84,17,80,13,143,249,81,182,103,218,158,183,41,64,20,186,184,175,156,235,60,182,248,176,85,202,37,158,71,60,71,92,220,5,115,108,161,47,163,253,214,71,51,118,209,147,84,96,174,78,246,236,179,177,124,221,101,163,132,217,169,158,175,123,17,129,24,31,85,154,68,194,31,213,221,101,99,188,82,43,79,157,200,106,79,234,40,32,110,254,194,181,211,146,220,60,75,181,132,132,244,110,152,225,68,129,155,109,159,123,87,149,177,226,195,222,120,190,91,173,2,173,167,188,193,172,209,152,201,59,167,70,137,208,164,19,86,206,121,10,58,93,166,0,238,147,31,233,101,68,77,87,156,69,223,243,220,87,44,19,161,140,230,132,104,35,179,32,39,3,195,245,237,91,108,191,58,101,115,85,137,76,158,48,213,11,77,46,236,54,180,220,244,45,241,212,34,87,223,158,169,216,49,3,199,168,213,2,141,71,45,149,234,125,182,237,137,246,42,94,43,196,237,13,160,212,134,5,198,61,233,155,189,2,
30,59,90,123,150,158,139,241,185,196,212,2,233,7,81,26,102,55,136,67,48,78,103,170,188,172,94,129,162,78,175,81,242,6,50,74,101,214,71,243,247,237,99,197,148,17,115,150,38,234,106,19,20,234,216,25,101,124,217,193,252,46,20,202,206,177,174,165,75,34,147,68,228,168,156,114,155,115,65,77,160,38,228,110,42,79,251,219,166,42,174,57,46,69,206,113,211,85,209,148,72,140,16,126,21,90,62,111,213,149,53,114,185,10,54,79,27,19,176,38,91,132,187,133,123,247,6,65,112,21,230,161,47,193,73,46,64,221,169,1,159,148,62,126,3,73,46,90,94,56,61,31,25,39,94,73,223,141,146,142,80,167,221,220,38,159,11,94,31,75,190,78,18,13,227,38,246,136,57,80,109,9,197,196,143,174,93,111,241,57,163,245,24,49,89,144,132,107,189,5,134,185,14,163,193,97,100,16,59,111,116,230,180,62,84,37,84,29,248,172,191,68,96,71,19,132,63,172,227,83,53,78,59,109,161,93,180,211,236,225,183,200,235,116,255,116,151,103,252,185,147,216,157,4,158,93,
240,37,250,234,88,136,87,117,111,7,57,73,105,153,123,79,226,77,110,78,15,218,102,187,121,85,191,7,217,74,185,251,90,249,49,140,65,219,46,222,216,247,9,183,175,215,142,163,60,188,118,233,242,154,110,192,175,234,9,33,174,10,246,73,167,23,112,99,1,113,116,149,103,124,40,189,127,142,190,232,174,235,214,250,27,145,44,202,2,56,216,167,124,248,54,5,112,235,107,184,143,51,20,142,246,185,164,50,56,100,237,26,158,15,40,81,108,42,29,226,238,196,74,211,107,62,147,87,76,156,253,115,112,39,216,10,80,55,184,2,31,149,27,163,90,221,78,93,157,59,3,136,169,198,82,34,242,242,209,244,40,198,17,198,64,174,167,121,51,240,105,38,225,240,178,176,233,225,42,64,42,32,6,157,154,171,241,254,216,227,71,238,90,128,21,15,251,29,33,52,199,223,131,88,197,171,172,217,68,55,24,96,78,228,54,90,126,171,255,227,216,2,62,47,20,55,206,189,87,63,236,146,189,93,248,168,255,79,124,57,238,207,173,226,62,156,88,101,203,196,188,169,158,204,66,124,
59,3,140,11,105,95,221,189,125,213,253,80,255,220,131,167,122,85,137,8,100,248,116,86,82,155,45,109,49,224,198,253,197,100,110,101,10,234,167,130,181,7,194,88,197,7,143,96,222,24,209,97,78,100,34,121,46,183,106,178,70,161,120,122,71,138,116,139,62,120,120,61,15,255,55,111,111,182,237,44,175,101,9,190,202,119,85,35,79,41,235,136,190,201,24,121,1,198,24,99,58,219,152,174,70,92,208,201,6,211,247,48,234,225,75,251,251,255,115,162,201,170,204,136,204,168,26,123,123,111,27,75,98,105,105,105,174,57,65,192,151,215,61,165,179,40,245,189,74,61,121,124,134,208,4,133,55,169,228,21,127,98,242,99,23,178,13,49,211,204,51,51,55,187,246,250,12,57,218,113,221,175,229,167,78,67,126,163,148,15,167,11,209,88,246,109,190,221,126,238,233,189,179,178,113,156,20,18,251,139,14,168,129,110,246,161,167,147,89,155,97,178,88,227,227,192,122,34,107,209,121,77,200,13,106,205,24,81,36,181,181,207,246,205,213,100,36,122,73,201,191,30,22,153,156,95,
101,153,9,238,96,239,193,248,145,188,251,55,217,60,186,230,248,201,171,91,185,54,244,182,175,170,186,19,119,250,217,126,158,50,22,83,26,203,101,102,58,246,45,87,145,96,47,41,150,78,206,75,236,116,82,120,46,84,42,247,222,167,50,15,90,242,83,61,27,126,106,71,94,189,162,23,65,125,163,203,54,123,98,189,165,220,121,182,134,108,250,220,158,252,235,182,140,56,216,168,190,249,106,245,228,52,98,159,68,126,29,223,94,12,83,21,145,144,232,252,252,141,48,227,136,197,27,157,140,247,190,253,26,155,247,49,46,119,88,243,11,157,37,117,27,189,176,173,197,139,97,27,237,201,28,99,209,108,241,214,12,254,229,43,88,189,112,138,158,22,209,123,35,221,249,159,154,125,81,222,41,35,74,167,158,91,54,9,170,204,33,72,52,69,148,103,38,249,96,233,43,158,83,231,227,155,68,30,143,101,234,236,13,183,44,184,181,211,151,158,165,197,63,184,126,38,133,67,175,103,218,252,61,111,163,93,255,244,235,199,11,72,62,8,239,160,46,171,185,122,82,221,233,145,47,251,
173,240,23,140,253,229,137,186,116,225,227,197,156,137,42,222,208,59,126,105,34,71,198,100,180,193,139,86,120,33,59,84,161,62,212,83,45,83,61,177,127,161,83,91,142,115,33,48,15,169,2,98,89,70,201,35,136,155,55,87,98,68,55,238,53,32,203,217,27,59,191,128,92,223,47,183,100,234,153,2,235,131,12,18,235,24,60,7,146,113,151,187,192,59,181,34,169,78,84,198,234,109,33,60,209,235,208,150,166,67,187,18,131,117,43,13,231,173,20,7,180,168,232,194,229,223,53,29,114,58,232,207,85,113,241,143,236,48,169,16,17,157,238,214,212,211,187,243,211,177,19,132,242,248,57,111,146,186,19,249,146,174,10,29,206,119,83,202,140,239,183,231,139,76,143,242,168,194,121,251,149,189,31,234,127,212,177,150,255,101,206,193,5,147,57,134,146,121,151,126,151,205,10,81,251,215,182,153,131,247,165,4,90,206,166,212,72,53,209,152,44,235,44,95,75,57,198,129,40,18,212,109,157,250,39,27,77,25,28,217,12,179,72,150,183,111,162,127,50,54,118,56,252,19,144,41,
156,7,43,241,84,19,234,139,64,80,125,244,166,207,14,170,142,38,250,161,159,238,144,122,183,101,114,107,2,57,61,120,44,44,1,163,133,158,243,115,17,87,228,167,63,79,140,192,138,118,127,218,149,154,116,207,174,186,68,84,22,133,85,27,220,94,224,187,231,185,93,170,201,199,189,81,39,236,163,234,218,68,183,154,208,226,219,126,207,95,243,230,147,192,30,34,177,239,52,153,104,12,41,120,50,31,106,209,220,7,50,33,199,35,244,3,78,243,34,136,117,73,222,253,32,233,0,81,71,254,124,172,225,42,186,23,34,36,214,252,67,130,238,224,134,210,162,248,203,109,54,51,163,243,120,51,234,76,174,171,117,46,152,239,153,84,197,253,68,96,248,139,130,220,63,251,170,61,126,39,212,137,99,170,107,193,68,146,73,172,235,196,99,48,68,202,60,201,235,66,110,204,106,204,154,175,54,243,119,108,82,35,170,146,33,55,35,38,234,240,164,226,185,154,190,85,225,99,117,102,58,41,28,254,27,199,38,23,37,81,6,227,29,235,61,204,71,229,91,118,254,137,43,251,177,156,
125,103,100,146,174,234,43,103,248,208,175,249,237,5,243,229,254,50,227,68,34,60,82,245,31,101,19,45,75,153,217,148,248,45,170,148,72,26,221,205,220,102,180,231,234,106,204,164,70,5,235,204,139,132,68,205,167,79,122,237,97,114,129,65,129,6,172,84,34,87,197,122,247,177,84,145,14,66,81,232,242,201,158,174,165,75,15,225,128,29,116,34,202,1,121,235,82,127,27,184,109,220,180,159,105,135,28,58,202,174,92,232,186,252,228,90,137,85,136,57,221,54,210,46,92,45,146,32,94,122,231,123,86,74,164,35,89,4,114,222,232,231,243,211,235,155,176,22,76,99,237,81,43,223,166,107,151,24,240,149,239,8,253,28,244,250,84,121,162,192,241,67,102,36,143,44,97,226,230,161,50,228,240,46,112,61,150,104,13,205,125,19,19,42,57,204,84,123,64,195,36,209,161,203,7,65,147,158,7,162,187,216,222,165,201,238,162,233,62,252,178,218,5,242,182,68,79,102,141,186,0,156,110,227,160,242,206,230,197,244,28,11,233,55,185,77,12,178,95,44,50,111,217,60,139,79,
198,32,156,254,98,93,222,130,145,28,229,153,203,78,41,150,195,243,179,174,188,27,111,240,114,248,115,12,113,151,212,249,125,145,152,123,247,61,222,215,40,158,235,139,241,58,162,93,161,222,2,89,85,188,197,5,99,216,5,4,107,95,98,160,152,221,229,237,205,15,222,156,206,45,252,102,10,153,17,103,111,191,12,209,14,208,181,221,38,195,55,125,251,34,50,202,105,44,174,249,105,116,191,186,53,141,195,158,125,221,211,248,52,58,127,196,121,54,169,191,174,92,236,226,141,82,206,117,24,109,67,248,0,134,190,108,219,121,104,232,214,190,120,119,60,158,38,233,48,6,229,4,23,217,86,136,34,214,111,208,13,201,144,61,249,55,234,89,210,144,27,158,42,157,95,199,35,124,82,193,222,63,34,54,225,239,27,253,84,73,229,28,103,38,55,12,218,215,53,146,155,51,130,74,247,73,203,81,211,247,70,157,125,204,165,206,52,192,105,12,240,102,67,76,203,44,72,128,22,191,238,142,166,244,89,170,43,251,254,22,152,247,14,151,243,116,202,73,49,20,191,20,147,205,139,138,
193,150,254,130,201,0,132,14,147,168,90,174,125,110,220,78,68,33,144,69,213,63,104,139,186,62,38,229,178,76,190,74,90,217,56,155,253,234,166,61,114,89,141,54,150,164,223,112,80,22,173,47,190,39,217,60,76,241,60,26,115,247,77,124,118,85,210,199,229,240,34,60,7,243,200,233,217,71,245,82,25,67,231,72,67,219,62,1,247,66,244,208,131,3,77,141,58,39,125,35,139,15,52,168,98,19,81,162,102,222,56,16,208,39,34,91,30,182,147,80,55,34,24,225,54,24,185,56,200,115,152,120,207,214,201,61,121,206,178,75,197,29,111,50,47,116,191,31,56,205,20,105,230,6,154,114,86,57,163,216,27,119,158,59,142,205,14,150,60,101,234,238,120,110,34,27,122,111,77,41,70,123,37,158,147,51,122,113,92,53,144,180,221,156,101,236,252,215,141,253,93,215,148,122,85,192,155,79,213,121,99,189,72,190,75,190,204,253,7,31,111,255,55,231,128,207,238,4,99,32,97,69,255,247,99,242,77,126,252,216,160,174,214,191,180,225,18,175,52,229,39,135,31,39,205,49,
162,215,227,66,99,130,170,233,163,90,138,186,190,140,235,155,198,66,233,240,224,207,122,49,60,201,79,222,81,56,225,198,47,78,102,149,211,192,134,245,1,199,56,234,225,207,193,248,243,107,208,141,231,149,155,14,164,213,158,124,236,95,143,120,4,210,109,193,246,251,115,233,96,201,40,225,156,228,81,235,222,249,143,224,163,102,239,228,57,17,237,206,83,178,182,15,65,77,128,126,238,89,209,15,31,199,146,251,12,111,21,154,15,181,79,19,93,28,149,202,198,71,185,44,17,251,5,58,165,51,196,88,130,70,93,186,136,199,240,242,140,112,4,92,119,159,65,48,187,216,77,116,242,247,233,144,220,108,214,45,22,154,156,111,14,108,58,104,156,181,240,130,155,112,175,32,246,164,160,181,110,243,185,18,190,172,157,110,53,171,73,126,140,249,102,34,47,33,155,100,236,187,169,50,142,183,166,167,183,188,120,181,131,152,65,245,12,69,57,8,68,246,116,33,243,128,235,139,220,236,121,102,109,44,42,53,61,70,121,251,116,58,185,60,49,76,106,184,182,33,23,62,57,10,0,62,
19,195,104,34,69,230,74,97,226,158,222,142,68,207,73,243,114,154,169,98,126,152,6,14,102,37,225,92,189,220,198,165,71,4,32,158,223,83,132,231,165,29,177,151,147,231,29,166,197,179,128,226,71,204,144,11,174,159,32,212,46,229,51,235,236,157,233,188,73,70,99,100,21,204,176,183,151,177,75,164,156,48,248,251,87,123,117,28,181,118,83,64,129,134,234,61,177,138,39,107,87,150,70,206,4,134,64,134,232,94,171,69,207,7,246,219,125,161,77,101,105,57,21,209,48,236,121,164,123,93,231,234,100,96,50,197,241,28,153,113,29,158,199,224,40,172,238,150,26,74,190,244,192,191,251,148,207,130,67,31,102,26,88,103,33,247,120,109,231,193,72,41,246,45,181,244,228,246,145,23,122,233,106,159,34,145,237,61,63,182,112,199,28,195,23,107,185,185,178,143,75,129,251,37,252,209,175,52,65,95,149,83,210,166,120,109,47,10,32,215,208,150,153,13,143,171,90,56,9,45,241,240,39,31,140,241,106,17,215,187,158,5,32,183,4,217,56,107,182,115,175,221,225,179,33,74,
87,138,231,158,247,235,229,66,79,252,74,65,181,137,198,152,121,118,210,118,176,129,226,255,94,35,220,89,207,229,92,205,247,103,108,172,36,234,89,112,45,171,128,154,221,134,168,72,63,11,209,116,108,97,89,106,30,231,143,117,159,196,185,36,54,154,81,198,85,242,56,48,33,185,143,74,114,161,223,188,196,214,145,77,182,188,56,221,216,180,44,140,39,175,221,238,142,184,153,241,98,198,236,70,7,190,229,170,129,113,98,75,87,159,127,150,7,47,154,48,38,105,208,239,199,41,242,138,170,72,82,175,33,228,55,69,99,30,70,70,151,31,93,164,31,90,104,80,111,136,206,217,83,5,203,178,42,149,155,84,71,116,171,122,246,212,18,15,103,120,187,84,25,138,73,254,25,238,13,172,2,165,78,183,167,23,110,65,153,116,26,186,219,172,212,30,31,214,186,220,48,71,122,4,155,31,98,254,115,245,133,107,144,220,222,97,133,147,18,233,93,212,236,113,100,1,195,186,155,238,126,122,82,208,243,207,89,200,60,28,103,95,16,92,153,2,226,121,215,192,228,147,232,76,224,24,
143,120,61,248,142,160,166,7,176,51,31,133,1,176,149,186,114,247,51,49,145,102,211,76,65,130,170,141,129,229,28,139,105,126,50,248,141,57,95,243,246,228,224,174,215,231,197,32,220,228,139,57,26,5,14,115,233,5,228,89,221,138,7,65,120,28,253,183,213,61,90,111,42,134,205,253,224,21,24,41,237,68,73,133,180,67,235,141,222,223,201,139,48,207,224,61,99,251,83,146,108,167,233,104,82,191,248,246,129,57,24,47,67,139,119,85,111,200,138,145,173,216,232,45,90,207,5,186,62,218,173,79,201,221,68,23,140,253,123,150,13,120,156,24,254,85,241,63,167,248,36,229,224,157,121,83,95,250,132,244,214,197,120,117,14,36,206,81,194,71,186,238,104,65,212,135,35,54,149,141,239,246,166,105,159,207,237,8,119,78,123,14,2,251,36,207,198,46,115,144,243,253,170,121,191,184,193,23,42,58,202,61,111,44,172,152,143,60,85,51,43,19,14,148,59,211,56,162,150,225,125,12,157,48,140,15,239,20,225,84,123,158,83,140,29,159,72,142,158,87,137,244,19,203,236,202,
46,238,153,128,163,61,15,227,98,97,169,233,242,61,172,32,215,25,213,139,203,159,156,98,233,243,105,240,71,161,101,213,121,67,43,195,253,60,34,226,109,117,97,251,133,141,125,137,162,174,99,20,223,88,200,223,231,166,212,65,187,77,159,249,107,5,98,120,205,63,193,149,253,157,35,134,145,192,211,87,3,101,95,138,205,5,179,3,143,237,210,183,247,146,66,213,255,15,93,211,251,191,146,195,138,171,199,53,188,60,127,249,211,221,73,111,177,118,159,20,177,200,198,169,58,230,49,221,46,145,250,86,175,82,207,61,43,56,197,86,123,11,213,119,64,187,149,59,232,58,153,93,216,7,253,125,61,250,85,62,223,45,44,103,213,96,217,222,87,197,75,248,204,111,234,155,135,6,93,141,169,114,12,231,84,82,67,76,140,166,231,7,165,40,233,139,116,156,72,47,125,113,228,179,155,204,151,132,201,165,236,75,41,176,233,15,13,18,17,198,30,244,246,225,115,74,239,202,239,122,63,183,221,37,135,167,188,77,166,152,246,39,226,253,211,151,20,103,30,170,88,236,27,21,222,162,
144,245,106,239,20,184,217,189,243,165,240,45,249,15,30,35,250,186,22,214,152,213,117,235,229,84,199,246,7,216,74,21,107,194,254,148,241,135,54,0,131,75,152,242,50,50,205,83,239,170,73,173,213,202,199,220,231,231,196,117,104,170,237,115,219,122,68,222,49,90,127,219,229,120,211,206,133,204,162,232,210,70,191,251,59,248,132,216,23,62,238,199,179,142,79,157,16,92,233,24,133,41,33,233,199,78,98,159,169,124,111,61,171,10,61,50,237,145,111,242,119,60,95,62,216,246,85,152,10,23,199,134,116,118,141,215,179,83,201,76,172,175,223,152,142,195,9,231,251,211,181,213,25,221,121,74,210,233,118,205,30,15,106,226,152,195,151,90,249,74,120,92,11,74,197,19,89,255,104,181,203,243,210,82,17,27,210,123,251,241,71,233,35,201,57,180,3,47,78,4,204,18,83,47,144,13,227,234,40,255,95,173,33,255,31,198,91,133,49,222,77,32,148,191,159,163,84,56,94,99,212,49,208,119,148,222,251,207,57,80,56,195,28,158,51,38,224,10,183,62,43,74,58,32,145,182,
82,230,63,31,253,136,109,44,228,219,248,197,65,36,223,62,56,31,69,215,75,79,157,188,19,182,239,25,90,222,120,238,207,161,238,127,215,103,23,234,175,219,250,156,244,183,26,175,207,171,247,174,176,242,186,121,237,247,62,232,87,226,103,93,247,67,250,252,47,182,249,81,235,61,117,172,245,229,52,220,182,155,241,254,252,170,126,238,208,112,135,163,197,139,71,152,97,94,158,229,176,196,184,109,98,222,53,85,139,182,44,243,14,125,54,30,219,208,214,217,244,113,218,188,104,215,94,202,174,126,128,0,243,132,229,30,125,44,123,94,88,157,227,81,48,152,126,143,35,139,119,146,153,17,22,57,236,92,102,164,138,176,102,6,247,38,224,125,3,162,165,181,175,49,242,251,199,247,163,215,107,176,110,76,104,91,224,166,133,42,253,228,189,111,229,197,93,188,189,166,58,188,183,94,32,28,156,60,46,229,207,227,157,124,59,212,3,102,200,116,194,79,118,244,25,225,112,210,117,249,184,88,217,65,33,121,184,180,143,198,243,158,156,18,218,239,202,243,245,32,30,44,29,60,86,16,
200,98,216,85,213,235,193,57,5,245,240,95,193,51,171,245,223,69,232,211,0,94,89,154,187,67,179,52,81,150,14,97,105,220,58,107,232,20,255,205,209,113,92,22,149,255,66,196,131,90,93,163,233,25,118,168,35,122,214,6,204,62,58,25,234,13,109,74,249,120,30,42,175,159,174,119,70,178,121,82,222,127,248,165,160,91,218,17,135,205,237,246,49,135,72,73,49,14,136,159,231,115,86,232,165,178,190,51,196,1,83,235,179,124,46,200,78,75,42,102,191,194,132,159,156,60,35,103,81,254,109,23,181,119,228,249,78,180,138,22,39,221,210,240,97,60,191,88,200,186,215,253,94,247,235,147,82,91,154,81,56,138,166,142,5,107,181,82,117,213,164,239,62,172,70,153,196,183,224,176,200,230,81,56,65,47,59,199,243,184,157,189,36,122,90,98,114,242,36,164,198,145,247,0,153,174,173,37,75,176,65,230,221,47,203,187,164,210,120,223,111,159,172,82,147,84,19,111,207,237,73,94,179,86,42,38,179,10,204,131,21,132,28,65,177,127,91,132,11,202,56,183,103,134,204,207,
214,151,233,195,137,251,118,113,168,123,175,65,185,13,218,197,35,162,166,59,93,27,253,54,170,138,191,82,226,20,220,42,79,102,0,54,132,146,122,98,7,93,243,140,217,243,13,7,229,113,78,50,175,27,9,249,18,250,117,70,50,244,91,47,110,254,237,182,239,189,123,121,150,200,20,242,39,139,2,137,237,197,103,57,73,134,22,252,80,212,176,73,111,149,227,247,44,230,101,182,57,198,232,121,110,7,253,70,157,204,159,149,247,91,147,166,199,254,236,20,231,61,205,15,234,242,83,62,187,205,206,96,191,173,70,242,140,254,148,122,85,117,175,150,198,251,176,193,115,86,203,126,54,193,124,124,181,229,86,252,142,173,159,71,52,218,210,156,116,3,225,196,50,145,127,111,155,239,7,107,76,40,222,121,120,106,75,194,213,212,35,152,62,85,101,143,215,193,137,132,23,86,23,54,56,182,99,152,137,42,140,112,252,141,102,143,192,108,237,34,119,44,134,49,239,66,0,174,211,115,172,152,153,209,55,63,247,28,166,66,23,58,135,163,184,138,29,221,77,62,160,66,145,16,82,15,
212,13,165,142,51,187,239,165,85,152,87,14,156,214,189,111,191,97,231,63,243,66,101,120,97,97,232,10,82,130,146,91,47,170,88,31,151,218,59,207,77,224,229,187,22,158,153,19,249,90,6,119,163,38,43,102,123,35,43,104,84,5,26,204,207,217,76,253,196,148,167,239,167,33,184,243,15,255,253,56,173,167,42,214,207,183,253,105,225,92,216,19,247,171,247,253,198,3,198,187,235,251,57,232,152,82,96,44,124,96,13,245,148,251,233,93,221,75,249,246,173,255,14,53,29,198,24,172,203,78,56,240,159,56,199,141,231,66,197,80,83,255,15,219,236,239,227,122,77,175,43,152,119,12,75,219,187,74,156,64,11,175,203,15,156,6,196,101,108,212,21,25,130,217,75,178,228,252,255,197,23,10,234,251,251,217,231,191,47,208,85,74,5,174,249,246,49,79,203,95,254,118,249,241,31,255,11,146,227,152,127,176,197,127,248,245,127,254,239,191,212,98,203,179,127,252,63,254,47,247,147,255,250,125,109,242,175,98,252,133,170,248,253,206,179,95,77,59,253,154,218,95,73,254,107,200,
199,226,192,91,226,52,109,135,172,104,222,63,219,211,121,24,242,102,250,245,210,148,95,117,155,229,184,252,240,43,30,112,19,211,248,43,109,43,252,41,253,196,205,79,75,69,243,43,139,135,239,239,98,127,253,215,102,252,191,153,245,71,27,227,255,192,186,63,118,241,103,217,255,201,29,253,116,238,63,200,9,255,150,157,254,148,93,226,161,136,155,233,95,239,181,104,166,188,201,240,78,16,246,222,79,185,255,196,220,254,242,111,110,88,249,233,250,191,165,229,127,151,143,158,115,151,15,99,92,119,21,174,77,111,255,186,225,172,93,155,191,125,155,228,184,245,252,215,60,230,255,249,215,90,76,159,95,121,156,126,112,29,250,87,135,29,93,253,74,170,54,253,98,71,118,216,151,216,107,63,62,28,241,159,42,255,243,123,60,124,211,231,183,167,231,106,250,183,216,118,222,186,118,152,126,197,227,175,107,218,54,127,45,210,246,87,220,100,191,254,218,53,239,127,109,103,254,187,232,31,193,248,227,163,118,30,127,124,81,199,211,111,231,180,248,67,149,229,195,175,22,253,250,107,81,87,
191,80,129,205,90,63,249,239,128,254,149,198,205,79,12,116,69,250,253,233,231,254,43,153,139,42,251,213,13,109,154,143,227,143,1,184,64,220,117,85,145,198,83,209,54,191,176,41,205,248,55,139,25,158,250,123,15,168,127,248,47,204,127,249,101,227,126,14,191,176,59,226,234,87,157,55,243,175,22,59,249,119,205,63,43,253,211,205,2,40,226,127,195,175,255,36,95,36,41,252,231,55,26,248,125,171,128,146,45,183,135,170,154,89,82,220,251,155,202,242,239,226,161,23,143,159,69,176,204,241,184,92,76,33,124,151,5,122,72,47,151,63,86,245,243,168,30,179,109,201,204,83,10,219,245,81,42,234,101,117,157,243,217,146,164,245,57,246,167,98,108,233,5,94,203,9,156,72,118,137,235,126,232,231,166,227,166,57,19,191,130,224,152,226,114,244,203,114,112,75,64,36,122,68,234,39,234,244,34,232,16,209,94,119,195,106,241,2,35,148,96,2,65,126,153,93,172,68,149,210,68,146,202,213,84,72,5,145,83,143,16,241,175,40,53,33,221,218,167,51,63,77,114,126,136,187,
220,116,98,246,189,229,87,156,76,88,10,5,141,119,22,103,231,211,98,154,177,41,107,23,13,128,137,40,19,68,53,155,222,33,227,244,66,131,168,214,112,51,247,208,15,141,119,105,109,28,197,222,36,120,231,176,186,23,253,112,44,186,53,109,151,45,69,170,79,151,168,183,5,247,75,133,16,112,170,211,78,96,88,12,243,81,243,150,16,232,201,190,70,224,64,42,120,112,238,170,17,203,234,112,90,239,8,123,62,73,170,51,125,96,178,105,163,211,188,156,121,148,85,11,214,52,234,57,229,56,68,178,19,101,154,138,57,87,148,30,26,111,5,136,222,90,219,252,212,194,178,46,161,122,95,203,172,176,40,153,158,37,38,190,113,109,206,1,96,77,32,212,132,245,244,89,37,229,125,215,222,161,35,95,115,249,110,202,189,41,133,233,227,177,201,218,59,54,39,49,89,162,140,122,195,180,79,203,85,231,10,131,146,190,148,188,140,18,253,176,221,196,27,221,49,63,133,194,105,11,229,117,107,202,194,182,101,214,228,20,13,98,66,75,236,87,164,115,247,230,92,228,210,215,148,47,
169,114,102,228,175,112,194,42,248,177,206,13,101,249,211,6,195,37,238,130,91,166,239,54,136,26,105,176,175,38,243,61,10,195,214,71,70,102,249,129,245,72,167,43,229,231,196,31,14,63,53,84,79,78,1,171,130,34,61,141,76,121,20,233,124,61,49,103,149,185,24,235,211,251,192,142,228,95,67,114,80,214,151,230,61,219,205,73,194,201,206,140,250,101,190,221,118,243,222,183,225,109,226,112,152,37,53,175,4,17,250,111,222,160,81,56,68,22,32,221,154,94,188,133,144,73,92,38,14,36,123,150,179,92,230,132,51,17,150,221,182,146,10,65,19,232,206,177,101,68,226,178,162,219,17,112,122,229,253,153,93,100,197,145,220,92,174,83,105,102,212,108,189,36,239,244,88,31,244,251,232,12,161,162,249,133,223,150,244,35,42,191,235,1,183,141,203,5,203,154,201,230,87,139,126,107,165,100,208,210,50,75,48,87,100,225,164,48,39,109,77,101,90,120,173,226,41,170,96,214,113,173,82,67,112,217,170,6,179,214,243,122,17,86,185,100,12,109,85,143,213,214,222,167,67,50,
45,226,116,200,136,108,230,130,10,223,145,147,84,40,238,142,0,60,112,72,107,179,120,110,86,213,57,19,194,243,216,52,237,157,47,88,241,241,134,12,43,200,49,164,165,176,10,91,137,249,207,3,161,156,133,83,215,162,17,4,213,96,46,193,122,106,222,158,33,73,70,241,10,206,76,227,130,33,227,191,243,200,243,20,231,231,172,34,126,197,197,18,251,138,229,215,205,97,177,24,233,206,139,20,231,50,49,202,190,112,79,54,125,57,251,32,224,45,241,69,9,190,200,7,69,6,89,37,106,88,40,45,62,115,169,122,109,78,23,201,22,158,252,166,45,103,32,188,206,49,164,40,155,84,7,150,87,22,222,99,153,109,240,151,123,154,232,46,41,86,120,120,154,101,115,220,247,93,188,123,131,36,13,235,11,189,67,40,233,64,126,8,216,25,13,102,100,1,233,169,205,34,158,32,168,183,146,187,58,130,223,188,98,123,153,59,136,169,74,139,152,96,187,116,133,146,156,125,36,213,160,88,178,5,192,213,38,173,175,35,212,176,189,51,252,104,105,46,230,135,199,144,15,146,45,186,
233,253,194,212,203,234,162,183,15,165,12,24,140,2,167,32,58,68,145,206,123,118,227,175,206,72,106,1,69,62,250,14,222,39,176,41,45,124,191,232,119,4,37,60,53,118,234,173,240,107,204,110,80,244,62,147,22,4,212,23,150,129,120,186,192,134,99,10,116,201,33,145,41,110,98,183,155,246,132,1,148,200,1,74,28,245,62,160,212,0,105,17,20,196,200,112,77,22,40,90,240,241,145,44,184,232,80,53,157,232,134,134,147,5,35,67,112,224,103,225,1,249,238,87,85,89,149,205,22,238,130,55,165,80,22,111,208,132,235,46,241,204,36,80,64,108,190,221,106,96,246,43,161,83,6,19,67,176,33,81,240,236,23,242,67,228,2,18,101,67,235,37,146,13,70,82,12,32,159,224,80,35,151,125,132,42,121,64,242,170,33,174,129,39,199,247,132,229,64,204,201,188,137,111,113,94,122,250,72,248,113,129,147,137,184,78,198,99,126,50,9,82,251,242,225,48,80,51,172,40,40,10,47,80,34,3,69,60,91,171,80,168,15,178,241,201,203,21,44,195,34,216,52,92,54,192,
98,125,3,22,134,191,81,80,31,196,14,6,203,147,59,224,253,60,108,154,128,238,194,7,176,198,50,59,130,46,190,233,108,224,146,227,253,156,97,150,145,216,217,250,185,99,97,249,156,114,46,56,191,156,20,91,192,139,23,146,108,159,57,149,67,180,144,250,45,180,1,133,32,175,67,49,227,53,248,106,223,188,12,19,7,78,21,108,16,73,75,34,61,46,91,246,134,96,199,166,106,144,55,64,16,34,56,6,92,212,181,151,206,193,159,243,202,166,208,41,125,209,94,36,46,52,146,45,50,207,18,139,222,92,17,53,190,146,137,47,148,176,228,122,100,94,67,193,140,209,36,252,203,105,43,80,87,91,94,237,143,224,124,82,229,157,42,45,82,152,64,238,191,80,144,71,142,10,150,245,191,254,215,191,252,240,129,107,51,230,152,15,252,206,156,127,253,235,63,254,164,82,230,31,254,220,138,83,244,175,38,95,255,252,242,223,147,101,179,45,200,68,250,172,190,209,186,56,87,47,55,9,141,185,122,154,214,20,218,87,86,10,251,202,26,225,152,81,197,108,63,195,49,215,191,172,
188,26,180,183,221,232,224,17,102,42,63,111,217,252,78,231,234,131,5,158,120,102,185,159,155,242,218,201,251,122,100,137,25,155,208,212,62,116,247,116,174,172,93,151,62,40,133,71,217,227,172,210,181,17,151,22,185,117,250,34,144,126,52,103,185,61,74,250,248,94,55,200,238,231,20,8,221,197,65,246,189,36,4,187,19,165,243,215,52,116,78,25,121,102,159,130,145,50,44,14,94,86,102,203,99,214,199,185,45,162,15,239,178,40,78,42,81,105,56,78,169,112,18,168,67,104,158,118,80,82,215,169,30,223,158,157,18,220,192,168,236,184,191,238,86,131,46,239,169,36,57,165,125,174,169,179,205,51,122,44,93,64,109,125,159,71,71,106,70,1,13,42,149,60,159,120,121,12,181,158,103,46,110,163,206,53,24,80,187,180,193,133,157,7,225,177,167,130,27,12,11,86,74,130,67,13,179,20,217,99,128,17,109,18,111,224,147,246,254,106,105,10,109,209,100,207,6,49,33,103,146,184,193,196,124,245,204,97,246,141,39,38,212,238,176,42,21,210,58,242,143,16,214,202,20,156,
28,70,21,45,11,21,228,144,16,35,36,116,229,90,190,90,106,19,133,45,88,93,76,43,54,168,166,92,184,154,67,47,156,192,149,141,96,27,95,182,235,194,191,111,237,174,230,97,73,102,196,193,40,116,9,66,72,41,85,98,35,146,211,184,67,12,68,14,121,129,184,67,179,46,169,15,156,116,242,100,5,82,97,52,112,211,76,71,252,64,12,121,103,25,8,236,10,71,234,12,169,195,117,136,208,106,167,218,8,198,132,246,141,86,76,17,168,14,136,103,7,167,52,11,189,170,145,105,140,212,49,234,144,110,54,104,79,209,165,136,107,200,125,227,151,84,19,42,79,47,128,17,166,11,35,151,254,226,88,22,229,85,48,141,173,163,108,233,254,200,198,175,169,65,45,95,121,182,71,245,113,240,240,237,211,201,85,18,103,154,99,190,207,0,84,114,37,105,193,117,241,184,70,112,197,214,30,56,139,95,68,64,124,158,112,246,46,181,108,236,205,115,226,4,114,215,5,192,185,209,244,37,135,153,45,132,28,103,41,37,62,67,110,10,209,150,156,28,241,18,33,30,238,12,147,29,
149,200,194,33,58,116,224,46,201,135,255,185,145,200,25,38,68,172,220,26,255,217,134,39,222,110,114,141,92,124,5,114,229,147,69,10,203,166,123,132,26,133,29,105,91,163,155,153,30,174,106,218,130,36,231,179,185,138,52,138,112,102,14,29,203,167,132,41,216,13,240,16,235,28,67,133,60,28,206,237,90,19,25,205,71,58,123,152,116,57,211,121,195,188,5,242,34,175,183,82,187,47,177,11,37,62,35,70,255,206,126,26,74,56,162,164,113,14,68,8,204,48,4,3,77,173,60,185,73,128,79,31,112,76,242,23,124,45,177,195,143,2,219,44,231,99,195,84,165,46,217,211,151,118,1,204,106,182,133,94,104,110,116,68,237,42,116,108,225,125,41,197,131,134,81,202,182,244,113,101,59,48,28,92,4,83,168,215,90,128,208,11,227,57,160,89,205,254,196,33,156,80,170,79,40,91,4,148,231,208,225,233,203,207,250,104,175,206,89,152,76,239,227,112,4,193,0,48,146,8,232,125,205,68,164,178,201,64,180,51,152,136,247,150,190,116,194,249,147,194,128,37,205,148,155,90,
13,192,198,12,150,220,25,157,240,2,12,199,137,56,102,209,202,183,148,223,155,42,138,216,64,249,112,231,69,27,218,151,61,0,244,38,253,126,78,110,126,61,211,63,143,181,63,192,36,70,111,216,249,247,27,42,65,230,106,14,29,139,96,13,98,204,51,104,89,164,120,47,160,157,249,56,234,103,99,196,199,190,8,252,46,11,115,242,89,217,19,77,223,220,233,224,88,190,191,106,158,150,210,52,101,49,59,207,148,185,6,200,76,90,184,210,9,232,21,248,87,128,162,14,137,176,39,21,24,26,106,211,0,210,90,93,203,73,181,33,161,91,42,49,87,132,150,235,57,170,232,220,226,43,236,141,246,149,150,124,82,226,128,41,54,18,209,218,116,95,105,14,19,223,84,160,111,160,3,71,71,183,25,33,242,77,87,101,169,152,229,36,47,86,228,153,103,83,94,228,166,193,128,147,144,156,134,157,193,14,183,145,40,129,39,114,30,20,3,156,134,73,191,67,136,115,147,45,94,250,237,14,72,186,203,125,195,110,243,237,193,175,11,252,166,190,40,44,131,70,242,28,158,55,196,2,
111,52,127,244,39,150,38,55,94,72,190,183,23,158,227,141,91,126,160,188,84,206,113,192,12,57,250,30,153,123,140,150,129,59,248,215,91,51,26,199,7,164,14,194,44,116,1,87,59,13,109,159,172,204,193,97,204,252,140,17,227,101,93,48,67,214,218,148,3,210,220,124,31,92,151,0,89,186,240,154,176,53,14,36,207,192,161,201,88,175,73,24,79,148,118,233,148,249,149,211,252,140,149,2,117,21,137,204,29,203,130,31,170,131,77,168,124,22,12,68,45,75,197,178,60,101,35,132,112,197,109,249,238,196,14,237,70,187,0,214,105,122,94,109,174,228,254,78,114,37,206,109,54,231,144,120,226,48,130,4,241,78,86,139,240,36,216,159,62,158,83,223,8,146,73,165,102,49,160,140,172,116,21,250,164,141,15,100,240,166,119,113,93,128,1,255,112,183,36,55,146,61,49,166,245,26,120,144,226,219,133,108,120,79,195,195,97,101,66,9,0,119,23,7,188,27,242,67,151,1,225,212,205,68,228,160,141,195,27,159,24,36,75,100,117,25,229,249,247,25,201,217,141,90,56,42,
243,192,248,242,36,37,22,96,194,191,114,119,188,194,16,176,119,209,11,157,172,218,69,69,236,149,113,9,174,234,56,66,11,117,79,2,250,244,176,84,69,185,25,194,65,63,233,99,241,53,180,2,170,4,147,115,44,53,157,41,201,173,25,218,179,226,113,2,39,211,95,236,13,65,100,21,197,57,71,127,212,117,42,174,140,36,170,109,190,16,171,172,158,243,133,62,239,199,203,166,209,220,221,70,124,89,30,215,6,45,173,158,78,134,117,115,179,14,136,139,143,146,237,50,6,152,65,81,133,232,49,102,94,240,212,70,22,209,226,66,15,248,218,210,95,234,19,232,104,8,40,183,81,82,24,7,193,174,52,180,126,52,207,108,65,211,204,15,49,251,136,37,110,104,90,113,208,26,136,162,241,190,154,238,201,113,233,3,120,138,194,211,39,49,159,237,71,198,26,111,194,185,239,28,63,135,183,231,52,136,19,29,35,255,118,123,93,14,157,34,248,149,91,93,142,167,41,247,188,30,71,9,18,155,143,240,207,160,47,41,7,133,45,19,196,79,254,177,105,133,10,136,54,223,99,119,
195,243,63,175,15,220,223,25,137,138,119,3,215,49,190,40,4,92,81,180,193,212,18,44,150,162,22,138,206,54,48,187,254,205,94,23,110,151,83,51,227,15,195,24,159,28,197,54,37,160,134,245,103,124,123,231,42,134,45,237,65,31,243,31,54,73,56,154,250,162,1,101,20,80,151,109,226,120,230,26,244,102,139,120,225,178,43,244,203,255,44,104,249,36,66,146,47,192,115,127,150,241,189,121,149,249,146,183,73,65,246,4,207,163,156,241,40,103,29,219,19,105,250,78,126,19,205,239,172,6,38,243,8,115,149,187,216,159,36,89,198,145,161,191,57,105,240,142,55,28,46,188,229,84,207,253,92,184,197,107,213,52,36,65,92,209,195,133,81,196,166,63,5,176,87,181,209,200,217,219,193,160,152,101,176,252,17,64,240,197,172,182,14,7,22,192,36,164,179,228,48,115,202,203,136,225,197,243,17,40,33,151,47,89,179,92,89,202,111,70,116,184,169,139,145,156,181,3,68,98,135,45,192,58,146,244,114,26,158,77,183,53,153,134,43,51,249,170,208,59,186,7,51,170,6,49,
120,205,60,32,232,120,254,82,32,54,84,11,11,243,120,241,197,109,114,124,56,154,113,141,209,179,28,248,227,134,113,191,238,46,211,243,233,136,111,173,126,231,44,5,16,71,104,182,29,254,220,222,28,204,208,37,103,3,206,7,122,218,80,10,6,100,90,73,194,234,95,149,135,39,22,26,168,86,80,152,227,188,30,176,116,222,230,166,5,206,227,144,11,43,7,69,173,13,232,121,95,173,241,29,69,34,68,19,75,46,230,157,199,19,110,226,184,133,67,60,93,115,11,252,176,65,24,71,193,123,63,126,174,32,231,44,164,251,199,25,27,126,208,139,67,76,229,51,181,129,169,153,190,110,74,147,48,181,244,23,177,239,146,37,245,68,232,210,140,18,104,250,250,18,97,133,5,151,247,195,145,125,128,226,203,76,127,234,185,23,64,138,251,147,28,29,22,9,222,177,100,212,109,30,179,32,169,237,185,155,220,184,128,72,50,171,174,142,4,132,70,27,20,68,229,222,26,118,171,133,110,21,184,128,123,203,169,47,120,116,192,249,97,41,10,50,49,101,177,61,221,64,104,139,225,107,
11,111,34,251,26,216,101,102,134,106,171,29,251,37,16,196,83,44,77,33,23,74,226,226,7,193,245,66,194,131,231,50,183,88,166,196,13,2,158,82,21,106,182,142,41,135,203,206,231,26,173,177,154,239,122,87,74,20,8,175,35,59,158,146,15,168,178,177,141,217,125,213,144,217,215,160,113,82,95,167,252,77,63,197,147,112,243,196,43,102,75,227,102,137,180,42,238,143,141,173,142,131,46,250,30,69,100,175,64,222,189,98,198,186,187,174,160,164,224,125,72,205,90,205,9,112,74,206,94,188,155,50,59,137,235,162,105,120,81,64,251,40,244,197,114,54,235,224,78,132,220,20,101,190,35,2,54,100,154,115,175,11,81,210,35,186,0,90,3,9,69,82,108,89,63,34,46,192,100,193,1,223,72,213,103,50,157,224,23,237,32,172,12,242,249,102,177,222,8,72,38,231,33,93,187,228,119,199,177,179,177,251,119,1,223,96,157,80,95,70,140,215,93,158,11,89,200,108,46,20,211,196,250,130,69,52,82,64,155,6,71,76,73,15,243,129,157,133,168,235,94,4,127,186,208,238,
169,105,242,219,213,166,74,121,172,27,57,142,78,201,45,152,66,137,206,210,62,23,182,157,15,26,232,50,119,72,222,100,125,90,183,91,113,80,214,153,18,150,152,82,18,154,201,169,102,27,130,165,222,224,176,134,242,208,62,143,186,78,132,137,94,7,143,113,110,212,136,246,207,214,173,219,33,117,140,185,207,139,65,141,239,64,114,226,67,168,76,180,132,176,88,85,218,11,65,206,105,5,70,197,34,126,119,124,87,99,117,32,218,180,33,228,104,184,86,194,246,121,23,39,196,167,250,53,219,131,109,218,143,190,174,215,72,36,95,126,245,130,85,148,117,119,129,8,79,37,61,61,234,93,37,236,141,44,237,46,111,133,164,60,100,254,184,180,120,212,205,185,58,55,30,18,55,38,178,188,92,113,158,130,25,56,84,88,187,94,240,62,48,232,159,14,123,145,142,207,115,183,7,153,161,181,193,91,149,165,185,62,14,126,255,134,162,192,158,204,127,161,107,24,58,21,208,219,18,155,211,234,252,86,114,143,188,110,151,63,15,223,254,77,199,253,177,109,252,159,81,112,67,51,108,15,
239,98,162,205,123,154,179,213,175,173,58,72,247,144,59,194,144,57,206,151,147,29,231,235,151,122,169,154,252,25,104,90,154,183,222,59,203,47,83,186,191,238,204,187,146,219,79,161,28,218,229,92,60,138,2,67,25,101,142,6,116,157,25,148,75,237,7,230,238,140,48,181,115,100,54,250,23,207,242,67,103,87,58,109,112,126,105,2,103,14,94,125,249,202,87,162,22,168,174,49,56,176,188,185,102,225,1,210,3,74,204,28,234,148,80,75,136,25,228,146,241,15,56,199,142,184,111,244,20,0,22,35,58,136,50,162,46,87,246,11,223,59,34,211,167,63,233,28,28,48,122,5,219,101,155,75,152,4,112,137,90,4,8,148,242,79,40,14,121,67,194,206,224,196,154,137,149,109,32,151,135,110,88,41,24,58,1,234,25,174,89,177,162,115,27,201,116,221,12,64,77,144,143,161,56,37,144,34,127,222,237,96,156,94,159,103,195,111,87,158,91,254,190,61,128,211,0,49,161,164,201,11,155,118,212,78,146,35,61,84,14,102,60,203,37,75,187,28,51,97,198,157,154,97,120,44,
193,45,152,49,251,51,57,168,189,184,38,211,39,44,107,194,248,101,40,159,10,227,210,16,159,135,180,244,35,233,49,74,4,125,228,243,5,60,102,141,206,218,91,22,62,80,168,6,177,66,251,103,130,151,84,126,253,148,225,9,134,53,96,245,109,84,225,77,124,46,200,17,27,183,205,171,43,101,133,130,42,190,243,172,149,178,183,63,246,180,151,197,4,164,63,63,7,86,183,206,86,118,83,251,158,149,130,136,23,162,180,82,138,115,73,39,134,231,169,207,63,111,86,187,114,210,149,58,159,52,201,211,214,67,93,13,121,13,90,26,170,245,48,140,47,56,2,106,116,129,21,215,93,122,191,178,223,104,59,187,69,232,50,209,253,10,113,130,177,236,17,184,25,163,145,34,124,215,159,190,249,78,206,149,243,239,207,70,82,155,123,5,206,176,242,250,186,241,209,115,166,216,72,144,72,235,25,187,183,252,62,218,242,98,191,3,231,227,232,111,191,13,196,43,193,62,73,54,48,40,44,167,99,178,228,35,154,120,83,86,202,105,39,32,159,106,137,9,214,212,251,202,221,55,106,19,
104,56,11,141,184,53,123,18,86,126,110,52,114,110,246,36,88,29,207,113,90,235,75,16,203,199,28,222,233,208,74,67,248,136,82,217,67,10,22,174,83,32,231,159,69,24,129,150,220,88,65,222,132,227,224,176,50,162,200,233,48,40,11,236,53,41,152,86,122,114,126,110,120,166,24,129,52,208,82,76,175,27,185,70,140,11,252,20,0,143,94,134,11,42,82,152,223,129,27,51,226,16,0,99,206,178,153,224,151,119,50,188,53,190,13,120,70,227,66,37,176,222,198,240,124,107,177,10,73,172,130,112,56,53,188,181,240,213,101,132,158,3,191,38,120,83,232,46,229,186,4,30,15,225,45,212,146,96,48,214,249,10,19,59,135,153,2,156,26,33,186,207,210,92,68,224,83,215,220,89,230,148,13,156,117,95,122,26,204,171,222,63,167,221,34,20,104,80,119,177,119,128,140,99,123,225,45,163,169,171,2,11,190,56,233,204,230,125,107,218,164,18,164,45,186,123,241,51,218,29,226,160,15,74,130,11,223,56,148,106,39,110,115,140,242,49,219,252,33,72,58,251,141,215,34,22,
62,198,25,181,78,134,98,133,34,45,56,83,141,63,242,194,200,162,201,222,21,139,193,1,141,195,251,58,8,167,94,144,123,168,92,160,84,47,103,255,198,119,176,227,165,156,114,143,132,116,112,194,23,93,228,51,168,91,190,52,186,206,224,46,230,178,0,10,75,130,124,190,209,34,213,220,77,65,30,248,56,6,209,1,190,14,74,77,114,118,184,139,240,209,162,147,37,40,58,148,58,40,71,31,135,237,34,30,240,46,225,240,20,65,29,205,130,169,242,226,204,9,189,203,34,252,62,151,246,182,48,143,133,81,7,78,145,208,27,220,27,108,195,9,187,12,165,199,106,47,35,207,161,161,176,151,40,225,61,134,119,35,7,52,3,95,151,240,237,4,220,185,1,114,3,36,15,124,50,248,198,191,229,239,186,154,195,147,246,24,49,138,71,17,48,56,139,249,26,16,1,84,152,139,220,24,207,93,251,8,170,160,150,23,180,9,20,122,164,52,218,66,236,127,21,114,115,10,39,204,69,64,54,57,78,145,47,145,193,233,176,107,224,113,227,11,152,57,49,139,114,172,25,41,142,59,
185,177,130,113,103,137,233,63,247,117,27,161,19,90,51,113,136,22,98,15,82,225,168,99,217,202,90,105,52,138,19,59,100,47,75,234,44,193,236,10,80,178,100,90,167,109,19,232,54,157,255,253,187,55,221,59,187,130,82,54,1,175,57,187,180,2,245,92,120,54,134,177,143,128,184,2,18,241,172,136,167,7,60,96,236,64,8,134,175,193,231,123,143,137,84,249,33,93,76,178,19,15,222,29,33,165,135,156,130,222,24,125,114,94,28,108,224,162,179,136,243,81,230,112,1,30,252,54,226,177,12,166,168,74,28,215,180,231,23,20,209,249,30,126,72,81,3,84,245,3,138,194,77,220,197,51,37,247,88,154,97,172,109,130,57,88,61,143,159,4,99,50,48,49,167,2,140,143,11,109,206,212,2,125,114,186,103,117,54,105,130,168,102,36,2,193,45,27,167,44,177,56,214,21,49,60,110,13,134,199,26,102,243,153,143,56,142,72,200,189,226,151,192,47,91,206,254,127,120,57,7,13,87,69,64,175,201,252,87,199,53,209,208,214,191,210,170,232,146,54,30,178,255,206,225,205,
63,74,254,156,75,253,123,233,191,254,186,162,159,45,195,239,179,161,113,53,182,184,194,148,111,211,175,98,202,235,191,157,122,253,123,241,255,252,115,214,19,23,156,199,159,83,222,127,230,220,95,77,92,255,59,19,111,67,239,219,166,106,56,241,62,8,207,226,13,42,240,229,211,230,17,143,243,249,113,41,11,11,139,57,109,182,150,60,179,199,52,127,94,79,97,93,168,239,235,245,211,242,247,240,166,94,46,134,194,215,206,2,133,207,177,84,57,144,5,147,27,249,204,77,154,108,225,225,172,146,59,212,249,236,24,35,240,51,157,164,195,140,47,85,23,251,191,95,86,144,120,47,162,97,189,137,62,146,199,130,250,102,6,73,110,37,89,10,232,36,216,7,126,169,169,210,199,120,149,1,74,120,210,188,109,144,57,159,197,121,61,119,214,202,60,117,68,10,106,79,93,201,49,233,66,137,154,10,191,137,69,134,231,125,22,10,212,122,77,194,147,60,149,103,106,191,29,137,196,78,227,201,167,164,46,41,40,76,103,187,207,195,212,248,82,16,96,195,69,90,151,221,118,111,184,47,
254,138,219,81,248,200,12,80,230,85,246,215,166,228,51,31,250,249,86,136,31,143,191,38,89,205,70,240,17,213,62,29,167,42,133,14,173,202,191,121,248,133,227,39,161,54,5,38,42,154,222,72,6,138,116,91,244,197,191,133,0,136,79,161,228,152,21,155,227,197,121,248,78,19,137,121,200,43,22,236,206,71,205,49,65,62,31,6,63,57,2,202,202,253,16,177,24,121,224,212,250,121,104,69,244,101,46,35,122,83,210,176,39,228,173,142,80,222,221,232,37,185,76,191,203,52,229,39,109,152,243,51,253,232,214,118,250,114,195,213,1,161,43,45,117,213,187,116,128,102,226,230,76,2,236,42,161,235,26,55,189,39,246,166,226,246,64,126,77,5,143,197,251,93,70,2,194,12,146,95,9,85,166,107,195,68,172,43,160,12,137,32,80,243,253,128,15,33,184,74,70,250,56,207,91,225,51,170,142,62,105,181,203,183,125,185,210,84,142,148,241,72,199,59,247,89,124,152,116,32,73,237,61,56,14,182,136,130,214,31,210,59,53,111,129,31,126,242,105,147,40,254,236,38,5,251,
94,14,67,108,216,187,56,134,241,199,121,0,212,193,154,37,185,23,18,178,125,128,164,153,8,151,105,150,40,154,89,249,180,72,166,213,162,226,242,77,49,42,136,208,4,179,82,184,211,3,250,185,1,10,143,141,109,72,160,160,30,179,111,149,221,26,204,41,156,107,161,9,138,148,247,79,5,142,3,129,106,90,188,242,236,194,147,122,44,38,144,139,12,203,100,115,249,233,48,193,89,120,39,117,168,179,204,203,37,253,59,18,228,35,216,95,47,193,218,130,211,253,37,136,164,119,146,82,81,172,60,69,74,73,161,82,29,37,245,214,239,116,157,167,102,51,156,98,142,49,41,167,187,92,109,62,121,52,248,97,76,50,56,11,78,1,55,22,16,230,89,229,213,226,122,68,19,115,162,96,169,69,231,47,100,226,140,191,31,183,112,44,155,200,75,140,217,198,124,218,101,192,122,205,84,230,184,143,196,118,230,12,222,138,119,247,133,152,205,18,138,17,174,121,122,102,220,116,34,62,38,111,12,6,143,115,46,220,180,132,215,116,141,105,47,183,76,175,67,62,204,163,198,75,200,227,
176,33,47,53,240,109,160,45,55,91,144,85,235,143,13,11,58,192,65,26,91,55,118,34,207,102,171,251,225,130,79,36,4,117,18,164,240,152,190,245,9,143,221,38,44,184,253,239,164,28,227,140,95,133,75,44,167,131,89,78,171,142,213,1,238,41,56,184,227,205,56,21,168,69,206,222,155,245,88,32,98,64,150,211,226,56,110,195,72,28,77,184,94,242,237,123,29,207,24,31,143,135,81,5,252,64,95,161,233,112,136,96,177,130,162,197,84,57,74,103,60,5,159,167,241,201,50,126,36,92,86,1,3,110,110,173,208,225,184,120,156,224,2,112,70,161,66,43,168,131,244,144,111,194,103,66,31,152,49,227,11,113,85,94,10,59,160,247,186,77,40,116,91,160,249,26,35,232,237,171,27,204,208,58,207,30,34,157,69,252,121,164,152,92,109,67,244,25,98,112,104,17,37,70,111,59,183,151,243,105,86,15,122,62,60,231,27,136,1,11,27,33,169,19,42,138,167,37,115,249,134,12,20,250,208,69,122,87,7,160,241,116,177,121,176,231,243,3,96,149,167,4,111,156,220,233,
236,214,172,60,34,237,141,227,147,41,192,194,247,115,28,17,207,151,42,92,111,52,204,234,30,233,180,152,176,83,179,198,147,148,229,97,253,100,130,5,247,167,116,182,192,61,211,100,85,75,31,100,129,164,75,7,36,102,59,205,103,206,29,154,164,185,108,39,176,184,192,132,231,57,3,119,130,69,36,90,40,24,117,177,195,214,93,9,11,29,150,20,170,150,35,131,62,72,34,120,113,36,135,171,17,231,178,47,176,32,202,37,96,117,152,218,164,240,9,78,252,36,154,49,3,232,211,133,219,228,106,174,136,253,32,231,43,51,204,56,179,179,51,158,43,211,23,148,66,39,18,52,109,71,80,37,88,151,216,136,33,219,81,66,38,96,152,115,220,190,216,195,185,57,140,227,165,29,129,200,0,52,223,14,23,222,95,206,21,125,250,164,214,96,45,214,141,120,198,52,26,100,148,187,187,188,151,79,139,111,80,104,170,22,33,223,34,38,217,69,76,110,114,66,32,75,109,0,109,86,13,24,69,97,192,213,7,9,15,145,44,30,181,102,146,72,16,145,240,216,73,72,111,67,7,47,
75,146,179,61,252,249,197,61,197,68,93,249,66,51,151,127,127,62,28,43,128,38,138,126,62,212,176,183,167,103,246,5,9,114,71,199,14,24,156,4,146,161,161,142,24,120,40,19,40,33,166,185,142,197,190,251,248,52,178,166,139,8,250,156,103,167,150,243,255,158,83,254,233,21,120,204,210,6,114,44,117,129,244,103,146,86,230,63,150,255,252,93,175,254,125,195,248,71,110,253,115,173,216,159,75,146,126,214,28,53,63,249,183,107,199,226,143,53,67,127,228,224,170,24,167,127,95,146,237,240,164,107,87,245,231,42,251,209,95,75,127,157,40,74,114,148,139,244,41,245,183,28,238,31,176,33,209,249,0,233,155,245,223,20,70,60,17,157,23,102,233,91,158,75,141,89,28,170,233,73,208,110,92,159,215,139,180,94,222,130,250,206,44,167,195,112,210,117,34,57,67,161,44,159,72,205,190,177,236,78,27,20,184,35,63,67,81,76,7,17,125,137,153,164,10,250,67,157,35,28,239,208,239,233,36,233,96,81,17,130,221,0,63,79,14,224,38,14,31,36,252,119,14,88,100,176,
167,199,252,130,245,107,191,137,90,47,94,187,118,142,27,213,47,67,10,98,115,133,60,68,69,179,6,96,57,59,164,71,191,238,111,30,50,98,240,51,248,238,235,129,12,48,190,249,119,192,145,112,190,59,140,7,0,98,131,183,0,199,166,203,78,122,53,138,213,85,32,249,178,243,52,210,252,172,118,177,239,193,190,27,197,148,98,228,89,74,142,221,104,105,57,120,232,56,167,133,100,225,243,126,47,33,229,111,254,195,240,242,205,8,103,76,71,147,236,173,192,212,97,40,205,117,239,144,29,199,22,29,144,127,137,168,18,38,181,198,253,188,9,100,49,70,242,133,117,133,188,100,230,244,0,105,1,18,110,212,174,25,121,245,26,44,217,112,219,36,244,86,128,56,129,239,85,174,85,12,116,72,161,42,95,248,203,149,188,16,237,7,26,204,242,1,135,120,130,41,222,79,122,130,52,238,83,131,137,173,251,200,82,30,0,61,166,116,99,244,185,154,155,33,7,175,103,216,64,178,1,251,216,96,0,108,160,214,164,76,4,107,176,194,181,19,60,98,137,7,154,13,98,190,113,159,
3,249,106,99,239,133,92,206,123,198,250,82,98,253,200,203,14,179,67,30,17,54,162,89,184,47,166,15,155,3,207,222,92,89,44,94,110,132,20,142,76,6,29,12,192,128,167,239,112,94,72,191,235,48,91,200,183,15,15,208,194,9,34,180,104,209,206,15,252,49,113,162,187,8,235,18,52,54,220,240,248,106,35,214,195,60,217,232,175,134,29,159,142,56,190,217,70,194,89,203,65,60,231,233,187,11,94,14,58,44,92,110,98,112,61,96,154,8,54,26,11,233,125,153,93,238,3,236,197,110,249,155,255,8,34,1,207,203,158,200,31,203,207,237,9,225,179,202,234,43,183,16,19,36,47,181,67,89,63,49,112,64,205,74,147,113,0,11,102,89,197,29,118,71,112,210,64,140,152,114,80,236,102,1,251,65,231,121,226,51,79,152,192,67,38,206,230,129,178,51,1,224,130,248,224,177,244,102,50,96,153,228,192,210,242,80,4,122,158,5,202,62,241,23,154,66,2,159,125,78,162,35,162,197,20,177,170,88,178,128,128,123,215,245,154,184,111,68,216,148,147,14,2,59,124,205,
100,6,79,180,117,131,78,64,71,102,10,63,110,208,45,149,203,191,104,176,244,124,68,10,203,194,113,193,200,111,150,141,200,175,214,34,170,35,183,217,117,160,159,167,65,77,173,134,24,35,76,26,58,60,31,134,121,198,124,181,189,33,182,229,63,56,182,169,34,97,22,26,130,128,254,182,91,245,128,149,136,226,230,155,53,226,204,15,79,30,203,232,23,239,66,228,4,41,187,106,112,78,26,21,30,37,6,190,76,21,31,199,106,65,8,143,29,56,217,192,113,2,35,35,72,178,99,157,91,92,80,120,139,64,211,228,242,49,54,33,130,163,88,167,66,125,135,203,190,121,192,154,168,175,178,24,99,197,45,10,251,104,46,110,128,155,153,53,174,149,251,134,187,65,247,158,82,176,91,179,217,40,21,154,23,52,13,254,156,110,37,178,151,67,29,103,133,135,187,219,23,11,255,214,212,145,84,192,53,183,123,30,78,176,4,4,98,77,5,193,55,109,7,1,123,133,130,6,23,121,73,177,34,11,113,236,43,82,172,172,241,29,44,171,102,110,238,120,251,203,63,91,181,137,241,207,
177,46,227,63,173,211,248,99,251,143,56,169,254,0,201,241,95,174,198,252,13,153,99,94,229,233,207,58,206,172,24,240,155,118,216,255,125,88,137,30,101,171,75,202,57,250,52,19,61,230,188,185,229,156,57,156,108,146,160,70,29,186,165,78,235,83,177,72,129,26,253,60,3,171,83,59,76,108,200,197,122,236,183,221,55,108,163,190,29,179,113,211,168,115,34,82,215,11,124,222,224,195,137,203,41,153,98,129,254,16,45,72,65,78,6,230,210,59,159,230,104,42,74,222,123,168,61,94,71,62,113,13,95,149,36,82,151,192,163,43,154,43,79,9,88,0,163,52,102,7,232,244,10,249,225,133,167,167,231,231,199,86,10,100,95,98,170,163,53,139,16,66,35,102,14,152,23,6,173,33,248,224,50,177,130,34,166,70,124,133,208,35,79,204,11,138,2,138,208,252,229,2,80,32,162,144,129,155,125,251,254,28,188,187,106,160,88,84,52,167,224,117,130,120,152,229,200,211,168,126,173,160,185,128,175,221,23,195,198,211,202,186,253,60,192,197,209,52,141,134,66,127,208,43,121,12,
12,195,8,16,46,101,89,30,16,144,15,158,137,55,90,112,249,42,133,137,75,39,148,252,154,67,115,135,107,56,143,11,183,144,56,238,104,91,8,179,78,153,17,141,248,99,97,110,98,57,242,55,39,11,198,25,214,3,149,160,221,131,143,165,29,161,216,4,75,35,190,17,245,133,199,6,185,23,124,60,32,127,134,201,7,78,101,194,95,29,49,69,121,34,99,152,225,105,195,25,239,40,199,250,124,84,32,117,135,145,2,167,183,67,241,139,56,222,193,150,193,239,64,45,226,81,242,87,26,80,38,138,107,184,111,52,123,235,240,191,70,196,58,0,70,46,0,189,3,209,131,194,186,201,137,51,19,1,254,14,160,161,58,124,74,32,0,159,20,172,192,171,102,202,48,129,93,80,175,101,132,224,39,192,159,35,67,88,108,129,64,173,167,166,226,194,27,226,72,181,138,23,164,63,161,240,199,207,199,104,85,186,121,57,180,240,223,42,243,159,32,253,79,227,95,254,219,133,71,109,147,255,106,135,95,245,207,226,232,159,66,127,174,56,254,131,8,252,78,247,63,171,172,255,92,159,
252,183,69,201,63,75,233,127,199,254,207,106,230,95,127,77,234,238,215,95,203,14,191,123,23,63,147,34,109,255,22,247,216,138,127,91,232,39,143,190,53,87,245,236,98,161,228,242,44,79,78,235,67,63,151,207,176,185,60,28,250,211,212,189,236,17,221,35,172,103,145,238,89,30,156,88,132,195,81,228,221,144,17,1,36,101,30,46,61,61,9,57,12,170,146,6,40,235,143,141,23,197,7,76,152,105,39,27,188,137,63,166,178,164,185,248,16,151,82,203,132,87,14,197,98,166,102,19,121,204,87,132,229,197,163,102,11,5,12,33,178,164,30,96,205,105,95,61,193,201,5,44,227,240,222,26,83,165,26,156,242,160,67,170,117,115,189,68,175,0,116,203,121,185,193,43,148,17,216,113,73,13,139,254,4,24,66,77,71,149,134,35,183,135,52,41,192,27,13,2,70,79,192,85,204,231,0,232,58,252,121,74,235,65,187,55,49,45,120,208,67,35,75,15,146,211,22,194,192,12,33,106,134,81,131,95,193,16,94,34,76,89,248,94,110,217,3,154,46,207,41,142,64,124,208,136,
198,25,79,235,229,147,156,33,239,127,112,21,198,23,173,55,156,156,105,76,62,13,238,166,96,130,49,245,53,224,201,46,160,23,133,254,12,2,13,13,250,195,51,52,125,8,107,252,161,197,186,76,77,56,10,137,10,32,192,179,21,238,68,157,235,149,197,126,86,156,69,23,42,199,121,82,191,104,89,83,54,220,113,31,168,72,101,66,8,101,135,87,153,28,96,135,139,67,137,153,10,140,53,48,173,19,206,107,31,222,23,33,109,200,99,53,109,14,72,25,238,119,36,242,93,195,59,72,235,120,86,156,117,120,52,244,169,20,249,166,33,254,102,51,80,71,23,78,241,121,57,130,79,66,208,140,143,235,146,237,19,90,185,186,184,8,111,2,10,248,82,212,139,62,243,204,113,124,139,107,51,208,10,161,230,192,121,255,215,191,252,35,14,170,95,230,207,25,152,185,251,199,127,111,156,149,114,242,19,103,82,240,0,160,17,5,210,157,174,117,247,56,139,203,122,88,247,245,42,146,153,218,72,227,21,179,214,40,4,70,210,121,173,14,169,101,246,60,46,88,156,254,17,0,130,187,
10,62,204,46,133,67,14,196,131,89,64,108,157,145,129,250,242,159,125,183,207,14,84,167,111,79,124,33,31,52,122,29,213,81,35,98,130,67,111,198,12,145,168,219,160,18,143,30,62,5,182,21,132,106,226,157,156,80,213,77,188,33,55,0,84,13,43,136,98,182,0,131,3,162,60,127,59,244,120,1,131,213,180,138,200,203,203,48,32,206,128,68,58,56,191,175,87,95,200,7,164,0,149,46,216,214,192,224,172,35,100,225,99,78,104,221,69,225,20,103,176,62,184,17,52,78,87,130,4,214,59,64,71,72,217,136,72,106,22,91,243,162,102,26,115,184,182,20,99,241,156,27,24,220,30,218,78,115,45,225,193,73,119,249,5,58,47,68,78,55,232,97,241,84,139,70,29,0,167,131,124,242,154,13,196,113,13,156,62,7,165,65,13,151,25,109,16,138,28,88,196,36,220,205,179,129,133,153,195,43,57,69,139,229,0,129,44,102,27,183,66,230,5,217,197,15,57,136,217,214,48,225,61,46,155,202,67,234,155,252,188,31,74,72,12,199,65,55,89,142,40,106,129,213,140,50,
118,246,39,141,191,205,160,7,124,92,163,132,131,4,203,91,51,205,78,54,114,155,151,216,56,11,205,138,63,239,9,17,254,119,223,43,249,33,162,241,252,110,12,230,255,102,239,205,150,30,69,182,52,209,87,73,235,171,110,243,83,237,204,224,117,7,66,128,36,4,72,32,4,92,21,147,35,33,64,98,30,172,31,190,93,17,145,153,187,170,118,157,178,218,125,250,234,164,89,16,63,2,199,1,103,13,223,231,172,181,0,95,62,244,167,252,124,243,67,126,183,135,231,63,95,223,17,185,250,154,196,239,222,127,197,123,126,251,38,109,188,187,111,38,198,55,231,226,199,60,229,143,228,155,184,235,126,38,19,141,223,148,145,223,178,46,46,126,228,122,100,221,251,243,31,34,128,157,44,31,254,141,120,46,81,36,122,154,21,232,103,185,187,238,171,154,95,204,242,73,43,106,163,201,239,36,151,134,79,166,38,247,21,4,218,235,170,238,132,83,85,63,158,106,41,93,247,28,56,73,140,74,188,134,206,94,151,125,190,215,29,214,220,219,7,117,79,64,183,172,159,202,251,253,178,98,
237,170,24,250,41,220,4,181,124,213,155,217,119,165,85,219,47,74,106,106,216,211,172,155,121,199,56,43,71,200,31,83,202,137,113,67,67,11,241,236,198,198,165,71,240,229,149,41,133,93,244,82,119,87,201,65,250,165,236,38,134,62,210,130,62,112,6,20,94,167,204,114,173,101,121,195,64,155,220,25,156,109,239,245,72,175,71,101,113,31,17,228,238,7,177,46,145,123,69,86,35,216,53,102,171,98,160,31,236,27,167,218,121,72,82,221,175,207,44,189,46,110,48,99,220,120,132,48,82,26,14,180,170,203,58,80,181,162,81,28,102,230,202,100,12,40,108,195,110,229,119,170,41,46,181,48,86,192,106,83,167,143,198,71,6,141,48,154,4,180,110,140,66,201,207,133,94,187,86,10,218,55,207,204,14,91,36,183,39,147,6,12,203,78,240,101,250,53,229,15,91,150,41,161,183,116,190,77,243,31,3,36,60,39,41,55,143,47,43,192,251,217,118,167,228,70,169,41,152,99,211,20,37,211,231,198,12,86,153,0,62,201,235,192,246,35,230,150,84,227,104,117,115,217,21,34,
165,120,10,25,215,4,77,5,132,243,124,13,196,134,115,98,175,146,174,222,150,189,2,158,58,64,214,53,41,217,7,133,75,7,87,231,165,190,63,123,80,100,0,60,152,11,119,162,149,121,60,89,54,49,65,105,98,112,217,22,51,170,116,239,248,190,57,174,225,114,39,254,35,97,94,71,235,2,74,38,19,165,29,213,108,244,225,182,28,221,123,74,61,163,115,189,167,47,167,227,115,240,152,179,24,127,212,144,209,41,65,48,76,85,137,11,49,82,175,245,110,205,41,111,235,63,200,131,251,73,11,18,80,7,185,15,205,50,208,203,180,65,215,196,145,5,87,29,188,69,21,155,138,191,216,93,44,46,103,157,207,230,50,207,253,14,49,111,247,248,226,242,34,114,207,231,147,24,206,101,181,11,80,123,222,159,24,108,182,51,247,62,75,115,167,169,234,198,92,162,199,145,127,30,87,89,177,43,103,213,55,107,255,145,26,238,244,157,119,195,148,217,132,234,13,195,251,129,178,188,173,114,212,240,78,41,239,59,56,105,159,218,55,15,206,169,191,42,19,55,178,111,241,154,173,129,
75,175,50,79,113,17,5,8,112,235,12,9,135,183,254,157,30,107,195,199,56,144,156,151,81,76,113,27,33,167,6,217,78,139,250,100,247,0,221,160,153,207,38,56,176,135,131,174,139,181,241,18,159,135,224,224,220,117,127,127,48,46,139,189,107,158,39,87,134,181,134,100,235,229,24,130,65,121,170,187,64,57,111,206,66,170,198,14,239,211,37,129,184,215,212,78,199,161,106,216,70,130,78,241,232,123,187,17,155,237,34,26,194,61,178,174,177,145,93,168,163,63,21,18,202,2,185,100,111,122,251,136,167,233,244,28,213,28,43,81,236,93,145,90,166,84,111,230,89,216,135,76,190,91,210,8,60,234,29,158,234,249,152,126,204,227,185,203,5,240,8,210,199,110,208,103,167,177,164,137,53,28,250,112,224,83,147,7,5,165,239,202,199,206,29,54,115,103,218,151,144,95,134,199,30,134,82,73,12,124,89,245,116,171,225,194,115,188,221,2,212,29,26,218,130,226,205,212,58,116,226,172,83,117,121,60,216,226,156,7,61,247,64,158,197,32,174,168,52,1,250,237,116,221,246,38,
84,203,136,109,117,59,71,185,207,15,192,170,128,83,91,199,75,102,224,83,160,134,117,179,164,246,244,220,191,148,115,207,6,144,57,103,237,93,12,67,241,3,62,244,61,154,214,206,202,29,94,207,229,177,128,65,151,20,126,188,141,212,229,184,1,58,3,215,153,232,133,108,57,178,171,52,193,110,61,152,83,68,179,243,193,126,41,150,96,4,197,251,197,116,83,48,194,53,228,249,189,199,235,123,248,26,214,142,186,220,176,112,247,203,126,216,238,114,83,5,143,166,26,31,107,77,141,242,74,64,255,46,246,12,171,240,253,53,200,205,143,58,225,50,130,179,179,221,111,196,207,237,164,65,173,235,198,148,180,239,119,26,140,203,175,233,172,221,56,252,167,158,95,169,101,229,242,55,158,63,37,28,207,186,236,247,193,85,60,180,22,101,60,156,174,122,89,86,60,28,94,145,16,235,181,91,185,161,77,206,217,136,158,183,53,238,112,126,28,34,20,72,102,149,30,247,181,59,152,183,126,101,160,64,21,201,145,154,146,204,162,158,98,134,96,33,225,97,98,55,96,52,23,118,244,177,
10,161,217,50,108,188,59,97,148,90,167,169,98,217,211,46,198,226,119,253,195,50,237,174,197,252,119,125,96,153,211,78,128,232,197,186,78,13,167,0,238,77,134,129,116,86,195,185,72,50,152,157,19,223,217,77,189,58,65,142,133,19,234,8,224,191,105,44,132,23,253,77,16,228,88,136,217,9,22,141,5,118,152,13,21,152,21,14,96,46,44,23,109,184,104,16,43,131,205,22,101,12,123,101,90,55,29,170,78,210,203,112,36,60,93,148,227,141,229,33,36,54,29,114,146,4,211,205,65,8,173,50,233,132,144,152,151,101,79,147,99,59,162,4,136,250,178,96,32,80,179,199,24,146,223,216,105,54,8,83,130,105,87,56,108,29,112,200,111,94,130,223,125,72,236,174,137,176,16,205,249,110,34,45,33,1,58,236,0,165,241,123,16,33,112,211,42,130,28,209,111,132,66,128,203,159,109,88,8,160,142,185,156,133,43,207,34,34,44,182,243,99,155,102,91,184,118,42,238,59,191,227,136,17,208,113,217,112,196,17,77,191,214,87,150,134,96,235,93,177,7,119,212,30,49,18,
218,94,148,94,110,102,246,176,80,223,123,91,190,254,244,238,187,247,103,253,47,67,67,234,113,235,175,178,118,240,30,198,33,220,122,99,167,223,137,50,43,203,106,159,87,229,126,56,170,111,231,114,219,201,76,104,41,159,157,105,120,251,201,74,44,222,220,152,8,106,172,175,61,35,60,243,242,110,246,228,203,165,40,30,15,69,169,150,102,47,241,241,27,248,0,44,172,245,122,56,109,192,36,246,14,239,43,137,169,21,224,116,204,8,44,208,149,56,206,122,62,20,132,105,161,237,209,19,83,222,31,196,7,133,197,187,24,216,201,70,79,31,71,187,85,147,59,57,215,9,128,125,74,216,246,58,112,103,232,176,224,17,242,219,44,5,159,199,64,212,184,21,173,100,187,62,62,14,127,221,160,32,51,79,209,209,49,219,27,101,200,136,26,203,244,234,198,199,233,232,98,232,55,241,219,190,19,144,218,191,173,184,7,188,70,176,30,47,77,23,252,168,45,216,109,63,89,118,219,240,226,24,29,111,211,74,195,241,165,3,189,103,239,135,17,102,119,232,140,41,242,158,28,44,61,230,
57,168,88,193,196,185,14,210,78,196,161,61,1,161,32,76,157,17,228,233,43,84,230,45,225,78,48,147,13,56,40,211,163,179,36,5,19,65,4,204,207,54,179,54,73,60,177,246,155,116,128,241,223,111,35,22,8,99,195,74,8,170,125,92,127,204,6,96,169,121,126,217,255,52,137,216,164,113,100,76,185,152,232,19,219,78,119,103,234,50,243,89,66,0,108,34,80,80,36,204,144,72,21,219,102,73,122,25,143,41,12,211,233,231,108,130,148,166,68,118,69,52,5,209,113,133,125,243,251,140,2,176,29,220,79,0,83,89,139,168,79,40,133,210,164,253,222,30,195,77,68,111,233,45,242,240,207,89,8,8,92,216,5,16,175,238,243,223,245,207,6,252,176,168,116,46,248,13,29,37,205,85,103,244,9,241,195,10,133,253,203,20,55,149,147,219,102,74,127,193,81,39,238,127,205,205,255,7,18,251,119,208,98,200,200,161,18,91,133,118,152,119,113,33,3,253,18,234,141,47,31,188,155,116,233,195,86,121,231,55,120,122,113,226,210,43,133,127,123,36,57,101,212,213,198,239,
134,43,206,76,87,6,167,139,124,195,173,23,239,196,131,234,164,51,202,23,131,152,243,96,191,20,213,193,113,57,182,56,47,50,122,192,131,218,108,117,49,94,101,233,178,51,85,198,28,22,16,234,47,237,53,59,188,243,52,136,221,89,181,247,37,217,192,170,243,234,176,60,146,251,67,86,15,193,231,41,186,201,30,63,142,70,89,127,76,74,61,244,236,165,214,229,164,4,35,216,201,126,97,45,118,169,214,84,255,128,53,166,142,203,67,26,128,59,16,248,70,89,59,249,8,17,111,190,21,109,74,94,31,21,181,163,108,212,25,109,110,198,22,164,151,125,151,191,231,187,252,241,134,203,221,123,93,100,45,97,168,100,176,141,226,94,134,202,229,156,21,178,92,29,137,187,250,3,232,223,154,236,253,95,28,88,49,10,174,106,120,36,183,17,138,197,213,121,43,197,82,176,7,89,241,8,206,201,22,152,206,90,26,132,87,89,79,175,134,101,192,67,51,184,93,32,247,153,55,113,215,116,85,104,233,147,165,249,225,85,187,199,157,207,228,188,81,59,7,62,73,187,246,148,29,156,
3,196,62,31,224,78,72,202,103,79,88,62,110,106,75,138,185,115,202,33,150,26,14,112,202,175,140,105,205,98,223,204,184,214,1,97,96,245,217,238,115,130,76,180,222,177,80,124,179,149,5,37,143,222,144,184,47,160,204,89,98,121,9,252,225,14,249,11,81,170,245,201,164,201,73,42,116,97,132,151,26,60,108,38,57,93,203,142,250,16,159,4,8,124,100,178,14,57,81,234,48,234,24,119,69,137,188,172,81,169,110,116,29,164,165,64,89,114,226,125,152,183,149,15,8,59,103,134,49,177,52,79,140,156,114,50,127,126,185,121,55,43,141,236,245,226,239,12,252,154,255,26,88,66,158,110,253,248,35,89,60,110,8,255,249,157,241,252,202,40,231,255,249,183,195,15,86,245,111,211,200,159,140,36,253,72,61,255,43,90,227,175,104,141,191,162,53,254,138,214,248,43,90,227,175,104,141,255,223,71,107,252,211,255,250,35,52,227,215,108,228,127,255,163,78,76,250,254,60,243,236,251,114,242,59,39,249,141,168,252,35,62,227,71,73,155,239,214,62,174,243,223,226,97,232,158,
201,56,228,253,255,252,135,124,237,95,73,229,127,37,149,255,149,84,254,87,82,249,95,73,229,127,37,149,255,149,84,254,87,82,249,95,73,229,127,37,149,255,149,84,254,87,82,249,95,73,229,255,87,146,202,255,233,127,253,74,41,255,87,97,248,255,41,117,251,187,83,215,57,82,211,195,188,63,220,182,157,118,186,175,222,245,114,190,200,174,230,83,237,233,245,137,143,106,116,216,205,148,250,57,75,7,85,81,203,7,193,137,121,105,42,88,218,107,119,227,227,106,218,196,6,145,56,237,137,151,130,111,71,191,180,147,127,251,52,126,61,60,49,115,182,218,129,104,168,35,148,98,112,191,93,195,231,190,14,95,240,37,233,23,92,10,89,31,40,209,211,3,222,229,208,19,243,179,51,203,11,152,10,149,166,217,38,162,156,199,164,203,87,122,151,50,224,230,54,161,253,89,86,25,228,230,88,235,73,38,24,247,193,163,129,5,198,235,214,112,37,65,146,142,243,120,239,20,81,29,114,30,220,213,40,81,21,190,76,215,69,129,221,253,38,106,82,212,193,237,110,69,75,242,172,164,
222,42,183,22,179,202,100,185,175,84,123,61,240,73,88,122,231,115,226,36,203,224,123,76,221,133,13,138,14,197,72,22,115,89,27,76,223,231,25,14,19,8,191,239,126,156,30,130,46,207,28,46,196,148,49,132,207,0,193,92,2,251,178,122,65,196,128,97,149,26,186,155,157,240,243,129,210,19,79,104,85,75,115,98,62,82,138,181,116,232,237,107,82,155,14,12,206,38,88,203,44,208,44,71,220,195,205,229,5,232,242,18,89,0,10,212,119,0,28,48,167,68,137,32,204,22,78,150,111,64,227,14,95,138,239,62,222,243,207,88,226,111,153,213,31,115,226,127,100,57,126,203,21,255,172,237,250,111,146,50,126,38,60,254,99,132,190,99,91,122,209,244,115,178,248,254,222,203,1,202,246,137,22,92,247,23,242,175,127,46,67,97,162,129,23,45,113,60,57,81,124,168,149,231,53,220,107,123,203,136,119,207,195,45,236,172,39,66,147,224,176,206,45,194,90,174,167,247,136,152,23,182,17,143,43,66,108,243,144,184,233,69,88,63,177,247,205,228,36,245,66,253,189,154,120,183,
109,17,174,153,43,76,12,213,17,223,74,32,69,58,60,27,255,157,185,124,226,219,237,69,168,54,70,136,110,15,218,108,134,23,243,81,219,192,222,50,103,178,214,33,12,113,25,116,229,155,103,34,73,49,190,239,64,217,211,236,156,230,194,127,92,186,57,125,207,7,54,26,223,103,59,6,199,150,14,117,58,84,80,172,161,59,97,15,178,204,60,14,116,17,162,98,111,61,238,201,115,165,31,45,11,157,228,134,225,37,134,151,211,177,179,31,90,112,206,66,195,255,254,147,217,109,72,167,201,168,107,206,98,164,29,211,31,217,48,24,231,34,123,187,89,61,138,19,251,238,143,226,237,112,181,246,180,39,74,185,45,77,131,211,218,141,29,62,254,168,19,224,48,138,195,20,29,253,48,40,26,94,51,59,205,218,253,193,15,34,137,33,182,130,234,164,70,84,226,199,167,143,65,88,130,101,218,30,178,33,23,198,9,127,2,6,235,183,159,109,67,41,43,81,220,172,140,56,1,173,139,31,115,175,62,116,227,217,59,100,32,139,93,89,121,84,7,172,198,107,151,236,180,63,249,198,
229,59,253,204,55,59,152,76,118,78,8,210,118,163,203,199,209,120,210,213,172,158,87,61,4,123,206,222,147,81,147,58,167,177,202,238,62,229,101,38,116,125,110,63,128,103,55,211,208,96,81,103,120,143,163,46,220,238,38,232,55,160,220,236,61,147,154,61,65,197,103,72,156,43,66,240,230,237,95,50,239,103,195,194,58,236,27,220,217,35,68,75,203,121,41,1,10,64,233,109,25,219,15,236,20,216,44,100,243,237,154,156,126,212,32,63,103,6,234,82,188,208,187,55,226,23,22,210,111,44,68,227,130,5,157,197,23,119,84,46,99,33,77,143,93,87,184,221,251,212,113,215,150,211,90,222,67,123,152,165,126,32,222,13,24,237,83,198,30,97,94,2,254,69,17,200,150,91,111,251,239,212,9,136,182,183,220,163,43,134,55,227,14,218,137,73,12,17,79,87,154,22,19,86,164,244,66,248,214,17,96,159,94,163,179,163,140,199,7,158,10,252,10,32,173,208,83,219,161,122,1,164,85,150,131,110,18,244,216,123,7,198,91,54,56,87,227,116,59,81,14,224,120,149,162,231,
19,75,173,221,162,190,65,22,238,129,173,128,76,69,166,59,129,81,2,153,36,90,41,229,229,88,149,155,34,213,250,131,199,189,234,197,85,215,74,56,2,137,155,89,154,6,27,71,88,205,32,144,199,237,28,216,173,121,107,205,18,56,207,28,235,187,92,51,174,24,61,109,159,105,49,101,161,177,238,186,82,90,29,156,129,238,45,210,130,90,177,187,188,191,18,160,93,225,130,120,25,43,120,167,44,183,103,174,204,134,62,11,63,189,75,148,209,53,243,97,39,187,1,203,227,148,2,62,226,238,226,92,178,4,180,113,6,173,65,210,183,10,68,195,29,210,130,26,208,216,14,236,226,154,232,4,51,186,235,21,175,49,31,103,252,124,195,34,132,197,222,121,7,142,230,16,183,183,9,156,193,79,109,178,101,22,27,24,44,161,71,45,97,106,218,70,88,219,223,230,254,239,240,35,167,60,64,113,64,68,45,121,226,47,44,126,177,80,69,232,140,49,210,12,164,78,58,50,62,28,235,184,167,73,226,1,78,157,196,145,228,73,218,117,80,17,161,108,64,185,130,39,220,26,63,100,
74,104,199,75,236,66,54,112,63,171,197,46,55,28,97,171,108,162,96,158,77,206,229,230,239,183,189,65,198,74,108,22,72,98,29,154,228,89,95,182,111,210,129,255,96,177,56,125,248,245,200,46,20,142,28,104,224,81,180,247,63,250,68,73,198,50,162,32,195,249,48,122,61,16,39,90,181,129,32,26,204,52,152,18,132,133,16,193,26,138,161,112,1,189,17,73,70,202,37,61,48,75,86,5,12,39,178,66,63,37,40,149,145,69,125,198,124,75,118,209,179,97,245,51,104,206,191,215,252,60,19,110,65,172,121,0,202,209,18,141,81,162,36,60,243,251,64,96,92,182,1,170,74,59,143,210,161,64,41,92,105,166,161,128,7,169,124,222,176,180,149,34,141,36,72,112,53,140,38,40,0,144,181,109,7,9,106,31,217,203,197,134,152,81,225,101,162,187,92,69,37,43,130,196,181,206,224,67,56,7,200,121,113,79,160,61,244,167,55,188,46,147,30,97,192,76,137,55,6,112,68,130,111,127,76,64,192,156,55,56,96,141,31,142,116,6,226,25,2,209,129,149,61,227,125,212,
73,215,178,30,24,162,178,76,128,90,68,33,49,17,2,219,240,89,152,53,89,129,97,212,252,185,196,211,135,149,166,183,65,101,63,218,175,50,117,131,193,127,106,167,147,104,112,141,91,155,213,112,0,255,190,22,234,223,212,73,61,174,75,205,74,178,84,85,237,161,248,49,217,237,126,170,111,9,243,127,159,126,216,215,196,61,230,221,223,36,219,20,207,41,111,126,20,196,255,183,62,240,215,155,102,225,159,127,198,81,252,40,31,255,235,37,244,129,28,49,196,77,22,119,217,223,236,252,127,254,44,38,240,251,36,123,255,30,187,52,255,31,95,55,251,249,182,203,126,35,128,172,251,59,201,145,255,125,136,187,34,31,254,199,175,96,223,184,250,60,226,31,165,254,155,188,250,134,8,147,14,146,252,17,79,207,119,247,123,105,246,95,223,26,248,231,191,115,217,255,101,79,94,102,73,127,46,212,67,242,96,167,106,229,17,101,143,175,151,39,95,230,5,28,210,96,189,103,247,240,195,77,177,175,229,157,164,209,65,14,196,246,201,14,240,35,29,153,206,231,155,246,91,30,183,251,
176,226,249,174,77,130,10,111,221,152,109,77,193,242,52,196,249,30,38,88,28,105,157,60,40,248,134,67,20,223,143,135,244,13,223,159,205,108,82,188,190,140,207,24,118,69,194,236,97,77,237,25,188,14,108,122,17,142,208,99,184,39,123,60,8,54,188,6,159,163,162,52,208,65,29,117,158,156,170,107,12,187,239,238,56,151,87,216,108,2,110,12,125,40,187,203,252,4,21,17,223,58,189,80,38,12,139,217,10,182,32,45,234,14,208,45,14,69,206,122,193,177,163,94,242,74,84,164,97,97,35,105,46,168,48,43,128,70,106,36,178,58,27,0,124,179,46,242,37,209,243,157,227,64,174,133,125,64,215,91,48,55,41,27,39,81,0,5,39,31,61,160,19,133,2,29,118,41,245,71,30,17,4,20,28,50,228,230,168,19,147,111,133,140,119,202,189,17,124,244,7,12,137,53,224,38,98,9,43,0,129,20,64,155,156,194,17,55,6,19,59,101,176,82,163,165,55,24,206,17,139,166,178,12,160,227,84,123,195,98,135,19,204,7,176,103,193,233,132,51,143,17,64,32,53,235,
83,253,38,160,128,195,84,239,162,143,178,109,66,139,185,203,57,169,115,91,120,72,189,44,212,232,147,192,23,212,154,179,238,238,212,122,98,103,92,178,130,45,129,2,101,107,35,5,121,124,73,123,208,4,176,68,72,47,241,173,131,168,1,183,103,208,88,78,203,192,219,37,46,209,67,68,116,158,244,209,105,151,93,36,4,102,214,169,54,26,206,230,123,169,207,205,101,232,112,93,146,59,125,73,39,247,190,93,97,6,145,13,55,131,95,155,193,145,32,251,190,177,94,80,219,41,251,45,140,204,49,226,113,104,122,22,248,83,127,162,190,81,77,31,30,73,103,130,40,54,8,154,134,217,1,46,91,206,118,103,176,98,136,49,26,0,212,89,81,74,240,176,32,192,4,18,11,159,252,187,133,206,30,142,88,37,195,235,237,126,252,199,66,201,91,69,73,242,0,79,250,122,120,12,113,183,211,19,7,78,89,98,214,36,87,111,227,229,126,90,238,187,249,46,8,37,173,38,120,53,141,219,215,26,28,190,24,152,40,208,143,111,118,124,225,241,143,111,47,252,208,254,159,90,247,227,
61,215,47,164,252,83,99,127,251,102,218,197,63,62,212,240,205,74,250,42,237,220,17,190,74,76,69,178,254,222,230,87,55,207,38,173,198,236,223,107,237,63,164,136,145,226,245,150,188,223,123,87,86,89,198,166,157,175,140,179,127,23,76,46,8,124,64,13,115,197,39,183,94,50,234,128,53,206,5,113,42,79,186,150,54,162,95,79,113,22,131,44,204,37,219,217,178,23,234,182,139,160,227,28,104,3,75,120,174,253,22,89,113,43,110,122,203,198,29,0,114,54,214,224,131,9,81,172,186,222,97,79,134,55,52,103,103,236,29,6,189,233,233,118,142,1,119,161,79,163,15,164,11,127,247,115,32,36,211,37,175,196,112,132,242,202,246,59,4,10,50,226,71,53,136,178,150,201,33,167,78,151,173,19,67,91,82,32,155,117,177,38,190,20,40,250,93,18,160,185,160,217,59,28,106,12,101,81,66,94,29,19,199,15,86,108,52,205,178,65,119,226,177,61,178,226,193,17,165,253,119,130,127,107,0,60,58,229,182,73,60,156,86,143,147,16,158,128,243,199,118,162,37,68,1,193,
72,39,72,172,96,185,121,28,7,137,92,112,17,36,80,37,157,222,34,233,227,103,108,232,198,75,2,90,43,186,130,63,226,63,127,197,144,98,132,57,137,2,182,3,225,11,56,22,17,27,8,121,231,219,15,15,63,29,180,191,177,171,54,22,37,178,19,207,95,124,245,199,111,27,126,68,16,213,81,21,209,154,232,241,104,45,136,80,253,203,127,251,105,248,147,56,125,253,203,127,251,237,95,254,233,119,169,248,105,207,255,248,228,71,255,163,69,209,189,199,38,251,145,190,241,75,228,190,31,18,233,226,185,249,233,16,158,195,223,198,55,253,25,230,36,254,243,111,238,143,244,79,66,230,254,65,138,86,46,209,143,248,166,7,43,202,84,218,43,87,144,74,82,184,83,223,11,125,208,226,215,147,42,135,21,53,29,19,16,184,177,84,252,37,148,246,97,200,189,150,107,103,24,186,110,31,245,199,221,10,242,13,25,98,99,108,146,55,9,166,58,102,108,156,179,89,37,72,210,185,171,147,167,67,54,176,162,45,158,83,42,255,248,102,59,241,234,211,230,54,178,16,150,227,61,143,
41,70,41,188,153,213,237,212,56,174,211,165,79,196,103,40,195,84,87,225,144,230,227,59,220,242,48,106,62,195,25,189,64,137,93,81,24,196,68,55,91,150,121,72,140,42,230,211,201,197,128,26,89,92,195,183,102,173,181,143,199,232,169,54,14,110,152,118,18,178,198,189,181,194,238,53,55,112,146,43,230,161,11,53,133,23,236,86,190,123,101,219,139,35,196,227,251,56,209,7,122,154,58,187,45,135,188,46,245,203,11,190,21,63,184,232,176,61,228,161,214,10,50,70,225,69,62,35,101,107,112,19,58,205,113,186,189,164,103,13,175,55,117,221,203,171,171,238,185,55,100,43,28,251,157,136,114,91,231,198,186,96,228,89,61,232,143,179,188,234,151,153,57,23,199,253,188,171,223,104,17,107,44,178,25,92,133,196,221,171,199,219,57,156,207,71,186,233,13,112,207,12,16,160,3,47,249,34,107,140,198,161,19,96,169,125,68,148,142,229,148,57,67,186,23,219,125,57,53,130,202,140,77,180,76,6,124,165,57,47,73,147,9,36,79,232,110,100,100,216,88,65,55,117,24,131,
253,164,191,140,253,108,60,19,249,122,44,246,89,236,230,118,42,100,47,246,3,85,26,223,94,138,246,250,156,211,119,107,6,97,195,76,241,132,239,16,135,166,208,57,225,83,250,80,17,109,9,47,195,203,199,35,111,29,101,106,85,218,251,37,182,206,71,170,62,239,83,147,105,108,47,19,147,190,125,205,76,125,62,235,183,73,223,251,19,193,150,109,220,189,124,69,188,177,73,122,119,174,131,92,213,243,115,253,150,70,59,156,249,202,209,38,66,85,0,77,195,60,64,206,141,91,154,215,92,236,151,187,231,106,148,206,78,18,131,182,154,65,37,108,239,79,54,81,36,90,249,224,44,213,166,16,94,71,6,177,158,55,36,54,13,105,51,136,7,19,198,214,14,138,6,77,224,132,77,247,98,0,95,247,145,30,140,237,98,228,89,7,5,171,53,146,59,89,89,157,64,23,125,222,70,6,189,73,19,184,162,44,207,54,169,30,48,250,72,93,195,210,88,16,236,180,20,224,19,191,155,152,240,21,222,137,33,171,14,94,36,40,131,19,66,214,105,199,238,117,87,4,129,113,220,225,
179,112,179,255,218,251,175,179,43,189,214,254,179,246,145,69,16,251,68,250,184,42,25,113,39,183,215,234,28,163,195,125,128,195,38,152,197,157,113,36,183,136,55,159,28,72,7,175,234,62,235,67,34,223,187,147,221,237,50,5,137,226,241,188,238,4,227,117,139,87,197,211,124,213,180,194,6,141,56,202,186,91,92,50,77,243,58,196,125,110,89,146,162,51,178,155,132,151,161,63,160,225,161,128,117,31,68,4,163,95,12,148,5,231,130,41,99,87,184,187,250,251,221,132,66,15,6,145,61,12,207,225,154,215,23,43,179,25,65,210,97,124,153,226,139,230,189,79,30,119,189,112,116,142,115,154,224,249,29,40,224,30,165,146,187,233,201,182,211,182,103,204,2,214,121,143,244,122,76,96,82,49,31,166,209,63,210,57,74,119,113,170,220,177,106,7,242,56,156,143,188,231,140,5,124,105,27,117,216,186,230,133,235,124,89,172,196,9,26,186,201,121,109,104,90,17,225,17,155,15,249,44,114,23,243,125,50,185,235,137,211,118,130,186,130,253,105,180,204,102,186,219,37,164,142,233,
32,94,15,125,84,244,125,246,196,119,66,48,6,183,92,13,123,183,225,145,25,139,182,167,57,102,42,238,93,97,119,239,148,137,15,105,194,237,19,107,186,163,147,53,99,131,51,219,42,202,175,97,63,44,79,204,240,168,90,222,3,194,57,179,255,226,65,231,81,167,197,148,238,58,172,136,193,206,120,224,72,129,62,46,198,42,119,253,171,208,153,56,105,232,41,143,174,198,166,95,27,64,179,17,61,107,104,182,16,83,234,4,221,229,105,137,120,153,72,240,100,100,253,214,107,203,104,240,15,211,171,242,48,238,225,32,114,230,230,37,2,33,151,121,86,64,101,22,101,108,12,250,249,113,195,199,16,92,23,23,126,233,188,116,28,117,254,225,100,77,209,103,218,143,235,11,40,249,126,37,128,146,51,172,118,92,113,225,6,207,147,115,162,162,157,4,46,145,84,109,218,136,208,139,201,138,179,192,195,29,170,78,67,213,244,155,192,78,115,117,112,135,4,198,98,83,173,178,38,200,218,22,148,21,80,170,92,246,243,71,150,246,44,236,107,24,224,2,188,239,4,21,228,11,29,161,
132,21,110,190,54,117,102,214,155,29,47,179,235,167,14,251,105,31,228,143,6,23,65,14,17,11,226,105,202,24,204,50,57,47,44,150,189,56,55,51,95,110,131,54,17,161,133,125,124,205,60,16,119,19,187,202,248,117,145,232,16,200,5,120,188,157,121,23,172,113,104,160,37,225,186,41,212,79,206,97,74,8,220,31,63,64,161,173,33,13,136,236,180,160,236,159,244,201,185,164,156,74,238,83,130,7,30,202,26,62,189,34,60,251,152,176,208,217,188,174,59,113,49,251,14,178,73,117,250,121,204,243,62,215,55,220,18,96,44,24,6,80,12,32,87,128,126,47,176,240,225,195,250,86,235,123,203,100,76,98,34,35,160,18,93,175,181,169,39,3,168,137,18,65,241,158,102,201,8,77,84,79,50,17,101,90,92,242,173,92,108,166,92,50,206,93,148,124,114,58,66,66,180,96,124,162,54,229,247,54,75,0,179,102,62,94,177,7,23,102,99,52,192,162,103,114,37,194,128,239,66,137,142,143,161,235,213,3,97,26,180,5,88,59,115,5,159,176,86,209,121,220,63,83,255,77,
106,110,240,6,213,45,112,120,17,220,48,180,74,208,227,62,144,180,228,52,43,67,31,220,29,118,109,18,39,118,222,1,123,35,250,79,107,39,30,122,54,91,10,15,176,220,72,79,252,210,158,152,14,90,135,214,135,149,67,53,249,70,167,197,246,209,130,169,75,146,1,29,1,51,230,116,32,189,232,140,48,117,32,225,43,131,3,86,88,144,74,158,11,13,60,225,131,6,204,172,174,6,199,133,207,203,246,69,123,160,191,57,20,2,188,206,145,99,241,45,75,225,128,5,96,248,11,108,33,165,50,2,142,156,213,28,82,134,225,12,105,217,67,126,62,49,34,95,83,86,4,23,66,152,87,155,220,103,59,102,118,96,208,42,189,108,59,110,39,58,31,103,140,177,239,140,244,235,38,45,111,219,120,198,29,140,172,86,4,204,85,179,152,173,137,38,32,134,115,154,9,128,194,215,13,149,68,158,246,14,179,177,38,227,194,198,24,29,134,129,57,58,182,201,208,101,128,216,242,116,54,69,40,40,155,233,155,172,59,37,162,27,64,120,46,197,73,85,125,103,50,38,34,11,192,227,
183,103,223,58,227,219,55,63,77,103,128,16,164,15,26,113,27,75,75,180,113,72,200,22,71,112,210,69,148,232,55,157,102,111,192,19,216,199,134,117,99,95,215,88,92,208,12,5,117,56,236,39,251,42,228,220,7,81,168,53,75,51,113,66,131,45,161,49,93,212,13,6,2,177,237,141,9,221,94,88,94,22,229,17,198,195,42,180,225,12,155,154,37,56,115,118,217,16,219,81,194,216,97,124,123,66,49,197,167,43,50,62,12,141,57,157,131,45,15,35,144,8,145,104,195,31,88,101,123,216,7,76,89,118,90,233,191,79,35,16,172,70,0,92,255,59,2,251,197,242,127,206,163,127,209,219,23,244,255,25,128,254,91,156,101,223,20,223,238,231,107,151,95,244,224,143,194,132,127,116,243,63,127,219,85,207,244,245,91,92,196,95,210,241,254,237,139,7,191,40,241,187,254,123,183,63,200,10,65,149,95,190,210,143,73,159,183,227,119,182,224,111,206,54,63,201,174,159,159,233,27,186,231,143,10,33,191,98,248,254,188,224,177,25,158,213,175,194,134,105,220,164,100,199,63,54,
215,31,125,62,229,226,107,218,33,50,119,170,250,150,119,167,211,252,190,90,107,234,158,133,85,214,87,249,186,219,233,251,227,193,45,15,239,135,170,97,130,25,209,232,19,30,61,182,231,203,59,190,60,20,181,60,106,11,156,125,73,42,242,139,36,107,55,184,179,182,220,27,54,177,245,60,138,189,183,128,141,2,19,5,205,230,109,199,21,123,103,49,23,27,95,11,130,201,179,78,174,123,113,159,183,203,243,117,43,94,251,87,189,80,253,46,40,187,117,218,242,27,5,3,19,112,188,201,58,209,173,138,189,54,96,251,171,105,140,162,134,89,184,18,168,137,78,135,68,108,167,55,107,215,47,234,242,217,231,159,163,117,103,157,129,111,79,96,162,46,241,205,96,55,40,123,242,94,221,5,123,8,148,217,152,182,241,81,234,244,194,202,179,220,185,202,43,87,148,110,5,133,17,206,187,55,1,199,146,161,22,249,209,23,103,243,229,164,66,222,57,113,86,206,174,85,24,70,113,115,228,68,47,36,172,236,25,121,87,203,133,32,247,121,39,116,208,183,60,120,4,131,157,158,36,163,
244,243,65,209,156,236,33,214,107,239,0,202,39,208,104,221,196,122,235,49,71,149,116,254,80,214,132,61,54,185,48,190,237,240,186,159,149,155,180,167,164,221,149,251,66,92,187,12,140,0,103,83,250,32,92,63,22,199,227,145,171,199,94,222,56,173,121,218,88,150,114,89,151,90,181,30,13,75,112,234,97,49,178,248,123,125,56,11,229,136,219,165,243,222,92,236,237,169,86,123,79,42,23,248,26,40,138,120,12,192,175,20,1,102,32,18,111,79,36,117,138,241,186,174,6,244,244,113,63,116,16,88,208,111,199,19,168,161,22,16,236,219,128,120,187,23,65,122,226,50,97,54,171,137,246,105,114,60,172,37,42,225,27,43,61,242,161,2,183,146,98,141,238,11,182,92,163,116,24,97,19,165,54,189,160,115,188,113,63,183,175,79,11,136,239,22,45,243,236,212,136,80,5,203,246,97,74,60,75,197,135,170,176,20,218,227,96,90,167,222,102,125,95,44,171,34,51,144,41,35,186,211,140,92,200,31,250,162,239,102,197,149,246,107,88,214,75,81,237,78,6,252,126,187,155,227,
169,163,41,94,20,116,22,27,143,62,1,197,239,149,83,47,183,64,177,210,107,220,203,130,164,14,220,1,156,164,8,158,122,23,185,187,107,78,75,142,253,237,179,100,195,139,185,28,39,249,198,20,4,88,216,64,205,94,166,225,128,24,249,180,9,109,54,24,206,208,19,57,217,152,15,78,113,192,5,5,229,15,35,123,204,105,89,18,120,196,159,135,240,226,61,120,102,175,241,92,197,53,91,228,116,161,192,226,140,101,158,41,42,186,176,80,225,245,163,192,241,3,50,185,135,88,68,146,147,138,151,64,172,141,55,180,101,217,46,94,118,161,140,93,113,86,203,29,25,175,119,123,52,169,131,204,194,75,144,230,215,185,202,112,52,115,242,77,216,221,128,76,217,71,123,7,132,142,71,98,47,238,36,65,145,128,188,187,177,146,50,61,93,112,232,56,157,221,212,174,124,247,200,181,47,216,89,50,42,91,180,84,30,192,78,228,203,152,219,142,203,35,121,198,212,80,54,132,217,126,236,231,114,132,120,202,240,5,140,197,21,28,4,106,27,36,215,33,222,132,0,198,218,134,166,113,
46,218,0,16,159,52,236,77,88,104,240,220,221,38,206,192,243,21,22,30,84,130,181,118,48,233,105,112,231,122,119,144,159,187,131,90,156,6,142,74,55,133,237,133,92,216,97,105,7,57,21,205,42,156,157,100,194,180,117,23,118,65,43,139,33,222,208,61,209,159,147,139,166,78,26,31,82,90,227,184,84,13,206,74,196,198,50,196,206,34,92,146,119,216,65,50,143,37,22,161,6,117,236,193,45,145,238,146,84,194,39,43,108,146,110,78,177,60,198,217,61,188,113,21,156,216,43,27,18,27,190,134,119,246,140,217,128,27,14,21,222,58,227,180,49,7,204,121,31,106,3,65,224,76,87,188,53,181,104,114,29,127,20,165,8,89,181,209,183,149,33,5,228,249,126,214,0,21,142,112,82,236,251,77,130,96,78,205,160,57,137,196,133,214,135,197,205,28,228,103,22,25,159,74,148,142,20,1,51,117,198,66,143,145,251,177,196,17,206,114,207,17,81,211,220,222,46,20,163,49,175,14,153,147,6,75,48,228,112,164,226,213,139,52,148,3,33,103,248,241,201,34,241,28,212,142,
128,4,157,16,212,236,10,247,249,34,66,11,198,153,9,71,139,83,201,67,65,88,196,153,78,51,73,124,15,198,51,87,78,8,159,4,135,14,120,187,31,239,170,73,55,147,33,220,192,53,231,237,19,10,29,113,19,246,249,200,22,211,200,50,33,220,141,70,198,77,4,208,204,232,152,87,251,183,200,39,200,98,154,113,193,102,127,93,117,116,135,209,148,23,192,189,122,210,73,244,232,111,161,53,250,221,169,249,153,126,192,67,35,233,251,233,137,220,134,72,96,2,218,150,85,118,65,159,29,197,165,225,84,48,41,179,185,15,225,224,180,87,98,150,18,220,57,187,152,237,46,26,189,115,71,13,211,28,144,58,193,110,225,131,222,193,195,4,79,79,7,60,65,133,15,31,237,112,84,78,199,229,220,164,10,189,175,36,131,251,57,27,55,253,40,17,244,175,93,226,63,228,147,146,164,252,206,90,239,61,17,110,48,211,242,87,189,171,169,157,53,21,235,177,20,93,167,221,110,243,84,156,15,1,131,94,207,235,241,231,114,89,69,49,99,139,58,115,167,35,132,15,13,67,54,87,
185,23,226,58,163,201,90,69,75,0,66,211,186,65,198,91,15,190,154,160,245,88,93,8,219,68,140,133,229,52,23,71,71,48,165,7,205,217,55,128,11,114,214,142,65,11,140,176,110,163,130,220,34,35,157,233,80,161,195,177,25,89,56,22,214,164,82,112,156,173,1,157,56,199,135,101,71,217,212,78,144,153,203,134,44,196,90,221,69,188,24,58,60,94,131,227,37,152,2,38,53,167,121,199,126,82,25,75,236,50,50,148,58,204,94,218,48,27,4,3,119,203,161,12,192,94,9,222,134,67,204,185,145,172,98,71,247,103,48,9,31,182,36,198,255,19,7,213,99,216,202,226,72,28,3,212,217,252,188,100,159,68,122,230,2,162,228,214,114,124,231,60,130,232,204,64,118,57,37,106,196,53,253,132,206,68,253,175,159,151,247,233,88,22,46,161,68,216,23,203,154,125,97,136,53,65,239,220,121,76,0,48,163,69,97,156,252,13,223,77,87,171,23,25,3,187,225,167,163,250,169,211,250,193,206,211,121,178,63,33,74,189,186,129,80,181,39,139,239,243,254,241,170,236,79,201,
118,165,157,24,101,145,173,70,25,212,20,101,216,132,159,136,163,139,4,105,173,11,118,209,219,87,254,141,245,97,156,170,162,164,198,72,133,230,9,107,10,61,189,91,67,109,239,124,66,235,251,40,169,118,81,75,44,134,81,248,132,201,192,177,203,129,178,134,32,126,205,14,225,190,146,209,79,125,198,132,115,152,73,194,149,47,13,16,33,129,69,83,238,208,13,87,110,122,240,178,123,158,21,55,92,234,55,108,15,3,189,81,214,231,144,126,80,68,120,86,35,46,110,162,62,79,156,137,148,205,29,136,107,123,48,61,71,67,55,23,239,91,92,16,245,84,240,216,51,31,174,99,163,187,176,238,86,44,82,27,22,107,17,56,237,160,228,120,91,71,167,156,110,111,66,62,211,23,90,128,52,105,231,237,172,165,39,62,131,137,189,221,204,144,191,93,224,195,176,29,53,13,210,139,255,134,66,153,183,248,117,56,73,170,112,37,77,214,172,225,162,209,54,253,241,53,221,62,186,4,64,42,157,81,72,174,108,18,130,208,169,240,27,99,57,140,224,212,100,103,130,155,114,5,138,96,
17,151,114,28,192,35,91,84,5,175,27,107,67,202,190,63,160,188,30,62,196,151,38,69,179,142,152,137,5,236,241,139,116,166,188,121,34,125,194,11,222,146,253,251,34,50,124,182,144,246,211,197,97,63,231,145,55,145,138,149,156,63,86,240,138,5,3,23,77,163,40,8,222,82,152,129,234,164,213,37,16,1,86,18,91,13,202,221,20,104,243,161,168,247,226,219,142,12,241,96,199,186,248,82,197,98,62,4,233,82,45,249,167,160,77,100,24,236,41,162,39,123,98,66,76,168,81,145,37,122,125,203,63,229,231,210,72,184,147,133,54,58,240,136,81,233,110,138,253,165,183,75,117,107,122,250,30,21,118,86,186,98,239,88,185,119,117,199,98,179,150,201,207,188,135,113,133,87,119,155,124,108,94,216,22,28,184,132,62,77,135,77,60,209,237,136,19,10,190,88,55,255,22,80,248,99,49,12,78,230,192,181,172,206,95,27,179,251,1,117,255,191,176,49,25,221,37,109,63,107,178,87,220,113,215,127,180,145,119,65,101,11,206,29,161,163,246,84,230,82,231,193,62,90,3,130,
113,222,79,32,231,159,83,121,57,222,8,31,49,251,244,181,203,238,59,194,221,59,249,220,65,68,167,70,8,213,243,84,120,237,188,30,115,72,134,224,88,64,112,85,39,81,130,65,53,244,137,126,95,222,31,0,181,161,12,112,128,5,74,5,8,246,240,251,55,132,11,204,92,5,202,16,197,10,60,176,18,13,95,14,226,161,8,241,210,233,13,157,54,226,153,56,83,129,209,99,106,218,62,92,121,184,67,123,122,218,85,34,9,64,65,38,102,253,66,220,144,168,48,91,239,83,192,30,243,11,76,231,140,226,74,212,41,172,247,114,152,179,145,217,33,188,147,109,130,138,60,178,173,117,168,222,48,166,24,43,219,112,168,111,42,56,121,211,44,126,0,42,230,18,212,222,120,224,62,128,46,168,18,232,222,88,112,144,109,84,133,154,223,6,168,213,71,121,251,30,171,218,43,126,95,206,58,226,96,46,95,29,238,10,184,130,153,184,237,62,231,17,220,247,151,238,96,245,240,121,59,208,123,77,135,203,97,47,144,115,12,125,211,6,220,65,54,60,245,8,187,179,111,219,64,94,
49,109,114,102,161,122,163,130,229,54,205,82,197,132,251,178,236,11,197,225,43,73,137,148,121,123,150,84,206,54,125,79,237,113,140,199,51,204,167,195,249,0,63,55,155,234,189,24,74,75,119,192,82,19,10,60,132,175,31,201,43,138,152,88,220,80,8,61,60,24,22,49,182,39,204,152,18,124,88,73,14,212,194,241,21,62,200,191,1,50,176,69,189,162,64,102,206,210,147,12,191,243,168,91,241,194,234,100,26,211,196,60,236,236,37,112,178,2,13,243,12,173,253,4,104,207,179,210,179,8,132,120,61,195,6,143,14,107,228,83,249,34,124,46,99,1,241,178,0,132,18,200,129,117,73,217,202,143,134,28,172,13,75,128,129,227,60,68,207,57,88,2,104,157,9,121,165,118,6,133,13,231,97,179,74,123,99,103,167,239,33,220,223,58,61,128,172,24,82,9,84,177,127,137,106,177,87,215,65,162,144,205,192,178,23,68,77,8,36,47,181,108,216,177,181,127,52,5,61,243,186,113,244,17,28,167,100,179,106,5,234,140,183,121,68,118,40,67,162,197,156,176,107,225,50,49,
180,0,50,192,65,184,44,207,126,130,33,216,143,162,225,101,234,164,16,251,225,116,201,188,175,209,1,222,228,187,195,119,66,38,176,197,62,23,243,0,91,180,15,147,51,157,141,44,208,11,76,95,173,25,62,224,131,248,190,6,169,48,152,246,247,142,161,182,102,122,229,218,245,190,145,1,255,190,185,233,228,18,24,37,221,16,3,71,77,206,86,137,168,50,96,87,59,34,184,79,167,67,251,36,139,107,93,97,141,55,150,254,147,120,255,122,9,55,86,113,247,127,170,198,101,146,140,231,89,149,175,23,8,145,243,153,145,86,208,222,245,145,95,206,215,180,171,101,163,106,175,149,128,9,232,34,200,82,76,120,228,75,198,103,11,4,152,111,60,115,82,55,202,217,34,114,205,5,111,160,11,155,189,197,140,98,4,237,3,63,228,94,106,38,123,121,136,46,4,79,92,68,64,207,47,150,190,163,238,98,93,157,216,84,195,168,9,110,120,60,152,119,195,90,118,226,137,23,180,25,194,129,184,33,85,231,203,222,135,226,46,90,253,71,231,36,181,26,151,224,57,74,181,170,127,38,
230,173,62,19,84,116,119,191,100,196,153,121,137,72,122,67,234,146,244,54,173,233,92,137,13,119,131,91,17,18,242,119,159,216,85,149,29,233,165,183,235,134,165,245,227,109,1,254,190,18,235,12,126,247,193,92,241,160,106,22,110,102,79,163,200,224,239,156,73,221,51,22,85,159,196,6,3,3,166,58,133,23,225,106,134,254,141,191,55,67,137,209,11,97,6,20,78,106,151,171,104,248,250,238,152,177,14,220,4,244,222,174,239,232,80,1,187,147,110,142,8,33,91,33,184,162,57,240,69,8,154,169,76,229,104,52,97,165,255,104,68,185,195,57,182,178,139,168,4,44,178,183,69,253,244,221,181,138,30,13,10,54,252,77,187,236,4,111,173,39,254,61,183,24,10,78,83,53,41,145,197,82,75,133,239,249,163,73,122,73,58,130,230,80,188,217,154,101,149,130,120,220,0,43,202,164,229,251,235,120,129,62,102,94,51,251,236,114,177,101,97,3,14,60,167,116,174,241,158,182,173,115,115,233,241,92,13,51,64,123,197,26,148,58,63,144,54,159,134,233,194,148,185,79,131,178,
137,15,197,107,224,126,111,55,173,56,59,217,225,116,134,209,251,65,13,1,19,65,116,25,234,128,216,91,81,122,4,209,144,29,39,196,145,177,233,36,105,122,108,172,123,16,134,247,153,152,185,72,173,180,172,102,236,126,226,50,213,183,178,90,207,241,196,95,85,159,246,135,120,158,8,28,76,207,143,182,154,0,31,74,175,98,53,92,148,16,87,190,231,230,171,217,114,19,146,116,123,97,158,99,213,189,211,59,128,78,70,218,214,195,220,64,143,101,202,115,246,238,62,122,42,166,214,251,177,62,199,71,199,94,34,192,20,238,45,82,143,250,184,52,244,226,53,118,254,45,244,120,136,223,162,84,230,121,148,189,101,247,18,169,31,107,138,239,220,113,40,8,182,156,175,234,231,208,64,86,3,233,201,234,119,35,77,139,219,162,139,68,191,137,145,42,12,152,63,179,239,91,91,176,73,106,163,148,188,216,160,39,210,159,10,198,64,160,153,113,204,24,133,137,246,106,74,228,173,98,31,210,56,10,252,22,54,73,125,105,102,71,24,5,1,45,239,38,43,39,24,40,175,242,132,17,
151,1,27,134,111,103,107,224,147,215,249,4,98,204,170,150,84,97,206,222,102,149,252,102,16,59,235,107,5,63,30,203,125,255,214,30,219,235,253,84,25,193,21,47,8,61,229,44,19,237,196,137,88,124,137,108,239,116,129,57,119,246,246,64,157,80,177,166,181,254,128,124,17,54,199,190,196,252,181,226,238,85,9,60,241,90,42,142,219,56,23,203,241,112,99,60,136,91,208,103,249,3,209,243,2,245,94,13,137,170,88,227,13,235,194,17,38,119,229,0,210,92,23,53,41,57,105,14,232,3,99,198,12,186,220,83,236,77,91,20,126,224,82,18,212,64,142,47,159,177,6,65,81,150,34,61,199,102,101,160,212,26,158,1,92,221,4,234,163,122,33,195,97,62,166,33,230,44,251,58,113,48,142,210,173,146,255,163,57,194,233,111,231,239,254,220,241,43,108,231,59,55,248,123,77,191,250,61,246,63,10,165,186,143,39,30,254,5,164,99,215,147,95,175,124,253,7,83,108,59,214,127,92,22,237,251,213,175,68,41,231,203,145,49,173,199,229,230,239,9,177,153,194,19,247,200,
242,80,67,250,7,158,62,203,161,225,225,250,76,83,49,223,206,203,120,126,85,99,215,216,0,11,141,177,186,249,150,138,86,251,65,14,79,132,225,229,70,7,178,28,111,147,224,223,247,13,92,58,102,29,40,186,46,119,13,61,53,14,67,119,18,3,227,216,8,170,67,11,93,104,31,208,26,157,224,162,50,46,126,176,35,226,204,8,67,236,116,143,220,95,77,240,206,232,13,181,18,117,136,9,233,122,42,11,230,179,224,70,192,81,172,178,113,105,198,196,230,61,19,234,82,198,101,109,178,137,52,2,33,226,251,147,205,91,195,162,125,168,133,38,68,107,63,90,122,75,217,52,161,111,254,170,13,29,230,17,129,136,67,92,141,42,250,116,131,12,172,247,181,68,10,219,52,131,248,50,2,75,130,231,172,33,126,179,6,152,57,109,29,106,137,218,114,144,79,65,155,20,133,117,101,150,73,218,114,44,110,122,153,38,23,98,90,31,116,111,63,47,23,22,158,50,179,20,69,126,41,112,21,178,7,204,218,165,85,131,184,128,84,47,208,150,31,102,166,113,211,12,234,114,93,9,
226,55,7,155,235,221,222,200,249,22,96,113,174,203,16,20,156,93,107,212,254,69,235,146,195,59,75,194,183,42,255,6,233,166,167,152,62,109,3,172,147,79,91,255,88,255,94,83,69,140,75,155,117,9,212,206,60,20,174,125,32,222,140,62,34,120,188,217,26,11,238,157,12,11,15,190,235,249,167,88,134,62,96,148,180,164,171,76,105,179,203,61,183,2,167,242,36,154,53,182,76,172,59,122,115,222,110,69,177,99,177,27,199,242,210,240,221,148,63,162,165,23,96,44,51,55,177,116,133,199,74,69,193,107,55,192,184,19,187,123,234,93,217,49,132,55,97,227,219,97,79,103,10,107,29,42,12,104,99,11,122,238,217,77,12,229,240,239,15,189,9,231,228,115,231,158,196,101,221,176,149,111,167,61,134,143,187,153,141,195,160,103,72,201,30,223,237,106,214,220,66,94,76,77,20,14,128,83,242,119,145,219,216,37,151,48,140,118,229,192,133,180,47,145,238,221,94,18,225,24,206,134,47,241,39,144,136,238,139,161,177,113,19,221,210,66,81,81,241,8,79,228,144,79,103,210,
14,162,251,187,232,235,208,101,104,117,52,224,112,149,38,238,118,175,77,4,91,149,189,152,87,220,97,14,221,41,57,255,177,207,71,180,106,227,1,158,134,120,2,239,21,28,180,159,247,97,222,147,34,129,163,13,69,58,156,64,107,80,241,71,197,76,11,156,205,57,209,190,132,106,240,22,107,181,45,91,195,22,64,35,180,240,205,215,203,105,15,173,12,225,131,199,152,182,45,41,99,18,143,124,6,106,227,59,214,44,117,52,93,103,65,192,114,136,187,205,174,171,7,240,180,126,200,147,247,133,227,224,96,120,43,47,211,200,124,239,99,42,58,241,152,135,219,184,67,226,143,49,82,164,22,6,205,83,148,50,72,17,215,250,130,111,159,37,20,212,112,114,57,208,28,72,128,53,124,155,44,247,128,55,76,157,234,8,50,155,149,78,167,70,221,197,214,162,74,29,102,68,134,236,4,110,127,131,71,118,90,8,102,158,172,75,83,108,72,7,9,36,236,53,117,217,9,222,182,122,122,250,61,1,93,39,54,129,134,205,12,61,141,165,9,15,65,29,2,167,155,54,235,179,161,6,
108,29,248,148,182,111,178,208,62,139,248,52,113,188,120,50,144,237,11,27,96,109,122,104,24,150,244,143,115,218,18,12,135,194,162,61,242,22,52,152,156,88,123,158,134,122,222,192,143,6,186,140,60,12,226,59,104,119,60,246,72,108,176,5,24,4,96,60,32,54,210,242,78,124,50,144,160,235,252,185,170,227,11,215,6,115,0,133,248,49,68,128,86,231,100,205,104,154,16,18,251,115,145,47,186,63,50,25,108,60,193,124,100,223,125,20,2,52,145,44,166,42,29,225,200,168,96,195,116,197,239,5,36,238,128,128,25,226,77,110,184,146,238,226,219,64,53,154,75,23,166,119,104,76,195,76,12,201,42,37,217,16,128,194,213,167,146,167,76,28,242,82,197,221,136,132,128,82,92,173,59,190,229,135,9,150,175,6,54,134,224,242,135,31,246,173,207,103,71,149,236,15,252,245,234,39,39,70,253,247,16,205,244,93,17,171,60,188,255,77,240,216,255,33,36,237,154,159,182,90,253,127,183,213,189,68,232,56,88,205,85,179,183,174,185,218,122,54,29,63,213,113,76,155,84,133,
223,180,153,114,91,153,101,212,70,154,178,75,73,52,206,217,242,93,26,187,96,181,213,35,184,6,158,232,178,205,172,120,11,17,31,111,19,244,124,144,245,119,192,87,174,20,100,31,175,121,12,174,211,25,253,30,238,38,52,209,193,115,19,33,74,20,20,156,43,34,103,201,148,178,192,119,99,20,212,168,112,227,69,225,38,33,116,252,24,178,84,190,125,81,242,23,90,93,232,177,232,50,153,249,92,181,183,77,121,89,0,210,98,211,54,129,17,182,227,99,52,243,72,233,31,113,242,81,99,55,167,118,203,199,103,94,236,45,16,249,192,199,225,2,47,57,98,209,241,54,20,56,110,197,139,163,191,207,111,34,210,61,72,226,60,203,66,115,228,178,20,45,32,201,175,147,231,72,24,45,48,238,247,210,17,147,7,253,17,85,88,109,194,167,223,41,237,24,222,32,129,155,12,92,120,79,127,99,246,82,248,7,227,57,115,60,58,19,140,69,208,207,86,52,109,196,222,188,163,131,207,246,20,62,96,224,19,2,138,134,216,125,11,129,253,62,100,138,27,23,218,198,171,219,129,110,
110,62,45,198,13,183,194,76,188,140,175,48,83,102,225,29,92,220,250,233,206,112,203,137,78,48,211,125,118,146,140,35,178,24,231,31,199,245,33,237,185,62,225,99,30,88,74,48,150,254,65,192,91,57,127,132,24,175,93,99,208,152,233,241,66,199,148,138,160,109,61,55,1,247,6,152,164,130,24,237,236,26,71,204,153,180,50,44,36,170,245,94,88,235,138,66,114,36,156,86,247,196,162,126,234,135,51,11,251,20,30,130,206,190,23,39,187,69,148,156,116,111,74,1,137,200,30,238,117,206,241,39,220,116,244,75,13,189,151,29,188,207,195,201,95,149,0,14,15,169,18,157,67,102,66,103,9,64,157,219,113,231,14,121,33,32,185,231,207,111,92,19,5,212,198,160,237,232,81,29,243,19,207,11,123,98,223,249,93,55,173,11,112,249,230,118,157,144,198,117,77,53,208,247,177,112,178,44,127,18,91,151,209,218,120,231,32,157,15,51,102,159,227,253,230,188,15,248,114,224,48,96,140,53,240,18,124,195,162,198,137,61,190,188,232,163,99,224,79,73,108,165,190,239,164,38,
98,97,166,151,243,212,84,144,146,155,246,243,243,26,8,227,137,18,97,90,133,252,14,47,122,94,77,109,115,179,96,98,138,184,120,132,43,203,18,78,92,56,230,130,109,248,160,227,66,157,69,212,227,215,56,22,57,205,96,228,73,120,125,110,72,14,214,227,13,90,3,170,158,203,7,174,31,142,33,92,135,200,9,202,29,19,190,31,232,212,94,190,227,88,34,47,110,71,152,171,88,203,54,101,185,62,140,38,115,12,228,59,235,57,234,221,135,179,37,56,160,180,85,171,238,195,37,20,1,211,128,36,29,93,226,164,210,42,86,170,39,222,224,143,123,196,161,23,178,156,68,206,7,136,121,103,77,70,147,216,156,114,184,16,90,72,203,215,64,213,179,57,33,64,9,206,112,255,242,36,98,167,178,19,94,160,8,160,54,129,6,1,198,4,143,137,186,11,86,90,218,147,200,17,121,25,242,96,27,68,198,3,49,166,206,141,13,81,52,111,30,240,213,101,232,56,40,132,115,236,185,227,134,79,13,200,28,76,86,36,17,16,189,249,128,122,114,156,113,198,155,143,186,125,111,224,
197,228,104,216,6,219,147,80,39,246,158,223,96,238,240,15,190,117,18,28,179,196,85,88,19,74,250,40,128,19,172,130,154,19,206,29,134,206,39,97,70,92,139,176,45,237,192,12,32,142,62,246,231,147,179,108,15,110,91,26,194,202,195,31,180,73,49,234,26,174,133,98,231,88,112,18,198,0,248,99,12,160,58,17,248,230,7,146,151,45,3,33,97,216,105,156,197,154,236,188,193,173,1,222,41,129,102,56,143,159,29,36,206,128,95,217,2,34,152,78,20,121,186,188,194,222,156,201,1,97,247,186,157,225,90,142,139,179,153,15,188,115,132,151,152,178,236,5,9,211,211,75,157,156,35,44,57,125,192,99,204,88,228,247,132,123,147,183,154,222,87,187,203,157,135,37,129,236,232,74,189,22,163,189,100,111,216,27,204,123,88,205,183,193,24,224,140,231,200,5,141,61,164,7,216,39,172,237,220,147,183,33,41,128,82,94,236,100,45,3,75,19,112,117,105,25,63,224,6,84,110,190,57,63,80,82,162,146,165,252,4,150,250,17,18,103,178,137,123,232,53,224,204,149,227,153,
51,251,233,251,142,77,171,38,238,15,191,144,215,159,97,253,191,228,21,150,46,209,156,198,72,241,210,159,79,220,177,218,98,217,101,40,74,59,21,188,207,159,14,138,178,187,60,133,61,123,156,195,163,196,33,245,197,75,94,180,237,179,122,51,210,244,153,93,206,79,255,114,126,132,246,35,218,199,113,115,138,98,63,142,227,225,116,161,78,89,251,234,188,207,171,201,90,145,141,24,170,73,216,198,243,80,109,138,98,180,245,105,208,61,157,51,88,246,236,230,236,241,251,112,184,41,124,51,162,13,59,98,35,239,14,245,177,14,251,235,243,116,117,119,223,247,240,30,241,192,210,235,116,242,192,173,1,211,94,57,171,85,181,155,204,168,19,71,56,158,80,4,166,155,45,125,110,83,39,246,236,43,108,40,58,68,5,210,0,87,190,3,90,194,233,73,107,9,21,75,161,201,76,59,251,133,9,171,52,199,4,176,199,33,16,233,196,185,25,170,94,140,137,12,207,61,87,204,211,100,102,76,211,156,172,37,80,217,160,142,238,229,250,104,27,106,140,178,199,182,169,187,218,15,197,149,
221,68,226,29,193,245,71,238,222,169,123,90,183,93,204,61,194,195,176,137,79,214,15,71,180,104,131,112,176,116,230,36,246,59,125,172,65,75,151,17,245,182,107,93,181,123,250,228,71,184,155,247,222,38,235,60,214,117,13,136,247,32,101,134,5,120,230,51,89,138,186,63,102,225,85,152,111,204,67,175,32,98,111,213,183,80,132,84,136,227,40,113,218,211,159,252,239,205,239,214,206,51,52,87,8,8,23,21,83,59,20,186,77,135,78,75,9,104,202,104,155,214,184,231,93,105,22,57,121,6,234,247,19,172,200,161,75,180,164,92,113,31,37,200,14,45,102,172,91,174,77,76,41,97,177,236,2,86,135,83,92,144,6,98,65,61,121,200,62,128,63,208,249,225,152,8,140,42,166,160,24,137,225,160,118,53,87,90,203,185,207,131,81,235,165,187,5,253,193,174,136,77,148,142,115,1,91,169,63,162,141,245,104,24,63,132,39,98,148,145,239,24,196,220,6,20,168,173,116,237,22,53,217,5,144,254,120,1,147,93,19,49,21,185,32,103,50,193,174,210,105,15,154,172,16,50,
130,70,180,65,31,24,242,31,227,25,34,49,144,177,144,184,188,121,45,134,211,203,113,152,233,211,112,119,218,153,48,61,221,232,194,134,123,65,10,19,89,29,77,235,108,150,48,103,38,39,0,121,14,156,200,172,58,85,148,0,113,129,217,105,151,100,211,224,155,3,107,61,29,50,112,204,77,8,252,155,22,189,244,97,215,221,132,239,124,161,164,197,252,247,171,73,129,194,193,201,184,19,107,194,106,144,139,249,109,154,88,253,94,50,29,54,158,221,124,59,112,239,85,213,174,85,36,186,51,31,5,187,202,151,36,133,25,135,185,141,9,69,152,75,242,140,178,250,125,167,85,246,10,123,207,62,124,236,20,247,56,174,62,98,95,246,13,32,55,0,14,131,135,95,40,188,34,76,103,173,214,56,136,195,162,196,1,38,55,136,153,190,192,64,154,9,115,154,171,230,229,194,225,32,100,96,57,126,98,94,21,197,206,123,107,217,162,139,79,243,162,65,116,199,86,182,101,147,24,82,154,227,157,219,115,215,45,210,107,74,9,124,33,10,215,250,141,114,79,249,203,210,113,67,59,135,
116,186,177,195,167,251,120,31,110,149,231,136,221,62,230,149,190,223,223,148,177,141,222,137,210,62,209,101,76,204,141,114,156,214,31,163,28,156,248,105,207,142,135,233,98,138,79,135,6,226,25,196,34,224,163,163,149,228,247,225,182,61,69,253,165,175,245,209,124,172,102,34,220,79,37,155,61,225,178,79,80,121,72,109,61,210,46,221,251,120,148,196,219,205,245,27,157,213,199,73,137,78,254,133,246,243,228,22,71,239,243,41,171,207,190,239,15,153,150,70,214,233,181,198,140,45,169,216,234,213,101,111,60,95,103,89,124,152,80,232,201,41,243,37,94,232,186,242,144,196,63,218,241,161,251,205,187,187,125,236,204,63,215,205,189,81,169,74,241,13,221,62,122,219,190,60,241,101,215,232,113,229,238,224,245,226,91,249,255,166,237,189,154,93,5,182,52,193,191,114,31,103,34,59,34,241,102,34,230,65,8,1,146,240,66,184,55,188,240,222,254,250,201,125,111,85,77,87,63,205,84,119,199,57,71,39,55,72,8,86,174,245,153,13,153,89,172,82,168,187,17,69,139,164,46,234,
217,161,167,50,230,233,30,77,232,242,123,36,56,117,206,233,42,230,80,85,218,212,143,162,202,234,55,253,125,101,198,100,118,170,68,62,216,181,170,83,88,167,188,255,45,202,37,128,247,12,35,150,97,67,94,42,89,5,124,8,54,141,235,249,54,60,151,214,132,110,119,249,78,169,230,34,33,126,140,121,75,139,168,91,125,130,29,236,215,96,171,125,14,88,179,93,249,85,176,17,93,20,60,74,165,143,234,236,120,141,208,62,215,121,78,123,64,98,45,215,24,6,178,103,95,0,228,205,67,173,239,112,157,208,135,0,23,224,44,67,240,110,58,95,182,151,126,239,30,157,124,194,244,150,186,217,212,167,47,254,57,127,30,197,245,61,72,51,122,216,103,97,61,134,123,133,187,107,243,84,5,36,95,199,8,180,239,202,24,49,185,92,138,197,149,105,242,147,28,20,190,62,120,118,138,195,73,74,112,238,140,23,192,229,111,245,86,32,71,244,119,29,102,248,160,222,190,10,163,212,12,194,78,249,18,141,144,134,95,137,30,194,118,28,212,231,43,11,93,212,187,249,200,184,22,19,
34,55,99,227,145,88,150,83,236,223,60,122,220,63,111,190,125,142,161,151,28,186,148,189,3,187,172,163,163,24,119,198,181,213,32,90,153,53,45,88,87,17,216,24,88,239,251,251,139,4,197,63,175,81,122,190,145,221,139,22,164,70,187,163,87,163,182,12,191,26,238,120,250,3,153,120,44,5,85,64,191,135,229,81,28,204,235,46,118,217,130,173,22,243,46,197,205,125,168,246,23,251,52,155,84,62,218,225,81,50,90,244,117,77,183,122,101,37,239,246,243,132,147,238,53,155,97,176,175,68,238,98,227,247,145,179,227,133,234,42,254,181,106,175,194,192,32,169,102,33,249,172,9,196,119,5,241,144,187,112,53,80,21,130,102,120,29,254,144,46,198,226,95,199,155,52,143,155,224,34,42,15,168,15,148,3,108,247,200,232,144,214,230,208,150,22,136,197,32,230,26,29,226,221,14,81,15,60,71,159,47,192,95,215,225,243,241,204,191,166,163,64,47,191,115,254,40,136,3,73,180,251,213,137,131,154,10,131,204,40,158,222,220,135,229,30,244,169,216,127,25,241,123,173,162,255,
184,204,43,240,158,75,146,157,238,217,25,46,54,85,106,205,159,141,133,221,65,247,45,174,103,111,247,80,128,223,71,231,49,229,67,194,28,154,127,32,95,177,136,177,25,200,253,197,79,219,184,60,1,169,103,97,39,192,146,32,101,59,72,220,102,13,24,93,42,117,23,117,167,249,233,183,238,145,14,43,53,142,235,123,254,204,197,67,74,250,184,118,245,198,231,104,233,48,118,115,72,121,163,215,42,90,179,19,106,251,34,212,105,31,236,241,113,38,77,57,55,155,107,20,186,186,121,56,79,252,93,243,1,247,204,156,230,52,160,9,57,202,147,164,115,197,215,90,137,109,164,20,201,244,237,123,99,252,80,222,251,111,82,16,108,162,207,243,17,215,167,64,170,3,215,103,23,246,141,240,171,194,115,228,221,10,194,174,243,46,248,132,44,40,234,11,127,21,89,99,63,145,197,249,16,217,99,69,230,9,14,115,62,230,252,197,15,156,18,19,137,229,230,152,79,214,221,200,162,115,192,210,122,226,45,62,132,32,159,117,21,2,155,36,176,214,28,47,121,218,135,199,131,229,253,52,
28,26,124,94,102,113,69,232,130,138,227,137,173,106,52,210,215,224,242,146,107,55,208,243,44,63,225,149,171,199,147,113,188,94,241,221,130,206,67,253,80,24,226,211,3,87,176,69,171,62,202,64,180,247,137,103,28,5,201,185,205,226,81,42,170,161,202,204,124,192,80,149,104,200,138,21,33,93,161,148,124,164,202,229,132,234,126,232,109,110,45,232,133,22,163,104,88,165,187,218,249,69,112,42,140,253,25,28,218,216,39,122,35,185,120,37,1,81,103,171,193,178,110,197,46,120,57,195,142,106,240,40,130,211,35,7,24,89,126,77,172,141,164,130,228,237,131,100,228,64,55,20,103,164,174,150,240,25,119,98,240,244,174,55,209,139,216,94,191,119,26,234,44,79,142,214,175,190,86,63,232,90,254,165,63,88,147,226,113,216,154,4,211,18,176,173,255,158,150,155,100,239,25,144,196,27,250,148,60,135,251,223,35,64,254,125,121,84,3,139,109,236,31,110,129,117,175,254,98,153,243,143,246,153,85,91,4,23,9,75,97,149,125,28,11,38,95,208,227,42,196,76,175,91,194,156,
1,108,2,35,146,244,99,113,212,22,187,236,237,230,96,82,211,29,176,132,193,135,182,78,199,167,244,219,4,39,42,189,247,200,209,218,27,165,81,9,58,16,57,138,207,156,192,12,184,148,132,6,175,207,112,211,101,213,36,201,239,162,0,34,225,12,213,187,136,95,221,65,239,192,90,71,137,109,24,127,88,165,208,196,172,217,51,172,81,240,170,29,138,205,245,140,99,89,27,87,139,216,223,167,162,204,155,31,250,167,251,121,229,176,245,163,139,205,192,133,233,95,234,34,115,10,78,102,127,148,134,153,221,172,49,83,220,102,71,129,157,74,34,120,204,21,63,229,54,199,94,97,53,70,243,103,81,166,233,229,255,12,89,40,176,64,214,67,199,143,199,177,240,136,241,54,196,228,201,84,35,123,184,194,223,82,154,73,199,164,159,151,207,93,158,60,195,57,125,135,13,2,116,228,9,184,54,63,252,109,86,13,86,123,140,19,12,194,203,68,70,101,251,152,174,195,43,108,24,12,38,37,176,37,244,204,223,196,148,36,65,12,57,35,48,0,44,128,188,98,129,121,195,5,70,54,
161,3,159,221,204,65,225,170,206,225,35,198,92,132,47,228,132,0,113,198,242,66,133,161,75,10,191,169,137,221,99,186,44,222,184,120,124,51,26,147,221,147,177,87,121,167,112,93,140,74,154,175,194,100,194,214,248,3,83,25,185,130,125,91,8,153,231,170,130,53,24,6,53,201,124,178,104,216,173,85,8,17,198,215,198,102,184,143,180,65,190,76,69,181,228,71,241,245,84,112,225,196,216,67,38,86,11,60,154,149,90,119,76,247,202,31,173,248,160,66,204,135,138,165,248,199,84,196,173,13,82,11,82,173,246,217,248,80,44,6,216,82,231,221,164,207,186,157,33,206,206,219,149,79,98,190,145,71,202,51,102,38,141,19,155,91,108,178,181,147,164,50,172,179,249,185,88,233,143,225,65,197,27,46,153,248,198,0,133,162,30,31,119,165,180,72,232,161,26,136,12,115,158,253,86,97,236,7,191,179,2,242,120,26,13,174,187,18,195,90,177,204,25,50,89,177,60,224,160,147,226,166,114,93,14,3,179,4,148,176,153,156,194,253,14,234,14,176,220,93,48,68,251,80,135,159,
221,59,77,115,199,43,110,94,247,140,218,216,148,172,31,247,236,224,126,233,131,159,214,57,7,232,242,197,94,65,49,218,157,81,157,13,44,251,153,171,121,145,156,76,109,10,43,213,62,249,48,179,252,58,70,164,221,102,11,44,166,65,41,157,47,95,126,10,83,12,218,175,114,17,28,206,103,170,239,250,125,56,88,72,227,202,136,196,134,103,46,202,35,106,33,174,112,71,13,71,37,36,193,203,190,255,121,152,207,103,52,45,72,16,194,244,221,255,239,127,61,147,182,100,211,208,55,255,92,185,182,235,187,127,25,188,255,24,223,137,60,222,191,182,160,61,243,63,150,233,252,187,119,131,54,38,83,246,55,161,106,49,69,105,249,247,123,194,101,138,186,127,205,156,250,55,90,123,217,179,236,159,99,74,219,127,27,192,141,254,206,127,203,64,34,147,216,100,69,148,156,255,200,215,238,159,86,241,191,253,219,253,160,191,3,69,205,223,13,161,255,247,152,125,223,252,219,202,143,205,249,143,127,14,3,95,150,191,17,131,127,119,154,230,229,31,73,52,255,199,124,172,255,62,106,144,
251,191,254,33,53,229,48,255,183,127,180,229,52,245,211,252,207,129,135,83,191,160,179,253,175,141,74,85,227,222,182,196,155,111,147,27,104,203,232,133,125,46,242,41,112,154,30,134,204,52,136,25,97,132,236,158,233,103,59,229,197,220,66,122,70,4,60,92,76,0,255,235,237,16,174,31,114,184,153,141,178,1,229,110,110,105,118,228,252,170,147,213,178,189,84,168,120,236,190,173,235,251,111,240,39,167,19,217,136,26,43,39,153,6,131,60,39,248,202,27,32,200,181,226,249,130,229,137,22,8,38,233,137,166,223,152,220,196,178,2,57,96,45,112,249,163,224,250,245,1,73,136,148,190,194,15,213,216,161,125,152,141,246,49,25,128,201,197,49,57,221,109,16,206,177,73,152,242,233,180,76,195,147,31,141,116,54,192,216,72,93,198,249,174,51,3,209,152,25,100,7,146,51,145,243,19,9,178,191,147,47,200,144,159,150,148,26,164,164,178,172,130,202,109,102,24,141,139,25,141,135,40,171,97,68,117,229,135,34,23,206,192,58,126,46,150,175,114,34,122,181,201,142,223,27,157,
189,168,111,107,196,132,0,211,183,147,97,64,122,85,50,91,231,196,103,38,103,243,247,9,142,45,114,201,88,21,63,43,192,245,178,229,187,141,60,119,108,220,22,231,111,215,54,108,3,25,13,3,60,152,152,74,145,106,133,215,138,183,27,151,122,156,159,43,67,9,205,212,200,29,159,35,96,218,97,33,255,95,111,235,151,118,105,248,90,136,212,137,224,107,255,43,34,165,159,202,171,239,22,148,192,57,202,190,191,52,255,215,88,216,254,127,250,233,141,159,26,21,218,33,61,92,129,37,161,163,124,247,253,22,228,178,211,241,24,214,4,105,166,232,118,202,196,177,147,78,209,220,157,249,177,101,251,194,41,84,183,226,139,246,166,240,236,88,181,210,135,254,155,156,227,78,207,88,190,10,168,109,130,17,1,238,212,178,76,113,160,240,44,235,17,251,22,153,115,28,223,22,216,224,10,193,111,5,76,152,19,29,103,186,166,136,220,253,177,98,101,114,95,121,133,208,55,84,91,83,42,196,215,223,188,172,62,123,153,12,14,146,61,198,245,224,138,241,91,140,128,5,178,58,242,124,
80,218,40,30,202,27,133,67,25,162,184,181,36,122,41,73,206,131,21,201,69,176,242,185,24,94,72,189,230,87,108,46,40,223,147,104,1,13,108,254,251,149,112,254,185,74,14,203,3,100,53,213,191,185,6,6,248,203,135,39,228,115,118,121,66,125,251,255,241,29,39,185,16,49,233,19,140,28,173,168,90,109,232,226,149,25,155,204,164,135,108,4,93,196,122,108,7,204,220,134,172,185,133,60,122,9,120,86,65,47,127,199,230,121,5,206,128,239,72,244,82,145,243,63,143,157,129,138,196,242,12,144,211,157,161,204,127,203,1,100,138,150,50,249,95,159,1,97,101,71,179,182,63,110,206,85,67,28,241,41,160,58,185,121,220,131,122,244,152,205,137,166,175,200,211,209,147,195,142,157,117,168,236,248,253,170,74,84,100,89,214,60,42,47,210,154,131,135,86,70,166,11,211,181,214,146,142,167,102,220,120,178,172,70,192,225,152,155,96,72,244,156,197,206,31,158,99,178,152,190,105,166,97,56,235,51,144,164,53,147,159,183,239,111,196,93,76,245,163,152,144,20,166,138,187,51,
71,209,8,161,89,222,94,198,49,32,173,193,129,231,173,102,229,118,220,248,130,219,131,111,172,159,183,95,141,197,95,85,250,221,174,222,139,238,226,98,158,194,250,52,32,184,123,15,145,241,55,104,80,69,244,17,33,139,223,133,94,211,84,94,219,24,177,180,136,53,123,57,72,243,30,125,162,101,191,201,228,138,249,43,155,38,222,65,235,251,20,127,34,74,19,78,185,9,245,111,155,209,251,111,22,46,67,57,108,160,149,223,132,210,220,36,86,5,55,236,46,86,202,138,79,38,184,145,10,30,126,17,8,36,154,201,167,140,202,206,35,58,111,74,76,114,183,113,112,159,191,177,19,51,143,25,210,26,138,8,97,126,206,76,102,200,128,129,62,75,23,32,91,78,246,22,196,30,32,241,197,214,58,198,224,243,198,159,126,2,142,74,104,33,55,251,239,57,85,195,22,201,162,32,78,114,211,127,236,252,141,66,147,200,239,96,200,198,155,194,144,177,249,202,243,122,15,132,64,1,57,13,79,159,164,31,45,242,168,211,123,107,65,250,189,248,145,178,194,132,164,132,150,213,219,223,
225,66,77,73,92,206,184,113,71,185,152,3,164,15,101,220,126,251,187,125,122,20,181,129,237,58,149,245,4,242,205,11,62,19,236,182,205,5,132,138,126,16,222,58,225,211,150,32,138,35,201,206,165,80,148,111,9,109,8,30,226,93,82,215,59,84,111,125,164,13,249,153,223,119,67,190,155,3,11,249,181,185,125,181,59,31,235,102,234,43,183,135,40,222,183,99,197,52,110,132,50,107,29,216,132,42,70,227,123,72,208,214,139,51,160,140,219,158,179,169,155,240,131,158,147,127,160,243,212,31,243,70,58,58,246,107,127,29,140,132,159,17,208,33,18,238,31,167,135,159,71,145,198,156,155,86,92,190,210,192,36,237,229,223,242,208,208,180,36,8,2,234,8,171,31,152,48,235,174,252,205,201,94,70,69,223,253,111,192,75,235,184,255,205,34,113,115,4,0,65,71,127,111,6,251,189,21,204,139,12,227,165,154,45,233,38,26,101,214,34,205,23,174,255,177,142,231,127,191,166,231,127,161,141,41,160,193,183,172,200,233,53,65,217,196,219,179,198,73,128,223,79,17,54,127,109,
28,144,251,87,132,46,106,243,46,184,118,79,132,210,95,155,129,249,83,187,195,172,79,10,200,245,250,190,93,147,94,84,216,196,247,127,15,21,183,5,146,201,101,65,222,17,24,46,28,18,1,27,83,145,126,148,160,31,167,11,245,37,240,32,201,67,40,18,95,23,51,89,134,52,163,142,243,217,31,159,207,10,47,245,57,133,11,249,224,75,89,152,187,180,0,67,75,1,184,69,146,19,1,118,72,141,50,24,249,161,55,193,248,219,218,45,162,69,120,22,49,53,237,44,225,31,176,143,247,252,90,8,248,63,23,147,255,104,135,232,79,32,229,214,109,161,192,157,249,207,92,249,47,137,246,191,178,247,139,67,156,159,127,171,209,10,164,9,63,118,217,125,168,79,240,148,102,228,248,215,117,25,99,154,83,238,51,113,108,219,160,255,39,246,0,167,22,53,0,63,217,35,70,68,112,76,64,71,84,10,141,45,237,254,19,179,124,248,43,103,227,255,233,247,152,105,8,39,85,30,224,57,85,255,137,237,80,27,194,33,133,175,36,200,33,157,115,46,168,15,200,64,213,86,17,225,
209,203,255,103,214,67,190,150,53,233,198,192,173,152,37,14,232,186,219,22,43,188,219,2,126,206,241,136,101,1,13,143,137,249,31,24,239,159,199,85,182,254,191,103,60,116,220,140,255,23,227,177,24,96,118,215,220,179,127,246,226,127,176,221,255,242,62,12,27,59,238,173,93,124,56,100,61,17,16,127,174,245,57,69,53,235,81,207,199,13,24,26,93,119,192,226,60,196,53,210,143,196,184,159,32,220,255,198,95,62,30,47,205,218,250,129,250,242,204,59,83,148,145,92,26,74,203,50,192,213,231,231,221,194,163,114,249,185,58,34,45,47,47,252,39,26,107,195,21,55,50,91,215,50,55,247,151,155,241,156,21,174,178,138,59,116,41,24,220,80,76,38,236,46,75,121,247,24,238,33,146,139,111,180,173,180,204,5,186,43,81,222,79,142,240,114,188,147,102,174,16,110,75,247,120,134,146,182,87,82,241,107,31,1,245,212,70,68,90,183,54,189,177,36,85,5,183,248,27,145,64,183,132,198,186,46,106,185,181,246,254,131,203,0,229,68,14,59,81,122,50,36,188,158,55,196,
120,215,7,204,28,21,182,226,97,131,25,82,244,77,216,127,196,2,185,83,151,63,119,30,203,39,147,124,137,130,146,112,243,148,115,154,246,212,88,124,95,34,120,52,55,225,71,79,122,244,39,15,69,114,248,162,243,165,107,131,167,129,193,214,107,60,153,212,181,167,132,175,55,29,31,82,111,86,37,136,19,125,79,64,42,252,122,236,125,172,100,20,244,103,206,214,203,107,109,44,89,126,16,11,111,116,67,87,62,232,143,54,45,190,48,16,181,121,84,233,155,50,212,225,54,200,60,55,21,47,209,39,217,163,9,182,166,125,154,238,180,230,151,182,175,110,34,175,228,14,137,61,95,79,78,190,61,122,31,70,112,21,0,249,252,244,154,99,196,138,89,108,195,174,141,79,119,184,96,160,176,243,106,222,228,158,102,42,29,121,139,84,11,253,187,128,178,125,128,125,52,139,15,214,234,214,77,39,1,112,173,192,36,226,27,242,39,152,21,186,242,207,228,199,60,95,162,100,19,206,162,84,87,98,9,132,68,146,110,82,154,157,91,112,88,15,92,139,34,94,138,246,151,245,192,158,
161,204,161,102,104,97,248,61,127,123,143,43,236,210,184,184,13,102,30,5,9,226,127,76,96,202,125,49,114,134,202,40,242,45,234,253,69,135,63,82,230,173,48,189,103,172,78,230,139,151,252,78,79,124,146,197,36,209,66,173,145,238,250,107,197,143,248,80,230,73,122,233,205,67,30,182,159,247,124,67,232,133,218,114,106,196,119,161,120,192,93,175,128,100,171,92,92,249,203,40,158,49,210,176,251,213,223,13,30,236,85,215,189,11,169,237,34,179,235,104,234,54,67,54,3,19,167,89,60,225,191,150,16,83,246,145,150,176,231,243,25,88,255,190,228,225,253,210,44,127,159,160,120,252,219,90,38,255,206,155,255,235,235,174,90,146,117,46,196,135,77,243,38,162,133,94,75,177,62,20,114,245,247,244,170,134,13,183,210,21,134,168,186,189,198,214,126,220,232,223,67,154,123,133,207,25,157,243,193,150,73,240,135,209,130,122,92,185,181,97,38,230,184,66,142,147,95,4,130,16,4,16,242,228,120,127,154,175,150,168,54,19,179,248,225,69,215,25,254,183,112,230,13,215,124,13,
122,50,108,71,108,2,121,54,237,96,193,67,30,152,55,184,146,227,247,133,243,111,152,13,179,29,21,57,143,49,119,51,219,126,249,134,69,7,33,182,171,233,90,10,10,140,178,236,12,220,86,158,127,187,72,71,49,157,178,224,169,9,13,76,40,141,86,119,138,128,229,13,118,246,175,144,110,4,123,196,228,43,5,201,193,50,7,244,50,162,219,253,1,201,155,89,78,121,24,214,156,62,78,200,231,248,228,235,103,32,19,172,114,50,158,82,5,169,103,52,135,234,25,223,48,21,144,58,169,18,190,200,15,32,156,40,25,51,153,27,111,45,132,18,237,199,84,232,98,94,237,213,108,94,26,119,103,88,30,90,142,0,189,188,141,192,61,93,180,135,8,229,92,134,19,230,220,171,235,145,99,49,15,177,111,100,106,42,188,120,44,27,247,184,216,210,250,219,177,221,64,210,47,130,175,10,252,110,48,16,67,120,60,62,244,2,30,112,115,157,153,133,159,205,102,133,46,90,99,105,122,232,119,136,191,185,87,139,128,125,192,144,5,0,11,153,124,180,45,189,225,119,240,134,6,221,
190,60,176,113,234,190,17,84,251,50,1,123,222,121,7,44,155,100,160,130,48,227,156,201,248,205,249,230,144,195,46,140,103,179,246,23,245,66,100,2,26,211,185,205,193,72,88,96,101,58,123,58,3,86,254,111,173,58,242,153,19,102,82,58,238,178,151,147,136,169,187,202,156,27,113,203,45,72,252,120,210,218,41,56,232,27,100,91,122,163,249,172,217,88,23,108,235,48,196,48,221,136,23,52,217,47,135,253,150,25,109,29,14,176,211,184,93,197,154,169,109,252,43,138,241,209,132,108,169,46,100,167,94,222,170,36,45,252,228,251,182,191,211,128,109,96,61,206,200,95,70,62,0,75,149,153,224,51,110,35,61,220,61,66,252,192,229,126,241,46,153,113,93,190,145,220,38,174,19,109,141,176,135,222,172,152,176,42,148,5,125,150,34,125,232,160,45,65,1,56,24,251,14,62,254,214,39,160,249,239,110,176,102,161,189,130,22,56,23,251,188,83,42,234,49,147,67,27,72,230,206,111,152,68,77,236,238,32,253,0,8,5,226,61,115,75,21,78,126,112,49,150,66,37,149,128,
152,116,140,252,152,115,139,207,205,68,122,155,41,9,56,190,189,114,49,149,48,149,109,56,90,125,160,237,57,76,253,178,235,16,247,114,14,161,144,50,9,9,55,152,105,200,187,205,206,83,223,0,246,190,89,176,243,6,84,58,124,66,248,161,249,103,106,135,241,64,102,185,128,98,103,241,58,251,45,76,156,55,222,49,55,224,34,159,127,202,22,1,181,148,139,63,140,221,183,116,133,234,70,189,138,144,127,160,50,186,144,160,66,58,33,75,69,168,65,204,249,119,236,248,227,197,250,158,239,202,110,229,177,251,207,225,97,60,246,143,52,43,166,44,155,255,245,75,177,255,50,90,108,75,146,206,136,165,239,184,125,29,202,69,105,88,4,29,67,38,63,130,170,223,244,182,236,152,23,223,86,151,75,42,165,52,5,67,73,218,130,200,9,183,193,217,217,174,164,13,85,122,152,244,173,120,63,54,39,188,255,26,123,152,108,129,136,161,79,131,142,73,17,59,166,147,83,100,44,181,99,102,173,92,135,8,96,195,68,185,193,197,155,24,17,112,227,121,58,251,91,224,218,155,144,48,
78,158,71,122,68,249,29,9,166,10,81,39,5,32,217,97,190,59,21,100,117,155,83,130,35,124,139,123,111,167,130,72,172,43,72,100,74,213,92,169,4,1,74,212,197,119,27,157,38,176,25,13,222,161,127,199,190,80,62,71,43,108,100,215,8,150,173,147,234,175,204,27,146,140,244,234,80,197,7,185,228,157,110,111,229,108,226,124,158,161,227,245,166,155,15,125,189,87,205,193,135,18,75,102,223,15,80,255,68,56,215,158,109,179,199,19,148,125,63,247,34,98,236,17,43,112,9,67,168,143,151,241,73,173,72,47,254,150,145,182,174,17,230,201,45,88,69,175,93,206,136,225,88,60,97,42,194,4,221,70,82,106,34,139,123,106,86,44,80,231,236,67,207,28,81,43,220,45,169,15,38,118,202,52,239,136,40,63,233,226,10,148,164,17,181,156,220,176,32,146,245,27,196,230,66,26,59,154,123,15,189,227,47,69,130,156,240,122,48,238,118,5,83,80,152,224,130,215,198,49,114,111,46,239,27,187,141,87,169,111,129,97,31,37,68,87,197,168,13,49,219,10,28,217,142,133,
175,51,186,29,55,113,33,193,23,193,5,168,243,139,166,160,78,57,154,43,192,102,26,79,147,117,0,190,246,37,241,198,31,238,121,21,42,84,181,104,128,19,3,94,68,41,225,155,123,26,121,94,194,13,65,246,161,71,119,42,27,204,80,221,103,112,16,212,107,216,34,149,222,160,162,138,116,139,250,36,32,103,108,206,64,96,195,23,100,155,37,222,250,115,17,62,42,142,221,43,224,66,98,242,153,165,168,180,252,252,154,54,171,223,104,130,94,56,187,196,20,31,230,143,39,236,117,62,126,67,103,86,113,1,129,14,85,152,189,35,31,220,35,79,156,214,82,185,100,208,91,232,226,201,121,61,248,89,253,178,153,131,201,178,187,241,153,79,255,206,128,217,189,226,87,237,51,1,161,117,223,101,40,87,88,5,63,202,252,97,111,208,52,183,131,117,232,3,78,34,113,166,179,242,101,93,203,190,229,60,119,136,188,63,254,198,156,230,70,3,177,252,51,15,82,171,217,153,235,82,186,174,237,201,106,153,184,47,224,182,115,20,168,142,93,145,101,19,157,13,219,58,58,25,215,52,
243,115,21,20,187,15,118,241,114,86,152,94,182,49,179,60,190,237,115,49,253,73,241,253,145,71,2,225,132,3,25,15,248,67,174,150,204,79,154,61,239,233,238,70,39,122,181,192,214,103,38,96,203,3,251,91,126,151,89,110,1,236,72,129,223,72,17,200,71,234,179,242,65,82,204,35,7,54,87,41,245,70,31,108,218,46,161,129,236,64,0,252,73,51,210,169,211,219,118,117,124,155,208,60,163,11,197,33,47,94,175,78,103,37,57,221,249,193,134,96,82,238,200,69,44,50,243,234,117,168,213,234,68,114,49,127,3,247,61,172,177,98,195,64,243,131,176,48,50,39,49,136,201,11,115,117,59,226,138,15,184,196,79,87,112,51,95,236,212,173,62,120,138,1,137,188,201,66,168,127,243,235,209,37,112,24,249,64,103,64,30,30,155,178,191,169,71,158,84,42,119,121,16,125,83,12,88,230,113,117,217,205,160,210,188,98,203,245,4,95,162,226,9,211,108,162,97,119,160,210,200,32,195,229,167,239,144,95,126,53,104,127,127,227,175,237,147,178,36,109,89,27,103,46,57,25,
176,63,130,227,169,119,148,227,237,19,222,183,148,132,113,1,200,99,115,99,199,235,40,115,158,163,95,0,182,48,150,82,127,157,86,157,221,1,93,77,173,207,103,108,51,34,58,80,243,208,124,4,239,28,188,221,75,5,15,84,175,156,191,174,238,69,242,20,116,63,236,48,118,33,3,70,104,130,246,251,70,90,37,242,154,138,193,176,116,193,91,2,228,183,13,76,224,163,116,121,115,249,232,36,89,133,92,102,154,70,129,221,41,60,219,242,56,253,97,229,78,66,11,166,118,194,128,203,76,131,50,128,96,49,159,91,222,202,187,162,171,193,18,72,106,79,226,251,23,3,43,92,178,174,202,205,26,97,249,81,6,17,241,178,224,21,17,43,33,84,222,225,92,106,176,210,205,236,38,39,97,128,208,81,252,121,248,109,251,117,211,254,243,63,81,166,109,16,248,125,183,34,180,191,77,113,185,76,209,116,254,207,129,125,26,255,98,100,171,69,100,52,200,13,52,200,217,96,162,243,96,218,217,121,29,185,151,226,47,94,165,56,238,158,78,235,194,32,236,200,219,131,55,97,188,6,
10,177,241,43,93,248,223,156,96,91,1,116,224,74,247,248,66,185,179,138,64,154,22,242,43,37,40,70,107,160,30,118,70,230,150,79,127,120,131,40,54,98,161,144,95,6,222,230,108,20,41,163,44,38,197,228,221,45,36,167,230,46,191,178,133,206,77,153,146,139,68,227,167,183,150,93,69,88,217,53,70,243,122,126,197,60,145,219,221,255,142,246,202,12,176,249,181,43,251,226,127,213,184,177,236,69,171,66,14,82,154,233,202,13,44,90,147,31,29,18,36,87,94,249,208,139,145,94,108,72,219,36,71,80,251,198,132,208,83,55,148,161,13,115,104,27,31,211,24,1,155,27,196,246,245,242,145,188,142,149,254,64,50,14,255,38,241,52,26,152,175,84,72,18,62,211,209,11,79,139,103,62,219,164,149,50,29,19,33,134,66,128,119,237,58,210,168,156,24,47,96,47,152,13,96,236,195,143,187,11,35,153,129,13,91,66,130,244,122,246,25,17,110,205,70,116,28,99,174,127,235,96,242,27,224,159,96,68,155,151,37,135,159,108,84,150,54,166,124,126,37,83,137,116,116,118,
4,71,78,30,41,126,129,115,89,20,30,132,28,204,93,211,204,71,235,32,217,123,167,250,82,183,18,238,232,181,209,68,177,228,93,97,228,188,75,167,166,179,243,69,49,120,226,106,55,162,34,51,58,60,125,214,71,118,202,233,106,158,53,87,146,254,239,218,57,111,185,142,193,104,223,127,46,205,241,55,229,244,63,242,178,249,187,153,247,127,252,115,161,197,45,154,202,126,157,255,209,102,203,175,79,231,255,243,127,184,171,199,255,251,146,199,255,250,208,127,105,189,227,16,123,121,146,239,202,91,238,155,165,190,183,55,174,184,143,69,241,190,49,189,97,220,111,101,189,151,229,173,122,246,183,130,42,158,85,41,203,147,17,92,77,237,12,200,52,142,200,229,102,7,129,60,246,234,124,112,73,81,228,18,27,214,112,116,155,126,176,112,153,199,227,68,70,220,202,227,64,113,236,119,222,182,13,207,95,108,30,58,208,132,23,242,174,42,233,173,48,6,147,159,241,44,187,245,204,231,247,160,120,137,210,5,70,183,129,105,103,162,149,85,223,188,194,252,2,83,122,92,249,79,251,204,
107,254,138,206,192,212,93,62,138,155,55,129,199,234,217,115,255,36,188,150,21,157,80,7,163,145,58,139,162,248,249,139,124,60,233,47,193,124,155,252,93,152,194,130,31,108,159,242,139,250,55,176,203,63,251,237,28,172,119,255,124,247,186,244,61,241,56,69,121,229,70,74,37,214,114,21,19,200,206,147,167,56,186,204,215,150,190,146,224,138,135,19,143,85,247,153,44,56,130,10,185,45,121,219,8,87,230,198,174,30,187,100,172,185,177,191,141,177,142,142,225,133,74,151,65,53,187,243,149,243,91,245,60,86,229,92,28,241,90,26,140,201,126,191,231,97,136,158,208,97,152,235,25,193,107,113,225,209,53,26,54,191,18,207,116,201,156,195,89,232,78,172,14,162,141,186,88,109,73,223,36,157,28,47,156,174,76,138,143,236,11,215,9,122,149,156,41,147,40,130,114,194,77,35,168,236,190,251,110,49,47,254,235,68,222,228,75,230,230,43,188,188,120,129,102,184,64,45,93,54,61,205,75,154,118,82,198,137,125,86,207,120,242,189,253,110,122,26,27,149,186,197,79,163,206,91,
239,215,109,216,229,193,6,236,13,79,19,88,254,21,3,194,38,155,245,158,61,90,124,69,126,207,154,37,140,136,154,219,178,177,164,106,79,122,3,7,240,185,50,191,117,239,204,138,251,106,201,52,197,162,28,228,27,88,108,189,203,218,52,204,172,247,161,225,59,218,238,121,124,170,209,121,1,130,107,136,189,146,191,133,87,247,45,178,84,62,107,52,24,77,164,190,63,229,149,74,52,172,215,170,170,81,199,53,225,82,51,237,240,91,208,98,151,98,36,124,247,83,55,86,72,101,140,73,178,210,14,230,55,134,228,192,207,171,226,165,70,77,156,251,89,245,115,180,181,204,128,56,241,185,206,79,174,58,37,101,21,150,236,246,85,123,125,182,231,18,188,181,55,44,86,41,119,124,111,110,174,236,75,102,193,177,74,177,237,19,223,244,231,219,199,204,16,211,104,243,234,217,133,199,204,203,89,245,180,234,164,45,167,148,20,236,206,37,42,43,122,115,229,90,20,215,196,63,54,46,244,177,45,64,74,16,225,128,71,16,111,131,87,182,23,57,155,213,99,64,2,239,122,195,215,52,
224,0,139,49,38,55,244,242,57,142,146,42,31,205,231,185,78,141,250,56,32,84,134,212,241,139,155,236,126,234,67,27,236,167,253,141,58,140,149,186,151,17,213,223,201,29,92,172,229,38,38,90,93,94,242,98,233,69,77,219,59,222,149,169,241,152,165,243,118,145,146,249,202,255,252,250,150,96,230,37,121,177,204,213,102,252,250,42,116,167,187,24,247,24,233,244,125,213,126,227,244,112,195,38,41,66,169,231,188,167,218,24,139,122,199,198,115,82,119,41,103,107,178,217,230,107,253,102,22,31,19,179,230,121,233,204,245,30,75,248,90,237,83,27,17,100,143,252,177,173,36,181,8,5,73,89,109,216,184,193,242,233,223,141,100,125,239,190,92,49,220,199,254,122,36,246,180,70,45,123,16,233,211,0,159,194,28,226,242,197,155,118,211,127,46,126,245,95,95,160,50,252,187,163,93,119,248,242,198,180,188,36,219,245,135,181,139,22,172,248,74,110,214,70,250,72,126,188,8,119,179,178,205,24,178,211,119,101,147,25,163,24,53,126,139,42,251,103,135,9,0,98,239,73,174,29,
71,201,104,235,72,211,48,84,53,179,92,74,164,167,118,183,85,97,151,197,168,63,127,84,234,203,206,128,141,186,74,131,38,24,166,145,118,125,137,119,67,233,39,53,141,71,158,46,92,31,196,103,241,80,143,38,196,103,109,114,41,59,126,215,192,211,47,62,90,71,104,43,44,168,8,181,189,144,9,234,107,223,13,86,255,29,77,18,147,198,168,249,247,36,104,163,45,120,93,29,112,237,21,61,194,81,169,103,147,20,46,158,123,46,243,72,235,165,127,118,252,218,125,9,228,132,94,163,214,125,45,57,24,248,73,170,114,118,86,20,230,36,60,86,46,137,233,168,63,177,75,211,243,49,98,236,239,192,163,24,227,229,193,9,229,15,62,122,166,18,53,166,218,44,110,27,3,62,226,210,115,253,50,233,184,50,101,31,245,153,86,201,147,178,207,175,145,38,183,109,242,195,112,157,156,168,202,96,123,173,217,137,141,148,194,126,23,250,179,201,172,196,240,44,55,81,138,236,254,186,235,253,35,174,4,108,105,125,188,198,56,158,200,120,139,176,119,168,47,9,171,142,244,112,244,244,
48,245,175,126,30,1,184,193,99,136,187,143,121,149,253,69,106,107,248,220,232,124,166,57,176,73,235,230,227,212,79,111,137,233,241,57,161,91,74,105,54,186,50,17,51,188,237,119,132,75,52,52,187,181,88,124,100,235,22,191,113,123,153,232,164,39,46,58,161,200,147,171,183,47,58,81,169,99,156,42,133,132,215,16,19,22,203,58,21,126,87,189,246,113,141,96,83,155,32,22,109,145,179,150,149,104,118,74,194,172,166,180,182,60,67,197,249,210,243,11,248,90,18,18,100,252,110,208,225,101,73,30,147,174,27,127,135,175,26,237,81,189,58,167,199,69,191,97,244,215,71,254,29,203,123,241,40,220,9,228,187,94,83,188,89,197,198,215,188,113,234,72,74,134,243,62,142,247,167,236,19,196,226,27,21,37,17,221,115,188,107,235,24,71,196,17,121,18,241,72,30,116,108,82,152,31,94,206,135,168,129,70,45,192,160,65,104,8,162,212,176,72,189,70,185,15,180,64,193,249,74,44,136,5,203,55,6,47,43,227,170,124,140,178,81,61,153,157,11,101,87,127,131,121,108,211,
165,153,6,255,240,231,32,1,19,121,231,194,143,239,55,47,124,37,163,97,45,52,197,213,73,187,71,142,5,40,146,155,131,215,131,205,146,35,175,120,180,115,82,197,177,99,118,136,248,32,145,62,174,207,23,11,51,229,60,19,141,42,143,191,216,88,124,237,138,89,109,13,49,70,57,143,0,247,216,39,98,82,150,45,84,196,177,54,14,138,233,155,213,84,92,45,113,14,220,235,184,78,117,91,255,109,103,219,178,224,161,123,246,252,142,123,159,218,124,255,249,132,191,149,97,132,216,180,168,244,91,253,45,127,154,173,40,16,83,92,99,96,156,230,213,27,35,202,121,141,191,245,243,109,71,253,115,104,188,181,107,174,138,115,185,110,181,141,148,90,181,49,133,51,147,143,117,248,46,179,154,137,6,165,135,220,83,28,57,110,191,162,126,243,125,60,17,145,200,117,111,220,246,198,245,144,27,174,8,83,176,19,111,178,39,197,6,232,75,249,57,51,223,37,241,12,116,47,212,37,14,250,147,155,193,1,195,63,24,239,251,126,143,127,103,92,40,62,189,81,37,100,227,48,179,86,
68,67,202,217,57,62,69,231,54,188,112,113,51,180,189,41,59,138,156,156,132,163,116,69,207,159,244,117,79,141,200,136,212,230,176,46,59,217,144,17,175,186,1,194,175,232,229,121,8,73,103,28,91,30,99,250,163,209,155,113,147,83,24,141,199,246,176,240,78,249,169,186,141,116,73,104,14,224,181,142,171,127,154,209,150,27,230,226,255,104,89,113,185,220,122,225,121,43,214,204,52,173,121,234,46,251,214,185,198,38,85,248,199,116,46,26,9,114,150,182,101,252,243,245,100,71,231,189,111,84,199,244,87,101,34,168,87,114,5,76,182,115,192,6,6,10,76,72,58,58,184,6,2,218,236,186,198,224,221,241,176,90,106,207,167,43,212,29,201,70,194,51,116,61,88,177,35,100,51,178,138,240,88,119,223,124,102,36,224,30,116,35,203,56,47,102,211,113,230,176,111,92,121,165,223,246,69,244,236,37,111,170,32,16,83,87,93,244,199,34,90,248,230,242,225,53,251,87,60,93,94,147,167,247,51,186,137,7,209,242,81,104,70,185,33,221,241,207,76,186,164,103,148,146,168,119,
82,222,74,180,79,127,79,84,77,32,217,34,252,242,60,107,184,182,144,165,143,185,12,66,16,49,168,143,115,131,190,243,72,173,220,171,38,219,118,3,177,51,16,31,14,151,155,42,103,30,88,237,6,106,71,221,126,164,185,237,43,173,201,201,181,177,129,79,211,15,38,32,187,90,31,182,247,162,189,112,138,248,196,87,25,195,27,92,241,101,126,29,220,13,99,183,38,17,241,88,232,18,149,221,213,137,26,47,206,100,231,0,254,18,104,29,200,22,51,2,221,240,240,23,198,254,214,199,112,241,230,39,48,130,120,121,63,239,227,71,0,13,209,47,124,234,250,145,134,119,119,117,224,228,64,233,174,82,41,142,91,139,17,234,67,204,107,142,23,82,94,42,121,129,227,229,138,58,184,79,145,6,9,74,15,88,21,20,237,189,177,119,207,119,52,136,116,131,214,246,167,243,248,9,150,247,172,110,210,103,182,160,246,84,239,58,130,35,28,55,186,175,26,28,193,214,243,121,215,221,77,120,126,160,195,131,118,195,40,188,176,225,243,42,60,19,91,253,175,74,181,142,217,231,235,237,
102,180,108,86,189,197,230,4,178,211,236,25,57,222,171,96,33,106,113,11,18,69,18,103,182,190,187,64,247,1,189,209,33,107,26,212,37,73,181,50,243,212,169,173,121,172,1,142,210,182,136,78,94,4,139,89,121,50,225,140,196,135,203,196,189,43,78,88,194,201,231,84,190,196,224,47,221,234,196,191,51,224,206,100,151,64,72,116,188,231,51,201,99,247,4,54,151,38,224,172,242,14,42,153,233,112,92,28,131,234,218,31,128,48,204,189,121,131,123,66,117,62,21,179,224,218,138,52,167,172,252,62,24,125,226,119,202,169,20,168,112,109,215,172,241,98,131,180,250,183,60,236,65,70,57,228,120,99,187,118,243,251,66,236,240,72,199,47,162,23,61,10,249,107,130,212,1,123,91,12,82,19,206,26,155,128,204,246,133,80,14,222,68,140,16,247,87,96,207,247,157,150,191,82,31,17,155,63,254,82,193,155,82,81,196,14,131,239,66,124,185,183,219,71,120,75,53,30,73,48,103,29,253,252,42,49,200,53,155,91,63,14,163,190,174,23,50,136,220,206,50,181,207,125,189,36,
245,220,82,93,187,191,169,135,181,84,165,148,226,69,146,140,90,228,42,243,179,182,62,133,86,191,35,40,178,242,197,29,249,123,217,223,110,89,39,167,106,34,222,52,229,145,29,11,203,79,176,123,195,192,115,244,232,132,147,186,134,32,5,65,165,50,12,59,252,120,56,153,3,199,127,92,110,99,136,122,235,21,115,137,150,62,91,191,229,38,82,244,61,219,194,220,191,209,139,69,24,175,11,101,234,116,233,63,192,136,76,38,36,178,153,154,3,19,126,190,196,13,104,55,156,16,136,92,248,78,193,67,157,115,31,85,244,170,17,21,3,219,165,79,178,71,81,84,52,47,2,2,76,15,81,137,89,254,206,40,57,180,116,228,55,121,145,247,33,127,39,84,136,188,58,253,117,152,209,151,222,16,159,198,225,174,178,234,240,137,225,124,109,223,30,198,241,223,179,232,61,15,206,235,46,49,140,164,33,36,181,40,81,24,133,248,115,171,24,93,94,229,72,121,155,79,58,17,220,247,39,150,201,145,140,158,242,74,198,227,15,163,111,63,70,252,209,90,173,250,83,253,53,185,245,32,
129,40,148,38,220,173,59,2,253,231,179,227,190,220,15,188,181,244,61,240,79,74,192,52,218,95,84,69,57,205,21,40,10,70,187,39,146,156,140,110,189,153,223,107,146,143,68,158,98,169,140,79,156,199,154,28,208,250,185,249,181,10,147,100,94,25,124,222,216,51,68,206,32,56,208,255,199,49,31,254,55,255,152,145,208,184,220,143,210,22,53,82,20,90,87,46,131,13,114,127,140,240,221,128,129,98,8,116,116,223,22,30,35,196,168,221,97,69,174,15,148,170,246,221,167,213,199,197,41,92,87,28,87,244,9,18,190,39,4,142,147,6,78,252,49,38,121,101,153,245,20,66,156,22,87,10,170,15,116,134,170,246,6,192,62,249,13,206,94,158,212,176,152,46,22,194,162,122,142,53,210,171,227,27,103,222,180,56,170,125,5,201,215,104,241,52,31,137,91,202,183,140,100,147,254,132,101,74,148,154,150,230,124,221,191,159,44,137,135,249,126,236,41,150,124,218,200,138,170,111,249,123,148,152,119,40,63,250,25,34,7,51,224,83,127,223,124,75,201,214,34,165,147,27,46,37,
183,189,219,182,126,253,34,62,16,94,77,107,62,77,45,153,127,240,101,216,240,181,38,213,47,251,109,114,198,117,13,29,20,13,60,232,9,47,239,1,218,99,111,251,70,183,36,39,194,106,58,117,250,141,0,178,101,235,152,35,65,156,22,155,157,62,224,74,62,77,202,1,10,247,12,254,78,83,138,63,124,82,48,130,68,129,191,103,145,125,202,39,185,111,92,164,254,77,84,182,76,47,22,34,233,43,117,169,250,148,115,196,133,200,226,229,238,166,106,248,242,249,183,203,241,55,149,30,158,129,241,66,161,38,135,226,214,157,6,217,103,5,226,252,138,162,50,22,51,204,207,10,42,18,255,100,79,136,242,184,124,111,140,178,41,16,65,178,140,156,68,153,58,95,249,3,37,78,147,234,26,219,18,135,185,165,7,175,185,207,163,63,246,164,88,29,205,115,132,91,239,180,244,248,138,195,187,195,212,90,114,139,9,174,54,174,161,148,213,166,99,72,43,176,62,236,16,86,154,188,178,69,209,118,117,177,61,102,159,127,252,52,91,3,229,115,179,27,245,217,241,28,13,236,67,47,
179,211,47,189,243,56,173,227,170,179,131,173,179,235,170,3,7,178,213,169,112,26,206,47,59,74,91,46,119,54,166,238,184,39,200,81,44,143,77,153,79,29,66,151,60,113,218,128,109,126,166,167,14,28,20,103,39,63,182,147,197,42,224,163,220,168,204,250,96,245,222,103,180,48,192,242,238,36,121,133,216,121,236,153,61,211,131,54,133,207,250,202,140,130,112,201,71,125,108,60,98,193,116,79,250,87,132,21,159,141,232,195,159,200,182,245,99,224,3,23,196,187,160,33,221,185,55,166,93,129,203,161,148,225,124,235,40,110,189,177,13,106,246,99,103,107,23,167,129,86,130,245,235,127,204,238,215,97,5,74,63,235,188,78,145,117,238,29,147,151,1,61,136,154,63,144,23,243,182,213,60,63,192,1,96,244,35,169,25,165,82,254,110,178,2,4,150,122,63,37,253,172,60,54,83,30,237,58,253,126,168,188,205,87,62,238,214,41,37,95,90,235,233,68,17,111,207,7,103,218,55,132,184,95,144,155,69,145,155,191,221,158,137,224,199,46,146,82,231,111,114,35,30,15,144,133,
87,220,207,212,129,107,52,206,121,73,129,60,171,65,145,220,139,86,161,172,211,230,19,242,61,183,242,119,184,161,20,68,102,9,176,91,61,17,21,167,36,85,222,228,103,140,240,184,248,103,0,47,241,100,57,147,82,160,34,73,95,107,119,168,48,55,2,176,87,20,87,210,166,69,8,2,157,87,68,164,177,30,213,88,64,222,215,43,211,50,126,184,45,116,174,241,236,34,42,202,71,54,12,59,120,211,212,4,24,108,79,30,84,98,220,242,245,149,42,59,50,43,111,164,15,103,123,6,206,117,42,45,148,168,58,247,41,89,78,249,100,15,170,13,82,82,194,253,120,9,254,197,96,114,184,70,149,111,153,147,197,250,247,111,54,31,253,25,254,168,4,24,227,196,168,252,241,228,94,221,245,16,205,235,113,62,208,230,170,110,118,101,182,227,215,211,72,237,80,146,158,108,237,215,38,245,136,78,182,123,106,97,107,157,195,190,215,138,107,135,90,102,148,66,65,61,94,138,214,239,134,175,114,186,133,215,207,202,136,242,202,203,242,100,231,119,80,146,77,161,172,166,149,203,253,10,
18,174,128,123,87,119,24,9,184,204,202,95,237,220,115,91,82,231,123,142,106,250,14,147,95,206,137,153,189,61,125,206,228,90,222,248,171,233,237,218,170,28,115,232,187,227,19,20,181,141,251,125,205,159,25,163,126,168,138,65,233,248,232,78,94,98,180,26,246,185,103,15,94,37,183,6,195,188,142,137,200,248,209,81,73,146,47,110,107,136,29,249,187,18,4,69,140,191,163,134,61,104,250,118,19,105,78,248,197,231,18,200,193,18,105,63,30,51,69,43,206,195,90,17,58,146,146,170,119,240,251,91,131,114,63,80,32,57,239,151,131,113,47,236,83,165,213,210,127,92,86,80,223,50,57,216,169,204,126,137,36,217,59,92,56,19,79,111,66,242,199,74,181,61,228,207,251,227,28,110,102,217,250,134,98,84,243,175,161,47,148,91,73,157,12,96,28,191,232,64,119,35,167,242,144,144,229,23,110,227,231,116,123,124,14,167,31,12,7,203,185,202,104,158,25,97,85,246,4,129,81,70,71,55,144,146,215,22,54,195,139,172,145,229,234,106,177,232,130,232,96,55,127,185,99,210,
52,45,130,7,212,204,215,182,147,10,255,121,193,19,255,171,105,25,150,127,53,173,114,47,96,101,159,156,200,81,77,111,32,137,14,88,79,5,252,108,29,247,232,163,157,174,219,62,19,114,254,2,244,131,103,147,220,130,247,95,6,20,49,51,232,8,251,233,68,6,137,31,234,41,153,118,196,137,122,235,92,181,106,111,164,27,27,126,51,2,177,152,186,93,17,45,33,140,63,244,118,155,153,128,246,50,42,43,25,70,14,203,183,156,246,94,74,6,233,167,203,185,148,226,6,84,43,51,202,33,72,42,57,161,201,20,146,111,160,163,14,227,123,252,174,18,175,115,129,166,25,65,252,192,237,121,62,150,104,182,55,167,254,4,191,167,210,171,207,217,96,158,28,1,94,225,123,142,237,65,220,188,167,150,213,164,117,231,105,145,78,31,184,51,230,18,35,68,186,102,183,22,101,156,239,195,115,53,141,122,93,146,216,255,36,171,163,50,108,101,160,200,24,57,60,140,182,25,194,18,229,98,172,141,140,128,7,72,184,209,181,138,15,34,76,182,119,254,129,148,115,138,32,133,230,138,
204,211,118,242,103,8,15,30,220,54,186,227,252,164,132,114,94,43,53,9,131,117,242,221,25,133,52,55,222,84,59,183,124,188,132,157,100,87,4,225,183,117,174,236,247,36,218,211,140,198,169,187,129,25,78,175,108,228,44,107,38,35,239,4,72,196,191,145,143,229,221,148,189,53,110,110,235,107,249,230,219,139,221,145,195,58,90,165,19,74,113,123,172,204,51,172,184,140,214,225,115,107,186,142,196,28,10,116,240,200,44,216,194,171,171,145,6,226,26,254,73,226,252,141,100,248,24,30,122,216,83,87,182,90,230,128,64,192,248,41,205,245,8,181,235,214,200,54,116,238,69,110,207,90,188,70,146,35,36,170,189,204,177,166,201,117,240,26,132,224,25,102,148,68,235,24,108,248,185,145,139,253,125,136,203,168,133,163,75,175,72,39,157,54,126,109,74,93,61,229,231,248,211,168,249,104,219,165,120,47,249,109,223,158,78,246,20,38,234,46,175,197,55,161,132,99,13,69,62,56,213,243,250,17,195,239,13,155,174,86,48,31,40,40,94,239,188,70,224,8,15,117,43,98,196,45,
25,212,201,215,118,117,244,143,22,160,143,78,189,68,215,212,153,199,95,76,193,64,243,5,255,206,187,90,243,152,23,213,30,38,80,31,94,103,49,222,243,227,101,135,94,144,233,106,47,158,235,200,55,58,238,181,31,245,132,136,246,125,41,133,111,138,141,250,79,8,37,178,135,36,213,4,217,47,104,123,233,121,12,16,75,105,250,190,199,53,223,154,108,8,240,234,38,111,22,56,54,216,208,42,248,108,19,248,116,164,202,171,192,7,225,201,146,107,163,135,3,200,109,158,215,125,100,34,138,143,173,89,237,181,63,103,7,99,106,70,219,176,233,76,235,108,123,175,134,209,239,135,165,112,99,216,18,214,166,225,213,199,105,231,112,122,156,251,219,158,230,160,54,154,102,183,5,24,159,54,22,7,188,128,120,195,242,134,82,169,63,219,122,208,150,239,115,247,59,204,183,157,186,165,221,252,146,38,74,148,207,156,186,170,248,20,97,248,23,143,252,64,148,7,100,248,48,159,27,94,35,209,61,178,148,204,253,242,29,162,124,204,33,42,126,84,163,244,64,255,189,231,142,62,0,28,
211,172,21,59,4,8,76,225,35,208,22,152,87,83,225,48,135,64,36,194,251,254,41,178,223,153,210,70,162,95,185,168,197,98,213,220,141,26,121,170,99,3,41,3,47,220,198,174,164,96,91,36,6,101,37,199,154,45,189,255,205,135,117,133,183,245,147,229,66,232,180,95,206,203,21,202,123,159,227,22,204,36,9,57,91,164,85,70,128,34,130,246,241,170,64,7,110,138,128,20,97,79,150,117,245,55,207,91,224,104,67,48,239,239,219,65,4,165,202,80,153,224,7,207,253,165,223,196,157,36,231,58,77,31,21,85,103,247,126,92,120,165,25,245,202,69,2,253,24,141,202,15,11,98,187,149,108,75,181,118,51,220,60,42,32,245,58,47,157,7,95,135,239,184,66,209,211,254,158,236,127,27,193,10,53,221,52,197,213,224,171,103,107,106,65,194,178,223,29,223,205,147,4,2,228,73,106,59,77,58,163,37,20,194,86,65,60,124,71,180,77,128,47,95,192,23,226,147,73,11,114,34,4,121,33,57,102,217,41,237,13,130,114,249,144,250,169,150,137,40,221,249,209,191,77,172,
21,251,102,66,34,74,248,133,160,52,219,145,101,33,6,185,20,241,210,111,214,4,157,44,189,165,126,89,31,23,98,228,144,169,205,93,87,191,138,56,10,201,9,146,219,109,90,223,41,85,154,126,215,51,251,223,124,95,11,220,237,234,2,198,12,33,123,67,105,191,98,165,159,228,240,149,94,250,117,8,69,143,56,70,59,233,195,174,18,37,120,83,163,193,62,99,73,77,24,75,90,207,59,217,88,173,4,139,177,5,162,185,126,85,99,88,243,111,189,113,160,102,71,249,125,251,125,180,187,99,23,158,180,40,47,37,29,202,217,121,62,110,215,75,121,86,26,85,191,53,63,230,222,24,14,233,59,29,100,111,100,231,57,144,239,154,145,131,32,163,94,127,152,23,32,204,179,54,86,60,29,240,129,58,242,206,73,254,87,171,19,162,142,47,80,144,14,188,68,84,171,58,212,182,174,171,73,238,0,31,20,195,134,100,128,247,157,215,188,63,232,134,2,191,15,130,168,81,205,205,30,23,108,16,85,7,164,230,169,127,0,14,105,198,187,182,8,233,81,26,72,78,209,211,52,103,
240,236,104,242,43,130,166,48,87,255,190,8,145,52,127,10,171,242,186,163,81,216,217,168,191,244,122,128,183,46,122,90,198,240,61,112,125,160,14,10,203,138,72,222,64,197,252,106,1,74,246,202,196,76,108,231,253,77,34,12,47,2,176,236,30,49,78,40,193,245,108,158,242,192,220,44,231,145,214,233,167,122,59,47,81,206,19,86,118,197,239,39,121,240,93,214,177,125,102,235,87,134,159,190,111,244,94,188,19,93,56,104,82,96,157,34,249,193,119,254,158,185,165,45,11,231,243,152,62,136,69,215,160,200,192,183,172,20,196,26,233,201,110,199,71,189,88,148,88,225,197,210,225,41,30,8,41,126,2,210,49,28,68,93,250,218,60,19,126,255,72,34,63,224,25,99,16,60,16,63,56,27,45,161,58,245,161,148,237,176,57,248,6,25,228,134,206,142,78,145,74,182,78,148,111,238,100,31,174,224,182,226,101,11,251,108,125,171,254,182,141,254,66,249,239,226,254,61,26,105,173,198,131,17,206,10,65,148,28,176,53,73,59,28,129,242,250,101,214,230,11,242,195,128,179,15,
24,127,200,34,103,209,54,18,122,73,148,211,71,3,187,33,253,231,77,222,119,26,100,242,209,176,46,189,83,191,110,201,115,235,43,201,120,80,37,88,240,171,235,64,179,228,23,103,156,182,146,201,18,165,236,121,205,123,254,92,218,183,190,42,29,248,54,223,72,80,232,76,189,240,221,215,209,169,248,156,226,202,0,91,32,127,30,247,172,181,213,186,212,34,10,209,174,39,63,21,26,200,180,185,173,118,26,92,21,97,206,93,149,28,32,3,221,247,126,77,215,188,250,90,214,221,133,204,74,77,138,194,184,33,103,39,92,68,49,234,0,219,101,52,100,166,138,197,174,191,199,213,254,114,209,166,95,80,2,34,208,225,43,251,192,107,66,216,232,176,211,197,115,185,229,79,19,201,62,188,113,79,120,36,121,186,124,19,126,180,68,69,194,200,52,103,80,5,50,239,123,102,206,70,142,242,204,68,76,110,92,72,230,92,151,183,80,238,200,148,1,140,202,109,2,103,24,200,251,126,191,28,255,123,103,38,4,51,7,119,195,76,114,130,100,216,102,230,190,240,43,186,129,215,157,57,
48,17,71,24,17,9,7,206,211,250,188,251,78,71,117,114,247,182,190,238,244,61,144,41,243,49,168,225,179,204,205,71,41,254,216,234,129,23,87,216,60,96,217,106,26,211,38,5,254,105,220,178,101,188,182,203,67,40,102,186,26,133,218,211,166,13,93,190,85,55,91,17,133,41,17,197,71,216,217,141,83,255,238,124,36,76,101,199,143,207,70,194,161,117,134,215,126,43,141,46,249,226,181,38,241,36,33,158,213,169,194,120,92,252,39,85,113,155,15,196,141,229,95,176,141,145,184,115,161,9,213,205,54,41,17,113,134,2,95,205,20,53,145,5,177,248,204,233,139,235,224,25,113,121,167,126,240,223,197,100,136,164,69,210,249,41,25,162,83,81,76,14,9,25,183,115,225,97,88,198,102,166,220,72,99,190,212,239,73,55,96,203,79,27,62,128,225,188,217,227,237,49,170,78,14,108,63,159,64,204,189,172,226,94,164,162,229,185,232,187,63,132,7,142,151,147,223,151,204,2,254,87,241,28,143,113,28,183,225,36,161,221,153,252,114,167,221,252,131,9,59,60,40,30,137,129,
37,174,85,255,184,161,11,116,3,145,210,28,233,249,185,45,242,249,187,153,213,163,248,65,210,57,47,66,77,219,8,47,178,158,49,180,241,70,17,84,85,62,162,48,58,125,157,174,242,172,157,107,204,38,40,246,245,52,249,239,253,120,125,218,83,40,189,91,142,41,66,102,206,183,175,131,101,198,193,91,63,72,225,238,206,82,221,243,14,18,251,116,124,171,129,174,47,2,134,53,88,246,188,23,234,107,67,56,180,210,111,168,228,93,126,165,32,207,185,0,190,222,159,242,139,31,9,29,136,7,197,44,167,203,128,181,219,148,247,251,250,78,213,143,118,117,156,161,122,145,6,180,175,113,32,115,81,224,149,241,21,157,124,42,140,234,181,178,210,129,226,106,193,233,103,103,37,169,239,185,144,193,254,252,155,148,47,152,78,77,119,160,122,139,85,64,133,227,110,2,231,161,103,170,186,216,234,27,180,201,46,76,47,32,207,15,38,93,95,172,119,41,83,127,61,103,176,30,162,106,18,145,238,85,141,254,185,248,229,247,86,91,101,235,124,149,184,103,116,161,28,7,182,252,221,132,
108,104,5,67,34,94,107,69,204,67,222,220,150,197,219,44,63,204,143,25,222,221,40,128,92,44,18,72,147,152,196,37,234,214,171,222,179,56,0,175,231,137,245,103,231,157,159,144,85,35,54,100,99,209,16,226,111,122,153,213,91,54,60,161,248,253,242,251,204,143,63,142,45,132,72,204,224,67,147,205,169,142,247,8,223,108,126,41,236,197,48,178,233,36,187,141,195,20,133,17,92,207,238,184,5,117,4,206,12,110,114,175,251,66,193,53,241,118,9,123,122,183,55,246,231,192,110,226,229,201,148,230,133,12,9,118,75,22,146,100,239,75,248,109,210,135,36,184,110,248,198,83,207,33,201,97,8,251,70,216,65,143,72,42,249,122,95,131,52,171,225,229,28,24,248,188,188,188,179,222,9,6,252,222,20,169,4,171,210,109,119,126,25,22,149,151,59,219,136,103,28,225,185,113,6,198,139,112,222,37,173,204,130,243,56,131,39,123,82,225,78,183,226,115,168,69,199,250,220,131,196,15,154,138,254,179,27,89,153,188,85,250,83,49,230,139,150,36,130,174,110,77,18,3,141,162,
81,45,85,165,153,153,20,249,45,208,193,18,109,85,25,19,90,90,239,252,77,172,8,2,70,179,154,196,229,241,235,102,138,194,242,171,46,185,170,238,149,246,226,179,35,236,47,51,193,28,225,45,102,218,153,199,143,241,189,183,250,191,221,55,175,9,236,205,81,88,112,57,236,64,88,204,83,6,209,75,41,77,202,185,249,54,114,103,14,50,162,250,155,23,48,134,8,41,133,223,205,24,68,183,87,235,108,105,214,127,39,115,35,118,223,71,240,82,122,42,149,166,254,143,210,190,174,98,45,94,45,82,217,67,248,27,229,3,191,219,63,127,31,246,165,181,150,142,206,230,189,12,178,237,250,132,226,120,227,187,243,95,253,58,222,157,112,25,195,245,138,134,15,219,42,171,0,180,166,34,40,43,13,146,45,224,47,165,219,222,247,40,205,110,26,141,108,216,3,26,44,205,168,212,37,51,56,193,247,190,226,81,242,174,146,158,2,39,49,228,171,191,25,158,182,98,253,237,5,69,27,248,114,243,34,22,180,114,58,173,202,243,125,212,207,242,105,154,79,145,234,79,190,224,212,101,
123,230,29,79,97,5,72,143,65,84,59,68,174,166,150,7,165,168,84,94,60,179,208,108,197,206,134,8,55,31,83,51,62,175,69,191,48,25,215,76,232,232,247,26,149,175,151,215,132,108,126,35,193,148,233,97,177,107,3,62,215,248,86,190,152,57,212,22,61,126,150,4,222,124,201,211,151,24,135,231,162,179,242,118,182,238,200,79,242,219,45,131,223,69,50,214,163,158,116,51,225,53,233,231,211,103,11,106,43,160,121,57,137,126,226,55,138,86,196,217,188,27,134,109,165,191,31,49,41,80,119,46,78,162,152,183,132,25,121,107,245,237,179,184,21,239,98,18,34,150,46,33,52,0,20,138,76,97,163,243,119,86,120,188,48,212,147,209,141,110,94,214,253,122,247,130,70,164,223,129,224,3,159,54,73,174,94,70,44,156,89,252,83,43,124,43,141,196,87,210,84,125,85,102,43,37,158,242,70,150,216,143,11,78,146,217,164,81,227,151,205,161,204,37,114,216,106,230,158,25,125,8,30,99,49,81,206,49,48,190,29,220,177,43,255,15,115,111,214,244,46,239,109,7,126,149,
183,114,213,41,37,45,230,161,239,108,99,131,109,38,99,192,192,213,97,18,54,102,30,196,240,233,91,254,189,255,156,156,156,156,78,39,39,213,85,93,79,241,96,99,16,104,107,107,237,181,4,104,187,143,195,119,190,93,132,77,44,102,77,156,88,34,125,172,113,153,108,152,100,154,155,79,143,36,123,118,60,113,27,19,58,217,199,193,249,27,136,199,147,160,149,140,177,99,87,84,106,34,11,110,105,112,70,31,45,123,125,232,249,248,153,110,66,88,222,244,52,200,107,79,189,158,68,87,123,53,145,60,22,89,146,198,161,125,64,194,116,156,212,175,109,62,140,175,148,210,71,78,225,246,33,186,25,176,50,131,202,158,186,203,20,69,224,45,219,32,12,115,177,125,86,243,20,155,230,224,149,125,122,249,2,77,75,211,13,227,229,163,40,24,156,70,51,153,137,84,224,4,248,72,88,238,56,227,96,104,141,165,125,143,239,235,27,148,254,105,35,38,38,150,81,210,155,209,200,118,135,74,26,58,126,93,26,252,204,50,98,205,87,201,76,37,23,237,77,9,244,16,33,165,120,248,
65,182,18,90,232,108,76,78,236,204,109,90,71,11,182,105,247,107,37,65,232,76,136,74,122,179,209,145,244,126,126,2,186,215,130,17,218,15,46,133,124,172,85,39,168,45,185,254,221,245,59,228,23,252,121,25,252,67,25,52,96,109,58,128,52,26,147,179,1,252,171,188,105,154,75,122,182,57,94,148,6,210,239,20,191,74,172,164,218,213,170,119,128,14,34,23,116,177,126,225,111,254,0,248,80,110,231,156,182,99,187,233,27,89,77,165,76,176,141,56,141,96,38,36,246,173,29,235,5,97,174,92,40,109,181,108,206,88,31,239,3,75,63,152,77,56,113,225,6,231,167,49,206,100,239,179,99,149,31,244,20,242,249,153,237,46,27,193,159,162,191,221,136,83,13,82,199,255,114,218,214,35,37,245,128,74,92,231,141,226,83,127,52,21,185,103,210,195,94,66,100,21,57,243,152,46,102,252,225,112,101,158,111,152,155,95,231,105,53,110,252,249,224,243,231,171,253,185,122,55,229,138,86,233,26,109,217,18,80,227,102,223,45,160,24,90,178,167,156,197,251,9,210,151,97,56,
178,177,143,7,74,17,228,190,137,170,39,251,170,158,232,203,134,80,189,211,178,208,95,98,92,10,81,254,145,211,135,47,36,213,166,14,239,241,117,157,31,111,48,107,130,109,191,167,231,53,209,52,22,43,82,246,101,12,149,93,139,90,32,114,240,238,201,72,126,131,0,217,175,153,99,180,24,221,47,167,79,149,207,111,134,25,173,133,126,12,123,186,177,111,233,82,4,150,202,92,223,200,18,184,224,152,249,139,27,188,153,68,17,243,115,149,106,244,215,242,23,118,104,31,58,71,8,98,200,137,46,233,146,28,27,25,218,180,107,183,248,54,56,42,119,185,37,217,97,234,31,213,199,123,51,142,53,109,198,57,169,152,237,200,118,239,227,185,172,63,39,31,189,121,173,225,81,154,195,216,24,207,117,190,49,36,250,215,107,25,75,35,24,127,137,247,130,231,91,15,96,60,153,119,230,32,165,139,107,204,202,216,29,1,174,175,96,189,119,151,179,129,57,43,66,232,198,31,229,188,188,157,127,105,13,18,167,17,113,66,21,186,182,54,5,208,44,96,96,24,73,167,130,17,132,157,
185,121,137,157,81,131,126,103,165,251,196,8,153,240,238,13,98,228,41,131,11,184,245,135,52,175,122,78,97,248,120,58,141,246,193,181,118,15,29,176,178,81,245,109,212,127,239,238,72,183,22,17,3,84,248,117,225,71,133,54,74,216,157,32,119,29,170,75,206,43,19,252,88,211,130,115,223,212,76,135,121,43,213,73,4,225,134,213,88,149,22,141,141,91,121,99,109,171,176,57,94,183,12,131,209,11,181,177,194,91,217,40,87,147,23,63,159,144,7,1,177,251,106,104,102,230,53,7,76,184,160,27,242,105,162,196,175,55,206,79,47,202,145,14,135,128,125,222,50,42,160,206,202,53,141,62,142,62,114,116,71,215,236,178,195,254,134,215,111,71,130,247,244,188,96,48,169,117,149,4,179,213,230,89,248,252,92,202,253,230,140,31,181,230,207,55,155,171,83,136,5,228,138,170,126,181,147,7,116,190,131,136,197,113,8,119,22,189,24,70,183,27,164,5,247,108,244,45,202,226,247,137,126,134,232,185,251,83,71,12,70,111,167,90,118,197,168,125,188,102,43,167,188,153,46,219,
245,49,160,202,25,175,130,254,174,166,247,229,178,232,87,112,160,90,39,37,116,208,124,155,162,97,150,215,73,110,137,19,43,179,127,59,114,5,36,250,48,191,1,139,5,167,173,82,177,165,48,117,122,147,31,9,125,217,197,193,147,22,39,94,183,183,110,223,10,91,165,172,200,191,37,130,17,177,69,44,44,230,234,31,29,207,214,164,224,57,166,236,179,188,246,7,196,22,88,229,47,199,144,155,134,195,85,190,6,16,179,25,245,12,94,135,76,85,74,175,52,205,211,65,164,185,167,211,174,111,119,178,139,93,56,36,107,196,31,94,136,121,36,47,26,51,223,128,169,148,87,165,51,131,251,156,74,86,163,14,210,237,29,233,209,121,187,139,58,245,176,36,176,46,168,79,150,124,91,75,151,144,104,92,176,145,201,250,141,104,157,197,26,150,150,53,123,51,184,226,105,233,151,225,178,137,234,169,162,246,55,213,201,170,156,246,33,155,227,184,177,188,132,99,51,238,160,248,118,73,95,167,87,62,69,124,154,41,154,97,113,212,58,159,175,91,121,248,177,32,73,182,165,246,186,125,
118,97,41,13,176,22,174,182,196,201,77,254,164,96,45,81,155,76,30,246,246,54,240,148,153,21,26,225,173,49,42,23,241,204,129,161,1,247,229,123,176,186,207,163,10,60,237,107,116,208,193,99,113,27,222,129,118,113,170,163,119,187,242,236,247,136,172,243,99,203,96,254,30,96,68,63,212,130,72,219,204,113,184,80,224,175,11,21,218,143,144,254,106,198,224,55,198,152,17,203,191,136,174,162,245,141,181,18,241,191,60,235,88,130,101,72,188,119,66,245,49,149,100,16,157,96,203,5,219,71,129,233,87,58,159,238,180,233,61,158,246,130,150,156,145,55,133,209,8,120,86,172,60,31,196,23,177,145,51,8,250,117,22,158,182,104,125,71,129,63,153,138,239,221,123,214,244,189,46,120,138,222,76,13,149,106,74,111,147,126,0,186,199,157,161,128,207,214,31,47,79,255,83,240,73,117,84,13,0,140,155,40,139,179,45,214,212,146,189,36,229,155,115,165,33,57,37,173,36,113,204,196,198,198,122,244,220,93,132,111,211,235,129,23,14,49,90,2,254,50,152,236,22,171,233,87,
204,212,121,83,67,185,146,152,56,47,92,214,140,23,236,56,131,246,100,239,10,106,15,187,120,50,198,241,26,39,84,114,183,139,116,165,62,199,246,251,189,245,239,239,221,179,114,244,173,183,238,34,13,110,98,81,83,90,165,91,197,7,35,206,227,122,44,25,169,5,35,65,255,235,139,190,213,242,157,209,206,6,218,152,52,90,213,236,214,182,82,35,5,223,39,56,54,55,113,167,57,236,48,136,14,33,22,13,190,201,192,65,84,13,7,47,178,124,241,175,239,250,217,123,87,186,122,221,140,179,69,19,234,245,250,156,46,181,255,114,227,254,121,79,74,237,206,175,235,212,249,194,68,132,41,176,83,26,94,35,190,24,173,64,151,247,28,113,79,161,246,213,73,214,76,51,177,99,69,132,186,237,125,229,68,121,69,197,153,110,16,85,143,88,226,152,89,205,159,215,237,205,102,218,19,191,55,141,3,193,146,174,31,63,110,67,208,52,184,189,31,236,20,128,242,209,182,224,228,118,231,19,116,140,243,119,50,46,33,87,157,186,166,55,248,76,232,179,66,76,19,237,162,174,77,219,
229,79,1,111,193,76,39,232,201,216,195,29,79,167,203,244,140,240,115,106,152,239,1,245,71,116,11,191,35,67,167,223,84,95,207,240,27,185,40,248,202,40,146,232,57,146,162,207,76,36,169,38,153,120,159,54,19,248,80,163,47,221,171,192,253,215,193,157,63,156,137,158,251,4,113,126,15,78,189,205,173,254,130,104,181,152,5,126,213,52,32,241,6,97,169,180,66,16,80,244,112,246,144,146,39,151,183,102,228,170,98,192,51,231,211,212,205,162,203,140,91,209,85,119,55,190,103,87,102,178,253,190,82,98,158,45,121,120,127,162,79,173,142,65,100,120,140,225,245,233,117,124,72,214,56,156,205,27,106,45,249,80,164,142,183,184,204,194,105,191,186,10,223,68,194,156,209,220,189,53,138,26,82,97,30,95,98,209,193,79,102,26,238,246,63,48,246,217,85,35,12,157,73,177,249,210,254,86,161,56,212,39,227,220,55,222,227,218,237,55,165,123,234,168,49,180,249,206,114,47,169,64,44,222,38,254,6,79,68,195,144,142,32,59,186,127,61,151,254,231,125,57,94,236,210,63,
26,253,181,142,121,249,121,222,61,223,67,55,112,117,9,252,46,79,83,96,150,40,18,10,159,62,117,147,221,69,29,13,162,46,221,253,172,22,167,238,213,73,130,155,69,227,133,62,241,135,161,127,31,230,136,59,56,72,136,75,107,59,125,226,65,43,207,167,49,52,7,154,83,190,247,128,18,34,218,153,236,177,200,239,249,248,249,82,255,224,229,4,7,25,63,249,175,56,216,184,111,2,189,188,182,15,214,71,250,244,90,150,215,161,255,120,174,201,229,114,17,90,159,247,60,222,27,19,84,232,224,2,21,246,74,28,129,127,255,6,133,236,186,249,98,249,58,18,230,249,68,210,60,244,169,16,52,47,227,102,27,171,127,16,47,217,106,71,12,78,63,101,46,73,37,170,158,98,96,188,77,63,79,26,118,164,247,120,107,84,191,135,125,212,154,204,116,119,10,247,226,44,202,229,190,92,231,241,128,219,37,233,142,1,184,30,227,178,173,211,6,60,12,190,53,223,94,219,153,119,228,16,104,30,240,223,92,12,223,255,27,95,236,52,254,97,164,12,210,242,217,166,232,77,153,174,
237,244,206,222,190,138,239,53,123,255,184,55,119,54,129,130,159,72,4,188,73,234,162,218,87,162,43,165,149,87,100,231,222,133,28,125,71,116,64,26,247,19,117,68,234,62,137,243,81,46,186,73,153,78,241,95,125,9,226,91,143,119,226,225,110,98,226,86,239,105,35,105,94,120,188,241,230,99,113,198,123,14,231,78,245,93,241,125,248,42,161,102,191,174,145,179,150,26,57,81,119,177,41,138,152,223,188,229,240,102,14,247,73,60,217,226,243,141,159,213,240,232,146,116,92,43,235,156,26,148,156,80,92,16,207,193,66,88,154,37,247,73,228,25,210,80,233,248,59,40,168,208,136,106,9,164,86,170,126,99,50,149,120,105,140,79,32,167,126,168,4,56,235,99,70,221,120,12,158,104,139,253,199,199,31,82,254,52,237,41,229,37,169,88,199,230,62,152,122,126,20,42,144,12,232,229,164,251,154,195,227,83,113,175,139,93,206,78,173,196,176,186,124,142,229,57,1,154,67,40,63,116,13,170,172,239,137,94,80,223,65,170,196,177,165,199,59,28,207,177,109,180,137,87,39,221,
48,132,95,193,144,51,94,229,180,194,174,102,169,8,87,69,248,28,128,175,207,190,94,179,92,5,163,194,6,191,1,19,34,110,149,25,47,124,240,123,236,207,205,148,201,173,31,80,245,70,181,159,167,111,222,208,137,177,137,74,202,250,124,181,91,99,186,236,229,249,124,231,127,111,121,239,129,70,227,251,19,100,55,125,173,133,200,94,191,226,171,59,14,79,216,47,8,108,255,143,118,76,44,105,11,48,97,156,25,106,88,16,5,187,13,141,111,188,17,253,143,238,98,131,10,91,56,252,198,187,189,253,144,140,194,156,20,44,161,118,82,249,130,223,20,160,54,102,131,192,160,217,91,141,165,8,82,39,8,155,79,94,111,253,107,49,246,201,246,246,97,138,243,111,37,234,79,212,247,56,90,180,173,245,183,150,6,34,37,130,233,192,72,19,227,197,76,150,105,194,159,235,105,105,194,75,89,212,108,207,153,94,238,91,243,126,95,54,18,72,83,246,208,244,69,80,13,88,11,224,14,63,172,124,128,170,32,28,237,43,205,79,56,142,110,130,24,60,112,16,120,103,59,87,8,243,
46,103,232,240,205,103,52,11,164,196,181,229,20,136,111,35,125,97,60,54,148,38,1,224,234,16,247,25,5,152,42,160,255,116,101,166,210,123,120,126,89,94,252,144,71,248,156,226,12,5,13,67,155,41,100,22,167,175,167,223,205,17,32,131,35,2,11,6,54,48,129,249,156,40,81,35,84,179,24,134,30,190,195,158,205,26,5,23,54,53,39,243,222,90,89,226,189,36,142,61,229,89,108,246,183,0,248,66,63,55,162,243,222,104,154,144,44,76,51,25,242,215,206,160,2,94,31,138,93,51,252,214,22,60,57,65,223,0,42,240,50,194,223,116,35,167,8,222,56,220,231,225,93,103,160,35,78,168,98,193,208,201,3,218,26,64,75,144,166,164,192,142,101,65,128,94,124,236,6,45,232,178,245,44,103,88,162,85,144,70,253,116,29,119,218,84,73,48,235,102,61,225,239,48,61,32,25,245,37,220,73,68,123,250,73,142,19,191,40,247,233,62,211,59,221,176,14,223,127,112,200,187,201,8,30,204,200,246,180,136,172,4,20,239,218,246,232,100,103,233,227,92,114,1,191,80,
53,211,163,9,223,228,72,96,147,66,130,15,122,71,111,217,189,224,55,190,16,21,65,67,26,198,136,99,54,49,160,125,70,180,125,36,8,42,16,92,33,23,117,33,151,223,29,131,131,79,13,93,34,225,153,182,227,103,211,0,222,156,37,102,51,56,147,78,180,248,234,27,113,59,227,61,121,249,187,141,69,233,2,197,254,55,196,65,120,170,248,168,224,242,187,183,250,114,89,25,246,23,74,251,138,190,228,221,209,77,118,157,27,35,140,52,125,127,168,98,156,164,133,211,91,134,208,28,243,243,43,78,74,23,148,217,115,65,1,147,200,105,30,247,22,11,35,103,123,232,7,18,102,227,239,99,35,34,163,5,75,139,35,5,138,240,133,33,4,88,133,162,188,123,153,180,136,147,223,246,136,251,254,30,207,55,80,80,150,211,61,231,18,41,160,149,92,65,142,142,114,94,53,215,1,187,205,99,103,88,29,218,244,173,188,94,154,179,87,50,109,120,111,35,222,187,71,247,140,206,164,140,160,101,240,228,211,147,254,231,113,164,39,222,15,0,71,218,57,229,232,171,149,29,134,194,
136,62,204,3,124,127,243,247,111,209,29,115,254,76,207,217,156,221,241,42,126,31,236,248,75,239,144,76,223,235,165,62,123,60,211,30,140,94,79,251,167,81,157,197,43,43,139,156,156,0,120,77,157,158,159,233,137,224,64,243,38,200,92,219,218,168,98,228,179,28,126,113,21,96,172,72,25,30,70,248,169,31,242,39,177,77,167,95,206,172,103,45,83,118,183,153,76,152,146,50,72,155,185,211,38,213,98,179,91,104,228,254,41,237,63,246,253,205,158,222,226,246,61,116,15,44,50,59,145,32,112,220,109,196,202,183,207,137,73,177,96,166,135,53,231,142,3,95,104,88,124,153,191,236,190,233,59,188,217,214,113,55,234,77,159,7,193,22,194,153,25,38,253,216,221,46,119,169,215,198,234,110,85,215,230,249,33,136,26,12,131,47,110,48,131,54,210,120,21,226,123,126,61,68,160,48,66,249,91,49,235,126,205,158,199,242,155,46,154,241,65,250,252,45,95,93,161,193,16,234,1,91,81,155,116,87,99,79,21,188,223,59,95,242,237,241,17,26,94,20,47,49,180,217,100,96,
101,201,13,63,104,210,116,100,22,62,57,254,157,220,208,233,184,143,253,166,71,42,219,3,87,234,21,142,57,70,39,53,178,46,135,250,249,149,58,27,178,51,249,147,224,36,76,136,5,91,86,112,22,163,222,157,253,144,110,55,137,144,113,51,174,43,44,175,204,107,28,111,71,67,233,98,195,163,208,137,189,49,144,6,188,69,60,114,30,38,100,45,107,20,187,153,27,77,19,160,108,117,8,178,245,123,187,131,68,6,41,244,25,212,64,154,134,44,24,239,155,158,224,82,196,72,46,103,220,96,197,134,49,187,130,151,3,108,156,16,240,68,141,156,104,45,3,109,8,16,68,52,159,187,46,32,176,3,231,64,134,45,226,82,211,22,197,171,8,236,4,103,45,180,51,22,189,161,204,244,246,202,242,80,72,50,255,127,242,29,186,21,34,34,64,86,42,111,111,127,79,123,122,172,230,225,47,248,215,248,142,135,46,255,119,78,129,208,177,222,180,44,218,53,64,74,242,86,149,241,64,184,84,249,69,20,127,57,17,57,118,60,222,4,149,237,110,143,239,247,248,158,184,93,106,23,
106,172,194,173,26,158,247,11,180,243,221,78,237,220,68,91,39,203,165,242,136,10,245,26,189,255,173,165,214,242,236,34,223,60,116,177,233,124,158,213,68,232,242,68,102,23,55,35,46,229,204,160,15,122,57,75,13,214,143,1,75,12,173,130,82,144,133,59,147,34,236,52,242,253,168,181,1,32,92,140,226,121,251,124,162,89,207,12,173,99,117,190,90,119,18,87,210,112,121,43,159,250,108,220,169,112,249,206,214,4,166,44,3,229,32,191,207,18,255,62,207,55,33,115,232,192,243,45,103,87,123,213,48,195,178,81,141,251,22,46,148,175,3,200,35,119,108,204,152,59,37,10,239,59,205,185,179,238,58,252,60,195,165,115,55,196,176,117,101,33,43,123,97,110,49,64,100,189,81,186,55,126,157,70,212,90,101,82,146,31,18,252,9,88,150,233,172,77,34,21,114,40,6,46,247,196,147,206,70,212,232,70,88,38,154,102,133,155,135,9,250,198,89,197,203,110,197,14,161,102,246,249,41,79,215,70,87,79,239,194,243,198,232,179,190,239,73,3,213,123,122,137,9,59,148,105,
122,127,205,110,78,23,154,219,167,220,86,189,167,112,9,219,207,20,0,100,185,62,98,56,122,190,193,123,88,91,98,194,79,78,90,72,12,156,31,121,77,209,175,241,62,197,75,85,27,153,192,181,102,114,114,89,113,183,154,97,175,88,209,51,91,153,33,229,142,177,60,60,44,193,147,190,181,217,152,99,232,205,107,153,51,6,109,139,122,86,194,51,78,56,237,154,81,44,47,59,233,239,1,6,102,229,175,29,119,205,68,203,13,215,152,255,40,236,124,255,199,190,47,68,149,172,236,54,116,246,130,201,1,84,148,6,231,251,97,93,40,233,200,162,75,220,200,21,160,193,96,131,135,56,79,187,58,235,191,250,188,229,67,6,238,154,248,137,22,75,179,140,133,91,170,203,6,153,151,160,1,51,7,5,236,112,183,58,169,68,17,208,162,228,243,153,171,214,189,180,210,240,238,106,58,177,172,216,192,113,98,108,217,129,79,228,170,104,204,249,73,115,142,57,2,38,123,96,225,114,251,141,130,125,186,39,96,193,4,68,109,238,2,152,197,89,51,215,144,178,83,114,141,5,109,165,
102,115,82,13,201,227,247,247,171,131,17,234,80,191,138,20,83,181,50,143,171,128,61,29,79,146,87,233,141,153,114,94,239,48,141,236,200,155,183,230,219,49,239,247,209,20,3,193,200,229,49,15,44,51,78,67,35,89,159,244,124,9,114,238,9,4,216,219,211,230,214,182,44,80,196,54,147,156,70,162,45,159,56,23,229,242,50,104,248,84,228,134,83,58,245,0,135,89,72,210,181,23,142,224,70,131,81,118,49,74,1,155,203,167,138,127,217,64,45,47,89,178,131,230,43,115,94,185,151,47,164,158,46,20,81,13,130,56,51,32,164,162,3,60,199,236,179,201,103,89,158,59,120,194,251,7,254,94,135,76,225,37,186,1,254,178,106,12,7,20,218,131,71,182,70,251,10,51,141,253,115,28,173,195,217,55,242,6,108,141,84,177,77,93,201,68,136,192,153,177,30,44,61,236,179,15,180,24,14,152,207,216,4,153,113,248,254,249,146,224,131,11,18,117,109,196,67,169,157,113,46,57,25,131,123,86,14,126,62,164,206,29,18,219,203,114,239,248,174,158,210,182,89,206,126,16,
76,25,76,72,229,120,236,170,246,111,128,100,15,94,70,12,55,214,72,152,126,227,202,90,162,73,61,108,148,205,41,213,16,58,136,176,4,23,40,155,50,128,186,168,129,7,213,188,109,254,202,242,46,100,176,253,64,226,32,69,188,192,12,112,225,169,234,164,123,152,8,33,185,220,107,235,233,117,98,73,248,56,67,107,51,184,79,96,145,105,23,202,243,101,143,127,247,18,1,68,251,25,31,160,76,237,100,97,165,1,80,242,145,63,14,109,3,197,14,75,9,120,113,151,151,140,165,188,213,160,128,8,23,178,33,3,35,240,65,176,241,4,234,85,87,241,23,82,129,72,194,31,217,118,180,172,164,159,8,213,97,87,87,38,48,245,174,9,76,213,48,147,206,172,47,8,84,130,251,74,192,193,75,9,157,143,250,111,46,175,222,69,146,230,243,199,226,79,78,243,95,186,161,223,59,227,255,71,156,149,243,56,253,73,110,254,247,180,87,83,187,196,67,246,175,242,213,253,199,127,39,158,107,222,248,88,46,231,7,127,72,81,113,56,46,138,91,152,162,242,13,44,43,207,211,84,
226,34,186,58,110,85,32,222,212,241,219,190,204,79,41,196,188,160,194,147,193,199,8,149,134,230,209,207,243,181,248,28,254,141,229,120,117,243,84,35,136,48,125,42,30,39,230,167,22,236,64,125,215,204,61,168,229,145,185,39,173,156,198,106,18,18,108,103,246,208,193,95,162,178,168,236,157,217,62,29,5,15,118,226,173,143,73,104,161,181,26,75,40,55,194,93,24,58,1,53,157,152,179,21,1,108,129,194,14,43,203,182,114,88,12,130,237,74,177,213,61,157,192,150,154,162,46,99,51,246,52,199,207,235,142,253,192,207,95,148,160,190,175,175,27,151,43,229,101,51,138,171,225,182,194,235,51,16,46,24,120,217,153,219,217,147,219,54,215,222,40,67,202,225,128,93,222,159,97,125,107,117,81,231,137,44,219,191,254,32,88,239,246,121,57,194,219,96,245,105,249,229,85,247,68,155,142,119,204,108,151,146,180,223,64,90,39,68,251,157,22,180,109,167,15,124,148,238,198,78,10,105,34,218,52,220,148,173,86,37,70,124,157,214,163,208,237,3,221,43,180,99,169,200,222,165,
229,171,159,150,209,215,79,220,124,251,44,147,254,8,88,17,24,84,200,48,124,118,145,216,142,110,102,223,97,30,77,216,142,250,38,7,163,126,223,30,173,203,36,4,167,37,66,25,153,169,167,36,213,148,230,30,196,30,251,53,239,24,110,218,248,182,124,58,11,62,201,139,158,28,119,32,90,232,188,142,145,154,218,18,147,194,62,72,101,10,204,90,68,58,111,90,139,21,169,254,141,222,204,50,101,61,102,157,18,71,75,24,121,188,181,136,73,178,223,172,139,73,161,233,19,19,240,180,147,231,124,4,105,135,95,58,110,203,154,136,242,102,113,22,87,83,204,181,183,22,99,166,97,17,98,196,236,2,82,143,198,108,95,178,5,1,43,86,230,106,165,224,140,187,82,72,246,39,83,128,155,96,44,200,160,2,224,78,156,247,29,100,225,129,183,73,91,92,91,193,46,183,145,179,220,234,102,41,148,172,228,34,234,236,17,136,195,111,126,100,113,87,163,32,72,44,19,177,133,93,87,154,201,100,93,242,129,246,34,173,105,112,113,2,5,118,19,203,202,249,15,231,99,132,103,222,
215,94,199,92,223,36,124,23,63,194,252,237,57,60,112,245,3,227,31,142,253,41,147,138,171,78,6,1,152,197,119,32,166,154,185,123,212,101,34,126,181,154,108,166,57,164,62,20,169,79,198,234,110,197,136,13,159,193,21,179,50,225,176,139,116,83,62,18,82,157,147,69,145,178,198,180,217,233,98,88,95,217,220,36,104,21,73,187,242,66,222,180,101,195,51,232,195,231,175,75,174,209,164,46,28,217,119,146,220,134,149,63,20,111,206,27,192,6,3,161,98,37,172,152,51,102,174,201,240,182,19,175,123,223,78,64,206,232,128,231,93,250,79,185,38,108,218,94,158,136,185,158,212,172,127,39,162,153,62,47,129,147,2,150,40,38,233,166,147,150,109,75,66,219,165,207,164,201,153,76,251,187,48,92,53,81,121,125,60,81,99,205,137,178,185,8,100,13,77,13,194,222,136,131,106,179,215,121,1,141,77,229,27,230,44,105,133,182,198,190,16,16,90,62,67,30,182,222,175,85,8,184,43,220,18,27,158,117,145,102,125,226,35,249,12,191,175,70,51,241,188,130,14,209,44,235,
55,250,192,241,236,88,228,117,0,24,71,220,197,193,36,208,159,216,53,129,251,151,205,14,127,124,145,38,188,246,0,66,15,70,134,39,18,234,95,44,173,32,119,165,252,11,29,117,103,33,180,239,182,127,204,90,174,130,77,142,4,208,180,213,60,219,58,95,17,150,30,147,227,97,105,179,34,52,33,132,7,4,69,144,32,141,22,169,246,10,121,222,171,2,136,36,233,14,103,40,73,251,123,30,160,16,215,183,143,153,178,129,13,187,57,119,118,233,123,75,17,232,44,70,46,195,237,247,234,39,137,85,169,5,217,246,117,199,191,252,5,60,69,120,122,126,68,240,163,33,88,224,17,74,143,252,206,29,225,124,38,155,108,38,88,146,187,168,75,47,162,69,184,129,9,200,138,31,84,68,246,229,181,154,175,195,202,9,230,19,4,183,204,143,77,200,93,215,255,9,108,91,138,211,245,250,111,46,79,197,229,143,78,235,184,65,248,195,252,195,223,72,159,190,135,182,142,255,157,120,78,250,183,121,184,92,131,93,163,104,67,20,25,141,237,212,238,240,184,159,181,174,83,242,148,135,
71,139,53,216,168,81,210,10,197,215,79,189,101,134,104,200,235,45,169,48,74,242,109,169,246,233,250,252,239,167,216,249,199,194,45,236,87,106,190,10,243,181,64,143,160,225,217,80,86,228,90,208,164,2,14,57,51,117,116,183,5,250,133,219,199,180,42,52,52,55,177,95,210,21,115,98,231,3,78,137,67,40,242,210,90,58,125,145,105,88,101,70,55,30,237,71,99,15,47,63,15,188,244,125,224,110,199,69,45,63,91,72,218,52,125,143,124,199,190,242,243,190,85,219,69,41,84,237,152,51,12,11,3,194,155,234,139,153,174,103,120,108,236,62,87,207,210,237,246,166,237,131,240,16,37,89,162,59,225,182,9,130,172,72,234,254,108,222,165,97,69,220,101,95,240,215,34,34,244,22,231,159,20,76,235,144,11,7,222,244,215,101,62,124,198,211,45,21,164,27,44,39,171,223,39,174,153,1,136,169,109,96,95,135,44,237,210,119,205,93,171,229,194,224,16,25,2,130,154,11,240,227,38,184,20,75,79,238,60,213,129,60,42,180,208,188,213,230,144,205,7,45,21,141,35,220,
111,251,203,194,104,124,48,3,59,185,13,169,42,119,6,101,94,120,210,56,113,110,180,28,197,50,41,16,124,136,159,156,127,239,244,85,72,56,177,3,188,56,192,27,186,171,51,237,126,88,2,115,211,225,154,46,130,116,132,49,244,119,120,207,88,205,202,130,148,88,141,104,223,131,224,56,220,85,33,202,238,244,98,69,229,199,155,49,240,196,217,74,227,153,47,161,51,143,180,132,14,103,46,111,150,154,48,151,175,37,52,192,7,205,196,203,31,6,50,15,233,82,250,82,48,24,224,196,47,203,244,30,8,171,89,50,214,150,111,4,63,99,22,142,185,64,43,253,118,99,120,116,186,115,40,88,26,82,198,60,147,50,104,0,107,136,67,113,192,114,249,139,13,161,38,0,253,37,29,34,238,36,46,238,207,70,180,77,27,178,32,186,180,197,177,124,38,23,172,206,5,191,23,150,52,151,167,57,29,244,128,37,113,72,0,178,160,60,105,176,55,243,228,82,75,82,146,54,94,120,244,190,75,132,236,195,30,119,172,67,186,114,107,234,174,232,146,157,135,197,70,27,54,67,92,152,
123,171,178,16,207,130,152,242,189,116,4,254,10,180,170,255,228,52,240,242,210,136,202,30,240,192,28,146,46,249,61,226,45,93,52,238,152,32,204,102,62,72,40,225,33,223,175,242,177,227,19,114,249,232,141,40,251,21,237,221,44,142,127,158,238,225,181,61,135,31,190,135,171,239,200,171,108,121,72,150,9,14,99,215,39,215,65,31,245,4,186,9,145,41,12,166,197,27,12,96,78,91,30,75,151,20,199,22,81,57,43,242,11,14,240,119,95,51,74,15,194,238,178,224,154,19,34,61,67,207,55,101,14,17,26,156,201,9,145,16,34,103,25,148,80,111,14,30,51,207,12,226,55,24,8,158,18,63,26,108,105,135,244,160,96,13,75,251,22,237,23,87,218,1,8,254,190,134,201,5,53,204,145,236,66,96,30,161,4,249,114,67,47,244,60,97,96,208,5,7,249,166,233,144,100,192,133,73,51,226,9,31,234,72,10,32,2,198,226,248,183,159,204,54,203,54,193,227,252,98,3,208,231,112,96,231,162,4,129,209,173,132,3,175,57,175,239,22,118,108,8,201,178,179,12,187,
180,145,200,105,64,136,32,56,18,141,162,64,55,130,235,135,184,106,139,140,223,62,140,165,194,95,78,231,160,9,19,194,123,109,106,143,229,47,120,254,184,177,182,219,20,41,179,124,99,46,216,118,168,24,135,253,223,92,100,165,130,7,226,122,162,157,254,205,113,155,105,136,199,233,223,153,37,226,232,22,198,122,62,187,14,123,92,103,237,29,239,135,195,221,141,13,133,17,89,29,126,235,1,229,111,63,106,229,117,62,5,181,88,10,19,223,116,218,11,12,208,74,84,40,35,73,238,51,200,216,158,37,102,240,213,176,3,22,118,59,147,237,30,131,152,21,109,96,139,246,102,103,26,105,236,24,242,144,168,191,225,37,195,111,122,253,29,243,181,73,136,188,19,113,163,48,196,234,248,55,75,244,175,140,125,199,2,149,49,100,143,161,223,109,64,73,4,174,188,0,19,177,68,73,73,6,227,6,185,100,95,49,17,104,64,220,99,112,134,136,133,177,111,131,84,156,35,59,39,120,234,35,150,214,128,111,191,182,132,111,232,0,186,26,140,61,130,178,212,36,10,180,48,0,18,41,
41,206,19,73,103,134,1,33,1,114,250,231,7,48,76,87,4,48,81,58,153,12,46,217,228,193,86,124,186,176,153,95,255,227,207,142,123,129,96,144,33,134,35,20,5,158,79,24,122,144,95,114,10,119,87,22,14,114,35,142,1,101,136,66,39,71,76,133,225,11,211,118,124,198,178,68,17,69,69,220,129,189,30,55,123,152,52,200,236,112,58,176,20,205,2,10,201,87,21,204,35,92,118,185,42,120,86,62,239,201,35,128,32,130,147,199,10,214,17,229,161,49,195,202,99,41,77,178,33,173,177,251,65,156,216,140,96,82,17,102,240,57,77,148,249,130,91,17,255,62,143,148,201,32,182,87,158,242,118,142,224,107,58,163,93,20,36,89,133,14,118,155,17,94,229,124,10,172,54,103,68,34,223,77,88,190,62,72,96,219,96,35,92,161,145,14,234,104,189,190,127,39,246,118,242,186,197,249,95,132,239,189,227,191,254,233,63,255,53,252,253,253,31,185,126,254,204,195,245,79,255,225,211,252,211,127,254,71,2,159,127,250,15,127,239,251,159,254,106,155,106,251,171,202,99,252,
203,212,131,230,138,124,107,187,184,159,127,138,236,79,105,12,207,255,199,63,153,118,254,78,22,244,143,173,212,127,252,71,225,255,233,239,210,255,222,74,96,54,31,223,109,149,253,21,143,127,117,241,16,215,249,148,15,255,175,126,127,60,28,206,255,202,239,67,230,16,230,246,1,125,212,67,120,124,222,207,112,151,101,240,126,26,148,172,63,151,91,153,131,90,19,66,43,121,188,32,104,33,151,99,184,164,79,114,164,119,86,31,197,127,165,24,159,38,251,224,79,54,199,213,95,206,95,234,95,199,191,14,132,117,196,77,243,207,70,25,63,117,87,229,127,229,253,252,191,49,133,94,47,158,198,219,227,124,136,222,44,189,163,224,48,221,66,71,123,19,246,16,225,116,177,95,235,240,85,197,211,195,62,138,145,220,236,90,227,79,168,211,101,147,30,80,194,174,34,204,196,28,106,1,175,129,12,191,45,185,251,229,12,216,75,25,221,152,231,133,97,208,214,152,105,217,218,66,165,68,152,208,242,68,23,51,70,126,44,17,28,207,118,144,237,251,26,148,240,209,168,115,105,155,211,9,
37,241,1,50,212,17,78,173,6,146,171,157,53,111,86,202,254,120,39,97,146,195,24,11,134,196,80,55,121,106,117,8,104,180,252,70,20,201,113,132,35,146,94,119,126,252,241,238,205,6,65,186,34,185,63,200,93,2,233,85,123,201,98,86,216,201,203,150,145,83,226,33,192,170,53,252,242,102,204,176,64,10,114,255,244,80,57,203,16,220,87,109,38,228,153,99,138,6,6,99,46,198,29,44,99,43,147,45,153,159,238,24,152,33,207,80,3,108,168,152,116,230,189,140,159,72,142,28,22,15,13,152,218,114,195,13,65,125,65,16,0,132,13,57,19,2,125,57,176,4,63,102,36,48,111,2,79,56,171,50,45,167,32,251,123,174,15,162,6,203,132,100,143,218,174,253,214,173,182,7,191,117,173,237,141,108,5,127,126,251,98,198,22,82,152,8,35,76,32,188,100,54,34,120,197,228,216,102,230,127,177,76,96,165,125,49,94,5,225,142,228,172,146,1,0,187,205,185,213,228,195,109,208,127,51,119,101,24,160,24,114,28,211,128,14,184,68,148,205,131,237,214,50,53,10,139,
196,125,187,248,249,75,159,92,183,237,175,135,253,231,191,226,44,27,255,122,199,21,250,167,255,252,119,143,248,71,15,156,218,191,198,191,119,26,218,185,120,255,149,103,69,62,254,159,127,61,219,58,95,222,241,244,87,155,140,109,69,250,202,47,1,22,138,241,223,179,127,63,217,191,198,185,203,73,187,253,156,52,251,123,88,228,95,103,197,162,169,255,235,47,101,136,151,191,147,119,181,213,191,111,2,61,148,36,163,81,156,15,129,221,65,100,83,12,239,251,92,141,11,59,235,247,239,27,152,215,170,126,157,63,135,7,205,195,125,145,145,14,25,45,176,79,167,252,97,50,150,117,190,84,75,242,45,116,31,154,88,169,104,177,62,184,161,113,49,75,229,75,60,131,47,54,28,134,183,3,137,171,123,177,143,49,116,23,123,91,5,30,154,141,82,82,54,232,31,207,108,164,140,79,135,224,168,82,178,93,178,236,193,234,106,122,37,161,166,209,123,5,106,7,166,38,60,119,100,69,116,52,85,70,128,166,60,140,198,225,149,176,174,72,26,250,176,65,169,156,139,157,167,249,90,33,
134,79,20,27,7,201,243,24,238,84,112,215,6,36,253,182,79,39,122,6,114,142,10,206,235,212,190,228,38,102,94,248,230,156,209,246,46,154,217,167,76,14,166,15,197,179,121,249,182,180,103,231,168,149,206,162,4,43,100,122,229,129,182,5,215,60,42,79,211,85,246,64,204,143,119,33,1,241,30,45,107,182,194,189,136,186,104,84,46,232,247,42,32,172,49,157,254,10,2,188,58,238,29,166,56,165,90,184,55,196,6,85,155,164,50,69,116,122,93,205,7,100,191,241,219,160,143,179,45,165,10,81,77,250,118,162,14,136,210,235,187,124,188,99,233,180,16,166,138,185,19,101,48,199,147,69,190,123,163,112,56,61,27,153,252,208,17,10,139,23,221,59,238,80,146,57,83,39,166,101,36,88,188,194,223,3,13,112,155,10,250,115,28,197,5,19,246,170,117,46,50,157,235,184,201,161,213,162,108,22,124,181,117,103,148,94,68,184,165,37,173,83,139,168,195,38,200,20,120,78,144,60,137,155,253,197,124,166,218,119,187,73,44,46,104,237,5,63,101,10,72,136,177,239,8,166,
201,32,133,96,204,227,219,118,108,80,126,58,5,41,46,205,237,77,40,110,64,90,160,231,86,168,137,95,20,60,189,131,9,197,55,195,138,142,133,139,132,135,177,109,162,204,140,39,180,107,68,231,182,41,11,132,11,166,208,56,143,6,204,57,155,4,251,100,185,190,76,131,219,120,155,222,108,248,133,188,116,245,69,177,68,131,137,8,232,116,138,102,179,142,116,81,102,101,153,193,65,246,69,15,24,235,41,146,79,62,225,11,234,165,70,199,133,73,14,201,131,35,208,213,135,72,78,197,71,104,158,148,188,64,209,43,46,46,7,40,232,222,0,237,113,111,108,73,138,38,251,16,66,74,119,142,197,84,225,167,228,201,52,200,35,44,143,225,33,106,174,199,68,40,153,224,108,175,184,245,240,9,46,119,187,80,12,103,103,30,39,36,206,21,170,104,22,50,74,223,100,43,6,240,101,35,43,97,147,7,200,87,74,249,254,243,132,220,103,251,246,192,133,106,98,155,122,17,88,184,12,121,78,192,128,132,206,95,199,252,247,197,150,232,72,58,230,47,99,134,163,233,20,235,50,23,
202,115,28,179,227,47,231,252,235,246,72,58,38,223,166,184,106,138,148,59,231,223,223,99,64,238,138,108,222,69,1,76,56,94,64,163,148,194,201,102,177,36,177,131,166,97,144,178,67,160,217,34,231,228,112,45,85,145,124,22,184,232,247,185,38,219,145,72,249,57,220,131,215,159,207,188,19,194,189,172,113,37,147,6,118,69,125,188,64,232,191,216,25,115,131,24,8,13,55,64,116,212,8,105,46,237,11,242,166,15,146,57,15,69,253,101,160,102,170,18,205,86,150,47,140,48,71,178,110,24,249,254,10,240,56,111,190,104,119,61,181,138,102,4,55,49,123,89,148,136,149,96,166,248,57,193,35,29,243,238,44,155,185,232,206,235,12,88,127,159,204,141,185,207,242,13,188,200,113,147,189,189,106,44,119,224,193,208,98,70,233,84,38,154,94,214,100,248,18,76,236,115,138,216,145,118,9,41,149,232,156,205,158,147,150,179,126,16,177,49,193,246,140,238,95,153,152,249,178,150,13,89,48,49,33,219,216,139,26,111,39,156,180,59,246,92,120,199,73,79,227,231,19,158,112,20,
176,193,54,48,17,164,211,23,108,49,237,31,33,232,229,10,249,240,137,147,128,103,63,152,25,27,96,201,105,6,97,38,128,21,181,49,97,169,241,48,7,59,43,225,92,35,149,145,49,32,43,86,158,23,40,148,4,84,229,154,203,37,19,49,132,163,252,114,233,65,145,172,114,21,239,232,95,236,63,38,114,11,250,249,50,121,127,142,37,14,198,146,213,123,144,88,168,179,111,113,161,73,4,35,43,89,74,224,36,46,246,238,254,55,231,66,194,205,206,212,61,215,254,190,251,169,127,154,252,127,199,223,146,63,254,118,240,157,68,212,69,33,229,221,241,170,186,116,251,205,4,201,215,95,165,117,128,227,183,124,72,245,22,252,38,228,128,236,3,92,146,97,36,2,240,46,6,181,59,181,49,159,210,178,120,79,183,6,82,51,109,112,59,203,217,113,54,133,162,164,37,111,141,56,46,227,178,119,237,198,95,216,210,222,146,59,93,49,27,78,240,57,171,216,103,48,176,230,28,6,52,170,25,4,94,105,8,12,99,37,230,141,164,49,149,67,15,37,4,151,161,215,10,45,239,240,
107,231,116,23,106,199,33,37,127,196,35,251,62,214,94,143,114,196,4,188,25,133,138,108,48,146,46,94,224,110,26,26,156,30,37,24,185,28,154,133,20,176,157,40,219,234,182,216,140,240,85,100,130,212,84,24,135,1,152,207,158,24,86,114,144,156,32,216,36,147,180,143,24,231,1,222,241,61,6,141,138,34,154,139,127,109,72,201,172,86,138,2,152,222,132,232,37,64,37,77,64,218,138,33,43,210,86,12,212,201,234,215,86,169,45,39,173,223,140,100,251,244,202,109,76,73,115,178,35,48,255,57,64,206,244,26,192,55,130,73,96,45,19,212,16,41,3,33,188,39,146,153,52,178,216,139,111,72,34,218,148,52,241,11,22,48,197,144,209,209,130,230,108,74,128,2,79,1,143,190,98,162,45,131,104,224,44,156,8,211,114,190,37,132,97,63,83,211,228,203,27,220,34,241,9,152,128,209,225,13,121,236,84,201,79,248,17,153,74,254,226,150,149,216,220,195,99,37,149,242,54,136,119,34,193,248,27,188,162,240,197,244,144,179,5,196,222,240,168,39,62,10,137,78,151,241,
199,222,210,224,183,255,69,114,137,162,78,25,57,163,84,192,136,150,159,19,57,50,241,187,252,220,232,24,159,45,113,224,26,9,123,34,167,207,27,106,11,44,232,52,156,82,177,163,127,79,233,16,217,114,243,190,58,124,130,96,76,40,118,194,30,91,64,129,235,6,83,242,87,162,250,254,216,154,212,125,202,255,216,102,250,47,54,189,32,234,48,19,249,122,249,219,167,207,213,47,239,231,255,142,91,191,157,244,115,93,149,131,243,40,71,209,1,6,120,127,63,183,239,225,187,31,67,163,234,251,231,107,232,65,52,204,146,46,196,175,123,210,156,69,63,197,2,176,29,90,50,103,236,116,130,101,211,122,215,24,239,220,203,36,88,162,88,55,124,94,190,76,182,125,79,185,15,19,4,158,106,126,132,96,3,193,148,238,2,130,60,200,23,198,166,232,22,212,14,140,113,52,40,112,218,253,198,176,229,249,37,241,7,155,147,71,213,159,131,41,174,73,91,141,22,7,163,43,197,146,223,117,209,30,13,186,16,173,181,46,155,205,254,37,226,113,130,28,200,197,50,46,13,84,99,140,
37,67,122,239,235,20,39,75,142,228,247,228,81,242,178,126,243,157,72,241,156,50,176,21,23,22,147,69,46,178,205,135,134,180,208,77,204,113,69,62,206,209,178,11,10,176,195,76,60,142,72,84,250,209,25,71,88,236,12,231,153,139,9,17,29,150,145,73,84,8,155,52,161,107,158,228,134,101,174,54,241,26,233,219,38,69,200,1,62,152,1,15,5,198,4,71,60,67,123,127,28,203,93,60,214,211,32,202,138,221,3,29,84,34,24,172,177,142,27,44,166,96,137,250,24,12,8,114,248,153,187,231,228,134,243,5,60,89,183,222,85,35,48,15,214,140,182,71,25,149,208,181,195,214,29,25,88,14,24,154,181,113,214,153,36,21,14,28,144,179,68,157,106,65,176,101,53,67,6,125,70,188,33,128,168,39,145,59,162,169,221,91,137,41,197,119,221,13,130,70,204,25,215,168,203,225,119,29,162,185,251,239,174,97,15,80,193,239,59,132,55,187,13,93,231,36,191,53,80,238,214,34,141,242,215,154,122,22,32,172,8,242,2,9,147,135,133,80,127,75,81,71,80,5,40,36,
50,33,249,12,157,1,251,93,125,106,226,211,150,167,227,187,131,183,143,233,105,98,195,38,98,37,151,163,128,22,82,15,71,158,6,24,213,70,88,135,191,145,217,239,219,234,68,108,203,208,203,100,216,182,204,3,62,118,64,121,241,21,143,57,31,131,26,45,190,251,220,137,236,250,149,79,68,84,2,92,43,41,113,168,176,13,237,34,42,114,107,32,167,212,173,20,70,190,186,131,119,35,181,28,253,128,241,73,118,192,11,173,193,147,26,196,71,48,39,103,89,87,12,110,170,160,205,178,134,122,134,113,5,93,186,54,212,10,177,111,226,96,130,181,155,211,186,240,159,106,217,151,47,137,120,190,157,142,82,71,130,207,122,224,44,25,119,27,92,215,175,62,157,224,91,99,145,234,78,115,32,161,20,134,242,4,69,32,179,107,55,68,164,104,141,40,211,90,156,98,135,121,83,42,225,94,58,11,8,103,154,242,16,212,144,207,142,57,53,239,115,157,101,210,73,202,160,70,15,150,1,93,111,134,152,168,180,39,119,129,158,140,36,40,219,211,234,46,16,6,185,77,215,79,74,151,
189,198,102,240,43,235,196,102,81,160,79,55,39,80,249,87,120,203,76,32,229,53,225,85,4,108,46,29,148,63,20,98,246,216,222,147,73,227,49,227,131,135,38,162,100,153,254,78,148,116,254,51,16,145,255,11,80,248,73,175,49,159,254,100,53,206,135,95,14,165,127,232,174,63,99,22,255,62,200,80,142,167,212,88,14,7,231,88,241,162,213,196,18,60,149,69,59,28,3,115,121,251,75,186,174,108,206,83,76,10,119,94,220,119,0,181,52,135,16,46,52,64,255,75,25,82,129,142,254,155,124,114,255,147,185,224,166,127,85,134,204,218,64,154,83,246,243,191,86,190,196,200,23,89,254,72,207,255,225,49,83,175,193,225,40,214,38,30,196,233,204,232,54,148,245,233,73,202,114,195,137,8,18,76,199,130,8,24,41,248,31,158,83,135,173,242,120,195,171,247,253,123,188,42,157,226,166,168,254,183,48,253,152,20,215,63,3,163,218,141,41,83,215,122,6,217,251,144,42,142,47,167,120,174,134,93,244,38,215,62,169,201,38,39,158,48,73,121,122,151,32,71,194,229,45,130,
187,6,193,99,135,37,230,88,34,41,121,86,128,144,173,44,65,14,192,122,163,111,56,181,208,84,90,93,6,107,55,251,36,180,219,192,251,222,187,185,232,193,176,206,30,13,52,13,241,11,123,15,241,150,51,126,161,48,173,69,7,68,7,22,188,186,101,226,14,169,38,172,229,7,15,153,81,248,178,179,111,51,93,227,89,162,8,99,119,118,243,9,97,157,169,26,111,150,37,216,107,163,107,13,217,206,131,115,227,17,154,141,191,16,187,86,231,138,52,52,157,111,7,128,43,38,220,252,255,139,115,16,152,134,23,49,61,177,183,198,235,33,115,179,120,83,120,239,242,20,209,58,150,62,104,114,173,62,131,221,51,123,18,93,212,136,135,189,247,145,8,165,181,228,157,147,89,105,132,197,240,118,247,156,224,151,101,238,2,53,32,222,228,63,179,172,56,176,237,212,237,6,7,183,188,61,100,58,146,191,157,181,118,240,75,128,213,131,84,183,126,187,92,104,225,230,149,209,151,124,117,198,62,23,191,210,226,225,208,132,4,174,163,140,244,8,230,41,80,37,226,167,95,121,42,11,
148,56,28,236,148,65,241,221,29,63,136,163,174,76,0,215,129,212,205,220,143,49,18,40,107,47,157,134,125,104,29,36,38,168,143,1,132,110,3,38,19,68,16,168,150,92,102,13,203,105,51,236,27,91,38,1,182,196,162,41,239,71,17,139,191,227,142,13,187,144,227,222,174,200,41,12,20,83,29,2,65,207,19,18,241,253,133,225,118,8,92,222,100,52,4,172,84,174,13,72,232,155,155,13,191,71,217,203,8,111,187,1,197,72,69,112,44,53,153,89,75,73,228,120,144,17,105,102,1,53,107,160,110,236,112,250,70,144,133,6,177,234,100,180,215,255,138,115,195,127,211,85,254,63,64,186,136,186,53,166,239,95,82,194,67,245,243,120,175,176,225,104,70,73,121,187,25,157,135,139,242,216,60,247,114,246,104,229,17,24,157,105,12,174,107,208,199,56,24,203,99,106,76,182,231,92,46,233,253,252,120,28,171,195,227,124,75,195,203,151,246,142,181,175,121,151,199,43,125,93,66,246,61,89,60,139,33,129,73,126,231,109,195,20,23,22,242,23,30,74,176,65,90,41,65,152,
231,57,16,113,131,71,145,151,69,104,244,149,7,158,5,114,92,252,188,246,53,115,175,188,158,245,125,129,33,238,132,55,54,248,238,209,146,238,133,183,81,189,191,127,6,217,15,227,193,53,153,229,154,248,231,155,63,195,235,51,136,64,219,155,159,74,212,95,67,221,249,45,20,154,236,20,100,55,57,6,253,57,156,252,51,239,214,175,98,107,116,45,15,40,70,207,39,143,174,195,62,10,233,59,139,218,41,29,244,248,166,9,150,209,61,43,165,241,167,224,22,39,1,126,178,207,164,199,122,238,63,116,69,168,211,54,185,47,91,71,151,67,86,42,73,130,7,52,135,88,199,191,137,60,153,87,237,232,175,196,175,159,108,51,160,165,12,238,103,51,18,170,35,155,189,86,163,197,151,43,237,87,98,36,20,183,215,246,52,31,254,93,147,177,124,174,220,134,203,189,104,13,152,25,40,175,4,223,201,249,37,174,23,92,169,220,232,8,120,209,179,195,120,202,84,182,60,242,48,163,109,211,185,66,119,109,238,94,155,11,246,71,108,29,37,155,168,75,88,215,239,124,167,195,208,253,
142,241,199,122,192,82,126,54,69,89,2,161,217,113,125,95,88,108,46,108,217,61,123,140,145,217,189,144,110,69,140,187,50,188,42,141,117,63,148,97,135,186,109,165,171,105,8,219,195,156,9,118,188,74,218,215,225,199,167,234,31,232,245,90,87,227,179,169,90,8,163,87,159,113,143,101,165,225,251,132,23,202,45,235,195,11,42,121,174,246,187,212,159,166,157,27,36,58,3,238,28,119,251,133,93,193,243,184,75,163,107,123,92,188,209,247,243,108,77,167,203,142,223,196,94,94,205,125,170,81,210,46,15,134,138,251,50,24,171,210,127,57,10,171,171,49,237,246,205,11,45,54,234,45,91,186,250,210,53,42,241,183,92,15,37,214,114,156,108,186,84,234,247,143,52,49,116,87,235,104,254,208,186,200,59,81,29,125,25,154,216,88,222,75,247,238,117,15,158,70,222,254,152,159,5,115,169,165,208,101,52,133,217,67,116,173,248,123,148,156,217,201,105,190,227,212,219,131,239,144,142,143,60,53,5,28,22,225,26,204,238,144,26,209,73,98,47,146,154,175,245,61,140,10,48,95,
19,70,42,247,129,149,111,81,95,72,19,235,36,192,3,143,9,235,99,204,49,151,148,222,74,69,125,117,15,153,137,66,111,251,72,222,129,77,50,229,197,77,11,135,78,45,171,137,7,83,21,47,126,226,8,132,24,85,37,99,58,74,242,250,221,204,26,233,134,201,243,65,188,113,2,22,231,217,178,208,40,177,218,146,143,151,245,65,25,11,50,136,83,36,66,47,227,219,116,201,217,74,168,244,169,75,187,167,200,141,102,56,150,245,107,255,64,144,198,209,243,173,55,175,44,255,72,225,57,120,194,240,101,30,212,36,165,69,118,255,80,167,36,122,95,197,232,51,130,232,62,161,71,25,63,23,221,206,220,122,248,180,3,119,156,57,217,103,39,5,138,23,116,74,107,125,108,20,13,201,148,205,73,75,9,15,170,11,143,50,232,188,140,191,87,23,75,234,221,251,87,26,217,83,115,237,148,125,149,120,114,82,205,171,25,254,83,156,120,182,149,155,239,122,103,164,116,60,52,73,53,85,105,110,162,79,129,117,231,52,211,122,37,60,86,152,156,52,166,233,243,231,39,177,76,86,
69,183,149,19,246,189,156,193,41,77,141,47,45,103,237,64,104,132,123,249,224,116,248,96,239,51,154,116,116,251,136,225,235,153,24,44,21,168,59,35,53,165,68,15,55,96,122,235,40,138,207,143,253,214,204,180,125,208,77,239,29,211,76,56,235,77,165,28,216,169,152,166,61,252,152,5,52,158,211,24,52,143,194,64,254,203,109,125,89,15,225,32,41,164,32,40,57,164,211,204,130,123,205,229,165,225,129,104,204,55,118,62,28,17,210,162,238,173,97,243,59,150,246,143,212,94,168,136,179,153,144,179,247,142,245,87,130,60,116,26,217,201,44,151,135,126,171,233,39,100,47,5,183,238,193,221,187,133,2,125,246,180,121,82,248,206,96,244,186,60,52,191,235,8,23,139,9,143,22,3,252,253,16,213,59,203,156,55,52,105,176,185,181,236,10,247,222,72,247,171,201,156,211,181,34,17,115,204,31,72,36,61,212,8,46,91,142,21,246,164,33,233,114,147,72,8,249,28,153,205,82,77,249,99,229,90,197,230,232,83,177,175,128,27,238,240,62,94,42,113,59,91,116,46,149,15,
219,58,19,55,124,43,175,188,123,92,86,182,125,204,25,87,175,57,229,68,51,85,62,216,80,250,222,70,253,179,45,243,85,153,126,55,48,7,85,8,143,27,99,125,182,253,53,140,187,134,250,234,109,203,132,31,76,145,28,204,8,250,150,21,113,150,116,204,96,64,207,190,116,195,213,60,225,114,63,73,135,36,56,50,164,127,35,142,78,41,200,243,220,36,110,243,33,144,249,171,22,52,74,196,108,46,145,110,255,178,93,174,205,92,215,202,84,127,220,105,56,31,95,226,225,198,136,7,231,37,94,248,49,125,157,177,114,9,41,210,210,227,252,10,167,212,141,173,217,74,143,243,198,110,181,102,107,215,108,255,132,246,44,73,174,201,89,192,154,97,59,224,121,14,139,237,197,145,144,34,177,141,142,203,59,212,219,99,35,110,10,107,139,79,147,237,151,85,18,223,227,38,41,82,13,186,137,180,142,97,68,113,165,4,129,203,189,238,167,196,124,15,106,24,101,69,33,73,151,228,54,189,145,249,88,142,21,190,172,159,211,253,200,127,91,157,105,111,243,179,26,122,249,18,109,172,
157,127,144,42,3,145,222,49,50,204,252,121,3,199,5,30,246,224,160,176,22,195,41,180,58,74,170,189,168,194,131,43,230,41,251,96,53,219,1,71,216,214,158,144,214,92,221,67,206,195,232,219,207,1,45,84,217,90,47,53,180,210,144,218,170,123,96,177,175,179,212,14,151,3,207,43,161,101,30,234,228,101,43,14,105,34,198,138,36,94,209,142,60,167,105,7,216,93,3,128,7,79,48,159,167,24,58,175,83,190,77,85,55,88,207,144,95,192,196,55,150,29,158,129,84,31,193,202,126,139,175,126,109,57,100,199,185,92,94,158,185,214,135,41,151,148,136,68,169,172,221,5,35,88,228,135,102,156,61,226,217,64,140,166,109,147,29,188,165,180,43,243,22,33,42,149,157,140,173,187,55,170,249,119,220,11,156,226,201,83,236,59,77,142,114,255,77,94,251,225,82,239,39,179,222,210,203,123,86,152,92,74,10,10,156,113,47,152,107,127,68,197,244,217,27,218,176,121,81,110,128,75,243,204,122,215,39,7,43,13,57,67,96,57,78,131,240,247,142,139,247,232,88,214,108,202,
203,202,192,53,76,211,212,85,65,60,14,48,125,105,214,129,85,20,254,160,87,32,253,230,188,56,193,107,17,220,167,45,240,143,86,27,13,213,253,60,102,113,57,132,156,102,205,204,146,198,215,145,121,131,164,126,224,169,56,139,209,155,147,18,53,188,106,149,131,220,85,247,103,130,113,251,245,54,248,104,189,8,113,10,185,254,69,207,142,181,1,202,190,163,23,208,120,65,177,241,106,229,43,123,98,207,78,240,22,70,237,64,163,5,156,21,197,206,146,174,161,6,160,89,231,60,205,15,41,2,141,194,223,134,166,236,174,160,164,249,145,0,193,230,217,223,82,42,220,27,238,147,127,198,125,154,166,254,196,204,123,104,50,253,205,100,198,80,77,12,181,118,54,170,6,199,119,1,150,77,223,208,243,134,167,139,6,190,61,210,157,216,112,15,138,184,191,103,35,99,87,217,9,215,15,244,174,150,235,136,44,54,130,88,157,211,116,17,197,120,188,166,202,231,10,148,98,148,53,251,106,97,107,22,131,126,7,74,40,146,235,42,68,14,206,234,237,1,2,246,187,15,183,42,148,217,
239,103,204,197,109,13,92,107,25,43,30,47,53,75,0,114,89,171,222,51,179,236,174,232,43,119,102,126,182,139,157,49,121,79,69,232,155,99,24,158,70,38,220,39,185,61,65,234,147,136,206,42,4,234,3,62,50,229,214,137,34,63,200,185,36,209,156,184,151,82,20,165,117,179,89,205,245,206,29,7,164,194,72,4,108,79,122,61,252,222,71,87,231,176,173,51,1,131,25,101,93,158,233,37,67,184,234,86,124,30,214,163,9,145,235,190,13,84,218,111,6,234,131,228,179,223,113,204,133,237,238,31,231,174,59,243,226,91,85,73,72,123,139,67,251,184,164,225,81,246,73,172,116,46,53,233,204,74,86,108,55,85,202,29,251,82,172,242,129,216,238,142,236,163,168,229,207,242,219,221,234,123,93,39,103,248,117,62,58,161,32,60,223,173,108,163,89,55,33,173,135,205,98,175,250,111,172,171,9,149,165,12,123,73,26,92,40,95,160,99,19,120,9,187,84,145,207,67,117,67,184,89,63,111,165,9,131,242,62,247,244,34,201,205,137,143,173,197,161,112,230,116,55,44,45,189,
131,191,39,251,100,166,221,163,42,7,207,121,228,2,117,173,102,166,63,76,76,239,78,7,103,36,87,88,212,127,219,79,202,79,224,74,250,110,211,213,117,97,85,246,2,234,137,193,77,110,172,25,19,132,52,215,108,26,138,215,70,75,63,59,209,52,57,188,138,105,177,127,216,171,173,90,161,40,15,153,81,226,207,165,150,27,40,60,172,96,41,120,15,42,5,3,78,108,194,201,105,80,94,52,251,34,143,55,109,30,191,151,80,228,74,123,157,246,206,94,41,89,67,21,82,159,222,7,137,245,63,199,67,59,123,170,75,70,181,120,178,195,39,151,170,102,255,21,253,169,12,225,233,176,62,204,113,125,69,99,179,58,159,229,33,188,93,114,197,210,182,160,118,150,139,195,49,25,140,247,107,247,182,23,104,164,69,22,196,18,175,140,49,91,15,93,124,229,91,103,89,210,99,147,62,235,134,236,171,249,8,19,86,134,132,52,66,5,246,202,129,134,69,199,106,106,36,141,31,124,81,38,9,180,55,237,98,219,142,35,117,252,7,155,118,223,130,103,74,133,185,30,208,106,214,165,
224,42,14,58,243,76,36,254,189,255,131,35,31,2,45,127,159,110,98,215,21,98,212,82,82,122,248,175,177,226,28,49,18,178,75,168,62,228,150,2,212,148,113,186,29,242,222,17,102,212,38,85,176,0,174,36,57,188,13,136,203,30,134,111,146,174,17,141,179,178,68,246,109,74,27,118,83,234,107,206,30,176,180,3,13,7,87,101,68,22,187,228,164,171,124,160,230,96,46,231,28,254,173,140,124,99,7,27,97,64,141,244,178,155,163,116,20,159,185,252,94,203,208,249,23,49,228,249,135,235,116,5,27,183,35,155,170,135,199,220,23,61,19,62,45,70,25,204,240,113,148,114,115,21,226,8,87,15,110,111,30,231,67,186,49,153,187,156,107,221,150,246,138,110,176,49,178,124,137,99,126,253,36,188,38,235,40,10,95,86,186,87,139,221,196,18,111,178,95,52,63,208,166,20,224,124,68,166,186,98,202,93,11,23,21,103,173,172,26,181,91,108,42,2,189,254,33,158,246,181,181,39,193,128,153,234,186,125,15,61,138,7,227,37,45,57,231,95,219,178,197,159,80,62,214,135,
204,177,13,18,99,12,83,77,142,244,199,86,30,245,126,189,48,173,39,209,151,22,239,252,114,12,29,189,34,149,225,189,125,69,171,120,185,50,213,12,160,154,78,124,80,234,121,38,3,20,235,162,29,20,68,234,100,113,58,104,248,138,211,6,110,103,245,90,176,202,234,187,218,200,133,61,42,185,74,210,74,241,72,254,111,211,93,211,238,162,32,243,218,164,184,221,193,133,236,235,35,219,67,243,204,110,46,143,202,227,23,157,254,123,252,180,184,68,93,136,240,40,162,113,121,146,133,138,254,248,106,183,64,42,122,221,70,101,58,6,96,222,248,243,165,228,242,207,97,232,29,174,90,26,185,176,45,97,187,204,25,152,230,148,208,118,252,129,109,178,255,223,220,189,89,211,171,188,146,46,248,87,86,244,93,183,78,149,152,65,39,162,47,108,99,131,109,38,99,108,3,29,39,162,152,196,96,140,49,131,24,226,252,248,150,223,245,237,111,15,85,209,189,123,199,185,234,119,133,151,109,73,200,34,51,149,249,60,128,82,120,88,249,7,206,86,148,47,10,133,91,134,254,204,199,75,
181,236,159,139,194,146,41,195,137,114,200,192,133,218,54,230,10,65,56,225,70,186,6,249,136,230,92,86,154,153,74,164,47,230,21,46,245,130,116,254,136,24,214,222,101,212,76,138,230,220,20,158,246,126,224,203,55,62,54,175,161,186,28,70,230,154,146,32,223,241,193,193,124,236,62,47,181,195,25,136,55,179,160,15,57,66,232,62,29,85,83,221,9,252,230,245,224,15,254,46,86,155,140,170,28,164,171,250,26,214,21,167,65,43,110,154,68,92,182,124,176,48,30,226,249,7,148,230,109,44,45,39,251,132,40,108,91,246,227,38,231,167,9,54,98,172,146,99,148,180,149,178,233,78,82,225,80,18,43,232,159,123,160,243,13,249,164,167,129,209,234,101,86,185,102,1,123,138,52,130,191,199,131,101,38,69,129,205,69,39,155,235,179,195,167,156,252,160,120,179,188,104,42,91,225,173,114,95,223,239,194,238,35,9,251,67,70,3,87,216,176,210,35,214,176,197,61,144,196,215,78,163,247,209,140,248,97,226,169,79,10,227,181,50,182,138,9,183,128,119,82,214,72,59,39,59,
102,202,211,90,246,96,83,232,211,236,8,81,191,5,215,51,204,231,149,191,181,80,159,229,105,146,172,135,154,138,153,176,138,198,110,75,34,127,245,61,112,241,202,127,244,1,229,121,46,105,216,27,62,165,151,118,160,194,251,139,245,210,226,117,58,244,115,19,75,151,3,124,239,121,174,170,224,133,213,223,184,210,141,235,107,107,15,69,83,58,246,76,206,25,203,115,228,237,234,188,171,239,121,209,25,57,182,60,59,129,3,124,184,109,199,24,171,232,162,216,82,105,77,137,83,134,250,241,38,239,88,188,57,56,249,48,42,102,237,34,94,196,227,240,93,16,184,121,52,27,37,76,206,65,146,154,137,211,102,102,26,42,207,45,20,74,218,233,90,105,175,219,251,58,243,31,10,248,171,183,218,185,158,59,82,156,61,160,205,132,88,202,183,242,167,2,182,231,141,220,107,220,210,168,240,122,112,134,61,15,158,5,141,70,206,70,216,250,213,251,48,101,247,19,148,18,81,159,117,32,39,50,223,35,231,64,94,217,5,58,89,76,167,126,242,18,103,112,28,165,185,225,4,243,217,197,
185,44,134,125,54,157,20,27,108,116,89,7,239,60,209,111,66,126,95,14,217,52,52,147,155,67,85,127,201,226,64,58,238,232,103,217,249,146,124,86,202,242,97,233,136,226,139,109,174,232,49,224,200,83,59,79,177,255,138,65,111,118,154,106,91,163,185,150,175,53,124,159,225,238,50,52,220,188,78,26,187,75,199,105,127,31,103,240,16,227,39,240,203,222,9,135,219,184,203,13,33,1,34,133,102,115,98,240,133,121,138,12,170,146,206,172,4,15,220,197,184,21,218,149,206,65,31,80,115,233,45,20,3,9,217,36,21,120,237,6,95,234,162,54,59,56,17,210,165,110,38,203,175,207,232,25,226,121,221,171,184,136,73,174,234,147,28,124,88,88,137,220,78,233,128,65,231,204,0,142,13,73,241,89,238,163,228,155,156,252,239,113,233,187,237,255,196,49,84,85,244,197,196,125,234,87,201,81,82,135,61,100,86,108,230,62,157,47,243,180,153,110,100,105,14,20,132,240,175,58,208,88,178,42,205,210,137,34,35,202,181,114,75,98,216,56,233,162,134,87,118,13,103,170,5,53,
61,241,253,62,83,221,213,124,180,62,123,27,61,121,159,41,23,7,80,133,109,92,188,237,193,135,131,221,209,105,20,120,2,42,98,67,98,215,136,7,160,182,90,204,153,207,191,204,57,206,219,104,143,226,47,220,231,89,189,114,39,189,160,223,62,2,29,19,69,237,79,28,120,110,177,179,81,206,230,99,235,94,166,245,40,70,218,249,250,16,134,239,45,169,241,88,77,45,157,211,39,171,93,75,237,68,38,241,195,7,145,50,44,21,161,34,134,11,165,129,113,111,138,207,24,82,138,95,177,149,58,33,113,231,244,7,58,86,172,243,39,30,158,46,73,81,229,231,90,49,27,160,94,5,60,178,68,156,30,61,7,249,90,148,141,85,117,241,177,26,82,172,29,61,220,216,230,207,245,3,61,251,148,27,150,213,57,119,201,213,244,103,238,105,219,215,186,61,189,104,243,215,122,8,95,95,91,222,211,24,7,219,15,128,167,60,208,72,145,236,181,202,10,159,76,91,223,40,108,183,148,90,184,143,1,32,35,191,58,65,36,167,129,210,28,252,97,232,2,0,46,34,179,221,241,69,
83,97,114,234,40,238,121,52,217,228,245,44,62,225,226,169,92,14,242,142,163,242,222,67,237,234,168,20,75,54,199,99,179,145,136,96,145,124,20,72,73,142,86,201,147,56,34,221,105,128,194,184,83,78,195,74,225,74,240,87,222,189,59,197,195,39,239,60,59,205,217,220,249,80,57,167,103,202,253,227,159,241,190,119,60,19,137,222,65,8,110,166,217,117,183,64,214,123,151,228,162,199,27,193,176,39,226,157,140,50,235,132,80,27,111,48,78,78,202,238,165,4,7,184,37,186,63,74,198,19,89,51,22,183,242,221,154,154,49,89,23,157,4,253,114,193,225,184,236,57,155,100,151,69,180,156,231,224,228,51,191,145,161,101,216,253,6,175,93,4,196,135,42,251,50,155,110,129,201,136,93,173,105,253,64,133,92,117,151,34,17,52,117,124,135,220,199,29,98,187,234,204,219,118,152,148,184,51,54,240,128,154,220,108,95,176,82,117,40,121,22,172,236,80,37,91,183,1,122,240,217,99,152,8,176,21,101,208,189,121,217,121,237,121,45,107,124,91,88,89,103,219,24,192,231,246,
58,225,119,48,125,59,56,212,178,71,198,247,26,76,102,185,196,240,180,69,91,43,90,220,185,226,159,135,236,202,129,185,254,230,219,20,108,250,127,248,132,126,217,14,93,39,244,59,67,17,255,188,150,97,179,111,253,232,218,169,147,49,254,233,194,69,152,40,185,14,248,224,228,232,130,61,236,84,75,32,220,94,192,122,183,65,76,16,36,103,243,140,9,233,37,10,190,85,174,146,247,204,205,223,17,136,181,132,40,71,200,85,78,140,41,138,127,160,32,69,154,255,116,200,219,38,206,146,235,208,79,44,248,132,135,170,223,186,14,151,188,5,78,126,165,169,123,89,135,192,154,213,198,226,233,132,3,120,11,147,161,35,237,176,215,169,227,125,141,95,199,203,126,142,163,237,21,129,202,236,153,248,164,164,165,169,198,202,113,84,177,149,150,90,149,38,17,236,4,251,189,64,17,236,33,69,20,208,2,112,163,127,184,137,99,227,225,8,244,228,123,231,107,15,143,164,129,236,189,134,229,43,193,66,71,199,201,27,74,156,158,148,56,121,131,64,201,162,84,232,12,144,225,34,187,226,
250,230,27,112,173,3,40,198,190,63,35,0,239,119,159,119,110,4,236,149,65,94,145,2,28,78,31,210,154,185,225,239,115,243,74,47,203,202,125,112,208,67,118,120,7,146,217,43,13,239,3,179,212,116,99,157,135,107,239,151,13,234,8,65,215,156,12,184,14,252,146,103,59,226,160,232,46,56,18,81,25,179,96,106,90,189,16,254,224,240,98,33,197,57,207,126,176,163,212,175,43,116,20,79,210,133,65,145,155,110,105,13,68,230,248,141,75,158,25,19,231,10,99,37,252,169,139,155,24,144,238,10,59,37,97,232,119,185,107,86,148,53,87,200,43,248,231,123,204,27,171,55,214,164,67,181,96,76,49,195,19,29,221,107,166,231,103,88,83,123,53,178,23,2,202,178,98,7,4,223,246,162,204,123,200,177,16,22,201,133,254,86,69,50,114,22,201,10,113,182,83,52,197,162,244,53,168,165,250,189,142,10,60,28,61,40,18,136,42,223,101,63,205,11,98,246,120,129,45,97,17,135,31,45,151,188,20,135,195,57,81,177,111,0,56,232,45,58,165,0,114,221,253,54,26,55,
38,186,55,88,151,136,25,170,199,3,134,202,144,92,38,222,189,119,87,4,147,5,221,120,9,190,244,82,211,164,243,112,92,137,39,117,216,154,120,185,90,87,112,245,17,60,196,34,161,240,177,167,238,162,1,144,47,82,141,219,246,126,180,78,43,16,101,14,52,31,97,188,5,75,100,11,81,120,84,40,105,33,213,169,147,80,91,118,17,67,195,248,214,107,245,6,194,231,73,114,55,13,151,80,168,152,28,236,167,141,101,176,115,8,127,74,103,213,43,86,245,187,189,41,36,92,74,69,25,114,143,229,115,159,158,83,53,131,83,32,231,45,141,49,208,97,239,225,204,155,103,68,79,149,97,29,75,129,25,220,247,233,116,147,46,1,230,129,21,78,39,209,120,179,205,123,149,119,24,130,241,102,47,17,95,171,12,137,14,54,222,103,251,80,110,196,38,55,8,21,53,197,165,24,194,68,63,171,182,2,20,103,70,159,83,214,2,195,249,216,254,101,5,120,116,214,32,134,219,121,86,98,158,141,249,23,95,193,155,145,81,150,140,191,11,151,30,60,255,132,92,124,219,206,211,176,
193,240,129,79,222,236,193,224,45,136,176,191,37,1,228,34,219,196,242,73,215,48,122,86,171,1,22,87,172,225,201,68,11,149,93,38,254,51,109,135,9,110,83,71,178,223,211,247,78,110,148,150,81,253,43,239,232,123,214,12,255,254,203,43,178,223,75,181,191,143,48,39,217,247,54,213,175,178,255,89,215,253,103,241,247,75,63,68,221,240,125,106,185,125,151,205,240,179,194,224,47,157,252,202,223,217,207,51,211,127,44,253,174,151,95,125,86,103,201,144,165,191,251,248,247,95,214,123,200,104,55,209,240,107,236,199,232,187,106,225,207,131,127,158,130,254,213,100,89,218,255,113,88,249,110,190,189,213,229,171,252,189,192,60,194,248,119,111,81,151,69,253,191,118,251,121,14,107,179,168,117,51,158,91,158,199,136,61,157,207,209,227,118,123,190,219,54,116,175,20,83,213,245,225,119,217,208,62,231,226,165,247,197,107,31,124,95,96,61,155,212,81,104,86,62,87,22,12,17,47,53,54,192,247,132,152,217,221,120,5,182,200,101,145,184,54,13,193,29,198,88,198,10,43,129,203,
86,240,243,235,249,88,156,24,127,27,143,211,46,91,174,109,167,26,1,183,245,173,128,226,184,105,148,223,87,191,23,171,42,136,35,182,72,229,235,150,79,41,194,123,34,153,211,153,52,184,192,253,52,203,31,85,239,159,27,202,58,239,40,167,192,123,215,140,189,157,93,131,35,98,103,135,187,84,70,223,166,210,116,103,79,121,7,31,7,18,238,207,153,212,67,249,196,48,156,222,171,129,171,152,121,195,48,91,39,62,221,172,162,153,184,3,174,142,91,84,95,100,57,44,188,126,156,214,64,229,172,220,17,56,21,126,175,173,15,195,158,59,1,47,56,28,188,96,207,53,83,219,58,133,252,160,180,190,71,59,20,142,214,103,174,78,159,117,245,15,149,15,98,117,220,113,27,212,115,59,116,80,116,41,236,29,201,16,246,214,122,220,91,143,75,64,65,226,249,65,138,243,163,119,223,92,156,179,125,80,138,253,82,117,1,218,112,211,195,29,138,87,56,20,138,140,55,125,23,111,251,14,171,73,19,239,238,227,178,235,82,65,93,16,99,112,242,6,15,228,185,137,173,190,224,76,
89,237,85,86,15,232,76,154,46,82,154,111,121,180,19,67,31,87,238,225,134,159,50,120,102,249,203,153,82,24,89,174,239,72,227,119,3,24,34,89,112,47,94,111,132,35,176,205,60,194,53,168,5,49,225,124,38,6,29,125,171,99,212,65,224,63,229,239,10,142,223,125,148,57,249,233,227,114,195,210,136,120,165,254,105,207,54,180,61,235,63,191,237,89,191,254,182,183,240,75,70,53,74,225,71,70,236,90,234,112,196,30,92,12,201,103,58,120,6,5,173,167,140,6,2,11,125,115,239,61,253,183,47,122,96,206,40,155,112,132,90,58,128,43,252,124,203,58,16,210,178,154,200,223,178,12,22,223,50,29,212,180,236,133,197,59,45,187,195,225,91,70,93,17,45,123,66,137,165,101,20,255,126,203,48,64,180,140,172,170,232,74,250,139,203,42,76,149,104,73,41,56,194,55,223,194,149,160,35,229,97,133,35,204,244,67,141,231,21,113,104,7,29,204,87,82,136,54,144,241,164,19,218,195,23,22,90,180,255,214,119,104,139,14,240,236,176,58,163,43,55,152,224,11,94,87,
116,250,150,17,182,161,101,28,21,210,21,79,58,58,208,178,29,166,98,244,149,26,166,180,221,204,35,11,125,243,37,114,60,195,43,62,196,248,10,39,21,169,200,129,15,71,150,186,229,14,93,168,188,217,83,4,35,136,190,91,228,69,152,146,88,170,36,42,52,170,171,52,243,191,58,82,169,142,190,249,68,10,114,226,229,24,184,240,64,223,248,245,234,172,157,96,77,4,24,193,9,126,0,69,12,164,224,119,14,181,129,6,248,130,165,12,192,73,142,176,227,118,88,132,57,191,64,65,157,42,144,11,14,236,237,13,52,73,233,168,68,172,114,8,246,130,170,80,116,161,24,20,163,169,80,92,115,135,182,53,104,184,41,105,91,102,220,65,120,94,153,129,49,26,178,116,66,55,241,64,18,190,203,182,119,84,151,21,161,191,39,211,62,128,160,43,19,216,42,39,216,103,42,68,84,227,188,10,246,152,142,183,66,218,215,22,102,165,195,3,86,132,175,221,240,191,237,140,175,191,123,129,66,125,73,1,3,47,212,174,224,21,159,121,217,135,39,135,218,80,171,244,24,97,112,3,
95,251,4,159,239,57,123,235,232,195,2,95,32,247,181,167,152,218,83,13,85,106,79,237,55,203,136,65,109,162,163,98,99,100,137,10,27,102,180,142,142,30,183,14,84,145,14,110,240,13,105,93,35,57,180,46,4,13,116,28,246,91,103,208,186,59,252,124,235,120,137,208,186,244,91,71,24,72,235,116,228,208,227,218,111,29,145,48,173,139,191,117,152,253,214,57,180,238,14,27,120,249,110,226,193,96,151,184,132,98,66,141,26,128,28,28,120,30,230,31,188,138,167,27,212,25,89,161,254,131,124,247,149,68,35,21,197,22,178,50,19,43,14,196,196,197,212,22,182,200,130,218,215,182,26,133,161,182,69,237,200,160,182,69,203,190,182,213,40,54,181,45,23,47,95,219,178,224,249,107,91,188,114,167,182,117,197,235,215,182,168,13,66,246,187,54,143,167,182,229,194,69,69,21,82,97,230,200,99,179,80,185,194,171,51,235,42,181,167,8,27,13,244,191,27,45,126,69,110,127,229,91,33,247,171,23,79,212,168,237,65,79,204,232,219,178,254,180,61,251,180,237,136,141,175,46,
140,223,186,24,190,186,72,190,186,32,202,249,171,67,194,118,84,135,124,179,16,192,128,2,191,143,60,20,23,22,2,165,205,32,180,111,148,174,55,6,181,92,161,81,94,252,9,248,68,226,193,139,23,5,69,9,0,21,27,61,73,242,196,192,78,135,103,148,130,108,45,73,220,180,50,157,19,75,45,67,69,164,56,9,184,52,100,67,68,39,0,216,166,205,187,193,8,158,104,104,90,144,72,145,223,53,165,248,175,161,97,199,224,27,60,35,202,17,241,146,82,175,212,67,29,230,247,231,102,168,31,127,60,61,30,117,255,16,205,255,140,212,191,227,247,255,15,131,121,56,119,229,225,126,63,152,137,31,184,245,190,221,31,246,234,108,92,93,243,153,221,230,107,237,182,167,226,244,188,107,245,222,221,30,118,207,251,251,25,94,130,68,79,240,41,126,85,39,219,235,120,119,113,123,254,204,238,150,250,122,29,12,249,113,15,31,209,37,116,47,160,47,206,231,227,91,149,153,192,191,131,76,100,87,98,227,76,139,239,139,220,62,229,30,74,147,96,84,124,54,240,144,106,101,192,56,
2,111,161,82,5,127,35,232,27,73,159,192,97,178,183,147,93,40,78,145,168,121,82,21,167,183,113,148,207,23,134,236,111,222,235,150,140,168,186,169,175,39,222,166,229,222,165,68,255,163,153,64,56,59,151,200,191,24,36,57,80,174,102,207,165,38,26,48,15,210,237,197,126,193,113,87,41,154,59,63,53,177,19,184,186,243,228,217,196,37,53,249,218,176,117,249,121,182,246,173,115,187,54,122,97,25,43,91,149,24,217,186,87,106,220,183,111,40,124,110,195,82,235,37,35,200,247,198,147,146,232,184,86,69,150,102,129,241,126,203,76,41,221,153,146,68,147,163,251,215,121,186,135,138,234,8,195,173,147,243,253,77,192,54,123,96,216,231,171,236,25,229,129,241,116,99,188,87,227,250,103,41,58,48,189,99,89,154,190,118,239,224,109,14,78,239,233,130,190,115,149,254,154,20,207,68,40,50,71,114,62,167,117,157,221,65,218,97,105,62,188,74,5,182,77,225,197,18,179,223,251,26,183,206,249,21,206,166,151,223,110,141,156,199,166,212,206,47,75,245,129,205,39,145,250,134,
123,173,220,41,146,37,170,171,91,120,247,240,29,48,32,181,212,195,182,30,20,97,51,98,225,229,92,244,250,148,189,12,123,139,184,124,180,38,97,114,138,44,51,190,183,162,6,173,49,138,48,77,222,205,155,233,53,87,61,214,207,104,55,171,221,241,119,31,167,247,122,216,56,246,193,227,23,163,98,246,237,173,146,222,218,133,117,97,152,235,50,72,247,250,65,204,177,121,26,24,238,81,46,66,116,250,46,63,136,227,231,242,44,180,114,225,156,226,245,119,231,128,20,161,237,3,225,101,95,142,246,163,128,239,229,93,60,241,138,204,215,218,133,194,158,255,88,34,244,174,137,139,166,145,48,45,35,94,43,55,148,132,187,239,63,82,201,176,171,163,252,4,245,160,63,220,66,145,36,237,172,26,158,188,179,173,107,16,115,199,203,149,159,76,181,81,241,12,222,172,34,122,81,159,121,215,210,32,70,124,147,200,104,181,84,198,184,137,103,55,117,110,49,83,132,195,129,69,203,245,144,210,243,159,210,52,54,168,172,100,121,42,51,56,249,89,65,204,200,151,171,231,62,68,210,146,
150,11,88,178,65,84,220,196,75,175,182,51,141,238,104,222,87,106,16,34,121,151,114,102,116,29,242,208,249,49,63,131,197,8,163,133,101,130,196,30,135,34,215,148,176,104,157,134,34,59,237,200,6,188,126,60,88,107,217,189,154,184,54,249,207,78,55,133,244,198,151,145,132,88,191,60,8,19,203,151,156,144,24,176,59,23,251,252,85,118,161,109,142,90,104,145,238,114,113,147,56,118,180,173,193,175,229,107,46,67,51,43,178,225,90,174,108,125,54,62,151,228,132,208,245,92,167,56,32,231,71,102,158,112,145,140,38,154,137,214,33,161,30,199,26,50,195,37,169,94,215,85,2,79,243,245,119,54,72,118,95,157,242,135,35,179,237,147,87,241,146,214,211,203,99,94,217,172,63,46,92,187,124,212,250,192,31,76,248,50,20,194,115,254,170,61,229,2,9,156,238,198,201,205,181,64,116,238,90,246,81,122,94,32,214,175,24,95,139,156,19,130,98,106,94,27,22,10,158,25,109,30,230,229,105,85,175,203,117,198,248,197,197,89,119,51,44,157,219,202,251,33,60,68,149,195,
30,179,3,128,46,251,112,165,124,120,205,202,228,13,32,57,118,237,80,140,21,247,136,12,178,110,15,104,88,165,235,24,235,183,199,60,32,233,188,51,212,56,22,166,109,2,152,117,31,132,158,118,242,46,242,243,242,20,83,180,101,134,68,138,55,35,87,168,190,142,131,131,124,228,3,159,123,186,181,217,188,206,227,22,240,195,160,127,31,146,240,26,128,94,107,5,8,171,49,23,229,81,234,146,112,213,189,38,40,236,44,138,204,223,115,218,13,48,48,143,13,121,215,91,67,59,94,95,243,122,44,194,245,216,5,99,122,127,120,54,211,158,197,117,237,91,153,241,251,53,106,116,249,112,8,78,82,115,103,55,228,21,219,27,240,41,113,28,62,195,117,84,36,106,115,153,243,122,94,96,228,198,233,112,51,24,70,188,253,189,14,250,99,224,169,6,158,119,84,92,65,109,169,163,119,125,56,151,84,218,157,154,180,125,174,161,41,148,23,196,147,8,36,187,32,19,156,126,101,36,43,208,208,110,236,107,43,28,165,41,93,14,14,215,25,21,121,186,3,211,87,77,61,236,29,182,
175,1,169,63,76,202,118,46,206,122,19,252,141,29,153,102,192,158,90,7,111,109,245,15,253,236,101,101,147,47,2,147,44,177,127,94,37,97,77,151,44,153,125,51,91,85,73,117,92,212,152,226,228,88,187,116,197,194,122,223,146,160,239,78,228,22,143,111,61,89,139,137,231,188,85,63,74,240,177,131,146,120,139,221,142,125,87,156,235,26,31,217,119,139,73,146,56,141,234,140,95,139,61,130,251,227,54,152,75,151,127,8,189,246,216,203,47,247,40,191,174,137,232,103,66,232,165,218,35,252,172,140,26,167,242,70,23,79,11,229,77,139,164,217,20,205,158,251,123,119,130,183,196,126,31,147,249,9,82,73,113,249,152,108,129,35,190,74,80,240,15,230,1,121,78,222,153,20,54,190,3,107,212,142,118,45,230,22,213,223,133,55,131,226,224,105,103,111,35,191,46,123,249,121,103,165,205,19,75,175,204,188,86,85,67,134,141,252,185,10,7,112,232,157,207,19,53,39,123,86,129,166,228,167,206,4,109,101,98,28,76,221,217,161,113,231,125,74,230,54,35,72,236,125,27,201,
30,244,244,38,58,66,252,88,255,248,77,115,180,134,170,252,177,121,67,80,231,221,241,213,39,117,241,184,239,173,227,51,93,78,148,33,25,157,117,209,31,214,101,174,248,93,243,152,35,0,73,152,45,184,153,79,243,61,124,117,78,166,15,48,232,216,167,62,55,47,138,58,239,169,253,62,39,243,0,48,202,139,145,130,117,201,68,178,171,195,48,82,142,235,207,60,91,4,142,179,143,42,69,108,63,190,165,142,234,237,180,48,77,82,58,122,186,225,223,55,239,78,225,20,187,84,252,134,172,212,40,144,224,36,55,255,224,92,58,182,150,21,45,60,225,97,187,190,196,64,147,158,14,217,103,115,205,37,112,9,37,141,2,128,161,149,133,105,6,251,112,109,160,124,39,30,143,175,129,194,48,1,182,199,162,204,23,6,40,199,187,131,143,73,100,153,135,114,223,246,201,99,60,178,57,165,174,207,59,245,29,233,108,56,2,98,72,117,120,215,112,216,77,13,34,163,100,90,17,135,44,98,43,73,144,97,237,149,190,33,151,138,53,117,7,123,174,115,118,168,138,250,78,153,59,41,
159,87,61,150,33,247,181,35,73,249,203,28,41,108,180,253,12,36,63,90,81,149,225,173,89,245,83,100,14,245,186,115,58,79,75,74,215,79,94,146,1,41,249,208,222,182,154,244,16,228,41,208,149,67,243,41,41,128,140,8,173,77,223,242,74,225,99,99,63,38,202,12,51,133,149,15,90,223,129,103,211,237,236,231,56,132,162,176,138,64,71,178,140,204,236,28,89,78,227,93,230,75,24,99,123,67,49,113,254,218,118,218,241,21,201,219,227,178,52,133,3,36,250,202,26,44,243,110,34,194,19,84,236,204,225,218,157,190,162,213,5,0,42,19,134,68,186,59,112,85,142,62,20,192,157,0,197,113,26,104,235,188,1,27,85,158,225,234,194,86,132,84,72,150,116,197,11,143,224,179,32,215,149,114,88,162,188,45,41,163,52,98,134,175,34,183,42,193,0,112,189,12,117,0,40,249,148,20,193,236,252,35,132,66,121,224,188,71,232,64,249,205,46,23,46,164,184,25,193,58,239,39,249,69,32,138,174,242,177,57,248,2,207,194,38,239,151,176,193,16,110,228,103,158,240,241,
64,193,178,102,244,85,34,184,222,30,66,16,234,135,45,87,179,207,126,184,31,239,68,1,109,90,204,140,106,189,175,73,38,57,214,70,148,85,243,42,202,75,158,36,249,186,31,51,244,30,212,94,19,134,217,223,189,238,213,209,20,81,123,215,207,163,111,225,204,171,120,144,216,98,186,230,137,250,198,255,25,207,81,253,195,141,165,103,163,254,77,31,160,191,135,190,125,15,191,210,12,151,77,249,147,135,226,215,173,169,203,39,197,182,205,242,235,77,65,110,247,3,132,255,219,175,174,204,139,225,215,235,61,246,217,175,120,28,6,138,133,127,158,6,239,51,138,83,210,95,197,239,158,254,181,11,90,172,27,191,205,105,127,116,139,102,233,117,161,154,68,239,42,121,147,124,101,239,7,247,243,76,175,70,42,62,7,88,129,211,188,70,211,28,154,219,143,127,108,191,135,239,116,3,218,21,69,83,223,7,6,231,225,190,50,123,74,210,238,115,42,86,184,60,16,119,101,182,34,111,134,186,173,93,90,80,188,222,85,190,134,202,82,73,223,229,106,41,14,111,174,124,134,240,57,33,
36,183,92,252,185,19,21,99,32,191,241,76,217,178,227,203,178,179,248,71,36,141,203,28,58,0,233,42,194,87,37,160,147,21,84,108,108,143,44,150,162,69,118,132,213,180,175,73,40,103,232,209,117,246,155,76,113,41,101,92,90,198,59,119,191,102,216,15,253,113,232,231,243,32,243,149,233,119,110,211,200,233,45,186,163,49,190,50,23,220,175,115,236,242,12,14,251,37,35,113,189,151,76,46,91,118,114,214,60,109,77,214,94,43,148,102,234,227,14,136,51,5,152,131,42,233,220,43,74,20,196,193,226,181,180,10,15,206,231,142,254,86,103,59,138,185,202,107,44,31,21,165,161,209,141,23,165,3,16,63,28,135,184,219,45,205,32,5,64,132,240,246,104,74,138,124,177,25,34,98,23,61,151,147,60,164,156,241,76,239,36,203,153,155,36,241,173,220,225,180,70,135,206,100,212,177,235,105,9,203,183,216,253,200,7,195,224,86,123,180,164,94,214,153,53,95,194,68,189,135,217,152,153,38,241,109,237,94,75,161,16,243,193,33,243,90,31,219,231,39,33,205,73,171,83,209,
64,112,44,211,7,113,109,221,255,52,135,142,245,74,36,181,110,6,111,111,63,253,48,222,200,74,39,70,170,7,241,68,61,83,149,114,157,107,203,119,41,100,32,7,36,139,143,134,189,60,36,5,248,203,177,210,10,81,3,205,59,227,13,244,56,54,250,243,56,208,93,108,217,127,55,247,142,241,74,86,106,39,9,221,4,146,125,110,62,97,207,7,158,210,58,233,132,26,82,253,241,219,61,118,237,126,80,48,185,219,6,255,169,85,25,93,203,159,223,230,111,61,119,115,8,50,177,252,211,15,27,19,217,126,165,176,169,94,108,124,122,170,180,143,69,126,55,154,245,243,142,143,49,143,107,206,231,176,131,37,187,59,250,39,126,74,248,203,120,133,219,39,223,231,74,35,207,178,150,217,235,118,73,65,206,203,45,14,122,47,123,9,112,233,23,229,169,140,12,177,209,184,62,186,24,133,247,167,255,181,229,171,207,236,146,103,185,71,191,19,235,120,217,60,252,151,107,148,254,165,41,230,158,212,254,56,29,54,247,109,213,74,49,245,46,198,188,221,169,207,41,170,175,148,203,127,
160,95,47,147,159,135,29,19,207,114,77,58,8,102,100,43,74,244,129,208,12,37,150,165,126,173,67,93,71,36,196,203,216,199,171,24,115,160,167,32,46,166,46,149,70,63,150,7,182,39,119,29,148,57,151,144,206,177,120,35,6,189,194,43,31,248,118,16,58,122,148,100,106,160,17,2,200,249,8,235,96,233,11,25,61,96,203,163,51,108,125,100,80,103,233,32,79,73,225,157,72,3,116,137,148,194,43,245,220,240,10,193,227,187,83,193,3,126,120,164,253,77,123,241,187,212,139,141,65,135,153,24,52,152,233,64,141,25,2,107,34,108,54,231,186,30,194,198,243,161,178,122,60,68,235,186,34,40,245,112,243,143,127,231,91,151,189,14,60,243,93,218,247,207,9,49,153,213,183,181,81,247,191,133,184,103,15,251,253,181,217,237,155,176,234,69,201,197,111,144,157,31,219,48,223,25,143,98,56,248,87,222,230,53,219,58,103,60,22,252,8,142,113,163,102,165,19,142,140,29,126,46,107,38,180,117,194,195,228,187,196,121,178,214,162,113,175,132,206,107,176,146,109,211,87,54,
168,97,172,93,42,24,80,210,41,96,144,160,61,244,62,6,105,148,76,242,167,231,137,107,16,103,240,182,190,181,33,184,225,177,141,165,45,108,182,35,219,0,65,219,165,45,185,146,24,82,116,1,123,247,204,242,162,247,105,164,21,149,48,218,174,242,237,38,157,128,0,3,194,217,183,213,195,190,189,162,218,113,157,62,116,83,192,235,140,39,217,168,57,48,149,100,33,221,230,171,104,139,116,192,86,209,252,189,186,74,194,249,65,164,57,123,43,60,204,172,253,96,97,232,97,20,128,30,95,245,105,155,239,222,240,158,61,69,8,175,131,131,33,211,125,133,127,102,208,95,191,67,36,163,75,242,119,58,88,236,219,41,97,100,147,205,255,105,37,148,242,55,79,192,158,42,1,199,29,244,55,154,113,220,51,229,211,61,134,70,247,92,167,83,200,37,145,136,21,93,167,104,171,32,21,145,199,215,48,148,205,25,15,50,69,217,21,16,184,236,28,242,217,60,50,89,218,185,219,17,178,145,150,169,33,255,230,24,25,165,50,23,112,145,106,151,53,22,89,138,158,31,40,82,214,79,
235,0,25,123,184,128,226,42,121,192,65,196,220,67,192,67,219,7,208,184,174,17,38,79,43,39,144,36,40,69,31,151,31,31,37,204,28,50,105,37,127,33,77,23,56,36,57,236,58,42,140,138,123,202,68,99,112,242,182,97,150,199,73,96,126,115,19,157,250,167,17,194,55,70,202,115,77,143,188,252,189,184,42,31,248,201,138,25,29,140,110,12,244,97,213,68,44,106,28,118,181,28,202,120,226,111,152,217,165,87,184,179,82,144,158,80,14,19,51,132,238,224,66,174,175,0,55,96,23,2,209,237,38,221,109,192,40,71,97,99,0,62,246,189,123,39,165,113,151,121,103,41,226,241,93,86,216,10,220,117,79,73,106,215,131,68,76,143,104,11,230,156,217,78,155,163,236,219,82,243,201,32,108,235,175,226,190,216,83,10,87,25,161,4,41,223,188,72,0,123,190,3,157,150,158,211,139,97,33,92,207,24,62,8,179,253,83,79,71,245,77,114,181,69,190,221,253,147,74,109,226,152,186,39,170,84,215,233,88,232,181,55,189,61,182,87,139,223,43,122,13,31,117,47,86,199,
238,106,110,222,134,126,17,143,204,213,4,252,231,14,9,34,116,84,201,43,195,34,4,253,152,96,95,161,159,249,85,81,96,231,52,13,74,66,176,138,51,239,61,232,103,19,58,182,20,244,0,198,119,60,0,74,126,103,10,252,94,138,16,40,2,236,86,103,144,47,4,16,17,40,22,139,234,102,97,60,208,160,69,119,142,125,183,194,219,9,154,64,82,249,189,125,95,145,191,133,25,25,110,138,152,139,29,177,54,142,204,203,62,193,121,232,203,55,226,159,44,124,38,67,31,178,86,233,119,207,97,60,19,20,1,116,102,203,248,193,169,43,167,62,43,30,250,142,34,179,75,242,16,83,168,168,182,28,213,64,114,239,103,23,221,160,242,64,31,95,62,169,143,3,254,158,135,52,83,247,71,174,48,60,71,60,13,93,211,133,29,176,124,21,224,172,195,169,234,246,68,254,82,198,26,206,39,4,91,33,90,43,46,223,136,236,201,224,102,197,146,27,192,116,14,239,110,29,137,212,205,9,90,161,14,87,41,228,241,250,104,225,106,204,171,192,194,152,208,55,81,137,169,131,20,174,
226,241,217,166,113,9,231,168,131,12,179,0,248,24,45,34,43,233,76,103,115,53,58,14,4,63,31,87,250,145,106,127,22,101,184,2,250,49,195,127,93,130,140,161,32,87,43,132,223,167,44,159,165,251,199,235,58,240,43,30,236,240,146,252,147,134,80,21,209,219,186,236,247,110,161,175,44,105,10,117,183,189,212,219,42,147,179,7,133,22,57,110,194,67,39,223,107,61,12,203,115,81,208,233,232,246,88,245,235,199,131,130,112,125,98,133,8,90,100,97,131,40,51,66,54,137,209,208,253,81,54,179,74,60,248,26,140,35,213,97,240,10,88,75,142,10,152,83,168,237,248,248,100,224,208,212,224,66,132,96,149,235,45,81,34,158,168,26,187,176,158,204,170,117,3,92,155,241,162,22,45,121,239,3,13,227,220,58,22,147,193,151,170,231,144,139,246,244,195,67,92,169,170,51,94,52,45,1,195,11,131,90,227,46,74,7,78,124,96,132,104,25,211,139,232,224,29,230,229,93,202,168,5,150,250,248,116,142,150,25,42,30,252,144,63,199,252,205,244,1,1,183,224,96,85,60,
209,111,143,242,6,243,169,0,167,188,129,1,208,72,207,3,95,185,8,71,249,150,81,248,215,240,206,161,22,1,171,221,30,87,93,190,249,141,204,132,113,202,247,64,82,186,155,119,126,41,144,107,76,101,156,206,247,97,86,216,225,128,124,174,145,111,140,206,166,15,156,178,30,237,226,12,48,248,112,241,235,39,123,143,197,157,225,97,244,233,24,40,247,201,101,149,135,74,19,36,16,246,178,170,243,144,6,110,202,166,32,253,200,55,130,0,232,252,114,14,188,78,100,193,158,168,123,63,113,58,21,190,61,205,8,138,64,115,8,116,232,71,36,254,206,10,244,253,231,61,185,77,127,30,244,50,250,103,227,172,172,254,164,130,241,92,93,101,120,79,218,238,46,154,186,103,223,10,195,130,163,217,159,239,158,99,181,7,191,4,37,7,91,166,178,215,46,201,18,27,245,156,144,76,89,108,216,139,56,221,151,7,26,230,188,59,212,122,220,237,178,194,165,180,136,125,73,73,224,204,157,193,79,242,55,151,70,118,139,37,19,26,210,67,7,50,131,100,99,212,113,152,161,165,152,146,
240,225,197,31,217,143,140,194,145,30,168,31,248,73,133,220,182,111,20,39,227,45,168,101,217,62,6,148,196,145,155,122,11,204,78,89,15,50,191,107,96,186,73,179,113,214,248,139,79,246,182,143,201,94,55,98,235,158,9,155,136,162,109,66,233,103,188,181,248,242,9,133,165,144,54,28,167,108,209,73,218,196,46,234,153,56,163,248,26,56,56,157,28,43,85,99,113,59,56,217,66,24,95,16,22,176,152,39,144,107,140,43,11,18,96,77,106,156,138,155,6,175,13,15,68,40,54,78,27,23,24,113,47,248,185,191,17,87,195,171,136,54,80,60,211,24,211,120,39,84,130,147,141,240,244,205,213,160,28,219,209,71,188,254,20,40,199,191,211,67,207,53,245,116,100,139,27,63,180,217,238,240,146,74,90,126,66,232,115,247,147,97,18,211,103,252,148,31,4,121,149,237,237,138,22,34,67,67,29,58,113,4,112,61,102,230,93,134,96,156,137,192,51,59,192,157,255,48,34,149,60,145,171,240,18,53,20,231,107,4,43,37,222,102,242,99,56,255,203,190,235,224,225,204,244,199,
82,45,195,23,157,107,175,83,255,77,131,247,101,162,223,59,50,109,214,252,154,202,116,40,190,233,236,186,172,254,110,135,249,199,173,156,255,87,106,186,163,129,235,31,76,49,224,54,185,214,231,155,228,90,186,143,99,40,4,211,115,183,147,202,240,240,242,222,239,244,146,214,167,247,150,154,92,187,217,198,15,118,115,126,130,141,253,172,232,152,78,69,24,236,237,189,246,24,106,171,219,142,111,45,139,158,220,115,239,140,188,30,186,217,48,185,19,126,163,81,95,198,57,191,116,140,161,42,185,103,198,207,212,211,133,131,170,39,179,141,117,129,108,108,3,70,70,190,175,16,147,15,144,78,116,94,185,22,108,27,60,250,139,47,115,217,204,233,138,90,193,247,217,176,219,237,99,3,244,172,46,196,234,194,191,143,89,13,119,253,109,34,197,222,118,188,236,194,158,230,109,64,227,126,224,43,206,147,72,237,69,157,182,165,167,108,75,190,93,79,78,237,95,180,197,18,27,241,42,107,105,117,113,30,196,154,55,242,251,212,56,197,39,108,236,214,80,54,159,42,56,47,151,217,154,141,
30,49,241,21,77,236,231,48,149,240,194,155,94,223,140,174,24,156,11,33,31,167,241,248,12,0,74,74,41,177,15,236,114,110,171,101,187,115,146,28,243,123,47,48,166,240,126,21,102,113,83,111,144,45,20,23,85,57,206,174,85,226,42,186,100,245,9,187,203,140,158,10,58,111,31,199,247,214,74,20,124,169,29,184,219,215,163,58,235,92,195,184,215,74,226,251,241,120,124,98,241,178,189,21,66,49,78,47,132,207,243,247,46,246,226,24,29,146,236,219,48,116,199,117,207,240,214,86,189,112,118,181,221,220,0,216,133,21,64,210,44,4,23,77,48,24,195,25,139,203,225,105,11,117,171,177,223,65,89,228,104,245,24,233,23,213,169,122,109,36,236,233,186,102,151,103,31,104,61,1,219,238,13,174,253,121,167,57,220,246,245,180,28,216,106,129,194,124,60,168,94,118,65,219,205,202,55,215,103,50,148,36,26,178,254,23,181,178,50,170,203,168,255,201,101,250,238,254,209,246,254,115,190,197,244,87,188,252,147,121,22,217,255,254,235,214,246,9,237,159,118,14,127,165,239,169,
249,227,219,191,150,222,52,223,218,29,52,215,221,141,188,194,60,177,135,58,176,119,183,99,148,39,31,94,124,54,70,25,90,14,99,193,89,19,244,231,167,209,75,203,113,228,99,56,90,211,246,38,164,6,158,236,171,47,239,14,219,85,151,130,71,180,153,138,171,111,191,12,38,7,231,195,158,240,108,102,121,238,101,5,212,111,81,161,177,6,35,8,61,244,237,192,125,241,242,36,93,147,6,222,207,17,134,106,227,79,187,196,52,90,153,138,241,247,201,81,41,254,222,125,131,155,127,141,63,114,252,143,255,173,127,69,221,240,107,252,93,255,147,57,54,127,119,229,80,188,104,139,223,18,196,223,76,175,211,187,123,126,239,204,254,209,240,87,243,238,94,81,77,117,64,69,61,254,220,182,253,45,216,111,155,155,174,254,122,189,211,236,223,127,57,221,59,142,226,122,161,205,135,95,36,235,150,111,167,120,172,191,174,227,247,72,210,172,47,243,230,159,72,35,251,95,222,217,37,67,124,189,20,251,253,133,55,114,252,180,206,226,142,211,202,100,221,132,171,37,153,235,179,227,163,184,
147,36,233,17,53,77,127,33,143,89,20,46,230,126,2,122,80,253,153,213,111,127,60,30,47,9,118,101,106,249,244,100,42,201,81,240,125,159,241,20,103,169,231,174,186,53,59,70,195,48,150,147,166,189,145,83,122,230,82,140,213,202,55,38,87,25,133,20,235,226,154,185,29,3,107,121,80,97,98,108,158,60,9,144,178,23,69,122,38,14,135,61,244,220,78,170,220,3,69,87,225,161,225,54,101,67,76,164,104,161,29,217,161,63,196,205,227,21,34,47,189,16,85,189,74,51,59,225,200,22,37,98,249,47,230,16,203,71,254,91,150,227,200,20,53,246,137,6,227,197,121,151,185,96,42,40,0,219,204,248,244,46,190,113,184,5,190,208,158,16,168,186,141,210,120,134,142,11,89,138,179,167,98,28,157,180,147,46,230,59,219,49,148,61,238,75,26,241,157,192,201,90,116,60,178,238,135,191,47,175,245,182,241,70,209,216,187,66,23,198,232,238,118,48,186,203,252,18,203,140,126,62,85,99,225,105,190,50,159,27,73,161,231,15,77,246,204,118,136,231,228,229,177,45,135,10,
250,248,193,235,32,216,243,132,51,204,168,67,173,162,245,226,67,182,239,48,212,56,94,121,69,145,61,249,189,136,209,29,117,174,208,152,140,165,160,169,13,182,16,50,85,49,242,120,52,171,26,248,252,174,206,85,8,163,145,131,157,255,138,111,111,134,140,7,99,167,227,165,230,179,145,132,175,197,26,199,187,181,193,4,68,64,212,69,126,253,56,190,110,55,185,181,130,1,239,121,155,40,44,37,16,120,127,103,215,86,216,81,90,114,159,29,158,100,55,117,196,105,2,210,77,99,72,44,154,99,246,198,74,69,227,130,48,124,203,219,204,91,120,254,228,76,132,50,217,198,74,18,41,219,56,142,216,57,133,192,3,160,244,92,93,240,107,200,236,18,82,18,156,57,172,115,0,227,234,101,116,172,207,156,111,208,160,234,31,44,167,248,213,100,52,216,36,158,212,9,28,186,167,128,29,244,143,128,235,65,171,28,240,72,253,248,110,33,254,40,31,201,196,243,199,38,30,31,105,211,70,44,181,229,62,56,243,176,238,52,78,41,165,19,106,37,246,116,204,38,202,0,25,155,12,166,
140,216,91,13,219,162,194,244,124,133,74,62,178,29,119,197,206,206,57,226,92,150,225,203,25,13,16,142,188,18,162,58,181,97,37,117,10,63,151,250,168,118,89,134,153,46,159,215,171,46,208,35,17,203,120,41,151,173,33,101,12,164,0,106,227,128,37,117,159,250,89,127,212,230,160,72,247,32,163,70,172,16,229,236,100,149,209,16,185,219,16,1,152,128,97,135,248,67,7,84,199,35,183,37,24,100,38,203,27,239,106,47,23,221,67,52,169,62,225,45,19,88,208,118,117,166,95,179,54,110,97,75,26,74,90,108,208,194,83,19,162,55,144,159,61,90,65,213,63,179,79,7,239,124,122,102,209,69,81,31,88,65,98,221,165,176,163,120,183,173,158,251,7,84,6,30,158,30,32,76,65,12,163,126,137,93,28,100,84,103,27,67,82,39,159,209,167,238,237,204,222,5,47,101,14,89,117,106,137,52,95,93,50,205,244,253,226,145,73,36,146,75,118,156,144,235,202,51,206,233,84,44,40,114,18,46,6,184,225,93,250,210,188,140,4,187,247,157,61,178,85,216,223,204,196,125,
59,133,254,38,65,145,97,86,187,36,55,248,236,188,121,101,53,231,62,221,252,51,149,134,43,191,36,60,121,60,37,4,58,202,117,196,240,136,49,239,71,113,182,124,244,224,159,79,50,233,105,49,157,233,216,238,191,199,86,208,177,93,203,28,176,219,13,146,180,141,252,52,183,188,107,253,225,83,140,227,3,154,78,122,119,77,230,242,115,165,241,63,251,223,248,155,252,165,205,162,223,15,214,252,164,121,249,23,125,96,156,36,102,190,223,63,218,243,244,168,245,58,243,194,122,54,247,101,228,206,141,198,168,220,6,231,54,8,133,100,180,7,239,179,59,11,238,241,124,249,107,23,104,244,87,83,30,119,172,244,144,10,168,36,42,193,147,174,128,42,251,174,46,74,159,8,154,148,150,186,50,8,36,53,249,66,250,70,39,2,98,238,139,10,17,136,172,149,240,182,10,44,204,54,13,76,122,21,139,152,89,193,120,137,69,232,211,184,15,86,208,223,198,228,216,139,138,15,237,132,78,243,87,127,123,37,221,89,228,253,115,243,224,250,147,1,151,178,101,163,186,177,48,247,184,219,
213,163,151,12,176,92,91,230,250,161,188,173,59,28,155,153,146,188,116,82,65,34,232,52,198,109,96,205,170,48,70,112,64,3,63,162,100,227,203,88,150,65,72,60,229,154,60,103,10,52,132,8,109,33,94,211,79,16,159,118,206,1,251,247,51,104,239,17,153,147,184,154,210,59,68,105,220,193,184,73,43,237,19,169,42,134,67,130,226,76,135,118,219,179,19,37,102,5,30,172,46,176,37,24,62,69,210,62,201,250,166,133,252,228,174,80,92,228,195,11,94,53,171,125,226,151,247,161,228,240,65,201,219,115,30,142,47,251,225,125,8,12,137,36,175,121,215,239,53,133,61,121,80,188,54,183,135,188,151,57,97,58,173,254,234,113,15,167,184,90,31,85,155,39,125,141,87,15,222,221,15,36,207,150,36,27,19,162,27,170,135,26,89,15,69,234,63,16,185,107,62,105,39,59,133,143,181,38,53,246,99,224,19,48,116,247,87,133,106,198,224,183,217,32,22,137,46,26,177,3,120,212,241,157,243,238,44,81,48,251,230,118,130,43,207,167,229,64,188,174,94,33,153,206,240,83,
55,81,223,84,145,38,8,98,47,111,145,35,181,248,179,164,0,122,156,15,112,98,39,99,204,121,144,151,207,99,186,64,87,74,77,41,85,214,205,10,0,126,40,117,251,94,67,109,195,171,175,128,173,96,67,94,88,137,148,212,189,217,82,18,38,252,187,1,148,159,101,54,166,78,87,168,182,229,205,6,184,8,137,227,32,76,92,116,9,91,236,5,83,58,73,47,165,4,8,193,163,178,237,238,64,12,47,242,150,117,168,15,89,188,94,157,30,169,184,228,188,90,31,209,2,197,113,139,101,180,204,137,63,193,115,19,88,55,136,142,50,245,56,108,152,112,160,61,110,249,85,107,64,235,201,111,18,7,164,138,199,60,93,251,22,190,112,232,43,198,125,143,221,209,78,175,80,172,132,24,221,4,222,132,125,182,115,108,194,185,166,63,70,169,158,0,197,146,54,125,1,171,59,50,252,35,217,225,44,57,132,179,42,19,105,149,101,199,25,108,209,74,35,217,97,99,248,116,94,20,26,159,82,196,26,197,180,238,246,60,20,13,185,114,184,152,33,31,71,185,11,242,242,97,169,103,
208,181,204,140,192,37,227,169,19,191,19,187,49,223,188,193,51,254,201,102,67,209,254,136,75,27,63,58,169,179,253,235,13,40,239,253,74,53,254,166,238,87,26,156,168,79,79,155,82,239,71,69,118,18,36,183,61,121,4,103,223,98,124,177,154,86,200,166,229,105,223,39,107,143,45,156,140,81,247,242,43,205,230,85,222,202,195,201,154,81,144,117,166,242,2,119,33,245,16,149,7,142,67,44,95,134,107,32,133,80,194,99,159,20,45,113,212,44,250,188,48,217,177,167,170,224,225,27,217,109,54,228,98,73,241,249,140,24,44,33,52,42,130,120,223,214,156,206,20,81,79,168,215,99,9,123,112,46,78,115,217,252,221,159,35,175,219,248,242,209,189,219,215,135,169,127,128,226,127,240,98,17,197,117,81,254,245,98,220,204,253,246,100,191,226,250,157,60,255,69,127,182,198,73,218,127,175,83,222,235,105,88,52,249,89,143,219,55,255,230,142,201,209,219,43,229,199,56,4,51,138,114,99,110,182,21,60,189,204,40,219,186,65,126,117,218,229,24,92,46,151,60,255,201,216,188,
236,207,10,159,118,122,119,103,137,156,13,167,145,151,33,100,135,199,150,218,22,96,238,156,209,249,29,82,148,244,48,172,229,108,161,224,189,84,85,102,197,114,191,78,212,83,200,57,183,242,101,82,239,146,71,60,193,161,119,158,155,13,28,133,80,81,99,152,233,203,101,191,71,80,181,46,17,141,199,135,161,202,184,97,141,211,113,87,53,68,16,207,27,161,166,122,178,235,181,154,80,9,15,170,250,214,73,144,100,122,45,199,236,220,157,87,181,213,201,59,185,218,14,247,25,87,169,229,119,40,198,81,125,51,62,186,145,167,87,57,141,198,23,58,74,78,221,233,183,183,238,58,89,184,28,141,230,90,17,254,220,139,115,212,205,79,187,177,230,202,217,164,87,18,71,99,141,136,88,200,150,92,217,89,190,30,181,107,65,93,99,107,220,31,43,13,204,93,58,62,122,111,199,180,140,125,1,232,109,194,52,43,63,24,94,199,15,63,16,64,216,254,40,199,122,27,69,97,199,232,18,190,111,157,56,155,43,30,26,184,239,140,23,155,100,88,217,100,240,115,19,157,217,230,135,135,
40,176,242,30,6,223,221,107,60,167,123,196,94,197,202,252,120,55,118,25,68,218,106,41,44,106,190,143,44,32,174,61,90,16,202,206,139,73,99,5,62,152,116,39,61,133,3,192,98,28,160,19,219,13,74,225,99,52,27,243,253,145,46,93,176,240,32,85,80,72,81,26,143,51,159,138,218,104,189,11,69,155,44,169,193,135,109,28,243,123,235,108,216,73,55,70,3,112,62,53,159,172,57,136,112,72,35,197,39,131,27,30,35,126,238,60,163,204,210,197,193,88,160,202,25,174,215,28,189,190,249,188,123,13,80,92,35,123,175,92,186,61,214,244,2,83,121,231,64,230,216,109,197,128,29,253,140,8,119,145,63,15,149,129,151,67,169,18,239,115,179,242,213,26,215,198,71,111,153,2,228,3,219,53,84,40,68,252,230,105,150,6,78,125,232,102,151,87,60,186,114,214,253,33,89,58,59,72,151,84,224,166,150,135,78,202,30,52,234,36,118,82,161,218,178,15,57,217,180,145,90,234,54,230,121,224,143,136,56,223,61,221,98,192,178,162,11,10,174,79,47,239,25,46,178,179,
187,179,28,76,161,236,113,173,45,177,20,165,131,163,146,216,11,67,222,194,146,97,254,3,47,240,137,75,103,79,195,35,112,34,5,246,201,205,224,47,66,53,243,243,167,98,201,32,124,38,212,198,207,78,212,68,166,59,23,106,69,22,245,30,153,116,154,90,92,85,125,182,172,29,142,107,224,170,13,153,31,157,88,173,7,1,126,51,76,155,133,50,215,51,204,105,8,133,163,11,178,129,133,47,37,157,22,29,231,59,149,66,179,106,85,179,90,148,199,130,159,134,152,231,185,240,51,90,87,92,167,8,150,176,3,73,18,165,3,21,192,108,24,11,16,21,215,118,11,86,134,76,66,104,200,136,183,31,101,110,224,86,128,132,231,226,103,134,176,100,63,102,126,39,193,217,183,116,8,133,108,164,209,160,87,245,234,117,11,154,93,184,225,75,4,149,14,101,162,236,40,181,14,58,191,138,68,50,104,106,82,173,222,34,51,205,196,83,28,232,83,28,248,161,56,208,221,64,169,201,223,14,197,130,151,73,232,117,212,239,55,137,45,23,192,152,133,163,7,76,188,83,178,205,19,118,
135,183,167,150,46,94,166,224,176,198,173,184,76,23,161,63,149,253,67,83,157,87,187,153,86,229,65,145,155,129,24,197,176,191,184,242,184,192,152,176,2,219,236,174,226,120,119,23,212,160,227,250,212,209,9,196,27,248,105,32,88,95,237,193,56,112,152,149,179,171,7,55,93,235,108,253,43,222,141,57,56,164,91,116,254,168,242,125,175,242,159,64,29,111,20,39,182,20,39,158,132,63,124,209,105,171,42,243,24,40,215,49,252,207,56,144,255,95,136,3,231,56,233,205,92,221,63,214,174,20,222,146,82,127,198,246,73,207,154,247,4,114,120,26,59,237,98,124,96,98,42,150,255,152,38,125,191,45,166,120,77,255,202,129,49,89,178,55,51,78,89,118,229,45,7,106,198,73,6,35,116,56,143,71,8,248,169,67,13,89,80,222,8,226,116,155,60,33,204,84,90,113,4,181,72,155,37,247,42,145,197,245,13,43,7,85,146,204,27,199,6,56,200,132,28,183,83,176,28,111,35,103,160,42,57,217,170,236,248,37,148,245,11,132,213,35,122,36,67,52,223,58,214,63,63,18,
235,12,11,187,171,45,231,28,17,217,249,182,173,66,31,201,147,138,42,193,7,51,99,192,64,210,97,159,170,240,97,23,208,56,240,8,67,238,53,115,72,106,243,20,183,54,134,171,140,54,171,8,46,6,145,137,133,94,98,125,146,33,150,19,241,230,128,86,71,169,68,184,143,94,37,137,186,234,104,17,137,14,154,42,28,54,66,5,35,39,137,7,42,14,188,52,47,223,228,102,58,153,196,86,97,142,72,84,146,235,40,129,13,60,9,182,73,163,79,166,131,183,188,166,117,60,113,199,225,10,89,13,224,10,215,104,7,235,97,216,9,22,186,194,131,60,132,226,77,164,49,199,63,244,155,196,80,174,146,24,1,94,126,125,158,28,202,110,226,254,165,43,173,223,144,230,10,63,252,83,9,55,209,27,175,246,112,140,63,28,65,17,180,185,118,65,2,203,187,215,97,208,187,134,43,34,169,92,45,78,226,217,178,151,201,108,121,192,241,246,195,167,67,31,97,169,115,221,139,88,202,169,164,115,255,142,207,182,144,252,108,139,57,119,171,133,125,110,206,217,156,55,107,83,148,1,
19,178,172,17,65,229,48,139,92,149,125,31,219,6,18,26,226,85,31,252,247,126,22,249,202,188,58,10,11,68,135,78,84,121,240,181,231,5,173,39,213,209,8,186,81,248,122,194,11,102,145,145,6,212,31,82,244,139,68,168,83,71,214,187,62,121,217,25,178,147,44,21,248,77,5,57,34,129,186,155,101,45,186,177,247,36,19,158,115,83,58,232,182,242,235,67,108,196,211,3,74,165,120,57,117,213,224,9,91,222,6,89,64,248,213,123,61,45,233,245,82,185,238,137,137,149,160,22,3,211,42,4,165,143,242,23,124,107,148,151,163,93,52,57,78,163,45,98,141,188,162,209,88,9,78,205,94,219,85,135,247,77,108,226,61,17,106,20,217,31,163,9,108,57,248,60,204,19,60,14,173,39,185,220,147,153,155,216,36,82,77,134,119,244,94,216,53,22,50,217,237,9,101,211,139,17,52,141,35,109,175,186,211,139,80,78,5,221,222,136,219,117,128,43,224,216,39,23,57,202,85,148,88,196,81,6,184,233,86,157,231,249,93,123,128,17,229,21,148,253,114,236,222,90,52,241,
110,166,1,121,219,226,219,63,163,152,82,221,141,92,31,248,100,163,188,211,166,195,79,248,105,33,235,44,163,152,30,222,104,122,13,21,223,97,65,102,64,107,236,219,33,68,108,119,184,108,210,16,186,228,53,244,179,223,63,120,240,89,134,158,49,47,22,231,75,195,103,105,230,243,12,65,35,102,202,86,40,186,198,169,157,120,48,50,147,143,8,196,156,144,110,121,65,221,240,187,132,66,1,114,205,34,153,181,57,157,192,56,139,180,157,116,223,242,30,97,199,27,200,169,143,166,110,38,181,56,49,148,198,83,114,103,212,228,161,124,172,180,64,168,250,72,105,189,190,182,163,137,246,216,65,153,141,66,23,241,233,38,185,230,219,196,7,47,145,162,121,162,137,3,228,251,252,157,115,181,253,86,181,203,198,120,193,126,21,155,15,102,252,27,89,6,75,231,171,191,193,90,187,221,65,86,54,38,130,217,36,253,87,56,145,255,7,156,200,207,252,127,133,19,255,188,24,203,253,247,95,247,50,155,190,15,191,125,189,226,63,110,122,243,127,253,31,255,228,85,216,93,174,145,210,217,
222,204,103,191,217,245,160,232,243,199,38,40,43,233,140,223,145,94,56,147,121,99,234,35,188,238,144,13,239,155,53,177,63,205,234,40,234,54,222,137,47,73,149,159,120,217,238,71,97,63,77,202,170,231,209,1,191,174,104,235,60,170,54,119,206,232,110,62,96,113,217,110,212,126,244,197,231,255,249,191,255,15,58,168,127,251,159,255,195,233,50,66,71,222,255,234,151,102,40,178,161,252,94,66,37,81,87,70,205,208,127,151,211,252,22,200,127,252,219,95,174,163,166,63,87,178,117,245,111,47,164,210,130,191,92,127,254,163,190,31,162,38,141,186,244,111,90,253,183,63,150,232,252,222,88,249,143,118,180,205,243,247,149,215,127,113,83,46,101,220,192,189,91,250,118,183,19,86,7,66,91,221,143,105,230,125,66,174,200,115,109,179,32,211,97,133,65,115,222,159,104,107,127,157,189,169,141,58,143,133,189,148,96,254,46,93,233,132,60,108,153,35,165,34,123,184,251,208,126,213,19,79,222,155,47,123,248,83,52,127,92,247,253,235,25,82,26,241,93,82,196,207,255,202,237,35,
57,53,139,125,190,201,119,27,138,13,8,106,173,173,213,103,189,134,242,155,27,44,181,95,51,252,144,201,208,117,8,226,128,130,235,214,167,16,4,158,22,130,249,25,172,67,2,29,202,107,79,20,171,36,115,84,114,197,198,250,222,233,42,222,116,152,81,154,254,60,173,249,179,252,185,76,191,202,251,218,45,149,178,48,11,127,201,203,91,54,191,50,218,236,103,113,210,175,148,134,241,38,253,26,248,119,17,211,119,221,212,119,235,235,191,40,253,223,127,14,47,251,191,92,1,255,234,235,167,151,255,248,183,54,235,190,139,156,254,159,111,85,252,127,68,3,157,60,48,236,253,96,98,135,176,231,214,181,31,247,219,190,91,234,246,228,127,232,140,237,62,103,74,96,235,245,194,183,174,20,242,140,209,241,158,13,234,109,150,37,161,86,148,123,237,153,91,197,176,159,160,181,9,70,216,12,235,240,74,51,192,161,117,109,248,238,187,153,11,154,208,12,43,37,57,34,55,4,60,73,37,153,100,227,226,45,20,40,189,183,225,179,190,201,119,151,56,102,201,95,62,106,194,172,6,215,
250,209,131,98,238,251,33,97,111,159,202,187,237,47,49,69,154,251,207,120,210,133,138,148,182,191,191,43,110,83,216,44,207,158,204,207,199,76,71,166,57,250,202,101,156,159,176,12,185,125,183,201,69,24,228,172,191,167,180,39,143,192,201,16,106,167,60,130,19,18,94,252,119,147,167,230,117,81,14,77,67,249,237,213,239,79,56,120,235,114,208,169,220,37,131,251,178,63,26,66,81,23,26,222,207,138,167,207,42,217,107,138,219,205,123,226,102,169,134,177,153,199,72,73,143,58,99,107,227,110,245,209,75,231,189,125,214,237,240,227,179,157,22,81,217,202,243,214,40,211,236,84,7,133,62,199,186,190,190,211,233,67,135,203,247,52,110,239,133,236,56,41,83,1,243,21,14,3,156,54,135,23,51,39,121,241,186,216,139,90,78,172,57,230,119,225,233,151,118,118,108,5,162,239,156,214,245,220,80,28,12,64,36,141,27,80,161,22,103,104,62,19,49,65,203,152,188,165,227,220,48,39,178,255,244,97,33,52,77,25,101,199,115,224,173,243,77,96,108,81,42,144,216,86,92,114,
158,210,16,172,224,72,132,162,154,117,253,165,233,232,245,134,64,71,22,128,145,52,109,13,197,123,59,107,42,26,84,189,244,183,106,10,93,79,155,68,242,143,210,180,90,42,218,66,147,75,4,19,245,200,74,187,220,138,161,246,56,22,125,176,21,94,206,131,156,75,197,9,70,188,120,189,60,225,168,227,43,254,76,46,0,120,243,174,121,157,116,240,168,137,180,108,123,220,194,105,59,59,235,126,133,98,123,57,23,55,89,126,177,91,228,137,153,196,131,160,135,130,128,214,153,129,66,34,206,33,12,37,67,97,92,130,14,25,190,146,211,57,122,144,60,115,149,199,153,60,246,29,197,55,182,244,112,189,182,230,125,198,216,142,170,68,121,229,57,187,58,146,170,20,103,179,70,183,71,153,216,167,113,188,227,142,236,206,157,211,119,210,72,164,24,4,192,68,138,177,47,157,192,88,207,166,84,219,39,88,54,198,69,252,168,2,47,224,245,41,64,209,147,86,112,210,76,40,221,69,79,115,142,165,41,33,10,217,95,244,204,197,171,112,66,219,46,55,167,173,175,136,56,17,138,112,
222,204,229,181,51,104,228,132,237,53,240,181,194,235,55,252,198,207,189,215,230,30,206,234,107,218,6,236,150,167,54,5,141,148,186,190,183,15,42,32,220,245,242,18,249,48,181,79,89,80,158,230,3,191,215,205,240,29,8,126,98,187,73,180,183,87,53,41,178,167,249,172,94,155,244,177,147,133,139,182,156,237,6,172,183,24,182,206,200,159,132,70,47,247,217,49,75,220,94,168,164,26,34,126,223,36,222,48,107,252,190,243,101,39,79,183,66,226,100,134,13,182,117,148,203,71,187,155,138,57,183,158,140,43,115,65,8,183,254,147,160,21,147,6,235,223,141,63,184,102,31,154,22,188,37,238,36,60,11,216,75,91,70,47,39,81,81,81,39,10,234,89,96,146,125,14,46,174,55,222,85,185,183,210,186,249,52,11,146,159,67,152,113,120,52,143,74,52,193,222,62,78,190,252,209,231,183,129,138,54,80,214,141,158,108,50,147,142,93,92,62,250,125,174,214,13,157,24,22,78,171,173,255,42,184,135,253,33,212,189,6,178,165,135,149,124,231,79,170,118,211,246,23,19,153,64,
101,212,234,18,43,69,178,30,15,78,222,108,108,156,40,217,162,206,65,7,226,93,216,10,206,3,189,156,56,107,137,6,185,26,205,137,46,248,172,211,167,207,138,243,21,35,241,204,121,210,28,196,60,112,32,46,135,181,207,224,134,115,21,17,29,253,229,98,28,143,146,178,143,38,33,179,214,93,168,193,46,254,191,91,59,147,29,102,117,108,11,191,202,25,23,210,53,61,120,24,2,129,132,54,132,208,73,37,21,1,76,128,208,55,1,63,125,145,255,84,77,238,240,234,142,98,69,193,177,55,236,229,245,9,240,118,157,131,58,88,16,65,226,117,211,166,85,108,186,10,184,61,236,100,13,220,157,234,126,129,239,150,84,185,17,215,181,221,72,177,165,232,150,155,5,250,14,2,53,217,41,234,2,119,135,111,153,82,172,243,29,177,175,210,93,174,204,42,152,69,38,51,6,145,112,85,213,128,237,114,101,24,82,166,175,206,42,40,47,82,164,66,209,197,192,15,79,160,181,222,135,252,145,245,173,245,72,232,192,144,176,83,42,18,83,157,138,155,98,123,210,161,157,105,96,208,
214,118,122,115,7,131,124,13,191,73,162,27,244,40,80,230,195,161,56,89,0,37,94,91,183,80,72,160,121,62,14,106,202,28,136,73,215,205,45,49,129,22,197,204,223,199,60,116,136,118,198,173,242,170,110,144,16,97,81,145,157,59,76,19,46,106,226,223,246,3,71,26,230,175,189,69,253,29,230,186,97,66,57,19,0,61,254,234,33,203,28,215,104,244,213,188,196,73,4,242,145,16,142,97,140,142,101,131,114,34,30,226,73,110,137,26,233,158,6,98,145,151,25,122,179,194,124,120,1,172,203,188,86,60,115,86,230,152,176,111,251,10,10,43,54,24,84,53,213,216,32,158,181,57,124,203,246,134,245,184,205,139,215,161,130,120,222,5,10,74,179,115,172,56,155,183,200,64,35,150,222,104,139,102,181,200,218,11,66,219,179,57,47,76,22,120,7,226,76,179,182,152,173,18,31,105,98,53,235,80,24,62,239,148,207,168,133,19,28,42,6,171,129,78,192,107,151,52,201,131,6,113,97,154,115,169,251,193,195,112,252,175,37,230,66,201,54,170,140,175,72,111,63,112,176,175,
84,84,37,171,194,88,44,142,5,131,216,145,21,42,19,50,31,137,248,16,85,193,176,112,203,50,164,142,234,229,108,3,242,125,71,79,193,200,240,200,210,172,23,195,45,71,38,255,88,147,184,6,125,48,29,210,84,42,45,32,101,150,148,132,29,127,153,130,7,129,120,75,27,213,99,205,51,163,150,212,199,252,160,219,229,73,7,189,35,38,10,164,202,42,8,23,241,177,237,195,44,137,81,135,25,123,49,140,144,186,53,14,163,126,110,214,105,17,115,68,248,166,152,75,206,123,30,137,179,140,163,80,55,47,244,73,205,247,219,211,92,117,166,66,66,151,191,176,188,133,203,196,38,24,70,250,19,30,24,198,115,150,74,132,254,217,35,178,51,177,248,4,212,182,86,75,108,150,17,34,167,126,246,223,48,58,245,66,221,61,44,80,218,28,199,41,204,161,32,54,131,229,34,76,187,83,143,24,74,122,121,90,248,182,99,134,189,117,108,15,136,193,146,34,119,189,136,35,125,66,245,73,171,162,241,123,119,246,232,98,249,181,255,187,233,73,174,150,92,244,195,244,6,49,91,193,
66,56,168,202,19,46,188,2,107,6,82,18,235,171,5,145,171,193,154,234,55,65,184,4,189,157,156,129,82,1,205,124,159,220,9,74,68,153,127,132,189,47,225,200,80,86,207,240,207,171,240,16,7,5,81,46,111,180,111,199,201,180,91,91,188,81,183,249,149,108,70,9,223,128,176,113,4,41,87,167,141,163,236,153,151,154,150,178,107,56,106,191,173,19,74,118,107,149,116,227,99,123,199,234,25,92,228,180,238,162,67,121,223,199,101,89,175,86,139,235,53,200,10,112,136,18,217,10,110,43,140,21,59,152,231,208,204,129,151,69,185,167,61,69,213,84,76,234,122,232,95,133,172,117,48,132,209,56,236,96,117,14,30,144,217,195,193,9,34,35,233,190,186,28,106,68,78,80,21,222,174,179,100,134,252,245,70,182,17,127,38,120,30,251,193,111,62,238,196,83,211,148,146,179,39,130,210,164,32,3,30,225,185,163,87,77,60,64,71,86,138,239,29,108,183,83,253,2,15,127,188,217,249,231,200,148,124,55,62,1,92,51,235,220,172,107,74,250,188,228,216,64,166,15,44,138,
50,246,58,10,74,148,88,160,181,143,232,224,254,8,38,186,87,70,0,106,163,44,160,211,231,62,253,152,28,175,145,115,70,201,203,13,148,37,42,30,191,115,211,85,203,238,182,183,156,250,84,125,158,54,175,146,109,213,209,161,184,123,96,52,31,246,170,77,129,51,127,189,198,116,164,8,108,146,253,158,73,101,125,0,230,165,10,189,129,251,9,26,76,235,213,114,201,76,78,244,225,191,218,222,201,115,107,190,37,71,108,212,10,113,198,130,253,240,136,251,183,31,52,166,160,50,234,101,186,207,56,161,145,29,91,103,159,143,35,77,5,148,197,248,83,13,101,188,247,181,226,162,72,60,108,145,200,167,103,142,137,229,241,243,125,198,128,201,97,146,137,31,142,71,31,124,232,74,154,174,114,177,2,149,102,233,175,42,32,171,232,4,80,123,178,144,225,111,247,128,184,253,112,138,86,18,115,16,152,96,208,37,171,27,140,37,157,36,154,100,3,170,223,214,241,78,230,31,102,119,158,71,255,38,19,207,121,197,217,230,168,20,0,104,204,173,163,168,151,27,204,151,91,114,192,239,
235,166,190,137,107,158,9,244,56,182,143,121,146,125,253,170,13,183,88,15,72,210,184,211,171,187,144,205,153,27,245,229,49,177,209,82,230,86,135,57,65,145,122,225,9,19,102,200,110,191,87,151,121,139,20,238,171,162,144,204,119,134,47,134,193,167,75,216,209,79,195,223,173,51,127,13,114,131,154,241,110,19,67,37,241,239,242,87,28,6,24,96,24,190,217,163,223,159,85,58,134,94,55,114,194,85,123,54,214,19,204,139,184,154,39,138,110,159,4,113,132,2,66,145,144,76,159,72,36,66,236,196,244,66,196,18,193,142,162,40,29,204,205,31,141,175,12,57,159,99,13,118,151,225,22,114,135,99,221,171,237,123,240,164,38,148,43,254,106,212,71,27,143,198,201,97,62,97,91,172,213,213,97,14,10,45,208,170,59,154,132,146,112,184,251,25,57,24,119,98,31,218,229,195,62,47,65,246,241,91,153,185,197,128,207,252,99,157,88,116,232,32,20,132,252,194,67,19,129,204,159,29,1,156,134,218,228,27,242,199,100,215,54,253,237,170,112,128,250,65,20,109,137,202,244,79,
161,228,191,198,223,199,255,252,117,78,218,191,94,191,186,211,83,119,240,90,155,255,231,153,161,243,60,126,254,69,252,253,154,218,247,157,231,255,183,10,63,63,66,161,254,20,38,89,87,250,150,168,126,114,122,171,186,244,60,119,215,186,148,202,226,252,38,111,254,169,190,123,202,181,78,145,175,110,101,92,193,91,254,105,212,184,89,235,46,36,131,216,16,174,139,188,57,245,173,122,156,174,143,154,127,90,170,244,123,11,143,80,172,106,180,95,33,193,209,217,146,29,224,194,109,56,74,173,255,82,11,145,154,32,230,8,158,114,32,193,173,205,146,173,79,168,185,156,187,3,95,242,57,223,5,205,37,203,63,23,235,99,234,132,248,219,90,7,39,194,222,141,237,112,225,173,25,143,117,232,222,230,139,147,24,173,155,18,122,251,54,160,139,92,141,140,213,60,98,165,231,125,227,132,183,237,47,228,11,94,22,210,3,202,66,222,191,145,5,200,206,250,221,81,87,127,91,45,16,163,211,157,51,165,234,186,236,178,110,78,214,128,160,22,7,77,154,115,209,11,135,62,116,181,197,146,
119,241,37,51,7,189,92,104,242,137,30,36,175,180,110,75,62,156,50,100,215,188,150,201,0,94,86,87,67,31,78,140,79,34,47,45,140,64,54,200,137,133,111,179,130,238,14,133,211,155,155,46,1,185,219,185,231,20,81,166,64,118,93,14,69,214,51,29,117,177,200,28,174,37,25,191,205,44,126,18,140,20,137,188,175,207,58,99,213,153,21,168,208,57,209,158,251,160,88,155,119,241,61,203,37,215,96,45,194,64,195,135,63,9,110,69,62,193,203,222,100,155,10,23,250,195,190,41,136,110,68,201,184,247,76,17,40,69,37,178,195,116,13,167,92,88,220,99,64,85,123,255,50,97,209,68,87,115,169,33,57,211,37,228,237,188,108,217,247,162,64,178,92,70,173,185,11,235,142,41,198,11,151,151,142,214,27,12,192,99,225,111,114,231,228,221,61,100,150,215,65,233,109,12,146,196,126,157,179,84,148,157,238,68,151,27,233,3,69,102,186,241,174,130,179,115,6,93,88,44,179,54,126,198,230,201,16,160,160,184,105,126,113,39,220,8,236,68,116,150,208,38,4,216,27,25,
177,106,76,30,227,102,144,189,158,203,129,103,100,44,52,196,26,188,59,249,37,139,104,31,248,48,124,140,188,179,254,214,188,92,43,188,214,108,175,178,250,18,28,232,112,18,172,122,22,237,21,95,58,195,125,220,152,210,244,58,13,174,23,32,200,134,56,11,149,168,126,206,164,212,33,22,81,136,212,50,109,136,10,152,236,17,42,22,109,189,97,199,208,236,117,178,9,240,149,211,85,92,161,123,65,57,11,180,85,106,139,145,158,79,165,65,44,223,195,80,60,37,13,24,179,74,141,57,148,94,35,126,237,122,239,19,26,33,28,182,243,169,195,116,13,184,194,181,191,134,248,20,191,135,47,34,168,68,252,209,81,146,6,146,201,168,128,139,76,202,202,127,247,155,206,162,153,247,151,146,211,166,75,174,104,243,89,56,209,155,43,186,185,18,206,170,32,81,30,163,253,74,104,207,151,82,108,15,55,150,68,146,240,217,156,220,225,215,183,243,94,54,149,184,194,154,186,219,217,73,159,9,64,117,195,114,225,201,135,241,0,141,38,96,219,61,119,216,88,238,107,250,126,115,213,5,
231,88,230,224,158,238,146,147,38,114,224,164,232,245,142,33,6,18,210,95,189,58,43,46,249,201,11,157,12,177,203,56,167,244,161,251,123,68,26,196,181,200,38,105,169,211,187,154,0,65,107,78,161,220,4,16,66,226,230,12,18,127,126,185,246,172,36,100,24,168,64,200,20,255,72,151,163,47,19,94,105,146,35,165,198,185,254,82,24,246,92,119,94,190,187,168,56,202,57,23,206,97,133,98,65,95,87,152,190,8,66,94,243,84,39,61,221,1,124,80,218,137,17,243,41,47,97,173,200,35,4,98,59,146,166,185,106,106,173,148,180,236,93,35,216,22,3,15,62,134,174,45,58,245,17,50,98,255,30,115,149,193,131,124,96,114,121,32,53,93,100,65,94,73,13,95,163,0,237,207,129,240,239,21,78,157,218,86,97,108,44,94,171,83,180,56,30,215,203,188,154,34,137,102,20,2,68,210,152,166,109,172,209,213,236,80,231,134,15,228,123,229,220,197,157,37,207,192,73,61,226,11,4,135,155,37,204,233,33,142,244,37,62,195,53,166,241,122,93,102,36,174,25,67,130,203,
203,131,34,192,8,142,105,158,97,63,157,1,13,218,33,100,80,74,54,152,78,128,47,30,151,234,35,105,43,9,64,169,165,243,244,160,44,237,88,224,185,211,69,101,191,90,83,135,87,65,161,115,121,135,15,122,175,32,205,24,104,51,225,192,149,149,32,123,123,40,180,31,18,111,237,0,14,119,25,11,207,17,191,5,11,244,77,153,36,6,38,14,63,84,132,176,145,237,2,11,178,249,229,112,160,161,147,72,150,56,73,150,76,170,86,171,42,31,113,203,52,55,1,241,234,16,179,130,205,44,161,237,28,113,33,158,185,200,212,191,241,185,185,190,30,189,213,19,155,238,183,13,56,137,24,166,64,32,42,17,69,148,119,76,183,148,5,99,59,103,159,189,2,54,110,67,129,121,241,13,11,88,198,28,30,56,230,110,37,210,65,129,155,81,155,220,198,31,14,38,178,191,156,245,101,136,38,116,16,110,119,234,239,239,147,175,192,213,67,83,238,137,46,119,194,90,228,177,72,95,129,16,78,247,134,106,226,105,164,64,213,188,211,104,221,86,246,37,216,249,251,252,10,226,246,193,
172,196,112,76,179,27,77,143,61,48,74,147,137,175,88,154,244,228,57,13,68,100,92,2,43,219,60,134,196,206,171,156,49,170,132,245,112,240,155,83,174,28,202,99,149,104,165,49,96,84,77,32,193,23,121,68,115,244,145,1,91,184,201,248,4,193,240,162,187,29,8,109,123,39,40,49,104,99,54,2,48,88,4,204,234,142,41,67,70,243,231,237,77,28,82,146,64,135,234,72,179,58,8,73,203,217,102,205,30,233,177,252,191,226,117,115,9,2,237,25,139,110,94,55,155,136,237,24,25,40,34,49,45,184,11,35,108,14,207,195,228,92,219,7,193,197,55,238,18,79,188,149,19,136,21,82,73,239,143,208,86,38,49,27,86,155,170,174,10,32,235,136,98,246,61,67,17,110,26,64,137,181,152,224,61,182,216,205,148,190,68,134,134,66,83,92,168,170,36,18,25,119,209,225,183,48,10,75,217,79,111,48,222,241,139,151,136,61,29,145,79,59,129,120,120,247,213,2,25,186,128,145,120,112,227,162,114,31,230,52,169,146,157,247,185,20,95,22,225,160,171,250,15,93,229,96,
192,97,38,226,131,174,194,77,160,44,100,162,203,26,4,7,20,122,166,195,49,147,183,249,240,234,30,231,208,211,138,230,30,228,52,113,97,30,92,97,28,89,134,252,226,33,46,55,97,176,70,46,226,243,153,111,77,40,190,211,12,234,41,1,27,213,57,146,254,148,38,88,136,89,234,83,246,180,2,174,226,41,103,126,183,231,233,26,107,66,141,67,217,123,222,144,35,14,162,137,36,208,79,93,158,31,19,203,62,167,7,81,248,249,163,231,43,221,244,147,35,63,227,23,247,219,3,230,179,206,103,18,88,236,187,91,219,64,115,174,168,143,223,21,152,7,14,102,111,7,142,190,121,176,131,71,242,35,100,156,170,49,33,49,97,174,51,186,64,44,110,137,23,99,114,182,68,36,96,217,111,143,72,206,68,216,78,121,126,183,218,65,171,172,239,198,126,42,35,155,110,32,45,14,152,110,166,74,140,18,67,226,209,69,139,211,120,215,19,0,211,241,118,146,202,175,158,235,23,194,208,2,106,60,245,55,134,130,165,211,228,241,161,140,220,209,57,149,16,73,210,246,96,78,62,181,
3,219,210,182,205,208,23,154,143,157,92,13,88,203,94,124,40,112,213,164,214,40,177,142,177,43,222,129,88,254,25,248,239,227,87,100,129,208,17,6,220,26,232,170,142,220,115,191,46,32,17,185,137,122,78,61,172,233,43,28,139,149,105,131,238,14,134,222,52,77,7,181,151,176,124,163,242,75,6,139,119,91,219,252,240,168,216,9,53,71,229,104,33,12,156,3,84,194,49,37,183,118,77,214,37,189,205,181,54,226,108,231,210,24,155,110,93,164,187,120,251,205,35,81,248,254,210,150,187,32,254,118,155,101,154,102,33,130,133,142,173,193,78,41,94,204,121,65,226,113,233,208,197,236,52,85,218,216,201,227,206,227,74,202,179,246,13,241,16,126,212,207,0,245,74,176,69,251,75,97,38,59,76,250,90,165,89,68,93,48,92,38,138,89,111,89,7,226,98,217,220,197,99,54,203,208,217,250,242,93,162,6,240,104,40,90,152,120,90,144,9,9,135,45,78,158,232,88,209,114,97,107,70,39,129,66,7,169,49,139,192,56,57,4,125,94,98,49,65,60,99,18,103,182,168,232,
118,218,227,19,226,235,26,242,161,66,8,68,163,46,121,34,224,141,58,98,219,172,78,0,176,59,130,144,95,57,34,85,29,90,247,243,197,229,147,251,78,221,247,169,229,187,27,209,27,143,67,241,180,6,114,30,14,205,41,225,236,116,12,210,227,164,46,191,99,165,53,125,190,123,3,198,100,128,146,23,77,204,220,243,197,239,30,205,105,159,186,15,255,247,241,47,115,206,82,42,222,55,38,190,50,205,170,243,27,189,218,137,197,137,97,251,244,232,150,209,47,77,38,234,135,31,209,236,94,53,113,25,224,61,141,60,202,117,29,88,145,144,89,141,192,233,193,41,156,51,113,6,212,178,4,171,77,96,122,205,67,187,228,111,182,69,191,242,73,34,156,27,255,222,116,39,248,168,202,175,172,146,13,183,247,216,44,3,215,29,154,176,57,86,69,173,34,31,189,115,14,61,215,87,214,232,21,10,166,224,78,87,43,182,111,211,204,147,139,67,166,92,194,112,221,250,27,42,211,130,229,91,244,156,198,244,248,238,90,68,69,79,170,108,138,213,175,74,228,36,205,70,5,53,59,152,
193,139,211,45,231,248,23,130,102,118,138,193,97,59,19,185,253,194,220,70,139,182,124,36,198,33,125,248,82,7,79,200,51,118,113,122,17,12,38,201,125,149,65,182,247,111,129,97,41,252,118,134,60,115,206,239,116,37,147,7,203,23,231,234,103,75,251,132,129,227,231,227,204,158,47,86,140,162,249,45,46,67,129,68,202,123,102,39,13,108,120,63,123,58,165,170,55,106,8,46,107,254,253,14,81,68,145,89,38,61,216,76,120,208,18,95,242,185,208,190,223,3,227,155,215,67,169,223,92,250,189,224,208,79,201,184,98,86,215,62,37,187,196,53,155,188,107,232,26,37,248,64,97,209,219,251,2,213,87,130,217,14,154,224,37,174,80,123,242,21,215,9,103,40,68,157,125,202,198,5,111,251,158,148,7,33,54,35,176,34,160,19,18,223,105,193,51,109,174,213,202,111,170,93,228,137,68,25,220,16,100,139,72,138,147,246,36,115,23,44,196,61,73,164,35,63,244,2,148,62,225,75,64,239,196,242,242,107,168,163,88,74,132,239,10,202,40,14,50,113,241,57,197,248,53,110,
33,247,212,196,161,218,175,127,26,201,186,95,53,206,215,166,199,186,119,14,235,135,245,253,79,227,131,62,119,244,29,72,214,30,228,1,232,226,112,30,190,188,184,59,122,53,236,246,240,117,242,178,35,70,98,26,214,74,27,217,30,0,125,100,55,158,208,17,216,134,3,31,192,233,172,144,15,75,252,243,204,95,254,255,73,136,255,96,255,250,231,63,255,13,196,83,131,246,

View file

@ -591,7 +591,7 @@ void Ide::MakeIcon() {
int fh = 112;
Size sz(0, 0);
Font font;
while(fh > DPI2(64, 80)) {
while(fh > (IsUHDMode() ? 64 : 80)) {
font = StdFont(fh);
sz = GetTextSize(mp, font) + 8 * Size(4, 2);
if(sz.cx <= isz.cx)
@ -632,17 +632,11 @@ void Ide::SetIcon()
state_icon = new_state_icon;
MakeIcon();
#ifdef PLATFORM_WIN32
auto DoIcon = [&](const Image& shd, const Image& uhd) {
if(GetDPIScale() == DPI_100)
Icon(shd);
else
Icon(DPISmartRescaleCached(uhd, DPI(16, 16)));
};
switch(state_icon) {
case 1: DoIcon(IdeImg::IconDebugging(), IdeImg::IconDebuggingLarge()); break;
case 2: DoIcon(IdeImg::IconRunning(), IdeImg::IconRunningLarge()); break;
case 3: DoIcon(IdeImg::IconBuilding(), IdeImg::IconBuildingLarge()); break;
default: DoIcon(IdeImg::Icon(), IdeImg::PackageLarge());
case 1: Icon(DPI(IdeImg::IconDebugging(), IdeImg::IconDebuggingLarge())); break;
case 2: Icon(DPI(IdeImg::IconRunning(), IdeImg::IconRunningLarge())); break;
case 3: Icon(DPI(IdeImg::IconBuilding(), IdeImg::IconBuildingLarge())); break;
default: Icon(DPI(IdeImg::Icon(), IdeImg::PackageLarge()));
}
#else
switch(state_icon) {

View file

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