mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
*ScatterDraw: Some fixes and more doc
git-svn-id: svn://ultimatepp.org/upp/trunk@6088 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
7fb258fb97
commit
17ad76b160
3 changed files with 149 additions and 73 deletions
|
|
@ -65,9 +65,6 @@ protected:
|
|||
double opacity;
|
||||
|
||||
int id;
|
||||
|
||||
bool trendLine;
|
||||
//double trend
|
||||
};
|
||||
|
||||
class ScatterSeries : public Moveable<ScatterSeries>, public ScatterBasicSeries {
|
||||
|
|
@ -98,7 +95,7 @@ public:
|
|||
Callback WhenSetXYMin;
|
||||
|
||||
ScatterDraw& SetSize(Size sz) {size = sz; return *this;};
|
||||
virtual Size GetSize() {return size;};
|
||||
virtual Size GetSize() const {return size;};
|
||||
|
||||
ScatterDraw& SetColor(const Color& _color);
|
||||
ScatterDraw& SetTitle(const String& _title);
|
||||
|
|
@ -191,7 +188,6 @@ public:
|
|||
ScatterDraw &AddSeries(PlotParamFunc function, int np, double from = 0, double to = 1)
|
||||
{return AddSeries<PlotParamFuncSource>(function, np, from, to);}
|
||||
|
||||
ScatterDraw &_AddSeries(DataSource *data);
|
||||
ScatterDraw &AddSeries(DataSource &data);
|
||||
|
||||
template <class C>
|
||||
|
|
@ -354,7 +350,6 @@ public:
|
|||
int GetId(int index);
|
||||
|
||||
Drawing GetDrawing(bool ctrl = true);
|
||||
Image GetImage(const Size &size, int scale = 2, bool ctrl = true);
|
||||
Image GetImage(int scale = 2);
|
||||
|
||||
#ifdef PLATFORM_WIN32
|
||||
|
|
@ -375,9 +370,11 @@ public:
|
|||
int GetCount() {return series.GetCount();}
|
||||
bool IsEmpty() {return series.IsEmpty();}
|
||||
|
||||
virtual void Refresh() {};
|
||||
|
||||
protected:
|
||||
ScatterDraw &_AddSeries(DataSource *data);
|
||||
Image GetImage(const Size &size, int scale = 2, bool ctrl = true);
|
||||
virtual void Refresh() {};
|
||||
|
||||
int mode;
|
||||
Color graphColor;
|
||||
String title;
|
||||
|
|
@ -424,9 +421,9 @@ protected:
|
|||
|
||||
void Scrolling(bool down, Point &pt, bool isOut = false);
|
||||
|
||||
void ExpFormat(String& s, int i, double d) {s = FormatDoubleExp(d,1);}
|
||||
void MonFormat(String& s, int i, double d) {s = Format("%Mon",int(d));}
|
||||
void DyFormat(String& s, int i, double d) {s = Format("%Dy",int(d));}
|
||||
void ExpFormat(String& s, int i, double d) {s = FormatDoubleExp(d, 1);}
|
||||
void MonFormat(String& s, int i, double d) {s = Format("%Mon", int(d));}
|
||||
void DyFormat(String& s, int i, double d) {s = Format("%Dy", int(d));}
|
||||
|
||||
static String VariableFormat(double range, double d)
|
||||
{
|
||||
|
|
@ -478,17 +475,17 @@ void ScatterDraw::SetDrawing(T& w, const Size& size, int scale, bool ctrl)
|
|||
plotH = scale*(size.cy - (vPlotTop + vPlotBottom)) - titleHeight;
|
||||
|
||||
if (!ctrl) {
|
||||
if (!PlotTexts(w, GetSize(), scale))
|
||||
if (!PlotTexts(w, size, scale))
|
||||
return;
|
||||
} else
|
||||
w.Offset(Point(scale*hPlotLeft, scale*vPlotTop + titleHeight));
|
||||
|
||||
Plot(w, size, scale);
|
||||
|
||||
ClipEnd(w);
|
||||
|
||||
if (ctrl)
|
||||
w.Offset(Point(-scale*hPlotLeft, -(scale*vPlotTop + titleHeight)));
|
||||
|
||||
ClipEnd(w);
|
||||
}
|
||||
|
||||
template <class T>
|
||||
|
|
@ -578,6 +575,8 @@ bool ScatterDraw::PlotTexts(T& w, const Size &size, int scale)
|
|||
w.DrawLine(0, 0, 0, plotH, fround(gridWidth*scale), Black);
|
||||
w.DrawLine(plotW, 0, plotW, plotH + 1, fround(gridWidth*scale), Black);
|
||||
|
||||
ClipEnd(w);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -595,7 +594,7 @@ void ScatterDraw::Plot(T& w, const Size &size, int scale)
|
|||
double x0 = plotW*xMinUnit/xRange;
|
||||
for(int i = 0; xMinUnit + i*xMajorUnit < xRange; i++) {
|
||||
int xg = fround(x0 + i*plotW/d1);
|
||||
if (xg > gridWidth || xg < plotW - gridWidth)
|
||||
if (xg > 2*gridWidth && xg < plotW - 2*gridWidth)
|
||||
DrawLineOpa(w, xg, 0, xg, fround(plotH), 1, 1, gridWidth, gridColor, "2 2");
|
||||
}
|
||||
}
|
||||
|
|
@ -603,7 +602,7 @@ void ScatterDraw::Plot(T& w, const Size &size, int scale)
|
|||
double y0 = -plotH*yMinUnit/yRange + plotH;
|
||||
for(int i = 0; yMinUnit + i*yMajorUnit < yRange; i++) {
|
||||
int yg = fround(y0 - i*plotH/d2);
|
||||
if (yg > gridWidth || yg < plotH - gridWidth)
|
||||
if (yg > 2*gridWidth && yg < plotH - 2*gridWidth)
|
||||
DrawLineOpa(w, 0, yg, fround(plotW), yg, 1, 1, gridWidth, gridColor, "2 2");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1250,12 +1250,14 @@ and double.&]
|
|||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:SetSize`(Size`): [_^ScatterDraw^ ScatterDraw][@(0.0.255) `&]_[* SetSize
|
||||
]([_^Size^ Size]_[*@3 sz])&]
|
||||
[s3;%% Sets the control size with [%-*@3 sz].&]
|
||||
[s3;%% Sets the control size with [%-*@3 sz]. Functions like GetImage()
|
||||
will return a bitmap of [%-*@3 sz] size.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:GetSize`(`)const: [@(0.0.255) virtual] [_^Size^ Size]_[* GetSize]()_[@(0.0.255) c
|
||||
onst]&]
|
||||
[s3;%% Returns the control size.&]
|
||||
[s3;%% Returns the control size. Functions like GetImage() will return
|
||||
a bitmap of [%-*@3 sz] size.&]
|
||||
[s1; &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:SetColor`(const Color`&`): [_^ScatterDraw^ ScatterDraw][@(0.0.255) `&
|
||||
|
|
@ -1602,6 +1604,59 @@ t]&]
|
|||
[s3;%% Returns the secondary Y axis origin.&]
|
||||
[s1; &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(double`*`,int`,double`,double`): [_^ScatterDraw^ Scatter
|
||||
Draw]_`&[* AddSeries]([@(0.0.255) double]_`*[*@3 yData], [@(0.0.255) int]_[*@3 numData],
|
||||
[@(0.0.255) double]_[*@3 x0]_`=_[@3 0], [@(0.0.255) double]_[*@3 deltaX]_`=_[@3 1])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 yData ]C array with [%-*@3 numData]
|
||||
where the [%-*@3 yData`[0`] ]X value is [%-*@3 x0] and the horizontal
|
||||
distance between [%-*@3 yData] values is [%-*@3 deltaX].&]
|
||||
[s3;%% [%-*@3 yData] has to be stored in a permanent location during
|
||||
ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(double`*`,double`*`,int`): [_^ScatterDraw^ ScatterDraw]_
|
||||
`&[* AddSeries]([@(0.0.255) double]_`*[*@3 xData], [@(0.0.255) double]_`*[*@3 yData],
|
||||
[@(0.0.255) int]_[*@3 numData])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 xData] and [%-*@3 yData] C
|
||||
arrays with [%-*@3 numData].&]
|
||||
[s3;%% [%-*@3 xData] and [%-*@3 yData] has to be stored in a permanent
|
||||
location during ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(Vector`<double`>`&`,Vector`<double`>`&`): [_^ScatterDraw^ S
|
||||
catterDraw]_`&[* AddSeries]([_^Vector^ Vector]<[@(0.0.255) double]>_`&[*@3 xData],
|
||||
[_^Vector^ Vector]<[@(0.0.255) double]>_`&[*@3 yData])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 xData] and [%-*@3 yData] [%-_^Vector^ Vector][%- <][%-@(0.0.255) d
|
||||
ouble][%- >].&]
|
||||
[s3;%% [%-*@3 xData] and [%-*@3 yData] has to be stored in a permanent
|
||||
location during ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(Array`<double`>`&`,Array`<double`>`&`): [_^ScatterDraw^ S
|
||||
catterDraw]_`&[* AddSeries]([_^Array^ Array]<[@(0.0.255) double]>_`&[*@3 xData],
|
||||
[_^Array^ Array]<[@(0.0.255) double]>_`&[*@3 yData])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 xData] and [%-*@3 yData] [%-_^Vector^ Array][%- <][%-@(0.0.255) d
|
||||
ouble][%- >].&]
|
||||
[s3;%% [%-*@3 xData] and [%-*@3 yData] has to be stored in a permanent
|
||||
location during ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(Vector`<Pointf`>`&`): [_^ScatterDraw^ ScatterDraw]_`&[* Ad
|
||||
dSeries]([_^Vector^ Vector]<[_^Pointf^ Pointf]>_`&[*@3 points])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 points] [%-_^Vector^ Vector][%- <][%-_^Pointf^ Poin
|
||||
tf][%- >].&]
|
||||
[s3;%% [%-*@3 points] has to be stored in a permanent location during
|
||||
ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:AddSeries`(Array`<Pointf`>`&`): [_^ScatterDraw^ ScatterDraw]_`&[* Add
|
||||
Series]([_^Array^ Array]<[_^Pointf^ Pointf]>_`&[*@3 points])&]
|
||||
[s3;%% Adds a new series stored in [%-*@3 points] [%-_^Vector^ Array][%- <][%-_^Pointf^ Point
|
||||
f][%- >].&]
|
||||
[s3;%% [%-*@3 points] has to be stored in a permanent location during
|
||||
ScatterDraw life to avoid memory problems.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:Opacity`(double`): [_^ScatterDraw^ ScatterDraw]_`&[* Opacity]([@(0.0.255) d
|
||||
ouble]_[*@3 opacity]_`=_[@3 1])&]
|
||||
[s3;%% Sets the series [%-*@3 opacity] .from 1 (opaque) to 0 (transparent/invisible).&]
|
||||
|
|
@ -1641,6 +1696,25 @@ of every Y grid line are shown.&]
|
|||
of every Y grid line are shown.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:SetDataPrimaryY`(int`,bool`): [@(0.0.255) void]_[* SetDataPrimaryY]([@(0.0.255) i
|
||||
nt]_[*@3 index], [@(0.0.255) bool]_[*@3 primary]_`=_[@(0.0.255) true])&]
|
||||
[s3;%% If [%-*@3 primary] is true, [%-*@3 index] series is considered
|
||||
to be a primary series so it uses the left vertical axis. If
|
||||
false it uses right vertical axis.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:SetDataPrimaryY`(bool`): [_^ScatterDraw^ ScatterDraw]_`&[* SetDataPri
|
||||
maryY]([@(0.0.255) bool]_[*@3 primary])&]
|
||||
[s3;%% If [%-*@3 primary] is true, last added series is considered
|
||||
to be a primary series so it uses the left vertical axis. If
|
||||
false it uses right vertical axis..&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:IsDataPrimaryY`(int`)const throw`(Exc`): [@(0.0.255) bool]_[* IsDataP
|
||||
rimaryY]([@(0.0.255) int]_[*@3 index])_[@(0.0.255) const]_[@(0.0.255) throw]_(Exc)&]
|
||||
[s3;%% Returns true if [%-*@3 index] series is primary.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:SetSequentialX`(int`,bool`): [@(0.0.255) void]_[* SetSequentialX]([@(0.0.255) i
|
||||
nt]_[*@3 index], [@(0.0.255) bool]_[*@3 sequential]_`=_[@(0.0.255) true])&]
|
||||
[s3;%% If [%-*@3 sequential] is true, [%-*@3 index] series is considered
|
||||
|
|
@ -1704,7 +1778,7 @@ nt]_[*@3 index], [@(0.0.255) int]_[*@3 id])&]
|
|||
[s3;%% Returns the id of [%-*@3 index] data series.&]
|
||||
[s1;%% &]
|
||||
[s6; &]
|
||||
[s5;:ScatterDraw`:`:GetDrawing`(`): [_^Drawing^ Drawing]_[* GetDrawing]()&]
|
||||
[s5;:ScatterDraw`:`:GetDrawing`(bool`): [_^Drawing^ Drawing]_[* GetDrawing]()&]
|
||||
[s3;%% Returns the control Drawing.&]
|
||||
[s1; &]
|
||||
[s6; &]
|
||||
|
|
|
|||
|
|
@ -290,58 +290,61 @@ COMPRESSED
|
|||
133,149,10,43,172,249,152,94,133,60,199,15,228,237,202,107,5,140,88,255,230,89,113,73,148,32,242,9,63,254,246,118,139,96,226,130,194,27,5,129,207,246,228,3,24,241,178,62,162,4,10,42,28,54,135,26,141,155,162,243,103,51,42,145,177,237,77,36,100,40,48,129,112,51,15,186,122,71,35,106,12,247,100,166,101,45,157,63,115,114,124,5,156,120,92,29,244,133,112,35,141,36,69,250,55,153,140,16,43,90,213,87,31,146,9,91,32,216,30,142,95,103,195,202,160,243,207,31,146,44,207,43,33,165,125,25,130,221,88,144,225,121,5,17,170,21,103,66,194,113,242,211,111,8,75,100,50,249,47,169,201,83,240,166,85,211,114,34,53,135,154,230,135,248,232,143,93,140,79,215,52,122,166,32,222,222,189,171,95,31,110,72,127,126,203,44,217,54,93,80,119,71,249,172,151,233,182,6,206,124,222,176,36,18,233,7,209,86,42,103,2,133,243,11,149,200,96,51,75,91,214,154,32,32,75,194,41,231,174,24,154,115,190,216,76,152,76,165,194,184,138,113,222,146,146,105,
|
||||
131,60,37,126,119,5,77,195,254,207,4,226,175,197,163,48,30,44,65,67,98,137,101,222,199,45,51,160,146,61,24,32,136,201,139,106,117,177,150,101,216,35,209,80,88,254,160,125,78,82,43,200,41,195,183,62,14,233,103,137,112,81,11,134,103,10,0,50,146,81,184,117,42,144,140,24,239,104,179,156,163,10,219,231,31,74,247,215,101,111,169,125,61,47,94,64,206,94,149,34,50,96,222,122,108,77,79,253,171,116,254,139,217,134,120,159,230,249,14,101,57,161,216,246,208,158,207,236,135,172,94,173,74,223,100,55,104,221,220,52,11,36,69,40,184,68,182,24,190,80,74,5,34,166,66,87,81,168,5,121,19,179,196,11,95,249,39,26,237,101,56,81,1,182,94,36,141,154,148,121,65,36,114,26,35,92,136,207,250,248,183,79,48,211,233,207,223,63,241,68,130,251,33,54,149,152,255,180,65,111,113,135,160,30,150,121,146,49,52,65,79,88,38,51,91,131,128,147,149,73,255,18,22,228,80,141,124,41,21,144,184,49,139,17,59,102,118,204,111,120,221,125,48,127,116,144,
|
||||
172,102,191,37,125,143,56,214,66,21,74,106,140,106,2,135,102,14,34,163,113,41,62,140,82,14,150,203,6,80,175,74,158,181,219,90,208,30,221,228,135,17,28,114,14,129,34,28,12,129,25,61,193,3,169,64,182,64,165,136,128,171,24,252,250,79,254,59,28,34,170,211,123,10,8,58,111,243,175,192,78,65,20,77,225,117,92,122,137,51,237,206,233,16,201,194,208,160,2,224,129,252,60,98,14,161,226,105,24,148,68,178,220,204,161,9,164,140,230,35,28,83,226,11,251,29,180,180,166,175,134,8,199,170,90,3,33,182,44,92,252,152,202,224,43,77,77,231,227,106,8,54,226,79,23,127,225,115,16,17,60,39,48,176,233,34,226,207,43,152,114,141,36,114,142,135,139,241,188,192,196,22,4,123,159,65,136,1,201,242,191,63,214,193,207,144,15,138,215,80,59,147,85,32,196,78,228,208,238,125,191,96,100,37,106,236,165,143,253,247,163,36,103,171,30,34,244,158,40,3,45,112,211,50,23,141,203,37,158,243,66,34,100,223,249,25,109,188,43,26,43,180,176,18,73,46,
|
||||
92,96,179,189,177,158,121,104,189,174,97,133,117,50,199,237,168,174,106,246,241,193,175,23,84,221,69,4,219,197,246,143,79,112,208,81,70,155,197,104,156,181,54,202,75,223,152,182,225,182,110,8,52,202,134,27,216,124,184,222,223,197,170,248,187,1,174,208,120,132,171,56,74,120,176,243,242,230,21,87,104,26,20,108,71,183,100,101,42,198,144,255,86,152,120,189,84,33,56,252,167,163,123,227,115,135,160,112,92,178,31,207,225,71,113,228,23,97,48,172,63,254,215,220,155,120,37,126,229,251,162,255,10,235,190,119,122,37,103,165,115,146,234,211,231,246,75,191,251,86,231,116,186,115,179,86,247,233,94,157,62,125,82,175,87,37,101,170,76,226,187,150,214,85,171,147,234,123,239,90,130,3,131,76,130,162,40,131,224,0,130,34,40,40,163,19,32,226,0,34,34,8,130,130,3,136,34,168,204,32,188,253,3,84,172,82,163,85,213,233,91,43,43,192,239,183,247,119,127,167,253,221,159,239,158,196,73,179,234,237,237,208,184,9,15,223,114,117,27,101,92,133,215,216,23,154,
|
||||
176,161,86,91,232,220,113,233,194,212,140,71,198,16,209,215,123,123,251,210,233,233,76,71,4,4,47,31,195,49,120,106,36,203,192,216,84,11,13,78,71,202,25,156,0,116,180,54,87,188,149,37,231,128,76,110,43,165,195,91,188,147,67,4,44,77,198,22,145,89,202,46,186,42,192,154,153,156,227,165,177,41,66,159,251,88,163,230,109,180,57,123,232,167,164,165,45,87,195,146,94,219,211,33,96,121,72,133,241,196,106,180,6,173,67,27,138,104,32,132,24,134,110,238,24,231,157,166,120,77,135,99,157,194,140,115,117,181,79,196,84,178,148,244,93,154,73,133,70,15,155,26,185,242,61,137,129,234,140,44,211,70,230,1,106,0,195,209,4,224,38,53,164,56,148,7,55,211,139,157,99,234,174,102,186,129,227,160,141,6,60,29,39,251,56,128,84,219,15,90,104,0,152,47,216,142,187,4,212,236,36,45,205,149,107,49,42,239,142,12,77,74,25,183,38,82,93,3,115,205,173,90,78,203,106,150,49,30,222,91,150,214,133,136,44,117,35,174,99,92,188,68,152,56,13,4,
|
||||
183,15,2,72,60,221,102,23,34,153,105,226,54,217,40,24,55,185,58,137,12,65,3,154,108,166,176,237,220,94,52,25,69,214,114,52,24,81,32,110,233,159,107,222,134,136,1,90,163,241,35,15,133,213,117,80,47,60,242,104,6,92,137,224,78,171,99,52,208,36,245,141,1,129,60,65,121,136,99,66,28,177,125,61,28,27,96,190,63,202,160,51,229,189,241,147,240,233,56,171,158,51,47,138,97,105,83,158,224,184,158,43,109,55,250,70,140,180,230,46,13,145,131,49,192,183,130,196,245,152,98,237,64,165,192,59,176,54,5,81,187,130,104,161,147,18,201,3,34,121,218,220,59,197,14,33,134,246,52,59,141,43,134,161,61,249,164,92,59,199,110,65,45,179,194,152,101,141,150,110,234,111,230,232,26,89,29,185,214,57,166,116,174,117,155,162,63,215,58,83,126,216,123,28,182,129,4,226,72,205,54,155,181,40,213,164,119,27,213,146,50,122,102,39,160,134,101,209,62,23,86,115,162,34,113,201,32,91,214,183,176,121,13,24,3,90,169,26,69,233,220,123,164,46,147,20,
|
||||
142,9,99,72,144,34,154,122,165,57,36,67,11,207,109,239,137,166,80,46,35,36,161,190,197,51,73,131,50,11,129,10,202,35,117,28,131,59,87,219,189,119,56,173,117,141,104,208,42,34,167,15,67,4,4,232,156,73,81,204,227,49,219,92,46,184,215,105,240,165,7,248,252,89,131,97,7,177,206,233,49,0,75,237,112,114,233,95,168,62,60,39,135,84,104,5,82,180,140,233,91,0,75,57,142,22,32,162,32,223,192,168,208,57,126,246,115,89,153,40,166,136,175,228,20,32,5,152,9,175,226,152,119,14,156,186,30,164,199,160,61,102,66,197,120,155,198,169,41,17,201,24,97,204,30,107,93,243,199,39,187,128,87,7,169,23,213,13,220,20,36,132,184,37,128,53,123,157,100,69,221,122,122,35,108,10,47,215,97,28,61,115,69,252,48,194,0,78,50,52,232,160,6,205,38,3,13,123,247,123,108,169,180,191,5,233,113,152,7,41,243,161,249,93,209,150,142,145,137,183,186,215,70,118,27,214,59,55,65,182,67,167,80,73,26,246,204,129,74,229,108,55,218,82,123,102,
|
||||
68,189,135,167,49,233,33,92,216,77,105,181,108,239,160,155,149,169,54,54,212,85,224,152,45,163,113,97,1,123,154,81,38,125,166,110,75,154,185,63,111,48,172,186,90,209,32,237,70,147,122,163,115,45,158,30,45,139,147,201,38,118,218,78,147,145,209,125,115,223,98,45,135,19,234,237,101,121,131,46,85,199,129,104,223,42,160,43,4,209,21,87,43,168,50,8,173,34,114,225,210,89,32,203,129,51,70,111,1,105,137,145,190,188,110,79,38,249,67,74,82,122,109,45,188,9,128,247,24,110,253,184,105,24,24,99,10,143,91,82,137,163,18,127,58,113,60,74,182,17,199,60,237,202,102,49,185,159,221,191,39,145,80,180,252,37,89,51,101,114,137,40,98,38,92,162,217,58,6,78,130,48,243,176,136,157,41,177,81,58,141,104,196,192,73,84,1,135,6,55,80,218,83,86,79,39,13,213,20,238,162,4,211,193,29,89,147,44,161,180,198,86,79,181,219,71,193,196,42,63,72,212,182,88,244,40,54,198,218,48,48,119,194,214,117,90,53,157,156,145,129,181,145,104,223,164,
|
||||
217,237,83,35,197,4,171,119,179,142,204,193,26,121,77,164,158,214,214,213,214,214,184,91,98,247,34,13,244,249,232,178,101,7,63,211,84,223,225,90,91,99,13,246,81,230,133,34,235,244,234,170,152,211,63,80,191,180,130,52,183,167,240,124,17,111,154,172,31,6,48,166,107,73,210,209,190,208,234,192,172,216,162,102,177,166,214,238,28,236,175,63,37,4,71,214,218,212,131,205,219,203,253,97,83,173,120,76,0,239,71,47,250,253,147,3,211,195,34,113,127,255,64,56,205,88,161,216,183,117,199,199,100,254,66,79,195,166,47,10,134,60,50,169,165,133,211,190,36,220,15,170,235,148,83,42,196,224,124,183,111,32,45,195,118,9,187,87,26,66,234,246,149,22,19,80,157,175,77,143,211,146,182,58,186,154,247,197,240,233,132,223,63,210,51,35,101,78,182,163,14,163,52,184,166,105,72,167,91,226,138,72,99,76,198,120,200,61,93,43,48,234,60,98,224,17,164,99,202,192,26,123,128,17,151,135,125,209,131,181,19,122,58,126,26,177,50,211,139,161,169,81,242,136,151,100,
|
||||
205,198,38,8,116,3,241,176,135,186,146,60,241,207,26,215,70,176,82,234,148,46,52,212,162,135,139,28,251,181,179,203,203,181,71,189,189,129,222,97,18,109,157,208,165,239,71,107,151,1,68,194,13,31,109,101,73,36,3,112,73,183,14,96,129,21,253,22,191,189,89,183,132,104,32,135,37,83,205,115,202,197,29,13,163,163,163,25,137,239,233,21,121,182,234,133,145,69,237,176,69,115,176,40,232,222,219,91,27,22,41,60,163,158,100,120,79,91,175,221,145,58,188,50,234,2,245,160,181,161,89,172,197,240,72,116,210,138,213,209,62,60,66,109,70,232,87,105,148,238,221,129,1,26,177,65,92,199,154,61,108,95,110,35,211,3,221,92,201,22,89,135,87,119,78,31,47,193,131,93,174,69,30,175,69,176,76,39,147,153,141,43,39,110,188,113,113,110,222,194,234,153,92,92,232,107,88,153,223,221,105,109,100,181,38,70,18,17,84,139,1,58,71,56,79,49,154,148,94,184,183,141,197,233,233,231,38,55,123,148,181,45,20,4,175,5,217,35,28,21,31,83,155,103,169,242,
|
||||
73,255,242,228,58,118,185,99,97,60,49,186,109,22,56,21,205,147,243,66,212,194,0,70,187,84,215,42,208,133,0,182,105,238,156,20,110,35,89,90,12,102,42,59,216,39,149,45,73,71,224,245,109,91,137,173,227,86,36,158,166,137,136,90,79,48,71,60,75,253,118,27,162,173,187,103,106,71,164,214,110,215,167,250,141,244,227,86,196,116,87,31,183,150,199,21,178,208,152,118,39,25,142,64,112,250,226,147,137,221,93,188,64,133,239,196,123,120,67,115,59,245,172,6,170,86,142,213,163,151,251,184,3,195,250,153,72,45,124,202,130,209,14,116,25,185,181,220,70,247,44,37,61,189,68,63,213,204,9,230,181,195,59,243,38,141,201,142,23,210,168,0,8,77,106,184,245,139,186,83,18,156,69,20,75,51,30,164,116,234,164,133,209,211,221,223,3,192,94,208,183,179,141,38,81,0,160,225,213,75,49,156,197,14,108,31,99,86,230,91,89,227,137,71,200,83,154,67,43,170,169,30,190,24,33,234,167,82,120,22,98,198,197,242,165,119,224,36,218,194,38,53,179,60,217,132,
|
||||
80,163,217,122,225,33,131,168,209,244,180,205,207,204,207,154,169,211,201,36,171,30,77,22,71,135,147,218,136,127,148,188,62,64,91,89,208,227,217,199,147,3,238,85,57,34,193,149,147,112,233,77,85,134,135,180,10,235,119,108,135,125,60,139,41,171,29,80,136,71,16,106,255,128,226,72,234,223,225,39,125,126,8,138,116,110,215,186,73,58,178,91,190,37,14,186,209,42,170,17,229,8,192,27,186,225,36,177,99,106,199,131,210,197,109,97,85,109,215,97,75,67,155,85,45,90,107,198,137,100,56,66,253,241,18,33,8,103,117,163,70,157,34,198,146,22,160,27,31,66,106,149,159,38,7,116,228,193,253,76,7,41,206,220,56,142,111,119,142,173,26,70,218,105,18,183,17,43,101,69,66,177,227,112,35,145,33,30,79,28,111,227,232,40,148,104,198,112,60,225,25,25,94,159,25,154,225,244,36,217,73,109,130,52,203,33,214,46,235,189,230,89,201,186,91,61,164,247,210,240,205,235,91,168,104,24,120,130,8,79,7,105,120,29,174,29,207,28,31,0,128,69,174,116,106,183,
|
||||
92,17,131,150,141,69,128,161,27,183,156,178,58,57,184,20,97,217,8,198,85,57,230,52,149,138,101,227,110,100,43,82,107,183,219,15,150,236,51,118,30,4,115,232,33,149,165,205,99,160,138,169,226,5,211,46,77,22,153,225,53,103,209,92,141,105,102,239,8,143,224,77,123,100,16,152,210,106,119,52,50,153,50,166,24,60,30,146,198,22,22,104,134,8,98,206,83,200,243,15,246,248,86,1,214,26,10,19,198,147,179,116,228,201,241,252,16,210,56,183,73,134,166,193,72,129,6,210,73,195,0,186,69,200,217,158,144,180,204,115,184,157,109,140,176,159,161,233,55,178,217,62,172,218,184,177,40,143,236,3,164,34,71,196,130,120,5,99,236,112,136,150,116,41,157,138,232,209,44,109,100,119,161,155,176,50,142,25,118,171,27,3,11,78,244,149,227,97,10,140,135,218,94,206,136,175,51,36,89,217,95,11,31,9,219,156,97,19,135,89,155,233,56,178,130,177,206,158,146,44,18,109,169,70,60,87,20,35,115,26,80,109,208,184,102,225,76,12,78,160,208,222,164,38,188,66,
|
||||
105,109,5,3,135,174,171,39,143,159,198,218,24,130,238,250,80,24,175,167,217,20,92,121,111,251,17,4,48,90,122,235,87,7,136,6,19,24,246,247,86,198,192,248,139,16,231,225,15,39,158,135,63,54,115,30,254,48,215,229,121,0,66,230,140,96,12,162,216,41,198,216,79,132,75,77,225,4,134,2,112,154,210,113,136,166,247,246,182,82,169,27,107,180,253,22,77,63,123,3,16,135,182,218,240,0,22,131,160,24,79,203,233,177,30,169,37,169,52,41,60,55,34,62,170,63,156,36,73,69,1,19,192,9,57,133,235,72,160,113,208,118,99,14,253,32,142,38,114,232,231,80,62,151,67,63,189,199,138,28,250,153,111,93,80,106,81,182,148,159,151,1,48,196,156,142,57,236,90,83,191,206,213,212,236,143,11,116,164,77,81,172,251,24,139,53,121,130,136,205,156,21,183,247,166,0,198,49,122,27,72,203,192,92,107,131,30,95,170,69,131,134,84,101,200,205,107,145,56,4,48,120,147,149,42,74,95,30,150,168,180,121,51,104,35,121,51,196,233,121,88,194,194,42,157,92,
|
||||
91,42,153,192,201,218,33,133,215,31,162,0,21,243,128,173,61,21,29,5,38,155,159,202,79,15,109,111,65,160,202,216,166,25,66,171,154,216,102,82,112,96,16,103,13,205,47,247,15,207,29,56,1,144,215,213,79,183,19,33,160,52,169,229,36,146,3,196,105,156,25,0,153,20,169,55,12,193,56,0,81,20,2,114,142,179,122,8,212,0,59,31,242,226,107,35,8,173,171,153,143,181,146,22,251,85,246,35,79,75,54,54,197,166,251,52,17,253,60,95,115,2,178,2,189,71,235,106,29,145,90,251,209,102,77,135,22,2,146,72,86,92,38,75,132,54,167,154,234,41,131,152,221,45,150,114,197,41,32,10,12,173,73,77,100,249,64,101,136,96,118,73,102,74,4,179,36,172,117,12,224,89,216,89,18,147,147,83,132,211,139,243,50,179,174,83,85,108,148,205,102,7,2,13,170,80,30,56,185,208,121,224,100,148,231,129,19,18,88,215,50,107,52,30,33,167,248,222,45,249,254,132,64,145,244,243,37,89,55,59,46,231,53,43,76,184,77,33,235,116,170,97,108,172,115,176,
|
||||
145,143,230,142,164,7,7,187,135,135,27,189,10,178,158,212,49,71,230,224,141,91,67,238,185,12,181,71,238,222,105,104,208,206,26,186,26,155,76,179,92,42,148,223,172,175,167,51,114,40,191,161,82,101,4,218,190,24,99,214,104,37,166,189,136,97,40,208,53,105,244,182,131,161,150,160,100,168,90,180,195,195,195,177,184,196,121,104,141,235,79,65,152,110,231,116,103,233,187,209,147,206,184,149,171,167,24,250,44,33,220,4,66,72,159,158,5,29,128,236,111,38,202,157,211,173,30,147,90,162,89,144,30,38,13,28,111,236,208,41,207,38,216,179,210,192,168,67,214,136,235,236,51,192,55,224,204,241,83,251,90,88,110,166,147,122,214,210,147,134,6,182,182,201,78,68,213,55,34,224,147,56,202,128,141,176,180,30,213,247,134,120,145,190,197,78,10,241,36,153,218,31,226,55,165,162,1,116,167,208,61,29,158,112,201,19,59,173,235,214,172,227,116,166,3,127,196,204,166,85,156,224,198,248,124,219,144,29,36,81,131,38,187,152,16,58,84,4,241,237,194,241,218,222,163,193,
|
||||
49,215,176,212,62,95,175,140,185,82,7,170,84,84,179,209,221,176,172,169,229,202,55,50,41,126,192,187,93,219,62,168,101,52,237,175,14,118,14,239,140,204,153,141,19,167,6,69,111,16,60,108,226,78,53,140,120,141,140,225,109,20,206,43,183,162,128,126,76,38,244,136,93,228,209,210,1,22,235,112,78,36,108,154,89,35,18,189,159,198,111,251,87,250,23,7,230,70,153,11,157,99,67,148,134,236,86,124,198,111,225,207,35,231,231,113,171,205,173,51,50,2,35,32,174,231,118,1,239,11,110,183,15,178,151,134,73,36,210,232,161,51,227,23,99,102,103,231,230,28,118,233,81,183,137,199,102,33,184,218,149,22,58,67,144,16,142,153,72,210,201,237,89,35,83,122,196,158,17,26,53,178,136,111,212,50,107,181,118,14,178,135,41,235,2,103,71,103,231,190,216,140,225,10,211,241,80,247,102,175,166,193,20,62,108,49,184,1,61,105,216,183,179,196,97,166,61,98,140,123,118,118,97,33,157,10,212,141,65,108,104,250,153,32,110,134,81,91,11,195,139,56,129,83,142,237,
|
||||
172,31,51,208,235,140,186,214,177,213,56,154,203,193,3,255,141,161,150,167,180,166,81,61,67,48,52,107,142,52,35,185,114,149,167,221,108,55,111,49,179,113,93,54,150,57,181,200,66,97,143,211,227,193,49,81,199,254,38,80,6,201,109,93,31,111,161,111,239,37,17,202,117,80,159,109,238,198,219,68,18,201,234,208,198,134,111,58,35,194,185,245,36,65,175,95,75,36,238,160,235,230,91,250,205,60,62,255,8,176,67,61,241,26,65,168,159,27,182,107,87,198,227,233,35,29,142,66,60,104,213,152,100,150,70,147,148,199,222,202,102,78,167,143,149,28,104,132,235,148,7,199,247,196,24,110,23,49,23,102,117,52,223,150,191,17,250,75,53,132,208,145,158,204,33,116,30,140,98,183,233,49,151,105,199,229,66,153,84,147,238,49,53,82,178,33,246,214,43,116,120,58,191,191,95,100,3,109,216,36,251,109,139,38,18,27,193,149,143,212,67,70,24,198,96,136,152,229,229,101,236,106,115,11,181,143,172,63,101,8,78,141,196,94,40,207,96,119,227,69,18,66,35,214,70,69,
|
||||
140,33,101,65,155,90,56,229,27,172,7,206,57,217,5,188,244,226,83,60,217,165,105,91,21,56,145,41,144,20,247,245,246,134,169,131,0,42,41,149,28,165,133,111,53,118,136,213,232,19,179,125,105,73,56,14,93,23,175,70,6,9,118,177,222,29,106,31,228,32,151,214,165,233,184,16,63,183,167,65,147,3,163,77,157,38,123,189,46,26,53,71,177,212,17,87,124,107,12,7,58,93,183,196,183,11,31,52,207,15,169,196,236,131,181,225,81,190,148,27,159,116,96,200,201,216,68,36,27,16,19,93,240,249,20,143,177,30,235,231,48,66,195,118,16,227,15,214,2,35,160,31,204,240,151,76,211,13,109,235,93,227,189,137,117,188,72,229,231,241,59,16,125,171,187,217,19,180,11,184,115,131,97,127,168,78,181,234,99,177,106,179,81,44,99,48,9,20,141,153,217,199,224,232,138,168,140,27,57,220,24,119,250,70,181,240,90,109,35,173,22,153,222,34,76,140,218,237,8,20,224,107,102,144,116,106,56,20,179,151,226,214,137,137,76,239,170,222,189,196,231,51,51,201,254,248,
|
||||
224,202,96,59,217,62,106,83,169,154,119,103,2,99,27,120,37,193,147,222,156,170,147,166,157,19,217,244,136,136,68,159,118,167,227,71,132,9,83,90,216,114,156,137,170,83,221,132,241,14,38,211,232,141,27,232,10,86,124,114,7,94,55,51,135,65,235,106,25,169,1,145,200,180,150,210,200,2,78,185,4,174,76,178,217,92,46,87,151,0,253,199,46,150,109,45,226,21,216,85,18,66,71,39,48,117,18,134,60,210,237,239,144,236,175,206,217,220,210,144,91,175,71,155,214,228,211,155,86,129,147,24,76,110,100,51,86,189,251,40,68,199,233,73,187,198,24,115,98,153,32,221,238,236,8,142,163,215,58,199,130,33,32,83,215,120,98,151,216,137,82,36,195,92,199,148,198,41,164,44,246,145,135,68,60,132,104,115,10,33,139,104,122,135,84,81,187,94,147,152,239,32,59,70,39,15,168,227,105,169,157,53,89,107,52,206,206,78,26,246,161,191,17,75,113,140,246,4,154,28,195,211,93,237,204,73,217,220,236,236,18,133,145,138,29,158,78,214,17,166,219,185,186,186,57,14,
|
||||
174,235,196,72,168,173,239,14,10,14,64,191,156,212,213,173,44,39,24,28,206,137,119,204,112,16,12,140,57,119,205,98,10,113,147,33,208,152,28,238,65,199,104,203,206,26,46,8,245,27,194,86,116,221,215,202,90,226,44,27,153,181,157,211,108,100,236,100,91,28,220,200,88,124,214,13,139,55,236,91,106,114,83,189,12,209,156,113,165,118,6,79,235,23,31,39,252,105,219,178,42,230,114,242,7,128,23,54,108,192,103,201,32,245,24,169,91,53,24,122,244,228,67,41,206,221,216,29,214,212,161,92,153,228,30,7,183,106,90,168,157,12,1,139,98,133,160,27,14,41,67,211,56,142,129,14,186,1,69,62,6,156,111,109,196,27,87,29,243,53,35,28,142,154,195,233,28,236,65,68,205,135,78,190,143,140,90,171,115,140,6,70,236,90,84,52,29,93,243,46,245,45,16,131,107,22,75,131,22,111,83,51,151,34,174,84,176,183,255,164,17,75,157,118,76,7,58,70,188,134,201,196,124,90,205,204,8,119,230,80,45,17,188,55,198,108,84,34,84,250,218,145,177,176,115,111,
|
||||
217,176,175,176,49,36,6,255,152,92,179,216,233,218,53,208,208,248,164,85,38,112,2,13,6,142,117,50,44,133,220,49,230,244,135,201,195,145,122,47,99,43,163,33,27,149,177,117,241,137,99,244,192,29,221,86,1,12,27,101,55,9,236,118,101,252,40,152,137,197,21,168,67,11,207,226,215,89,248,56,74,43,117,43,59,131,219,183,137,186,77,29,0,131,78,214,194,165,56,16,108,12,13,76,233,118,168,139,25,88,105,74,146,54,214,27,151,98,137,125,125,136,99,160,181,211,194,232,90,81,195,118,72,74,234,175,69,214,27,169,77,124,179,193,209,139,175,181,49,250,241,138,13,131,46,220,175,152,18,4,199,19,51,190,209,65,22,156,204,101,204,247,96,112,41,103,204,185,163,232,98,132,0,46,102,78,34,102,78,250,9,54,217,212,180,154,160,170,15,196,6,215,79,140,96,72,91,77,12,218,27,134,52,158,17,180,113,124,95,44,24,92,161,173,172,136,81,225,86,158,96,171,185,181,53,162,109,93,176,134,247,87,113,242,4,42,61,89,139,237,144,96,152,199,36,50,
|
||||
121,205,179,86,191,182,70,96,168,226,251,177,80,119,56,220,226,218,157,178,244,54,134,236,8,195,190,11,12,192,113,133,102,29,78,156,53,115,22,59,199,102,18,250,149,218,206,57,206,186,2,215,46,154,246,9,88,112,27,128,196,189,162,182,245,225,84,244,160,45,186,189,64,147,157,40,79,8,6,69,120,121,254,104,104,108,193,17,26,25,89,91,15,187,92,130,129,168,223,178,218,52,54,217,232,71,35,57,135,78,197,70,196,98,9,250,105,96,148,36,156,236,139,52,106,36,62,96,183,74,248,38,222,52,162,119,188,69,75,58,234,232,232,80,69,227,116,99,2,126,228,234,176,56,13,243,67,19,132,244,120,234,112,196,190,130,85,105,246,246,154,218,4,161,3,151,211,179,185,64,5,105,164,55,216,219,230,130,79,91,70,231,140,98,162,90,107,110,27,114,97,251,251,86,249,22,31,203,132,128,7,72,245,86,139,133,122,60,216,195,136,6,93,206,89,54,214,64,151,239,136,215,229,131,194,41,57,13,51,73,19,251,136,114,173,63,77,27,21,236,238,15,77,132,71,231,
|
||||
72,163,199,199,199,150,149,88,27,141,13,252,101,52,56,158,18,200,189,253,20,199,161,59,42,20,25,13,222,117,217,73,236,96,209,6,119,13,109,76,184,220,141,52,100,42,169,195,103,232,222,5,106,183,193,205,76,195,251,224,196,30,244,54,71,119,170,111,89,239,95,116,38,188,244,198,57,12,23,5,192,48,85,78,156,223,168,183,212,246,209,59,134,90,199,66,210,134,67,209,80,54,105,157,232,24,100,227,135,219,57,35,71,167,235,227,238,211,100,196,75,3,105,185,28,25,69,247,251,220,238,206,94,125,103,108,3,147,157,72,218,70,130,147,46,137,110,205,33,222,35,147,228,228,211,125,53,87,95,103,234,110,200,154,185,245,194,148,124,96,111,161,93,100,157,99,175,29,236,42,7,38,183,7,16,51,59,91,71,117,18,171,107,100,201,168,137,133,178,7,193,221,5,42,61,109,245,34,16,136,149,3,92,196,224,140,109,44,30,157,180,247,52,172,227,155,237,77,241,168,173,105,104,60,59,235,77,101,100,50,153,97,208,63,177,163,202,102,150,210,135,243,3,77,189,158,
|
||||
173,67,181,143,101,247,173,168,250,205,0,102,89,100,214,128,99,204,234,32,50,151,218,165,161,77,69,52,144,0,157,26,181,103,230,0,32,57,19,101,168,134,123,164,251,171,3,135,77,124,60,33,14,6,172,80,38,194,72,31,235,105,220,19,156,113,130,233,61,145,100,100,233,248,40,85,141,27,67,187,164,123,203,61,220,177,118,187,9,37,28,179,207,28,17,24,0,177,110,234,204,179,205,221,137,206,68,132,85,71,24,223,172,235,237,58,9,54,180,185,164,233,99,230,188,40,14,70,138,142,254,65,254,240,146,221,149,220,223,31,156,225,163,224,39,83,6,5,161,111,220,191,178,194,109,49,184,84,73,183,38,125,156,106,141,112,235,221,74,29,35,1,48,147,172,127,129,55,166,54,10,154,84,225,101,174,196,174,229,213,11,219,173,189,109,235,171,136,126,163,42,182,238,8,140,6,68,190,168,2,167,90,109,69,129,204,83,0,160,228,38,123,226,52,76,48,67,179,210,44,82,90,54,211,196,83,123,153,135,89,252,46,10,231,232,28,24,241,226,229,230,122,90,194,70,94,
|
||||
192,44,214,233,26,189,91,70,66,40,147,217,63,221,223,216,210,68,2,109,142,54,239,30,179,142,209,204,1,224,112,210,167,29,103,65,64,177,49,173,139,207,59,78,252,155,174,69,101,2,248,255,16,249,36,6,130,120,79,95,31,169,99,144,203,235,242,111,80,178,167,17,72,160,173,48,170,145,192,72,119,166,54,210,141,222,19,129,130,126,184,220,167,242,144,131,10,85,100,213,107,160,179,232,18,48,192,174,27,232,18,217,158,185,143,17,28,238,95,145,30,121,234,237,70,45,87,59,129,63,141,119,43,118,234,27,248,65,238,84,45,153,99,16,219,231,187,154,1,30,166,44,29,240,186,249,7,81,133,66,21,64,218,197,238,147,227,77,4,28,94,0,24,111,246,115,122,185,150,50,176,54,156,78,44,29,211,99,241,181,157,54,105,63,121,45,184,54,194,105,88,223,69,226,233,203,163,72,69,104,186,41,210,50,89,155,43,173,220,116,108,140,159,134,150,182,116,253,248,126,217,160,93,226,207,58,70,7,241,72,105,198,154,220,87,132,247,72,167,99,81,232,34,108,139,181,
|
||||
111,99,176,187,22,192,162,149,46,162,7,206,49,50,213,141,28,175,215,59,230,196,179,54,247,172,32,80,114,194,142,238,186,73,134,161,43,71,183,110,137,8,48,81,104,115,50,190,159,228,154,186,119,23,59,82,17,16,48,169,139,187,190,86,254,234,192,186,140,52,30,32,118,118,166,86,204,155,70,203,202,138,242,72,227,34,219,14,134,231,5,243,102,189,126,106,60,101,73,101,163,1,17,124,120,172,199,218,211,211,121,40,71,39,140,19,73,203,144,43,125,36,213,246,78,216,204,116,67,146,227,96,165,118,247,162,99,1,135,101,95,111,70,107,32,204,230,227,70,59,15,214,200,33,247,174,205,28,109,181,186,250,109,254,9,0,202,154,215,134,119,180,243,83,117,141,131,78,185,69,12,194,30,16,84,49,13,240,195,9,211,230,85,130,176,57,36,221,68,32,70,123,177,116,199,248,124,120,73,221,212,54,196,168,85,38,134,165,114,244,193,184,69,200,201,30,17,178,89,101,220,211,228,53,50,3,19,0,60,0,39,29,119,103,253,146,237,189,250,105,208,108,151,24,65,141,
|
||||
81,169,161,13,178,190,71,181,29,62,92,79,24,179,146,204,200,214,68,38,222,221,188,202,80,198,137,131,153,88,246,52,102,75,31,42,8,193,149,38,91,157,116,61,234,144,41,144,209,67,103,67,147,5,139,140,39,61,181,30,246,234,206,206,78,255,164,172,183,183,215,175,223,70,239,213,231,40,135,17,58,60,13,174,158,158,241,182,210,54,141,214,85,33,99,34,67,107,226,24,37,204,221,38,8,121,213,83,140,52,169,201,225,232,72,25,100,94,44,67,101,72,70,15,214,70,118,23,214,38,55,66,59,72,56,195,231,114,58,113,22,117,35,23,215,196,65,43,233,147,40,200,62,51,93,29,179,198,137,196,113,143,35,157,221,227,48,219,209,35,218,198,45,29,222,45,234,239,159,237,103,177,88,90,174,48,211,153,222,180,165,56,204,225,204,220,168,15,0,53,203,130,147,212,19,177,31,215,135,33,182,136,29,10,184,77,117,186,64,29,65,130,152,213,149,72,36,136,44,66,243,225,122,106,78,48,55,7,158,26,39,208,217,116,18,120,3,113,22,120,195,193,230,136,138,62,
|
||||
233,106,165,53,38,229,235,142,166,227,168,35,136,196,43,235,163,138,3,153,236,80,22,15,140,159,166,90,72,180,227,28,101,26,177,3,46,22,139,109,106,63,146,153,65,29,74,4,246,163,152,125,127,40,176,69,228,112,122,122,106,141,71,160,201,116,208,165,154,159,99,232,176,237,71,105,106,252,200,72,228,108,5,73,192,172,17,217,250,65,230,104,103,174,53,206,210,214,122,76,163,93,70,14,17,5,250,6,235,168,93,216,184,89,123,92,175,228,243,83,251,24,190,192,183,210,175,36,59,180,135,30,170,100,55,149,134,39,119,150,101,45,204,76,28,222,36,76,38,70,165,241,208,102,173,183,121,143,74,165,50,186,140,34,29,11,49,234,144,30,177,186,237,132,132,28,62,25,7,250,195,205,152,186,165,58,142,145,129,85,28,239,132,198,54,210,39,1,187,91,50,48,49,49,145,93,155,246,50,7,5,130,221,166,218,134,134,6,219,0,143,103,199,200,80,155,135,41,45,28,211,218,68,25,216,60,76,24,136,195,81,6,141,54,160,12,186,148,139,157,163,136,134,38,22,196,
|
||||
102,61,48,183,113,125,168,219,145,12,4,229,123,125,103,122,150,182,212,99,229,218,38,202,136,103,119,161,93,118,220,51,51,161,57,6,218,182,213,58,58,37,32,99,0,66,227,23,251,137,160,96,23,208,179,216,54,118,152,164,211,146,30,13,186,59,163,35,172,134,194,8,68,26,113,80,187,40,60,234,232,145,236,119,152,89,128,100,33,189,121,225,115,211,211,149,97,118,71,163,179,15,30,252,175,255,245,163,7,127,174,126,239,231,255,240,15,176,243,47,127,190,7,251,83,105,85,117,73,77,89,121,41,236,222,71,176,234,71,37,53,53,165,85,176,175,171,74,158,126,3,123,84,89,81,83,85,89,254,46,236,147,26,216,227,202,210,106,88,69,101,13,172,170,244,191,63,43,171,42,133,125,252,239,159,192,170,43,97,101,53,176,111,43,171,254,91,53,172,172,2,148,127,242,164,164,226,49,172,188,172,162,20,246,180,170,18,80,121,82,253,238,131,124,107,247,94,104,247,19,80,190,164,186,20,86,249,85,142,20,160,243,168,164,2,246,101,41,236,89,117,233,99,216,131,63,
|
||||
127,94,83,249,180,236,209,195,15,30,254,211,195,127,250,52,207,214,47,107,170,202,31,254,83,117,213,163,203,79,254,207,210,138,135,63,126,86,253,240,255,40,126,248,193,195,15,30,149,151,84,87,127,126,15,86,244,248,1,104,24,86,243,77,73,13,172,172,26,246,101,9,212,82,101,197,89,129,143,170,74,190,205,115,251,254,139,74,42,42,1,123,92,82,83,2,85,47,171,120,84,254,236,49,160,0,36,191,146,93,168,116,129,221,143,64,157,79,43,159,85,61,42,61,227,22,240,117,241,16,98,235,76,79,133,150,223,255,57,244,1,251,31,255,227,253,247,192,191,95,191,245,254,189,159,189,253,113,238,255,191,120,31,118,198,216,63,222,131,253,178,178,162,186,166,234,217,163,154,202,42,216,71,165,53,37,101,229,103,150,254,151,28,133,234,159,254,252,131,98,126,128,94,138,127,190,245,240,237,15,0,157,98,1,31,188,245,54,84,239,39,80,11,159,84,148,213,148,149,148,151,253,21,24,191,230,155,82,88,78,165,239,94,240,7,248,184,29,155,191,127,246,101,121,217,35,
|
||||
216,111,75,159,124,9,220,235,55,101,213,53,223,203,230,163,47,127,91,249,184,236,171,95,87,86,61,41,169,249,12,112,249,197,231,191,44,41,47,255,178,228,209,127,251,201,231,176,243,175,15,254,239,79,107,170,202,42,190,254,243,47,222,122,239,221,247,222,189,247,211,159,190,13,123,248,163,7,239,192,138,31,148,85,212,188,240,228,113,37,224,168,244,193,255,243,5,16,254,114,75,15,46,164,255,10,86,93,90,3,4,7,214,126,84,104,15,246,109,89,121,57,236,235,178,191,148,230,20,146,111,27,86,83,9,121,238,211,18,208,14,112,136,47,75,171,203,30,151,194,74,255,82,90,245,28,246,25,172,228,59,80,255,235,170,178,66,199,128,122,8,112,25,168,246,211,202,167,128,94,197,227,202,111,223,133,253,17,252,46,171,120,250,172,6,246,151,146,242,103,64,223,37,85,249,38,10,4,114,79,115,252,148,64,190,87,147,163,147,151,162,216,32,183,83,231,71,165,229,53,37,63,156,78,243,205,189,190,98,95,82,27,136,70,79,171,74,171,75,43,106,114,133,193,187,199,
|
||||
80,83,160,78,205,183,165,165,160,244,183,149,103,250,123,90,9,104,84,255,192,122,190,255,131,169,248,254,27,118,219,39,224,33,236,254,235,250,238,253,191,149,239,254,112,138,205,55,247,119,242,221,251,183,244,221,191,133,158,239,223,251,225,156,247,222,27,246,222,234,82,128,93,30,151,128,111,87,122,236,75,142,253,119,113,225,31,78,191,133,246,126,16,39,190,80,253,223,221,157,255,227,155,210,138,255,183,178,242,201,167,143,0,138,45,191,164,237,11,101,63,128,180,117,185,228,133,158,206,10,229,148,4,228,255,246,155,210,188,6,0,72,173,202,99,226,18,216,95,65,69,24,128,95,37,0,62,67,213,111,205,219,167,165,53,127,40,169,248,186,244,251,56,59,43,247,61,124,85,87,62,201,193,233,28,80,203,67,119,88,21,84,175,26,130,171,143,190,129,190,62,190,11,115,159,221,255,109,89,197,45,152,203,149,251,62,230,10,153,197,211,114,144,67,84,86,149,125,13,92,233,142,92,129,150,62,5,72,244,225,91,185,255,191,157,99,172,168,200,231,151,64,236,11,93,7,
|
||||
226,182,80,255,193,91,80,61,240,5,84,128,126,130,87,191,248,9,172,250,175,15,46,96,47,40,89,125,73,141,213,160,32,240,248,154,111,96,127,254,135,31,23,138,191,123,41,83,184,150,235,143,207,184,126,248,246,35,8,171,127,112,169,203,254,165,172,170,230,89,73,249,3,216,75,60,193,62,62,99,247,237,47,138,107,228,136,92,40,251,15,165,53,207,170,42,94,230,246,182,26,253,101,101,121,101,213,195,183,114,84,97,249,31,63,122,53,221,230,42,3,229,190,196,235,23,144,3,65,47,63,207,55,112,69,125,160,209,71,185,87,47,216,160,160,237,252,59,216,187,37,213,133,204,20,114,175,175,171,42,159,129,120,144,123,119,75,91,0,154,127,44,171,41,47,61,147,55,31,227,94,85,224,28,169,235,4,206,147,254,188,208,196,213,34,215,228,8,92,45,114,254,29,236,92,226,220,239,219,187,92,65,204,156,96,175,198,31,236,227,115,9,223,126,201,219,94,230,233,118,138,255,53,240,208,51,229,231,190,191,142,234,33,2,215,169,31,122,247,121,174,137,171,85,255,21,
|
||||
120,243,199,27,212,127,241,30,50,65,78,208,220,179,59,58,218,155,235,93,23,228,94,179,139,221,36,117,81,129,11,177,107,74,191,171,185,83,47,251,248,146,177,11,226,222,104,16,216,199,151,76,250,178,191,65,209,237,37,35,124,175,9,126,83,242,101,105,121,245,75,157,253,157,239,249,253,66,159,249,75,101,217,227,51,43,228,41,190,78,159,255,46,71,226,5,224,118,55,18,207,223,20,137,123,15,190,120,248,95,190,120,248,159,30,254,167,43,134,190,242,156,168,103,120,226,27,48,100,255,21,168,190,164,60,15,205,222,42,120,76,65,156,183,223,129,1,220,93,83,246,232,197,247,5,94,223,206,65,183,11,104,120,83,225,123,15,222,190,125,47,203,213,248,236,205,196,243,60,173,55,96,220,171,59,87,225,101,174,99,157,233,247,26,245,222,190,163,157,201,127,235,64,255,197,195,31,229,251,219,153,180,87,119,182,91,112,119,59,219,220,127,131,182,185,255,58,182,121,126,147,109,158,223,96,155,75,190,122,71,203,220,127,101,203,220,191,149,101,174,226,237,150,118,185,247,
|
||||
38,13,115,239,239,98,153,107,226,201,93,109,116,239,213,141,116,239,86,86,186,153,207,91,14,99,111,10,58,93,80,123,29,236,84,24,8,175,7,79,133,2,151,236,86,125,23,8,245,241,101,193,95,134,17,95,20,25,162,250,38,224,0,53,122,102,138,60,31,119,211,252,155,3,113,69,244,94,19,197,221,168,255,226,18,103,6,200,61,187,82,11,183,24,101,127,15,146,246,15,171,74,75,126,91,82,5,242,246,135,111,149,1,139,188,115,249,127,175,164,143,203,116,47,171,164,44,111,98,32,206,55,191,41,253,234,197,169,174,162,183,127,40,251,250,155,235,95,255,229,143,149,79,175,127,249,175,149,53,53,149,79,174,202,252,203,65,155,103,184,36,207,0,192,56,85,80,83,231,112,165,208,50,120,94,83,249,244,236,97,174,189,60,220,249,50,71,252,188,248,121,99,176,39,57,113,207,177,85,241,212,8,52,207,149,155,199,44,94,113,60,91,135,189,179,189,32,190,139,109,246,90,70,186,32,118,157,161,242,114,93,167,205,51,239,44,148,130,164,191,52,41,244,38,5,207,
|
||||
89,230,141,73,94,68,237,238,162,231,125,230,7,148,29,56,224,27,147,252,156,214,221,229,6,125,226,135,148,58,223,185,222,152,224,197,228,238,46,123,161,231,255,128,226,191,185,49,234,18,197,87,31,165,158,62,252,162,228,225,23,55,77,234,21,151,56,27,165,94,156,215,131,116,150,211,85,9,224,232,246,90,249,16,160,171,55,167,145,115,106,175,174,13,8,238,221,172,141,226,18,87,142,217,231,136,49,183,167,226,199,255,243,23,191,40,123,82,242,117,233,7,255,249,167,255,242,163,127,126,239,95,106,235,18,181,83,181,231,255,226,28,90,128,58,117,88,39,92,32,106,21,59,120,103,116,134,184,142,80,135,104,120,14,220,230,21,174,119,239,167,135,120,45,118,42,9,191,192,154,210,108,82,21,153,120,80,187,68,100,183,13,213,183,205,203,92,240,11,66,216,218,218,196,17,28,111,198,88,44,12,203,196,148,184,101,145,28,221,28,78,103,61,153,6,149,116,145,44,137,168,116,18,52,59,152,194,9,145,102,77,18,159,217,88,181,227,121,201,128,208,76,34,196,71,143,
|
||||
44,19,106,29,143,48,215,231,225,55,141,14,142,103,88,17,25,65,59,50,197,27,147,49,218,113,120,251,41,150,220,219,67,182,69,212,134,216,193,254,146,191,213,59,83,87,183,105,57,97,235,251,150,252,66,133,73,213,57,144,156,209,43,125,161,37,63,92,79,209,184,249,148,147,3,204,244,161,100,65,44,221,17,116,217,109,195,166,77,190,165,81,217,57,189,58,200,196,181,24,100,131,171,45,11,45,178,97,127,196,216,55,187,122,184,223,60,203,27,26,76,25,212,50,213,65,202,235,108,197,185,153,51,173,98,123,95,224,212,18,112,4,143,19,244,65,253,128,157,122,24,155,17,157,172,43,218,78,70,211,107,18,71,36,45,24,141,165,8,216,70,198,180,149,175,23,15,89,69,19,132,232,97,150,239,74,75,116,250,238,9,127,223,241,158,186,99,122,61,53,118,106,25,150,201,86,131,18,78,140,188,211,145,25,146,25,25,71,196,212,212,240,44,50,227,230,173,29,50,183,99,20,35,5,63,31,177,4,215,197,243,132,157,213,33,252,161,69,137,25,153,26,106,33,144,197,
|
||||
187,166,128,211,18,228,46,134,19,43,54,250,164,222,55,96,232,25,146,195,41,171,109,117,81,126,19,155,213,112,18,97,109,90,60,230,46,139,7,124,116,237,229,63,44,226,252,135,167,35,255,177,25,200,125,40,123,78,237,134,21,94,55,203,195,73,90,246,221,237,75,126,18,117,201,47,2,255,201,132,126,81,148,159,105,168,109,155,74,135,238,212,113,254,163,236,113,205,55,175,17,66,207,105,92,23,55,243,174,254,109,174,200,77,157,33,95,226,172,51,228,126,21,119,6,104,49,242,105,217,119,119,2,178,31,87,149,61,126,115,129,225,156,218,171,7,6,104,5,250,230,192,80,92,226,202,192,0,21,184,50,48,252,228,63,131,192,240,94,109,93,180,118,178,40,48,12,209,2,109,83,129,186,201,118,162,246,180,23,73,51,143,213,43,186,80,115,44,44,95,67,247,172,207,24,78,8,40,226,136,112,120,128,31,65,181,53,173,53,82,179,7,120,10,222,186,26,14,35,35,88,166,17,16,16,66,84,54,61,141,190,232,114,139,86,160,158,224,161,91,118,168,199,11,136,142,
|
||||
211,13,133,94,129,53,31,32,22,205,61,180,145,218,58,242,130,187,125,65,72,229,207,52,114,218,177,10,252,204,73,214,107,133,119,238,246,52,210,119,27,59,119,27,73,208,135,107,209,26,115,30,70,186,19,82,109,24,63,225,79,133,200,163,35,254,85,163,172,121,191,143,182,211,78,81,184,167,214,253,62,139,106,227,88,121,26,66,35,176,243,129,208,102,56,166,246,113,5,130,190,117,231,16,222,48,194,52,10,81,194,129,176,58,139,234,142,110,225,93,56,3,30,149,217,88,214,109,33,176,216,166,222,225,81,238,209,65,109,54,51,78,115,70,181,222,90,247,252,65,60,51,207,25,117,251,90,169,141,67,10,179,187,69,109,11,49,90,210,180,85,191,34,32,197,41,143,78,130,109,155,54,134,120,62,229,14,241,15,156,234,80,156,194,59,177,46,32,176,77,206,80,6,139,137,196,235,133,238,195,1,118,52,78,159,216,216,64,118,101,58,70,105,71,3,174,228,52,178,142,230,80,71,148,164,209,52,66,61,136,156,165,247,25,84,219,25,117,251,194,14,74,180,238,62,140,
|
||||
140,49,70,58,13,221,109,123,3,81,105,167,107,120,44,224,198,186,113,66,139,123,106,225,80,21,29,77,99,24,174,97,147,59,189,131,162,152,38,220,100,103,50,108,143,197,195,170,158,164,90,64,10,147,150,241,204,206,35,23,234,180,147,178,181,154,237,30,80,47,135,73,236,97,92,19,79,141,194,227,45,243,225,125,147,208,173,247,37,245,78,100,195,49,124,197,237,53,26,87,84,158,206,100,32,226,24,197,200,107,7,168,13,116,10,94,158,88,192,141,46,224,240,169,164,91,191,169,94,239,82,47,174,131,143,244,102,28,75,224,219,148,162,59,245,156,215,141,12,231,52,174,139,12,121,95,191,41,50,20,151,184,50,50,228,182,116,220,57,50,124,83,249,237,159,32,238,30,190,245,101,101,101,249,171,72,119,70,225,178,104,16,181,179,5,102,80,162,72,168,79,190,58,95,74,134,94,64,107,225,53,85,207,74,47,207,234,229,133,169,206,21,169,184,189,40,255,245,181,69,249,175,111,74,148,162,169,227,87,20,230,55,165,95,151,86,188,158,52,121,18,55,139,3,173,132,
|
||||
20,191,135,36,184,133,140,101,53,185,7,5,215,43,121,250,77,53,172,162,228,73,233,59,133,16,157,91,245,168,121,94,88,37,125,33,64,191,255,207,239,255,236,71,247,254,175,159,32,234,182,106,135,138,34,52,146,22,232,152,159,93,217,152,166,233,188,168,99,214,182,244,96,58,220,140,33,108,182,120,6,52,66,17,123,140,191,56,173,117,120,150,137,236,57,46,124,138,110,166,236,244,17,215,234,166,196,180,61,84,35,111,218,194,98,35,166,77,236,190,230,245,198,125,244,230,190,59,53,220,144,32,112,249,89,103,34,211,145,181,42,240,186,132,180,241,100,232,100,58,195,196,71,212,65,131,42,182,16,20,164,130,198,160,44,70,209,79,10,177,106,240,95,79,254,67,72,202,127,96,245,234,139,231,180,237,113,61,103,131,171,85,52,53,162,179,83,218,157,166,221,224,238,74,220,43,26,26,207,56,55,7,6,157,6,3,131,35,152,153,242,249,118,149,35,78,12,197,64,161,80,232,98,193,102,183,250,200,32,48,98,136,109,254,221,200,74,140,210,187,19,247,178,155,179,112,
|
||||
56,78,141,244,134,23,147,50,39,133,132,241,97,249,17,30,221,123,128,157,160,211,125,65,164,131,222,158,12,197,198,40,43,189,99,232,97,203,49,187,109,118,155,226,23,55,100,179,248,81,175,113,51,180,25,220,224,88,188,201,163,253,157,85,209,242,1,73,178,143,177,52,59,176,91,237,251,26,239,204,68,210,137,82,7,123,218,215,28,39,156,158,248,92,120,229,96,69,143,156,102,166,56,42,186,76,38,92,75,47,173,161,61,158,165,45,171,197,53,150,205,134,130,227,140,227,227,46,115,191,130,99,66,162,90,65,19,54,50,199,176,185,187,152,72,157,248,45,22,239,97,163,251,64,156,16,172,201,198,124,45,62,161,37,42,246,78,179,173,141,142,94,94,211,104,115,163,107,86,40,69,45,146,245,227,91,142,128,58,181,223,235,113,248,215,109,45,12,178,152,138,179,217,78,136,222,133,197,134,249,157,102,106,54,173,60,150,5,163,135,30,167,34,157,238,167,246,47,53,76,25,186,44,35,246,225,8,183,222,110,75,99,250,250,56,59,70,189,84,79,147,177,253,74,237,241,
|
||||
64,199,38,233,100,117,104,204,23,25,73,238,184,150,177,147,27,106,34,111,172,219,137,109,34,70,250,216,150,153,6,130,235,72,163,27,74,51,141,76,204,218,0,57,210,56,217,48,199,220,119,51,81,123,126,146,119,128,119,48,109,36,4,9,145,168,115,250,80,55,19,237,67,52,210,246,141,204,132,196,28,241,108,170,125,11,251,86,82,60,49,28,58,182,99,14,44,68,229,198,52,78,181,181,153,72,108,239,242,200,214,38,142,98,152,18,78,14,203,84,241,212,206,208,178,168,221,31,113,18,35,148,121,22,23,57,158,76,153,150,247,145,167,117,188,24,186,197,61,77,153,156,33,54,183,232,122,187,217,10,118,159,171,143,200,192,243,120,246,246,249,120,166,183,187,174,55,222,203,229,215,105,61,123,39,172,163,177,195,46,214,212,38,25,217,57,211,180,23,105,216,71,141,226,247,251,87,60,83,161,76,147,36,138,48,49,39,116,9,153,92,214,101,235,226,96,125,28,191,107,177,149,70,77,175,81,248,77,232,112,143,149,229,111,193,49,84,116,31,119,42,172,167,206,13,8,
|
||||
15,168,74,195,118,23,142,59,37,116,6,55,184,43,253,126,130,107,110,64,192,22,24,92,147,51,188,249,85,3,158,39,226,155,54,8,117,83,35,157,181,45,217,180,148,204,167,198,9,35,157,59,60,212,73,35,101,186,21,181,173,142,175,96,235,135,134,182,108,6,145,49,221,65,140,113,250,60,102,161,217,169,245,227,233,254,99,226,24,78,38,97,210,182,87,186,229,140,163,72,99,251,52,99,95,59,180,215,18,172,69,104,231,178,156,249,29,191,223,223,177,142,239,53,7,251,179,148,230,113,60,222,31,62,73,138,121,86,198,32,137,180,61,62,196,234,12,170,178,97,231,80,230,212,142,110,77,183,34,155,197,194,101,79,187,136,88,207,91,105,224,98,234,251,212,227,41,235,252,234,134,99,101,96,37,110,237,135,47,251,173,126,201,130,180,161,22,190,227,230,161,245,105,156,207,70,98,121,228,99,166,157,137,144,27,97,59,229,30,142,41,186,186,186,186,149,74,37,159,191,31,84,112,99,157,221,221,169,83,61,65,46,217,65,251,130,209,108,152,75,91,154,241,155,79,83,
|
||||
206,45,77,199,137,113,38,163,70,49,39,136,128,151,56,146,212,187,212,181,213,21,15,17,219,134,172,200,200,33,63,185,48,165,239,142,145,200,58,214,126,235,162,102,55,21,71,163,37,13,203,108,143,177,109,104,119,195,64,147,169,167,100,203,39,222,241,108,134,134,70,108,199,216,19,204,214,86,149,208,222,76,199,245,245,33,101,28,73,43,149,234,243,28,172,239,8,93,74,209,84,86,136,225,241,143,146,117,226,160,145,219,167,225,140,36,165,166,52,10,190,25,231,237,201,195,33,214,58,218,179,56,126,204,95,114,239,53,72,58,215,22,137,145,238,81,182,164,142,138,243,141,175,236,115,123,123,123,141,112,134,114,205,110,95,78,98,105,120,93,43,223,202,93,19,218,6,140,45,72,99,220,199,214,31,119,78,143,250,70,177,132,96,56,26,233,214,19,240,221,221,174,158,54,109,125,29,190,59,65,171,195,211,37,102,165,246,64,121,212,55,131,216,194,213,107,251,59,157,1,95,231,140,3,239,26,15,155,186,45,98,212,76,84,106,66,18,6,152,227,235,178,19,221,193,248,
|
||||
40,167,183,119,208,140,199,210,226,233,248,209,226,34,13,215,32,145,72,8,12,158,18,21,223,197,142,48,7,22,250,204,124,235,16,247,84,154,205,102,2,142,177,221,126,225,218,193,138,120,110,196,68,230,24,253,163,50,67,216,71,196,187,217,72,9,111,90,98,31,36,48,50,42,118,45,37,117,60,232,140,5,197,225,137,248,145,126,58,219,179,56,160,95,158,203,46,140,182,9,156,152,120,12,131,174,111,228,179,246,120,75,70,186,60,18,77,4,28,152,198,198,70,131,140,57,97,156,90,27,241,158,236,77,241,54,89,203,219,157,19,212,128,75,153,32,195,131,45,36,20,206,218,125,66,75,134,229,244,197,69,245,98,216,186,41,238,104,149,181,153,86,234,117,4,166,118,34,26,176,187,221,44,132,98,137,143,23,172,244,117,14,215,155,185,204,241,211,29,246,116,111,111,102,49,149,30,74,78,46,44,96,157,237,135,177,68,54,88,223,182,225,103,8,187,49,26,253,186,73,50,217,224,175,27,28,214,29,25,88,240,165,208,180,68,186,180,85,167,224,117,161,20,188,147,37,
|
||||
247,116,0,135,59,224,178,15,184,26,116,83,208,164,141,19,178,29,66,80,79,216,29,26,70,182,10,86,108,147,167,120,222,52,190,67,24,162,49,44,245,49,46,186,9,161,224,229,106,74,220,211,185,154,228,3,110,174,230,130,120,29,151,133,119,48,225,123,171,183,223,2,87,52,146,191,184,216,118,54,20,195,46,149,187,114,53,39,55,228,126,5,43,207,149,56,7,19,183,94,206,201,85,123,93,20,91,68,229,58,28,123,37,130,133,32,66,1,67,20,240,235,57,76,133,192,107,126,227,114,65,178,210,242,210,39,165,119,90,42,43,22,237,69,5,151,21,173,150,21,51,127,205,210,229,37,22,242,188,222,86,195,191,173,124,92,250,26,170,133,170,95,167,211,135,95,60,129,222,66,56,237,183,31,61,252,226,195,127,251,227,39,31,254,230,147,15,63,253,213,71,87,232,249,49,104,3,218,144,124,54,3,11,213,124,23,246,167,243,93,198,31,228,225,88,249,189,159,253,236,231,101,239,255,244,189,159,255,238,236,164,23,196,93,69,126,171,103,142,209,66,193,127,254,231,139,
|
||||
130,80,49,136,133,143,254,240,225,127,60,184,130,208,11,100,126,255,225,39,255,246,199,95,253,225,38,74,69,194,252,248,127,62,252,47,176,223,254,238,163,95,93,122,250,206,77,181,255,237,119,31,126,8,43,252,43,170,14,61,190,177,222,167,255,254,175,191,255,228,179,95,253,166,168,206,217,163,7,183,118,188,188,197,111,240,184,188,77,175,118,181,51,51,65,246,129,178,185,199,149,143,158,65,78,151,223,105,94,112,136,183,222,190,149,247,253,186,172,230,143,149,208,145,186,162,84,225,170,93,92,231,229,174,205,7,238,191,148,12,124,85,82,94,93,156,13,252,161,180,26,164,103,133,51,113,223,21,54,49,65,88,255,121,97,102,234,60,91,184,127,158,42,188,13,109,165,207,229,10,37,208,54,251,124,174,0,157,37,124,183,178,162,120,247,238,45,251,60,180,91,253,225,91,249,205,240,15,223,201,73,252,206,141,114,67,21,46,139,92,56,46,80,72,130,32,129,94,88,40,45,210,9,200,227,174,78,145,174,173,1,194,217,247,37,85,16,75,213,133,101,207,47,159,159,39,
|
||||
88,57,78,128,206,115,103,26,47,18,200,242,231,69,122,133,248,57,79,194,32,205,159,229,204,151,74,65,60,156,149,186,237,84,64,110,11,255,133,102,11,159,215,238,9,204,31,24,184,94,175,121,49,62,187,250,164,70,113,145,251,197,227,69,142,234,153,106,46,169,224,66,79,103,148,95,20,31,148,40,232,238,82,193,251,183,221,176,14,186,93,238,40,4,148,182,126,246,240,173,243,239,223,23,210,243,91,99,46,213,126,112,81,187,224,101,208,215,156,91,252,241,119,15,191,248,229,175,160,192,120,69,248,254,44,127,166,226,204,33,114,149,114,225,187,236,113,209,81,145,15,242,21,139,226,247,5,209,15,114,206,149,59,97,0,197,147,42,16,81,64,247,43,222,36,159,127,254,238,75,52,126,253,135,223,253,246,225,23,255,10,162,238,245,52,62,43,156,96,120,5,141,222,127,45,141,222,127,85,141,222,255,223,92,163,247,239,172,209,220,137,152,151,250,105,113,127,189,51,252,200,31,178,185,190,47,87,125,119,83,55,174,122,126,243,219,123,133,112,248,19,216,251,239,189,119,
|
||||
21,56,44,154,43,59,219,51,2,90,44,222,90,123,254,248,249,245,59,106,47,202,220,131,10,65,195,81,254,16,208,187,23,195,23,244,59,23,23,161,201,198,178,234,50,192,102,30,171,20,38,81,11,203,211,128,124,85,25,240,140,103,21,101,128,197,183,42,242,15,243,144,245,182,123,116,1,2,248,172,96,170,43,15,192,92,40,9,118,94,20,192,133,91,158,120,249,174,72,192,91,161,4,208,198,253,219,179,115,255,142,236,60,127,21,118,238,221,129,159,123,119,100,232,194,63,238,204,26,132,190,74,254,191,202,170,127,135,140,127,229,120,120,155,200,117,65,226,134,126,245,236,198,126,245,236,249,45,59,11,32,243,246,165,193,240,226,13,212,95,30,151,85,215,148,84,60,42,61,63,145,120,126,250,243,14,11,136,23,242,252,219,179,39,69,27,225,238,174,15,80,255,186,84,167,226,69,125,20,189,186,173,50,42,174,85,6,68,2,86,241,44,119,17,3,232,239,175,166,133,239,138,125,227,21,180,240,221,117,142,81,188,189,230,187,23,97,211,165,151,247,175,210,4,120,94,
|
||||
246,228,217,147,34,249,174,208,77,142,242,53,218,201,19,190,187,86,62,46,182,237,21,27,242,47,119,228,162,162,215,229,70,55,74,242,18,123,119,96,238,138,61,233,215,49,119,237,38,244,151,153,187,188,102,117,123,214,32,111,40,171,120,165,32,115,205,28,66,129,218,27,140,55,197,7,63,65,221,156,227,92,68,150,252,30,227,178,170,234,26,232,10,9,240,234,197,195,229,213,176,242,74,192,118,89,229,109,209,13,52,16,22,196,184,221,168,89,40,252,224,139,219,159,21,61,103,248,242,5,15,47,112,250,253,163,215,93,248,188,255,202,124,190,116,17,197,157,248,60,59,162,252,102,209,98,254,212,243,245,94,246,221,19,240,250,157,107,95,63,255,254,215,23,136,241,37,188,88,236,146,249,134,206,15,76,64,191,138,93,52,79,41,159,183,188,3,105,242,18,110,44,104,246,78,232,187,224,114,183,246,205,187,216,251,179,43,248,185,149,23,222,218,3,239,194,205,85,218,185,21,55,247,110,205,206,189,187,240,115,179,221,110,230,236,119,79,75,30,149,213,60,63,239,4,183,
|
||||
26,172,11,149,110,112,243,202,66,137,243,228,230,170,97,185,144,72,20,60,242,172,10,236,221,175,170,64,58,248,62,236,45,240,228,191,23,166,200,222,131,189,85,3,80,106,245,83,144,143,86,212,252,83,89,69,33,65,185,109,194,113,182,202,112,233,112,211,173,100,189,106,155,192,245,7,129,114,194,231,231,202,191,95,226,66,185,59,138,144,195,85,119,145,227,138,64,117,149,80,23,48,170,172,226,113,233,139,131,225,43,139,124,89,86,216,87,23,51,80,249,102,10,58,185,235,162,198,197,122,194,171,31,100,191,141,22,110,92,13,121,77,97,128,142,160,175,159,1,202,101,143,160,131,249,175,186,155,229,50,157,235,183,180,148,214,220,97,71,11,40,124,105,211,78,245,19,104,138,58,15,93,160,209,2,58,1,94,253,226,173,102,69,151,66,85,149,94,90,135,187,165,50,238,191,33,101,220,255,123,40,163,48,109,149,59,215,2,208,111,65,43,247,223,128,86,238,189,41,181,220,251,59,234,37,127,232,229,141,41,230,211,82,48,58,84,64,55,17,126,86,136,138,55,46,117,
|
||||
92,174,113,151,216,119,73,59,103,20,238,162,164,243,58,103,186,122,231,202,176,145,155,2,173,204,157,255,40,76,130,126,89,90,84,27,186,88,19,210,110,238,170,201,252,109,73,57,181,85,86,229,203,127,85,89,94,94,249,237,217,141,75,159,221,229,212,235,139,218,188,141,147,157,231,237,215,106,245,205,235,173,112,78,17,12,125,37,143,161,75,54,255,247,210,219,135,208,18,209,171,170,238,195,23,23,140,254,6,218,131,180,80,80,25,164,128,191,147,206,64,47,191,85,127,133,182,84,190,98,47,125,205,189,155,103,216,165,0,73,161,144,117,185,191,230,212,82,208,36,80,221,251,239,66,228,114,235,193,239,92,170,152,187,60,237,203,252,109,101,16,138,189,165,138,62,169,254,83,30,222,94,137,114,206,119,198,156,23,187,51,132,41,236,152,185,94,168,51,1,114,233,117,105,9,116,58,173,230,155,146,138,91,75,0,25,239,174,221,33,95,229,111,182,33,247,10,163,22,245,135,191,129,21,255,80,250,164,242,47,165,159,230,232,95,105,200,115,87,47,46,121,123,91,66,117,
|
||||
110,48,97,46,139,186,242,178,230,199,165,229,165,53,165,197,9,73,110,199,193,93,164,2,134,58,19,236,123,164,58,47,121,121,214,48,199,252,121,132,121,61,150,191,167,51,61,126,213,189,71,159,92,159,27,220,148,234,128,151,23,71,234,207,135,170,34,57,111,27,5,30,223,126,18,253,110,220,95,17,61,239,32,219,77,129,227,246,105,220,39,87,167,112,69,123,132,190,79,128,171,83,51,0,40,111,10,215,183,103,240,163,252,54,164,243,75,38,10,191,63,135,21,190,156,177,121,246,243,154,73,241,179,117,240,66,177,219,78,23,125,2,29,6,40,118,220,220,131,207,97,185,143,115,13,229,126,92,163,164,252,142,153,171,38,96,174,98,47,71,42,95,231,49,172,228,252,104,122,158,200,29,102,0,255,245,249,239,33,180,112,105,62,233,250,105,192,66,233,155,230,75,175,225,251,210,189,204,208,121,96,104,253,249,124,238,51,183,139,178,96,245,154,252,74,245,237,101,184,127,39,25,238,127,191,12,207,175,150,225,254,77,34,60,127,61,17,238,221,77,134,123,175,44,196,203,
|
||||
147,143,127,11,121,62,203,113,247,175,207,115,123,53,111,233,91,197,85,94,221,193,242,66,156,203,244,102,28,236,238,210,220,191,165,52,215,89,233,254,77,210,188,134,109,62,45,1,35,124,245,111,75,107,74,190,42,187,184,65,243,209,55,37,85,15,255,241,234,171,77,207,225,253,165,154,87,207,175,22,63,202,145,60,219,27,7,213,184,110,122,28,218,202,250,143,191,120,235,222,207,160,87,239,189,247,246,251,176,255,200,93,74,92,125,49,121,14,181,125,57,252,149,64,87,246,230,47,47,174,134,61,41,48,5,105,229,108,183,92,217,237,195,96,126,185,241,242,86,204,215,92,187,252,158,109,154,55,174,92,230,39,225,31,254,248,202,105,248,11,127,46,94,27,58,63,68,249,164,172,34,183,162,155,219,38,150,223,49,248,110,17,200,126,158,67,216,15,127,252,254,59,176,202,138,242,231,69,212,254,122,182,163,235,60,197,188,211,62,130,55,168,188,60,177,191,139,242,10,203,225,63,168,242,126,13,16,231,159,202,74,191,189,229,36,206,213,74,59,39,242,230,103,9,11,194,
|
||||
86,66,127,11,6,10,105,176,167,32,181,172,126,84,5,109,189,201,71,167,179,108,11,218,6,94,145,191,14,252,254,69,200,202,93,78,158,175,121,86,48,119,244,255,47,165,85,16,128,41,36,117,197,211,22,197,87,141,23,157,255,45,252,37,147,243,63,55,243,101,217,215,185,106,185,60,17,178,103,222,10,133,237,250,185,183,185,63,164,242,78,158,133,202,167,208,66,115,238,175,211,148,60,122,4,178,147,42,144,36,195,170,65,48,169,248,26,200,119,233,182,237,210,175,170,74,171,191,185,253,248,240,203,202,103,231,151,155,93,13,141,115,37,174,67,156,23,219,47,10,169,82,121,101,201,227,91,222,166,253,73,245,175,158,60,133,150,3,111,152,116,200,149,184,233,32,14,96,162,42,63,163,91,81,121,25,118,195,206,117,240,224,193,255,15,241,134,152,199,
|
||||
92,96,179,189,177,158,121,104,189,174,97,133,117,50,199,237,168,174,106,246,241,193,175,23,84,221,69,4,219,197,246,143,79,112,208,81,70,155,197,104,156,181,54,202,75,223,152,182,225,182,110,8,52,202,134,27,216,124,184,222,223,197,170,248,187,1,174,208,120,132,171,56,74,120,176,243,242,230,21,87,104,26,20,108,71,183,100,101,42,198,144,255,86,152,120,189,84,33,56,252,167,163,123,227,115,135,160,112,92,178,31,207,225,71,113,228,23,97,48,172,63,254,215,221,151,120,37,150,165,121,254,43,156,153,233,58,145,117,178,178,51,163,186,122,106,178,122,250,84,86,101,85,78,158,83,217,85,167,178,186,58,99,234,68,134,102,132,153,233,180,161,49,106,84,102,84,247,156,35,184,176,200,38,184,161,44,130,11,8,46,160,160,172,110,128,138,11,136,136,32,8,10,46,32,46,160,178,131,50,247,61,80,49,66,13,140,136,202,236,153,56,113,4,222,187,247,187,223,118,191,251,251,238,187,247,62,130,52,165,222,220,12,140,24,137,200,13,103,187,65,198,83,120,12,93,129,
|
||||
81,43,102,185,158,193,27,145,206,141,79,186,101,76,17,99,181,179,179,43,153,156,56,109,9,129,224,229,101,218,123,79,12,84,25,24,155,42,160,193,233,80,57,73,232,3,29,173,201,25,109,96,203,185,32,147,219,72,76,17,205,158,177,126,18,158,46,227,136,168,108,101,27,67,181,207,158,28,155,225,39,241,9,82,151,235,72,163,230,175,53,57,58,24,39,148,133,13,103,245,130,78,219,209,210,199,118,83,50,227,137,197,96,241,91,250,215,20,225,253,0,106,0,58,185,99,132,127,146,224,215,30,12,183,10,79,29,203,203,93,34,150,146,173,100,108,211,141,42,44,118,192,88,195,147,239,72,244,52,71,104,145,62,56,11,80,3,24,142,70,1,55,137,126,197,129,220,191,158,156,111,29,86,183,213,49,244,92,59,125,104,223,221,114,188,75,0,72,181,121,175,158,14,128,249,156,245,168,173,143,150,26,163,39,121,114,45,78,229,217,146,97,41,9,195,198,104,162,173,103,166,174,65,203,173,95,78,49,71,130,59,139,210,202,0,153,173,174,33,180,140,136,23,72,163,39,
|
||||
251,254,205,189,125,52,145,97,181,9,209,172,36,121,147,106,232,27,49,58,91,201,204,190,106,44,213,212,200,177,241,58,177,84,12,85,203,213,224,68,251,81,115,247,76,221,38,68,12,208,26,138,30,186,27,217,109,123,85,194,67,183,166,199,25,243,111,53,216,135,246,107,165,222,97,32,144,219,47,15,112,141,168,67,142,183,131,107,5,204,119,135,153,12,150,188,51,122,28,60,25,97,87,113,103,69,17,60,125,220,237,31,209,241,164,205,6,239,160,129,94,215,166,33,115,113,122,228,134,159,188,26,81,172,236,169,20,68,59,222,170,32,107,151,80,245,12,74,44,190,71,166,78,152,58,199,57,1,84,255,142,102,171,102,73,223,191,35,31,147,107,103,56,245,152,69,118,16,183,168,209,50,140,221,117,220,169,26,118,11,220,58,215,152,132,91,183,42,186,225,214,89,242,131,206,163,160,21,36,16,135,106,142,201,164,197,168,198,60,155,152,250,132,193,61,61,10,53,44,11,119,57,241,154,99,21,133,71,5,217,178,174,158,195,175,198,233,177,74,213,16,102,202,181,67,105,
|
||||
51,74,145,184,32,142,2,41,162,182,83,10,35,25,122,112,102,115,71,52,142,113,26,32,9,117,245,238,49,58,148,89,244,169,160,60,114,138,171,119,193,181,93,59,7,19,90,231,160,6,171,34,115,187,112,100,64,128,193,29,19,69,220,110,147,213,233,68,122,28,122,111,178,71,32,152,214,235,183,80,171,220,14,61,176,212,22,23,78,255,2,85,193,25,57,164,66,11,144,162,126,88,87,15,88,130,57,154,131,136,130,124,3,167,194,194,252,236,194,89,153,40,162,136,46,193,10,144,2,204,68,84,113,77,91,123,142,169,14,180,91,175,61,98,65,197,248,235,134,241,113,17,197,16,98,78,31,105,157,179,71,199,219,128,87,59,165,19,211,14,220,20,36,132,132,5,128,53,59,29,84,69,229,106,114,45,104,12,46,86,226,236,29,51,89,252,48,131,0,78,50,53,88,191,6,203,161,2,13,123,118,59,172,137,164,175,30,237,182,155,122,27,103,3,179,219,162,141,41,230,105,180,193,181,50,184,93,189,218,186,14,178,29,70,35,141,162,225,76,238,169,84,142,102,131,53,
|
||||
177,99,66,85,185,249,26,163,14,194,133,237,141,13,230,205,45,108,157,50,209,196,129,186,10,18,183,97,48,204,205,225,79,78,149,113,175,177,221,156,100,237,206,234,245,203,206,6,44,72,187,177,148,206,240,76,189,187,67,203,230,158,166,98,91,77,39,241,208,208,174,169,107,190,130,203,13,116,118,178,61,126,167,170,101,79,180,107,233,99,40,250,194,75,206,6,80,165,23,122,138,200,67,74,167,129,44,123,142,8,163,30,164,37,6,198,226,170,45,30,23,244,43,41,201,149,149,224,58,0,222,195,132,213,163,218,1,96,140,113,34,97,65,37,14,75,124,201,216,209,16,213,74,30,118,55,43,235,196,212,110,78,247,142,68,210,168,21,44,200,234,26,199,22,200,34,86,204,41,154,174,100,18,36,40,19,31,143,218,26,23,27,164,19,168,26,28,146,66,235,227,210,145,250,198,230,132,197,221,74,199,212,6,219,26,253,73,255,150,172,86,22,83,90,34,203,39,218,205,67,127,108,89,224,39,107,235,205,58,12,7,103,169,238,153,57,230,76,181,90,52,173,220,193,158,149,
|
||||
193,112,215,152,201,229,85,163,197,36,139,103,189,146,202,197,27,248,181,148,142,134,134,229,134,134,168,75,98,243,160,245,140,217,240,162,121,139,56,89,91,213,226,92,89,97,247,118,53,206,10,69,150,137,229,101,49,183,187,167,106,97,9,109,106,78,16,5,34,254,4,85,55,0,96,76,219,130,164,165,121,174,193,142,91,178,134,77,98,77,133,205,209,219,93,117,66,242,15,174,52,169,123,235,54,23,187,131,198,10,241,112,31,178,27,59,239,243,141,245,76,12,136,196,221,221,61,193,36,115,169,209,182,57,117,116,68,21,204,117,84,175,123,195,96,200,163,82,234,235,185,205,11,194,93,191,186,82,57,174,66,245,206,182,123,123,146,50,124,155,176,125,169,58,160,110,94,170,55,2,213,121,155,116,4,45,101,163,165,173,110,87,140,156,136,249,124,131,29,147,82,214,88,51,230,32,76,71,106,106,251,167,166,22,120,34,202,48,139,57,18,112,77,84,244,25,166,220,98,224,17,148,163,198,158,21,78,15,51,42,15,122,195,123,43,199,140,100,244,36,100,97,37,231,3,227,
|
||||
67,212,65,15,197,146,138,140,146,24,122,242,65,7,109,41,126,236,155,54,172,12,226,165,180,241,169,64,127,189,14,41,178,239,86,76,47,46,86,28,118,118,238,119,14,80,232,171,164,54,93,55,86,187,8,32,18,97,224,112,35,69,161,232,129,75,186,166,0,22,88,210,109,8,154,235,166,22,80,213,212,160,100,188,110,70,57,191,165,97,182,180,212,161,137,29,157,34,247,70,149,48,52,175,29,48,107,246,230,251,218,119,118,86,6,68,10,247,144,59,30,220,209,86,105,183,164,118,143,140,54,71,219,107,168,174,19,107,113,124,10,131,178,100,177,55,15,12,210,234,80,186,101,122,99,251,118,79,15,157,92,45,174,100,79,31,52,47,54,81,25,251,237,60,201,6,117,138,168,110,157,56,90,64,250,219,156,243,124,126,125,223,34,131,74,101,213,44,29,187,136,134,249,153,89,51,187,99,108,126,174,171,122,105,118,123,171,161,134,221,16,27,140,133,48,245,122,104,31,225,108,163,193,168,244,32,61,77,108,110,71,55,47,190,222,161,172,168,111,68,241,235,209,29,194,33,
|
||||
241,17,173,110,154,38,31,243,45,142,173,226,23,91,230,70,98,67,155,166,62,135,162,110,108,86,136,153,235,193,105,23,42,27,250,166,2,0,219,212,181,142,9,55,209,108,45,14,55,158,234,237,146,202,22,164,131,200,170,166,141,216,198,81,3,154,72,215,132,68,13,199,184,67,190,185,106,179,9,213,212,222,49,190,37,82,107,55,171,18,221,6,198,81,3,106,162,173,139,87,193,231,9,217,88,92,179,131,138,68,161,184,93,209,177,216,246,54,177,79,69,108,37,186,249,253,51,91,85,236,106,154,86,142,215,97,23,187,120,61,3,186,201,80,5,114,220,140,211,246,180,25,120,21,188,26,215,116,99,114,98,129,113,162,153,233,155,213,14,108,205,26,53,70,27,81,72,167,1,32,52,166,225,85,205,79,157,80,144,108,178,88,122,234,70,75,199,143,235,153,29,237,221,29,0,236,249,189,91,155,88,74,35,0,52,252,42,41,142,59,223,130,239,98,78,203,188,75,43,124,241,32,117,92,115,96,193,212,86,33,231,67,100,221,120,130,200,70,77,58,217,222,228,22,146,66,
|
||||
159,91,167,157,46,142,213,162,212,88,142,78,120,192,36,107,52,29,77,179,147,179,211,38,218,68,60,206,174,194,82,197,225,129,184,54,228,27,162,174,246,208,151,230,116,68,206,209,88,143,107,89,142,138,241,228,20,66,114,93,117,202,71,91,132,85,91,214,131,46,190,217,152,210,246,40,196,131,40,181,175,71,113,40,245,109,9,226,94,31,4,69,90,55,43,92,148,41,170,75,190,33,246,187,176,42,154,1,99,223,71,86,183,35,41,98,251,248,150,27,51,21,181,6,85,21,109,7,245,213,77,22,181,104,165,142,32,146,17,72,85,71,11,36,63,146,221,142,25,114,136,152,11,90,128,110,188,40,169,69,126,18,239,153,162,246,238,158,182,80,162,172,181,163,232,102,235,240,178,126,176,153,46,113,25,240,82,118,40,16,57,10,214,144,153,226,145,216,209,38,129,129,193,136,38,245,71,163,238,193,129,213,201,254,73,110,71,156,19,215,198,40,211,92,114,197,162,206,99,154,150,172,186,212,253,58,15,157,88,183,186,129,9,7,129,39,136,136,12,144,134,87,18,154,137,172,
|
||||
145,30,0,88,228,74,135,118,195,25,210,107,57,120,20,24,186,9,139,9,139,131,75,72,144,22,13,96,92,149,227,78,18,137,72,42,234,66,55,160,181,54,155,109,111,193,54,105,227,67,48,135,17,80,153,155,220,122,154,152,38,158,51,110,211,101,161,73,126,93,10,203,211,24,39,119,14,137,40,254,132,91,6,129,41,173,118,75,35,147,41,35,138,222,163,126,105,100,110,142,174,15,161,102,220,153,60,127,111,71,96,233,195,91,2,65,210,72,124,154,129,62,62,154,237,71,27,102,214,169,208,52,24,101,191,154,114,92,221,131,173,23,114,55,71,37,245,179,92,94,107,19,51,232,99,106,186,13,28,142,23,175,54,172,205,203,67,187,0,169,200,81,17,63,81,193,28,62,232,167,199,157,74,135,34,124,56,77,31,220,158,107,39,45,141,224,6,92,234,154,253,57,7,246,202,241,48,1,198,67,109,39,119,208,219,26,144,44,237,174,4,15,133,77,142,160,145,203,170,56,109,57,180,128,177,206,150,144,204,147,173,137,26,34,79,20,161,114,171,49,77,208,184,102,230,142,
|
||||
246,142,98,176,158,184,38,184,212,216,208,0,6,142,169,182,142,52,126,26,110,98,246,181,87,5,130,68,29,221,170,224,201,59,155,15,33,128,81,223,89,181,220,67,214,27,193,176,191,179,52,12,198,95,148,56,13,127,184,209,52,252,177,154,210,240,135,181,42,79,3,16,42,119,16,167,23,69,78,112,134,110,50,82,106,12,198,112,141,0,167,41,237,7,88,70,103,103,3,141,182,182,66,223,173,215,116,115,214,0,113,104,169,13,31,96,49,8,138,241,181,220,14,203,161,90,146,72,82,130,51,131,226,195,170,131,49,138,84,180,111,4,56,1,86,248,20,5,52,14,218,174,129,209,15,234,112,20,70,63,7,242,25,24,253,116,30,41,96,244,51,219,48,167,212,98,172,9,31,255,20,192,16,83,50,98,183,105,141,221,83,206,218,58,95,180,111,138,178,46,138,180,31,225,241,70,183,31,181,14,91,113,115,103,28,96,28,131,167,154,178,8,204,181,210,235,246,38,234,53,88,72,85,122,120,94,139,194,37,129,193,155,170,84,53,118,165,97,137,74,155,54,131,54,148,54,
|
||||
67,148,145,134,37,108,188,210,193,179,38,226,49,130,172,25,82,120,213,1,6,80,49,245,88,155,19,225,33,96,178,217,241,244,244,208,230,6,4,170,12,77,154,126,172,170,150,99,162,248,123,122,9,150,192,236,98,247,192,204,158,3,0,249,169,170,137,102,50,4,148,198,180,220,88,188,135,60,65,48,1,32,147,160,116,6,33,24,7,32,138,162,143,10,115,86,5,129,26,96,231,3,126,116,101,16,165,117,214,9,240,22,202,124,183,202,118,232,174,79,69,198,57,12,175,38,164,155,21,104,142,65,86,160,115,107,157,13,131,82,75,55,214,164,105,209,66,64,18,205,142,202,100,177,192,250,120,109,85,99,47,110,123,131,173,92,114,244,145,251,244,13,113,77,104,113,79,165,15,225,182,41,166,198,16,110,65,88,97,239,33,178,241,211,20,22,23,86,132,195,67,240,176,82,206,19,85,100,136,195,225,236,239,87,171,2,105,224,228,196,166,129,147,65,158,6,78,104,96,93,243,180,193,112,136,30,23,120,54,228,187,163,125,138,184,79,32,73,185,56,81,57,191,78,97,36,
|
||||
172,11,217,39,227,213,195,195,173,189,53,2,44,111,48,217,219,219,62,48,80,227,81,80,117,148,150,25,42,151,104,216,232,119,205,156,210,58,228,174,173,234,106,237,180,190,173,166,214,56,205,163,65,249,205,234,106,242,84,14,229,55,52,154,140,68,223,21,227,76,26,173,196,184,19,210,247,239,183,141,25,60,205,96,168,37,41,153,170,122,237,192,192,64,36,42,113,28,88,162,186,19,16,166,155,185,237,41,198,118,248,184,53,106,225,233,26,245,93,230,0,97,20,37,100,76,76,131,14,64,245,213,145,229,142,137,6,183,81,45,209,204,73,15,226,122,174,39,114,224,144,167,98,156,105,233,254,144,93,86,67,104,237,210,35,215,144,172,145,19,219,74,80,110,98,80,58,86,146,99,250,106,142,182,214,70,198,84,213,160,144,99,132,198,30,43,105,97,53,172,235,12,240,67,93,243,173,141,228,227,120,98,183,95,80,155,8,239,99,91,133,174,137,224,168,83,30,219,106,88,181,164,236,39,147,45,196,67,86,42,169,226,250,215,70,102,155,250,109,32,137,234,53,218,196,164,
|
||||
192,129,194,79,108,22,142,84,116,30,246,14,59,7,164,182,217,42,101,196,153,216,83,37,194,154,181,246,234,69,77,5,79,190,118,154,16,236,123,54,43,154,123,181,204,218,221,229,222,214,129,173,193,25,147,97,244,68,175,232,244,131,139,181,188,241,234,65,143,129,57,176,137,33,120,228,22,12,208,143,209,136,29,180,137,220,90,6,192,98,45,142,209,152,85,51,109,64,99,119,147,196,77,223,82,247,124,207,204,16,107,174,117,184,191,177,58,181,17,157,244,153,5,179,232,217,89,194,114,93,195,164,140,196,220,23,87,241,218,128,247,249,55,155,123,57,11,3,20,10,101,232,192,113,234,19,227,166,167,103,102,236,54,233,97,187,145,207,97,163,120,218,165,122,6,179,47,38,28,54,82,164,99,155,211,6,150,244,144,51,41,52,104,100,33,239,144,121,218,98,105,237,229,12,52,174,246,57,90,90,91,119,197,38,28,79,152,140,6,218,215,59,53,213,198,224,65,189,222,5,232,73,131,222,173,5,46,43,233,22,227,92,211,211,115,115,201,196,126,229,48,196,134,166,155,5,
|
||||
226,102,16,179,49,55,48,79,232,115,200,241,173,85,195,122,70,165,97,170,97,120,57,138,229,113,137,192,127,35,152,197,113,173,113,72,199,236,235,159,54,133,234,208,60,185,202,221,108,178,153,54,88,169,232,84,42,114,122,98,150,5,130,110,135,219,77,96,97,142,124,181,160,12,154,215,176,58,82,207,216,220,137,163,148,171,160,62,199,212,78,180,138,36,146,229,254,181,53,239,196,169,136,224,210,81,250,58,125,90,50,121,11,91,57,91,223,109,226,11,4,135,128,29,218,177,199,0,66,253,204,128,77,187,52,18,77,30,78,17,26,201,123,13,26,163,204,92,99,148,242,57,27,169,211,147,137,35,37,23,26,225,90,229,254,145,29,49,142,215,70,134,195,236,20,221,187,225,171,129,222,84,67,10,28,234,168,92,82,235,222,16,126,147,17,113,26,183,156,78,140,81,53,230,26,86,163,37,107,98,79,149,98,138,200,16,116,119,139,172,160,13,171,100,183,105,222,72,225,160,120,242,193,42,200,8,3,56,28,25,183,184,184,136,95,174,171,167,117,81,117,39,204,190,19,3,
|
||||
185,19,202,51,56,237,68,145,132,84,131,183,210,80,195,104,153,223,170,22,142,123,123,171,128,115,142,181,1,47,189,248,20,143,181,105,154,150,251,28,232,4,72,138,187,58,59,131,180,94,0,149,148,74,174,210,44,176,24,90,196,106,236,177,201,182,176,32,28,129,142,139,87,163,253,36,155,88,231,10,52,247,114,209,11,171,210,100,84,72,156,217,209,96,169,251,67,181,173,70,91,213,84,56,108,10,227,105,131,206,232,198,48,1,116,186,118,137,119,27,217,107,154,237,87,137,57,123,43,3,67,2,41,47,58,102,199,81,227,145,209,80,106,95,76,118,34,103,19,124,230,106,164,155,203,12,12,216,64,140,223,91,217,31,4,253,96,82,176,96,156,168,110,90,109,27,233,140,173,18,69,42,31,95,208,130,234,90,222,78,29,99,157,192,157,171,245,187,253,149,170,101,47,155,93,145,10,227,153,189,113,160,104,220,228,46,142,192,80,132,101,188,208,193,218,136,195,59,164,69,86,104,107,232,21,232,228,6,105,116,200,102,67,97,0,95,147,189,148,19,253,129,152,179,16,181,
|
||||
140,142,158,118,46,235,92,11,2,1,235,52,222,29,237,93,234,109,166,218,134,172,42,85,221,246,228,254,240,26,81,73,114,39,215,199,43,165,73,199,104,42,57,40,162,48,38,92,201,232,33,105,212,152,20,214,31,157,134,213,137,118,210,72,11,139,101,240,68,245,12,5,59,58,182,133,172,156,156,193,97,167,42,152,137,30,145,200,184,146,208,200,246,29,114,9,82,25,231,112,120,60,222,84,12,244,31,155,88,182,49,79,84,224,151,41,168,41,6,137,53,37,97,202,67,237,190,22,201,238,242,140,213,37,13,184,116,58,172,113,69,62,177,110,233,115,144,253,241,181,212,169,69,231,58,12,48,8,58,202,182,33,194,26,93,36,73,55,91,91,252,35,216,149,214,97,127,0,200,212,54,18,219,38,183,98,20,241,32,207,62,174,113,8,27,231,187,168,253,34,62,74,180,62,142,146,133,52,157,253,170,176,77,167,137,205,182,80,237,67,99,123,180,145,164,212,198,30,171,48,24,166,167,199,244,187,208,59,98,27,237,67,29,251,181,246,129,137,182,102,214,152,108,102,122,122,
|
||||
161,145,153,136,28,156,140,85,146,38,154,121,83,149,51,92,66,219,177,129,84,81,213,238,239,219,3,253,114,108,170,114,105,49,198,228,114,143,61,195,250,61,255,254,176,99,219,36,110,36,175,51,251,52,70,187,171,215,62,84,191,181,66,240,67,253,134,180,17,94,245,54,176,23,184,139,6,86,69,235,4,7,29,57,222,20,251,215,78,205,94,203,154,217,19,244,46,212,186,104,30,166,104,198,176,84,49,73,164,119,139,143,98,190,164,117,81,21,113,58,4,61,192,11,171,215,144,211,84,144,122,12,86,46,235,245,29,58,234,129,148,224,170,105,15,106,42,49,206,211,248,14,151,176,108,156,171,24,11,0,139,226,133,160,27,246,43,3,19,4,174,158,1,186,65,163,124,24,56,223,202,160,39,170,58,18,104,6,185,92,53,151,219,218,219,129,10,155,14,28,2,47,21,179,82,105,31,218,31,180,105,49,225,100,120,197,179,208,53,71,246,175,152,205,213,90,162,85,205,90,8,57,19,254,206,238,227,26,60,109,194,62,177,223,50,232,209,143,197,102,147,106,214,169,112,107,
|
||||
6,83,31,34,122,34,172,26,37,74,165,171,24,28,14,58,118,22,245,187,10,43,83,162,247,13,203,53,243,173,206,109,61,29,75,140,91,100,125,14,160,193,253,163,41,25,190,145,218,50,236,240,5,169,3,161,42,15,115,227,84,67,53,40,35,171,226,99,251,208,158,43,188,169,2,24,54,204,169,237,179,217,148,209,67,255,105,36,170,192,28,152,249,102,223,148,89,64,104,108,160,109,164,38,9,187,86,81,187,177,5,96,208,177,10,164,148,0,130,141,190,154,37,221,12,180,177,246,151,106,227,148,181,213,154,133,72,108,87,23,224,234,233,205,244,32,182,66,84,189,25,144,82,186,43,208,85,6,90,173,192,164,183,119,18,43,172,204,110,162,98,77,63,21,236,86,140,247,249,71,98,147,222,161,94,54,146,202,99,206,118,224,8,9,71,196,177,165,104,99,6,0,46,102,141,161,38,143,187,73,86,217,248,132,154,164,170,218,143,244,174,30,27,192,144,182,28,235,181,85,247,107,220,131,88,195,200,174,184,175,119,137,190,180,36,198,4,27,248,125,27,117,13,13,33,109,
|
||||
195,156,37,184,187,76,144,199,48,201,177,10,124,139,4,199,58,162,80,169,43,238,149,170,149,21,18,83,21,221,141,4,218,131,193,122,231,246,184,185,179,38,96,67,233,119,157,96,0,142,42,52,171,72,242,180,137,59,223,58,60,25,211,45,85,180,206,112,87,21,132,102,209,132,183,143,141,180,2,72,220,41,106,90,29,72,132,247,154,194,155,115,116,217,177,242,152,164,87,4,23,103,15,251,135,231,236,129,193,193,149,213,160,211,217,215,19,246,153,151,107,135,199,106,124,88,52,247,192,161,88,11,153,205,126,31,29,140,146,164,227,93,145,70,141,38,238,219,44,18,129,145,63,129,234,28,169,215,82,14,91,90,90,84,225,40,195,16,67,30,58,91,204,14,253,108,255,40,41,57,146,56,24,180,45,225,85,154,157,157,218,166,190,192,158,211,225,94,159,163,129,52,210,227,239,108,114,34,39,204,67,51,6,49,89,173,53,53,245,59,241,221,93,203,2,179,151,109,68,33,247,41,85,22,179,153,118,212,219,193,12,251,157,142,105,14,94,207,144,111,137,87,229,189,194,113,
|
||||
57,29,55,70,23,123,201,114,173,47,73,31,234,219,222,237,31,13,14,205,80,134,142,142,142,204,75,145,38,58,7,248,203,144,127,36,209,39,247,116,55,218,15,92,97,161,200,160,247,172,202,142,35,123,243,86,164,179,127,109,212,233,170,161,163,19,241,41,226,41,195,51,71,107,215,187,88,73,100,23,146,220,129,221,228,78,157,232,234,87,187,231,29,49,15,163,102,6,199,195,0,48,76,147,147,103,215,170,204,21,93,140,150,254,134,225,128,180,250,64,212,159,138,91,70,91,122,57,196,129,102,238,224,225,201,234,136,235,36,30,242,208,65,90,46,71,135,177,221,94,151,171,181,83,215,26,89,195,165,70,227,214,65,255,152,83,50,181,98,23,239,80,41,114,234,201,174,154,167,171,52,182,87,167,76,188,42,97,66,222,179,51,215,44,178,204,112,86,246,182,149,61,99,155,61,168,201,173,141,195,74,137,197,57,184,96,208,68,2,169,61,255,246,28,141,145,180,120,80,40,212,210,30,33,164,119,68,214,230,15,143,155,59,170,87,137,117,182,218,104,216,90,219,63,146,154,
|
||||
246,36,78,101,50,153,190,215,55,186,165,74,157,46,36,15,102,123,106,59,221,27,7,106,47,219,230,93,82,117,155,0,204,50,203,44,251,246,97,139,157,204,90,104,150,6,214,21,225,253,24,232,212,152,29,19,23,0,201,201,48,83,53,208,33,221,93,238,57,168,21,16,73,81,48,96,5,78,67,204,228,145,142,206,59,38,24,70,89,158,99,201,169,44,25,29,162,169,9,195,88,167,116,103,177,131,55,220,108,51,98,132,195,182,201,67,18,19,32,214,245,41,211,116,93,123,172,53,22,98,87,146,70,214,43,59,219,142,253,213,77,78,105,242,136,53,43,138,130,145,162,165,187,87,48,176,96,115,198,119,119,123,39,5,24,228,241,184,94,65,234,26,241,45,45,241,234,245,78,85,220,165,73,30,37,26,66,188,42,151,114,138,25,3,152,73,214,61,199,31,86,27,250,106,85,193,69,158,196,166,229,87,9,155,45,157,77,171,203,168,110,131,42,178,106,223,31,218,23,121,195,10,130,106,185,1,3,50,207,62,0,37,215,57,163,39,65,146,9,154,149,102,83,146,178,201,
|
||||
90,190,218,195,58,72,17,183,49,4,123,107,207,160,135,40,55,85,209,99,86,234,28,110,190,114,170,198,179,97,32,5,78,79,119,79,118,215,54,52,161,253,38,123,147,103,135,85,201,172,227,2,112,56,230,213,142,176,33,160,88,147,156,138,206,218,143,125,235,206,121,101,12,248,127,63,245,56,2,130,120,71,87,23,165,165,151,199,111,243,173,53,166,78,66,144,64,27,65,76,13,137,153,108,77,172,37,107,60,199,125,10,198,193,98,151,202,77,245,43,84,161,101,143,158,193,102,72,192,0,187,170,103,72,100,59,166,46,166,127,160,123,73,122,232,174,178,25,180,60,237,40,241,36,218,174,216,170,170,22,248,121,227,21,84,174,94,108,155,109,171,3,120,184,113,97,143,223,46,216,11,43,20,170,125,180,77,236,58,62,90,71,33,145,25,128,241,102,63,39,22,43,26,123,86,6,146,177,133,35,70,36,186,178,213,36,237,166,174,248,87,6,185,213,171,219,104,34,99,113,8,173,8,76,212,134,234,199,42,224,210,202,117,251,218,200,73,96,97,99,170,155,216,45,235,181,
|
||||
73,124,41,251,80,47,17,45,61,181,196,119,21,193,29,202,201,112,24,58,8,219,108,233,90,235,109,175,0,176,104,169,141,236,70,114,13,44,117,13,215,227,241,12,59,136,236,245,29,11,8,148,220,160,189,189,114,140,169,111,131,233,86,46,144,1,38,10,172,143,69,119,227,60,99,251,246,124,75,34,4,2,38,109,126,219,219,32,88,238,89,149,81,70,246,201,173,173,137,37,211,186,193,188,180,164,60,212,56,169,214,189,129,217,190,89,147,78,55,62,146,48,39,82,225,125,17,114,96,184,195,210,209,209,122,32,199,198,12,163,113,115,191,51,121,40,213,118,142,90,77,12,125,156,107,103,39,182,119,194,195,251,118,243,174,206,132,213,64,152,205,203,11,183,238,173,80,3,174,109,171,41,220,96,113,118,91,125,163,0,148,213,173,12,108,105,103,199,43,107,122,29,114,179,24,132,61,32,168,98,2,224,135,99,150,213,163,4,97,179,95,186,142,66,13,117,226,25,246,145,217,224,130,186,182,169,159,89,161,140,13,72,229,216,189,17,179,144,155,58,36,165,82,202,168,187,
|
||||
214,99,96,237,143,2,240,0,156,116,196,149,242,73,54,119,170,38,64,179,109,98,20,45,66,163,5,214,168,186,14,213,102,240,96,53,102,72,73,78,7,55,70,79,163,237,117,203,76,101,148,220,123,26,73,157,68,172,201,3,5,201,191,84,107,173,148,174,134,237,50,5,58,124,224,168,174,53,227,209,209,184,187,194,205,89,222,218,218,234,30,147,117,118,118,250,116,155,216,157,42,152,114,16,53,69,164,35,213,19,147,158,6,250,186,193,178,44,100,142,158,210,107,185,6,9,107,187,22,66,94,85,141,6,186,212,104,183,183,36,244,50,15,158,169,210,199,195,123,43,131,219,115,43,99,107,129,45,52,146,233,117,58,28,4,179,186,134,71,168,229,98,149,140,49,12,100,159,201,182,150,105,195,104,236,168,195,158,76,237,112,89,205,216,65,109,205,198,20,209,37,234,238,158,238,102,179,217,90,158,240,180,53,185,110,77,112,89,3,167,51,67,94,0,212,204,115,14,74,71,200,118,84,21,132,216,34,183,40,144,86,213,201,28,109,16,13,98,86,91,44,22,35,179,73,117,
|
||||
7,171,137,153,190,153,25,112,213,48,138,77,37,227,192,27,200,211,192,27,246,214,7,85,140,49,103,3,189,38,46,95,181,215,30,133,237,126,52,81,89,21,86,236,201,100,7,178,232,254,200,73,162,158,66,63,130,41,211,201,45,72,177,88,108,85,251,208,172,83,204,129,164,207,118,24,177,237,246,239,111,144,185,220,142,142,10,195,33,104,50,233,119,170,102,103,152,83,248,230,195,36,45,122,104,32,115,55,252,20,96,214,144,108,117,239,244,112,107,166,33,202,214,86,184,141,67,109,6,46,25,3,250,6,251,176,89,88,179,94,113,84,165,20,8,18,187,56,65,159,119,169,91,73,181,107,15,220,52,201,118,34,137,140,111,45,202,234,89,167,81,100,173,48,30,27,146,70,3,235,21,158,186,29,26,141,198,108,51,136,166,216,168,33,187,244,144,221,110,35,197,228,200,177,40,208,31,97,210,216,46,157,226,26,152,120,197,209,86,96,120,45,121,188,111,115,73,122,70,71,71,83,43,19,30,86,111,95,223,118,109,69,117,117,181,181,135,207,183,225,100,152,245,131,132,22,
|
||||
137,107,168,109,236,89,63,136,233,201,3,97,38,157,222,163,244,59,149,243,173,67,168,234,90,54,196,102,21,48,183,97,181,191,221,30,223,247,203,119,186,206,244,44,173,175,194,203,181,181,141,131,238,237,185,102,217,81,199,228,168,230,8,104,219,90,97,111,149,128,140,1,8,77,156,239,38,131,130,109,64,207,98,235,240,65,156,65,143,187,53,216,246,211,41,210,114,32,136,66,37,81,123,21,243,194,195,150,14,201,110,139,137,13,72,102,210,155,231,62,215,221,109,167,172,246,112,120,250,254,253,255,243,127,126,112,255,79,101,239,254,236,111,254,6,113,254,229,79,119,17,127,44,40,45,203,47,47,44,42,64,220,253,16,81,246,48,191,188,188,160,20,241,85,105,254,147,175,17,15,75,138,203,75,75,138,222,65,124,92,142,120,84,82,80,134,40,46,41,71,148,22,252,239,167,133,165,5,136,143,254,249,99,68,89,9,162,176,28,241,77,73,233,191,150,33,10,139,65,249,199,143,243,139,31,33,138,10,139,11,16,79,74,75,0,149,199,101,239,220,79,183,118,247,185,118,
|
||||
63,6,229,243,203,10,16,37,95,194,164,0,157,135,249,197,136,47,10,16,79,203,10,30,33,238,255,233,243,242,146,39,133,15,243,222,207,251,219,188,191,253,52,205,214,47,203,75,139,242,254,182,172,244,225,229,43,255,165,160,56,239,71,79,203,242,254,115,246,197,247,243,222,127,88,148,95,86,246,249,93,68,214,229,251,160,97,68,249,215,249,229,136,194,50,196,23,249,80,75,37,197,103,5,62,44,205,255,38,205,237,123,207,43,41,171,4,226,81,126,121,62,84,189,176,248,97,209,211,71,128,2,144,252,74,118,161,210,25,118,63,4,117,62,45,121,90,250,176,224,140,91,192,215,197,69,136,173,51,61,101,90,126,239,103,208,7,226,223,254,237,189,119,193,191,95,223,121,239,238,79,223,250,8,254,251,243,247,16,103,140,253,240,46,226,151,37,197,101,229,165,79,31,150,151,148,34,62,44,40,207,47,44,58,179,244,223,195,20,202,126,242,179,247,179,249,1,122,201,254,121,39,239,173,247,1,157,108,1,239,223,121,11,170,247,99,168,133,143,139,11,203,11,243,139,10,
|
||||
255,2,140,95,254,117,1,2,86,233,59,23,252,1,62,114,99,243,119,79,191,40,42,124,136,248,164,224,241,23,192,189,126,83,88,86,254,82,54,31,126,241,73,201,163,194,47,127,93,82,250,56,191,252,51,192,229,131,207,127,153,95,84,244,69,254,195,127,253,241,231,136,243,175,247,255,225,211,242,210,194,226,175,254,244,243,59,239,190,243,238,59,119,127,242,147,183,16,121,63,184,255,54,34,251,66,97,113,249,115,87,30,149,0,142,10,238,255,227,3,32,252,229,150,238,95,72,255,37,162,172,160,28,8,14,172,253,48,211,30,226,155,194,162,34,196,87,133,127,46,128,21,146,110,27,81,94,2,121,238,147,124,208,14,112,136,47,10,202,10,31,21,32,10,254,92,80,250,12,241,25,34,255,91,80,255,171,210,194,76,199,128,122,8,112,25,168,246,147,146,39,128,94,241,163,146,111,222,65,252,1,252,46,44,126,242,180,28,241,231,252,162,167,64,223,249,165,233,38,50,4,224,171,48,63,249,144,239,149,195,116,210,82,100,27,36,55,117,126,88,80,84,158,255,221,233,
|
||||
52,221,220,235,43,246,5,181,129,104,244,164,180,160,172,160,184,28,46,12,238,61,130,154,2,117,202,191,41,40,0,165,191,41,57,211,223,147,18,64,163,236,59,214,243,189,239,76,197,247,222,176,219,62,6,23,17,247,94,215,119,239,253,181,124,247,187,83,108,186,185,239,201,119,239,229,232,187,127,13,61,223,187,251,221,57,239,221,55,236,189,101,5,0,187,60,202,7,223,174,244,216,23,28,251,123,113,225,239,78,191,153,246,190,19,39,190,80,253,247,238,206,255,242,117,65,241,255,44,41,121,252,233,67,128,98,139,46,105,251,66,217,247,33,109,93,46,121,161,167,179,66,176,146,128,252,223,124,93,144,214,0,0,169,165,105,76,156,143,248,11,168,136,0,240,43,31,192,103,168,122,206,188,125,90,80,254,251,252,226,175,10,94,198,217,89,185,151,240,85,86,242,24,134,211,48,80,75,67,119,68,41,84,175,12,130,171,15,191,134,190,62,186,13,115,159,221,251,164,176,56,7,230,224,114,47,99,46,147,89,60,41,2,57,68,73,105,225,87,192,149,110,201,21,104,233,
|
||||
83,128,68,243,238,192,127,223,130,25,203,42,242,249,37,16,251,92,215,129,184,205,212,191,127,7,170,7,190,128,10,208,79,112,235,231,63,70,148,253,229,254,5,236,5,37,203,46,169,177,12,20,4,30,95,254,53,226,79,127,243,163,76,241,119,16,191,126,90,252,176,188,16,0,112,16,67,254,21,100,68,5,229,31,63,206,255,170,224,206,91,233,174,84,90,80,254,180,180,24,184,197,23,133,229,143,243,159,64,166,185,168,13,147,124,231,82,178,113,173,224,31,157,9,158,247,214,67,8,238,191,127,169,215,255,185,176,180,252,105,126,209,125,196,11,98,33,62,58,147,248,173,7,217,53,96,34,23,246,250,61,204,231,139,2,191,57,1,95,106,215,95,150,20,149,148,230,221,129,25,67,164,127,252,224,213,44,12,87,6,38,126,65,220,7,144,27,67,55,63,79,55,112,69,125,192,248,67,248,214,115,158,144,17,42,125,15,241,78,126,89,38,63,134,156,252,171,210,146,167,32,42,193,247,114,52,39,160,249,135,194,242,162,130,51,121,211,145,246,85,5,134,73,93,39,112,
|
||||
154,244,231,153,38,174,22,185,28,38,112,181,200,233,123,136,115,137,225,223,185,123,109,70,76,88,176,87,227,15,241,209,185,132,111,189,224,176,47,242,148,155,226,127,13,156,252,76,249,240,247,215,81,61,68,224,58,245,67,247,62,135,155,184,90,245,95,130,59,127,184,65,253,23,247,33,19,192,130,194,215,110,233,104,111,174,119,93,144,123,205,46,118,147,212,89,5,46,196,46,47,248,182,252,86,189,236,163,75,198,206,136,123,163,65,16,31,93,50,233,139,254,6,5,200,23,140,240,82,19,252,38,255,139,130,162,178,23,58,251,219,47,249,253,92,159,249,115,73,225,163,51,43,164,41,190,78,159,255,22,38,241,28,124,188,29,137,103,111,138,196,221,251,15,242,254,251,131,188,255,148,247,159,174,24,128,139,96,81,207,80,205,215,0,56,252,5,168,62,191,40,13,16,239,100,60,38,35,206,91,111,35,0,250,47,47,124,248,252,253,12,175,111,193,0,242,2,160,222,84,248,238,253,183,114,239,101,112,141,207,222,76,60,79,211,122,3,198,189,186,115,101,110,194,29,235,
|
||||
76,191,215,168,55,247,142,118,38,127,206,129,254,65,222,15,210,253,237,76,218,171,59,91,14,220,229,102,155,123,111,208,54,247,94,199,54,207,110,178,205,179,27,108,115,201,87,111,105,153,123,175,108,153,123,57,89,230,42,222,114,180,203,221,55,105,152,187,223,139,101,174,137,39,183,181,209,221,87,55,210,221,156,172,116,51,159,57,14,99,111,10,58,93,80,123,29,236,148,25,8,175,7,79,153,2,151,236,86,118,27,8,245,209,101,193,95,132,17,15,178,12,81,118,19,112,128,26,61,51,69,154,143,219,105,254,205,129,184,44,122,175,137,226,110,212,127,118,137,51,3,192,215,174,212,66,14,163,236,239,138,74,202,63,40,45,200,255,36,191,244,171,194,226,188,59,133,192,34,111,95,254,243,74,250,184,76,247,178,74,10,211,38,6,226,124,253,155,130,47,159,159,112,203,186,251,251,194,175,190,190,254,246,159,255,80,242,228,250,155,191,40,41,47,47,121,124,213,252,67,17,104,243,12,151,164,25,0,24,167,20,106,234,28,174,100,90,6,215,203,75,158,156,93,132,219,
|
||||
75,195,157,47,96,226,231,197,207,27,67,60,134,197,61,199,86,217,19,52,208,108,27,60,155,154,253,220,243,236,105,240,173,237,5,241,157,109,179,215,50,210,5,177,235,12,149,150,235,58,109,158,121,103,166,20,36,253,165,169,169,55,41,56,108,153,55,38,121,22,181,219,139,158,246,153,239,80,118,224,128,111,76,242,115,90,183,151,27,244,137,239,82,234,116,231,122,99,130,103,147,187,189,236,153,158,255,29,138,255,230,198,168,75,20,95,125,148,122,146,247,32,63,239,193,77,147,122,217,37,206,70,169,231,231,245,32,157,193,186,202,7,28,229,174,149,15,0,186,122,115,26,57,167,246,234,218,128,224,222,205,218,200,46,113,229,152,125,142,24,225,149,29,63,250,247,159,255,188,16,154,17,126,255,191,254,228,239,127,240,119,239,254,125,69,101,172,98,188,226,252,95,148,75,223,167,141,31,84,10,231,200,90,197,22,209,17,158,36,175,162,212,1,58,145,139,180,122,132,171,237,187,201,126,126,189,141,70,33,206,177,199,53,235,52,197,105,212,175,93,32,115,154,250,171,154,
|
||||
102,101,78,228,5,33,124,69,69,236,16,73,52,225,204,102,166,121,116,92,92,63,79,13,175,15,36,83,238,211,106,149,116,158,42,9,169,166,36,88,142,63,65,16,162,77,154,56,241,116,109,217,70,228,199,247,133,38,10,41,58,116,104,30,85,79,241,73,51,93,110,65,237,80,239,200,41,59,36,35,105,7,199,249,195,50,102,51,129,104,59,193,83,59,59,168,214,144,90,31,217,219,93,240,53,120,38,43,43,215,205,199,28,93,215,130,79,168,48,170,90,123,226,147,58,165,55,176,224,67,234,26,53,46,65,227,241,30,110,226,64,50,39,150,110,245,181,217,172,3,198,117,129,185,70,217,58,177,220,203,34,212,235,101,189,203,245,115,245,178,1,95,200,208,53,189,124,176,91,55,205,239,239,77,232,213,50,213,94,194,227,104,32,184,88,147,13,98,91,215,254,137,121,223,238,63,138,49,122,117,61,54,218,65,100,82,116,188,170,104,58,30,74,174,72,236,161,100,223,80,36,65,194,215,48,39,44,2,157,184,223,34,26,37,133,15,82,2,103,82,50,165,107,31,245,117,
|
||||
29,237,168,91,38,86,19,195,39,230,1,153,108,217,47,225,70,168,91,45,167,253,50,3,243,144,156,24,31,152,70,159,186,248,43,7,172,205,72,163,161,145,56,27,50,251,87,197,179,164,173,229,126,226,129,89,137,27,28,239,175,39,81,197,219,198,125,135,217,207,155,15,198,150,172,140,49,157,183,71,223,209,47,71,54,46,55,85,134,5,181,28,118,245,113,136,189,110,118,155,218,204,110,240,209,182,147,254,48,139,211,31,238,150,244,199,250,62,252,161,236,56,177,233,151,248,237,108,55,55,110,222,117,53,47,248,40,180,5,159,8,252,151,9,125,162,176,224,180,186,162,105,60,25,184,85,199,249,151,194,71,229,95,191,70,8,61,167,113,93,220,76,187,250,55,112,145,155,58,67,186,196,89,103,128,127,101,119,6,232,145,232,147,194,111,111,5,100,63,42,45,124,244,230,2,195,57,181,87,15,12,208,115,240,155,3,67,118,137,43,3,3,84,224,202,192,240,227,255,10,2,195,187,21,149,225,138,177,172,192,208,79,223,111,26,223,175,28,107,38,107,79,58,209,116,211,
|
||||
112,149,162,13,51,195,198,11,52,12,247,234,164,254,152,132,33,15,10,7,122,4,33,76,83,237,74,13,45,181,71,108,36,90,150,131,65,116,8,207,50,0,2,66,136,202,186,187,198,27,94,172,215,246,169,71,249,216,250,45,218,209,28,170,229,100,77,161,83,224,77,123,168,121,83,7,125,176,162,146,58,231,106,158,19,210,4,147,53,220,102,188,130,56,121,156,242,88,144,173,219,29,53,140,237,154,214,237,26,10,244,225,156,183,68,28,7,161,246,152,84,27,36,142,250,18,1,234,208,160,111,217,32,171,219,237,162,111,53,55,42,92,227,171,62,175,89,181,118,164,60,9,96,81,248,217,253,192,122,48,162,246,242,250,250,186,86,29,253,68,253,32,203,32,196,8,123,130,234,20,166,61,188,65,116,18,244,68,204,233,218,226,212,6,10,143,175,237,28,24,226,29,238,85,164,78,71,232,142,176,214,83,225,154,221,139,158,206,114,135,92,222,6,90,77,191,194,228,170,87,91,3,204,250,36,125,217,167,216,151,18,148,135,199,254,166,117,43,83,60,155,112,5,4,123,14,
|
||||
117,32,218,200,63,182,204,161,240,181,142,192,41,30,23,138,86,9,93,7,61,156,112,148,49,186,182,134,110,59,109,25,162,31,246,56,227,19,232,74,186,93,29,82,82,134,146,40,117,47,122,154,209,165,87,109,158,170,155,231,182,48,162,85,215,65,104,152,57,216,170,111,111,218,233,9,75,91,157,3,195,251,46,188,139,32,52,187,198,231,14,84,225,161,36,142,233,28,48,186,146,91,152,70,227,168,139,234,136,7,109,145,104,80,213,17,87,247,81,130,148,69,34,171,245,208,137,57,105,109,220,88,78,181,247,168,23,131,20,206,0,161,150,175,198,16,137,230,217,224,174,81,232,210,121,227,58,7,186,250,8,185,228,242,24,12,75,42,119,107,124,63,100,31,194,201,43,122,104,213,140,70,162,60,54,71,24,154,35,16,19,113,151,110,93,189,218,166,158,95,5,31,201,245,40,158,36,176,42,69,183,234,57,175,27,25,206,105,92,23,25,210,190,126,83,100,200,46,113,101,100,128,23,150,220,58,50,124,93,242,205,31,33,238,242,238,124,81,82,82,244,42,210,157,81,184,
|
||||
44,26,68,237,236,49,55,40,145,37,212,199,23,79,108,161,27,208,19,249,242,210,167,5,151,103,245,210,194,148,193,69,138,115,23,229,127,188,182,40,255,227,77,137,146,53,117,252,138,194,252,166,224,171,130,226,215,147,38,77,226,102,113,160,39,33,217,247,33,9,114,144,177,176,28,190,144,113,189,252,39,95,151,33,138,243,31,23,188,157,9,209,240,83,143,242,103,153,167,164,207,5,232,247,254,238,189,159,254,224,238,127,251,49,170,114,163,162,63,43,66,163,233,251,45,179,211,75,107,19,244,41,15,230,136,189,41,221,155,8,214,225,72,235,245,238,30,141,80,196,25,22,204,79,104,237,238,69,50,103,134,135,28,103,152,26,183,186,200,43,149,227,98,250,14,166,134,63,97,102,115,80,19,70,78,87,221,106,205,46,118,125,215,149,24,168,142,145,120,130,148,35,118,218,146,178,40,136,83,49,105,205,113,255,241,196,41,139,24,82,251,245,170,200,156,191,47,225,55,248,101,145,70,221,152,16,175,6,255,59,210,31,66,74,250,3,175,83,95,92,167,111,142,232,184,107,
|
||||
60,173,162,182,6,155,26,215,110,213,110,251,183,151,162,30,81,255,200,169,99,189,167,215,161,215,51,185,125,147,227,94,239,182,114,208,129,107,212,55,54,54,50,196,125,235,237,234,67,125,159,1,71,110,242,109,135,150,34,141,157,91,81,15,167,46,133,68,18,212,104,79,112,62,46,115,52,82,112,94,188,32,196,103,120,246,240,163,12,134,215,143,182,51,154,227,129,200,112,227,82,231,48,118,192,124,196,105,154,222,108,244,137,171,83,41,226,144,199,176,30,88,247,175,113,205,158,248,225,238,214,178,104,113,143,34,217,197,153,235,236,248,141,230,93,141,103,114,52,238,192,168,253,29,205,43,246,99,110,71,116,38,184,180,183,164,67,79,176,18,92,21,67,38,19,174,36,23,86,176,110,247,194,134,197,236,28,78,165,2,254,17,230,209,81,155,169,91,193,53,162,49,13,160,9,43,149,171,95,223,158,143,37,142,125,102,179,231,160,198,181,39,142,245,173,200,134,189,245,94,161,57,44,246,76,112,44,53,246,78,126,237,80,93,141,115,90,40,197,204,83,117,35,27,246,125,
|
||||
117,98,183,211,109,247,173,90,235,153,84,49,141,96,181,30,147,61,115,243,213,179,91,117,180,84,82,121,36,243,135,15,220,14,69,50,217,77,235,94,168,30,215,183,153,7,109,3,33,94,149,205,154,196,117,117,113,183,12,58,169,142,46,227,248,148,218,163,158,150,117,202,241,114,255,176,55,52,24,223,114,46,226,199,214,212,100,254,112,187,3,95,75,14,117,113,204,147,213,36,231,161,102,170,63,201,50,176,112,43,61,212,80,205,88,245,12,107,215,197,194,236,248,40,158,30,254,222,132,129,228,39,133,194,142,137,131,169,201,112,23,170,134,190,107,96,197,36,166,144,123,93,237,157,219,181,80,162,177,129,192,145,13,183,103,38,43,215,38,8,170,141,245,88,108,115,155,79,181,212,114,21,3,141,193,248,128,76,21,77,108,245,47,138,154,125,33,7,57,212,56,203,230,161,71,226,9,227,226,46,250,164,146,31,193,214,187,38,26,199,38,201,117,245,83,157,237,28,5,167,203,217,69,102,18,249,124,91,243,108,244,180,179,189,178,51,218,201,19,84,106,221,59,199,236,195,
|
||||
225,131,54,246,248,58,21,221,58,89,187,19,170,222,197,12,17,119,187,151,220,227,129,211,90,73,24,101,100,141,78,197,100,114,89,155,181,141,139,247,114,125,206,249,6,58,45,185,210,40,168,197,6,59,44,108,95,61,129,169,98,120,121,227,65,29,109,166,71,184,71,83,234,55,219,8,188,113,161,195,191,198,91,234,246,145,156,51,61,125,156,62,189,115,108,146,63,187,172,39,242,69,2,227,26,169,114,124,176,181,162,62,149,148,82,5,180,40,105,176,117,139,143,57,174,105,156,104,192,108,170,163,75,248,170,254,254,13,171,94,100,72,182,144,35,220,46,183,73,104,114,104,125,68,134,239,136,60,76,144,73,88,244,205,165,118,57,243,48,84,211,60,193,220,213,246,239,212,251,43,80,218,153,20,119,118,203,231,243,181,172,18,59,77,254,238,84,99,221,8,145,232,11,30,199,197,124,11,179,151,66,217,28,233,103,183,250,85,169,160,163,255,244,196,134,109,72,54,160,235,196,194,69,119,179,136,92,197,95,170,230,225,170,186,212,35,9,203,236,242,154,125,169,103,41,106,
|
||||
233,70,46,250,44,62,201,156,180,186,2,185,229,226,99,117,73,130,215,74,97,187,229,195,198,173,209,128,11,101,61,225,29,12,43,218,218,218,218,149,74,165,64,176,235,87,240,34,173,237,237,137,19,29,73,46,217,194,122,253,225,84,144,71,95,152,244,153,78,18,142,13,77,203,177,97,242,84,141,97,141,146,1,47,81,52,165,115,161,109,163,45,26,32,55,245,91,208,161,3,65,124,110,92,215,30,161,80,167,216,187,13,243,154,237,68,20,139,149,84,47,114,220,134,166,254,237,53,61,93,166,30,151,45,30,123,70,82,167,116,44,106,51,194,25,101,53,52,168,132,182,58,6,161,171,11,45,227,74,26,104,52,175,123,111,117,75,232,84,138,198,83,66,28,95,112,24,175,20,251,13,188,46,13,119,48,46,53,38,49,200,245,40,127,71,30,12,176,87,177,238,249,145,35,193,130,107,167,90,210,186,50,79,14,181,15,113,36,149,52,130,119,100,105,151,215,217,217,105,64,50,149,43,54,219,98,28,79,39,78,53,8,44,188,21,161,181,199,80,143,54,68,189,28,221,81,
|
||||
235,196,144,119,8,79,242,7,195,161,118,29,137,216,222,238,236,104,210,86,85,18,219,99,244,74,34,67,98,82,106,247,148,135,93,147,168,13,66,149,182,187,213,177,239,109,157,180,19,157,35,65,99,187,89,140,153,12,75,141,104,82,15,107,100,85,118,60,181,55,50,196,237,236,236,53,17,241,244,104,50,122,56,63,79,39,84,75,36,18,18,147,175,196,68,183,241,131,172,158,185,46,147,192,210,207,59,145,166,82,167,251,246,225,237,110,225,202,222,146,120,102,208,72,229,26,124,67,50,125,208,75,38,186,56,104,9,127,66,98,235,37,49,79,85,156,138,198,196,81,175,35,226,23,7,71,163,135,186,137,84,199,124,143,110,113,38,53,55,212,212,231,192,69,35,56,108,85,141,128,189,195,95,48,48,228,161,112,108,223,142,171,169,169,209,203,88,163,134,241,149,65,207,241,206,56,127,157,189,184,217,58,74,219,119,42,99,84,164,191,158,130,33,88,218,143,233,241,160,156,49,63,175,158,15,90,214,197,45,13,178,38,227,82,213,20,137,165,29,13,239,219,92,46,54,74,
|
||||
177,32,32,246,45,117,181,14,84,153,120,172,145,147,45,206,68,103,231,233,124,34,217,31,31,155,155,195,59,154,15,34,177,148,191,170,105,205,199,20,182,227,52,186,85,163,100,172,218,87,217,59,48,117,168,103,35,23,2,19,18,233,194,70,165,130,223,134,81,240,143,23,92,19,251,4,194,30,143,179,199,211,96,107,253,70,109,148,148,106,17,130,122,194,246,192,0,186,161,111,201,58,118,66,228,79,16,91,132,1,58,211,92,21,225,97,107,81,10,62,92,83,226,154,128,107,82,247,120,112,205,57,241,42,33,133,108,97,33,119,150,115,95,69,151,53,146,63,255,176,237,108,40,70,92,42,119,229,211,28,120,200,253,18,81,4,151,56,7,19,57,63,206,129,171,189,46,138,205,162,114,29,142,189,18,193,66,16,33,131,33,50,248,245,28,166,66,224,53,189,124,58,35,89,65,81,193,227,130,91,61,42,203,22,237,121,5,23,102,61,45,203,102,254,154,71,151,151,88,72,243,154,171,134,63,41,121,84,240,26,170,133,170,95,167,211,188,7,143,161,187,16,78,251,228,195,
|
||||
188,7,31,252,211,31,62,254,224,55,31,127,240,233,175,62,188,66,207,143,64,27,208,178,232,179,25,88,168,230,59,136,63,158,175,117,126,63,13,199,138,238,254,244,167,63,43,124,239,39,239,254,236,183,103,251,205,32,238,138,211,11,78,97,70,51,5,255,238,239,46,10,66,197,32,22,62,252,253,7,255,114,255,10,66,207,145,249,221,7,31,255,211,31,126,245,251,155,40,101,9,243,163,127,207,251,239,136,79,126,251,225,175,46,93,125,251,166,218,255,244,219,15,62,64,100,254,101,85,135,46,223,88,239,211,127,254,197,239,62,254,236,87,191,201,170,115,118,233,126,206,142,151,182,248,13,30,151,182,233,213,174,118,102,38,200,62,80,54,247,168,228,225,83,200,233,210,235,221,51,14,113,231,173,156,188,239,215,133,229,127,40,129,54,246,101,165,10,87,173,226,58,47,119,109,62,112,239,133,100,224,203,252,162,178,236,108,224,247,5,101,32,61,203,236,204,251,54,179,136,9,194,250,207,50,51,83,231,217,194,189,243,84,225,45,104,65,63,156,43,228,67,139,253,211,185,
|
||||
2,180,163,241,157,146,226,236,5,192,57,246,121,104,205,124,222,157,244,146,252,188,183,97,137,223,190,81,110,168,194,101,145,51,155,22,50,73,16,36,208,115,15,74,179,116,2,242,184,171,83,164,107,107,128,112,246,178,164,10,98,169,44,243,216,243,139,103,231,9,22,204,9,208,57,188,179,242,34,129,44,122,150,165,87,136,159,243,36,12,210,252,89,206,124,169,20,196,195,89,169,92,167,2,224,141,4,23,154,205,124,94,187,38,48,189,109,225,122,189,166,197,248,236,234,253,34,217,69,238,101,143,23,48,213,51,213,92,82,193,133,158,206,40,63,47,62,40,145,209,221,165,130,247,238,231,62,77,10,111,200,128,210,214,207,242,238,156,127,127,89,72,79,47,141,185,84,251,254,69,237,140,151,65,95,97,183,248,195,111,243,30,252,242,87,80,96,188,34,124,127,150,222,217,113,230,16,112,37,56,124,23,62,202,218,176,242,126,186,98,86,252,190,32,250,62,236,92,240,62,7,40,158,148,130,136,2,186,95,246,58,251,244,245,119,94,160,241,235,223,255,246,147,188,7,191,
|
||||
0,81,247,122,26,159,101,246,81,188,130,70,239,189,150,70,239,189,170,70,239,253,7,215,232,189,91,107,20,222,151,243,66,63,205,238,175,183,134,31,233,173,62,215,247,229,210,111,111,234,198,165,207,110,190,123,55,19,14,127,140,120,239,221,119,175,2,135,89,115,101,103,107,70,64,139,217,75,107,207,47,63,187,126,69,237,69,153,187,80,33,104,56,74,111,69,122,231,98,248,130,126,195,113,17,154,108,44,44,43,4,108,166,177,74,102,18,53,243,120,26,144,47,45,4,158,241,180,184,16,176,120,167,56,125,49,13,89,115,93,163,11,16,192,103,25,83,93,185,135,230,66,73,136,243,162,0,46,228,184,105,230,219,44,1,115,66,9,160,141,123,185,179,115,239,150,236,60,123,21,118,238,222,130,159,187,183,100,232,194,63,110,205,26,132,190,242,255,87,73,233,63,67,198,191,114,60,204,37,114,93,144,184,161,95,61,189,177,95,61,125,150,99,103,1,100,222,186,52,24,94,220,129,250,203,163,194,178,242,252,226,135,5,231,251,34,207,247,160,222,226,1,226,133,60,255,
|
||||
244,244,113,214,66,184,219,235,3,212,191,46,213,41,126,94,31,89,183,114,85,70,241,181,202,128,72,32,138,159,194,199,65,128,254,254,106,90,248,54,219,55,94,65,11,223,94,231,24,217,203,107,190,125,30,54,93,186,121,239,42,77,128,235,133,143,159,62,206,146,239,10,221,192,148,175,209,78,154,240,237,181,242,81,182,109,175,88,144,127,185,35,103,21,189,46,55,186,81,146,23,216,187,5,115,87,172,73,191,142,185,107,23,161,191,200,220,229,103,86,185,179,6,121,67,97,241,43,5,153,107,230,16,50,212,222,96,188,201,222,126,10,234,194,142,115,17,89,210,107,140,11,75,203,202,161,131,44,192,173,231,183,184,151,33,138,74,0,219,133,37,185,162,27,104,32,204,136,145,219,168,153,41,124,255,65,238,219,77,207,25,190,124,204,196,115,156,190,124,244,186,13,159,247,94,153,207,23,142,195,184,21,159,103,27,165,223,44,90,76,239,189,190,222,203,190,125,12,110,191,125,237,237,103,47,191,125,129,24,95,192,139,217,46,153,110,232,124,195,4,244,43,219,69,211,148,
|
||||
210,121,203,219,144,38,47,225,198,140,102,111,133,190,51,46,151,179,111,222,198,222,159,93,193,79,78,94,152,179,7,222,134,155,171,180,147,19,55,119,115,102,231,238,109,248,185,217,110,55,115,246,193,163,71,159,194,120,254,188,27,252,48,179,126,255,85,176,221,57,181,171,123,64,222,15,211,94,12,79,180,93,11,102,158,62,190,226,254,229,78,244,110,86,31,184,161,220,163,244,57,71,231,25,86,86,127,1,156,66,103,69,20,23,124,115,150,207,148,149,151,148,166,167,24,207,186,8,196,6,226,254,47,65,14,92,154,255,236,82,231,58,227,17,58,75,33,115,70,70,118,165,188,63,189,155,119,31,113,255,179,204,137,25,133,23,187,253,222,77,119,194,231,224,217,11,32,52,155,216,253,179,84,252,130,76,70,174,139,220,237,114,249,175,161,37,48,240,57,33,23,50,229,35,158,20,148,62,206,47,134,38,239,207,194,36,226,209,83,248,76,145,236,181,198,69,133,95,66,171,180,17,249,208,100,22,226,113,193,227,18,224,86,79,74,75,128,82,31,231,138,122,174,244,169,203,
|
||||
222,245,6,189,233,219,27,188,229,86,14,119,43,231,72,183,122,41,162,166,175,100,220,165,236,74,127,121,193,98,215,146,249,15,100,195,63,22,64,51,133,121,255,144,177,224,63,66,155,163,175,184,118,107,147,62,248,60,77,229,115,68,250,243,254,63,92,97,194,127,132,235,101,155,249,118,213,158,189,65,211,130,95,47,52,14,174,33,254,1,250,251,34,15,208,173,127,252,127,211,228,31,64,46,124,217,226,47,94,122,5,131,195,68,62,71,192,31,57,155,59,247,74,127,53,99,167,219,254,255,211,214,103,93,249,119,208,41,80,95,190,177,174,252,224,243,52,193,207,17,233,207,11,43,165,143,155,186,157,153,50,117,110,238,130,47,52,121,141,85,206,136,253,7,50,66,166,119,189,158,13,158,235,40,223,129,5,158,235,23,255,175,25,224,183,79,242,31,22,150,63,59,135,41,57,233,60,83,233,134,28,175,36,83,226,42,220,121,62,39,149,209,115,70,35,103,85,16,239,124,89,90,242,24,241,30,226,14,184,242,191,51,207,135,223,69,220,41,47,205,47,46,123,146,95,10,
|
||||
180,242,183,133,197,153,217,249,92,103,219,207,150,216,92,218,217,159,147,172,87,173,145,189,126,23,60,44,124,122,161,200,203,37,206,148,187,165,8,112,102,114,27,57,174,200,210,175,18,234,2,13,22,22,63,42,120,126,38,232,149,69,190,44,43,226,203,139,199,175,233,102,50,58,185,237,138,158,139,197,52,175,118,188,194,197,154,159,155,181,112,227,82,160,215,20,6,232,8,250,250,25,160,92,248,16,58,149,234,85,151,114,95,166,115,253,122,238,130,242,91,44,231,6,133,47,173,88,47,123,12,173,207,72,207,219,193,9,92,193,183,208,242,132,203,7,11,103,157,203,10,146,194,236,69,104,57,42,227,222,27,82,198,189,239,67,25,153,103,182,240,166,238,146,47,17,25,173,220,123,3,90,185,251,166,212,114,247,123,212,75,122,199,247,155,83,12,128,145,191,43,45,124,156,95,250,236,94,38,44,222,184,208,231,185,42,183,137,126,89,250,121,146,174,158,187,142,206,42,156,233,233,237,43,67,6,252,236,191,4,222,248,156,121,250,15,32,65,254,89,229,115,72,2,159,110,
|
||||
255,180,172,32,235,244,128,203,71,167,64,13,195,171,178,206,11,166,181,254,42,7,193,188,160,227,92,124,239,252,89,214,245,186,190,66,155,185,41,174,40,31,12,122,249,143,160,19,238,191,15,173,229,168,182,143,203,94,244,204,244,148,39,104,190,180,228,155,188,59,191,250,246,225,181,107,125,47,215,126,201,224,116,197,244,232,101,167,132,218,187,255,0,106,240,250,69,195,215,185,99,70,139,185,59,203,167,5,0,174,21,67,167,243,127,150,99,127,204,170,241,138,221,177,236,156,194,109,162,214,121,157,87,232,148,23,181,33,199,130,194,29,252,250,133,52,160,135,227,88,73,105,186,252,151,37,69,69,37,223,156,157,66,252,217,45,187,222,37,109,222,170,231,93,171,213,55,175,183,204,169,57,185,116,203,239,65,111,31,64,11,22,95,85,117,31,60,191,124,241,175,160,61,72,11,25,149,65,10,248,158,116,246,53,20,147,114,232,175,208,6,191,87,236,165,175,185,147,240,44,153,200,228,136,89,199,250,102,250,43,172,150,140,38,129,234,222,187,136,232,111,95,170,8,31,18,
|
||||
252,69,250,4,111,40,173,204,57,164,255,49,157,111,94,153,118,100,197,238,76,177,91,231,20,87,134,226,108,161,206,4,128,31,246,22,228,3,222,160,151,198,20,231,44,1,100,188,219,118,135,116,149,191,218,246,208,43,140,154,213,31,254,10,86,252,125,193,227,146,63,23,156,205,55,93,97,200,115,87,207,46,153,187,45,161,58,55,152,16,158,214,184,242,5,70,143,10,138,10,202,11,178,103,8,224,245,239,183,145,10,24,234,76,176,151,72,117,94,242,242,26,22,152,249,243,8,243,122,44,191,164,51,61,122,213,157,48,31,95,159,172,223,52,247,0,110,94,28,240,118,62,84,101,201,153,107,20,120,148,251,146,174,219,113,127,69,244,188,133,108,55,5,142,220,231,85,62,190,122,78,37,107,199,202,203,4,184,122,174,4,100,120,55,133,235,220,25,252,48,189,41,230,82,8,203,92,251,28,145,249,114,198,234,217,207,107,150,105,157,173,204,206,20,203,117,1,3,124,212,124,182,243,194,23,62,71,192,31,231,90,130,127,92,163,168,244,30,142,171,102,69,175,98,15,38,
|
||||
149,174,243,8,145,127,126,88,90,154,200,45,214,164,252,226,25,60,25,125,105,146,247,250,133,41,153,210,55,173,224,185,134,239,75,239,43,130,78,168,130,86,68,159,63,8,130,247,245,101,44,95,158,94,59,157,187,12,247,110,37,195,189,151,203,240,236,106,25,238,221,36,194,179,215,19,225,238,237,100,184,251,202,66,188,184,28,230,175,33,207,103,48,119,191,120,6,239,30,204,209,183,178,171,188,186,131,165,133,56,151,233,205,56,216,237,165,185,151,163,52,215,89,233,222,77,210,188,134,109,62,205,7,163,124,217,39,5,229,249,95,22,94,188,211,225,225,215,249,165,121,63,188,250,125,29,231,16,255,82,205,171,31,122,100,95,130,73,158,237,214,130,106,92,183,96,11,218,92,249,195,159,223,185,251,83,232,214,187,239,190,245,30,226,95,224,151,245,148,93,44,231,130,218,190,28,254,242,161,7,114,233,151,250,148,33,30,103,152,202,122,30,7,183,120,139,197,217,133,197,151,55,7,190,230,106,218,151,108,28,188,113,45,109,122,254,48,239,71,87,62,27,187,240,231,236,
|
||||
167,230,231,199,250,60,46,44,134,215,24,195,27,151,210,123,216,222,201,2,218,233,9,179,188,31,189,247,54,162,164,184,232,89,22,181,191,156,237,49,58,79,51,111,181,178,253,13,42,47,77,236,123,81,94,102,129,246,119,170,188,95,3,212,249,199,194,130,111,114,156,200,185,90,105,231,68,222,252,212,125,70,216,18,232,29,169,80,72,131,158,63,67,111,142,130,214,225,165,163,211,89,198,245,8,240,87,156,126,77,214,189,139,144,5,191,180,43,93,243,172,32,124,24,221,159,11,74,33,0,147,73,236,178,167,46,178,95,193,149,117,34,85,230,13,159,231,175,97,253,162,240,43,184,26,156,43,66,246,76,91,33,179,129,28,190,11,191,96,244,237,52,11,37,79,224,71,229,208,91,91,243,31,62,4,25,74,41,72,148,17,101,32,152,20,127,5,228,187,244,22,170,130,47,75,11,202,190,206,125,124,248,101,201,211,243,227,182,175,134,199,112,137,235,16,231,197,134,128,76,186,84,84,146,255,40,199,183,76,125,92,246,171,199,79,160,103,244,55,76,60,192,37,110,58,26,
|
||||
162,28,94,166,9,77,25,21,151,92,134,222,136,115,29,220,191,255,127,1,40,79,137,78,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue