From 54e6cc3df7f46b908740c2973cb342eee40176be Mon Sep 17 00:00:00 2001 From: cxl Date: Sat, 19 Nov 2016 08:15:07 +0000 Subject: [PATCH] Esc: mathematical function, replace git-svn-id: svn://ultimatepp.org/upp/trunk@10464 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/Esc/Esc.h | 7 ++++ uppsrc/Esc/Esc.upp | 2 - uppsrc/Esc/EscStdLib.cpp | 58 +++++++++++++++++++++------- uppsrc/Esc/srcdoc.tpp/Esc$en-us.tpp | 24 +++++++++++- uppsrc/Esc/srcdoc.tpp/Esc$en-us.tppi | 40 +++++++++---------- 5 files changed, 93 insertions(+), 38 deletions(-) diff --git a/uppsrc/Esc/Esc.h b/uppsrc/Esc/Esc.h index 61d14d05f..7c53204ff 100644 --- a/uppsrc/Esc/Esc.h +++ b/uppsrc/Esc/Esc.h @@ -291,6 +291,13 @@ struct EscEscape { }; void Escape(ArrayMap& globals, const char *function, void (*escape)(EscEscape& e)); + +inline // resolve overloading with Function... +void Escfn(ArrayMap& globals, const char *function, void (*escape)(EscEscape& e)) +{ + return Escape(globals, function, escape); +} + void Escape(ArrayMap& globals, const char *function, Event escape); void Scan(ArrayMap& global, const char *code, const char *filename = ""); diff --git a/uppsrc/Esc/Esc.upp b/uppsrc/Esc/Esc.upp index b0e51e77c..c226eed6b 100644 --- a/uppsrc/Esc/Esc.upp +++ b/uppsrc/Esc/Esc.upp @@ -1,7 +1,5 @@ description "Esc scripting language interpreter\377"; -optimize_speed; - uses Core; diff --git a/uppsrc/Esc/EscStdLib.cpp b/uppsrc/Esc/EscStdLib.cpp index 20738f4a8..7106a857b 100644 --- a/uppsrc/Esc/EscStdLib.cpp +++ b/uppsrc/Esc/EscStdLib.cpp @@ -203,17 +203,6 @@ void ESC_OpenFileIn(EscEscape& e) // --------------------------- -void ESC_sin(EscEscape& e) -{ - e = sin(e[0].GetNumber()); -} - -void ESC_cos(EscEscape& e) -{ - e = cos(e[0].GetNumber()); -} - - bool IsDate(const EscValue& v) { return v.HasNumberField("year") && v.HasNumberField("month") && v.HasNumberField("day"); @@ -259,6 +248,17 @@ void ESC_ToUpper(EscEscape& e) e = ToUpper(s); } +// --------------------------- + +void ESC_replace(EscEscape& e) +{ + String str = e[0]; + str.Replace(e[1], e[2]); + e = str; +} + +// --------------------------- + void StdLib(ArrayMap& global) { Escape(global, "is_number(value)", ESC_is_number); @@ -275,10 +275,12 @@ void StdLib(ArrayMap& global) Escape(global, "reverse(array)", ESC_reverse); Escape(global, "sort(array)", ESC_sort); Escape(global, "order(array)", ESC_order); - + + Escape(global, "replace(str, find, replace)", ESC_replace); + Escape(global, "ToUpper(value)", ESC_ToUpper); Escape(global, "ToLower(value)", ESC_ToLower); - + Escape(global, "len(x)", ESC_count); Escape(global, "mid(array, pos, count)", ESC_mid); Escape(global, "exists(map, key)", ESC_exists); @@ -291,8 +293,34 @@ void StdLib(ArrayMap& global) Escape(global, "IsDate(x)", SIC_IsDate); Escape(global, "IsTime(x)", SIC_IsTime); - Escape(global, "sin(value)", ESC_sin); - Escape(global, "cos(value)", ESC_cos); + #define FN(fn) Escfn(global, #fn "(value)", [](EscEscape& e) { e = fn(e[0].GetNumber()); }); + + FN(sin) + FN(cos) + FN(tan) + FN(asin) + FN(acos) + FN(atan) + + FN(sinh) + FN(cosh) + FN(tanh) + FN(asinh) + FN(acosh) + FN(atanh) + + FN(exp) + FN(log) + FN(log10) + FN(exp2) + FN(log2) + FN(sqrt) + FN(cbrt) + + #undef FN + + Escfn(global, "pow(base, exponent)", [](EscEscape& e) { e = pow(e[0].GetNumber(), e[1].GetNumber()); }); + Escfn(global, "atan2(a, b)", [](EscEscape& e) { e = atan2(e[0].GetNumber(), e[1].GetNumber()); }); } } diff --git a/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tpp b/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tpp index 7fddf6f95..4773298f2 100644 --- a/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tpp +++ b/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tpp @@ -472,5 +472,27 @@ function, otherwise is unspecified).] `"day`", `"month`" and `"year`" members, 0 otherwise.] :: [s0; [*C GetSysTime()]] :: [s0; Returns current time as map with `"second`", `"minute`", `"hour`", -`"day`", `"month`" and `"year`" members.]}}&] +`"day`", `"month`" and `"year`" members.] +:: [s0; [*C sin(][/C x][*C )]&] +[s0; [*C cos(][/C x][*C )]&] +[s0; [*C tan(][/C x][*C )]&] +[s0; [*C asin(][/C x][*C )]&] +[s0; [*C acos(][/C x][*C )]&] +[s0; [*C atan(][/C x][*C )]&] +[s0; [*C atan2(][/C a][*C , ][/C b][*C )]&] +[s0; [*C sinh(][/C x][*C )]&] +[s0; [*C cosh(][/C x][*C )]&] +[s0; [*C tanh(][/C x][*C )]&] +[s0; [*C asinh(][/C x][*C )]&] +[s0; [*C acosh(][/C x][*C )]&] +[s0; [*C atanh(][/C x][*C )]&] +[s0; [*C exp(][/C x][*C )]&] +[s0; [*C log(][/C x][*C )]&] +[s0; [*C log10(][/C x][*C )]&] +[s0; [*C exp2(][/C x][*C )]&] +[s0; [*C log2(][/C x][*C )]&] +[s0; [*C sqrt(][/C x][*C )]&] +[s0; [*C cbrt(][/C x][*C )]&] +[s0; [*C pow(][/C base][*C , ][/C exp][*C )]] +:: [s0; Well know mathematical functions.]}}&] [s0; ]] \ No newline at end of file diff --git a/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tppi b/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tppi index ab4ceeb49..b7c131ad4 100644 --- a/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tppi +++ b/uppsrc/Esc/srcdoc.tpp/Esc$en-us.tppi @@ -1,23 +1,23 @@ TITLE("Esc scripting language") COMPRESSED -120,156,173,59,139,114,219,54,182,191,130,56,219,70,118,100,89,148,228,151,148,118,211,117,211,187,158,105,211,78,211,246,222,25,13,183,164,36,200,98,67,145,42,65,217,242,77,186,223,190,231,1,128,32,68,201,118,178,105,103,44,17,56,15,156,247,57,160,198,61,241,183,191,117,219,221,231,221,7,254,13,191,149,243,120,157,150,225,120,18,244,251,163,248,162,63,58,122,25,4,231,0,30,0,120,63,232,7,221,224,172,55,56,31,244,186,253,110,111,16,244,78,131,139,139,65,112,126,122,209,191,60,59,27,170,245,164,76,202,84,2,60,131,158,118,1,180,135,148,207,47,206,6,1,0,14,78,123,253,243,211,1,32,24,12,130,0,62,7,167,231,103,231,231,67,13,151,246,123,193,232,234,245,233,40,0,192,126,187,255,188,215,189,236,246,206,206,47,7,189,96,112,6,255,5,253,203,203,160,127,113,209,61,29,0,246,160,63,156,230,51,128,251,240,251,95,95,188,121,123,252,235,59,49,86,221,145,24,31,253,124,33,222,168,169,80,211,34,89,149,73,118,35,210,56,187, -89,199,55,50,252,50,164,45,250,15,110,74,148,136,133,74,150,171,84,54,0,136,36,43,101,54,147,51,49,207,11,33,151,19,57,155,225,122,146,137,95,211,50,89,198,165,140,94,70,47,69,188,90,165,201,52,46,147,60,83,157,58,145,235,18,105,148,247,43,153,74,165,218,226,54,78,215,82,228,69,34,1,245,172,162,116,151,148,11,195,8,82,45,230,241,20,73,209,243,43,164,114,242,43,209,194,67,119,52,218,91,89,220,27,160,123,89,138,63,215,73,41,97,7,62,128,15,6,185,203,82,111,36,126,35,22,144,37,133,79,130,145,184,205,147,153,210,155,190,73,83,96,178,72,226,9,48,44,22,241,173,164,101,205,248,68,130,36,164,136,149,74,110,50,224,63,206,238,69,94,46,100,193,235,29,241,27,238,69,220,0,170,128,183,236,6,120,163,53,135,137,62,147,172,75,42,206,102,66,110,86,5,136,9,228,40,166,113,6,212,68,41,85,169,229,143,32,25,172,138,53,162,21,227,215,173,160,119,209,233,118,122,167,167,135,32,141,232,119,220,16,138,249,58,155,162, -38,58,250,112,217,26,244,86,152,227,189,165,111,40,188,121,154,199,164,237,85,14,2,215,219,68,107,154,23,192,194,42,207,72,211,101,46,174,248,56,179,124,13,18,57,236,136,55,155,24,229,171,68,62,55,64,41,136,189,136,83,53,172,159,49,48,127,59,96,237,238,103,25,29,95,158,233,7,221,13,60,56,254,120,252,113,252,122,32,78,78,196,66,110,226,153,156,130,113,165,161,217,2,59,132,179,37,159,150,206,226,4,28,179,139,255,59,59,38,73,22,23,247,102,75,244,98,19,189,192,85,187,62,93,196,69,60,5,166,201,156,26,252,66,173,87,171,188,40,21,26,211,18,180,113,21,29,167,201,123,48,220,21,28,148,236,156,84,162,207,79,250,85,70,224,113,81,196,247,214,156,232,11,60,67,163,159,201,2,116,89,128,166,243,165,136,167,83,84,166,146,127,174,101,54,101,121,178,41,33,3,140,82,180,50,214,63,227,4,207,152,166,107,240,71,80,3,33,54,219,16,189,90,129,212,230,9,108,110,178,143,104,28,133,161,152,192,169,223,203,210,87,20,46,178,124, -172,132,228,114,85,222,51,89,43,198,177,8,218,162,215,22,253,182,24,180,197,169,136,234,43,209,24,215,162,16,86,5,227,211,184,8,11,72,50,43,227,4,4,231,30,201,98,56,248,167,76,211,60,58,168,51,1,14,13,39,132,80,129,134,8,92,190,248,103,244,2,8,189,144,252,39,173,253,201,163,23,112,198,45,102,69,116,36,226,116,30,19,79,6,177,245,51,101,28,109,173,144,39,37,238,128,15,207,32,180,207,128,126,32,136,45,129,27,84,132,0,85,153,147,49,134,66,150,16,214,110,1,205,4,162,82,9,90,142,139,153,117,71,56,255,58,43,189,232,248,13,217,0,106,203,98,6,42,70,217,74,172,138,252,54,153,105,140,235,9,71,232,45,205,10,84,45,91,102,94,120,170,141,163,113,215,234,9,190,4,81,40,162,175,68,191,206,199,119,73,161,74,195,131,101,65,84,177,64,161,2,18,72,5,155,45,234,128,62,244,142,245,86,222,128,147,220,74,134,208,246,25,131,126,239,40,100,206,196,76,98,252,132,244,81,157,123,94,128,79,160,76,33,225,88,14, -134,219,86,124,28,224,105,65,54,105,220,192,114,187,1,160,135,0,180,123,178,134,157,25,144,40,167,157,45,49,17,230,250,57,128,74,205,4,183,96,72,167,173,24,232,28,139,45,232,255,93,200,76,203,44,81,108,95,24,51,240,140,69,116,204,249,164,69,118,130,6,144,179,69,21,201,205,162,132,188,49,147,120,38,239,48,95,133,135,237,10,35,196,17,72,156,211,133,4,151,158,117,196,119,128,59,213,120,97,23,4,231,60,139,142,179,154,42,42,193,43,43,186,21,74,6,73,3,61,107,211,109,109,1,40,129,205,42,166,26,128,82,113,149,11,201,36,166,133,68,45,150,139,196,34,244,108,33,58,120,131,161,36,58,216,97,62,168,156,93,92,145,210,208,94,92,31,5,170,241,108,86,25,14,124,183,108,123,198,191,65,244,104,238,144,159,150,79,81,237,198,168,118,115,184,11,193,207,36,253,42,38,96,72,168,133,131,124,130,225,14,24,6,189,64,190,129,221,38,50,43,40,150,164,31,131,9,54,26,175,114,40,146,136,182,111,78,142,144,152,14,161,33,43,57,97, -136,176,18,10,152,85,81,218,250,9,54,0,222,176,73,67,124,88,218,62,4,207,123,18,81,244,84,48,124,2,222,71,91,111,240,12,227,167,184,224,112,199,226,176,98,91,46,65,216,179,157,194,177,28,230,197,214,226,240,137,14,108,1,197,80,104,87,198,71,135,62,26,48,193,70,200,118,93,81,62,71,195,70,61,62,138,167,238,14,35,160,152,162,5,134,65,213,100,173,202,241,235,245,219,10,132,92,115,108,10,28,114,149,198,83,57,243,44,80,161,161,71,7,80,108,13,162,131,145,121,8,41,99,40,40,54,242,242,230,255,54,176,106,51,41,165,169,44,191,67,64,88,2,72,143,227,119,144,17,161,54,180,249,201,42,154,154,6,237,207,110,197,228,10,34,16,216,93,224,167,94,29,43,20,19,208,111,72,182,204,242,206,160,104,55,224,192,252,207,117,154,126,170,139,54,44,11,112,189,142,24,100,3,17,205,88,187,222,10,173,142,84,126,198,96,220,47,65,40,204,234,147,181,44,12,168,61,164,135,3,42,234,70,184,87,175,140,116,204,167,158,253,212,255,111,176, -81,73,221,126,242,240,98,137,74,9,93,161,131,115,227,161,91,187,166,60,102,43,64,173,52,172,135,156,94,7,130,8,68,79,181,158,46,192,56,148,132,8,104,172,133,186,168,44,23,114,62,151,211,210,84,216,203,120,101,172,229,7,248,104,74,75,241,94,222,155,196,186,138,161,164,65,207,128,115,67,85,166,58,226,109,94,64,79,81,149,81,170,49,21,89,167,66,179,228,10,29,168,25,44,158,199,192,74,52,70,162,228,27,126,151,167,155,73,13,138,39,68,76,229,34,46,137,74,150,151,78,31,201,217,218,233,52,189,206,179,35,126,193,28,123,7,98,100,32,244,110,90,214,249,15,113,3,43,198,187,64,36,40,252,130,195,67,33,151,80,72,98,153,9,204,220,87,181,22,0,237,61,209,86,147,74,217,24,123,82,7,25,104,105,34,45,59,141,244,17,2,237,0,25,68,173,99,195,163,5,162,69,122,101,56,72,230,45,211,203,182,42,110,14,65,63,31,68,167,211,17,209,95,158,136,21,157,132,186,31,80,175,220,76,229,10,237,171,45,238,48,86,198,110,247,14, -33,71,198,96,22,166,139,207,108,220,108,178,5,40,162,104,202,96,146,183,22,52,119,70,21,231,54,141,26,137,141,48,46,82,133,102,228,199,73,182,110,40,213,46,140,158,117,69,24,187,230,178,89,229,214,34,117,185,133,19,14,200,14,80,71,199,101,12,233,181,88,79,203,117,129,70,254,75,14,168,222,235,130,236,143,124,34,100,172,18,89,180,173,124,192,91,59,208,36,166,224,175,234,30,188,134,56,208,221,238,86,70,216,240,214,138,231,39,214,80,209,1,193,71,7,238,185,183,206,105,202,73,180,28,58,237,100,187,153,141,62,68,127,81,247,186,229,131,180,98,27,86,45,71,122,14,41,9,251,190,232,96,24,64,58,141,14,38,178,196,47,61,248,210,235,14,163,131,65,23,138,82,54,39,222,223,163,156,0,181,0,228,178,46,47,34,230,101,157,69,19,108,156,30,82,135,165,52,94,78,102,177,137,76,223,243,55,204,40,100,241,208,172,108,228,116,93,226,96,137,226,39,79,178,120,155,219,200,39,224,86,249,108,61,221,213,201,191,14,171,249,133,47,140,215,80, -177,226,81,160,23,93,23,25,159,104,51,106,112,26,19,66,82,135,60,90,152,25,125,109,41,23,74,193,121,66,32,177,237,105,61,234,195,121,158,83,145,176,147,139,170,110,32,108,112,224,155,52,159,128,89,218,46,25,80,120,5,196,245,220,48,25,23,55,107,46,181,177,51,150,32,32,211,149,120,18,250,210,145,16,121,177,83,198,38,217,106,93,70,199,249,186,132,191,21,202,22,143,94,204,119,163,137,21,117,140,233,253,161,87,188,142,143,106,20,49,48,133,113,233,246,175,92,113,105,236,105,130,141,12,231,75,43,225,204,142,21,42,170,37,89,191,54,152,142,184,206,56,95,96,86,108,99,219,147,160,144,64,94,80,215,197,75,9,199,99,70,161,91,194,8,1,86,57,198,113,203,205,109,88,145,65,94,112,128,71,57,216,43,98,134,106,189,212,26,131,35,144,206,168,10,132,29,16,33,91,9,55,53,55,183,135,248,152,75,157,155,219,104,156,68,225,182,77,253,84,177,132,110,66,249,107,198,67,117,99,221,74,34,223,37,207,51,182,122,91,223,154,38,113,97,172, -137,120,218,153,2,76,208,75,147,185,180,1,47,78,129,149,140,123,95,56,203,18,229,96,173,140,109,153,62,226,4,252,54,78,82,148,149,199,193,115,52,232,125,14,213,27,37,193,105,119,244,227,37,14,149,205,200,152,250,85,136,17,114,83,170,58,159,191,89,205,131,160,168,32,192,48,48,207,209,46,196,21,104,61,201,166,9,141,86,91,168,84,84,58,136,12,242,40,30,162,205,109,20,219,123,156,174,22,49,196,179,100,234,140,50,33,15,123,50,253,61,180,221,179,137,90,77,144,106,107,106,162,1,245,232,216,55,126,228,122,150,80,13,176,78,212,2,43,240,69,33,245,72,29,229,92,205,207,141,32,76,36,243,220,134,201,120,79,135,142,247,250,209,30,48,59,243,193,52,159,86,131,224,78,125,45,201,112,180,50,149,102,121,88,95,230,184,227,133,154,239,17,159,195,189,51,86,157,162,107,26,251,105,155,176,229,109,5,174,177,222,89,230,24,37,211,42,170,41,244,100,102,199,1,169,58,14,157,31,156,68,211,130,98,65,57,99,178,219,154,233,28,162,144,113,247, -221,34,87,178,30,195,19,52,172,219,252,189,156,181,105,242,192,229,24,120,64,149,79,120,58,238,233,252,89,136,207,103,187,230,136,192,64,135,221,112,228,60,121,11,186,213,62,202,222,185,193,59,26,138,244,222,174,214,225,168,54,218,101,124,186,250,9,68,88,109,15,118,208,105,29,62,163,229,81,29,75,224,160,9,155,227,194,170,200,111,32,54,45,101,17,189,80,245,40,65,211,64,83,50,234,150,148,172,118,10,193,3,101,165,13,24,91,148,59,158,231,129,108,157,196,73,165,116,90,179,27,178,105,189,76,156,149,38,160,163,203,39,101,219,218,38,237,212,166,100,61,165,69,179,101,0,164,251,130,67,178,44,236,32,236,116,218,211,12,150,53,16,164,244,55,115,116,106,57,192,100,111,100,105,89,197,40,200,172,66,150,64,48,39,75,204,113,2,220,198,172,149,1,7,56,60,172,192,160,210,60,228,131,90,198,53,2,17,214,14,13,65,21,204,254,158,16,64,120,0,15,176,104,52,2,125,88,67,191,35,126,156,227,160,163,192,244,246,232,224,0,38,205,216,157,145, -96,229,42,90,144,91,217,132,197,228,93,115,128,48,82,91,132,208,137,228,45,106,121,174,5,5,30,100,207,76,203,92,122,160,50,93,99,235,65,80,172,151,131,222,200,198,189,112,168,205,109,242,155,132,109,7,221,190,77,29,67,91,252,191,44,114,83,30,160,12,208,213,243,66,119,209,148,0,104,135,157,184,85,33,4,4,59,135,26,90,66,243,226,92,75,50,77,88,131,78,65,118,52,227,39,182,192,202,116,14,162,11,63,84,38,218,65,50,125,15,174,130,37,218,44,185,165,54,222,14,112,136,3,106,186,32,24,97,218,202,139,164,188,111,235,231,249,106,153,67,181,131,19,83,186,63,37,172,176,121,145,220,44,176,13,52,251,29,5,137,15,31,6,131,179,139,225,233,105,191,183,8,70,175,91,189,224,236,144,175,179,127,212,84,195,225,144,31,92,229,75,58,52,60,248,215,235,158,190,243,62,185,66,25,133,227,163,43,104,221,66,252,10,241,147,191,134,161,5,181,189,134,136,73,82,184,167,99,87,93,36,29,194,193,125,146,221,240,14,79,27,211,192,3,247,97, -123,131,226,166,77,216,226,212,81,241,245,150,195,17,141,191,183,120,226,107,60,51,67,6,190,86,185,226,194,100,124,162,65,30,192,203,211,85,124,208,22,244,128,103,193,205,132,120,124,107,39,180,44,7,61,159,109,156,36,63,154,248,144,190,67,241,187,151,178,123,135,102,40,67,77,71,112,116,137,178,147,92,123,251,108,166,22,247,118,14,247,72,193,209,33,131,208,168,213,30,59,178,55,89,143,62,246,110,62,124,237,60,192,71,165,8,127,24,221,169,115,195,1,149,112,182,66,38,122,163,232,235,97,69,224,154,106,0,34,160,247,59,110,43,75,173,108,130,236,56,45,22,13,3,204,61,163,238,98,192,216,219,20,130,38,114,154,115,225,170,35,34,142,126,28,2,220,223,162,237,182,120,116,150,96,98,184,77,98,8,226,228,82,84,189,132,84,168,30,1,23,233,60,60,236,60,246,104,226,153,208,110,164,235,186,61,71,109,115,161,3,15,170,237,40,237,26,227,250,196,159,201,52,176,70,207,28,110,152,6,238,41,251,253,147,224,180,218,137,197,17,29,34,141,142,57, -188,91,219,193,213,227,232,216,91,117,176,78,11,118,155,147,153,52,31,237,235,23,122,136,69,36,187,117,138,140,209,71,247,43,21,128,203,36,91,171,250,89,162,127,55,238,255,71,2,45,243,93,162,204,203,53,116,139,84,3,124,70,112,196,70,5,246,189,206,110,80,2,117,160,200,163,2,138,3,176,205,88,138,243,85,91,116,57,97,33,17,207,38,172,52,172,144,28,135,243,86,81,192,22,250,39,200,67,209,113,98,68,39,232,22,12,158,88,9,186,175,176,184,50,116,213,86,115,106,236,254,92,1,57,140,56,92,216,93,12,104,249,249,153,122,72,199,233,199,71,96,161,33,95,57,64,61,128,182,198,88,244,141,131,167,207,29,84,124,101,253,0,29,119,98,95,200,170,11,211,133,63,105,6,255,22,210,189,218,11,248,197,14,186,249,108,157,230,15,9,240,101,163,104,174,220,251,28,43,159,7,37,240,178,153,147,111,244,160,100,247,17,32,213,52,66,190,91,79,74,236,60,53,176,127,16,176,18,231,44,175,94,61,254,44,34,132,34,21,35,148,193,208,22,247,88, -57,80,87,92,61,22,161,115,153,7,94,162,64,151,15,8,193,112,177,117,148,69,50,135,218,95,206,203,221,98,248,250,235,125,176,116,135,211,36,134,26,249,199,56,196,215,143,217,244,10,186,190,199,224,242,182,185,149,225,10,186,17,5,161,156,179,155,222,208,100,69,174,22,93,37,54,166,114,195,254,190,45,150,249,189,120,234,155,118,115,238,154,191,39,123,14,177,108,196,95,25,124,94,220,125,243,231,58,78,161,196,110,56,184,3,254,108,7,244,117,38,93,248,61,186,143,190,108,214,196,63,120,192,0,173,203,30,15,252,215,94,216,77,94,236,129,253,184,23,214,7,117,69,246,165,225,121,71,170,66,158,177,30,162,126,184,26,169,232,36,165,160,2,202,102,213,99,236,237,37,126,195,248,221,22,127,172,1,70,189,79,86,43,57,219,205,194,71,195,254,14,22,128,253,6,14,176,117,251,92,6,4,113,240,119,34,238,62,25,58,79,106,113,204,206,155,171,254,21,90,246,12,90,252,76,98,173,132,210,246,91,91,203,206,86,26,175,153,110,163,8,248,94,194,84,23, -158,233,214,131,47,141,163,155,156,201,150,214,21,4,146,171,62,235,27,237,112,95,153,225,160,223,138,141,53,252,230,101,130,175,220,47,47,13,208,126,18,199,159,65,226,248,113,36,142,62,131,196,209,163,72,156,124,58,133,147,71,17,248,226,211,9,124,81,17,248,203,187,51,208,83,155,119,37,88,42,21,211,245,105,196,105,247,98,120,58,184,244,167,17,118,251,254,113,4,176,61,114,162,49,221,76,42,3,90,63,108,229,61,161,15,230,184,220,117,137,131,60,213,232,91,88,246,126,16,166,217,212,236,17,46,125,89,82,207,51,116,111,220,196,12,64,36,243,150,238,157,181,231,235,214,203,67,222,24,33,62,15,165,211,6,73,136,180,79,163,200,157,109,141,236,221,34,73,229,211,14,243,125,158,175,58,149,134,105,210,39,11,28,154,154,81,29,14,76,248,109,3,26,24,24,180,38,58,215,15,62,203,247,156,113,55,123,143,228,39,55,211,99,26,216,242,59,93,220,68,60,157,83,188,233,211,173,117,226,13,146,92,214,218,166,255,214,205,147,230,215,57,213,241,199,93, -178,213,174,234,84,69,76,11,13,222,60,220,37,21,212,89,244,193,217,182,69,198,67,163,215,29,70,235,235,174,71,212,206,95,79,81,73,230,166,151,79,63,108,35,1,78,129,56,103,218,122,254,74,79,127,92,226,64,219,61,1,254,219,2,196,222,247,112,159,152,182,38,91,15,159,221,204,67,31,121,242,107,252,25,72,201,247,129,249,250,102,97,70,165,109,231,157,37,186,216,114,199,128,228,188,254,219,79,250,93,27,238,140,152,177,186,209,78,10,25,191,119,162,229,85,188,86,248,250,240,38,41,205,85,69,38,11,154,68,167,224,72,56,190,81,64,105,186,216,21,168,120,181,229,84,37,251,195,197,15,49,108,231,6,143,183,211,27,99,105,170,175,109,109,94,193,161,19,142,207,245,113,42,76,109,186,169,72,50,26,207,243,171,3,4,90,159,174,235,183,58,129,125,122,110,46,212,249,134,198,190,49,135,231,86,165,210,239,214,235,45,202,121,143,0,182,203,132,46,4,150,200,55,221,108,33,156,11,192,56,218,16,185,36,21,150,184,171,46,35,2,241,36,52,116,12, -159,5,140,187,188,88,200,20,156,173,250,215,118,70,39,219,32,207,57,229,227,232,173,113,26,104,95,5,104,154,169,26,64,246,178,232,181,11,93,3,30,213,35,193,243,206,103,80,53,183,6,159,72,122,248,89,164,135,79,36,93,43,135,160,14,26,247,49,211,240,47,86,210,100,82,152,95,79,117,71,125,93,18,245,6,231,151,195,243,211,94,224,149,68,223,233,59,238,7,43,34,124,171,143,203,49,102,108,227,39,60,51,30,11,208,186,193,85,54,33,255,60,145,129,118,77,8,53,102,10,148,79,68,172,127,233,176,23,47,132,175,39,98,165,113,249,94,156,244,110,227,83,144,242,173,224,110,156,38,91,56,101,115,3,78,29,129,204,136,177,192,74,144,46,79,239,64,235,138,174,20,235,120,203,60,250,93,149,5,132,129,189,220,106,62,99,243,210,180,157,237,210,111,29,8,190,122,230,207,36,53,153,189,134,1,69,223,173,44,40,188,105,18,45,70,123,104,242,4,131,123,193,170,202,162,91,24,175,89,184,34,180,194,45,180,144,186,230,2,8,182,108,234,246,103,182, -4,91,91,50,99,74,102,75,245,106,151,251,187,46,186,213,175,189,134,229,96,32,179,105,128,175,222,30,38,112,122,235,163,33,99,122,115,124,204,178,45,47,133,111,25,4,203,146,95,203,85,230,149,146,22,189,118,64,191,242,85,85,26,138,249,247,142,227,35,77,45,116,222,133,177,86,73,63,115,202,236,171,155,222,53,9,3,62,158,41,125,115,253,72,182,240,8,159,192,20,254,22,179,213,192,133,254,141,166,214,3,8,159,127,108,213,237,116,250,189,243,179,115,15,9,254,196,65,201,90,197,214,124,56,189,115,86,205,248,188,34,36,47,202,71,160,81,244,178,238,46,36,36,169,71,98,225,205,77,63,109,220,129,252,90,125,11,5,204,131,90,164,248,133,122,179,191,250,140,14,102,241,125,116,128,47,226,46,225,217,34,58,160,226,35,58,184,151,113,1,95,80,129,123,98,220,181,250,37,89,126,26,93,158,153,105,210,80,111,149,146,63,47,242,117,193,159,246,115,182,148,244,22,220,30,230,254,71,150,239,238,153,193,6,158,166,235,162,160,119,104,19,182,88,235,194, -255,53,214,156,241,70,24,254,7,132,32,231,94, +120,156,173,59,13,115,219,54,178,127,5,113,174,141,236,200,178,40,201,31,145,210,94,122,110,122,231,153,54,237,52,109,239,205,104,120,37,68,65,18,27,138,84,9,202,150,95,210,247,219,223,238,226,131,32,68,49,118,114,109,167,150,8,236,7,246,123,23,212,116,192,254,246,183,126,183,255,180,255,145,127,198,223,138,5,223,166,101,56,157,5,195,225,132,95,13,39,39,207,131,224,18,192,3,0,31,6,195,160,31,92,12,70,151,163,65,127,216,31,140,130,193,121,112,117,53,10,46,207,175,134,47,46,46,198,114,59,43,147,50,21,0,175,64,207,251,0,58,64,202,151,87,23,163,0,0,71,231,131,225,229,249,8,16,140,70,65,0,159,131,243,203,139,203,203,177,134,75,135,131,96,114,253,234,124,18,0,224,176,59,124,58,232,191,232,15,46,46,95,140,6,193,232,2,254,13,134,47,94,4,195,171,171,254,249,8,176,7,195,113,156,207,1,238,253,239,127,125,241,250,205,233,175,111,217,84,246,39,108,122,242,243,21,123,45,99,38,227,34,217,148,73,182,100,41,207, +150,91,190,20,225,151,33,109,209,127,112,83,34,25,103,50,89,111,82,209,0,192,146,172,20,217,92,204,217,34,47,152,88,207,196,124,142,235,73,198,126,77,203,100,205,75,17,61,143,158,51,190,217,164,73,204,203,36,207,100,175,78,228,166,68,26,229,253,70,164,66,202,46,187,229,233,86,176,188,72,4,160,158,87,148,238,146,114,101,24,65,170,197,130,199,72,138,158,95,35,149,179,95,137,22,30,186,167,209,222,138,226,222,0,221,139,146,253,185,77,74,1,59,240,1,124,48,200,93,150,6,19,246,27,177,128,44,73,124,18,76,216,109,158,204,165,222,244,77,154,2,147,69,194,103,192,48,91,241,91,65,203,154,241,153,0,73,8,198,165,76,150,25,240,207,179,123,150,151,43,81,168,245,30,251,13,247,34,110,0,149,192,91,182,4,222,104,205,97,98,168,72,214,37,197,179,57,19,187,77,1,98,2,57,178,152,103,64,141,149,66,150,90,254,8,146,193,42,219,34,90,54,125,213,9,6,87,189,126,111,112,126,126,12,210,136,126,199,13,33,91,108,179,24,53,209, +211,135,203,182,160,183,194,28,239,13,125,67,225,45,210,156,147,182,55,57,8,92,111,99,157,56,47,128,133,77,158,145,166,203,156,93,171,227,204,243,45,72,228,184,199,94,239,56,202,87,178,124,97,128,82,16,123,193,83,57,174,159,49,48,127,123,96,237,238,103,17,157,190,184,208,15,250,59,120,112,250,225,244,195,244,213,136,157,157,177,149,216,241,185,136,193,184,210,208,108,129,29,204,217,146,199,165,179,56,3,199,236,227,127,206,142,89,146,241,226,222,108,137,158,237,162,103,184,106,215,227,21,47,120,12,76,147,57,53,248,133,220,110,54,121,81,74,52,166,53,104,227,58,58,77,147,119,96,184,27,56,40,217,57,169,68,159,159,244,43,141,192,121,81,240,123,107,78,244,5,158,161,209,207,69,1,186,44,64,211,249,154,241,56,70,101,74,241,231,86,100,177,146,167,50,37,100,64,161,100,157,76,233,95,225,4,207,136,211,45,248,35,168,129,16,155,109,136,94,110,64,106,139,4,54,55,217,71,52,141,194,144,205,224,212,239,68,233,43,10,23,149,124,172,132,196, +122,83,222,43,178,86,140,83,22,116,217,160,203,134,93,54,234,178,115,22,213,87,162,41,174,69,33,172,50,133,79,227,34,44,32,201,172,228,9,8,206,61,146,197,112,244,47,145,166,121,116,84,103,2,28,26,78,8,161,2,13,17,184,124,246,175,232,25,16,122,38,212,159,180,246,39,143,158,193,25,247,152,101,209,9,227,233,130,19,79,6,177,245,51,105,28,109,43,145,39,201,238,128,15,207,32,180,207,128,126,32,136,173,129,27,84,4,3,85,153,147,41,12,133,40,33,172,221,2,154,25,68,165,18,180,204,139,185,117,71,56,255,54,43,189,232,248,13,217,0,106,203,98,6,42,70,217,146,109,138,252,54,153,107,140,219,153,138,208,123,154,101,168,90,101,153,121,225,169,150,71,211,190,213,19,124,9,162,144,69,95,177,97,157,143,239,146,66,150,134,7,203,2,171,98,129,68,5,36,144,10,118,123,212,1,125,232,29,235,141,88,130,147,220,10,5,161,237,147,131,126,239,40,100,206,217,92,96,252,132,244,81,157,123,81,128,79,160,76,33,225,88,14,198,251,86, +124,26,224,105,65,54,41,111,96,185,219,0,48,64,0,218,61,219,194,206,12,72,148,113,111,79,76,132,185,126,14,160,82,51,193,61,24,210,105,135,3,157,83,182,7,253,239,149,200,180,204,18,169,236,11,99,6,158,177,136,78,85,62,233,144,157,160,1,228,202,162,138,100,185,42,33,111,204,5,158,201,59,204,87,225,113,183,194,8,113,4,18,103,188,18,224,210,243,30,251,14,112,167,26,47,236,130,224,156,103,209,105,86,83,69,37,120,105,69,183,65,201,32,105,160,103,109,186,171,45,0,37,176,219,112,170,1,40,21,87,185,144,76,34,46,4,106,177,92,37,22,161,103,11,209,209,107,12,37,209,209,1,243,65,229,28,226,138,148,134,246,226,250,40,80,229,243,121,101,56,240,221,178,237,25,255,14,209,163,185,67,126,90,63,70,181,59,163,218,221,241,33,4,63,147,244,171,152,128,33,161,22,14,242,25,134,59,96,24,244,2,249,6,118,155,200,44,161,88,18,126,12,38,216,104,186,201,161,72,34,218,190,57,57,66,82,116,8,13,89,201,153,130,8,43,161, +128,89,21,165,173,159,96,3,224,13,155,52,164,14,75,219,199,224,121,143,34,138,158,10,134,79,192,109,180,245,6,207,48,126,226,133,10,119,74,28,86,108,235,53,8,123,126,80,56,150,195,188,216,91,28,63,210,129,45,32,27,51,237,202,248,232,216,71,3,38,216,8,217,173,43,202,231,104,220,168,199,7,241,212,63,96,4,20,83,180,192,48,168,154,172,85,57,126,189,126,219,128,144,107,142,77,129,67,108,82,30,139,185,103,129,18,13,61,58,130,98,107,20,29,77,204,67,72,25,99,70,177,81,45,239,254,103,7,171,54,147,82,154,202,242,59,4,132,37,128,244,56,126,11,25,17,106,67,155,159,172,162,169,105,208,254,236,86,76,174,32,2,134,221,5,126,26,212,177,66,49,1,253,134,80,150,89,222,25,20,221,6,28,152,255,85,157,166,159,234,162,13,203,2,92,175,35,6,217,64,68,51,214,174,183,66,171,35,164,159,49,20,238,231,32,20,197,234,163,181,204,12,168,61,164,135,3,42,234,70,184,151,47,141,116,204,167,129,253,52,252,111,176,81,73,221, +126,242,240,98,137,74,9,93,162,131,171,198,67,183,118,77,121,204,86,128,90,105,88,15,57,189,14,4,17,136,158,114,27,175,192,56,164,128,8,104,172,133,186,168,44,103,98,177,16,113,105,42,236,53,223,24,107,249,1,62,154,210,146,189,19,247,38,177,110,56,148,52,232,25,112,110,168,202,100,143,189,201,11,232,41,170,50,74,54,166,34,235,84,104,150,170,66,7,106,6,139,231,49,176,18,77,145,40,249,134,223,229,233,102,82,131,226,9,17,83,185,226,37,81,201,242,210,233,35,85,182,118,58,77,175,243,236,177,95,48,199,222,129,24,21,16,122,55,45,235,252,135,184,129,21,227,93,32,18,20,126,161,194,67,33,214,80,72,98,153,9,204,220,87,181,22,0,181,158,104,175,73,165,108,140,61,169,131,12,180,52,19,150,157,70,250,8,129,118,128,12,162,214,177,225,209,2,209,34,189,54,28,36,139,142,233,101,59,21,55,199,160,159,247,172,215,235,177,232,47,79,196,146,78,66,221,15,168,87,236,98,177,65,251,234,178,59,140,149,220,237,222,33,228,8,14, +102,97,186,248,204,198,205,38,91,128,34,138,166,12,38,121,107,65,171,206,168,226,220,166,81,35,177,9,198,69,170,208,140,252,84,146,173,27,74,181,11,163,103,93,17,198,174,85,217,44,115,107,145,186,220,194,9,7,100,7,168,163,121,201,33,189,22,219,184,220,22,104,228,191,228,128,234,157,46,200,254,200,103,76,112,153,136,162,107,229,3,222,218,131,38,49,5,127,149,247,224,53,196,129,238,118,247,50,194,78,109,173,120,126,100,13,21,29,17,124,116,228,158,123,239,156,166,156,68,203,161,211,206,246,155,217,232,125,244,23,117,175,123,62,72,43,182,97,213,114,164,231,144,146,176,239,139,142,198,1,164,211,232,104,38,74,252,50,128,47,131,254,56,58,26,245,161,40,85,230,164,246,15,40,39,64,45,0,185,172,175,22,17,243,186,206,162,9,54,78,15,169,195,82,202,215,179,57,55,145,233,123,245,13,51,10,89,60,52,43,59,17,111,75,28,44,81,252,84,147,44,181,205,109,228,19,112,171,124,190,141,15,117,242,175,194,106,126,225,11,227,21,84,172,120,20, +232,69,183,69,166,78,180,155,52,56,141,9,33,169,67,30,45,204,140,190,246,148,11,165,224,34,33,16,110,123,90,143,250,120,145,231,84,36,28,228,162,170,27,8,27,28,120,153,230,51,48,75,219,37,3,10,175,128,184,89,24,38,121,177,220,170,82,27,59,99,1,2,50,93,137,39,161,47,29,9,145,23,59,101,108,146,109,182,101,116,154,111,75,248,91,161,236,168,209,139,249,110,52,177,161,142,49,189,63,246,138,215,233,73,141,34,6,166,144,151,110,255,170,42,46,141,61,77,176,145,81,249,210,74,56,179,99,133,138,106,73,214,175,13,166,199,110,50,149,47,48,43,118,177,237,73,80,72,32,47,168,235,248,90,192,241,20,163,208,45,97,132,0,171,156,226,184,101,121,27,86,100,144,23,28,224,81,14,246,138,152,177,220,174,181,198,224,8,164,51,170,2,97,7,68,200,78,162,154,154,229,237,49,62,86,165,206,242,54,154,38,81,184,111,83,63,85,44,161,155,80,254,154,171,161,186,177,110,41,144,239,82,205,51,246,122,91,223,154,102,188,48,214,68,60,29, +76,1,38,232,165,201,66,216,128,199,83,96,37,83,189,47,156,101,141,114,176,86,166,108,153,62,226,4,252,150,39,41,202,202,227,224,41,26,116,155,67,13,38,73,112,222,159,252,248,2,135,202,102,100,76,253,42,196,8,177,43,101,157,207,223,172,230,65,80,84,16,96,24,88,228,104,23,236,26,180,158,100,113,66,163,213,14,42,21,149,14,34,131,60,138,135,232,170,54,74,217,59,79,55,43,14,241,44,137,157,81,38,228,97,79,166,191,135,182,123,54,81,171,9,82,238,77,77,52,160,30,29,251,198,143,92,207,19,170,1,182,137,92,97,5,190,42,132,30,169,163,156,171,249,185,17,132,137,100,158,219,40,50,222,211,177,227,189,126,180,7,204,206,124,48,205,227,106,16,220,171,175,37,25,142,86,98,97,150,199,245,101,21,119,188,80,243,61,226,115,184,119,198,170,49,186,166,177,159,174,9,91,222,86,224,26,235,157,117,142,81,50,173,162,154,68,79,86,236,56,32,85,199,161,243,131,147,104,58,80,44,72,103,76,118,91,51,157,99,20,50,238,190,91,229,82, +212,99,120,130,134,117,155,191,19,243,46,77,30,84,57,6,30,80,229,19,53,29,247,116,254,36,196,231,243,67,115,68,96,160,167,220,112,226,60,121,3,186,213,62,170,188,115,135,119,52,20,233,189,93,157,227,73,109,180,171,240,233,234,39,96,97,181,61,56,64,167,115,252,132,150,39,117,44,129,131,38,108,142,11,155,34,95,66,108,90,139,34,122,38,235,81,130,166,129,166,100,212,45,41,89,109,12,193,3,101,165,13,24,91,148,59,53,207,3,217,58,137,147,74,233,180,102,55,100,211,122,153,56,43,77,64,71,151,79,202,174,181,77,218,169,77,201,122,74,135,102,203,0,72,247,5,199,100,89,216,65,216,233,180,167,25,44,107,32,72,233,111,230,232,212,114,128,201,46,69,105,89,197,40,168,88,133,44,129,96,78,150,88,224,4,184,139,89,43,3,14,112,120,88,129,65,165,121,172,14,106,25,215,8,88,88,59,52,4,85,48,251,123,66,0,225,1,60,192,162,209,8,244,97,13,253,30,251,113,129,131,142,2,211,219,131,131,3,152,180,194,238,140,4,43,87, +209,130,220,203,38,74,76,222,53,7,8,35,181,69,8,157,72,220,162,150,23,90,80,224,65,246,204,180,172,74,15,84,166,107,108,3,8,138,245,114,208,27,217,184,23,14,181,185,77,190,76,148,237,160,219,119,169,99,232,178,255,21,69,110,202,3,148,1,186,122,94,232,46,154,18,0,237,176,19,183,42,132,128,96,23,80,67,11,104,94,156,107,73,69,19,214,160,83,16,61,205,248,153,45,176,50,157,131,232,194,15,149,137,118,144,196,239,192,85,176,68,155,39,183,212,198,219,1,14,113,64,77,23,4,35,76,91,121,145,148,247,93,253,60,223,172,115,168,118,112,98,74,247,167,132,21,54,175,146,229,10,219,64,179,223,81,16,123,255,126,52,186,184,26,159,159,15,7,171,96,242,170,51,8,46,142,213,117,246,143,154,106,56,30,171,7,215,249,154,14,13,15,254,243,106,160,239,188,207,174,81,70,225,244,228,26,90,183,16,191,66,252,84,95,195,208,130,218,94,131,113,146,20,238,233,217,85,23,73,143,112,168,62,201,110,120,139,167,229,52,240,192,125,216,222,160, +184,105,19,182,56,117,84,234,122,203,225,136,198,223,123,60,169,107,60,51,67,6,190,54,185,84,133,201,244,76,131,124,4,175,154,174,226,131,46,163,7,106,22,220,76,72,141,111,237,132,86,201,65,207,103,27,39,201,15,38,62,166,239,80,252,182,82,118,239,208,12,101,168,233,8,142,46,81,14,146,235,238,159,205,212,226,222,206,113,139,20,28,29,42,16,26,181,218,99,71,246,38,235,193,199,62,204,135,175,157,143,240,81,41,194,31,70,247,234,220,168,128,74,56,59,161,34,186,148,244,245,184,34,112,67,53,0,17,208,251,29,183,21,165,86,54,65,246,156,22,139,134,1,230,158,81,119,49,96,236,93,10,65,51,17,231,170,112,213,17,17,71,63,14,1,213,223,162,237,118,212,232,44,193,196,112,155,112,8,226,228,82,84,189,132,84,168,158,0,23,233,34,60,238,61,244,104,236,9,211,110,164,235,186,150,163,118,85,161,3,15,170,237,40,237,26,227,250,196,159,201,52,176,70,207,28,110,20,13,220,83,14,135,103,193,121,181,19,139,35,58,68,26,157,170,240, +110,109,7,87,79,163,83,111,213,193,26,23,202,109,206,230,194,124,180,175,95,232,33,22,145,236,215,41,42,140,62,186,95,169,0,92,39,217,86,214,207,18,253,95,227,254,127,36,208,50,223,37,210,188,92,67,183,72,53,192,39,4,71,108,84,96,223,235,236,6,37,80,15,138,60,42,160,84,0,182,25,75,170,124,213,101,125,149,176,144,136,103,19,86,26,86,72,142,195,121,171,40,96,11,253,19,228,161,232,52,49,162,99,116,11,6,79,172,4,221,87,88,92,25,186,106,171,57,53,118,127,174,128,28,70,28,46,236,46,5,104,249,249,153,122,72,199,233,167,39,96,161,161,186,114,128,122,0,109,77,97,209,55,14,158,62,15,80,241,149,245,3,116,220,137,125,33,171,46,76,23,254,172,25,252,91,72,247,178,21,240,139,3,116,243,249,54,205,63,38,192,231,141,162,185,118,239,115,172,124,62,42,129,231,205,156,124,163,7,37,135,143,0,169,166,17,242,237,118,86,98,231,169,129,253,131,128,149,56,103,121,249,242,225,103,97,33,20,169,24,161,12,134,46,187,199, +202,129,186,226,234,49,11,157,203,60,240,18,9,186,252,136,16,12,23,123,71,89,37,11,168,253,197,162,60,44,134,175,191,110,131,165,59,156,38,49,212,200,63,196,33,190,126,200,166,151,208,245,61,4,151,183,205,173,12,55,208,141,72,8,229,42,187,233,13,77,86,228,106,209,85,98,99,42,55,236,183,109,177,204,183,226,169,111,58,204,185,107,254,158,236,85,136,85,70,252,149,193,231,197,221,215,127,110,121,10,37,118,195,193,29,240,39,7,160,111,50,225,194,183,232,62,250,178,89,19,255,80,3,6,104,93,90,60,240,63,173,176,187,188,104,129,253,208,10,235,131,186,34,251,210,240,124,32,85,33,207,88,15,81,63,92,141,84,116,146,146,80,1,101,243,234,49,246,246,2,191,97,252,238,178,63,182,0,35,223,37,155,141,152,31,102,225,131,97,255,0,11,192,126,3,7,216,186,125,46,3,140,56,248,59,17,119,159,140,157,39,181,56,102,231,205,85,255,10,45,123,6,45,126,38,176,86,66,105,251,173,173,101,103,47,141,215,76,183,81,4,234,94,194,84,23, +158,233,214,131,47,141,163,155,156,201,150,214,21,4,146,171,62,235,27,237,176,173,204,112,208,239,197,198,26,126,243,50,193,87,238,151,231,6,168,157,196,233,103,144,56,125,24,137,147,207,32,113,242,32,18,103,159,78,225,236,65,4,190,248,116,2,95,84,4,254,242,238,12,244,212,230,109,9,150,74,197,116,125,26,113,222,191,26,159,143,94,248,211,8,187,189,125,28,1,108,79,156,104,76,55,147,210,128,214,15,91,121,79,232,131,57,46,119,83,226,32,79,54,250,22,150,189,239,153,105,54,53,123,132,75,95,150,212,243,12,221,27,55,49,3,16,201,162,163,123,103,237,249,186,245,242,144,55,70,136,207,67,233,180,65,2,34,237,227,40,170,206,182,70,246,110,149,164,226,113,135,249,62,207,55,189,74,195,52,233,19,5,14,77,205,168,14,7,38,234,109,3,26,24,24,180,38,58,215,15,62,207,91,206,120,152,189,7,242,147,155,233,49,13,108,213,59,93,170,137,120,60,167,120,211,167,91,235,196,27,36,185,172,117,77,255,173,155,39,205,175,115,170,211,15,135, +100,171,93,213,169,138,20,45,52,120,243,240,144,84,80,103,209,123,103,219,30,25,15,141,94,119,24,173,175,187,30,81,59,127,61,69,37,153,155,94,62,253,176,141,4,84,10,196,57,211,222,243,151,122,250,227,18,7,218,238,9,240,159,61,64,236,125,143,219,196,180,55,217,250,248,217,205,60,244,129,39,191,193,159,129,148,234,62,48,223,46,87,102,84,218,117,222,89,162,139,45,119,12,72,206,235,191,253,164,223,181,81,157,145,98,172,110,180,179,66,240,119,78,180,188,230,91,137,175,15,239,146,210,92,85,100,162,160,73,116,10,142,132,227,27,9,148,226,213,161,64,165,86,59,78,85,210,30,46,126,224,176,93,53,120,106,59,189,49,150,166,250,218,214,230,21,28,58,225,248,92,31,167,194,212,165,155,138,36,163,241,188,122,117,128,64,235,211,117,253,86,39,176,79,207,205,133,186,186,161,177,111,204,225,185,101,41,245,187,245,122,139,116,222,35,128,237,34,161,11,129,53,242,77,55,91,8,231,2,40,28,93,136,92,130,10,75,220,85,151,17,129,120,18,26,59, +134,175,4,140,187,188,88,168,40,56,91,245,175,237,140,78,246,65,158,170,148,143,163,183,198,105,160,125,21,160,105,166,106,0,149,151,69,175,92,232,26,240,164,30,9,158,246,62,131,170,185,53,248,68,210,227,207,34,61,126,36,233,90,57,4,117,208,116,136,153,70,253,98,37,77,102,133,249,245,84,127,50,212,37,209,96,116,249,98,124,121,62,8,188,146,232,59,125,199,253,209,138,8,223,234,83,229,152,98,108,231,39,60,51,30,11,208,186,193,85,118,161,250,121,162,2,58,52,33,212,152,41,80,62,18,177,254,165,67,43,94,8,95,143,196,74,227,242,86,156,244,110,227,99,144,170,91,193,195,56,77,182,112,202,230,6,156,58,2,153,17,99,129,149,32,93,158,222,129,214,37,93,41,214,241,150,121,244,187,44,11,8,3,173,220,106,62,185,121,105,218,206,118,233,183,14,4,95,61,243,103,146,154,76,171,97,64,209,119,43,10,10,111,154,68,71,161,61,54,121,66,129,123,193,170,202,162,123,24,111,148,112,89,104,133,91,104,33,245,205,5,16,108,217,213,237, +207,108,9,246,182,100,198,148,204,150,234,213,46,247,119,93,116,171,95,123,13,203,193,64,102,211,0,95,189,61,76,224,244,214,71,67,198,244,230,248,152,101,59,94,10,223,51,8,37,75,245,90,174,52,175,148,116,232,181,3,250,149,175,172,210,16,87,191,119,156,158,104,106,161,243,46,140,181,74,250,153,83,102,95,221,244,174,73,20,224,195,153,210,55,215,15,100,11,143,240,9,76,225,111,49,59,13,92,232,223,104,106,61,128,240,213,143,173,250,189,222,112,112,121,113,233,33,193,159,56,72,81,171,216,154,15,167,119,206,171,25,159,87,132,228,69,249,0,52,146,94,214,61,132,132,36,245,64,44,106,115,211,79,27,15,32,191,145,223,66,1,243,81,45,82,252,66,189,217,95,125,70,71,115,126,31,29,225,139,184,107,120,182,138,142,168,248,136,142,238,5,47,224,11,42,176,37,198,221,200,95,146,245,167,209,85,51,51,77,26,234,173,82,168,207,171,124,91,168,79,237,156,173,5,189,5,215,194,220,63,69,249,246,94,49,216,192,83,188,45,10,122,135,54,81,22, +107,93,248,191,198,154,103,68,73,86,15,123,78,237,30,231,242,224,26,228,255,131,107,188,13,41,111,195,202,91,209,194,226,64,155,170,219,100,206,246,183,2,3,171,182,99,29,94,4,26,135,23,121,43,94,222,138,152,183,98,22,187,205,193,181,52,95,182,173,5,253,54,172,131,54,208,195,139,242,207,162,60,44,192,89,203,226,38,191,83,107,51,40,211,93,53,1,51,190,35,254,91,64,11,244,78,253,164,1,156,5,254,71,51,237,234,77,200,170,244,12,195,255,7,111,227,168,235,