From ef749f2d72df8bf253072eaab33e16e78a83e902 Mon Sep 17 00:00:00 2001 From: koldo Date: Thu, 17 Dec 2020 06:58:54 +0000 Subject: [PATCH] ScatterDraw: Simplified templated functions, bug fixes, added central cleaning function added simpler functions for margins git-svn-id: svn://ultimatepp.org/upp/trunk@15598 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/ScatterDraw/DataSource.cpp | 165 +++++++----------- uppsrc/ScatterDraw/DataSource.h | 86 ++++++--- uppsrc/ScatterDraw/Equation.cpp | 2 + uppsrc/ScatterDraw/ScatterDraw.cpp | 26 ++- uppsrc/ScatterDraw/ScatterDraw.h | 17 +- uppsrc/ScatterDraw/ScatterDraw.t | 8 - .../ScatterDraw/src.tpp/ScatterDraw_en-us.tpp | 14 +- .../src.tpp/ScatterDraw_en-us.tppi | 112 ++++++------ 8 files changed, 229 insertions(+), 201 deletions(-) diff --git a/uppsrc/ScatterDraw/DataSource.cpp b/uppsrc/ScatterDraw/DataSource.cpp index 572db17b9..69def1cfc 100644 --- a/uppsrc/ScatterDraw/DataSource.cpp +++ b/uppsrc/ScatterDraw/DataSource.cpp @@ -468,10 +468,10 @@ Vector FFTSimple(VectorXd &data, double tSample, bool frequency, int typ double numDataFact = 0; switch (window) { case DataSource::HAMMING: - numDataFact = HammingWindow(data); + numDataFact = HammingWindow(data); break; case DataSource::COS: - numDataFact = CosWindow(data, numOver); + numDataFact = CosWindow(data, numOver); break; default: numDataFact = numData; } @@ -750,39 +750,15 @@ Vector DataSource::Derivative(Getdatafun getdataY, Getdatafun getdataX, int numData = int(GetCount()); - Vector data; - data.SetCount(numData); - int num = 0; + VectorXd xv(numData), yv(numData); for (int i = 0; i < numData; ++i) { - double y = Membercall(getdataY)(i); - double x = Membercall(getdataX)(i); - if (!IsNull(y) && !IsNull(x)) { - data[i].y = y; - data[i].x = x; - num++; - } + yv[i] = Membercall(getdataY)(i); + xv[i] = Membercall(getdataX)(i); } - numData = num; - - Vector res; - if (numData < orderAcc+1) - return res; - data.SetCount(numData); - - double minD = -DOUBLE_NULL_LIM, maxD = DOUBLE_NULL_LIM; - for (int i = 0; i < numData-1; ++i) { - double d = data[i+1].x - data[i].x; - minD = min(minD, d); - maxD = max(maxD, d); - } - if ((maxD - minD)/minD > 0.0001) - return res; - - double h = (minD + maxD)/2; - - VectorXd origE(numData); - for (int i = 0; i < numData; ++i) - origE(i) = data[i].y; + + VectorXd resampled; + double h = Null, from; + Resample(xv, yv, h, resampled, from); // From https://en.wikipedia.org/wiki/Finite_difference_coefficient double kernels1[4][9] = {{-1/2., 0, 1/2.}, @@ -796,6 +772,8 @@ Vector DataSource::Derivative(Getdatafun getdataY, Getdatafun getdataX, int idkernel = orderAcc/2-1; + Vector res; + double factor; VectorXd kernel; if (orderDer == 1) { @@ -807,13 +785,14 @@ Vector DataSource::Derivative(Getdatafun getdataY, Getdatafun getdataX, } else return res; - VectorXd resE = Convolution(origE, kernel, factor); + VectorXd resE = Convolution(resampled, kernel, factor); - res.SetCount(numData-orderAcc); + int nnumData = int(resampled.size())-orderAcc; + res.SetCount(nnumData); int frame = orderAcc/2 + 1; - for (int i = 0; i < numData-orderAcc; ++i) { + for (int i = 0; i < nnumData; ++i) { res[i].y = resE(i); - res[i].x = data[i+frame].x; + res[i].x = from + (i+frame)*h; } return res; } @@ -864,56 +843,56 @@ bool SavitzkyGolay_Check(const VectorXd &coeff) { } Vector DataSource::SavitzkyGolay(Getdatafun getdataY, Getdatafun getdataX, int deg, int size, int der) { + Vector res; + int numData = int(GetCount()); - Vector data(numData); - int num = 0; + VectorXd xv(numData), yv(numData); for (int i = 0; i < numData; ++i) { - double y = Membercall(getdataY)(i); - double x = Membercall(getdataX)(i); - if (!IsNull(y) && !IsNull(x) && !(i > 0 && x == Membercall(getdataX)(i-1))) { - data[num].y = y; - data[num].x = x; - num++; - } + yv[i] = Membercall(getdataY)(i); + xv[i] = Membercall(getdataX)(i); } - numData = num; - - Vector res; - if (numData < size) - return res; - data.SetCount(numData); - - double minD = -DOUBLE_NULL_LIM, maxD = DOUBLE_NULL_LIM; - for (int i = 0; i < numData-1; ++i) { - double d = data[i+1].x - data[i].x; - minD = min(minD, d); - maxD = max(maxD, d); - } - if ((maxD - minD)/minD > 0.0001) - return res; - - double h = (minD + maxD)/2; - + + VectorXd resampled; + double h = Null, from; + Resample(xv, yv, h, resampled, from); + VectorXd coeff = SavitzkyGolay_Coeff(size/2, size/2, deg, der); if (!SavitzkyGolay_Check(coeff)) return res; - VectorXd origE(numData); - for (int i = 0; i < numData; ++i) - origE[i] = data[i].y; - - VectorXd resE = Convolution(origE, coeff, 1/pow(h, der)); + VectorXd resE = Convolution(resampled, coeff, 1/pow(h, der)); - res.SetCount(numData-size); + int nnumData = int(resampled.size())-size; + res.SetCount(nnumData); int frame = size/2; - for (int i = 0; i < numData-size; ++i) { + for (int i = 0; i < nnumData; ++i) { res[i].y = resE(i); - res[i].x = data[i+frame].x; + res[i].x = from + (i+frame)*h; } return res; } +double LinearInterpolate(double x, const VectorXd &vecx, const VectorXd &vecy) { + ASSERT(vecx.size() > 1); + ASSERT(vecx.size() == vecy.size()); + return LinearInterpolate(x, vecx.data(), vecy.data(), vecx.size()); +} + +void Resample(const VectorXd &sourcex, const VectorXd &sourcey, double &srate, VectorXd &ret, double &from) { + VectorXd x, y; + CleanNANDupSort(sourcex, sourcey, x, y); + + from = x[0]; + double delta = x[x.size()-1] - from; + if (IsNull(srate)) + srate = delta/(x.size()-1); + int len = int(delta/srate) + 1; + ret.resize(len); + for (int i = 0; i < len; ++i) + ret[i] = LinearInterpolate(from + i*srate, x, y); +} + void FilterFFT(VectorXd &data, double T, double fromT, double toT) { double samplingFrecuency = 1/T; @@ -941,37 +920,21 @@ Vector DataSource::FilterFFT(Getdatafun getdataY, Getdatafun getdataX, d int numData = int(GetCount()); VectorXd xv(numData), yv(numData); - int num = 0; for (int i = 0; i < numData; ++i) { - double y = Membercall(getdataY)(i); - double x = Membercall(getdataX)(i); - if (!IsNull(y) && !IsNull(x) && !(i > 0 && x == Membercall(getdataX)(i-1))) { - yv[num] = y; - xv[num] = x; - num++; - } + yv[i] = Membercall(getdataY)(i); + xv[i] = Membercall(getdataX)(i); } - numData = num; - yv.conservativeResize(num); - xv.conservativeResize(num); - - double minD = -DOUBLE_NULL_LIM, maxD = DOUBLE_NULL_LIM; - for (int i = 0; i < numData-1; ++i) { - double d = xv[i+1] - xv[i]; - minD = min(minD, d); - maxD = max(maxD, d); - } - if ((maxD - minD)/minD > 0.0001) - return res; - - double T = (minD + maxD)/2; - - Upp::FilterFFT(yv, T, fromT, toT); - - res.SetCount(numData); - for (int i = 0; i < numData; ++i) { - res[i].x = xv[i]; - res[i].y = yv[i]; + + VectorXd resampled; + double T = Null, from; + Resample(xv, yv, T, resampled, from); + + Upp::FilterFFT(resampled, T, fromT, toT); + int nnumData = int(resampled.size()); + res.SetCount(nnumData); + for (int i = 0; i < nnumData; ++i) { + res[i].x = from + i*T; + res[i].y = resampled[i]; } return res; } diff --git a/uppsrc/ScatterDraw/DataSource.h b/uppsrc/ScatterDraw/DataSource.h index 7a4ca8f0d..6a2933eca 100644 --- a/uppsrc/ScatterDraw/DataSource.h +++ b/uppsrc/ScatterDraw/DataSource.h @@ -796,10 +796,10 @@ T LinearInterpolate(const T x, const Point_ *vec, int len) { return vec[len-1].y; } -template -T LinearInterpolate(const T x, const Range &vec) { +template +typename Range::value_type LinearInterpolate(const typename Range::value_type x, const Range &vec) { ASSERT(vec.GetCount() > 1); - return LinearInterpolate(x, (const T *)vec, vec.GetCount()); + return LinearInterpolate(x, (const typename Range::value_type *)vec, vec.GetCount()); } template @@ -818,14 +818,14 @@ void GetInterpolatePos(const T x, const T *vecx, int len, int &x0, int &x1) { x0 = x1 = len-1; } -template -void GetInterpolatePos(const T x, const Range &vecx, int &x0, int &x1) { - ASSERT(vecx.GetCount() > 1); - GetInterpolatePos(x, (const T *)vecx, vecx.GetCount(), x0, x1); +template +void GetInterpolatePos(const typename Range::value_type x, const Range &vecx, int &x0, int &x1) { + ASSERT(vecx.size() > 1); + GetInterpolatePos(x, (const typename Range::value_type *)vecx, vecx.size(), x0, x1); } template -T LinearInterpolate(const T x, const T *vecx, const T *vecy, int len) { +T LinearInterpolate(const T x, const T *vecx, const T *vecy, size_t len) { ASSERT(len > 1); if (x < vecx[0]) return vecy[0]; @@ -836,13 +836,16 @@ T LinearInterpolate(const T x, const T *vecx, const T *vecy, int len) { return vecy[len-1]; } -template -T LinearInterpolate(const T x, const Range &vecx, const Range &vecy) { - ASSERT(vecx.GetCount() > 1); - ASSERT(vecx.GetCount() == vecy.GetCount()); - return LinearInterpolate(x, (const T *)vecx, (const T *)vecy, vecx.GetCount()); +template +typename Range::value_type LinearInterpolate(typename Range::value_type x, const Range &vecx, const Range &vecy) { + ASSERT(vecx.size() > 1); + ASSERT(vecx.size() == vecy.size()); + return LinearInterpolate(x, (const typename Range::value_type *)vecx, + (const typename Range::value_type *)vecy, vecx.size()); } +double LinearInterpolate(double x, const Eigen::VectorXd &vecx, const Eigen::VectorXd &vecy); + class TableInterpolate { public: enum Interpolate {NO, BILINEAR}; @@ -1028,39 +1031,76 @@ typename T::PlainObject Convolution2D(const Eigen::MatrixBase& orig, const Ei return dest; } -template -T HammingWindow(Range &data) { +template +typename Range::value_type HammingWindow(Range &data) { size_t numData = data.size(); - T numDataFact = 0; + typename Range::value_type numDataFact = 0; for (size_t i = 0; i < numData; ++i) { - T windowFact = 0.54 - 0.46*cos(2*M_PI*i/numData); + typename Range::value_type windowFact = 0.54 - 0.46*cos(2*M_PI*i/numData); numDataFact += windowFact; data[i] *= windowFact; } return numDataFact; } -template -T CosWindow(Range &data, int numOver) { +template +typename Range::value_type CosWindow(Range &data, int numOver) { size_t numData = data.size(); - T numDataFact = 0; + typename Range::value_type numDataFact = 0; for (size_t i = 0; i < numOver; ++i) { - T windowFact = 0.5*(1 - cos(M_PI*i/numOver)); + typename Range::value_type windowFact = 0.5*(1 - cos(M_PI*i/numOver)); numDataFact += windowFact; data[i] *= windowFact; } for (size_t i = numOver; i < numData - numOver; ++i) { - T windowFact = 1; // 1.004 + typename Range::value_type windowFact = 1; // 1.004 numDataFact += windowFact; } for (size_t i = numData - numOver; i < numData; ++i) { - T windowFact = 0.5*(1 + cos(M_PI*(numData - i - numOver)/numOver)); + typename Range::value_type windowFact = 0.5*(1 + cos(M_PI*(numData - i - numOver)/numOver)); numDataFact += windowFact; data[i] *= windowFact; } return numDataFact; } +template +void CleanNANDupSort(const Range1 &x, const Range1 &y, Range2 &retx, Range2 &rety) { + ASSERT(x.size() == y.size()); + Vector orderedSeries; + orderedSeries.Reserve(int(x.size())); + for (int i = 0; i < x.size(); ++i) { + if (!IsNull(x[i]) && IsFin(x[i]) && !IsNull(y[i]) && IsFin(y[i])) + orderedSeries << Pointf(x[i], y[i]); + } + PointfLess less; + Sort(orderedSeries, less); + + Vector num(orderedSeries.size(), 1); + double eps = (orderedSeries.Top().x - orderedSeries[0].x)/1000./orderedSeries.size(); + for (int i = orderedSeries.size()-1; i >= 1; --i) { + if (orderedSeries[i].x - orderedSeries[i-1].x < eps) { + num[i-1] += num[i]; + orderedSeries[i-1].y += orderedSeries[i].y; + orderedSeries.Remove(i); + num.Remove(i); + } + } + for (int i = 0; i < orderedSeries.size(); ++i) + orderedSeries[i].y /= num[i]; + + Resize(retx, orderedSeries.size()); + Resize(rety, orderedSeries.size()); + for (int i = 0; i < x.size(); ++i) { + retx[i] = orderedSeries[i].x; + rety[i] = orderedSeries[i].y; + } +} + +void Resample(const Eigen::VectorXd &sourcex, const Eigen::VectorXd &sourcey, double &srate, + Eigen::VectorXd &ret, double &from); +Vector FFTSimple(Eigen::VectorXd &data, double tSample, bool frequency, int type, + int window, int numOver); void FilterFFT(Eigen::VectorXd &data, double T, double fromT, double toT); } diff --git a/uppsrc/ScatterDraw/Equation.cpp b/uppsrc/ScatterDraw/Equation.cpp index a28dda976..5a39d2e77 100644 --- a/uppsrc/ScatterDraw/Equation.cpp +++ b/uppsrc/ScatterDraw/Equation.cpp @@ -336,6 +336,8 @@ doubleUnit EvalExpr::Term(CParserPP& p) { x.Neg(); return x; } else { + if (p.IsChar2('.', '.')) + p.ThrowError("missing number"); doubleUnit x = doubleUnit(p.ReadDouble()); if (isneg) x.Neg(); diff --git a/uppsrc/ScatterDraw/ScatterDraw.cpp b/uppsrc/ScatterDraw/ScatterDraw.cpp index da17c0b19..af350e851 100644 --- a/uppsrc/ScatterDraw/ScatterDraw.cpp +++ b/uppsrc/ScatterDraw/ScatterDraw.cpp @@ -203,6 +203,8 @@ void ScatterDraw::AdjustMajorUnitX() { void ScatterDraw::AdjustMajorUnitY() { if (yMajorUnit == 0 || IsNull(yMajorUnit)) return; + if (yMajorUnitNum == 0 || IsNull(yMajorUnitNum)) + return; while (yRange/yMajorUnit > 1.2*yMajorUnitNum) yMajorUnit *= 2; while (yRange/yMajorUnit < yMajorUnitNum/1.5) @@ -212,6 +214,8 @@ void ScatterDraw::AdjustMajorUnitY() { void ScatterDraw::AdjustMajorUnitY2() { if (yMajorUnit2 == 0 || IsNull(yMajorUnit2)) return; + if (yMajorUnitNum == 0 || IsNull(yMajorUnitNum)) + return; while (yRange2/yMajorUnit2 > 1.2*yMajorUnitNum) yMajorUnit2 *= 2; while (yRange2/yMajorUnit2 < yMajorUnitNum/1.5) @@ -242,7 +246,7 @@ ScatterDraw &ScatterDraw::SetRange(double rx, double ry, double ry2) { return *this; } -ScatterDraw &ScatterDraw::SetMajorUnits(double ux, double uy) { +ScatterDraw &ScatterDraw::SetMajorUnits(double ux, double uy, double uy2) { if (!IsNull(ux)) { xMajorUnit = ux; xMajorUnitNum = int(xRange/ux); @@ -250,10 +254,16 @@ ScatterDraw &ScatterDraw::SetMajorUnits(double ux, double uy) { } if (!IsNull(uy)) { yMajorUnit = uy; - yMajorUnit2 = yMajorUnit*yRange2/yRange; + yMajorUnit2 = uy*yRange2/yRange; yMajorUnitNum = int(yRange/uy); AdjustMinUnitY(); AdjustMinUnitY2(); + } else if (!IsNull(uy2)) { + yMajorUnit2 = uy2; + yMajorUnit = uy2*yRange/yRange2; + yMajorUnitNum = int(yRange/yMajorUnit); + AdjustMinUnitY(); + AdjustMinUnitY2(); } return *this; } @@ -1074,7 +1084,7 @@ void ScatterDraw::SetDataPrimaryY(int index, bool primary) { series[index].primaryY = primary; if (!primary) - SetDrawY2Reticle(true); + SetDrawY2Reticle(true).SetDrawY2ReticleNumbers(); Refresh(); } @@ -1110,6 +1120,13 @@ void ScatterDraw::SetDataSourceInternal() { series[i].SetDataSource_Internal(true); }*/ +bool ScatterDraw::ThereArePrimaryY() { + for (int i = 0; i < series.GetCount(); ++i) + if (series[i].primaryY) + return true; + return false; +} + bool ScatterDraw::ThereAreSecondaryY() { for (int i = 0; i < series.GetCount(); ++i) if (!series[i].primaryY) @@ -1209,9 +1226,10 @@ bool ScatterDraw::RemoveSeries(int index) { return true; } -void ScatterDraw::RemoveAllSeries() { +ScatterDraw& ScatterDraw::RemoveAllSeries() { series.Clear(); Refresh(); + return *this; } bool ScatterDraw::SwapSeries(int i1, int i2) { diff --git a/uppsrc/ScatterDraw/ScatterDraw.h b/uppsrc/ScatterDraw/ScatterDraw.h index 2ee7b5182..7302d779f 100644 --- a/uppsrc/ScatterDraw/ScatterDraw.h +++ b/uppsrc/ScatterDraw/ScatterDraw.h @@ -384,6 +384,16 @@ public: ScatterDraw& SetPlotAreaBottomMargin(int margin); int GetPlotAreaBottomMargin() {return vPlotBottom;} + ScatterDraw& SetMargin(int hLeft, int hRight, int vTop, int vBottom) {return SetPlotAreaMargin(hLeft, hRight, vTop, vBottom);} + ScatterDraw& SetLeftMargin(int margin) {return SetPlotAreaLeftMargin(margin);} + int GetLeftMargin() {return hPlotLeft;} + ScatterDraw& SetRightMargin(int margin) {return SetPlotAreaRightMargin(margin);} + int GetRightMargin() {return hPlotRight;} + ScatterDraw& SetTopMargin(int margin) {return SetPlotAreaTopMargin(margin);} + int GetTopMargin() {return vPlotTop;} + ScatterDraw& SetBottomMargin(int margin){return SetPlotAreaBottomMargin(margin);} + int GetBottomMargin() {return vPlotBottom;} + ScatterDraw& SetPlotAreaColor(const Color& p_a_color); Color& GetPlotAreaColor() {return plotAreaColor;} @@ -447,7 +457,7 @@ public: double GetXRange()const {return xRange;} double GetYRange()const {return yRange;} double GetY2Range()const {return yRange2;} - ScatterDraw &SetMajorUnits(double ux, double uy = Null); + ScatterDraw &SetMajorUnits(double ux, double uy = Null, double uy2 = Null); ScatterDraw &SetMajorUnitsNum(int nx, int ny = Null); double GetMajorUnitsX() {return xMajorUnit;} double GetMajorUnitsY() {return yMajorUnit;} @@ -720,7 +730,8 @@ public: ScatterDraw &SetDataSecondaryY(bool secondary = true); void SetRightY(int index) {SetDataSecondaryY(index);} ScatterDraw &SetRightY() {return SetDataSecondaryY();} - bool IsDataPrimaryY(int index); + bool IsDataPrimaryY(int index); + bool ThereArePrimaryY(); bool ThereAreSecondaryY(); void SetSequentialX(int index, bool sequential); @@ -734,7 +745,7 @@ public: ScatterDraw &ShowAll(bool show = true); bool RemoveSeries(int index); - void RemoveAllSeries(); + ScatterDraw &RemoveAllSeries(); bool SwapSeries(int i1, int i2); diff --git a/uppsrc/ScatterDraw/ScatterDraw.t b/uppsrc/ScatterDraw/ScatterDraw.t index 6ed3a6002..60b0c3008 100644 --- a/uppsrc/ScatterDraw/ScatterDraw.t +++ b/uppsrc/ScatterDraw/ScatterDraw.t @@ -165,11 +165,3 @@ esES("Unidades no encajan en resistencias en paralelo") euES("") frFR("") - -// Obsolete - -T_("Complex number") -caES("") -esES("N\303\272mero complejo") -euES("") -frFR("") diff --git a/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tpp b/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tpp index fb6540918..b516e8158 100644 --- a/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tpp +++ b/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tpp @@ -759,12 +759,13 @@ onst]&] [s3; Returns the secondary y axis range.&] [s1;%- &] [s6;%- &] -[s5;:ScatterDraw`:`:SetMajorUnits`(double`,double`):%- [_^ScatterDraw^ ScatterDraw]_`&[* S -etMajorUnits]([@(0.0.255) double]_[*@3 ux], [@(0.0.255) double]_[*@3 uy])&] -[s3; Sets the horizontal ([%-*@3 ux]) and vertical ([%-*@3 uy]) distance -between grid lines.&] +[s5;:Upp`:`:ScatterDraw`:`:SetMajorUnits`(double`,double`,double`):%- [_^Upp`:`:ScatterDraw^ S +catterDraw]_`&[* SetMajorUnits]([@(0.0.255) double]_[*@3 ux], [@(0.0.255) double]_[*@3 uy], + [@(0.0.255) double]_[*@3 uy2])&] +[s3; Sets the horizontal ([%-*@3 ux]), vertical ([%-*@3 uy]) or secondary +vertical ([%-*@3 uy2]) distance between grid lines.&] [s1; &] -[s6;%- &] +[s6; &] [s5;:ScatterDraw`:`:SetMajorUnitsNum`(int`,int`):%- [_^ScatterDraw^ ScatterDraw]_`&[* Set MajorUnitsNum]([@(0.0.255) int]_[*@3 nx], [@(0.0.255) int]_[*@3 ny])&] [s3; Sets the horizontal ([%-*@3 nx]) and vertical ([%-*@3 ny]) number @@ -1110,7 +1111,8 @@ nt]_[*@3 index])&] the series data.&] [s1; &] [s6;%- &] -[s5;:ScatterDraw`:`:RemoveAllSeries`(`):%- [@(0.0.255) void]_[* RemoveAllSeries]()&] +[s5;:ScatterDraw`:`:RemoveAllSeries`(`):%- [_^ScatterDraw^ ScatterDraw]_`&[* RemoveAllSer +ies]()&] [s3; Remove all data series from control. It does not delete the series data.&] [s1;%- &] diff --git a/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tppi b/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tppi index 03dba963d..006611f52 100644 --- a/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tppi +++ b/uppsrc/ScatterDraw/src.tpp/ScatterDraw_en-us.tppi @@ -532,60 +532,60 @@ COMPRESSED 5,167,207,32,97,187,52,168,70,39,83,77,178,120,35,130,16,60,30,114,250,40,39,252,184,241,119,29,17,95,81,88,189,233,99,105,76,10,242,13,237,200,174,102,20,79,221,229,40,195,39,92,93,43,151,153,11,93,175,231,86,64,72,191,101,168,168,184,134,61,10,128,112,94,223,6,247,30,50,91,101,183,209,78,137,66,211,206,67,141,93,98,70,43,233,116,145,251,208,30,26,225,130,200,12,221,54,25,163,85,131,114,223,119,238,174,146,65,79,83,230,159,128,128,250,150,76,216,179,13,88,192,81,190,109,5,209,39,221,108,21,71,66,5,74,106,236,168,74,135,251,25,66,175,123,191,9,13,7,223,118,156,178,14,130,31,176,87,145,193,90,170,122,78,245,148,30,105,228,108,105,206,113,111,90,96,197,225,117,241,41,51,190,223,209,69,60,142,112,71,143,243,146,50,115,90,19,220,53,229,250,80,95,136,78,226,141,215,138,235,120,225,125,78,149,155,38,216,126,241,165,239,58,50,134,242,102,80,238,139,135,248,58,111,181,7,174,44,105,73,238,58,246,88,85,84, 211,158,232,243,165,58,90,5,163,60,239,246,146,63,99,151,198,19,162,70,14,81,24,99,236,224,158,60,195,36,136,151,12,49,227,36,64,249,103,184,180,138,136,117,29,85,51,35,242,162,194,26,213,125,53,239,141,200,106,168,56,184,197,198,214,202,200,179,187,215,36,91,225,230,86,119,25,118,130,152,39,1,246,219,247,229,168,163,222,36,174,251,130,33,213,109,54,167,123,116,177,8,225,188,84,133,79,140,248,171,143,35,106,190,92,250,45,25,251,201,53,118,29,207,45,162,184,28,117,158,164,118,149,190,212,45,70,51,168,166,212,54,220,180,73,186,62,94,64,5,159,44,54,195,90,45,107,180,224,165,17,89,29,71,176,76,152,3,95,212,179,82,141,69,199,180,225,9,207,209,173,158,228,180,155,26,217,232,193,138,122,11,13,212,173,125,44,252,169,9,17,3,248,12,208,196,212,69,72,39,31,146,90,137,165,133,4,20,100,186,155,250,222,211,91,161,44,72,247,218,248,198,141,55,219,113,203,176,254,149,104,103,208,95,157,22,149,237,77,139,2,198,19,38,237,142, 160,89,145,60,76,121,52,123,187,37,114,136,226,76,180,6,82,184,176,203,233,62,174,167,133,12,131,250,208,88,110,108,137,39,163,195,172,166,85,134,145,88,60,205,96,177,222,240,201,109,23,166,161,106,248,62,194,222,93,61,60,32,248,90,190,68,141,131,27,133,11,57,207,117,149,22,114,144,182,64,74,239,89,104,202,45,240,217,209,97,60,26,178,19,110,104,160,91,41,187,253,243,241,58,20,101,174,170,80,45,229,182,77,222,87,71,113,30,122,145,56,81,147,243,57,59,243,232,254,34,93,242,24,70,161,219,3,232,132,20,67,117,125,79,50,22,1,79,172,195,221,85,173,151,42,78,109,209,252,243,216,169,81,78,114,38,168,217,89,164,252,115,177,201,75,248,232,77,115,164,107,166,138,108,239,80,174,6,206,211,253,172,186,207,219,113,85,7,195,127,228,132,105,150,219,152,189,202,146,183,182,205,31,49,19,29,98,204,35,239,20,172,74,225,141,48,215,216,32,13,57,135,169,163,122,95,137,215,10,53,9,179,116,209,125,70,142,32,118,197,100,174,227,103,242,218, -153,45,39,37,69,46,91,236,134,104,97,224,240,247,109,121,8,217,243,2,25,56,69,49,105,121,31,38,32,209,196,67,177,104,2,69,226,97,33,75,44,92,87,140,237,110,129,23,99,5,97,92,231,88,194,136,60,157,138,11,49,169,142,204,108,214,209,115,33,172,40,26,118,18,12,188,53,53,138,122,217,197,247,177,114,49,81,95,22,108,65,172,157,119,174,7,220,255,215,221,123,240,56,110,116,137,162,127,165,113,31,176,176,175,188,43,138,10,20,31,246,46,192,156,73,49,136,233,193,254,204,76,138,81,204,212,175,127,148,212,113,166,103,220,61,158,111,195,5,12,79,139,172,112,82,157,80,117,234,112,121,52,163,57,42,106,145,245,193,70,99,210,247,204,249,191,163,193,107,237,121,121,253,94,10,187,59,78,142,210,78,199,227,24,89,106,79,51,82,219,243,94,36,156,22,118,153,207,97,91,180,109,36,73,137,213,83,190,230,11,244,232,179,72,154,87,144,96,164,156,144,228,154,72,207,66,181,216,44,242,102,221,135,71,68,82,83,149,102,5,7,73,71,45,241,207, -132,215,8,86,38,167,9,215,23,41,38,88,167,221,97,181,152,156,158,245,152,138,40,14,51,223,138,69,37,114,201,113,37,177,45,177,178,29,82,143,136,96,108,47,74,121,209,151,174,65,4,187,133,166,85,78,15,46,39,47,38,156,181,30,65,117,91,195,170,163,147,244,218,226,43,10,112,99,110,102,53,70,144,8,106,218,234,102,153,50,132,34,230,107,21,8,219,101,186,181,40,132,36,50,9,239,56,18,61,16,233,145,68,136,243,153,213,85,20,59,212,118,179,11,43,201,196,247,43,141,69,10,138,216,72,136,236,40,91,122,183,66,116,87,165,224,147,190,28,179,35,109,186,75,118,2,87,144,190,197,157,146,117,226,48,219,83,80,209,158,215,188,219,134,161,105,206,193,91,187,91,3,9,23,192,42,162,28,199,105,109,215,198,168,193,197,193,234,200,0,2,129,173,184,246,181,181,27,128,149,12,159,135,108,87,59,4,19,80,64,51,52,151,182,152,180,12,238,193,186,207,215,178,218,224,227,236,63,56,165,75,172,131,133,118,134,251,124,1,40,106,143,159,70,220,36, -9,215,239,168,2,60,78,54,135,132,160,18,169,163,101,105,190,223,175,114,104,216,59,108,153,168,106,28,215,14,215,166,34,87,19,100,0,92,84,14,58,146,164,171,44,164,70,238,181,69,17,151,230,197,40,55,67,97,167,51,45,134,54,3,165,42,91,219,241,230,236,72,241,185,64,140,197,129,209,215,110,155,139,185,148,35,179,27,121,81,153,182,2,139,90,198,216,148,80,81,99,99,56,30,172,143,148,180,179,141,83,239,204,54,60,163,173,203,172,71,144,58,98,183,82,180,169,119,57,38,147,39,18,153,42,214,144,227,99,162,7,40,101,243,91,57,53,84,42,68,81,26,28,183,120,91,243,173,89,113,167,82,55,252,218,246,206,35,35,231,180,127,214,146,24,154,205,35,98,17,137,93,43,148,102,203,227,193,37,43,100,105,159,17,210,112,245,80,97,3,150,205,53,29,208,34,232,192,56,167,149,118,72,251,112,99,213,169,60,9,11,13,107,227,28,11,247,218,222,179,15,228,236,214,9,62,43,119,30,35,57,145,116,88,164,245,161,217,104,132,135,135,41,97,42,169, -208,201,177,41,102,23,155,27,66,213,96,135,174,182,241,146,35,36,24,146,72,238,188,175,2,33,76,234,170,159,164,184,150,10,59,247,65,90,182,195,92,88,207,97,200,104,87,40,190,190,236,231,152,45,129,67,137,130,12,125,212,19,100,54,91,97,159,37,110,235,237,47,194,6,9,160,112,146,198,58,199,220,10,141,78,211,5,114,114,84,236,102,151,204,183,160,157,87,59,225,122,185,17,132,250,182,231,130,31,2,21,46,118,218,136,187,197,98,227,82,167,250,68,88,227,126,57,205,230,201,0,74,151,99,250,83,159,172,131,101,233,140,187,53,154,140,69,122,4,13,205,220,184,171,182,177,45,49,41,250,57,250,162,87,117,35,66,193,80,57,206,121,167,157,201,102,11,237,79,60,24,23,244,194,178,54,210,78,165,231,200,60,131,78,103,162,173,87,120,186,174,77,38,128,220,245,200,174,146,101,9,130,20,18,167,167,158,239,27,6,234,58,2,151,118,82,145,153,142,180,168,134,236,168,151,219,89,79,239,97,151,205,82,139,112,61,165,194,169,96,114,150,147,229,227,115, -12,8,151,64,66,65,80,13,32,65,112,204,149,117,178,138,27,129,212,235,197,52,98,84,143,14,221,70,93,193,140,25,157,103,25,247,78,42,33,117,50,188,83,172,203,28,255,146,39,248,200,26,158,162,162,241,70,247,131,57,24,58,92,107,148,170,156,158,212,206,134,221,56,8,43,39,59,107,55,197,139,164,132,236,54,76,26,114,200,248,107,26,186,186,221,117,71,214,156,187,179,248,146,239,115,92,59,213,118,54,135,191,57,198,68,187,83,206,3,54,237,112,106,35,186,153,62,171,21,149,117,123,121,16,248,133,235,27,130,105,53,156,164,11,146,54,181,150,115,233,140,149,130,19,115,184,191,233,184,83,51,11,156,28,185,71,148,90,145,166,62,171,102,124,110,43,102,66,167,234,56,178,160,193,208,197,128,37,109,224,231,189,237,238,13,121,69,11,132,119,182,203,4,36,155,28,172,43,137,32,167,21,130,165,26,76,159,228,130,48,193,245,204,193,100,128,90,132,128,58,156,130,168,163,40,117,197,106,17,52,220,82,100,86,186,135,249,134,53,186,219,125,32,100,200,225, -52,148,1,110,122,70,74,42,169,159,237,206,6,111,121,211,46,116,69,121,125,88,135,102,205,55,150,219,73,113,147,203,86,111,103,224,42,105,244,163,69,164,97,179,246,152,122,11,244,68,51,114,71,61,167,56,243,108,7,210,174,19,208,144,240,132,78,215,233,1,60,48,123,170,102,200,186,145,74,99,109,108,44,120,25,246,245,158,10,195,157,215,59,236,138,247,76,68,198,13,56,88,167,231,67,122,209,107,19,87,214,176,217,58,126,235,99,92,208,56,27,241,116,114,166,67,192,175,20,200,91,101,43,112,175,111,169,182,247,118,114,81,164,22,14,72,59,209,59,81,221,176,139,151,161,146,54,205,105,246,233,215,120,207,239,86,195,153,22,189,125,86,4,155,57,50,49,121,199,175,49,218,63,174,37,211,90,167,144,19,20,243,90,128,91,181,48,25,114,19,182,231,222,236,41,106,91,149,128,42,239,93,108,220,164,237,181,184,181,37,159,198,188,80,170,12,6,32,23,139,23,5,147,0,237,80,185,71,51,215,240,198,60,159,20,79,152,32,212,137,141,56,193,5,35,242, -112,117,231,120,10,177,86,153,193,150,6,221,76,24,107,31,103,18,35,208,170,176,48,247,214,216,21,28,11,118,167,99,204,75,132,30,68,38,191,42,11,127,23,53,16,100,165,209,78,217,75,91,48,30,0,156,42,90,129,159,96,223,160,23,170,129,109,181,85,71,209,60,126,162,172,106,40,79,185,108,175,142,165,235,54,186,135,10,116,164,28,96,88,69,199,150,179,171,137,119,215,43,113,66,119,53,50,149,59,145,179,176,157,80,147,45,202,162,65,137,77,2,169,245,242,201,162,37,9,142,34,193,241,216,74,164,0,77,1,66,145,56,55,137,209,207,142,12,212,112,189,188,211,119,169,113,106,53,117,130,84,136,95,87,187,147,21,12,59,147,94,186,165,172,82,35,113,22,207,234,97,153,165,59,197,221,138,129,163,234,180,178,53,207,227,241,44,18,187,165,198,0,98,34,89,145,172,0,7,203,55,79,91,151,50,206,85,1,26,7,7,213,193,70,167,148,41,70,2,252,28,129,50,160,59,193,2,1,17,24,87,52,134,78,245,50,26,205,45,70,115,171,5,127,106,99, -46,107,40,121,199,204,46,124,231,69,60,170,28,214,40,127,230,118,26,50,199,114,224,182,174,154,13,177,189,212,54,37,30,197,0,220,7,179,43,42,194,184,4,197,62,125,68,6,9,95,156,20,169,190,32,39,57,211,93,6,64,247,88,84,148,117,161,133,52,70,247,66,19,133,174,230,213,194,70,104,76,201,218,81,67,133,67,155,69,97,224,236,178,221,175,166,93,85,131,11,87,22,131,61,233,79,23,47,93,93,101,54,63,110,243,254,228,111,173,96,234,27,147,222,234,135,97,65,85,234,90,243,211,99,182,236,221,154,6,128,203,130,159,221,55,83,135,130,40,106,33,96,80,194,182,222,240,97,41,109,142,188,79,118,240,14,70,187,203,236,95,168,98,182,162,40,108,11,137,32,166,240,141,185,117,245,122,221,94,184,133,229,218,113,190,26,54,22,3,79,236,216,231,212,218,138,123,96,5,186,13,105,57,251,221,174,135,186,205,201,150,178,98,85,168,52,53,107,234,180,204,193,92,239,153,57,238,247,140,21,134,68,145,184,91,36,155,147,50,128,240,28,126,195,242,38, -175,38,18,198,162,139,232,134,200,49,64,216,46,11,45,102,207,202,96,164,55,220,42,50,128,147,141,6,241,186,226,147,21,63,7,115,129,35,149,45,133,64,147,174,106,40,37,114,163,122,12,234,57,222,44,195,49,241,128,209,37,83,236,56,18,221,65,230,247,76,149,22,128,93,113,64,123,41,4,244,232,130,91,159,12,174,87,126,169,148,25,69,169,45,175,177,198,152,26,93,109,30,21,122,18,18,46,85,54,69,15,57,51,111,43,188,56,75,172,70,8,65,58,145,69,168,208,125,183,200,221,19,232,186,242,126,183,97,68,108,8,108,92,66,144,197,185,44,230,80,122,235,80,91,92,154,67,82,79,44,6,237,144,176,170,110,43,93,138,235,49,114,2,39,94,31,142,153,158,29,44,226,66,58,1,60,135,151,115,164,31,113,151,64,196,186,93,190,194,242,36,146,109,121,224,207,180,5,106,244,57,159,92,41,156,29,115,156,96,215,156,84,167,42,69,163,140,90,140,142,157,170,73,129,136,158,148,135,225,153,220,201,168,9,129,90,42,107,52,32,30,251,120,150,76,138, -116,110,244,152,120,94,60,241,46,153,128,20,71,178,126,166,109,18,114,246,249,107,38,2,100,191,71,236,67,104,201,50,202,160,48,143,37,101,228,83,60,161,30,33,227,148,225,116,230,206,65,137,67,193,41,45,195,85,54,22,253,58,208,224,189,69,39,182,64,48,60,62,36,135,164,85,57,151,214,102,151,234,40,96,33,157,76,204,121,20,103,131,105,9,39,221,19,43,208,239,219,67,186,218,105,185,158,144,58,173,130,126,218,174,16,173,94,41,153,114,12,9,208,30,99,28,75,106,217,160,215,110,234,16,6,132,119,224,106,227,17,150,119,246,101,14,213,224,242,18,239,139,195,102,213,4,243,114,26,230,53,29,32,35,5,112,25,123,212,67,228,220,1,62,134,41,171,38,79,143,11,103,202,1,1,58,69,91,88,53,251,78,51,48,61,139,54,4,80,212,161,139,199,112,71,159,101,247,212,236,67,193,83,202,4,174,46,16,192,214,34,175,150,42,92,125,117,142,37,156,176,125,58,59,179,21,52,194,250,58,53,137,147,189,81,183,148,81,156,98,119,12,175,31,75,2, -25,50,142,186,61,182,60,144,138,92,212,74,1,15,166,108,157,141,21,126,240,186,58,139,43,53,32,183,199,29,0,93,166,109,185,61,173,226,24,106,60,71,135,131,44,241,114,117,107,131,67,211,143,141,184,116,15,201,104,88,132,135,237,125,94,218,230,58,169,14,157,181,234,104,128,81,1,29,233,150,226,140,136,230,87,212,133,129,52,220,116,38,192,108,139,84,53,155,157,73,46,241,96,86,254,91,228,188,39,9,12,104,103,5,29,142,92,134,106,17,193,233,149,35,148,26,184,96,227,57,246,222,78,110,164,172,59,162,59,250,51,199,23,62,39,165,229,14,139,18,117,66,221,109,1,134,92,230,235,123,132,215,51,71,198,2,67,102,32,114,152,32,240,132,133,45,211,249,164,61,59,64,28,149,22,52,4,245,98,117,108,120,57,46,23,27,189,137,156,253,236,69,113,154,67,21,62,9,160,124,86,184,152,105,149,65,133,233,132,125,33,83,127,238,39,81,105,223,225,29,105,83,89,44,128,227,58,61,138,140,120,42,212,174,60,54,147,207,5,180,74,236,82,214,82,35, -55,212,214,81,35,69,133,163,212,139,213,144,205,81,61,202,37,142,90,185,70,225,17,71,254,132,34,125,81,249,228,86,104,234,35,121,104,9,76,0,21,36,10,90,230,108,89,1,196,80,41,90,28,1,102,118,215,188,216,195,6,41,205,167,22,11,11,212,199,212,74,3,32,111,177,196,42,213,196,123,255,212,26,142,181,178,247,235,45,11,0,67,118,113,54,195,10,140,90,10,69,174,188,107,142,3,171,200,85,115,214,188,60,31,209,138,63,166,59,64,90,219,205,37,102,91,254,71,207,56,101,78,177,3,166,72,227,203,98,191,149,174,239,230,8,184,59,56,59,95,149,14,104,192,250,49,197,111,247,148,231,64,39,115,191,8,15,49,228,50,240,114,44,221,173,125,24,46,169,68,111,177,186,174,183,195,117,215,57,142,81,44,142,151,156,7,56,129,84,166,138,219,32,246,206,31,148,109,122,62,249,41,190,88,6,75,117,43,131,49,114,246,103,111,4,225,21,84,216,196,76,134,59,46,163,136,82,117,32,166,138,0,120,179,2,35,7,64,114,147,46,129,61,189,219,184, -179,38,19,132,129,78,0,31,153,16,61,90,208,145,124,144,39,60,92,79,128,234,114,172,206,166,66,110,70,201,201,242,98,102,184,68,179,202,154,41,47,211,208,144,76,214,81,182,54,28,65,37,192,201,170,15,206,176,200,246,194,28,242,78,24,136,77,11,31,185,28,243,22,209,114,126,181,136,43,232,216,226,248,118,191,95,54,86,107,36,56,239,143,165,135,3,13,137,157,78,132,48,133,174,60,1,177,82,194,237,230,180,58,88,200,202,48,76,143,146,247,12,42,160,190,21,108,120,131,240,23,240,66,129,100,226,88,201,219,209,56,31,49,73,30,188,40,234,20,156,78,79,151,229,194,95,95,40,23,218,176,82,191,45,49,5,36,129,189,177,51,21,128,231,16,139,143,228,129,213,246,254,229,184,204,6,202,229,102,207,129,64,246,30,194,10,7,158,90,176,160,34,67,167,212,41,113,221,94,79,50,152,246,156,176,173,251,240,112,217,136,203,115,68,201,158,43,195,37,94,105,92,26,121,157,60,12,226,177,88,89,120,181,155,122,216,234,9,137,77,187,130,117,240,12,37, -52,88,64,246,14,207,140,213,97,229,77,21,66,153,165,187,95,30,210,98,215,233,135,4,139,153,26,229,240,97,175,200,194,232,79,77,55,29,75,31,101,64,160,217,152,250,116,212,78,202,102,77,144,154,81,217,237,105,131,115,41,98,7,113,60,66,181,35,206,81,151,87,69,7,95,101,206,28,5,155,41,85,29,212,41,117,29,211,227,43,164,221,9,246,137,201,46,86,2,23,148,183,63,99,104,170,174,27,15,92,44,84,110,96,184,16,85,142,165,60,86,27,202,100,75,125,205,198,50,235,92,42,192,51,215,50,229,29,130,158,55,32,131,134,233,4,57,108,47,18,203,245,53,208,132,248,198,69,247,237,130,231,168,61,63,91,61,173,234,43,253,180,244,141,3,191,8,97,104,214,158,88,173,157,150,133,11,79,124,147,201,195,197,62,119,26,22,145,3,191,190,88,151,138,9,200,94,213,156,206,139,97,190,223,14,93,153,52,118,223,158,11,2,0,119,43,109,14,62,168,254,68,7,14,152,6,92,187,144,2,54,181,224,241,24,109,50,74,239,69,151,56,39,140,41,231, -71,18,203,42,96,129,148,28,96,250,17,238,120,89,182,183,5,117,17,56,81,77,8,187,106,117,244,220,85,6,114,228,150,179,137,132,217,141,248,114,33,200,75,104,105,23,109,29,38,116,195,143,246,70,142,9,21,68,73,50,147,142,1,158,239,81,105,142,185,24,76,222,217,230,241,136,59,124,55,196,58,228,103,45,3,235,85,224,167,19,15,178,195,110,208,194,217,27,71,40,170,19,70,42,200,87,188,108,45,78,177,210,186,14,189,240,66,83,22,121,105,177,15,250,181,176,89,31,182,91,251,82,20,206,212,219,240,225,4,11,104,131,203,240,217,71,141,213,5,156,125,246,109,16,248,109,227,209,65,216,131,248,40,108,170,16,6,109,196,210,148,2,218,193,92,231,217,187,172,137,54,112,177,156,157,252,53,184,207,182,100,118,6,35,19,20,240,4,226,206,167,108,100,210,216,93,172,109,80,185,222,48,63,128,107,191,55,25,213,207,17,176,232,105,58,217,165,78,40,150,61,182,156,118,11,113,51,75,202,86,221,84,254,49,238,33,112,18,40,207,162,35,35,26,118,144, -151,3,113,2,171,222,238,178,226,53,58,149,185,100,112,46,33,149,187,155,69,215,46,243,125,172,13,181,120,108,19,154,188,244,117,107,245,59,201,72,183,77,220,171,38,75,153,58,35,211,102,116,192,49,139,180,211,224,144,93,216,89,159,74,208,110,181,118,96,255,176,202,169,114,118,157,226,209,92,156,40,205,30,22,54,167,237,143,250,168,218,245,65,186,126,19,6,4,219,3,95,64,16,11,24,43,97,45,243,20,173,80,153,98,231,85,23,25,2,48,237,118,11,78,206,130,83,17,36,6,16,5,86,122,90,35,234,222,244,92,190,1,183,198,41,193,15,233,152,86,7,81,119,68,137,92,106,5,70,93,138,252,24,215,33,138,10,64,183,22,189,5,54,135,220,0,142,167,203,101,48,82,233,236,172,120,196,118,118,250,164,0,106,229,89,113,147,157,150,175,35,107,166,9,18,74,92,42,195,69,177,243,69,180,212,141,197,128,7,189,219,90,67,178,88,46,201,236,132,41,172,60,235,32,44,87,9,94,84,69,146,220,136,57,147,87,22,94,172,23,124,196,129,7,205,220, -139,155,117,36,16,139,146,135,144,203,142,196,12,200,220,180,13,183,81,171,28,78,210,75,196,226,135,226,16,46,55,171,101,127,129,160,229,34,17,17,66,210,73,222,179,171,36,94,166,20,88,90,65,28,156,149,200,152,240,93,142,12,21,122,32,154,96,175,29,14,203,253,246,220,85,203,101,234,119,16,171,90,231,86,115,133,209,186,180,2,56,121,128,199,233,171,154,117,142,198,206,237,90,58,233,207,64,84,51,146,113,108,200,171,126,57,15,195,54,97,246,118,218,128,77,91,171,146,168,23,90,138,17,60,19,195,166,209,100,149,226,86,221,110,153,183,69,46,233,76,160,159,68,175,9,174,123,75,117,5,21,34,132,183,248,89,223,177,167,69,171,10,52,4,15,9,60,41,194,158,35,174,230,181,194,221,18,177,143,236,184,67,182,194,202,32,129,234,192,173,172,216,165,232,26,218,157,233,208,223,70,81,32,52,235,217,181,128,47,85,55,108,116,52,223,29,98,212,222,76,200,112,58,174,24,61,19,100,217,129,184,220,178,109,127,35,146,129,227,25,57,105,229,187,81,45, -143,58,179,217,196,92,11,147,121,8,21,179,115,35,86,135,35,108,99,236,142,95,3,186,228,42,24,152,110,171,5,192,53,92,237,30,195,205,104,164,152,109,74,168,199,2,19,138,20,253,160,38,189,65,199,236,42,185,152,182,206,102,70,195,1,150,182,76,246,41,70,147,70,202,112,196,28,67,250,236,42,162,58,58,236,1,79,54,187,53,138,144,84,166,89,88,134,110,55,43,139,141,4,202,31,1,67,72,100,10,68,40,82,162,32,51,2,25,149,106,125,97,144,186,131,129,145,219,240,130,204,17,227,28,204,178,160,203,152,124,138,226,50,216,144,109,143,172,57,126,246,124,215,174,173,120,91,176,129,219,110,189,132,66,254,0,249,233,200,47,58,131,158,164,50,10,56,248,92,117,140,102,116,253,232,13,195,176,95,22,204,185,23,22,181,177,100,69,91,7,205,2,20,35,12,220,46,220,99,187,93,175,151,107,106,230,131,225,118,4,66,108,53,40,159,29,211,11,186,197,186,108,182,14,202,73,173,143,68,87,37,26,39,138,72,53,107,185,97,88,46,49,151,92,119,238, -36,8,92,136,164,45,105,250,67,146,28,188,22,222,217,249,137,76,169,227,105,52,15,72,178,95,1,123,182,89,47,65,106,14,12,186,181,61,203,246,153,92,157,240,137,246,249,182,44,241,219,145,113,0,210,204,236,249,183,101,135,247,74,214,219,160,177,17,17,19,90,26,16,21,35,48,189,152,128,61,195,215,128,30,241,241,196,34,150,144,16,171,11,114,20,64,181,184,48,216,66,116,46,90,154,92,72,180,66,130,220,162,146,180,157,78,116,100,97,141,78,24,5,224,203,77,91,210,30,70,83,11,53,64,103,212,72,156,201,212,130,247,79,118,12,29,115,134,52,141,154,210,68,147,246,143,249,144,212,173,140,247,23,66,32,101,209,83,200,51,74,65,138,233,31,219,120,140,213,93,171,19,71,25,116,78,57,70,42,85,7,128,3,139,233,171,157,130,155,188,119,20,50,111,146,71,105,142,93,118,36,211,50,220,154,195,224,115,214,113,58,151,88,190,27,162,41,35,50,234,38,193,207,164,107,88,64,110,68,9,5,53,155,0,173,230,48,151,23,82,213,246,212,116,176,196, -125,220,93,36,162,140,189,142,239,84,158,164,105,223,240,14,200,54,229,39,96,168,229,51,230,234,42,33,210,157,124,217,138,168,187,179,210,18,183,213,173,89,87,44,149,198,202,200,161,184,22,82,98,191,137,149,8,154,189,169,131,45,147,167,177,97,155,38,8,114,145,97,242,44,131,206,74,41,84,166,76,2,7,131,20,151,27,118,207,158,1,162,118,132,104,213,159,38,18,226,60,90,57,5,35,156,5,120,9,99,152,72,5,92,100,108,118,9,156,163,72,215,50,120,52,17,253,2,204,34,88,222,147,179,134,59,70,137,212,166,189,174,71,173,164,88,9,26,0,231,11,56,208,248,24,148,206,158,31,163,3,63,130,253,108,31,3,107,179,149,143,179,225,2,167,8,78,101,168,22,189,11,82,80,186,9,54,210,185,229,248,134,81,153,22,182,248,32,42,219,139,237,23,70,164,65,150,189,108,16,174,53,249,157,162,173,176,0,1,41,150,221,17,43,108,44,106,111,116,101,111,14,82,247,138,35,155,14,178,218,251,251,194,46,149,240,180,95,83,103,138,102,20,91,142,180, -163,215,219,106,122,54,3,12,182,249,50,93,181,56,4,30,109,46,229,109,91,230,217,69,93,167,252,108,21,233,120,167,132,180,125,104,241,64,179,194,189,78,238,232,46,5,218,10,162,0,109,11,47,200,144,219,175,103,199,115,14,17,0,133,62,246,146,56,82,67,47,82,96,171,129,8,51,43,108,186,8,58,116,187,107,145,64,224,233,246,182,239,155,204,32,83,174,22,51,124,130,173,225,58,106,44,213,217,173,227,195,97,35,129,147,238,6,253,108,142,55,122,206,249,97,223,182,208,194,70,236,213,17,205,208,213,42,95,216,218,101,81,183,76,88,180,138,180,83,24,224,72,248,192,164,224,201,22,174,177,179,1,75,157,221,36,10,89,18,122,180,49,153,69,50,65,108,121,6,139,173,119,228,104,137,159,213,91,70,207,90,41,179,173,2,86,123,13,217,54,35,142,158,192,20,227,218,130,144,33,38,1,113,32,112,3,166,37,84,1,141,167,178,57,13,130,77,175,112,177,32,135,200,9,54,85,84,206,118,23,155,93,214,45,171,167,65,176,69,195,180,211,71,51,97,161, -57,194,192,141,46,8,1,111,125,196,37,206,142,140,245,33,89,35,48,78,14,234,148,237,179,105,60,248,147,188,15,2,60,241,38,116,183,3,73,225,146,28,207,83,167,28,121,227,208,229,250,206,208,211,213,81,68,140,108,59,243,17,168,199,148,219,245,134,92,32,249,245,138,56,14,244,172,229,114,27,220,203,77,123,141,140,54,65,152,23,9,49,13,130,183,206,181,147,52,83,101,24,188,35,87,220,62,61,203,48,19,179,24,120,8,248,140,93,31,44,235,88,196,198,168,91,6,177,221,234,158,194,109,8,202,29,162,90,114,89,169,141,45,84,61,108,207,64,184,214,176,244,34,73,75,132,29,13,174,77,79,18,211,32,105,111,34,146,206,49,92,61,109,44,169,201,147,140,170,152,141,213,20,81,29,171,206,52,92,48,148,52,78,133,176,33,106,158,83,122,223,172,197,93,201,163,70,89,43,24,150,192,129,99,103,90,81,104,151,205,126,55,241,187,118,113,22,32,16,177,21,27,41,69,141,97,207,168,144,203,59,172,155,208,147,74,42,48,139,148,181,141,99,201,202,119, -236,222,49,102,219,217,143,123,113,161,237,23,178,156,92,80,212,21,108,85,216,157,37,52,83,107,28,16,32,78,178,10,130,188,32,134,237,42,190,55,187,24,82,128,247,253,73,8,121,199,197,38,138,230,20,7,169,5,27,19,242,179,121,64,181,44,29,33,138,149,227,122,129,173,175,165,55,20,252,188,29,170,75,203,108,229,152,82,152,90,57,180,66,170,219,18,196,171,114,86,45,118,222,197,60,164,160,126,242,117,108,215,162,140,5,204,244,93,143,144,10,237,19,211,246,103,63,241,188,31,88,36,62,97,43,87,70,211,150,89,238,0,145,68,11,15,62,67,115,108,169,247,210,122,59,199,239,90,216,211,233,202,154,204,202,91,152,103,50,218,88,150,45,196,171,113,187,209,206,59,132,89,123,231,122,41,121,126,93,99,205,48,66,30,109,242,238,176,204,77,238,90,75,128,87,121,127,195,118,105,71,141,248,218,85,182,114,214,81,43,34,78,199,102,191,157,66,102,181,63,8,29,136,22,99,113,164,207,136,40,2,198,150,109,106,150,84,156,242,210,91,40,134,93,80,209, -203,182,219,217,207,23,251,248,114,112,103,193,63,249,190,98,31,60,122,25,228,129,212,196,121,112,150,81,219,142,78,67,116,28,104,83,245,169,148,204,42,104,163,120,231,21,10,86,39,138,196,91,230,216,59,219,222,141,212,164,179,231,24,117,5,142,43,28,239,57,110,15,157,52,123,9,76,54,215,12,108,218,47,113,100,98,29,4,246,133,157,50,4,51,88,51,87,175,159,29,172,168,220,90,151,189,60,180,68,187,153,99,124,167,14,43,18,178,102,55,169,57,203,153,113,42,139,150,55,78,110,160,42,171,146,173,43,29,62,159,0,107,35,86,248,105,152,236,243,186,80,71,164,246,113,145,203,50,5,129,34,87,105,29,245,236,103,104,50,185,146,75,54,22,158,195,45,182,231,216,213,106,55,172,10,208,205,13,89,42,143,59,202,145,249,51,72,128,72,158,186,65,23,120,113,164,182,43,105,170,168,85,135,239,207,178,28,39,83,167,154,150,195,246,211,52,165,155,150,88,143,91,41,153,173,93,52,187,60,132,113,169,112,54,91,156,15,140,236,179,217,25,17,156,57,98, -32,78,5,8,144,142,186,45,83,176,164,0,43,130,35,94,61,116,211,102,90,78,67,30,50,60,209,69,234,110,40,47,28,174,161,202,182,101,143,116,120,210,27,193,196,215,169,218,118,70,6,142,21,184,102,87,83,59,187,189,249,184,65,193,203,198,118,241,205,60,83,134,153,138,36,27,4,101,248,12,120,218,130,132,64,169,187,131,49,185,140,79,144,19,195,180,174,222,243,26,79,208,124,233,0,1,75,79,161,159,46,38,191,41,114,1,96,213,52,54,88,135,152,120,129,8,88,230,164,152,12,138,198,167,85,180,80,93,170,207,47,150,26,31,60,189,22,245,56,31,186,104,80,52,154,146,101,63,148,22,20,165,0,241,32,195,42,143,208,60,154,14,20,202,39,99,28,227,114,138,214,40,228,173,92,191,81,55,237,98,13,28,207,20,76,187,201,206,8,229,184,17,91,130,210,25,119,236,128,76,165,106,30,184,234,108,1,247,107,172,91,216,227,126,17,231,0,181,180,200,4,171,81,186,67,172,150,168,125,160,49,100,133,11,66,82,79,48,92,31,108,22,71,210,46,243, -243,86,6,74,152,197,93,173,150,233,99,105,19,246,198,45,66,198,110,28,100,31,157,35,5,10,200,13,36,93,20,165,93,159,10,121,205,155,140,221,210,251,152,85,185,132,76,28,202,90,79,82,196,48,6,59,107,41,175,17,180,179,63,141,27,194,32,216,75,54,200,128,184,63,229,72,52,158,241,209,113,124,192,191,32,202,172,133,201,225,64,105,151,253,137,145,99,116,49,225,27,154,69,69,150,244,25,106,237,206,252,2,7,199,107,143,197,153,152,208,72,133,182,179,203,145,103,46,104,73,74,219,103,50,106,157,214,42,199,118,18,188,210,132,161,8,211,132,98,33,30,129,226,90,230,77,16,68,59,98,183,65,80,21,6,48,17,159,202,60,219,108,153,82,94,177,184,138,149,99,75,238,12,208,28,21,142,195,204,253,198,40,203,208,142,34,138,57,152,154,148,22,149,29,1,52,126,204,42,81,165,52,173,33,249,35,141,92,178,29,133,99,196,206,46,99,98,2,81,166,166,18,107,99,97,142,210,171,25,59,28,65,16,159,93,243,89,254,57,166,227,88,9,204,52,192, -114,204,54,158,136,144,105,98,161,141,60,166,218,49,110,213,207,113,25,28,85,8,102,204,190,38,161,129,71,108,108,211,165,194,81,26,71,77,171,54,206,125,40,21,109,63,212,160,105,89,178,199,64,225,11,28,224,182,97,37,102,248,25,80,92,163,53,178,62,91,200,212,129,207,2,241,212,211,27,43,174,236,2,45,145,97,91,42,199,139,42,138,56,55,74,186,176,37,219,35,182,63,60,233,223,52,88,181,13,125,216,2,214,214,213,134,160,162,108,133,5,167,51,181,179,54,182,88,47,1,108,143,135,162,183,188,208,97,57,71,114,4,61,38,23,104,235,70,203,2,61,133,25,8,158,38,149,141,143,167,242,156,66,46,11,82,107,1,218,131,238,114,141,7,62,170,143,118,134,205,6,72,2,152,179,130,78,100,191,165,14,44,216,53,123,78,158,195,57,191,52,205,118,0,46,225,33,244,93,64,51,97,200,69,103,219,62,139,90,68,53,29,183,231,129,49,157,96,26,23,112,2,223,174,87,177,190,162,47,246,58,156,181,168,70,4,25,44,247,241,0,35,132,113,52,157, -224,154,215,208,98,163,159,199,172,80,103,209,200,134,174,115,112,52,63,70,75,66,152,67,159,8,77,147,42,63,193,144,113,89,51,52,150,47,22,129,165,74,235,245,14,198,250,34,148,143,211,22,227,181,201,5,164,177,203,138,89,247,74,0,98,52,219,250,2,238,119,28,34,178,199,50,171,172,229,160,103,67,170,96,17,36,216,100,79,9,162,115,214,224,189,23,46,79,25,39,30,152,180,62,70,202,228,119,81,191,161,13,81,17,215,73,109,249,205,113,227,121,68,90,13,29,177,69,15,199,214,154,108,172,175,23,145,90,251,163,66,165,82,2,9,174,136,180,107,75,199,14,173,131,20,66,180,115,0,72,150,16,20,244,153,109,121,20,129,214,186,32,196,104,136,71,75,58,240,158,214,73,26,27,145,251,33,242,5,13,173,38,236,100,105,251,149,238,23,71,229,96,71,104,9,251,60,56,155,151,146,59,164,157,220,158,44,203,226,185,51,188,216,135,161,35,91,32,150,241,148,201,70,34,180,111,86,135,83,195,92,144,212,205,89,210,53,77,18,56,49,135,77,227,158,195, -254,52,251,33,107,158,62,225,96,126,54,112,145,82,219,140,181,47,34,9,11,56,147,99,254,69,41,46,16,167,51,38,41,51,211,170,48,165,80,50,154,18,101,1,129,91,227,27,100,195,123,180,65,14,41,214,110,21,136,35,172,180,144,26,146,109,85,220,29,50,73,200,118,27,94,166,27,221,48,229,96,141,202,53,185,153,151,34,211,214,164,10,29,100,34,18,86,50,107,118,4,24,137,200,108,88,103,213,151,78,238,57,97,18,197,192,119,43,157,155,64,169,44,105,204,54,76,23,118,219,145,56,138,45,222,187,170,55,251,241,253,154,69,40,127,2,60,107,107,137,201,222,117,235,131,99,211,165,122,130,5,85,62,22,38,154,10,136,112,189,243,113,22,119,162,177,78,77,254,48,59,79,18,148,155,96,54,172,246,220,40,4,10,76,27,202,70,49,20,119,142,87,58,254,100,70,156,213,178,124,189,177,247,152,230,56,209,194,243,119,25,186,151,119,39,167,116,136,208,207,47,118,210,81,149,184,85,152,118,127,162,216,24,13,123,178,221,160,172,10,121,36,210,199,59,206, -31,79,113,33,129,23,97,23,132,166,183,220,56,158,42,167,10,144,25,76,170,159,96,81,87,155,38,170,164,21,96,213,135,166,52,174,158,99,105,233,36,208,243,129,207,48,126,106,161,141,23,80,82,39,123,162,125,72,48,132,157,253,104,28,62,251,135,126,91,102,203,96,187,118,69,205,75,22,65,218,154,176,127,52,5,127,181,26,71,112,105,207,211,92,252,99,173,194,65,28,175,156,229,214,14,215,0,21,64,8,169,116,105,207,156,114,241,28,147,43,21,38,3,144,144,18,247,68,74,135,109,103,121,202,150,220,87,227,2,237,192,162,2,131,75,185,209,36,34,142,154,147,199,168,93,221,44,244,170,219,245,235,243,136,130,101,238,174,25,204,58,82,80,205,239,7,237,180,199,245,104,48,152,56,159,32,134,218,108,103,5,189,247,64,164,75,228,186,95,196,169,76,130,216,14,56,30,86,156,85,7,86,176,56,105,204,246,232,237,232,158,156,29,151,227,6,180,188,68,102,253,232,36,159,104,235,194,161,129,209,178,120,24,91,186,59,106,62,113,38,243,122,149,114,212,172, -223,213,85,185,59,6,107,13,193,100,119,88,224,150,188,227,0,140,54,153,0,230,125,239,108,231,65,60,157,55,167,139,27,148,246,206,57,102,7,67,207,155,60,198,59,146,219,192,28,113,72,134,147,5,110,60,107,184,240,160,117,154,8,13,96,173,56,214,247,54,237,168,244,18,199,66,57,75,217,46,131,234,179,84,78,71,6,234,67,63,195,101,213,217,168,150,147,114,2,185,26,89,4,183,143,179,43,12,3,21,217,37,41,228,152,27,251,140,131,22,137,12,117,14,10,140,11,156,140,98,61,92,198,116,40,57,249,236,35,156,201,171,85,29,7,28,108,23,212,64,123,6,91,233,155,32,24,209,14,71,172,104,79,137,57,232,239,96,37,60,250,227,220,71,197,54,112,167,52,218,21,228,217,43,36,137,235,87,127,169,117,172,251,146,52,199,229,8,190,223,201,10,181,239,211,122,217,174,16,131,164,251,56,44,86,30,91,230,87,125,194,185,145,127,198,101,103,211,103,23,60,181,45,234,208,7,219,177,45,103,29,122,20,36,145,117,101,125,164,213,136,99,17,145,176,197, -181,70,224,74,120,9,245,37,45,70,4,159,211,105,192,153,116,207,216,66,84,83,202,70,106,102,107,172,53,190,43,65,195,37,223,238,99,108,216,97,6,180,202,107,67,169,6,162,210,1,110,109,174,120,158,74,145,209,108,97,185,52,134,163,137,110,27,152,225,206,102,212,0,70,159,184,33,197,184,251,18,0,249,166,187,200,130,17,162,155,253,126,67,41,28,44,9,203,253,58,39,26,1,56,28,34,170,10,98,88,54,58,254,56,105,69,139,232,216,210,66,64,198,2,117,95,161,106,156,151,12,15,79,39,202,45,138,13,37,83,1,69,151,77,139,108,136,19,188,74,4,209,195,117,25,90,130,17,218,82,66,234,73,137,16,169,212,102,31,15,235,102,238,6,129,215,227,125,0,18,215,221,249,220,224,166,69,214,80,158,102,241,98,60,57,9,61,40,213,54,191,192,166,219,247,98,14,7,126,51,129,93,39,130,253,193,62,93,106,192,221,30,157,109,165,148,231,181,187,132,203,107,77,43,72,29,33,131,242,153,203,101,18,226,137,246,169,68,187,128,218,22,12,246,132,32, -22,92,143,25,22,114,27,191,94,46,96,94,34,233,212,81,149,45,45,78,91,100,53,71,137,117,184,236,91,23,234,171,66,161,87,236,90,107,183,231,61,204,218,230,146,10,14,128,0,198,248,158,65,146,252,210,170,24,190,132,113,177,190,110,6,66,208,41,56,3,251,189,23,151,19,121,26,69,23,47,71,132,199,240,203,5,118,117,149,111,144,178,199,210,106,195,202,195,232,44,204,14,9,18,152,65,20,137,168,170,84,217,90,210,37,166,151,203,13,183,48,219,117,20,9,148,185,129,53,181,163,20,74,165,232,214,95,33,40,82,219,197,108,243,11,9,29,229,17,118,61,31,140,140,211,161,80,172,24,247,121,179,182,141,6,142,72,47,161,239,185,39,248,69,196,153,217,184,251,6,64,37,188,9,132,103,191,194,121,204,42,195,64,65,146,118,179,163,3,103,76,16,120,246,57,172,34,158,93,184,107,116,23,226,225,136,140,195,113,60,54,115,180,82,149,118,72,204,113,99,124,204,241,60,157,87,124,175,199,21,234,211,160,121,114,210,110,105,229,148,201,89,48,136,142,227, -69,183,87,27,178,182,147,104,148,247,170,23,20,4,183,19,42,46,178,51,90,163,181,85,25,93,118,179,150,196,123,37,193,101,131,31,26,210,160,20,158,34,232,57,234,227,231,192,216,147,98,0,117,16,145,167,220,82,170,143,192,153,216,215,28,234,132,251,233,160,116,80,200,165,136,68,177,166,12,107,134,132,52,233,118,131,76,7,50,18,74,97,246,32,86,145,56,175,33,131,237,221,106,142,41,128,246,80,203,12,21,57,70,129,241,62,144,145,39,116,81,175,147,178,208,204,57,160,68,252,131,43,167,26,33,236,119,64,70,24,147,197,168,45,175,237,0,12,205,243,172,90,158,14,210,154,225,252,37,185,28,188,133,125,4,26,110,54,204,182,12,132,148,32,76,107,157,80,17,47,60,219,11,89,51,150,64,60,251,129,21,15,18,214,121,118,2,52,139,218,156,90,101,58,71,0,182,66,55,7,17,20,36,121,117,158,29,196,45,236,31,178,214,22,218,29,193,88,222,78,133,99,132,80,88,25,18,87,226,49,109,118,43,58,89,131,233,1,118,119,199,120,84,160,51,12, -203,169,203,101,213,88,225,100,229,4,84,179,117,18,53,93,212,103,67,15,19,93,31,91,112,151,115,212,74,62,94,104,75,201,200,93,78,193,199,211,122,106,243,132,234,161,64,68,47,113,113,154,201,1,100,98,59,226,186,192,30,103,58,172,44,44,230,119,158,165,166,7,244,162,168,25,110,85,90,180,7,142,149,229,179,96,166,67,50,69,51,203,144,4,156,141,123,160,144,80,7,141,115,234,86,129,31,139,238,42,49,130,88,204,98,108,149,195,235,147,20,90,123,94,163,55,62,235,111,92,220,89,87,27,56,99,65,98,213,45,88,123,71,131,231,211,234,88,172,183,121,11,250,197,18,151,247,75,111,236,200,11,130,47,55,89,65,36,23,212,53,151,91,160,167,236,148,35,65,74,19,27,119,39,151,18,146,138,16,69,105,204,222,40,9,9,94,123,60,223,72,128,4,134,67,143,207,139,69,57,44,129,162,54,106,197,239,246,209,208,226,139,5,21,0,123,64,217,47,104,92,25,150,241,122,139,183,4,208,50,177,167,204,74,199,64,40,233,156,97,12,169,247,185,182,218, -47,249,68,41,107,85,241,107,51,138,112,86,243,134,198,179,221,11,235,108,72,207,46,81,78,221,181,182,58,49,23,106,132,139,86,90,233,99,45,205,237,131,69,65,113,3,80,86,64,176,63,233,212,196,50,43,187,153,144,182,178,86,122,27,142,17,174,142,101,47,172,156,32,4,149,61,181,133,100,87,200,213,46,54,224,170,243,61,204,112,73,121,216,99,44,117,238,198,148,1,177,89,147,154,51,59,172,145,145,18,60,88,84,136,161,172,160,202,49,2,40,99,252,131,3,70,138,176,26,208,173,26,100,69,59,168,200,122,35,13,124,170,111,23,232,172,213,181,221,5,241,199,178,195,89,71,54,184,35,173,21,64,166,55,226,94,200,55,171,35,24,119,56,172,157,53,121,81,180,43,127,106,28,227,42,115,184,32,169,144,15,45,122,161,148,228,129,41,142,23,148,199,119,161,134,156,213,43,90,151,93,200,212,188,56,44,188,179,104,184,20,177,41,242,116,21,142,57,202,83,16,69,43,32,206,12,65,157,36,132,223,116,18,155,90,203,163,157,15,190,116,32,226,184,7,130, -33,222,42,67,215,103,204,32,163,155,49,213,215,135,33,198,241,156,16,17,222,246,61,153,107,140,190,57,117,179,220,11,84,220,5,20,132,141,121,185,41,20,214,119,17,252,4,172,211,246,48,219,164,181,98,166,123,162,24,78,46,46,54,139,75,177,91,215,102,34,45,121,204,190,88,68,210,245,67,16,236,228,213,130,93,105,136,41,225,27,67,69,163,42,16,101,23,222,180,192,33,84,50,156,219,1,102,119,56,216,205,73,219,187,78,106,175,106,24,67,219,138,201,151,98,214,96,178,12,159,224,102,63,33,84,52,230,100,148,23,222,210,148,179,149,32,120,179,253,25,102,115,52,48,25,221,219,20,109,122,224,222,61,204,227,145,219,202,12,187,254,154,23,212,21,20,79,238,133,35,167,210,188,216,35,147,204,90,246,12,59,152,80,200,178,137,81,103,195,40,230,204,74,86,78,109,129,62,71,48,197,39,7,83,184,126,60,10,164,74,5,156,163,221,84,21,41,252,172,238,17,29,7,143,84,4,72,106,27,111,130,120,180,168,53,136,198,192,226,112,202,25,165,69,144,222, -12,176,24,162,216,11,90,86,114,204,232,27,207,240,73,168,44,143,209,236,234,18,0,136,80,201,101,63,155,127,13,205,206,101,83,112,179,39,211,87,92,205,216,8,236,21,122,52,162,208,134,84,250,94,91,3,182,60,196,142,2,192,36,123,105,173,197,18,193,27,71,150,54,58,86,6,81,56,6,244,9,230,22,44,169,138,154,232,172,148,253,28,66,148,62,167,150,201,2,213,245,114,151,18,167,218,22,153,202,131,11,177,84,86,116,12,237,210,67,232,229,205,172,215,208,129,173,182,96,8,65,18,116,12,102,108,119,96,237,108,2,2,58,197,232,171,156,162,45,172,58,237,87,57,31,100,2,213,169,52,238,206,124,91,132,52,96,74,138,175,250,117,194,167,161,13,228,104,16,246,46,199,166,138,53,52,67,136,34,109,67,46,59,83,89,206,42,254,160,247,32,67,174,156,105,141,247,155,242,172,103,177,102,218,151,235,87,192,51,208,223,110,125,64,24,161,33,218,174,37,159,91,244,216,37,84,39,197,6,163,244,182,119,233,46,187,217,153,37,124,204,83,120,105,219,153, -164,58,71,96,228,153,6,54,1,160,35,201,190,8,93,67,19,43,242,82,66,50,94,4,35,80,84,89,58,133,237,206,69,150,116,4,27,32,134,154,27,238,136,148,231,227,28,58,39,26,135,173,17,230,120,82,128,138,137,91,33,164,91,86,4,83,83,152,229,91,244,103,157,162,161,94,110,250,149,2,144,168,156,166,234,122,56,92,171,101,46,214,43,168,9,240,204,86,184,44,118,229,68,53,100,107,73,13,201,101,125,82,221,158,9,20,250,154,59,197,129,77,78,67,80,59,135,167,13,63,235,149,5,163,247,17,7,76,213,14,83,28,176,233,125,24,8,161,91,190,142,189,26,178,29,67,59,114,161,92,75,64,172,3,162,211,218,146,135,210,77,108,232,181,133,139,173,191,69,49,85,179,118,128,155,144,124,83,43,133,178,137,164,138,51,137,178,111,140,96,111,103,144,202,134,224,130,232,84,184,100,143,184,161,243,28,0,69,83,230,89,12,186,135,221,178,99,179,204,137,182,219,50,82,146,11,115,196,103,39,217,196,240,194,71,129,136,217,229,35,182,119,160,148,143,12, -114,149,230,74,5,109,178,3,59,52,46,89,28,250,225,124,204,6,104,109,65,122,158,139,70,40,46,84,95,20,88,15,188,209,135,87,34,153,226,178,214,37,5,236,120,228,92,46,93,179,85,35,59,234,245,102,44,222,130,174,176,81,93,21,248,104,238,16,18,173,151,56,212,146,192,128,252,159,15,86,128,60,22,217,173,50,206,123,21,194,158,107,11,61,53,122,169,17,118,127,210,60,52,179,22,12,154,15,151,255,66,124,127,14,182,194,63,127,121,44,97,136,59,173,163,150,93,237,5,183,199,63,86,218,231,113,208,91,93,159,119,199,253,227,225,237,239,231,34,134,205,245,199,19,74,243,48,247,18,88,32,126,123,225,120,193,115,41,168,107,187,143,23,110,188,206,33,36,133,253,92,189,233,7,75,238,61,141,243,157,162,78,189,147,189,45,194,248,84,113,234,90,48,204,185,227,147,39,69,146,119,249,107,188,236,107,131,15,215,162,162,94,163,244,231,175,183,202,144,95,202,202,11,84,15,212,107,200,127,253,199,215,69,37,223,169,51,247,151,48,126,168,200,225,109,90, -103,252,57,132,159,199,249,187,132,159,131,134,159,66,248,27,74,31,39,252,13,242,143,18,254,175,96,252,68,77,63,251,85,225,203,31,42,225,103,191,40,24,204,201,188,46,123,46,87,247,36,31,215,234,89,223,6,185,185,87,215,122,172,53,153,95,249,240,210,177,121,238,248,216,182,45,31,220,224,86,219,172,13,252,143,139,89,92,14,138,147,20,110,57,28,156,44,152,95,61,150,50,252,33,89,251,106,176,111,86,49,188,150,252,251,126,25,59,230,185,222,220,173,237,115,89,186,87,116,170,239,115,221,203,135,62,84,247,41,239,197,198,102,82,92,187,21,159,16,205,119,40,241,181,17,121,66,225,225,221,30,239,84,157,188,130,156,132,127,13,245,140,222,107,128,63,164,32,222,78,126,40,155,47,74,234,30,202,107,133,212,31,46,169,251,213,240,223,42,169,251,122,186,63,30,110,255,60,27,165,234,93,189,82,61,107,149,167,114,202,215,162,113,127,69,164,143,51,243,29,202,60,83,225,61,104,223,175,101,251,14,1,222,171,42,250,151,188,253,145,146,209,111,231,86,147, -75,240,5,115,111,143,126,18,111,175,99,253,5,115,175,77,230,129,175,13,159,253,141,203,91,222,62,175,215,203,51,119,175,237,255,153,156,189,211,229,75,214,190,130,245,35,140,189,99,255,67,156,109,230,174,159,225,234,213,54,168,237,148,5,230,159,191,60,255,253,215,60,188,81,252,225,77,255,223,95,250,63,106,212,235,159,55,149,170,73,127,254,3,35,174,149,128,191,170,87,108,222,171,54,62,49,234,214,229,86,175,56,241,159,109,206,99,213,226,245,75,193,226,151,1,255,223,155,117,187,42,43,239,90,54,183,14,252,171,221,121,85,105,245,241,249,191,125,49,2,169,72,194,159,255,64,17,149,248,246,8,230,67,89,39,81,242,81,149,253,154,26,214,223,164,166,245,99,212,180,254,27,83,211,250,52,53,21,167,136,130,175,74,180,254,157,98,198,79,131,126,199,241,172,199,239,85,112,173,167,223,231,97,30,254,252,63,15,98,151,125,89,239,248,139,150,224,155,166,95,241,234,85,133,226,95,30,25,54,207,253,235,111,207,53,94,95,30,79,191,255,250,232,121,205,108, -240,157,122,122,175,13,120,109,116,173,109,92,95,49,108,158,10,163,222,240,189,249,42,243,156,125,210,36,215,79,6,220,202,168,206,90,240,102,239,102,7,237,90,42,245,30,106,62,116,69,50,3,248,75,113,127,88,37,99,144,53,191,126,92,27,154,143,76,251,144,55,109,62,50,227,215,15,185,210,227,43,244,62,172,226,230,89,172,207,128,100,125,10,164,233,71,65,2,63,5,19,248,41,160,94,164,228,135,192,187,22,29,119,78,101,125,188,10,194,55,10,36,127,68,151,189,12,242,157,213,214,125,119,181,117,211,135,150,205,60,200,175,111,170,35,191,188,185,174,28,63,105,90,167,152,45,166,27,180,67,16,20,15,81,61,171,195,44,41,158,55,86,62,69,18,177,203,239,133,254,127,251,80,181,255,119,232,49,143,240,173,74,255,197,151,244,120,245,234,99,196,40,190,73,140,235,0,15,69,151,187,247,130,200,159,166,2,245,26,7,243,189,88,228,173,216,190,106,252,141,226,247,223,102,204,85,247,152,55,233,253,204,178,122,153,209,250,12,120,214,15,129,103,253,29,240, -192,79,193,7,254,16,128,47,122,224,147,160,94,133,53,41,126,112,253,127,227,235,22,143,227,253,52,85,240,186,16,248,220,243,38,241,47,139,254,177,4,127,61,7,39,230,237,213,157,2,175,9,148,149,51,208,215,48,111,166,84,29,204,203,228,110,248,194,122,246,94,110,223,3,41,135,121,157,100,65,216,206,154,182,46,102,159,231,186,1,240,88,79,252,213,196,47,245,215,175,243,206,115,92,45,231,163,157,253,237,33,105,31,130,98,246,216,111,219,44,78,251,228,132,149,110,59,123,239,179,111,228,248,254,245,243,15,243,32,77,231,54,109,237,120,237,245,247,27,117,241,203,175,79,221,158,54,18,30,135,127,50,241,215,141,137,63,218,178,74,188,153,123,203,63,151,175,217,185,108,106,239,237,147,127,4,197,159,255,218,53,127,254,63,95,115,157,154,201,195,95,169,99,254,241,240,230,231,195,239,87,52,127,238,28,214,219,57,172,135,223,175,117,237,175,223,137,185,109,61,4,237,111,119,151,229,145,98,225,205,29,127,98,228,76,208,42,152,105,213,7,217,116,39,203,149, -236,51,105,186,230,121,175,233,35,222,202,163,92,126,212,95,121,108,254,251,63,62,186,253,247,44,131,111,164,239,89,248,62,229,51,124,14,86,235,7,97,253,114,165,252,45,88,193,79,2,11,126,22,218,47,117,220,59,112,255,249,175,159,208,123,230,21,146,159,29,114,220,6,253,142,230,27,243,249,245,111,223,124,61,253,245,107,240,157,239,163,124,165,38,239,211,60,253,186,141,250,90,109,222,199,185,7,190,191,93,201,249,38,224,120,36,239,123,33,220,247,151,215,39,150,214,199,153,111,190,3,205,135,5,243,19,50,249,113,136,222,163,207,135,33,250,204,50,249,196,18,249,62,247,62,24,168,124,130,96,224,167,40,246,19,160,51,5,103,252,176,124,57,227,135,15,109,30,197,43,40,62,126,108,113,227,206,135,161,177,62,3,141,245,99,208,128,159,0,7,252,12,60,95,49,238,29,200,190,115,62,125,219,102,120,86,177,255,251,30,70,125,90,211,222,195,170,231,241,222,215,174,127,254,239,187,134,188,30,79,127,59,174,234,242,119,222,191,85,208,192,43,253,250,157,118, -126,144,181,142,249,220,118,245,246,236,219,121,40,130,225,105,155,165,105,203,250,254,145,175,39,245,123,5,226,225,119,236,193,169,107,103,122,163,184,159,32,124,24,102,223,51,184,241,224,117,167,63,255,63,224,207,223,31,126,55,239,174,210,213,121,122,82,248,192,93,193,127,17,41,126,21,54,188,30,236,247,39,135,235,101,152,71,172,158,188,205,183,173,99,231,233,160,239,5,35,231,161,10,234,220,41,130,162,125,113,179,253,174,190,121,182,47,60,156,205,116,120,251,218,150,115,77,132,120,200,131,188,156,101,170,170,203,153,160,249,71,131,210,119,37,234,173,108,253,84,89,26,191,35,43,159,18,183,79,136,198,125,206,55,182,250,254,228,81,88,154,119,165,229,11,126,125,115,144,255,70,28,124,60,45,209,131,235,135,172,254,252,247,71,54,254,199,159,255,242,231,111,223,126,245,3,236,253,199,31,247,113,254,120,184,255,251,251,191,191,195,206,255,120,58,85,122,102,249,231,186,77,63,141,205,243,175,175,166,158,159,61,252,251,245,255,95,67,112,125,245,31,255,131,217,143, -92,101,250,93,238,127,253,230,135,152,127,27,230,143,135,219,63,31,102,253,199,59,253,147,24,127,159,249,255,98,190,63,173,237,215,199,225,225,79,92,226,255,248,227,62,228,227,17,123,248,194,177,234,250,187,249,12,203,30,123,124,127,105,126,53,225,187,28,122,26,234,191,31,67,30,151,219,79,226,199,23,11,232,159,206,141,47,214,203,127,115,102,60,37,10,124,114,145,124,101,15,95,179,231,235,49,255,154,75,111,198,125,179,120,222,127,243,143,247,85,225,51,51,253,79,234,194,91,251,143,126,28,85,170,28,47,105,167,143,167,35,222,49,126,236,246,157,29,153,242,177,197,215,158,252,243,209,203,35,2,143,96,63,117,120,248,183,219,6,242,234,225,151,249,201,185,11,126,189,10,2,240,240,75,91,59,69,83,57,245,44,59,203,164,120,220,191,253,232,177,234,253,11,214,95,102,219,180,87,193,251,40,202,247,33,190,149,81,115,31,107,238,119,251,247,145,6,247,15,98,255,21,226,143,173,62,137,201,45,228,251,33,116,222,251,244,232,59,184,189,248,219,73,225,7,95, -158,44,252,32,230,111,81,126,8,95,182,254,239,147,188,205,214,254,240,151,205,95,127,54,252,35,64,126,239,51,231,223,167,194,119,190,123,254,55,145,121,60,44,122,143,165,63,198,231,187,216,190,115,102,244,23,188,235,238,7,122,159,226,119,119,63,163,188,46,246,63,255,215,159,255,235,91,18,255,120,64,244,114,8,241,124,202,124,159,243,126,236,106,190,243,206,252,253,163,75,253,145,142,223,92,31,63,153,152,127,107,153,252,51,72,253,158,8,254,167,16,126,94,65,79,231,218,159,91,141,143,203,239,233,156,251,179,203,239,17,234,23,20,255,158,70,121,58,252,254,113,28,172,207,227,96,253,29,28,222,119,124,238,218,236,122,48,248,69,246,247,199,124,154,151,238,223,204,247,118,191,159,236,253,232,201,21,193,171,212,168,71,85,121,253,20,245,53,131,250,149,106,240,203,224,126,240,123,75,166,186,31,48,255,34,150,135,249,215,71,5,144,105,110,105,122,143,172,123,119,211,246,57,213,251,177,237,95,112,234,3,187,185,143,185,224,111,249,53,179,242,105,103,16,184,173, -172,89,52,176,178,43,218,95,126,253,243,95,87,255,246,241,156,153,235,159,230,60,87,226,101,127,43,137,255,237,72,223,206,224,15,218,15,39,240,207,77,159,243,247,111,124,204,157,44,123,100,220,109,203,52,24,175,31,171,15,154,196,15,174,12,159,61,120,243,213,217,226,236,200,125,42,155,255,17,5,235,167,17,195,250,207,39,198,99,26,231,45,35,162,12,31,137,98,253,4,162,128,63,143,42,224,127,25,89,234,36,138,127,18,93,168,47,87,206,247,47,125,188,93,27,223,186,238,113,133,241,39,8,250,135,142,158,222,138,250,95,67,111,253,77,232,63,45,153,31,199,2,252,12,26,224,207,193,227,19,162,244,177,139,27,119,168,200,114,54,44,111,61,244,219,163,15,111,231,188,29,234,47,110,103,92,155,252,241,112,107,248,180,21,16,206,127,191,119,245,230,250,252,122,61,163,190,15,62,123,16,69,251,81,43,67,125,129,222,151,126,194,151,96,60,80,95,32,241,4,16,117,5,232,13,4,159,167,48,118,189,137,241,5,137,239,207,126,128,198,183,142,127,65,228,91, -155,63,30,238,77,159,200,236,149,239,223,156,188,62,127,77,230,219,189,145,79,147,249,17,199,47,233,252,53,36,15,212,151,168,188,75,234,27,20,159,32,245,117,243,250,80,39,185,83,79,143,110,238,111,175,172,198,123,151,171,191,232,244,153,0,232,149,225,168,238,221,63,106,60,158,154,63,25,144,223,222,143,108,174,215,36,102,166,206,186,247,241,162,132,27,92,183,25,239,157,159,247,200,202,107,26,97,215,4,205,139,154,123,78,238,189,37,118,94,39,14,157,172,9,222,52,188,235,145,47,91,22,243,187,235,180,78,243,85,139,155,158,153,223,93,147,16,123,167,253,112,34,221,87,108,249,152,29,127,150,248,111,179,231,29,6,124,132,214,153,51,47,64,199,247,3,255,103,19,250,101,242,143,209,251,83,4,84,159,18,43,62,39,217,47,221,126,80,182,159,19,58,158,137,43,85,85,217,220,9,245,5,127,126,249,245,85,192,240,210,241,135,228,252,37,145,228,125,6,252,36,1,254,22,191,222,225,239,15,179,235,7,36,254,91,108,251,103,49,230,163,139,226,127,42,87, -152,230,107,219,240,109,159,237,109,235,79,238,121,188,27,54,191,16,245,81,173,124,225,195,124,91,152,212,224,220,5,69,155,56,153,249,225,133,255,170,207,15,175,250,167,17,62,30,17,61,247,248,129,245,254,210,251,42,81,87,255,247,122,214,243,120,226,118,243,108,203,250,222,62,44,179,172,28,174,199,106,47,59,100,159,168,14,242,154,154,159,92,151,223,164,234,207,166,219,93,212,63,180,34,255,11,232,134,100,217,223,33,221,220,253,159,76,189,43,21,30,73,118,37,192,127,13,205,168,119,86,238,247,203,51,124,116,205,126,76,225,220,80,250,175,22,156,47,137,240,9,10,124,11,203,255,236,181,241,129,184,99,14,185,63,168,153,175,149,65,126,80,31,255,112,1,146,164,125,174,201,242,116,16,125,221,62,248,182,180,204,196,91,189,4,13,191,189,233,248,92,172,36,104,111,103,215,31,223,190,190,31,106,255,181,225,125,108,248,179,151,192,19,2,183,75,32,193,236,103,212,215,43,87,197,135,49,184,178,238,243,138,239,222,233,159,80,85,230,27,76,125,165,249,254,9, -92,84,130,188,236,131,167,148,147,239,51,242,117,219,143,242,242,218,227,59,44,188,229,78,60,86,26,152,49,107,95,206,85,252,32,11,218,224,205,145,203,220,239,83,88,205,108,122,66,236,59,11,248,139,182,175,181,212,13,248,103,29,243,247,64,126,71,231,188,127,16,166,14,78,245,154,31,191,125,159,41,47,205,191,201,146,213,55,83,147,19,240,101,227,104,30,231,189,116,143,185,247,155,100,227,185,203,199,13,5,147,59,209,59,197,81,110,143,255,120,184,253,243,100,40,238,63,222,189,245,218,220,199,189,31,181,57,215,253,211,123,215,15,107,115,230,77,198,197,231,14,26,152,111,31,186,125,59,97,100,126,245,84,108,225,149,89,123,37,69,31,213,177,254,103,46,158,127,14,250,119,108,211,135,113,251,158,90,254,132,116,124,43,17,230,17,142,155,88,252,64,130,203,28,124,126,207,24,126,238,80,230,154,110,241,34,192,143,79,254,120,120,252,227,245,105,192,245,231,187,242,251,84,73,229,177,209,7,111,206,92,175,48,161,211,189,126,214,219,116,183,111,95,121,122,108, -255,189,155,135,223,203,73,184,95,39,153,105,119,43,2,242,156,80,252,251,245,68,252,145,128,237,253,208,255,227,52,180,62,137,131,245,215,56,76,239,225,96,125,15,133,233,239,161,0,126,22,7,240,7,145,248,250,166,213,63,3,31,243,6,27,58,233,215,177,63,44,91,175,59,253,168,128,221,145,120,198,233,231,8,216,143,96,99,125,16,155,247,185,100,125,15,155,191,193,27,213,153,29,145,70,8,90,39,76,178,231,98,107,94,236,212,127,254,239,111,100,136,188,196,33,111,250,190,127,140,244,250,209,109,208,71,44,111,61,190,149,61,2,92,225,157,155,253,2,238,175,47,1,224,215,213,131,49,107,213,114,104,158,178,75,174,115,191,85,117,87,43,61,187,13,183,86,15,249,35,80,175,146,126,111,51,126,162,22,75,82,92,139,76,253,196,218,20,215,225,190,43,197,223,185,244,119,63,19,250,243,95,223,201,19,126,145,232,215,247,47,190,42,28,251,84,149,233,94,167,231,85,68,112,223,190,253,243,95,87,191,61,148,69,54,189,26,239,242,84,100,235,57,34,126,218, -84,37,206,221,28,13,223,247,135,103,204,110,149,131,126,249,104,18,210,173,238,196,248,83,137,123,31,238,191,128,184,79,197,72,255,105,196,117,198,207,19,247,145,33,63,81,116,255,170,158,217,255,24,217,253,168,116,254,92,2,62,142,247,127,131,124,126,136,128,228,28,128,232,73,48,124,120,111,252,125,186,61,15,243,179,51,173,30,145,45,139,224,190,139,119,189,115,51,135,124,245,53,27,241,110,97,159,182,54,252,25,186,226,223,30,180,155,5,126,54,187,183,83,168,123,207,167,134,87,106,207,38,169,158,99,196,167,29,148,215,187,132,79,185,142,237,80,62,150,187,123,62,159,42,238,231,89,115,39,55,137,110,157,110,91,50,87,126,222,121,80,220,131,225,219,219,217,172,37,217,111,119,0,202,234,118,57,200,155,99,83,199,243,130,108,158,252,90,155,115,54,134,69,52,99,247,218,54,214,65,88,7,77,252,113,15,231,21,7,191,191,217,250,138,71,223,218,77,123,110,114,187,240,228,94,201,48,99,248,153,44,169,91,98,232,123,144,188,138,218,110,109,222,15,134,94, -202,145,61,229,216,150,142,255,137,106,209,76,67,228,213,245,6,208,119,119,28,111,109,190,155,149,85,223,115,171,138,242,179,21,247,239,73,190,31,41,204,125,223,48,188,183,127,129,69,189,111,208,221,239,138,93,119,0,159,182,168,31,225,120,160,203,225,154,7,246,168,51,234,155,76,125,178,150,180,218,58,222,237,19,4,159,218,217,188,119,250,246,250,126,124,255,209,53,254,216,252,245,254,230,23,59,250,215,250,88,95,28,236,60,246,250,32,158,98,41,56,117,250,25,94,92,219,255,5,47,102,154,167,47,57,224,111,249,241,8,233,59,44,249,192,153,194,188,250,211,199,221,242,231,234,23,111,146,198,62,204,168,235,64,159,217,216,121,99,193,102,125,229,165,69,208,52,247,107,206,239,230,115,61,229,149,205,127,191,103,226,222,158,253,62,62,124,25,247,181,253,187,15,242,97,185,189,147,232,103,83,231,239,224,127,21,247,107,61,215,111,93,18,186,165,105,254,60,18,92,207,204,222,17,148,127,249,130,24,255,242,157,29,237,231,33,126,68,68,30,115,10,63,66,164,151, -244,195,87,98,66,253,44,49,185,45,169,223,127,255,255,1,66,177,202,132, +153,45,39,37,69,46,91,236,134,104,97,224,240,247,109,121,8,217,243,2,25,56,69,49,105,121,31,38,32,209,196,67,177,104,2,69,226,97,33,75,44,92,87,140,237,110,129,23,99,5,97,92,231,88,194,136,60,157,138,11,49,169,142,204,108,214,209,115,33,172,40,26,118,18,12,188,53,53,138,122,217,197,247,177,114,49,81,95,22,108,65,172,157,119,174,7,220,255,215,221,123,240,56,110,116,137,162,127,101,112,31,176,176,175,188,43,138,10,20,31,246,46,192,156,73,49,136,233,193,254,204,76,138,81,204,212,175,127,148,212,221,211,61,211,51,86,143,231,219,112,1,195,211,34,43,156,84,39,84,157,58,92,30,205,104,142,138,90,100,125,176,209,152,244,61,115,254,239,104,240,90,123,94,94,191,151,194,238,142,147,163,180,211,241,56,70,150,218,211,140,212,246,188,23,9,167,133,93,230,115,216,22,109,27,73,82,98,245,148,175,249,2,61,250,44,146,230,21,36,24,41,39,36,185,38,210,179,80,45,54,139,188,89,247,225,17,145,212,84,165,89,193,65,210,81,75, +252,51,225,53,130,149,201,105,194,245,69,138,9,214,105,119,88,45,38,167,103,61,166,34,138,195,204,183,98,81,137,92,114,92,73,108,75,172,108,135,212,35,34,24,219,139,82,94,244,165,107,16,193,110,161,105,149,211,131,203,201,139,9,103,173,71,80,221,214,176,234,232,36,189,182,248,138,2,220,152,155,89,141,17,36,130,154,182,186,89,166,12,161,136,249,90,5,194,118,153,110,45,10,33,137,76,194,59,142,68,15,68,122,36,17,226,124,102,117,21,197,14,181,221,236,194,74,50,241,253,74,99,145,130,34,54,18,34,59,202,150,222,173,16,221,85,41,248,164,47,199,236,72,155,238,146,157,192,21,164,111,113,167,100,157,56,204,246,20,84,180,231,53,239,182,97,104,154,115,240,214,238,214,64,194,5,176,138,40,199,113,90,219,181,49,106,112,113,176,58,50,128,64,96,43,174,125,109,237,6,96,37,195,231,33,219,213,14,193,4,20,208,12,205,165,45,38,45,131,123,176,238,243,181,172,54,248,56,251,15,78,233,18,235,96,161,157,225,62,95,0,138,218,227,167,17, +55,73,194,245,59,170,0,143,147,205,33,33,168,68,234,104,89,154,239,247,171,28,26,246,14,91,38,170,26,199,181,195,181,169,200,213,4,25,0,23,149,131,142,36,233,42,11,169,145,123,109,81,196,165,121,49,202,205,80,216,233,76,139,161,205,64,169,202,214,118,188,57,59,82,124,46,16,99,113,96,244,181,219,230,98,46,229,200,236,70,94,84,166,173,192,162,150,49,54,37,84,212,216,24,142,7,235,35,37,237,108,227,212,59,179,13,207,104,235,50,235,17,164,142,216,173,20,109,234,93,142,201,228,137,68,166,138,53,228,248,152,232,1,74,217,252,86,78,13,149,10,81,148,6,199,45,222,214,124,107,86,220,169,212,13,191,182,189,243,200,200,57,237,159,181,36,134,102,243,136,88,68,98,215,10,165,217,242,120,112,201,10,89,218,103,132,52,92,61,84,216,128,101,115,77,7,180,8,58,48,206,105,165,29,210,62,220,88,117,42,79,194,66,195,218,56,199,194,189,182,247,236,3,57,187,117,130,207,202,157,199,72,78,36,29,22,105,125,104,54,26,225,225,97,74,152, +74,42,116,114,108,138,217,197,230,134,80,53,216,161,171,109,188,228,8,9,134,36,146,59,239,171,64,8,147,186,234,39,41,174,165,194,206,125,144,150,237,48,23,214,115,24,50,218,21,138,175,47,251,57,102,75,224,80,162,32,67,31,245,4,153,205,86,216,103,137,219,122,251,139,176,65,2,40,156,164,177,206,49,183,66,163,211,116,129,156,28,21,187,217,37,243,45,104,231,213,78,184,94,110,4,161,190,237,185,224,135,64,133,139,157,54,226,110,177,216,184,212,169,62,17,214,184,95,78,179,121,50,128,210,229,152,254,212,39,235,96,89,58,227,110,141,38,99,145,30,65,67,51,55,238,170,109,108,75,76,138,126,142,190,232,85,221,136,80,48,84,142,115,222,105,103,178,217,66,251,19,15,198,5,189,176,172,141,180,83,233,57,50,207,160,211,153,104,235,21,158,174,107,147,9,32,119,61,178,171,100,89,130,32,133,196,233,169,231,251,134,129,186,142,192,165,157,84,100,166,35,45,170,33,59,234,229,118,214,211,123,216,101,179,212,34,92,79,169,112,42,152,156,229,100,249, +248,28,3,194,37,144,80,16,84,3,72,16,28,115,101,157,172,226,70,32,245,122,49,141,24,213,163,67,183,81,87,48,99,70,231,89,198,189,147,74,72,157,12,239,20,235,50,199,191,228,9,62,178,134,167,168,104,188,209,253,96,14,134,14,215,26,165,42,167,39,181,179,97,55,14,194,202,201,206,218,77,241,34,41,33,187,13,147,134,28,50,254,154,134,174,110,119,221,145,53,231,238,44,190,228,251,28,215,78,181,157,205,225,111,142,49,209,238,148,243,128,77,59,156,218,136,110,166,207,106,69,101,221,94,30,4,126,225,250,134,96,90,13,39,233,130,164,77,173,229,92,58,99,165,224,196,28,238,111,58,238,212,204,2,39,71,238,17,165,86,164,169,207,170,25,159,219,138,153,208,169,58,142,44,104,48,116,49,96,73,27,248,121,111,187,123,67,94,209,2,225,157,237,50,1,201,38,7,235,74,34,200,105,133,96,169,6,211,39,185,32,76,112,61,115,48,25,160,22,33,160,14,167,32,234,40,74,93,177,90,4,13,183,20,153,149,238,97,190,97,141,238,118,31,8,25, +114,56,13,101,128,155,158,145,146,74,234,103,187,179,193,91,222,180,11,93,81,94,31,214,161,89,243,141,229,118,82,220,228,178,213,219,25,184,74,26,253,104,17,105,216,172,61,166,222,2,61,209,140,220,81,207,41,206,60,219,129,180,235,4,52,36,60,161,211,117,122,0,15,204,158,170,25,178,110,164,210,88,27,27,11,94,134,125,189,167,194,112,231,245,14,187,226,61,19,145,113,3,14,214,233,249,144,94,244,218,196,149,53,108,182,142,223,250,24,23,52,206,70,60,157,156,233,16,240,43,5,242,86,217,10,220,235,91,170,237,189,157,92,20,169,133,3,210,78,244,78,84,55,236,226,101,168,164,77,115,154,125,250,53,222,243,187,213,112,166,69,111,159,21,193,102,142,76,76,222,241,107,140,246,143,107,201,180,214,41,228,4,197,188,22,224,86,45,76,134,220,132,237,185,55,123,138,218,86,37,160,202,123,23,27,55,105,123,45,110,109,201,167,49,47,148,42,131,1,200,197,226,69,193,36,64,59,84,238,209,204,53,188,49,207,39,197,19,38,8,117,98,35,78,112,193, +136,60,92,221,57,158,66,172,85,102,176,165,65,55,19,198,218,199,153,196,8,180,42,44,204,189,53,118,5,199,130,221,233,24,243,18,161,7,145,201,175,202,194,223,69,13,4,89,105,180,83,246,210,22,140,7,0,167,138,86,224,39,216,55,232,133,106,96,91,109,213,81,52,143,159,40,171,26,202,83,46,219,171,99,233,186,141,238,161,2,29,41,7,24,86,209,177,229,236,106,226,221,245,74,156,208,93,141,76,229,78,228,44,108,39,212,100,139,178,104,80,98,147,64,106,189,124,178,104,73,130,163,72,112,60,182,18,41,64,83,128,80,36,206,77,98,244,179,35,3,53,92,47,239,244,93,106,156,90,77,157,32,21,226,215,213,238,100,5,195,206,164,151,110,41,171,212,72,156,197,179,122,88,102,233,78,113,183,98,224,168,58,173,108,205,243,120,60,139,196,110,169,49,128,152,72,86,36,43,192,193,242,205,211,214,165,140,115,85,128,198,193,65,117,176,209,41,101,138,145,0,63,71,160,12,232,78,176,64,64,4,198,21,141,161,83,189,140,70,115,139,209,220,106,193,159, +218,152,203,26,74,222,49,179,11,223,121,17,143,42,135,53,202,159,185,157,134,204,177,28,184,173,171,102,67,108,47,181,77,137,71,49,0,247,193,236,138,138,48,46,65,177,79,31,145,65,194,23,39,69,170,47,200,73,206,116,151,1,208,61,22,21,101,93,104,33,141,209,189,208,68,161,171,121,181,176,17,26,83,178,118,212,80,225,208,102,81,24,56,187,108,247,171,105,87,213,224,194,149,197,96,79,250,211,197,75,87,87,153,205,143,219,188,63,249,91,43,152,250,198,164,183,250,97,88,80,149,186,214,252,244,152,45,123,183,166,1,224,178,224,103,247,205,212,161,32,138,90,8,24,148,176,173,55,124,88,74,155,35,239,147,29,188,131,209,238,50,251,23,170,152,173,40,10,219,66,34,136,41,124,99,110,93,189,94,183,23,110,97,185,118,156,175,134,141,197,192,19,59,246,57,181,182,226,30,88,129,110,67,90,206,126,183,235,161,110,115,178,165,172,88,21,42,77,205,154,58,45,115,48,215,123,102,142,251,61,99,133,33,81,36,238,22,201,230,164,12,32,60,135,223,176, +188,201,171,137,132,177,232,34,186,33,114,12,16,182,203,66,139,217,179,50,24,233,13,183,138,12,224,100,163,65,188,174,248,100,197,207,193,92,224,72,101,75,33,208,164,171,26,74,137,220,168,30,131,122,142,55,203,112,76,60,96,116,201,20,59,142,68,119,144,249,61,83,165,5,96,87,28,208,94,10,1,61,186,224,214,39,131,235,149,95,42,101,70,81,106,203,107,172,49,166,70,87,155,71,133,158,132,132,75,149,77,209,67,206,204,219,10,47,206,18,171,17,66,144,78,100,17,42,116,223,45,114,247,4,186,174,188,223,109,24,17,27,2,27,151,16,100,113,46,139,57,148,222,58,212,22,151,230,144,212,19,139,65,59,36,172,170,219,74,151,226,122,140,156,192,137,215,135,99,166,103,7,139,184,144,78,0,207,225,229,28,233,71,220,37,16,177,110,151,175,176,60,137,100,91,30,248,51,109,129,26,125,206,39,87,10,103,199,28,39,216,53,39,213,169,74,209,40,163,22,163,99,167,106,82,32,162,39,229,97,120,38,119,50,106,66,160,150,202,26,13,136,199,62,158,37, +147,34,157,27,61,38,158,23,79,188,75,38,32,197,145,172,159,105,155,132,156,125,254,154,137,0,217,239,17,251,16,90,178,140,50,40,204,99,73,25,249,20,79,168,71,200,56,101,56,157,185,115,80,226,80,112,74,203,112,149,141,69,191,14,52,120,111,209,137,45,16,12,143,15,201,33,105,85,206,165,181,217,165,58,10,88,72,39,19,115,30,197,217,96,90,194,73,247,196,10,244,251,246,144,174,118,90,174,39,164,78,171,160,159,182,43,68,171,87,74,166,28,67,2,180,199,24,199,146,90,54,232,181,155,58,132,1,225,29,184,218,120,132,229,157,125,153,67,53,184,188,196,251,226,176,89,53,193,188,156,134,121,77,7,200,72,1,92,198,30,245,16,57,119,128,143,97,202,170,201,211,227,194,153,114,64,128,78,209,22,86,205,190,211,12,76,207,162,13,1,20,117,232,226,49,220,209,103,217,61,53,251,80,240,148,50,129,171,11,4,176,181,200,171,165,10,87,95,157,99,9,39,108,159,206,206,108,5,141,176,190,78,77,226,100,111,212,45,101,20,167,216,29,195,235,199, +146,64,134,140,163,110,143,45,15,164,34,23,181,82,192,131,41,91,103,99,133,31,188,174,206,226,74,13,200,237,113,7,64,151,105,91,110,79,171,56,134,26,207,209,225,32,75,188,92,221,218,224,208,244,99,35,46,221,67,50,26,22,225,97,123,159,151,182,185,78,170,67,103,173,58,26,96,84,64,71,186,165,56,35,162,249,21,117,97,32,13,55,157,9,48,219,34,85,205,102,103,146,75,60,152,149,255,22,57,239,73,2,3,218,89,65,135,35,151,161,90,68,112,122,229,8,165,6,46,216,120,142,189,183,147,27,41,235,142,232,142,254,204,241,133,207,73,105,185,195,162,68,157,80,119,91,128,33,151,249,250,30,225,245,204,145,177,192,144,25,136,28,38,8,60,97,97,203,116,62,105,207,14,16,71,165,5,13,65,189,88,29,27,94,142,203,197,70,111,34,103,63,123,81,156,230,80,133,79,2,40,159,21,46,102,90,101,80,97,58,97,95,200,212,159,251,73,84,218,119,120,71,218,84,22,11,224,184,78,143,34,35,158,10,181,43,143,205,228,115,1,173,18,187,148,181, +212,200,13,181,117,212,72,81,225,40,245,98,53,100,115,84,143,114,137,163,86,174,81,120,196,145,63,161,72,95,84,62,185,21,154,250,72,30,90,2,19,64,5,137,130,150,57,91,86,0,49,84,138,22,71,128,153,221,53,47,246,176,65,74,243,169,197,194,2,245,49,181,210,0,200,91,44,177,74,53,241,222,63,181,134,99,173,236,253,122,203,2,192,144,93,156,205,176,2,163,150,66,145,43,239,154,227,192,42,114,213,156,53,47,207,71,180,226,143,233,14,144,214,118,115,137,217,150,255,209,51,78,153,83,236,128,41,210,248,178,216,111,165,235,187,57,2,238,14,206,206,87,165,3,26,176,126,76,241,219,61,229,57,208,201,220,47,194,67,12,185,12,188,28,75,119,107,31,134,75,42,209,91,172,174,235,237,112,221,117,142,99,20,139,227,37,231,1,78,32,149,169,226,54,136,189,243,7,101,155,158,79,126,138,47,150,193,82,221,202,96,140,156,253,217,27,65,120,5,21,54,49,147,225,142,203,40,162,84,29,136,169,34,0,222,172,192,200,1,144,220,164,75,96,79,239, +54,238,172,201,4,97,160,19,192,71,38,68,143,22,116,36,31,228,9,15,215,19,160,186,28,171,179,169,144,155,81,114,178,188,152,25,46,209,172,178,102,202,203,52,52,36,147,117,148,173,13,71,80,9,112,178,234,131,51,44,178,189,48,135,188,19,6,98,211,194,71,46,199,188,69,180,156,95,45,226,10,58,182,56,190,221,239,151,141,213,26,9,206,251,99,233,225,64,67,98,167,19,33,76,161,43,79,64,172,148,112,187,57,173,14,22,178,50,12,211,163,228,61,131,10,168,111,5,27,222,32,252,5,188,80,32,153,56,86,242,118,52,206,71,76,146,7,47,138,58,5,167,211,211,101,185,240,215,23,202,133,54,172,212,111,75,76,1,73,96,111,236,76,5,224,57,196,226,35,121,96,181,189,127,57,46,179,129,114,185,217,115,32,144,189,135,176,194,129,167,22,44,168,200,208,41,117,74,92,183,215,147,12,166,61,39,108,235,62,60,92,54,226,242,28,81,178,231,202,112,137,87,26,151,70,94,39,15,131,120,44,86,22,94,237,166,30,182,122,66,98,211,174,96,29,60, +67,9,13,22,144,189,195,51,99,117,88,121,83,133,80,102,233,238,151,135,180,216,117,250,33,193,98,166,70,57,124,216,43,178,48,250,83,211,77,199,210,71,25,16,104,54,166,62,29,181,147,178,89,19,164,102,84,118,123,218,224,92,138,216,65,28,143,80,237,136,115,212,229,85,209,193,87,153,51,71,193,102,74,85,7,117,74,93,199,244,248,10,105,119,130,125,98,178,139,149,192,5,229,237,207,24,154,170,235,198,3,23,11,149,27,24,46,68,149,99,41,143,213,134,50,217,82,95,179,177,204,58,151,10,240,204,181,76,121,135,160,231,13,200,160,97,58,65,14,219,139,196,114,125,13,52,33,190,113,209,125,187,224,57,106,207,207,86,79,171,250,74,63,45,125,227,192,47,66,24,154,181,39,86,107,167,101,225,194,19,223,100,242,112,177,207,157,134,69,228,192,175,47,214,165,98,2,178,87,53,167,243,98,152,239,183,67,87,38,141,221,183,231,130,0,192,221,74,155,131,15,170,63,209,129,3,166,1,215,46,164,128,77,45,120,60,70,155,140,210,123,209,37,206,9,99, +202,249,145,196,178,10,88,32,37,7,152,126,132,59,94,150,237,109,65,93,4,78,84,19,194,174,90,29,61,119,149,129,28,185,229,108,34,97,118,35,190,92,8,242,18,90,218,69,91,135,9,221,240,163,189,145,99,66,5,81,146,204,164,99,128,231,123,84,154,99,46,6,147,119,182,121,60,226,14,223,13,177,14,249,89,203,192,122,21,248,233,196,131,236,176,27,180,112,246,198,17,138,234,132,145,10,242,21,47,91,139,83,172,180,174,67,47,188,208,148,69,94,90,236,131,126,45,108,214,135,237,214,190,20,133,51,245,54,124,56,193,2,218,224,50,124,246,81,99,117,1,103,159,125,27,4,126,219,120,116,16,246,32,62,10,155,42,132,65,27,177,52,165,128,118,48,215,121,246,46,107,162,13,92,44,103,39,127,13,238,179,45,153,157,193,200,4,5,60,129,184,243,41,27,153,52,118,23,107,27,84,174,55,204,15,224,218,239,77,70,245,115,4,44,122,154,78,118,169,19,138,101,143,45,167,221,66,220,204,146,178,85,55,149,127,140,123,8,156,4,202,179,232,200,136,134, +29,228,229,64,156,192,170,183,187,172,120,141,78,101,46,25,156,75,72,229,238,102,209,181,203,124,31,107,67,45,30,219,132,38,47,125,221,90,253,78,50,210,109,19,247,170,201,82,166,206,200,180,25,29,112,204,34,237,52,56,100,23,118,214,167,18,180,91,173,29,216,63,172,114,170,156,93,167,120,52,23,39,74,179,135,133,205,105,251,163,62,170,118,125,144,174,223,132,1,193,246,192,23,16,196,2,198,74,88,203,60,69,43,84,166,216,121,213,69,134,0,76,187,221,130,147,179,224,84,4,137,1,68,129,149,158,214,136,186,55,61,151,111,192,173,113,74,240,67,58,166,213,65,212,29,81,34,151,90,129,81,151,34,63,198,117,136,162,2,208,173,69,111,129,205,33,55,128,227,233,114,25,140,84,58,59,43,30,177,157,157,62,41,128,90,121,86,220,100,167,229,235,200,154,105,130,132,18,151,202,112,81,236,124,17,45,117,99,49,224,65,239,182,214,144,44,150,75,50,59,97,10,43,207,58,8,203,85,130,23,85,145,36,55,98,206,228,149,133,23,235,5,31,113,224,65, +51,247,226,102,29,9,196,162,228,33,228,178,35,49,3,50,55,109,195,109,212,42,135,147,244,18,177,248,161,56,132,203,205,106,217,95,32,104,185,72,68,132,144,116,146,247,236,42,137,151,41,5,150,86,16,7,103,37,50,38,124,151,35,67,133,30,136,38,216,107,135,195,114,191,61,119,213,114,153,250,29,196,170,214,185,213,92,97,180,46,173,0,78,30,224,113,250,170,102,157,163,177,115,187,150,78,250,51,16,213,140,100,28,27,242,170,95,206,195,176,77,152,189,157,54,96,211,214,170,36,234,133,150,98,4,207,196,176,105,52,89,165,184,85,183,91,230,109,145,75,58,19,232,39,209,107,130,235,222,82,93,65,133,8,225,45,126,214,119,236,105,209,170,2,13,193,67,2,79,138,176,231,136,171,121,173,112,183,68,236,35,59,238,144,173,176,50,72,160,58,112,43,43,118,41,186,134,118,103,58,244,183,81,20,8,205,122,118,45,224,75,213,13,27,29,205,119,135,24,181,55,19,50,156,142,43,70,207,4,89,118,32,46,183,108,219,223,136,100,224,120,70,78,90,249,110, +84,203,163,206,108,54,49,215,194,100,30,66,197,236,220,136,213,225,8,219,24,187,227,215,128,46,185,10,6,166,219,106,1,112,13,87,187,199,112,51,26,41,102,155,18,234,177,192,132,34,69,63,168,73,111,208,49,187,74,46,166,173,179,153,209,112,128,165,45,147,125,138,209,164,145,50,28,49,199,144,62,187,138,168,142,14,123,192,147,205,110,141,34,36,149,105,22,150,161,219,205,202,98,35,129,242,71,192,16,18,153,2,17,138,148,40,200,140,64,70,165,90,95,24,164,238,96,96,228,54,188,32,115,196,56,7,179,44,232,50,38,159,162,184,12,54,100,219,35,107,142,159,61,223,181,107,43,222,22,108,224,182,91,47,161,144,63,64,126,58,242,139,206,160,39,169,140,2,14,62,87,29,163,25,93,63,122,195,48,236,151,5,115,238,133,69,109,44,89,209,214,65,179,0,197,8,3,183,11,247,216,110,215,235,229,154,154,249,96,184,29,129,16,91,13,202,103,199,244,130,110,177,46,155,173,131,114,82,235,35,209,85,137,198,137,34,82,205,90,110,24,150,75,204,37,215, +157,59,9,2,23,34,105,75,154,254,144,36,7,175,133,119,118,126,34,83,234,120,26,205,3,146,236,87,192,158,109,214,75,144,154,3,131,110,109,207,178,125,38,87,39,124,162,125,190,45,75,252,118,100,28,128,52,51,123,254,109,217,225,189,146,245,54,104,108,68,196,132,150,6,68,197,8,76,47,38,96,207,240,53,160,71,124,60,177,136,37,36,196,234,130,28,5,80,45,46,12,182,16,157,139,150,38,23,18,173,144,32,183,168,36,109,167,19,29,89,88,163,19,70,1,248,114,211,150,180,135,209,212,66,13,208,25,53,18,103,50,181,224,253,147,29,67,199,156,33,77,163,166,52,209,164,253,99,62,36,117,43,227,253,133,16,72,89,244,20,242,140,82,144,98,250,199,54,30,99,117,215,234,196,81,6,157,83,142,145,74,213,1,224,192,98,250,106,167,224,38,239,29,133,204,155,228,81,154,99,151,29,201,180,12,183,230,48,248,156,117,156,206,37,150,239,134,104,202,136,140,186,73,240,51,233,26,22,144,27,81,66,65,205,38,64,171,57,204,229,133,84,181,61,53,29, +44,113,31,119,23,137,40,99,175,227,59,149,39,105,218,55,188,3,178,77,249,9,24,106,249,140,185,186,74,136,116,39,95,182,34,234,238,172,180,196,109,117,107,214,21,75,165,177,50,114,40,174,133,148,216,111,98,37,130,102,111,234,96,203,228,105,108,216,166,9,130,92,100,152,60,203,160,179,82,10,149,41,147,192,193,32,197,229,134,221,179,103,128,168,29,33,90,245,167,137,132,56,143,86,78,193,8,103,1,94,194,24,38,82,1,23,25,155,93,2,231,40,210,181,12,30,77,68,191,0,179,8,150,247,228,172,225,142,81,34,181,105,175,235,81,43,41,86,130,6,192,249,2,14,52,62,6,165,179,231,199,232,192,143,96,63,219,199,192,218,108,229,227,108,184,192,41,130,83,25,170,69,239,130,20,148,110,130,141,116,110,57,190,97,84,166,133,45,62,136,202,246,98,251,133,17,105,144,101,47,27,132,107,77,126,167,104,43,44,64,64,138,101,119,196,10,27,139,218,27,93,217,155,131,212,189,226,200,166,131,172,246,254,190,176,75,37,60,237,215,212,153,162,25,197,150, +35,237,232,245,182,154,158,205,0,131,109,190,76,87,45,14,129,71,155,75,121,219,150,121,118,81,215,41,63,91,69,58,222,41,33,109,31,90,60,208,172,112,175,147,59,186,75,129,182,130,40,64,219,194,11,50,228,246,235,217,241,156,67,4,64,161,143,189,36,142,212,208,139,20,216,106,32,194,204,10,155,46,130,14,221,238,90,36,16,120,186,189,237,251,38,51,200,148,171,197,12,159,96,107,184,142,26,75,117,118,235,248,112,216,72,224,164,187,65,63,155,227,141,158,115,126,216,183,45,180,176,17,123,117,68,51,116,181,202,23,182,118,89,212,45,19,22,173,34,237,20,6,56,18,62,48,41,120,178,133,107,236,108,192,82,103,55,137,66,150,132,30,109,76,102,145,76,16,91,158,193,98,235,29,57,90,226,103,245,150,209,179,86,202,108,171,128,213,94,67,182,205,136,163,39,48,197,184,182,32,100,136,73,64,28,8,220,128,105,9,85,64,227,169,108,78,131,96,211,43,92,44,200,33,114,130,77,21,149,179,221,197,102,151,117,203,234,105,16,108,209,48,237,244,209,76, +88,104,142,48,112,163,11,66,192,91,31,113,137,179,35,99,125,72,214,8,140,147,131,58,101,251,108,26,15,254,36,239,131,0,79,188,9,221,237,64,82,184,36,199,243,212,41,71,222,56,116,185,190,51,244,116,117,20,17,35,219,206,124,4,234,49,229,118,189,33,23,72,126,189,34,142,3,61,107,185,220,6,247,114,211,94,35,163,77,16,230,69,66,76,131,224,173,115,237,36,205,84,25,6,239,200,21,183,79,207,50,204,196,44,6,30,2,62,99,215,7,203,58,22,177,49,234,150,65,108,183,186,167,112,27,130,114,135,168,150,92,86,106,99,11,85,15,219,51,16,174,53,44,189,72,210,18,97,71,131,107,211,147,196,52,72,218,155,136,164,115,12,87,79,27,75,106,242,36,163,42,102,99,53,69,84,199,170,51,13,23,12,37,141,83,33,108,136,154,231,148,222,55,107,113,87,242,168,81,214,10,134,37,112,224,216,153,86,20,218,101,179,223,77,252,174,93,156,5,8,68,108,197,70,74,81,99,216,51,42,228,242,14,235,38,244,164,146,10,204,34,101,109,227,88,178, +242,29,187,119,140,217,118,246,227,94,92,104,251,133,44,39,23,20,117,5,91,21,118,103,9,205,212,26,7,4,136,147,172,130,32,47,136,97,187,138,239,205,46,134,20,224,125,127,18,66,222,113,177,137,162,57,197,65,106,193,198,132,252,108,30,80,45,75,71,136,98,229,184,94,96,235,107,233,13,5,63,111,135,234,210,50,91,57,166,20,166,86,14,173,144,234,182,4,241,170,156,85,139,157,119,49,15,41,168,159,124,29,219,181,40,99,1,51,125,215,35,164,66,251,196,180,253,217,79,60,239,7,22,137,79,216,202,149,209,180,101,150,59,64,36,209,194,131,207,208,28,91,234,189,180,222,206,241,187,22,246,116,186,178,38,179,242,22,230,153,140,54,150,101,11,241,106,220,110,180,243,14,97,214,222,185,94,74,158,95,215,88,51,140,144,71,155,188,59,44,115,147,187,214,18,224,85,222,223,176,93,218,81,35,190,118,149,173,156,117,212,138,136,211,177,217,111,167,144,89,237,15,66,7,162,197,88,28,233,51,34,138,128,177,101,155,154,37,21,167,188,244,22,138,97,23, +84,244,178,237,118,246,243,197,62,190,28,220,89,240,79,190,175,216,7,143,94,6,121,32,53,113,30,156,101,212,182,163,211,16,29,7,218,84,125,42,37,179,10,218,40,222,121,133,130,213,137,34,241,150,57,246,206,182,119,35,53,233,236,57,70,93,129,227,10,199,123,142,219,67,39,205,94,2,147,205,53,3,155,246,75,28,153,88,7,129,125,97,167,12,193,12,214,204,213,235,103,7,43,42,183,214,101,47,15,45,209,110,230,24,223,169,195,138,132,172,217,77,106,206,114,102,156,202,162,229,141,147,27,168,202,170,100,235,74,135,207,39,192,218,136,21,126,26,38,251,188,46,212,17,169,125,92,228,178,76,65,160,200,85,90,71,61,251,25,154,76,174,228,146,141,133,231,112,139,237,57,118,181,218,13,171,2,116,115,67,150,202,227,142,114,100,254,12,18,32,146,167,110,208,5,94,28,169,237,74,154,42,106,213,225,251,179,44,199,201,212,169,166,229,176,253,52,77,233,166,37,214,227,86,74,102,107,23,205,46,15,97,92,42,156,205,22,231,3,35,251,108,118,70,4,103, +142,24,136,83,1,2,164,163,110,203,20,44,41,192,138,224,136,87,15,221,180,153,150,211,144,135,12,79,116,145,186,27,202,11,135,107,168,178,109,217,35,29,158,244,70,48,241,117,170,182,157,145,129,99,5,174,217,213,212,206,110,111,62,110,80,240,178,177,93,124,51,207,148,97,166,34,201,6,65,25,62,3,158,182,32,33,80,234,238,96,76,46,227,19,228,196,48,173,171,247,188,198,19,52,95,58,64,192,210,83,232,167,139,201,111,138,92,0,88,53,141,13,214,33,38,94,32,2,150,57,41,38,131,162,241,105,21,45,84,151,234,243,139,165,198,7,79,175,69,61,206,135,46,26,20,141,166,100,217,15,165,5,69,41,64,60,200,176,202,35,52,143,166,3,133,242,201,24,199,184,156,162,53,10,121,43,215,111,212,77,187,88,3,199,51,5,211,110,178,51,66,57,110,196,150,160,116,198,29,59,32,83,169,154,7,174,58,91,192,253,26,235,22,246,184,95,196,57,64,45,45,50,193,106,148,238,16,171,37,106,31,104,12,89,225,130,144,212,19,12,215,7,155,197,145,180, +203,252,188,149,129,18,102,113,87,171,101,250,88,218,132,189,113,139,144,177,27,7,217,71,231,72,129,2,114,3,73,23,69,105,215,167,66,94,243,38,99,183,244,62,102,85,46,33,19,135,178,214,147,20,49,140,193,206,90,202,107,4,237,236,79,227,134,48,8,246,146,13,50,32,238,79,57,18,141,103,124,116,28,31,240,47,136,50,107,97,114,56,80,218,101,127,98,228,24,93,76,248,134,102,81,145,37,125,134,90,187,51,191,192,193,241,218,99,113,38,38,52,82,161,237,236,114,228,153,11,90,146,210,246,153,140,90,167,181,202,177,157,4,175,52,97,40,194,52,161,88,136,71,160,184,150,121,19,4,209,142,216,109,16,84,133,1,76,196,167,50,207,54,91,166,148,87,44,174,98,229,216,146,59,3,52,71,133,227,48,115,191,49,202,50,180,163,136,98,14,166,38,165,69,101,71,0,141,31,179,74,84,41,77,107,72,254,72,35,151,108,71,225,24,177,179,203,152,152,64,148,169,169,196,218,88,152,163,244,106,198,14,71,16,196,103,215,124,150,127,142,233,56,86,2,51, +13,176,28,179,141,39,34,100,154,88,104,35,143,169,118,140,91,245,115,92,6,71,21,130,25,179,175,73,104,224,17,27,219,116,169,112,148,198,81,211,170,141,115,31,74,69,219,15,53,104,90,150,236,49,80,248,2,7,184,109,88,137,25,126,6,20,215,104,141,172,207,22,50,117,224,179,64,60,245,244,198,138,43,187,64,75,100,216,150,202,241,162,138,34,206,141,146,46,108,201,246,136,237,15,207,250,55,13,86,109,67,31,182,128,181,117,181,33,168,40,91,97,193,233,76,237,172,141,45,214,75,0,219,227,161,232,45,47,116,88,206,145,28,65,143,201,5,218,186,209,178,64,79,97,6,130,167,73,101,227,227,169,60,167,144,203,130,212,90,128,246,160,187,92,227,129,143,234,163,157,97,179,1,146,0,230,172,160,19,217,111,169,3,11,118,205,158,147,231,112,206,47,77,179,29,128,75,120,8,125,23,208,76,24,114,209,217,182,207,162,22,81,77,199,237,121,96,76,39,152,198,5,156,192,183,235,85,172,175,232,139,189,14,103,45,170,17,65,6,203,125,60,192,8,97,28, +77,39,184,230,53,180,216,232,231,49,43,212,89,52,178,161,235,28,28,205,143,209,146,16,230,208,39,66,211,164,202,79,48,100,92,214,12,141,229,139,69,96,169,210,122,189,131,177,190,8,229,227,180,197,120,109,114,1,105,236,178,98,214,189,18,128,24,205,182,190,128,251,29,135,136,236,177,204,42,107,57,232,217,144,42,88,4,9,54,217,83,130,232,156,53,120,239,133,203,83,198,137,7,38,173,143,145,50,249,93,212,111,104,67,84,196,117,82,91,126,115,220,120,30,145,86,67,71,108,209,195,177,181,38,27,235,235,69,164,214,254,168,80,169,148,64,130,43,34,237,218,210,177,67,235,32,133,16,237,28,0,146,37,4,5,125,102,91,30,69,160,181,46,8,49,26,226,209,146,14,188,167,117,146,198,70,228,126,136,124,65,67,171,9,59,89,218,126,165,251,197,81,57,216,17,90,194,62,15,206,230,165,228,14,105,39,183,39,203,178,120,238,12,47,246,97,232,200,22,136,101,60,101,178,145,8,237,155,213,225,212,48,23,36,117,115,150,116,77,147,4,78,204,97,211,184, +231,176,63,205,126,200,154,167,79,56,152,159,13,92,164,212,54,99,237,139,72,194,2,206,228,152,127,81,138,11,196,233,140,73,202,204,180,42,76,41,148,140,166,68,89,64,224,214,248,6,217,240,30,109,144,67,138,181,91,5,226,8,43,45,164,134,100,91,21,119,135,76,18,178,221,134,151,233,70,55,76,57,88,163,114,77,110,230,165,200,180,53,169,66,7,153,136,132,149,204,154,29,1,70,34,50,27,214,89,245,165,147,123,78,152,68,49,240,221,74,231,38,80,42,75,26,179,13,211,133,221,118,36,142,98,139,247,174,234,205,126,124,191,102,17,202,159,0,207,218,90,98,178,119,221,250,224,216,116,169,158,96,65,149,143,133,137,166,2,34,92,239,124,156,197,157,104,172,83,147,63,204,206,147,4,229,38,152,13,171,61,55,10,129,2,211,134,178,81,12,197,157,227,149,142,63,153,17,103,181,44,95,111,236,61,166,57,78,180,240,252,93,134,238,229,221,201,41,29,34,244,243,139,157,116,84,37,110,21,166,221,159,40,54,70,195,158,108,55,40,171,66,30,137,244,241, +142,243,199,83,92,72,224,69,216,5,161,233,45,55,142,167,202,169,2,100,6,147,234,39,88,212,213,166,137,42,105,5,88,245,161,41,141,171,231,88,90,58,9,244,124,224,51,140,159,90,104,227,5,148,212,201,158,104,31,18,12,97,103,63,26,135,207,254,161,223,150,217,50,216,174,93,81,243,146,69,144,182,38,236,31,77,193,95,173,198,17,92,218,243,52,23,255,88,171,112,16,199,43,103,185,181,195,53,64,5,16,66,42,93,218,51,167,92,60,199,228,74,133,201,0,36,164,196,61,145,210,97,219,89,158,178,37,247,213,184,64,59,176,168,192,224,82,110,52,137,136,163,230,228,49,106,87,55,11,189,234,118,253,250,60,162,96,153,187,107,6,179,142,20,84,243,251,65,59,237,113,61,26,12,38,206,39,136,161,54,219,89,65,239,61,16,233,18,185,238,23,113,42,147,32,182,3,142,135,21,103,213,129,21,44,78,26,179,61,122,59,186,39,103,199,229,184,1,45,47,145,89,63,58,201,39,218,186,112,104,96,180,44,30,198,150,238,142,154,79,156,201,188,94,165,28, +53,235,119,117,85,238,142,193,90,67,48,217,29,22,184,37,239,56,0,163,77,38,128,121,223,59,219,121,16,79,231,205,233,226,6,165,189,115,142,217,193,208,243,38,143,241,142,228,54,48,71,28,146,225,100,129,27,207,26,46,60,104,157,38,66,3,88,43,142,245,189,77,59,42,189,196,177,80,206,82,182,203,160,250,44,149,211,145,129,250,208,207,112,89,117,54,170,229,164,156,64,174,70,22,193,237,227,236,10,195,64,69,118,73,10,57,230,198,62,227,160,69,34,67,157,131,2,227,2,39,163,88,15,151,49,29,74,78,62,251,8,103,242,106,85,199,1,7,219,5,53,208,158,193,86,250,38,8,70,180,195,17,43,218,83,98,14,250,59,88,9,143,254,56,247,81,177,13,220,41,141,118,5,121,246,10,73,226,250,213,95,106,29,235,190,36,205,113,57,130,239,119,178,66,237,251,180,94,182,43,196,32,233,62,14,139,149,199,150,249,85,159,112,110,228,159,113,217,217,244,217,5,79,109,139,58,244,193,118,108,203,89,135,30,5,73,100,93,89,31,105,53,226,88,68,36, +108,113,173,17,184,18,94,66,125,73,139,17,193,231,116,26,112,38,221,51,182,16,213,148,178,145,154,217,26,107,141,239,74,208,112,201,183,251,24,27,118,152,1,173,242,218,80,170,129,168,116,128,91,155,43,158,167,82,100,52,91,88,46,141,225,104,162,219,6,102,184,179,25,53,128,209,39,110,72,49,238,190,4,64,190,233,46,178,96,132,232,102,191,223,80,10,7,75,194,114,191,206,137,70,0,14,135,136,170,130,24,150,141,142,63,78,90,209,34,58,182,180,16,144,177,64,221,87,168,26,231,37,195,195,211,137,114,139,98,67,201,84,64,209,101,211,34,27,226,4,175,18,65,244,112,93,134,150,96,132,182,148,144,122,82,34,68,42,181,217,199,195,186,153,187,65,224,245,120,31,128,196,117,119,62,55,184,105,145,53,148,167,89,188,24,79,78,66,15,74,181,205,47,176,233,246,189,152,195,129,223,76,96,215,137,96,127,176,79,151,26,112,183,71,103,91,41,229,121,237,46,225,242,90,211,10,82,71,200,160,124,230,114,153,132,120,162,125,42,209,46,160,182,5,131,61, +33,136,5,215,99,134,133,220,198,175,151,11,152,151,72,58,117,84,101,75,139,211,22,89,205,81,98,29,46,251,214,133,250,170,80,232,21,187,214,218,237,121,15,179,182,185,164,130,3,32,128,49,190,103,144,36,191,180,42,134,47,97,92,172,175,155,129,16,116,10,206,192,126,239,197,229,68,158,70,209,197,203,17,225,49,252,114,129,93,93,229,27,164,236,177,180,218,176,242,48,58,11,179,67,130,4,102,16,69,34,170,42,85,182,150,116,137,233,229,114,195,45,204,118,29,69,2,101,110,96,77,237,40,133,82,41,186,245,87,8,138,212,118,49,219,252,66,66,71,121,132,93,207,7,35,227,116,40,20,43,198,125,222,172,109,163,129,35,210,75,232,123,238,9,126,17,113,102,54,238,190,1,80,9,111,2,225,217,175,112,30,179,202,48,80,144,164,221,236,232,192,25,19,4,158,125,14,171,136,103,23,238,26,221,133,120,56,34,227,112,28,143,205,28,173,84,165,29,18,115,220,24,31,115,60,79,231,21,223,235,113,133,250,52,104,158,156,180,91,90,57,101,114,22,12,162, +227,120,209,237,213,134,172,237,36,26,229,189,234,5,5,193,237,132,138,139,236,140,214,104,109,85,70,151,221,172,37,241,94,73,112,217,224,135,134,52,40,133,167,8,122,142,250,248,57,48,246,164,24,64,29,68,228,41,183,148,234,35,112,38,246,53,135,58,225,126,58,40,29,20,114,41,34,81,172,41,195,154,33,33,77,186,221,32,211,129,140,132,82,152,61,136,85,36,206,107,200,96,123,183,154,99,10,160,61,212,50,67,69,142,81,96,188,15,100,228,9,93,212,235,164,44,52,115,14,40,17,255,224,202,169,70,8,251,29,144,17,198,100,49,106,203,107,59,0,67,243,60,171,150,167,131,180,102,56,127,73,46,7,111,97,31,129,134,155,13,179,45,3,33,37,8,211,90,39,84,196,11,207,246,66,214,140,37,16,207,126,96,197,131,132,117,158,157,0,205,162,54,167,86,153,206,17,128,173,208,205,65,4,5,73,94,157,103,7,113,11,251,135,172,181,133,118,71,48,150,183,83,225,24,33,20,86,134,196,149,120,76,155,221,138,78,214,96,122,128,221,221,49,30,21,232, +12,195,114,234,114,89,53,86,56,89,57,1,213,108,157,68,77,23,245,217,208,195,68,215,199,22,220,229,28,181,146,143,23,218,82,50,114,151,83,240,241,180,158,218,60,161,122,40,16,209,75,92,156,102,114,0,153,216,142,184,46,176,199,153,14,43,11,139,249,157,103,169,233,1,189,40,106,134,91,149,22,237,129,99,101,249,44,152,233,144,76,209,204,50,36,1,103,227,30,40,36,212,65,227,156,186,85,224,199,162,187,74,140,32,22,179,24,91,229,240,250,36,133,214,158,215,232,141,207,250,27,23,119,214,213,6,206,88,144,88,117,11,214,222,209,224,249,180,58,22,235,109,222,130,126,177,196,229,253,210,27,59,242,130,224,203,77,86,16,201,5,117,205,229,22,232,41,59,229,72,144,210,196,198,221,201,165,132,164,34,68,81,26,179,55,74,66,130,215,30,207,55,18,32,129,225,208,227,243,98,81,14,75,160,168,141,90,241,187,125,52,180,248,98,65,5,192,30,80,246,11,26,87,134,101,188,222,226,45,1,180,76,236,41,179,210,49,16,74,58,103,24,67,234,125,174, +173,246,75,62,81,202,90,85,252,218,140,34,156,213,188,161,241,108,247,194,58,27,210,179,75,148,83,119,173,173,78,204,133,26,225,162,149,86,250,88,75,115,251,96,81,80,220,0,148,21,16,236,79,58,53,177,204,202,110,38,164,173,172,149,222,134,99,132,171,99,217,11,43,39,8,65,101,79,109,33,217,21,114,181,139,13,184,234,124,15,51,92,82,30,246,24,75,157,187,49,101,64,108,214,164,230,204,14,107,100,164,4,15,22,21,98,40,43,168,114,140,0,202,24,255,224,128,145,34,172,6,116,171,6,89,209,14,42,178,222,72,3,159,234,219,5,58,107,117,109,119,65,252,177,236,112,214,145,13,238,72,107,5,144,233,141,184,23,242,205,234,8,198,29,14,107,103,77,94,20,237,202,159,26,199,184,202,28,46,72,42,228,67,139,94,40,37,121,96,138,227,5,229,241,93,168,33,103,245,138,214,101,23,50,53,47,14,11,239,44,26,46,69,108,138,60,93,133,99,142,242,20,68,209,10,136,51,67,80,39,9,225,55,157,196,166,214,242,104,231,131,47,29,136,56,238, +129,96,136,183,202,208,245,25,51,200,232,102,76,245,245,97,136,113,60,39,68,132,183,125,79,230,26,163,111,78,221,44,247,2,21,119,1,5,97,99,94,110,10,133,245,93,4,63,1,235,180,61,204,54,105,173,152,233,158,40,134,147,139,139,205,226,82,236,214,181,153,72,75,30,179,47,22,145,116,253,16,4,59,121,181,96,87,26,98,74,248,198,80,209,168,10,68,217,133,55,45,112,8,149,12,231,118,128,217,29,14,118,115,210,246,174,147,218,171,26,198,208,182,98,242,165,152,53,152,44,195,39,184,217,79,8,21,141,57,25,229,133,183,52,229,108,37,8,222,108,127,134,217,28,13,76,70,247,54,69,155,30,184,119,15,243,120,228,182,50,195,174,191,230,5,117,5,197,147,123,225,200,169,52,47,246,200,36,179,150,61,195,14,38,20,178,108,98,212,217,48,138,57,179,146,149,83,91,160,207,17,76,241,201,193,20,174,31,143,2,169,82,1,231,104,55,85,69,10,63,171,123,68,199,193,35,21,1,146,218,198,155,32,30,45,106,13,162,49,176,56,156,114,70,105,17, +164,55,3,44,134,40,246,130,150,149,28,51,250,198,51,124,18,42,203,99,52,187,186,4,0,34,84,114,217,207,230,95,67,179,115,217,20,220,236,201,244,21,87,51,54,2,123,133,30,141,40,180,33,149,190,215,214,128,45,15,177,163,0,48,201,94,90,107,177,68,240,198,145,165,141,142,149,65,20,142,1,125,130,185,5,75,170,162,38,58,43,101,63,135,16,165,207,169,101,178,64,117,189,220,165,196,169,182,69,166,242,224,66,44,149,21,29,67,187,244,16,122,121,51,235,53,116,96,171,45,24,66,144,4,29,131,25,219,29,88,59,155,128,128,78,49,250,42,167,104,11,171,78,251,85,206,7,153,64,117,42,141,187,51,223,22,33,13,152,146,226,171,126,157,240,105,104,3,57,26,132,189,203,177,169,98,13,205,16,162,72,219,144,203,206,84,150,179,138,63,232,61,200,144,43,103,90,227,253,166,60,235,89,172,153,246,229,250,21,240,12,244,183,91,31,16,70,104,136,182,107,201,231,22,61,118,9,213,73,177,193,40,189,237,93,186,203,110,118,102,9,31,243,20,94,218, +118,38,169,206,17,24,121,166,129,77,0,232,72,178,47,66,215,208,196,138,188,148,144,140,23,193,8,20,85,150,78,97,187,115,145,37,29,193,6,136,161,230,134,59,34,229,249,56,135,206,137,198,97,107,132,57,158,20,160,98,226,86,8,233,150,21,193,212,20,102,249,22,253,89,167,104,168,151,155,126,165,0,36,42,167,169,186,30,14,215,106,153,139,245,10,106,2,60,179,21,46,139,93,57,81,13,217,90,82,67,114,89,159,84,183,103,2,133,190,230,78,113,96,147,211,16,212,206,225,105,195,207,122,101,193,232,125,196,1,83,181,195,20,7,108,122,31,6,66,232,150,175,99,175,134,108,199,208,142,92,40,215,18,16,235,128,232,180,182,228,161,116,19,27,122,109,225,98,235,111,81,76,213,172,29,224,38,36,223,212,74,161,108,34,169,226,76,162,236,27,35,216,219,25,164,178,33,184,32,58,21,46,217,35,110,232,60,7,64,209,148,121,22,131,238,97,183,236,216,44,115,162,237,182,140,148,228,194,28,241,217,73,54,49,188,240,81,32,98,118,249,136,237,29,40,229, +35,131,92,165,185,82,65,155,236,192,14,141,75,22,135,126,56,31,179,1,90,91,144,158,231,162,17,138,11,213,23,5,214,3,111,244,225,149,72,166,184,172,117,73,1,59,30,57,151,75,215,108,213,200,142,122,189,25,139,183,160,43,108,84,87,5,30,205,29,66,162,245,18,135,90,18,24,144,255,243,96,5,200,99,145,221,42,227,188,87,33,236,165,182,208,115,163,207,53,194,238,79,154,79,205,172,5,131,230,225,242,95,136,239,207,193,86,248,231,47,79,37,12,113,167,117,212,178,171,189,224,246,248,199,74,251,60,13,122,171,235,243,238,184,127,124,122,251,251,165,136,97,115,253,241,140,210,60,204,189,4,22,136,223,94,56,94,240,82,10,234,218,238,241,194,141,215,57,132,164,176,95,170,55,253,96,201,189,231,113,190,83,212,169,119,178,183,69,24,159,43,78,93,11,134,57,119,124,242,164,72,242,46,127,141,151,125,109,240,112,45,42,234,53,74,127,254,122,171,12,249,165,172,124,134,234,19,245,26,242,95,255,241,117,81,201,119,234,204,253,37,140,15,21,57,188, +77,235,140,63,135,240,243,56,127,151,240,115,208,240,83,8,127,67,233,113,194,223,32,127,148,240,127,5,227,7,106,250,217,175,10,95,254,80,9,63,251,179,130,193,156,204,235,178,151,114,117,207,242,113,173,158,245,109,144,155,123,117,173,167,90,147,249,149,15,159,59,54,47,29,159,218,182,229,39,55,184,213,54,107,3,255,113,49,139,203,65,113,146,194,45,135,131,147,5,243,171,167,82,134,63,36,107,95,13,246,205,42,134,215,146,127,223,47,99,199,188,212,155,187,181,125,41,75,247,138,78,245,125,174,123,249,208,79,213,125,202,123,177,177,153,20,215,110,197,7,68,243,29,74,124,109,68,158,81,248,244,110,143,119,170,78,94,65,78,194,191,134,122,70,239,53,192,15,41,136,183,147,31,202,230,139,146,186,135,242,90,33,245,135,75,234,126,53,252,183,74,234,190,158,238,143,79,183,127,94,140,82,245,174,94,169,94,180,202,115,57,229,107,209,184,191,34,210,227,204,124,135,50,47,84,120,15,218,247,107,217,190,67,128,247,170,138,254,37,111,127,164,100,244,219,185, +213,228,18,124,193,220,219,163,159,196,219,235,88,127,193,220,107,147,121,224,107,195,23,127,227,242,150,183,47,235,245,242,194,221,107,251,127,38,103,239,116,249,146,181,175,96,125,132,177,119,236,127,136,179,205,220,245,35,92,189,218,6,181,157,178,192,252,243,151,151,191,255,154,135,55,138,127,122,211,255,247,207,253,159,52,234,245,207,155,74,213,164,63,255,129,17,215,74,192,95,213,43,54,239,85,27,159,25,117,235,114,171,87,156,248,47,54,231,169,106,241,250,115,193,226,207,3,254,191,55,235,118,85,86,222,181,108,110,29,248,87,187,243,170,210,234,211,243,127,251,98,4,82,145,132,63,255,129,34,42,241,237,17,204,79,101,157,68,201,163,42,251,53,53,172,191,73,77,235,199,168,105,253,55,166,166,245,97,106,42,78,17,5,95,149,104,253,59,197,140,159,7,253,142,227,89,143,223,171,224,90,79,191,207,195,124,250,243,255,124,18,187,236,203,122,199,95,180,4,223,52,253,138,87,175,42,20,255,242,196,176,121,238,95,127,123,169,241,250,249,241,244,251,175,79,158, +215,204,6,223,169,167,247,218,128,215,70,215,218,198,245,21,195,230,185,48,234,13,223,155,175,50,207,217,39,77,114,253,100,192,173,140,234,172,5,111,246,110,118,208,174,165,82,239,161,230,167,174,72,102,0,127,41,238,15,171,100,12,178,230,215,199,181,161,249,196,180,135,188,105,243,137,25,191,62,228,74,143,175,208,123,88,197,205,179,88,31,1,201,250,16,72,211,143,130,4,126,8,38,240,67,64,125,150,146,199,192,123,182,81,95,215,180,119,78,101,125,188,202,195,95,46,194,175,199,248,134,134,251,60,230,119,214,96,247,221,53,216,77,223,127,11,62,180,214,186,247,215,90,119,93,107,179,61,253,206,82,187,205,240,201,79,154,214,41,102,59,236,6,237,16,4,197,167,168,158,149,108,150,20,47,219,53,79,132,254,206,55,3,94,104,33,118,249,253,227,1,191,61,244,5,129,119,168,57,143,240,173,175,7,20,95,82,243,213,171,233,33,90,205,35,252,250,166,252,244,231,55,87,114,21,93,238,222,139,44,127,139,6,223,173,159,255,130,131,249,94,124,243,118,41,188, +106,252,141,130,250,223,102,203,85,159,153,183,21,241,145,165,250,121,70,235,35,224,89,63,4,158,245,119,192,3,63,4,31,248,67,0,126,94,22,31,4,245,42,172,73,241,190,50,249,209,47,102,60,141,247,119,20,201,55,63,176,50,247,188,73,252,103,181,240,84,214,191,158,3,30,243,246,234,78,129,215,4,202,202,25,232,107,232,56,83,170,14,230,101,114,55,166,97,61,123,68,183,111,140,148,195,188,78,178,32,108,103,237,93,23,179,31,117,221,84,120,170,81,254,106,226,207,53,221,175,243,206,115,92,173,241,147,237,254,237,83,210,126,10,138,57,10,184,109,221,56,237,179,99,87,186,237,28,17,204,254,150,227,251,215,79,74,92,149,88,231,54,109,237,120,237,245,247,27,117,241,203,175,207,221,158,55,39,158,134,127,118,27,174,155,29,127,180,101,149,120,51,247,150,127,46,95,179,115,217,212,222,219,39,255,8,138,63,255,181,107,254,252,127,190,230,58,53,147,135,191,82,199,252,227,211,155,159,159,126,191,162,249,115,231,176,222,206,97,125,250,253,90,43,255,250, +237,153,219,118,70,208,254,118,119,131,158,40,22,222,92,252,103,70,206,4,173,130,153,86,125,144,77,119,178,92,201,62,147,166,107,94,246,175,30,241,128,158,228,242,81,31,232,169,249,239,255,120,116,75,241,69,6,223,72,223,139,240,125,200,15,249,24,172,214,15,194,250,229,74,249,91,176,130,31,4,22,252,40,180,95,234,184,119,224,254,243,95,63,160,247,204,43,36,63,59,140,185,13,250,29,205,55,230,243,235,223,190,249,122,250,235,215,224,59,223,92,249,74,77,222,167,121,254,117,27,245,181,218,188,143,115,15,166,127,187,146,243,77,16,243,68,222,247,194,194,239,47,175,15,44,173,199,153,111,190,3,205,195,130,249,1,153,124,28,162,247,232,243,48,68,31,89,38,31,88,34,223,231,222,131,193,207,7,8,6,126,136,98,63,1,58,83,112,198,135,229,203,25,31,62,8,122,18,175,160,120,252,40,228,198,157,135,161,177,62,2,141,245,99,208,128,31,0,7,252,8,60,95,49,238,29,200,190,115,230,125,219,186,120,81,177,255,251,30,70,125,88,211,222,195,170, +151,241,222,215,174,127,254,239,187,134,188,30,121,127,59,174,234,242,119,222,191,85,208,192,43,253,250,157,118,126,144,181,142,249,210,118,245,246,60,221,249,84,4,195,243,214,77,211,150,245,253,195,97,207,234,247,10,196,167,223,177,79,78,93,59,211,27,197,253,12,225,167,97,246,61,131,27,15,94,119,250,243,255,3,254,252,253,211,239,230,221,85,186,58,79,207,10,31,184,43,248,47,34,197,175,194,134,215,131,253,254,236,112,125,30,230,9,171,103,111,243,109,235,216,121,62,60,252,140,145,243,169,10,234,220,41,130,162,253,236,102,251,93,125,243,108,63,243,112,54,211,225,237,11,94,206,53,185,226,83,30,228,229,44,83,85,93,206,4,205,31,13,74,223,149,168,183,178,245,83,101,105,252,142,172,124,72,220,62,32,26,247,57,223,216,234,251,147,39,97,105,222,149,150,47,248,245,205,65,254,27,113,240,105,103,74,15,174,31,199,250,243,223,159,216,248,31,127,254,203,159,191,125,251,213,15,176,247,31,127,220,199,249,227,211,253,223,223,255,253,29,118,254,199,243,73, +213,11,203,63,214,109,250,105,108,158,127,125,53,245,252,236,211,191,95,255,255,53,4,215,87,255,241,63,152,253,200,85,166,223,229,254,215,111,126,136,249,183,97,254,248,116,251,231,97,214,63,222,233,159,196,248,251,204,255,23,243,253,121,109,191,62,98,15,127,226,18,255,199,31,247,33,159,142,237,195,207,28,171,174,191,155,143,176,236,169,199,247,151,230,87,19,190,203,161,231,161,254,251,49,228,105,185,253,36,126,124,177,128,254,233,220,248,98,189,252,55,103,198,251,7,59,127,185,72,190,178,135,175,217,243,216,65,207,91,46,189,25,247,205,226,121,255,205,63,222,87,133,47,204,244,63,168,11,111,237,31,253,224,170,84,57,94,210,78,143,167,56,222,49,126,234,246,157,29,153,242,169,197,215,158,252,203,209,203,19,2,79,96,63,119,248,244,111,183,13,228,213,167,95,230,39,231,46,248,245,42,8,192,167,95,218,218,41,154,202,169,103,217,89,38,197,211,254,237,163,71,181,247,175,98,127,153,193,211,94,5,239,81,148,239,67,124,43,75,231,62,214,220,239,246,239, +19,13,238,31,217,254,43,196,159,90,125,16,147,91,200,247,67,232,188,247,57,211,119,112,251,236,111,39,133,31,124,121,178,240,131,152,191,69,249,83,248,121,235,255,62,201,219,12,240,135,191,150,254,250,83,228,143,0,249,189,79,167,127,159,10,223,249,150,250,223,68,230,233,176,232,61,150,254,24,159,239,98,251,206,153,209,95,240,174,187,31,232,125,136,223,221,253,140,242,186,216,255,252,95,127,254,175,111,73,252,211,1,209,231,67,136,151,67,230,251,156,247,99,87,243,157,119,230,239,143,46,245,39,58,126,115,125,252,100,98,254,173,101,242,207,32,245,123,34,248,159,66,248,121,5,61,159,107,127,108,53,62,45,191,231,115,238,143,46,191,39,168,63,163,248,247,52,202,243,225,247,143,227,96,125,28,7,235,239,224,240,190,227,115,215,102,215,131,193,47,50,202,31,243,105,62,119,255,102,14,185,251,253,4,242,39,79,174,8,94,165,91,61,169,202,235,231,173,175,89,217,175,84,131,95,6,247,131,223,91,130,214,253,128,249,23,177,60,204,191,30,21,64,166,185,165, +254,61,177,238,221,77,219,151,244,241,167,182,127,193,169,7,118,115,159,242,203,223,242,107,102,229,243,206,32,112,91,89,179,104,96,101,87,180,191,252,250,231,191,174,254,237,241,156,192,235,159,230,60,87,226,101,127,235,98,192,219,145,190,125,43,32,104,31,190,20,48,55,125,185,19,112,227,99,238,100,217,19,227,110,91,166,193,216,94,201,208,36,126,112,101,248,236,193,155,175,206,22,103,71,238,67,55,4,158,80,176,126,26,49,172,255,124,98,60,165,134,222,50,34,202,240,137,40,214,79,32,10,248,243,168,2,254,151,145,165,78,162,248,39,209,133,250,114,229,124,255,34,201,219,181,241,173,43,36,87,24,127,130,160,63,116,244,244,86,212,255,26,122,235,111,66,255,97,201,124,28,11,240,35,104,128,63,7,143,15,136,210,99,151,65,238,80,145,229,108,88,222,122,232,183,71,15,111,231,188,29,234,47,110,124,92,155,252,241,233,214,240,121,43,32,156,255,126,239,58,207,245,249,245,202,71,125,31,124,246,32,138,246,81,43,67,125,129,222,151,126,194,151,96,124,162, +190,64,226,25,32,234,10,208,27,8,62,78,97,236,122,187,227,11,18,223,159,253,0,141,111,29,255,130,200,183,54,127,124,186,55,125,38,179,87,190,127,27,243,250,252,53,153,111,119,81,62,76,230,39,28,191,164,243,215,144,124,162,190,68,229,93,82,223,160,248,0,169,175,155,215,135,58,201,157,122,122,114,115,127,123,101,53,222,187,176,253,69,167,143,4,64,175,12,71,117,239,254,168,241,120,110,254,108,64,126,123,63,178,185,94,189,152,153,58,235,222,167,203,23,110,112,221,102,188,119,126,217,35,43,175,105,132,93,19,52,159,213,220,75,114,239,45,177,243,58,113,232,100,77,240,166,225,93,143,124,217,178,152,223,93,167,117,154,175,90,220,244,204,252,238,154,132,216,59,237,195,137,116,95,177,229,49,59,254,34,241,223,102,207,59,12,120,132,214,153,51,47,64,199,247,3,255,103,19,250,243,228,143,209,251,67,4,84,159,19,43,62,38,217,159,187,253,160,108,191,36,116,188,16,87,170,170,178,185,19,234,11,254,252,242,235,171,128,225,115,199,31,146,243,207,137, +36,239,51,224,39,9,240,183,248,245,14,127,127,152,93,63,32,241,223,98,219,63,139,49,143,46,138,255,169,92,97,154,175,109,195,183,125,182,183,173,63,184,231,241,110,216,252,153,168,79,106,229,11,31,230,219,194,164,6,231,46,40,218,196,201,204,135,23,254,171,62,63,188,234,159,71,120,60,34,122,233,241,3,235,253,115,239,171,68,93,253,223,235,89,207,211,137,219,205,179,45,235,123,251,176,204,178,114,184,30,171,125,222,33,251,64,197,145,215,212,252,224,186,252,38,85,127,54,221,238,162,254,208,138,252,47,160,27,146,101,127,135,116,115,247,127,50,245,174,84,120,34,217,149,0,255,53,52,163,222,89,185,223,47,249,240,232,154,125,76,225,220,80,250,175,22,156,47,137,240,1,10,124,11,203,255,236,181,241,64,220,49,135,220,15,106,230,107,181,145,31,212,199,63,92,212,36,105,95,234,188,60,31,68,95,183,15,190,45,45,51,241,86,159,131,134,223,222,116,124,41,128,18,180,183,179,235,199,183,175,239,135,218,127,109,120,159,26,254,236,37,240,140,192,237,18, +72,48,251,25,245,245,202,85,241,48,6,87,214,125,92,241,221,59,253,19,42,213,124,131,169,175,52,223,63,129,139,74,144,151,125,240,156,114,242,125,70,190,110,251,40,47,175,61,190,195,194,91,238,196,83,245,130,25,179,246,243,185,138,31,100,65,27,188,57,114,153,251,125,8,171,153,77,207,136,61,202,221,47,58,190,86,89,55,76,94,20,206,223,131,255,29,5,244,141,123,222,131,83,189,102,206,111,223,231,208,231,230,223,228,207,234,155,121,202,201,171,171,217,243,56,239,229,126,204,189,223,100,30,207,93,30,183,26,76,238,68,239,84,95,185,61,254,227,211,237,159,103,171,113,255,241,238,21,216,230,62,238,253,220,205,185,110,166,222,187,62,172,218,153,55,233,23,31,59,117,96,190,125,2,247,237,236,145,249,213,115,53,135,87,54,238,149,20,61,170,112,253,143,220,66,255,24,244,239,24,170,135,113,251,158,142,254,128,116,124,43,43,230,9,142,155,88,252,64,182,203,28,137,126,207,50,126,236,132,230,154,123,241,89,128,159,158,252,241,233,233,143,215,71,3,215, +159,239,202,239,115,169,150,167,70,15,94,163,185,222,103,66,167,123,129,174,183,185,111,223,190,255,244,212,254,123,215,16,191,151,160,112,191,91,50,211,238,86,101,228,37,187,248,247,235,241,248,19,1,219,123,6,192,227,52,180,62,136,131,245,215,56,76,239,225,96,125,15,133,233,239,161,0,126,20,7,240,7,145,248,250,218,213,63,3,31,243,6,27,58,233,215,177,31,150,173,215,157,126,84,192,238,72,188,224,244,115,4,236,71,176,177,30,196,230,125,46,89,223,195,230,111,240,70,117,102,71,164,17,130,214,9,147,236,165,154,155,23,59,245,159,255,251,27,233,34,159,131,146,55,125,223,63,83,122,253,232,54,232,19,150,183,30,223,74,37,1,174,240,206,205,126,1,247,215,151,0,240,235,234,147,49,107,213,114,104,158,83,77,174,115,191,85,117,87,43,61,187,13,183,86,159,242,39,160,94,101,0,223,102,124,124,219,226,90,90,181,44,243,159,88,168,226,58,220,119,165,248,59,55,0,239,7,68,127,254,235,59,73,195,159,37,250,245,101,140,175,42,211,62,151,125, +186,23,2,122,21,30,220,247,114,255,252,215,213,111,159,202,34,155,94,141,119,121,174,226,245,18,30,63,239,176,18,231,110,14,141,239,155,197,51,102,183,210,68,191,60,154,145,116,43,66,49,254,84,226,222,135,251,47,32,238,115,181,211,127,26,113,157,241,227,196,125,98,200,79,20,221,191,42,152,246,63,70,118,31,149,206,159,75,192,167,241,254,111,144,207,135,8,72,206,1,136,158,4,195,195,27,229,239,211,237,101,152,159,157,118,245,132,108,89,4,247,45,189,235,5,156,57,228,171,175,169,137,119,11,251,188,207,225,207,208,21,255,246,73,187,89,224,23,179,123,59,146,186,247,124,110,120,165,246,108,146,234,57,70,124,222,78,121,189,101,248,156,248,216,14,229,83,61,189,151,195,170,226,126,184,53,119,114,147,232,214,233,182,63,115,229,231,157,7,197,61,24,190,189,157,205,90,146,253,118,7,160,172,110,55,133,188,57,54,117,60,47,200,230,201,175,197,63,103,99,88,68,51,118,175,109,99,29,132,117,208,196,143,123,56,175,56,248,253,157,215,87,60,250,214,214, +218,75,147,219,237,39,247,74,134,25,195,143,164,76,221,178,68,223,131,228,85,212,118,107,243,126,48,244,185,54,217,115,194,109,233,248,31,40,71,205,52,68,94,93,175,3,125,119,251,241,214,230,187,41,90,245,61,209,170,40,63,90,210,255,158,241,251,248,254,210,189,253,103,88,212,251,110,221,253,226,216,117,59,240,121,191,250,9,142,79,116,57,92,147,194,158,116,70,125,147,169,15,22,171,86,91,199,187,125,227,224,67,219,156,247,78,223,94,223,79,239,31,93,227,79,205,95,111,118,126,177,189,127,45,150,245,197,41,207,83,175,7,241,20,75,193,169,211,143,240,226,218,254,47,120,49,211,60,253,156,16,254,150,31,79,144,190,195,146,7,14,24,230,213,159,62,109,157,191,148,194,120,147,65,246,48,163,174,3,125,100,99,231,141,5,155,245,149,151,22,65,211,220,239,60,191,155,220,245,156,100,54,255,253,158,137,123,123,16,252,244,240,243,184,175,237,223,125,144,135,229,246,78,162,159,77,157,191,131,255,85,220,175,5,99,191,117,99,232,150,179,249,243,72,112,61, +64,123,71,80,254,229,11,98,252,203,119,206,167,94,134,248,17,17,121,74,48,124,132,72,159,115,17,95,137,9,245,179,196,228,182,164,126,255,253,255,7,208,4,235,233,