text
stringlengths 8
6.88M
|
|---|
// implementation of filer class
#include "filer.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
unsigned char* ppmRead(char* filename, int* width, int* height);
//<<<<<<<<<<<<<<<<<<<<<<<<<< implementation >>>>>>>>>>>>>>>>>>>>>>
unsigned char* Filer:: ppmRead(char* filename, int* width, int* height)
{
FILE* fp;
int i;
int w;
int h;
int d;
unsigned char* image;
char head[70];
fp = fopen(filename, "rb");
if(!fp)
{
perror(filename);
return NULL;
}
// first two chars
fgets(head, 70, fp);
if(strncmp(head, "P6", 2))
{
fprintf(stderr, "%s: wrong file type!\n", filename);
return NULL;
}
// Grab the three elements in the header (width, height, maxval).
i = 0;
while(i < 3)
{
fgets(head, 70, fp);
if(head[0] == '#') // skip comments.
{
continue;
}
if(i == 0)
{
i += sscanf(head, "%d %d %d", &w, &h, &d);
}
else if(i == 1)
{
i += sscanf(head, "%d %d", &h, &d);
}
else if (i == 2)
{
i += sscanf(head, "%d", &d);
}
}
image = (unsigned char*) malloc(sizeof(unsigned char) * w * h * 3);
fread(image, sizeof(unsigned char), w * h * 3, fp);
fclose(fp);
*width = w;
*height = h;
return image;
}
|
#include<iostream>
#include"ezwin.h"
#include"bitmap.h"
#include"assert.h"
#include<cstdio>
Position pw=Position(1,1);
SimpleWindow sizewindow("Input Height & Width ",15.0,25.0,pw);
BitMap header(sizewindow);
BitMap htbutton(sizewindow);
BitMap stdb(sizewindow);
BitMap pro(sizewindow);
BitMap ad(sizewindow);
BitMap stdo(sizewindow);
BitMap proo(sizewindow);
BitMap ado(sizewindow);
BitMap difc(sizewindow);
BitMap wdbutton(sizewindow);
BitMap enter(sizewindow);
BitMap numw[11];
BitMap numh[11];
BitMap btnbluh[11];
BitMap btnbluw[11];
int status,dif=-1;
Position p;int m1=1,n1=1;
using namespace std;
int mouseclick(const Position &mousepos)
{ int i,j;
if(enter.IsInside(mousepos))
{
FILE *size;
size=fopen("GridSize","w");
if (m1==0) m1=7;
if (n1==0) n1=7;
fprintf(size,"%2d %2d %2d",m1,n1,dif);
sizewindow.Close();
return 1;
}
if(stdb.IsInside(mousepos))
{
if(dif==0)
{ stdo.Erase();
stdb.Draw();
}
else if(dif==1)
{ ado.Erase();
ad.Draw();
}
else if(dif==2)
{ proo.Erase();
pro.Draw();
}
stdb.Erase();
dif=0;
stdo.Draw();
}
if(ad.IsInside(mousepos))
{
if(dif==0)
{ stdo.Erase();
stdb.Draw();
}
else if(dif==1)
{ ado.Erase();
ad.Draw();
}
else if(dif==2)
{ proo.Erase();
pro.Draw();
}
ad.Erase();
dif=1;
ado.Draw();
}
if(pro.IsInside(mousepos))
{
if(dif==0)
{ stdo.Erase();
stdb.Draw();
}
else if(dif==1)
{ ado.Erase();
ad.Draw();
}
else if(dif==2)
{ proo.Erase();
pro.Draw();
}
pro.Erase();
dif=2;
proo.Draw();
}
for(i=3;i<=10;i++)
{
if(numh[i].IsInside(mousepos))
{ btnbluh[m1].Erase();
numh[m1].Draw();
p=numh[i].GetPosition();
btnbluh[i].SetPosition(p);
btnbluh[i].Draw();
status =0;
m1=i;
return 1;
}
}
for(i=3;i<=10;i++)
{
if(numw[i].IsInside(mousepos))
{ btnbluw[n1].Erase();
numw[n1].Draw();
p=numw[i].GetPosition();
btnbluw[i].SetPosition(p);
btnbluw[i].Draw();
status =0;
n1=i;
return 1;
}
}
}
int ApiMain(){
int i,j;
sizewindow.Open();
m1=n1=status=0;
for( i=3;i<=10;i++)
{
btnbluh[i].SetWindow(sizewindow);
btnbluw[i].SetWindow(sizewindow);
numh[i].SetWindow(sizewindow);
numw[i].SetWindow(sizewindow);
}
stdb.Load("standard.xpm");
stdo.Load("stdo.xpm");
ad.Load("advanced.xpm");
ado.Load("ado.xpm");
pro.Load("pro.xpm");
proo.Load("proo.xpm");
difc.Load("difficulty.xpm");
htbutton.Load("height.xpm");
wdbutton.Load("width.xpm");
numw[3].Load("w3.xpm");
numw[4].Load("w4.xpm");
numw[5].Load("w5.xpm");
numw[6].Load("w6.xpm");
numw[7].Load("w7.xpm");
numw[8].Load("w8.xpm");
numw[9].Load("w9.xpm");
numw[10].Load("w10.xpm");
numh[3].Load("w3.xpm");
numh[4].Load("w4.xpm");
numh[5].Load("w5.xpm");
numh[6].Load("w6.xpm");
numh[7].Load("w7.xpm");
numh[8].Load("w8.xpm");
numh[9].Load("w9.xpm");
numh[10].Load("w10.xpm");
btnbluh[3].Load("b3.xpm");
btnbluh[4].Load("b4.xpm");
btnbluh[5].Load("b5.xpm");
btnbluh[6].Load("b6.xpm");
btnbluh[7].Load("b7.xpm");
btnbluh[8].Load("b8.xpm");
btnbluh[9].Load("b9.xpm");
btnbluh[10].Load("b10.xpm");
btnbluw[3].Load("b3.xpm");
btnbluw[4].Load("b4.xpm");
btnbluw[5].Load("b5.xpm");
btnbluw[6].Load("b6.xpm");
btnbluw[7].Load("b7.xpm");
btnbluw[8].Load("b8.xpm");
btnbluw[9].Load("b9.xpm");
btnbluw[10].Load("b10.xpm");
float ystd,ydif;
Position pnumh,pe,pnumw,pht,pwd,pdif;
pht=pw+Position(1,3);
htbutton.SetPosition(pht);
float htx=htbutton.GetWidth();
float hty=htbutton.GetHeight();
float wdx=wdbutton.GetWidth();
float wdy=wdbutton.GetHeight();
float numx=numh[5].GetWidth();
float numy=numh[5].GetHeight();
ystd=stdb.GetHeight();
ydif=difc.GetHeight();
enter.Load("enter.xpm");
pnumh=pw+Position(pht.GetXDistance()+0.5,pht.GetYDistance()-1);
for( i=3;i<=10;i++)
{
numh[i].SetPosition(pnumh);
pnumh=pnumh+Position(0,numy+0.2);
}
pwd=pw+Position(3,0);
pnumw=pw+Position(hty-1,htx+0.2);
wdbutton.SetPosition(pwd);
for( i=3;i<=10;i++)
{
numw[i].SetPosition(pnumw);
pnumw=pnumw+Position(numy+0.2,0);
}
float shift;
shift=(difc.GetWidth()-stdb.GetWidth())/2;
pe=Position(pwd.GetXDistance()+2.5*hty,pht.GetYDistance()+2 *hty);
enter.SetPosition(pe);
pdif=numw[10].GetPosition()+Position(numx+1,0);
difc.SetPosition(pdif);
pdif=pdif+Position(shift,ydif+0.6);
stdb.SetPosition(pdif);
stdo.SetPosition(pdif);
pdif=pdif+Position(0,ystd+0.6);
ad.SetPosition(pdif);
ado.SetPosition(pdif);
pdif=pdif+Position(0,ystd+0.6);
pro.SetPosition(pdif);
proo.SetPosition(pdif);
difc.Draw();
stdb.Draw();
ad.Draw();
pro.Draw();
enter.Draw();
wdbutton.Draw();
htbutton.Draw();
for(j=1;j<=10;j++)
{
numh[j].Draw();
numw[j].Draw();
}
sizewindow.SetMouseClickCallback(mouseclick);
}
|
#pragma once
#include <string>
#include "Common/TextFileWriter.h"
#include <corprof.h>
#include "ProfilerApi.h"
#include <unordered_map>
#include "TextWriterAdapter.h"
namespace CppEssentials {
class BinaryWriter;
}
class Stack;
class CallGraphExporter
{
public:
// Takes ownership
CallGraphExporter(IProfilerApi* api, CppEssentials::BinaryWriter * writer);
void Release();
void OnEnter(FunctionID funcId);
void OnLeave(FunctionID funcId);
void OnTailCall(FunctionID funcId);
void OnThreadCreated(ThreadID tid);
void OnThreadDestroyed(ThreadID tid);
// Ownership stays within this class.
FunctionInfo* AddFunctionInfo(FunctionID funcId);
// bool IsEmpty(ThreadID tid);
private:
FunctionInfo* GetFunctionInfo(FunctionID funcId);
//
//std::unordered_map<ThreadID, Stack*> _threadIdToStack;
std::wstring Format(const wstring& prefix, ThreadID tid, FunctionInfo* info = nullptr, int numSpaces = 1);
std::wstring FormatCompact(const wstring& prefix, ThreadID tid, FunctionInfo* info);
std::wstring FormatCreateThread(ThreadID tid);
std::wstring FormatDestroyThread(ThreadID tid);
private:
IProfilerApi* _api;
std::unordered_map<UINT_PTR, FunctionInfo*> _funcInfos;
CppEssentials::BinaryWriter* _writer;
};
|
{dede:noteinfo notename="ๆค็ๆกไพ" channelid="1" macthtype="string"
refurl="http://" sourcelang="utf-8" cosort="asc"
isref="no" exptime="10" usemore="0" /}
{dede:listrule sourcetype="hand" rssurl="http://" regxurl="http://"
startid="1" endid="" addv="1" urlrule="area" musthas="zzal"
nothas="" listpic="1" usemore="0"}
{dede:addurls}beij.weierkq.com/zzal/{/dede:addurls}
{dede:batchrule}{/dede:batchrule}
{dede:regxrule}{/dede:regxrule}
{dede:areastart}<div class="al_list">{/dede:areastart}
{dede:areaend}<div class="zj_fenye">
{/dede:areaend}
{/dede:listrule}
|
//
// Copyright (c) 2003--2009
// Toon Knapen, Karl Meerbergen, Kresimir Fresl,
// Thomas Klimpel and Rutger ter Borg
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// THIS FILE IS AUTOMATICALLY GENERATED
// PLEASE DO NOT EDIT!
//
#ifndef BOOST_NUMERIC_BINDINGS_BLAS_LEVEL1_SCAL_HPP
#define BOOST_NUMERIC_BINDINGS_BLAS_LEVEL1_SCAL_HPP
#include <boost/mpl/bool.hpp>
#include <boost/numeric/bindings/blas/detail/blas.h>
#include <boost/numeric/bindings/traits/traits.hpp>
#include <boost/numeric/bindings/traits/type_traits.hpp>
#include <boost/static_assert.hpp>
#include <boost/type_traits/is_same.hpp>
namespace boost {
namespace numeric {
namespace bindings {
namespace blas {
namespace level1 {
// overloaded functions to call blas
namespace detail {
inline void scal( integer_t const n, float const a, float* x,
integer_t const incx ) {
BLAS_SSCAL( &n, &a, x, &incx );
}
inline void scal( integer_t const n, double const a, double* x,
integer_t const incx ) {
BLAS_DSCAL( &n, &a, x, &incx );
}
inline void scal( integer_t const n, traits::complex_f const a,
traits::complex_f* x, integer_t const incx ) {
BLAS_CSCAL( &n, traits::complex_ptr(&a), traits::complex_ptr(x),
&incx );
}
inline void scal( integer_t const n, traits::complex_d const a,
traits::complex_d* x, integer_t const incx ) {
BLAS_ZSCAL( &n, traits::complex_ptr(&a), traits::complex_ptr(x),
&incx );
}
}
// value-type based template
template< typename ValueType >
struct scal_impl {
typedef ValueType value_type;
typedef typename traits::type_traits<ValueType>::real_type real_type;
typedef void return_type;
// templated specialization
template< typename VectorX >
static return_type invoke( value_type const a, VectorX& x ) {
detail::scal( traits::vector_size(x), a,
traits::vector_storage(x), traits::vector_stride(x) );
}
};
// low-level template function for direct calls to level1::scal
template< typename VectorX >
inline typename scal_impl< typename traits::vector_traits<
VectorX >::value_type >::return_type
scal( typename traits::vector_traits< VectorX >::value_type const a,
VectorX& x ) {
typedef typename traits::vector_traits< VectorX >::value_type value_type;
scal_impl< value_type >::invoke( a, x );
}
}}}}} // namespace boost::numeric::bindings::blas::level1
#endif
|
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <math.h>
using namespace std;
/*
็จๅบ้ป่พๅไธบไธคไธช้จๅ๏ผ
็ฌฌไธ้จๅๆจกๆ้คๆณ่ฟ็ฎ๏ผ
ๆฏ่ฟ่กไธๆญฅ้คๆณ่ฟ็ฎ๏ผ
้ฝ้่ฆๅฐๅฝๅๅพๅฐ็ๅๅไฝๆฐ๏ผ
ๅๅซไฟๅญๅจๆฐ็ปไธญ๏ผ
ๅนถไธไบค็ป็ฌฌไบ้จๅ่ฟ่กๅพช็ฏๆฃๆต๏ผ
็ฌฌไบ้จๅๅฐไผ ้่ฟๆฅ็ๅๅไฝๆฐ๏ผ
ๅไฟๅญๅจๆฐ็ปไธญ็ๅๅฒๅๅไฝๆฐไพๆฌกๆฏ่พ๏ผ
่ฅไธ็ธ็ญ๏ผๅ็ฅ็ฌฌไธ้จๅ็ปง็ปญ่ฟ่ก้คๆณ่ฟ็ฎ๏ผ
่ฅ็ธ็ญ๏ผๅ่ฎฐๅฝๅฝๅๅๆๅจไธๆ ๏ผ่ฏฅไธๆ ไธบๅพช็ฏ่่ตทๅงไฝ็ฝฎ๏ผ
็ดๅฐๆฐ็ป็ปๆไธบๅพช็ฏ่็ปๆใโ
@ๅ
ฌไผๅท๏ผไธ่ชไปฃ็
*/
int pos = 0;
//ๅฏปๆพๅพช็ฏ่๏ผๅฝๅไฝๆฐๅๅๅไนๅไฟๅญ็ไฝๆฐๅๅ็ธ็ญๆถๆพๅฐๅพช็ฏ่๏ผๅพช็ฏ่่ตทๅงไฝ็ฝฎไธบpos
bool find(vector<int> rem, vector<int> dec, int r, int c)
{
for (int i = 0; i < dec.size(); i++)
{
if (rem[i] == r && dec[i] == c)
{
pos = i;
return false;
}
}
return true;
}
//ๆจกๆ้คๆณ่ฟ็ฎ
void repetend(int n, int d)
{
string fp = to_string(n / d) + "."; //ๆดๆฐ้จๅ
if (n > d) //็ฌฌไธๆฌก้คๆณ
{
n = n % d;
}
int r, c; //rๆฏไฝๆฐ๏ผcๆฏๅ
c = n * 10 / d;
r = (n * 10) % d;
vector<int> rem, dec; //remๆฏๅๆฐ็ปไฟๅญไนๅ็ๅ๏ผdecๆฏไฝๆฐๆฐ็ปไฟๅญไนๅ็ไฝๆฐ
bool flag = true;
while (find(rem, dec, r, c))
{
dec.push_back(c);
rem.push_back(r);
r *= 10;
c = r / d;
r %= d;
if (c == 0)
{
flag = false; //flagไธบtrueไธบๅพช็ฏๅฐๆฐ๏ผflagไธบfalseไธบไธๅพช็ฏๅฐๆฐ
break;
}
}
cout << fp;
for (int i = 0; i < pos; i++)
{
cout << dec[i];
}
for (int i = pos; i < dec.size(); i++)
{
if (i == pos && flag)
{
cout << "(";
}
cout << dec[i];
if (i == dec.size() - 1 && flag)
{
cout << ")";
}
}
cout << endl;
}
int main()
{
int n1, n2, n3, n4, d1, d2, d3, d4;
scanf("%d/%d %d/%d %d/%d %d/%d", &n1, &d1, &n2, &d2, &n3, &d3, &n4, &d4);
repetend(n1, d1);
repetend(n2, d2);
repetend(n3, d3);
repetend(n4, d4);
system("pause");
return 0;
}
|
#include <iostream>
using namespace std;
int solve(string input,int k)
{
cout << "hello" << endl;
int n = input.size();
if(k > n)
{
return -1;
}
if(n==1 && k==1)
{
if(input[0]=='0')
{
return 0;
}
else
{
return 1;
}
}
int** dp = new int*[n];
for(int i=0;i<n;i++)
{
dp[i]=new int[n]();
}
for(int g=0;g<n;g++)
{
for(int i=0,j=g;j<n;i++,j++)
{
if(g==0)
{
if(input[i]==input[j] && input[i]=='1')
{
dp[i][j]+=1;
}
}
else if(g==1)
{
if(input[i]=='1')
{
dp[i][j]+=1;
}
if(input[j]=='1')
{
dp[i][j]+=1;
}
}
else
{
dp[i][j]+=dp[i-1][j-1];
if(input[i]=='1')
{
dp[i][j]+=1;
}
if(input[j]=='1')
{
dp[i][j]+=1;
}
}
}
}
cout<<"fun"<<endl;
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cout << dp[i][j] << " ";
}
cout << endl;
}
return 0;
}
|
/*
Cell.cpp
Contains funcitonality for the cell class
Fouad Al-Rijleh, Rachel Rudolph
*/
#include "Cell.h"
void Cell::setLocation(int i, int j)
{
location = { i, j };
}
void Cell::setLocation(vector<int> newLocation)
{
location = newLocation;
}
vector<int> Cell::getLocation()
{
return location;
}
void Cell::setValue(int newValue)
{
value = newValue;
}
int Cell::getValue()
{
return value;
}
Cell::Cell()
{
}
Cell::~Cell()
{
}
|
#ifndef SHADERCOMPILER_H
#define SHADERCOMPILER_H
#include "scene/RenderKey.h"
#include <string>
void compileVertexShader(const std::string &name);
void compilePixelShader(const std::string &name);
std::string pixelShaderName(const std::string &name, RenderKey::Features features);
void compilePixelShaderSet(const std::string &name, RenderKey::Features features);
#endif // SHADERCOMPILER_H
|
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <windows.h>
#include <xmmintrin.h>
#include <immintrin.h>
#include <emmintrin.h>
#include <thread>
using namespace std;
int a[1000000],b[1000000],c[1000000];
void add(int a); //This is the function that the thread called.
int main()
{
//Following is the serial process.
double start,end,t=0,t1,t2,t3;
srand( (int)time(0) );
cout<<"-------------- Serial process is starting. --------------"<<endl;
for(int r=0;r<1000;r++){
for(int i=0;i<999999;i++){
a[i]=rand()+1000000;
b[i]=rand()+1000000;
}
start=clock();
for(int i=0;i<999999;i++){
c[i]=a[i]+b[i];
}
end=clock();
t+=(double)(end-start)/CLOCKS_PER_SEC;
}
t1=t/1000;
t=0;
printf("The average time of serial process is %lf\n\n\n",t1);
//Following is the parallel process.
__m128i m,n,p;
cout<<"------------- Parallel process is starting. -------------"<<endl;
for(int r=0;r<1000;r++){
for(int i=0;i<999999;i++){
a[i]=rand()+1000000;
b[i]=rand()+1000000;
}
for(int i=0;i<999997;i+=4){
m=_mm_set_epi32(a[i],a[i+1],a[i+2],a[i+3]);
n=_mm_set_epi32(b[i],b[i+1],b[i+2],b[i+3]);
start=clock();
p=_mm_add_epi32(m,n);
end=clock();
t+=(double)(end-start)/CLOCKS_PER_SEC;
}
}
t2=t/1000;
t=0;
printf("The average time of parallel process is %lf\n\n",t2);
printf("The speedup of parallel process is %lf\n\n\n",t1/t2);
//Following is the multithreading.
cout<<"-------------- Multithreading is starting. --------------"<<endl;
auto core=thread::hardware_concurrency();
cout<<"The number of the CPU threads is "<<core<<endl;
for(int r=0;r<1000;r++){
for(int i=0;i<999999;i++){
a[i]=rand()+1000000;
b[i]=rand()+1000000;
}
start=clock();
thread th1(add,0);
thread th2(add,250000);
thread th3(add,500000);
thread th4(add,750000);
th1.join();
th2.join();
th3.join();
th4.join();
end=clock();
t+=(double)(end-start)/CLOCKS_PER_SEC;
}
t3=t/1000;
t=0;
printf("The time of multithreading is %lf\n\n",t3);
printf("The speedup of multithreading is %lf\n\n\n",t1/t3);
return 0;
}
//The following is the function that the thread called.
void add(int p)
{
for(int i=p;i<p+250000;i++){
c[i]=a[i]+b[i];
}
}
|
/*----------------------------------------------------------------------------*
* ํ์ผ๋ช
: haPremiumItemItem.h
* ํ๋์ผ : ํ๋ฆฌ๋ฏธ์ ์์ดํ
์๋น์ค๊ด๋ จ
* ์์ฑ์ผ : ์ต์ข
์
๋ฐ์ดํธ 2005๋
9์
* ์ ์ฑ์ : ํ๋์ฉ
*-----------------------------------------------------------------------------*/
#pragma once
/*----------------------------------------------------------------------------*
* Desc: ์ ์งํ ์๋ชจ์ฑ ์์ดํ
์ผ ๊ฒฝ์ฐ
*-----------------------------------------------------------------------------*/
namespace nsPremiumItem{
enum _Item{
THIRD_EYES = 1, //์์ดํ
๋๋์ฆ๊ฐ
EXPUP_POTION = 2, //๊ฒฝํ์น ์
ํฌ์
VAMPIRIC_CUS = 3, //๋ฑํผ๋ฆญ ์ปค์คํ
MANA_RECHAR_P = 4, //๋ง๋ ๋ฆฌ์ฐจ์ง ํฌ์
MIGHT_OF_AWELL = 5, // pluto ๋ง์ดํธ ์ค๋ธ ์์ฐ
MANA_REDUCE_P = 6, // pluto ๋ง๋ ๋ฆฌ๋์ค
PHENIX_PET = 7, // pluto ํซ(ํด์ธ)
HELP_PET_TERRY = 8, // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ
HELP_PET_NEPSYS= 9, // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ
HELP_PET_IO = 10, // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ
HELP_PET_MUTE = 11, // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ
VAMPIRIC_CUS_EX = 12, // ์ฅ๋ณ - ๋ฑํผ๋ฆญ ์ปค์คํ EX
STAMINA_REDUCE_P = 13, // ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
//์ถํ์ถ๊ฐ
};
}
using namespace nsPremiumItem;
// pluto ํซ(ํด์ธ)
#define SINUPKEEPITEM_MAX 13 // pluto ๋ง๋ ๋ฆฌ๋์ค ํฌ์
๋ง์ดํธ ์ค๋ธ ์์ฐ ์ถ๊ฐ // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ 8 -> 11 // ์ฅ๋ณ - ๋ฑํผ๋ฆญ ์ปค์คํ EX 11 -> 12
// ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
12 -> 13
/*----------------------------------------------------------------------------*
* Desc: CONST ํ ์๊ฐํ์ DWORD ํํ๋ฅผ ๋ค๋ค.
*-----------------------------------------------------------------------------*/
const DWORD SINITEM_TIME_5MINUTE = (15*60*1); //15๋ถ
const DWORD SINITEM_TIME_10MINUTE = (30*60*1); //30๋ถ
const DWORD SINITEM_TIME_3HOURS = (3*60*60*1); //3์๊ฐ
const DWORD SINITEM_TIME_ONEDAY = (24*60*60*1); //1์ผ
const DWORD SINITEM_TIME_SEVENDAY = (7*24*60*60*1); //7์ผ
const DWORD SINITEM_TIME_30DAY = (30*24*60*60*1); //30์ผ
// ์ฅ๋ณ - ๊ฒฝํ์น์ฆ๊ฐ ํฌ์
(100% 1์๊ฐ)
const DWORD SINITEM_TIME_1HOURS = (1*60*60*1); //1์๊ฐ
/*----------------------------------------------------------------------------*
* Desc: ํ
๋ ํฌํธ ์ฝ์ด
*-----------------------------------------------------------------------------*/
struct sTelePortCore{
short FieldIndex[2];
bool PageButtonFlag[2];
short PageIndex;
short ItemIndex;
char FieldName[64];
};
/*----------------------------------------------------------------------------*
* Desc: ์ฌ์ฉ์ ์ ์ง ๋ผ๋ ์์ดํ
*-----------------------------------------------------------------------------*/
struct sUpKeepItem{
int TGAImageNumber;
bool Visible; //์ ์งํ ์์ดํ
bool Infoflag; //์ ์งํ ์์ดํ
์ ๋ณด๋ฅผ ๋ณด์ฌ์ค๋ค.
char Id[32];
int PosiX;
int PosiY;
DWORD IconTime[2];
short Alpha;
short Alphakind;
int Per; //์์ดํ
ํ๋ฅ ์์น๋ฅผ ๋ํ๋ด๊ธฐ ์ํด.
};
/*----------------------------------------------------------------------------*
* class cHaPremiumItem
*-----------------------------------------------------------------------------*/
class cHaPremiumItem
{
public:
DIRECTDRAWSURFACE lpUpKeepItemBackImage[SINUPKEEPITEM_MAX]; //์ฌ์ฉ๋ผ๋ ์ด๋ฏธ
sTelePortCore TelePortCore; //ํ
๋ ํฌํธ ์ฝ์ด
sUpKeepItem UpKeepItem[SINUPKEEPITEM_MAX]; //๊ฒฝํ์น ์์น ์์ดํ
bool UseClickPremiumItemFlag; //ํ๋ฆฌ๋ฏธ์ ์์ดํ
์ฌ์ฉ์ ๋ชจ์
์ด ๋ฉ์ถ์ด์ผํ๋๊ฒ์ฒดํฌ
int Using_ItemKind;
int UpKeepItemTGAImage[SINUPKEEPITEM_MAX]; //์ฌ์ฉ๋ผ๋ ์ด๋ฏธ์ง
bool haItemUseDelayFlag;
int Using_SelectInvenItemIndex; // ๋ฐ์ฌ์ - ์ด๋ ์์ ์์ดํ
(์ธ๋ฒค์์ ์ ํ๋ ์์ดํ
์ธ๋ฑ์ค๋ฅผ ๊ฐ์ง๋ค.)
//์ ์ง๋ผ๋ ์๊ฐ
DWORD m_ThirdEyesTime;
DWORD m_ExpUpPotionTime;
DWORD m_VampiricCuspidTime;
DWORD m_ManaRechargingPTime;
DWORD m_ManaReducePotiontime; // pluto ๋ง๋ ๋ฆฌ๋์ค ํฌ์
int m_ManaReducePotionValue; // pluto ๋ง๋ ๋ฆฌ๋์ค ํฌ์
๊ฐ์ %๊ฐ
DWORD m_MightofAwellTime; // pluto ๋ง์ดํธ ์ค๋ธ ์์ฐ
int m_MightofAwellWeight; // pluto ๋ง์ดํธ ์ค๋ธ ์์ฐ ์์ง๋
DWORD m_PhenixPetTime; // pluto ํซ(ํด์ธ)
DWORD m_HelpPetTime; // ๋ฐ์ฌ์ - ๋น๋ง ๋์ฐ๋ฏธ ํซ ์ถ๊ฐ
DWORD m_VampiricCuspidEXTime; // ์ฅ๋ณ - ๋ฑํผ๋ฆญ ์ปค์คํ EX
DWORD m_StaminaReducePotiontime; // ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
int m_StaminaReducePotionValue; // ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
๊ฐ์ %๊ฐ
// ์ฅ๋ณ - ํ
๋ฆฌ ์์ฑ
DWORD m_TerryTime;
public:
cHaPremiumItem();
~cHaPremiumItem();
//msg
void init();
void Main();
void Draw();
void DrawUp();
void KeyDown(); //ํค ์ฒดํฌ
void LButtonDown(int x , int y);
void LButtonUp(int x,int y);
int DrawText();
//ํ๋ฆฌ๋ฏธ์ ๋ถ๋ถ ์ ๋ฃํ ์์ดํ
vvvvv
int UsePremiumItem(int kind=0); //์ฌ์ฉ
int SetPremiumItemSkill(int kind=0); //๊ธฐ๋ฅ์ฑ ์์ดํ
์ฌ์ฉ
int UseTeleportScrollItem(short ItemIndex); //ํ
๋ ํฌํธ์ฝ์ด ์์ดํ
์ฌ์ฉ
int CheckWindowOpen(); //๋ง์์์ ์ฌ์ฉ๋ผ๋ ์์ดํ
์ฐฝ์ด ์ด๋ ค์ ธ ์์๊ฒฝ์ฐ๋ ์ฌ์ฉ๋ถ๊ฐ
int CheckUpKeepItem(); //์ฌ์ฉ์ ์ ์ง๋ผ๋ ์์ดํ
์ฒดํฌ
void InfoBox(int PoisX,int PosiY,int Width,int Height); //๊ฐ๋ก ์ธ๋ก ๊ฐ์ ๋ฐ์ ๋ฐ์ค๋ฅผ ๋ง๋ ๋ค.
int SetUpKeepItem(int kind,DWORD dwTime,bool visible,char* id,int Percent = 0,short ItemType=0);
int cHaPremiumItem::CheckTime(DWORD CurrentTime);
//์๋ฒ์์ ํ์ฌ ๋จ์ ์๊ฐ์ ๋ฐ์ ์จ๋ค.
void SetThirdEyesTime(DWORD Time){ m_ThirdEyesTime = Time;};
void SetExpUpPotionTime(DWORD Time){ m_ExpUpPotionTime = Time;};
void SetVampiricCuspidTime(DWORD Time){ m_VampiricCuspidTime = Time;};
void SetVampiricCuspidEXTime(DWORD Time){ m_VampiricCuspidEXTime = Time;}; // ์ฅ๋ณ - ๋ฑํผ๋ฆญ ์ปค์คํ EX
void SetManaRechargingPTime(DWORD Time){ m_ManaRechargingPTime = Time;};
void SetManaReducePotionTime(DWORD Time){ m_ManaReducePotiontime = Time; }; // pluto ๋ง๋ ๋ฆฌ๋์ค ํฌ์
void SetManaReducePotionValue(int Value){ m_ManaReducePotionValue = Value; }; // pluto ๋ง๋ ๋ฆฌ๋์ค ํฌ์
๊ฐ์ %๊ฐ
void SetMightOfAwellTime(DWORD Time){ m_MightofAwellTime = Time; }; // pluto ๋ง์ดํธ ์ค๋ธ ์์ฐ
void SetMightOfAwellWeight(int Weight){ m_MightofAwellWeight = Weight; }; // pluto ๋ง์ดํธ ์ค๋ธ ์์ฐ ์์ง๋
void SetPhenixPetTime(DWORD Time){ m_PhenixPetTime = Time; }; // pluto ํซ(ํด์ธ)
void SetStaminaReducePotionTime(DWORD Time){ m_StaminaReducePotiontime = Time; }; // ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
void SetStaminaReducePotionValue(int Value){ m_StaminaReducePotionValue = Value; }; // ๋ฐ์ฌ์ - ๊ทผ๋ ฅ ๋ฆฌ๋์ค ํฌ์
๊ฐ์ %๊ฐ
// ์ฅ๋ณ - ํ
๋ฆฌ ์์ฑ
void SetHelpPetTimeTime(DWORD Time){ m_TerryTime = m_HelpPetTime = Time; };
//ํค์ดํดํธํฌ์
int UseHairtintPotion(int ItemKind);//ItemKind 1-Aํ 2-Bํ 3-Cํ 4-Dํ 5-E , 6-F, 7-G, 8-H,
// ๋ฐ์ฌ์ - ์์ด์ง ๋ง์คํฐ ์์ดํ
int UseAgingMaster(int ItemKind);
// ๋ฐ์ฌ์ - ์คํฌ ๋ง์คํฐ ์์ดํ
int UseSkillMaster(int ItemKind);
// ๋ฐ์ฌ์ - ์ด๋ ์์ ์์ดํ
int UseMoveShop();
};
extern cHaPremiumItem chaPremiumitem;
|
//
// Created by sxg on 2019/9/21.
//
#include <iostream>
using namespace std;
struct Node {
int data;
Node* next;
explicit Node(int x) {
data = x;
next = nullptr;
}
};
class Queue {
private:
Node* front;
Node* rear;
public:
Queue() {
front = rear = nullptr;
}
~Queue() {
Node *tmp;
while (front) {
tmp = front;
front = front->next;
delete tmp;
}
}
bool isEmpty() {
return front == nullptr;
}
void enqueue(int x) {
Node* tmp;
tmp = new Node(x);
// ็ฉบ้ๅ
if (isEmpty()) {
front = rear = tmp;
} else { // ไธ็ฉบ
rear->next = tmp;
rear = tmp;
}
}
bool dequeue(int *px) {
if (isEmpty()) return false;
else {
*px = front->data;
Node* tmp;
tmp = front;
front = front->next;
delete tmp;
if (isEmpty()) {
rear = nullptr;
}
return true;
}
}
};
int main() {
Queue q;
q.enqueue(11);
q.enqueue(22);
q.enqueue(33);
q.enqueue(44);
q.enqueue(55);
int x = 0;
q.dequeue(&x);
cout << x << endl;
q.dequeue(&x);
cout << x << endl;
q.dequeue(&x);
cout << x << endl;
q.dequeue(&x);
cout << x << endl;
q.dequeue(&x);
cout << x << endl;
q.dequeue(&x);
cout << x << endl;
return 0;
}
|
#ifndef IMAGE_FORMAT_CONVERT_H
#define IMAGE_FORMAT_CONVERT_H
#include <list>
#include <opencv/cv.h>
#include <opencv2/opencv.hpp>
class QImage;
using std::list;
QImage* IplImageToQImage( const IplImage* iplImage );
void getBinMask( cv::Mat& comMask, cv::Mat& binMask );
cv::Mat grabCutSeg( cv::Mat im, cv::Mat& mask, cv::Rect rect, int mode );
IplImage* QImageToIplImage( const QImage& qImage );
#endif
|
#ifndef SSPEDITOR_LEVELHANDLER_LEVELHANDLER_H
#define SSPEDITOR_LEVELHANDLER_LEVELHANDLER_H
#include <fstream>
#include "LevelHeaders.h"
#include "Level.h"
#include <qfiledialog.h>
#include <DataHandler.h>
class LevelHandler
{
enum Operation {
LOAD,
SAVE
};
private:
Level m_currentLevel;
QString filePath = "//DESKTOP-BOKNO6D/server/Assets/bbf files/Levels/";
LevelHandler();
GraphicsHandler* m_graphicsHandler;
public:
~LevelHandler();
static LevelHandler* GetInstance();
void SetGraphicsHandler(GraphicsHandler* gh);
LevelData::LevelStatus ExportLevelFile(QString & filepath = QString());
LevelData::LevelStatus ImportLevelFile();
LevelData::LevelStatus NewLevel();
Level* GetCurrentLevel() { return &this->m_currentLevel; };
private:
std::string GetFilePathAndName(Operation flag);
#pragma region Save Functions
LevelData::MainLevelHeader GetMainHeader();
LevelData::SceneLightHeader GetSceneLightHeader();
LevelData::LevelStatus GetEntityData(char* dataPtr);
LevelData::LevelStatus GetResourceData(char* dataPtr);
LevelData::LevelStatus GetSpawnData(char* dataPtr);
LevelData::LevelStatus GetAiData(char* dataPtr);
LevelData::LevelStatus GetCheckpointData(char* dataPtr);
LevelData::LevelStatus GetButtonData(char* dataPtr);
LevelData::LevelStatus GetDoorData(char* dataPtr);
LevelData::LevelStatus GetLeverData(char * dataPtr);
LevelData::LevelStatus GetWheelData(char * dataPtr);
LevelData::LevelStatus GetPointLightData(char * dataPtr);
#pragma endregion
#pragma region Load Functions
LevelData::LevelStatus LoadEntities(LevelData::EntityHeader* dataPtr, size_t numEntities);
LevelData::LevelStatus LoadAiComponents(LevelData::AiHeader* dataPtr, size_t numComponents);
LevelData::LevelStatus LoadCheckpointComponents(LevelData::CheckpointHeader* dataPtr, size_t numComponents);
LevelData::LevelStatus LoadPointLightComponents(LevelData::PointLightHeader *dataPtr, size_t numComponents);
LevelData::LevelStatus LoadTriggerComponents(LevelData::ButtonHeader* dataPtr, size_t numComponents);
LevelData::LevelStatus LoadTriggerComponents(LevelData::DoorHeader* dataPtr, size_t numComponents);
LevelData::LevelStatus LoadTriggerComponents(LevelData::WheelHeader* dataPtr, size_t numComponents);
LevelData::LevelStatus LoadTriggerComponents(LevelData::LeverHeader* dataPtr, size_t numComponents);
#pragma endregion
bool VerifyTriggerData(ListenerContainer* listener); //checks that the connected triggers to a container still exists, This is because things can be converted or deleted
};
#endif
|
#ifndef __INIT_DEVICES
#define __INIT_DEVICES
void init_devices();
#endif // __INIT_DEVICES
|
//
// Copyright Jason Rice 2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
#ifndef NBDL_FWD_WEBSOCKET_SERVER_ENDPOINT_HPP
#define NBDL_FWD_WEBSOCKET_SERVER_ENDPOINT_HPP
#include <nbdl/websocket/detail/endpoint_impl.hpp>
#include <boost/asio/ip/tcp.hpp>
namespace nbdl::websocket
{
template <typename SendMessageImpl, typename Derived = void>
struct server_endpoint_impl
{
boost::asio::ip::tcp::socket socket;
};
using server_endpoint = server_endpoint_impl<decltype(detail::send_binary)>;
using server_endpoint_text = server_endpoint_impl<decltype(detail::send_text)>;
template <typename Derived>
using server_endpoint_base = server_endpoint_impl<decltype(detail::send_binary), Derived>;
template <typename Derived>
using server_endpoint_text_base = server_endpoint_impl<decltype(detail::send_text), Derived>;
}
#endif
|
#include <iostream>
#include <fstream>
#include <string>
std::string find_lcs(const std::string &s1, const std::string &s2)
{
std::string best = "";
for (size_t i = 0; i < s1.size(); i++) {
std::string s;
std::string s2s = s2;
size_t n = s2s.find_first_of(s1[i]);
if (n != std::string::npos) {
s += s2s[n];
s2s = s2s.substr(n+1);
s += find_lcs(s1.substr(i+1), s2s);
}
if (s.size() > best.size()) {
best = s;
}
}
return best;
}
int main(int argc, char **argv)
{
if (argc != 2) {
return 0;
}
std::ifstream f(argv[1]);
while (true) {
std::string line;
std::getline(f, line);
if (f.fail()) {
break;
}
size_t n = line.find(';');
std::cout << find_lcs(line.substr(0,n), line.substr(n+1)) << '\n';
}
return 0;
}
|
#ifndef _GUN_
#define _GUN_
#include <string>
using namespace std;
class Gun{
private:
string name;
string gunImage;
string gunImage_fired;
string shotgun[3];
int damage; //how many hits to kill monster
int fireRate; //when gun can fire again in seconds.
int clipSize; //bullets in one clip
public:
Gun();
~Gun();
Gun *getPistol();
Gun *getShotgun();
Gun *getRifle();
string getName();
string getGunImage();
string getGunImage_fired();
int getDamage();
int getFireRate();
int getClipSize();
int getRange();
string getSound();
};
#endif
|
/*
* Copyright (c) 2009-2012 Andrรฉ Tupinambรก (andrelrt@gmail.com)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
//-----------------------------------------------------------------------------
#include "msg_program.h"
using dcl::remote_id_t;
using dcl::remote_ids_t;
//-----------------------------------------------------------------------------
namespace dcl {
namespace network {
namespace message {
//-----------------------------------------------------------------------------
// msgCreateProgramWithSource
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithSource >::create_request( void* payload_ptr )
{
msgCreateProgramWithSource_request* request_ptr =
reinterpret_cast< msgCreateProgramWithSource_request* >( payload_ptr );
request_ptr->context_id_ = host_to_network( context_id_ );
request_ptr->source_code_len_ = host_to_network( static_cast<uint32_t>( source_code_.length() ) );
memcpy( request_ptr->source_code_, source_code_.data(), source_code_.length() );
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithSource >::parse_request( const void* payload_ptr )
{
const msgCreateProgramWithSource_request* request_ptr =
reinterpret_cast< const msgCreateProgramWithSource_request* >( payload_ptr );
context_id_ = network_to_host( request_ptr->context_id_ );
source_code_.assign( reinterpret_cast<const char*>( request_ptr->source_code_ ),
network_to_host( request_ptr->source_code_len_ ) );
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithSource >::create_response( void* payload_ptr )
{
dcl::remote_id_t* response_ptr = reinterpret_cast< dcl::remote_id_t* >( payload_ptr );
*response_ptr = host_to_network( remote_id_ );
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithSource >::parse_response( const void* payload_ptr )
{
const dcl::remote_id_t* response_ptr =
reinterpret_cast< const dcl::remote_id_t* >( payload_ptr );
remote_id_ = network_to_host( *response_ptr );
}
//-----------------------------------------------------------------------------
// msgCreateProgramWithBinary
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithBinary >::create_request( void* payload_ptr )
{
msgCreateProgramWithBinary_request* request_ptr =
reinterpret_cast< msgCreateProgramWithBinary_request* >( payload_ptr );
request_ptr->context_id_ = host_to_network( context_id_ );
request_ptr->devices_count_ = host_to_network( static_cast<uint16_t>( devices_.size() ) );
dcl::remote_id_t* device_id = reinterpret_cast<dcl::remote_id_t*>( request_ptr->buffer_ );
for( uint16_t i = 0; i < devices_.size(); ++i )
{
*device_id = host_to_network( devices_[ i ] );
++device_id;
}
uint32_t* lengths = reinterpret_cast<uint32_t*>( device_id );
for( uint16_t i = 0; i < devices_.size(); ++i )
{
*lengths = host_to_network( static_cast<uint32_t>( lengths_[ i ] ) );
++lengths;
}
uint8_t* binaries = reinterpret_cast<uint8_t*>( lengths );
for( uint16_t i = 0; i < devices_.size(); ++i )
{
memcpy( binaries, binaries_[ i ], lengths_[ i ] );
binaries += lengths_[ i ];
}
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithBinary >::parse_request( const void* payload_ptr )
{
const msgCreateProgramWithBinary_request* request_ptr =
reinterpret_cast< const msgCreateProgramWithBinary_request* >( payload_ptr );
context_id_ = network_to_host( request_ptr->context_id_ );
size_t device_count = network_to_host( request_ptr->devices_count_ );
devices_.reserve( device_count );
lengths_.reserve( device_count );
const dcl::remote_id_t* device_id = reinterpret_cast<const dcl::remote_id_t*>( request_ptr->buffer_ );
for( uint16_t i = 0; i < device_count; ++i )
{
devices_.push_back( network_to_host( *device_id ) );
++device_id;
}
const uint32_t* lengths = reinterpret_cast<const uint32_t*>( device_id );
for( uint16_t i = 0; i < device_count; ++i )
{
lengths_.push_back( network_to_host( *lengths ) );
++lengths;
}
const uint8_t* binaries = reinterpret_cast<const uint8_t*>( lengths );
new_binaries_ = true;
binaries_ = new const unsigned char*[ device_count ];
for( uint16_t i = 0; i < devices_.size(); ++i )
{
binaries_[ i ] = binaries;
binaries += lengths_[ i ];
}
binary_status_.resize( device_count, CL_INVALID_BINARY );
set_res_size();
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithBinary >::create_response( void* payload_ptr )
{
msgCreateProgramWithBinary_response* response_ptr =
reinterpret_cast< msgCreateProgramWithBinary_response* >( payload_ptr );
response_ptr->program_id_ = host_to_network( remote_id_ );
response_ptr->status_count_ = host_to_network( static_cast<uint16_t>( binary_status_.size() ) );
for( uint16_t i = 0; i < binary_status_.size(); ++i )
{
response_ptr->binary_status_[ i ] = host_to_network( static_cast<uint16_t>(-binary_status_[i]) );
}
}
//-----------------------------------------------------------------------------
void dcl_message< msgCreateProgramWithBinary >::parse_response( const void* payload_ptr )
{
const msgCreateProgramWithBinary_response* response_ptr =
reinterpret_cast< const msgCreateProgramWithBinary_response* >( payload_ptr );
remote_id_ = network_to_host( response_ptr->program_id_ );
size_t status_count = network_to_host( response_ptr->status_count_ );
binary_status_.clear();
binary_status_.reserve( status_count );
for( uint16_t i = 0; i < status_count; ++i )
{
binary_status_.push_back( static_cast<cl_int>( -network_to_host( response_ptr->binary_status_[ i ] ) ) );
}
}
//-----------------------------------------------------------------------------
// msgBuildProgram
//-----------------------------------------------------------------------------
void dcl_message< msgBuildProgram >::create_request( void* payload_ptr )
{
msgBuildProgram_request* request_ptr =
reinterpret_cast< msgBuildProgram_request* >( payload_ptr );
request_ptr->program_id_ = host_to_network( program_id_ );
request_ptr->devices_count_ = host_to_network( static_cast<uint16_t>( devices_.size() ) );
request_ptr->build_options_len_ = host_to_network( static_cast<uint32_t>( build_options_.length() ) );
remote_id_t* devices_ptr = reinterpret_cast<dcl::remote_id_t*>( request_ptr->buffer_ );
for( remote_ids_t::iterator it = devices_.begin(); it != devices_.end(); ++it )
{
*devices_ptr++ = *it;
}
uint8_t* build_options_ptr = request_ptr->buffer_ + sizeof( remote_id_t ) * devices_.size();
memcpy( build_options_ptr, build_options_.data(), build_options_.length() );
}
//-----------------------------------------------------------------------------
void dcl_message< msgBuildProgram >::parse_request( const void* payload_ptr )
{
const msgBuildProgram_request* request_ptr =
reinterpret_cast< const msgBuildProgram_request* >( payload_ptr );
program_id_ = network_to_host( request_ptr->program_id_ );
uint32_t device_count = network_to_host( request_ptr->devices_count_ );
devices_.clear();
if( device_count != 0 )
{
devices_.reserve( device_count );
const remote_id_t* devices_ptr = reinterpret_cast<const remote_id_t*>( request_ptr->buffer_ );
for( uint32_t i = 0; i < device_count; i++ )
{
devices_.push_back( devices_ptr[ i ] );
}
}
const uint8_t* build_options_ptr = request_ptr->buffer_ + sizeof( remote_id_t ) * device_count;
build_options_.assign( reinterpret_cast<const char*>( build_options_ptr ),
network_to_host( request_ptr->build_options_len_ ) );
}
//-----------------------------------------------------------------------------
// msgGetProgramBuildInfo
//-----------------------------------------------------------------------------
void dcl_message< msgGetProgramBuildInfo >::create_request( void* payload_ptr )
{
msgGetProgramBuildInfo_request* request_ptr =
reinterpret_cast< msgGetProgramBuildInfo_request* >( payload_ptr );
request_ptr->id_ = host_to_network( remote_id_ );
request_ptr->device_id_ = host_to_network( device_id_ );
request_ptr->build_info_ = host_to_network( static_cast<uint32_t>( build_info_ ) );
}
//-----------------------------------------------------------------------------
void dcl_message< msgGetProgramBuildInfo >::parse_request( const void* payload_ptr )
{
const msgGetProgramBuildInfo_request* request_ptr =
reinterpret_cast< const msgGetProgramBuildInfo_request* >( payload_ptr );
remote_id_ = network_to_host( request_ptr->id_ );
device_id_ = network_to_host( request_ptr->device_id_ );
build_info_ = static_cast<cl_program_build_info>( network_to_host( request_ptr->build_info_ ) );
}
//-----------------------------------------------------------------------------
void dcl_message< msgGetProgramBuildInfo >::create_response( void* payload_ptr )
{
uint32_t* response_ptr = reinterpret_cast< uint32_t* >( payload_ptr );
if( build_info_ == CL_PROGRAM_BUILD_STATUS )
{
*response_ptr = host_to_network( static_cast<uint32_t>( build_status_ ) );
}
else if( build_info_ == CL_PROGRAM_BUILD_LOG )
{
*response_ptr = host_to_network( static_cast<uint32_t>( build_log_.length() ) );
if( *response_ptr != 0 )
{
memcpy( response_ptr+1, build_log_.data(), build_log_.length() );
}
}
}
//-----------------------------------------------------------------------------
void dcl_message< msgGetProgramBuildInfo >::parse_response( const void* payload_ptr )
{
const uint32_t* response_ptr =
reinterpret_cast< const uint32_t* >( payload_ptr );
if( build_info_ == CL_PROGRAM_BUILD_STATUS )
{
build_status_ = static_cast<cl_build_status>( network_to_host( *response_ptr ) );
}
else if( build_info_ == CL_PROGRAM_BUILD_LOG )
{
build_log_.clear();
uint32_t len = network_to_host( *response_ptr );
if( len != 0 )
{
const uint8_t* begin = reinterpret_cast<const uint8_t*>( response_ptr + 1 );
build_log_.assign( begin, begin + len );
}
}
}
//-----------------------------------------------------------------------------
}}} // namespace dcl::network::message
//-----------------------------------------------------------------------------
|
#include "Camera.h"
#include "Sky.h"
#include "Highway.h"
#include "EndScreen.h"
#include "Digit.h"
#include "Earth.h"
#include <vector>
#include <iostream>
#include <time.h>
/**
\mainpage Ball Run
* Moldoveanu Florin & Maria Negrea & Bogdan Musat & Ferencz Timea & Catalin Ionescu
* 05 / 09 / 2014 -> 10/ 09/ 2014
* This is a game similar to temple run with the protagonist being a route66 ball.
* The game invites you in trying to reach a score of 66 points.
* Take sharper and sharper turns as your speed increasing leading to your inevitable defeat by missing a turn.
* We are using the Glut Library for using drawing methods in OpenGL.
* In order to build this project under Windows, one must use the Visual Studio suite (v. 2008 recommended).
*/
using namespace std;
Textures* Textures::instance = NULL;
Camera *mainCamera = new Camera();
Ball *newBall = new Ball(Point3D(0, 0, 1),-0.9, 0.5);
Earth *newEarth = new Earth();
int count = 0;
Point3D point;
Sky* sky = new Sky(30);
Scene* scene;
Highway* highway = new Highway(scene);
EndScreen *screen = new EndScreen();
bool isGameOver = false;
GLfloat* score;
Digit *scoreDigit1;
Digit *scoreDigit2;
void Initialize()
{
srand(time(0));
score = new GLfloat[1];
*score = 0;
scoreDigit1 = new Digit(0,0,score);
scoreDigit2 = new Digit(0,1,score);
scene = new Scene();
highway = new Highway(scene);
glEnable(GL_DEPTH_TEST);
glEnable(GL_TEXTURE_2D);
glClearColor(0.0, 0.0, 0.0, 0.0);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glEnable(GL_BLEND);
mainCamera->Follow(newBall);
sky->Follow(newBall);
highway->Follow(newBall);
scoreDigit1->Follow(newBall,Point3D(9,5,3));
scoreDigit2->Follow(newBall,Point3D(9,5,1));
scene->SetMainCamera(mainCamera);
scene->AddObject(newBall);
scene->AddObject(newEarth);
scene->AddObject(highway);
scene->AddObject(sky);
scene->AddObject(scoreDigit1);
scene->AddObject(scoreDigit2);
Textures::GetInstance()->LoadGLTextures();
}
void Draw()
{
scene->Render();
}
void specialKey(int key, int x, int y)
{
switch(key)
{
case GLUT_KEY_RIGHT :
if(highway->CanMoveRight(point))
newBall->MoveRight(point+newBall->GetRight());
break;
case GLUT_KEY_LEFT :
if(highway->CanMoveLeft(point))
newBall->MoveLeft(point-newBall->GetRight());
break;
}
glutPostRedisplay();
}
void GameOver()
{
mainCamera->UnFollow();
sky->UnFollow();
scoreDigit1->UnFollow();
scoreDigit2->UnFollow();
scene->AddObject(screen);
screen->Translate(screen->GetTranslate()*(-1));
screen->Translate(newBall->GetTranslate());
screen->Rotate(screen->GetRotate()*(-1));
screen->Rotate(Point3D(0.0, newBall->GetRotate().y, 0.0));
isGameOver = true;
}
void CheckGameOver()
{
if(!isGameOver && highway->IsOffRoad())
{
GameOver();
}
}
void Timer(int value)
{
Point3D lastBallPosition = newBall->GetTranslate();
scene->Update();
if(!isGameOver);
{
*score = *score + (newBall->GetTranslate()-lastBallPosition).Magnitude()/100*1.5;
}
CheckGameOver();
glutPostRedisplay();
glutTimerFunc(30, Timer, 0);
}
void reshape(int w, int h)
{
glViewport(0, 0, (GLsizei) w, (GLsizei) h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(60.0, (GLfloat) w/(GLfloat) h, 1.0, 10000.0);
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowSize(768, 768);
glutInitWindowPosition(200, 200);
glutCreateWindow("BallRun");
Initialize();
glutDisplayFunc(Draw);
glutSpecialFunc(specialKey);
glutTimerFunc(30, Timer, 0);
glutReshapeFunc(reshape);
glutMainLoop();
return 0;
}
|
#include "tableManager.h"
TableManager& TableManager::getInstance() {
static TableManager instance;
return instance;
}
TableManager::~TableManager() {
for (SymbolTable* table : tables) {
if (table != nullptr) delete table;
}
}
void TableManager::pushScope() {
if (tables.size() >= stackLimit) return;
SymbolTable* table = new SymbolTable();
tables.push_back(table);
++currentScope;
}
void TableManager::popScope() {
if (currentScope == 0) return;
tables.pop_back();
--currentScope;
}
const SymbolTable* TableManager::currentTable() {
return tables[currentScope];
}
int TableManager::getCurrentScope() const {
return currentScope;
}
const Node* TableManager::getFunc(const std::string& name) {
const Node* res = tables[currentScope]->getFunc(name);
if (!res) {
int lookupScope = currentScope - 1;
while (lookupScope >= 0) {
res = tables[lookupScope]->getFunc(name);
if (res) return res;
--lookupScope;
}
throw std::string("NameError: name ") + name + std::string(" is not defined");
}
return res;
}
const Literal* TableManager::getValue(const std::string& name) {
const Literal* res = tables[currentScope]->getValue(name);
if (!res) {
int lookupScope = currentScope - 1;
while (lookupScope >= 0) {
res = tables[lookupScope]->getValue(name);
if (res) return res;
--lookupScope;
}
throw std::string("NameError: name ") + name + std::string(" is not defined");
}
return res;
}
void TableManager::setFunc(const std::string& name, const Node* node) {
tables[currentScope]->setFunc(name, node);
}
void TableManager::setValue(const std::string& name, const Literal* val) {
tables[currentScope]->setValue(name, val);
}
void TableManager::print() const {
std::cout << "current scope: " << currentScope << std::endl;
tables[currentScope]->print();
}
|
#include "span/io/streams/Fd.hh"
#include <sys/fcntl.h>
#include <sys/stat.h>
#include <sys/uio.h>
#include <algorithm>
#include <limits>
#include <vector>
#include "span/Common.hh"
#include "span/io/IOManager.hh"
#include "span/io/streams/Buffer.hh"
#include "span/exceptions/Assert.hh"
#include "glog/logging.h"
namespace span {
namespace io {
namespace streams {
FDStream::FDStream() : ioManager_(NULL), scheduler_(NULL), fd_(-1), own_(false), cancelledRead_(false),
cancelledWrite_(false) {}
void FDStream::init(int fd, ::span::io::IOManager *ioManager, ::span::fibers::Scheduler *scheduler, bool own) {
SPAN_ASSERT(fd >= 0);
ioManager_ = ioManager;
scheduler_ = scheduler;
fd_ = fd;
own_ = own;
cancelledRead_ = cancelledWrite_ = false;
if (ioManager_) {
if (fcntl(fd_, F_SETFL, O_NONBLOCK)) {
if (own) {
::close(fd_);
fd_ = -1;
}
throw std::runtime_error("fcntl");
}
}
}
FDStream::~FDStream() {
if (own_ && fd_ >= 0) {
::span::fibers::SchedulerSwitcher switcher(scheduler_);
int rc = ::close(fd_);
if (rc) {
LOG(ERROR) << this << " close(" << fd_ << "): " << rc << "(" << lastError() << ")";
} else {
DLOG(INFO) << this << " close(" << fd_ << "): " << rc << "(" << lastError() << ")";
}
}
}
void FDStream::close(CloseType type) {
SPAN_ASSERT(type == BOTH);
if (fd_ > 0 && own_) {
::span::fibers::SchedulerSwitcher switcher(scheduler_);
int rc = ::close(fd_);
error_t error = lastError();
if (rc) {
LOG(ERROR) << this << " close(" << fd_ << "): " << rc << "(" << error << ")";
throw std::runtime_error("close");
}
DLOG(INFO) << this << " close(" << fd_ << "): " << rc << "(" << error << ")";
fd_ = -1;
}
}
size_t FDStream::read(Buffer *buff, size_t len) {
if (ioManager_ && cancelledRead_) {
throw std::runtime_error("Operation aborted exception!");
}
::span::fibers::SchedulerSwitcher switcher(ioManager_ ? NULL : scheduler_);
SPAN_ASSERT(fd_ >= 0);
if (len > 0xFFFFFFFE) {
len = 0xFFFFFFFE;
}
std::vector<iovec> iovs = buff->writeBuffers(len);
int rc = readv(fd_, &iovs[0], iovs.size());
while (rc < 0 && lastError() == EAGAIN && ioManager_) {
DLOG(INFO) << this << " readv(" << fd_ << ", " << len << "): " << rc << " (EGAIN)";
ioManager_->registerEvent(fd_, IOManager::READ);
::span::fibers::Scheduler::yieldTo();
if (cancelledRead_) {
throw std::runtime_error("Operation aborted exception");
}
rc = readv(fd_, &iovs[0], iovs.size());
}
error_t error = lastError();
if (rc < 0) {
LOG(ERROR) << this << " readv(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
throw std::runtime_error("readv");
}
buff->produce(rc);
return rc;
}
size_t FDStream::read(void *buff, size_t len) {
if (ioManager_ && cancelledRead_) {
throw std::runtime_error("Operation aborted exception!");
}
::span::fibers::SchedulerSwitcher switcher(ioManager_ ? NULL : scheduler_);
SPAN_ASSERT(fd_ >= 0);
if (len >= 0xFFFFFFFE) {
len = 0xFFFFFFFE;
}
int rc = ::read(fd_, buff, len);
while (rc < 0 && lastError() == EAGAIN && ioManager_) {
DLOG(INFO) << this << " read(" << fd_ << ", " << len << "): " << rc << " (EAGAIN)";
ioManager_->registerEvent(fd_, IOManager::READ);
::span::fibers::Scheduler::yieldTo();
if (cancelledRead_) {
throw std::runtime_error("Operation Aborted Exception");
}
rc = ::read(fd_, buff, len);
}
error_t error = lastError();
if (rc < 0) {
LOG(ERROR) << this << " read(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
throw std::runtime_error("read");
}
DLOG(INFO) << this << " read(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
return rc;
}
void FDStream::cancelRead() {
cancelledRead_ = true;
if (ioManager_) {
ioManager_->cancelEvent(fd_, IOManager::WRITE);
}
}
size_t FDStream::write(const Buffer *buff, size_t len) {
if (ioManager_ && cancelledWrite_) {
throw std::runtime_error("Operation aborted exception");
}
::span::fibers::SchedulerSwitcher switcher(ioManager_ ? NULL : scheduler_);
SPAN_ASSERT(fd_ >= 0);
len = std::min(len, static_cast<size_t>(std::numeric_limits<ssize_t>::max()));
const std::vector<iovec> iovs = buff->readBuffers(len);
ssize_t rc = 0;
const int count = std::min(iovs.size(), static_cast<size_t>(IOV_MAX));
while ((rc = writev(fd_, &iovs[0], count)) < 0 && lastError() == EAGAIN && ioManager_) {
DLOG(INFO) << this << " writev(" << fd_ << ", " << len << "): " << rc << " (EAGAIN)";
ioManager_->registerEvent(fd_, IOManager::WRITE);
::span::fibers::Scheduler::yieldTo();
if (cancelledWrite_) {
throw std::runtime_error("Operation aborted exception");
}
rc = writev(fd_, &iovs[0], iovs.size());
}
error_t error = lastError();
if (rc < 0) {
LOG(ERROR) << this << " writev(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
throw std::runtime_error("writev");
} else if (rc == 0) {
throw std::runtime_error("Zero length write");
}
DLOG(INFO) << this << " writev(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
return rc;
}
size_t FDStream::write(const void *buff, size_t len) {
if (ioManager_ && cancelledWrite_) {
throw std::runtime_error("Operation aborted exception");
}
::span::fibers::SchedulerSwitcher switcher(ioManager_ ? NULL : scheduler_);
SPAN_ASSERT(fd_ >= 0);
if (len > 0xFFFFFFFE) {
len = 0xFFFFFFFE;
}
int rc = ::write(fd_, buff, len);
while (rc < 0 && lastError() == EAGAIN && ioManager_) {
DLOG(INFO) << this << " write(" << fd_ << ", " << len << "): " << rc << " (EAGAIN)";
ioManager_->registerEvent(fd_, IOManager::WRITE);
::span::fibers::Scheduler::yieldTo();
if (cancelledWrite_) {
throw std::runtime_error("Operation aborted exception!");
}
rc = ::write(fd_, buff, len);
}
error_t error = lastError();
if (rc < 0) {
LOG(ERROR) << this << " write(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
throw std::runtime_error("write");
} else if (rc == 0) {
throw std::runtime_error("Zero length write!");
}
DLOG(INFO) << this << " write(" << fd_ << ", " << len << "): " << rc << " (" << error << ")";
return rc;
}
void FDStream::cancelWrite() {
cancelledWrite_ = true;
if (ioManager_) {
ioManager_->cancelEvent(fd_, IOManager::WRITE);
}
}
int64 FDStream::seek(int64 offset, Anchor anchor) {
::span::fibers::SchedulerSwitcher swither(scheduler_);
SPAN_ASSERT(fd_ >= 0);
int64 pos = lseek(fd_, offset, static_cast<int>(anchor));
error_t error = lastError();
if (pos < 0) {
LOG(ERROR) << this << " lseek(" << fd_ << ", " << offset << ", " << anchor << "): " << pos << " (" << error
<< ")";
throw std::runtime_error("lseek");
}
DLOG(INFO) << this << " lseek(" << fd_ << ", " << offset << ", " << anchor << "): " << pos << " (" << error
<< ")";
return pos;
}
int64 FDStream::size() {
::span::fibers::SchedulerSwitcher switcher(scheduler_);
SPAN_ASSERT(fd_ >= 0);
struct stat statbuf;
int rc = fstat(fd_, &statbuf);
error_t error = lastError();
if (rc) {
LOG(ERROR) << this << " fstat(" << fd_ << "): " << rc << " (" << error << ")";
throw std::runtime_error("fstat");
}
DLOG(INFO) << this << " fstat(" << fd_ << "): " << rc << " (" << error << ")";
return statbuf.st_size;
}
void FDStream::truncate(int64 size) {
::span::fibers::SchedulerSwitcher switcher(scheduler_);
SPAN_ASSERT(fd_ >= 0);
int rc = ftruncate(fd_, size);
error_t error = lastError();
if (rc) {
LOG(ERROR) << this << " ftruncate(" << fd_ << ", " << size << "): " << rc << " (" << error << ")";
throw std::runtime_error("ftruncate");
}
DLOG(INFO) << this << " ftruncate(" << fd_ << ", " << size << "): " << rc << " (" << error << ")";
}
void FDStream::flush(bool flushParent) {
::span::fibers::SchedulerSwitcher switcher(scheduler_);
SPAN_ASSERT(fd_ >= 0);
int rc = fsync(fd_);
error_t error = lastError();
if (rc) {
LOG(ERROR) << this << " fsync(" << fd_ << "): " << rc << " (" << error << ")";
throw std::runtime_error("fsync");
}
DLOG(INFO) << this << " fsync(" << fd_ << "): " << rc << " (" << error << ")";
}
} // namespace streams
} // namespace io
} // namespace span
|
/** Driver for the doubly linked list. User specifies target filename for processing.
** This program displays the functionality of a doubly linked list including many of the most common features.
* @author Erik Mellum
* @created 4/2/13
* @modified 4/19/13
* @version 1.0
* @sources: foobt.net
*/
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <string>
#include "DLList.h"
#include "DLNode.h"
using namespace std;
bool readFile (char* filename);
DLList<int>* newList = NULL;
int main (int argc, char* argv[])
{
if(argv[1]==NULL)
cout << "ERROR NO FILENAME PROVIDED";
else
if(!readFile(argv[1]))
cout << "INVALID FILENAME";
return 0;
}
/**
*
*
*
**/
bool readFile (char* filename)
{
ifstream fin(filename);
if (fin.good())
{
string nextline;
while (getline(fin, nextline))
{
stringstream ss;
int temp;
switch(nextline[0])
{
case 'C':
if(newList != NULL)
{
newList->clear();
newList = NULL;
}
newList = new DLList<int>();
cout << "LIST CREATED" << endl;
break;
case 'X':
if(newList != NULL)
{
newList->clear();
cout << "LIST CLEARED" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'D':
if(newList != NULL)
{
newList->clear();
delete newList;
newList = NULL;
cout << "LIST DELETED" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'I':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
newList->insert(temp);
cout << "VALUE " << temp << " INSERTED" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'F':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
newList->pushFront(temp);
cout << "VALUE " << temp << " ADDED TO HEAD" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'B':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
newList->pushBack(temp);
cout << "VALUE " << temp << " ADDED TO TAIL" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'A':
if(newList != NULL)
{
try
{
temp = newList->getFront();
cout << "VALUE " << temp << " AT HEAD" << endl;
}
catch (string s)
{
cout << s << endl;
}
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'Z':
if(newList != NULL)
{
try
{
temp = newList->getBack();
cout << "VALUE " << temp << " AT TAIL" << endl;
}
catch (string s)
{
cout << s << endl;
}
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'T':
if(newList != NULL)
{
if(newList->getSize() == 0)
cout << "LIST EMPTY" << endl;
else
{
try
{
newList->popFront();
cout << "REMOVED HEAD" << endl;
}
catch (string s)
{
cout << s << endl;
}
}
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'K':
if(newList != NULL)
{
if(newList->getSize() == 0)
cout << "LIST EMPTY" << endl;
else
{
try
{
newList->popBack();
cout << "REMOVED TAIL" << endl;
}
catch (string s)
{
cout << s << endl;
}
}
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'E':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
if(newList->removeAll(temp))
cout << "VALUE " << temp << " ELIMINATED" << endl;
else
cout << "VALUE " << temp << " NOT FOUND" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'R':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
if(newList->removeFirst(temp))
cout << "VALUE " << temp << " REMOVED" << endl;
else
cout << "VALUE " << temp << " NOT FOUND" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'G':
ss << nextline.substr(2);
ss >> temp;
if(newList != NULL)
{
if(newList->get(temp))
cout << "VALUE " << temp << " FOUND" << endl;
else
cout << "VALUE " << temp << " NOT FOUND" << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'N':
if(newList != NULL)
{
cout << "LIST SIZE IS " << newList->getSize() << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case 'P':
if(newList != NULL)
{
cout << (*newList) << endl;
}
else
cout << "MUST CREATE LIST INSTANCE" << endl;
break;
case '#':
default:
break;
}
}
fin.close();
return true;
}
else
return false;
}
|
/*
* SPDX-FileCopyrightText: (C) 2014 Daniel Nicoletti <dantti12@gmail.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "root.h"
#include <Cutelyst/Context>
Root::Root(QObject *app)
: Controller(app)
{
}
Root::~Root()
{
}
void Root::index(Context *c)
{
// In order to easy the logic on the gui class we will
// emit the Context, this would not work if the signal
// connection was Qt::QueueConnection, in such case
// Cutelyst::Async would need to be used
Q_EMIT indexCalled(c);
}
|
#pragma once
#include "pathfinding.h"
#include "../utility/entity.h"
#include "../utility/timer.h"
#include "PrintData.h"
static int mapSizeX = 10;
static int mapSizeY = 10;
enum SearchFlags
{
SEARCH_NONE = 0,
SEARCH_ALL = 1,
SEARCH_ASTAR = 2,
SEARCH_ASTARMOD = 4,
SEARCH_HUMAN = 8,
SEARCH_ASTAREXP = 16
};
void runAStarTest(Position start, Position goal, ObstructionMap* obsMap, int pf)
{
cout << endl << "A* Test" << endl;
Pathfinder test(mapSizeX, mapSizeY);
Timer timer;
timer.start();
Path path = test.findPath(start, goal, obsMap);
timer.stop();
print(path, obsMap, timer, pf);
}
void runTests(Position start, Position goal, ObstructionMap* obsMap, int printflags, int searchFlag)
{
if (searchFlag & SEARCH_ASTAR || searchFlag & SEARCH_ALL)
runAStarTest(start, goal, obsMap, printflags);
std::cout << std::endl << "Tests finished" << std::endl;
}
|
#ifndef COMMANDES_H
#define COMMANDES_H
#include <QString>
#include <QSqlQuery>
#include <QSqlQueryModel>
class Commandes
{public:
Commandes();
Commandes(QString,int,int);
int get_idfourn();
int get_idcom();
QString get_catprod();
bool ajouter();
QSqlQueryModel * afficher();
bool supprimer(int);
bool modifier(int idcom);
QSqlQueryModel * rechercher(const QString &idcom);
QSqlQueryModel * afficher_trier();
private:
QString catprod;
int idcom;
int idfourn;
};
#endif //COMMANDES_H
|
#include "inventorycommand.h"
#include "rentablestorage.h"
InventoryCommand::~InventoryCommand()
{
}
InventoryCommand::InventoryCommand()
{
//nothing?
}
bool InventoryCommand::processCommand()
{
RentableStorage& rentables = getRentableStorage();
rentables.printInventory();
return true;
}
|
#include "solution1018.h"
#include <iostream>
#include <bitset>
BG1018::OUTPUT BG1018::solution_1(BG1018::INPUT input)
{
// SetTestCase(input);
BG1018::OUTPUT output{};
// ์ ๋ต ํ ์ ์
BG1018::CheckArea answerCase1, answerCase2;
bool start1 = B;
bool start2 = W;
for (int i = 0; i < SIZE * SIZE; i++) {
if (i % size == 0) {
answerCase1[i] = start1;
start1 = !start1;
answerCase2[i] = start2;
start2 = !start2;
}
else {
answerCase1[i] = !answerCase1[i - 1];
answerCase2[i] = !answerCase2[i - 1];
}
}
// ๊ฒ์ฌ ์ง์ญ ์ป๊ธฐ
auto makeArea = [input](const int m, const int n) -> BG1018::CheckArea {
BG1018::CheckArea check;
int index{ 0 };
for (int i = m; i < m + SIZE; i++) {
for (int j = n; j < n + SIZE; j++) {
check[index++] = input.vec[i][j];
}
}
return check;
};
// ๋ฐ๊ฟ์ผ ํ๋ ๊ฐฏ์ ์ป๊ธฐ
auto findFixCount = [answerCase1, answerCase2](BG1018::CheckArea area) -> int {
// xor ์ฐ์ฐ์ ๋ค๋ฅผ ๋ 1์ด๋ค.
BG1018::CheckArea tmp1 = area ^ answerCase1;
int cnt1 = tmp1.count();
BG1018::CheckArea tmp2 = area ^ answerCase2;
int cnt2 = tmp2.count();
#ifndef _TEST_MODE_
std::cout << "๊ฒ์ฌํ ํ : " << area.to_string() << std::endl;
std::cout << "anwr1 : " << answerCase1.to_string() << std::endl;
std::cout << "tmp01 : " << tmp1.to_string() << std::endl<<std::endl;
std::cout << "check : " << area.to_string() << std::endl;
std::cout << "anwr2 : " << answerCase2.to_string() << std::endl;
std::cout << "tmp02 : " << tmp2.to_string() << std::endl;
#endif
return cnt1 < cnt2 ? cnt1 : cnt2;
};
// ์ต์๊ฐ
int min{ std::numeric_limits<int>::max() };
for (int i = 0; i <= input.m - SIZE; i++) {
for (int j = 0; j <= input.n - SIZE; j++) {
BG1018::CheckArea check = makeArea(i, j);
int fixCnt{ findFixCount(check) };
if (fixCnt < min)
min = fixCnt;
}
}
output = min;
return output;
}
BG1018::OUTPUT BG1018::solution_2(BG1018::INPUT input)
{
BG1018::OUTPUT output{};
return output;
}
BG1018::OUTPUT BG1018::solution_3(BG1018::INPUT input)
{
BG1018::OUTPUT output{};
return output;
}
void BG1018::SetTestCase(BG1018::INPUT& input)
{
input.m = 8;
input.n = 8;
std::vector<bool> vec1{ W, B, W, B, W, B, W, B };
std::vector<bool> vec2{ B, W, B, W, B, W, B, W };
std::vector<bool> vec3{ W, B, W, B, W, B, W, B };
std::vector<bool> vec4{ B, W, B, B, B, W, B, W };
std::vector<bool> vec5{ W, B, W, B, W, B, W, B };
std::vector<bool> vec6{ B, W, B, W, B, W, B, W };
std::vector<bool> vec7{ W, B, W, B, W, B, W, B };
std::vector<bool> vec8{ B, W, B, W, B, W, B, W };
input.vec.clear();
input.vec.push_back(vec1);
input.vec.push_back(vec2);
input.vec.push_back(vec3);
input.vec.push_back(vec4);
input.vec.push_back(vec5);
input.vec.push_back(vec6);
input.vec.push_back(vec7);
input.vec.push_back(vec8);
}
|
///////////////////////////////////////////////////////////////////////////////////////
void motor_forward(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, LOW); //
digitalWrite(MOTOR_R_2, HIGH); //
digitalWrite(MOTOR_L_1, LOW); //
digitalWrite(MOTOR_L_2, HIGH); //
}
void motor_back(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, HIGH); //
digitalWrite(MOTOR_R_2, LOW); //
digitalWrite(MOTOR_L_1, HIGH); //
digitalWrite(MOTOR_L_2, LOW); //
}
void motor_left(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, LOW); //
digitalWrite(MOTOR_R_2, HIGH); //
digitalWrite(MOTOR_L_1, LOW); //
digitalWrite(MOTOR_L_2, LOW); //
}
void motor_right(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, LOW); //
digitalWrite(MOTOR_R_2, LOW); //
digitalWrite(MOTOR_L_1, LOW); //
digitalWrite(MOTOR_L_2, HIGH); //
}
void motor_turn_around_left(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, LOW); //
digitalWrite(MOTOR_R_2, HIGH); //
digitalWrite(MOTOR_L_1, HIGH); //
digitalWrite(MOTOR_L_2, LOW); //
}
void motor_turn_around_right(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, HIGH); //
digitalWrite(MOTOR_R_2, LOW); //
digitalWrite(MOTOR_L_1, LOW); //
digitalWrite(MOTOR_L_2, HIGH); //
}
void motor_stop(void){
//1,2=> H+H=idle; L+L=idle; H+L=Back; L+H=Forward
digitalWrite(MOTOR_R_1, LOW); //
digitalWrite(MOTOR_R_2, LOW); //
digitalWrite(MOTOR_L_1, LOW); //
digitalWrite(MOTOR_L_2, LOW); //
}
///////////////////////////////////////////////////////////////////////////////////////
void pwm_set(byte pwm){
analogWrite(MOTOR_R_PWM, pwm);
analogWrite(MOTOR_L_PWM, pwm);
}
void go_forward(unsigned int t, byte pwm){
pwm_set(pwm);
motor_forward();
delay(t);
motor_stop();
}
void go_back(unsigned int t, byte pwm){
pwm_set(pwm);
motor_back();
delay(t);
motor_stop();
}
void go_stop(unsigned int t, byte pwm){
pwm_set(pwm);
motor_stop();
delay(t);
}
void go_left(unsigned int t, byte pwm){
pwm_set(pwm);
motor_left();
delay(t);
motor_stop();
}
void go_right(unsigned int t, byte pwm){
pwm_set(pwm);
motor_right();
delay(t);
motor_stop();
}
void go_turn_around_left(unsigned int t, byte pwm){
pwm_set(pwm);
motor_turn_around_left();
delay(t);
motor_stop();
}
void go_turn_around_right(unsigned int t, byte pwm){
pwm_set(pwm);
motor_turn_around_right();
delay(t);
motor_stop();
}
///////////////////////////////////////////////////////////////////////////////////////
void motor_test(void){
go_forward(300,255);
go_back(300,255);
go_stop(300,255);
go_left(300,255);
go_right(300,255);
go_turn_around_left(300,255);
go_turn_around_right(300,255);
delay(5000);
}
|
/****************************************************************************
** Resource object code
**
** Created by: The Resource Compiler for Qt version 5.12.0
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
static const unsigned char qt_resource_data[] = {
// /home/pcook/code_practice/qtapps/snakegame/GameStop.qml
0x0,0x0,0x0,0x25,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x34,0xa,0xa,0x47,0x61,0x6d,0x65,0x53,0x74,0x6f,0x70,0x46,0x6f,0x72,0x6d,0x20,
0x7b,0xa,0x7d,0xa,
// /home/pcook/code_practice/qtapps/snakegame/GameStopForm.ui.qml
0x0,0x0,0x0,0x3c,
0x69,
0x6d,0x70,0x6f,0x72,0x74,0x20,0x51,0x74,0x51,0x75,0x69,0x63,0x6b,0x20,0x32,0x2e,
0x34,0xa,0xa,0x49,0x74,0x65,0x6d,0x20,0x7b,0xa,0x20,0x20,0x20,0x20,0x77,0x69,
0x64,0x74,0x68,0x3a,0x20,0x34,0x30,0x30,0xa,0x20,0x20,0x20,0x20,0x68,0x65,0x69,
0x67,0x68,0x74,0x3a,0x20,0x34,0x30,0x30,0xa,0x7d,0xa,
// /home/pcook/code_practice/qtapps/snakegame/sounds/apple_crunch.wav
0x0,0x2,0xd7,0xf2,
0x52,
0x49,0x46,0x46,0xea,0xd7,0x2,0x0,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,0x20,0x10,
0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x44,0xac,0x0,0x0,0x10,0xb1,0x2,0x0,0x4,
0x0,0x10,0x0,0x4c,0x49,0x53,0x54,0x1a,0x0,0x0,0x0,0x49,0x4e,0x46,0x4f,0x49,
0x53,0x46,0x54,0xe,0x0,0x0,0x0,0x4c,0x61,0x76,0x66,0x35,0x38,0x2e,0x34,0x35,
0x2e,0x31,0x30,0x30,0x0,0x64,0x61,0x74,0x61,0xa4,0xd7,0x2,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
0xff,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,
0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,
0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0xfd,0xff,0xfd,
0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xfd,
0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfc,
0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0xfb,0xff,0xfb,
0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,
0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfb,
0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,
0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xf9,0xff,0xfa,
0xff,0xf9,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfa,
0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xf9,0xff,0xf9,
0xff,0xf9,0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xf8,0xff,0xf8,
0xff,0xf7,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf6,0xff,0xf6,
0xff,0xf5,0xff,0xf6,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf4,
0xff,0xf3,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf4,
0xff,0xf4,0xff,0xf4,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf3,
0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf4,0xff,0xf3,0xff,0xf4,
0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf4,
0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf5,0xff,0xf5,0xff,0xf6,0xff,0xf6,0xff,0xf7,
0xff,0xf6,0xff,0xf7,0xff,0xf5,0xff,0xf6,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xf4,
0xff,0xf3,0xff,0xf3,0xff,0xf2,0xff,0xf3,0xff,0xf0,0xff,0xf2,0xff,0xef,0xff,0xf1,
0xff,0xee,0xff,0xf0,0xff,0xed,0xff,0xee,0xff,0xec,0xff,0xed,0xff,0xec,0xff,0xed,
0xff,0xec,0xff,0xed,0xff,0xeb,0xff,0xec,0xff,0xea,0xff,0xeb,0xff,0xea,0xff,0xea,
0xff,0xe9,0xff,0xea,0xff,0xea,0xff,0xea,0xff,0xeb,0xff,0xeb,0xff,0xec,0xff,0xeb,
0xff,0xed,0xff,0xec,0xff,0xee,0xff,0xed,0xff,0xef,0xff,0xee,0xff,0xf0,0xff,0xef,
0xff,0xf1,0xff,0xf0,0xff,0xf2,0xff,0xf1,0xff,0xf2,0xff,0xf2,0xff,0xf2,0xff,0xf3,
0xff,0xf2,0xff,0xf3,0xff,0xf2,0xff,0xf4,0xff,0xf3,0xff,0xf5,0xff,0xf5,0xff,0xf6,
0xff,0xf6,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf5,0xff,0xf7,
0xff,0xf5,0xff,0xf8,0xff,0xf5,0xff,0xf7,0xff,0xf4,0xff,0xf6,0xff,0xf3,0xff,0xf5,
0xff,0xf1,0xff,0xf3,0xff,0xef,0xff,0xf1,0xff,0xed,0xff,0xf0,0xff,0xeb,0xff,0xee,
0xff,0xe8,0xff,0xec,0xff,0xe6,0xff,0xe9,0xff,0xe5,0xff,0xe7,0xff,0xe4,0xff,0xe6,
0xff,0xe4,0xff,0xe5,0xff,0xe3,0xff,0xe3,0xff,0xe2,0xff,0xe2,0xff,0xe0,0xff,0xdf,
0xff,0xde,0xff,0xde,0xff,0xdd,0xff,0xdd,0xff,0xdc,0xff,0xde,0xff,0xdc,0xff,0xde,
0xff,0xdd,0xff,0xde,0xff,0xde,0xff,0xde,0xff,0xdf,0xff,0xdf,0xff,0xe1,0xff,0xe1,
0xff,0xe4,0xff,0xe4,0xff,0xe6,0xff,0xe7,0xff,0xe9,0xff,0xea,0xff,0xec,0xff,0xed,
0xff,0xee,0xff,0xef,0xff,0xef,0xff,0xf1,0xff,0xf0,0xff,0xf3,0xff,0xf1,0xff,0xf4,
0xff,0xf2,0xff,0xf7,0xff,0xf4,0xff,0xf9,0xff,0xf6,0xff,0xfb,0xff,0xf8,0xff,0xfc,
0xff,0xf9,0xff,0xfd,0xff,0xfa,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0xf8,0xff,0xfd,
0xff,0xf6,0xff,0xfb,0xff,0xf4,0xff,0xf9,0xff,0xf1,0xff,0xf7,0xff,0xee,0xff,0xf4,
0xff,0xeb,0xff,0xef,0xff,0xe8,0xff,0xea,0xff,0xe5,0xff,0xe7,0xff,0xe4,0xff,0xe5,
0xff,0xe3,0xff,0xe3,0xff,0xe2,0xff,0xe2,0xff,0xe0,0xff,0xe0,0xff,0xdd,0xff,0xdd,
0xff,0xda,0xff,0xdb,0xff,0xd8,0xff,0xd9,0xff,0xd9,0xff,0xd8,0xff,0xdb,0xff,0xd9,
0xff,0xdb,0xff,0xda,0xff,0xdd,0xff,0xdc,0xff,0xdf,0xff,0xdf,0xff,0xe1,0xff,0xe1,
0xff,0xe2,0xff,0xe3,0xff,0xe5,0xff,0xe6,0xff,0xe7,0xff,0xe8,0xff,0xe8,0xff,0xeb,
0xff,0xea,0xff,0xed,0xff,0xed,0xff,0xef,0xff,0xf0,0xff,0xf3,0xff,0xf4,0xff,0xf7,
0xff,0xf8,0xff,0xfc,0xff,0xfb,0xff,0x1,0x0,0xfe,0xff,0x5,0x0,0x0,0x0,0x7,
0x0,0x1,0x0,0x9,0x0,0x4,0x0,0xa,0x0,0x6,0x0,0xc,0x0,0x6,0x0,0xc,
0x0,0x6,0x0,0x9,0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0xfd,0xff,0xff,
0xff,0xfa,0xff,0xfb,0xff,0xf8,0xff,0xf8,0xff,0xf6,0xff,0xf4,0xff,0xf3,0xff,0xf1,
0xff,0xef,0xff,0xee,0xff,0xec,0xff,0xea,0xff,0xea,0xff,0xe9,0xff,0xeb,0xff,0xe9,
0xff,0xeb,0xff,0xe9,0xff,0xea,0xff,0xe8,0xff,0xe9,0xff,0xe8,0xff,0xe9,0xff,0xe8,
0xff,0xe9,0xff,0xe7,0xff,0xea,0xff,0xe8,0xff,0xec,0xff,0xeb,0xff,0xed,0xff,0xee,
0xff,0xef,0xff,0xf1,0xff,0xf2,0xff,0xf5,0xff,0xf5,0xff,0xf8,0xff,0xf9,0xff,0xfb,
0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0x2,0x0,0x1,0x0,0x4,0x0,0x4,0x0,0x7,
0x0,0x6,0x0,0xb,0x0,0x9,0x0,0xe,0x0,0xb,0x0,0x11,0x0,0xe,0x0,0x15,
0x0,0x11,0x0,0x17,0x0,0x12,0x0,0x17,0x0,0x13,0x0,0x17,0x0,0x12,0x0,0x16,
0x0,0xf,0x0,0x13,0x0,0xb,0x0,0xe,0x0,0x8,0x0,0x9,0x0,0x3,0x0,0x3,
0x0,0xfd,0xff,0xfe,0xff,0xf8,0xff,0xf7,0xff,0xf1,0xff,0xf1,0xff,0xeb,0xff,0xed,
0xff,0xe8,0xff,0xe8,0xff,0xe6,0xff,0xe5,0xff,0xe4,0xff,0xe3,0xff,0xe3,0xff,0xe1,
0xff,0xe3,0xff,0xe0,0xff,0xe2,0xff,0xe0,0xff,0xe1,0xff,0xe1,0xff,0xe2,0xff,0xe1,
0xff,0xe4,0xff,0xe3,0xff,0xe7,0xff,0xe7,0xff,0xed,0xff,0xed,0xff,0xf2,0xff,0xf4,
0xff,0xf7,0xff,0xfb,0xff,0xfc,0xff,0xfe,0xff,0x1,0x0,0x0,0x0,0x5,0x0,0x4,
0x0,0xa,0x0,0xa,0x0,0x10,0x0,0x11,0x0,0x13,0x0,0x18,0x0,0x16,0x0,0x1c,
0x0,0x1b,0x0,0x21,0x0,0x1c,0x0,0x25,0x0,0x1d,0x0,0x26,0x0,0x1f,0x0,0x26,
0x0,0x1d,0x0,0x25,0x0,0x1b,0x0,0x23,0x0,0x19,0x0,0x1f,0x0,0x16,0x0,0x1a,
0x0,0x10,0x0,0x15,0x0,0xc,0x0,0xf,0x0,0x6,0x0,0x9,0x0,0x0,0x0,0x1,
0x0,0xf9,0xff,0xf9,0xff,0xf0,0xff,0xf0,0xff,0xe7,0xff,0xe7,0xff,0xe2,0xff,0xdf,
0xff,0xe0,0xff,0xd9,0xff,0xdd,0xff,0xd7,0xff,0xdc,0xff,0xd6,0xff,0xdb,0xff,0xd6,
0xff,0xda,0xff,0xd7,0xff,0xdd,0xff,0xdb,0xff,0xe4,0xff,0xdf,0xff,0xea,0xff,0xe5,
0xff,0xf2,0xff,0xec,0xff,0xfa,0xff,0xf2,0xff,0xff,0xff,0xf9,0xff,0x5,0x0,0x0,
0x0,0xc,0x0,0x8,0x0,0x14,0x0,0x13,0x0,0x1f,0x0,0x1e,0x0,0x29,0x0,0x27,
0x0,0x2f,0x0,0x2f,0x0,0x35,0x0,0x35,0x0,0x3b,0x0,0x3b,0x0,0x3d,0x0,0x3e,
0x0,0x3c,0x0,0x3d,0x0,0x3a,0x0,0x3b,0x0,0x38,0x0,0x38,0x0,0x38,0x0,0x35,
0x0,0x37,0x0,0x32,0x0,0x33,0x0,0x2e,0x0,0x2e,0x0,0x27,0x0,0x26,0x0,0x20,
0x0,0x1c,0x0,0x19,0x0,0x12,0x0,0xf,0x0,0xc,0x0,0x7,0x0,0x5,0x0,0x0,
0x0,0xff,0xff,0xf6,0xff,0xf8,0xff,0xec,0xff,0xf1,0xff,0xe5,0xff,0xea,0xff,0xe0,
0xff,0xe9,0xff,0xdf,0xff,0xeb,0xff,0xdf,0xff,0xed,0xff,0xe2,0xff,0xf0,0xff,0xe6,
0xff,0xf2,0xff,0xea,0xff,0xf6,0xff,0xee,0xff,0xfd,0xff,0xf4,0xff,0x2,0x0,0xfa,
0xff,0x7,0x0,0x2,0x0,0xe,0x0,0xa,0x0,0x16,0x0,0x11,0x0,0x1b,0x0,0x1a,
0x0,0x22,0x0,0x23,0x0,0x28,0x0,0x29,0x0,0x2b,0x0,0x2e,0x0,0x2f,0x0,0x34,
0x0,0x34,0x0,0x36,0x0,0x35,0x0,0x35,0x0,0x36,0x0,0x34,0x0,0x37,0x0,0x33,
0x0,0x37,0x0,0x35,0x0,0x37,0x0,0x38,0x0,0x36,0x0,0x38,0x0,0x33,0x0,0x34,
0x0,0x2d,0x0,0x2d,0x0,0x27,0x0,0x26,0x0,0x20,0x0,0x1f,0x0,0x1b,0x0,0x1b,
0x0,0x18,0x0,0x15,0x0,0x14,0x0,0xe,0x0,0xf,0x0,0x9,0x0,0x9,0x0,0x4,
0x0,0x5,0x0,0xfe,0xff,0xfe,0xff,0xf8,0xff,0xf8,0xff,0xf4,0xff,0xf5,0xff,0xf0,
0xff,0xf6,0xff,0xef,0xff,0xf7,0xff,0xf0,0xff,0xfa,0xff,0xf1,0xff,0xff,0xff,0xf4,
0xff,0x3,0x0,0xfb,0xff,0xa,0x0,0x3,0x0,0x12,0x0,0xc,0x0,0x19,0x0,0x14,
0x0,0x21,0x0,0x1c,0x0,0x29,0x0,0x25,0x0,0x2e,0x0,0x2c,0x0,0x31,0x0,0x31,
0x0,0x35,0x0,0x35,0x0,0x38,0x0,0x39,0x0,0x3b,0x0,0x3b,0x0,0x3c,0x0,0x3e,
0x0,0x3f,0x0,0x41,0x0,0x42,0x0,0x43,0x0,0x43,0x0,0x44,0x0,0x42,0x0,0x44,
0x0,0x41,0x0,0x43,0x0,0x3d,0x0,0x40,0x0,0x3a,0x0,0x3e,0x0,0x37,0x0,0x39,
0x0,0x32,0x0,0x32,0x0,0x2d,0x0,0x2c,0x0,0x2b,0x0,0x28,0x0,0x27,0x0,0x25,
0x0,0x25,0x0,0x21,0x0,0x24,0x0,0x1e,0x0,0x1f,0x0,0x1b,0x0,0x1a,0x0,0x14,
0x0,0x15,0x0,0xe,0x0,0x13,0x0,0xc,0x0,0x14,0x0,0xb,0x0,0x16,0x0,0xa,
0x0,0x16,0x0,0xb,0x0,0x17,0x0,0xb,0x0,0x19,0x0,0xe,0x0,0x1d,0x0,0x14,
0x0,0x26,0x0,0x1a,0x0,0x30,0x0,0x23,0x0,0x38,0x0,0x2f,0x0,0x41,0x0,0x38,
0x0,0x47,0x0,0x3f,0x0,0x4b,0x0,0x48,0x0,0x50,0x0,0x50,0x0,0x55,0x0,0x57,
0x0,0x5a,0x0,0x5c,0x0,0x5d,0x0,0x5f,0x0,0x5d,0x0,0x5f,0x0,0x5c,0x0,0x5c,
0x0,0x5b,0x0,0x5a,0x0,0x58,0x0,0x5a,0x0,0x56,0x0,0x58,0x0,0x57,0x0,0x57,
0x0,0x54,0x0,0x54,0x0,0x4f,0x0,0x50,0x0,0x4c,0x0,0x4d,0x0,0x49,0x0,0x49,
0x0,0x44,0x0,0x42,0x0,0x40,0x0,0x3b,0x0,0x3b,0x0,0x34,0x0,0x32,0x0,0x2a,
0x0,0x28,0x0,0x22,0x0,0x21,0x0,0x1c,0x0,0x1e,0x0,0x18,0x0,0x1e,0x0,0x16,
0x0,0x1e,0x0,0x14,0x0,0x1c,0x0,0xf,0x0,0x18,0x0,0xc,0x0,0x13,0x0,0x8,
0x0,0x12,0x0,0x4,0x0,0x13,0x0,0x6,0x0,0x17,0x0,0xe,0x0,0x1a,0x0,0x14,
0x0,0x1f,0x0,0x19,0x0,0x26,0x0,0x20,0x0,0x2c,0x0,0x2a,0x0,0x33,0x0,0x33,
0x0,0x3b,0x0,0x39,0x0,0x43,0x0,0x3f,0x0,0x48,0x0,0x45,0x0,0x4b,0x0,0x4c,
0x0,0x4d,0x0,0x51,0x0,0x4f,0x0,0x54,0x0,0x50,0x0,0x56,0x0,0x53,0x0,0x59,
0x0,0x58,0x0,0x5b,0x0,0x5b,0x0,0x5f,0x0,0x5e,0x0,0x61,0x0,0x5f,0x0,0x61,
0x0,0x5c,0x0,0x5f,0x0,0x59,0x0,0x5b,0x0,0x55,0x0,0x54,0x0,0x4e,0x0,0x4c,
0x0,0x48,0x0,0x45,0x0,0x42,0x0,0x3f,0x0,0x3a,0x0,0x3a,0x0,0x31,0x0,0x33,
0x0,0x2a,0x0,0x2b,0x0,0x26,0x0,0x22,0x0,0x23,0x0,0x1c,0x0,0x21,0x0,0x1a,
0x0,0x1f,0x0,0x17,0x0,0x1d,0x0,0x14,0x0,0x19,0x0,0xf,0x0,0x14,0x0,0xa,
0x0,0xf,0x0,0x8,0x0,0xc,0x0,0x9,0x0,0xb,0x0,0xa,0x0,0xe,0x0,0xb,
0x0,0x10,0x0,0xe,0x0,0x13,0x0,0x12,0x0,0x17,0x0,0x17,0x0,0x1c,0x0,0x1d,
0x0,0x21,0x0,0x23,0x0,0x25,0x0,0x29,0x0,0x29,0x0,0x2d,0x0,0x2f,0x0,0x31,
0x0,0x36,0x0,0x38,0x0,0x3c,0x0,0x3e,0x0,0x40,0x0,0x43,0x0,0x3f,0x0,0x46,
0x0,0x3f,0x0,0x46,0x0,0x40,0x0,0x46,0x0,0x40,0x0,0x49,0x0,0x43,0x0,0x4a,
0x0,0x47,0x0,0x4a,0x0,0x4a,0x0,0x49,0x0,0x4d,0x0,0x49,0x0,0x4e,0x0,0x49,
0x0,0x4d,0x0,0x48,0x0,0x4b,0x0,0x45,0x0,0x48,0x0,0x41,0x0,0x44,0x0,0x3d,
0x0,0x3e,0x0,0x38,0x0,0x36,0x0,0x31,0x0,0x30,0x0,0x2a,0x0,0x2d,0x0,0x24,
0x0,0x2b,0x0,0x22,0x0,0x28,0x0,0x22,0x0,0x24,0x0,0x1f,0x0,0x1f,0x0,0x18,
0x0,0x1c,0x0,0x13,0x0,0x18,0x0,0x14,0x0,0x16,0x0,0x17,0x0,0x16,0x0,0x1a,
0x0,0x17,0x0,0x1d,0x0,0x18,0x0,0x1b,0x0,0x1b,0x0,0x1a,0x0,0x20,0x0,0x21,
0x0,0x27,0x0,0x29,0x0,0x2f,0x0,0x2f,0x0,0x34,0x0,0x35,0x0,0x36,0x0,0x37,
0x0,0x37,0x0,0x37,0x0,0x38,0x0,0x39,0x0,0x3c,0x0,0x3a,0x0,0x3e,0x0,0x39,
0x0,0x3f,0x0,0x3c,0x0,0x40,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3e,0x0,0x3f,
0x0,0x3e,0x0,0x3d,0x0,0x3c,0x0,0x38,0x0,0x39,0x0,0x35,0x0,0x39,0x0,0x35,
0x0,0x37,0x0,0x31,0x0,0x35,0x0,0x2f,0x0,0x34,0x0,0x2d,0x0,0x32,0x0,0x2a,
0x0,0x2d,0x0,0x27,0x0,0x26,0x0,0x27,0x0,0x22,0x0,0x23,0x0,0x1e,0x0,0x20,
0x0,0x1b,0x0,0x1c,0x0,0x19,0x0,0x18,0x0,0x19,0x0,0x18,0x0,0x16,0x0,0x17,
0x0,0x13,0x0,0x13,0x0,0x13,0x0,0x12,0x0,0x15,0x0,0x17,0x0,0x1a,0x0,0x1d,
0x0,0x21,0x0,0x23,0x0,0x27,0x0,0x27,0x0,0x28,0x0,0x26,0x0,0x28,0x0,0x26,
0x0,0x2a,0x0,0x26,0x0,0x2e,0x0,0x27,0x0,0x36,0x0,0x2c,0x0,0x3d,0x0,0x33,
0x0,0x3e,0x0,0x35,0x0,0x3c,0x0,0x35,0x0,0x3b,0x0,0x36,0x0,0x3a,0x0,0x37,
0x0,0x38,0x0,0x39,0x0,0x37,0x0,0x39,0x0,0x37,0x0,0x35,0x0,0x35,0x0,0x33,
0x0,0x34,0x0,0x34,0x0,0x33,0x0,0x31,0x0,0x2e,0x0,0x2d,0x0,0x2a,0x0,0x2c,
0x0,0x28,0x0,0x29,0x0,0x26,0x0,0x25,0x0,0x22,0x0,0x22,0x0,0x1d,0x0,0x1b,
0x0,0x17,0x0,0x13,0x0,0xf,0x0,0xd,0x0,0x8,0x0,0x6,0x0,0x0,0x0,0x1,
0x0,0xf9,0xff,0xfd,0xff,0xf9,0xff,0xf8,0xff,0xfa,0xff,0xf9,0xff,0xfe,0xff,0xfd,
0xff,0x5,0x0,0xff,0xff,0x9,0x0,0x4,0x0,0x9,0x0,0x6,0x0,0xa,0x0,0x6,
0x0,0xd,0x0,0xb,0x0,0x12,0x0,0x12,0x0,0x18,0x0,0x16,0x0,0x1b,0x0,0x1b,
0x0,0x21,0x0,0x20,0x0,0x2a,0x0,0x24,0x0,0x32,0x0,0x2d,0x0,0x3c,0x0,0x37,
0x0,0x45,0x0,0x3f,0x0,0x4a,0x0,0x46,0x0,0x4e,0x0,0x49,0x0,0x4f,0x0,0x49,
0x0,0x4c,0x0,0x4a,0x0,0x4d,0x0,0x49,0x0,0x4f,0x0,0x48,0x0,0x4c,0x0,0x49,
0x0,0x48,0x0,0x46,0x0,0x43,0x0,0x42,0x0,0x40,0x0,0x40,0x0,0x3f,0x0,0x3d,
0x0,0x3c,0x0,0x3a,0x0,0x38,0x0,0x39,0x0,0x30,0x0,0x31,0x0,0x24,0x0,0x24,
0x0,0x19,0x0,0x1a,0x0,0xf,0x0,0x11,0x0,0x7,0x0,0x8,0x0,0x5,0x0,0x5,
0x0,0x3,0x0,0x4,0x0,0xfd,0xff,0x0,0x0,0xf7,0xff,0xfb,0xff,0xf2,0xff,0xf5,
0xff,0xec,0xff,0xee,0xff,0xeb,0xff,0xed,0xff,0xed,0xff,0xf2,0xff,0xf0,0xff,0xf5,
0xff,0xf5,0xff,0xfa,0xff,0xfc,0xff,0x1,0x0,0x2,0x0,0x8,0x0,0x8,0x0,0xd,
0x0,0xd,0x0,0x12,0x0,0x12,0x0,0x17,0x0,0x1a,0x0,0x1c,0x0,0x22,0x0,0x20,
0x0,0x2b,0x0,0x24,0x0,0x34,0x0,0x2a,0x0,0x3b,0x0,0x32,0x0,0x42,0x0,0x3b,
0x0,0x4b,0x0,0x43,0x0,0x50,0x0,0x48,0x0,0x4f,0x0,0x4b,0x0,0x50,0x0,0x4d,
0x0,0x51,0x0,0x4c,0x0,0x50,0x0,0x4b,0x0,0x4b,0x0,0x4c,0x0,0x45,0x0,0x47,
0x0,0x3e,0x0,0x3c,0x0,0x34,0x0,0x32,0x0,0x2a,0x0,0x25,0x0,0x20,0x0,0x19,
0x0,0x15,0x0,0x12,0x0,0x8,0x0,0x8,0x0,0xfe,0xff,0xff,0xff,0xf9,0xff,0xfc,
0xff,0xf3,0xff,0xf8,0xff,0xf0,0xff,0xf6,0xff,0xee,0xff,0xf5,0xff,0xec,0xff,0xf1,
0xff,0xeb,0xff,0xee,0xff,0xed,0xff,0xf1,0xff,0xf2,0xff,0xf2,0xff,0xfa,0xff,0xf4,
0xff,0xff,0xff,0xf9,0xff,0x1,0x0,0xfa,0xff,0x4,0x0,0xfb,0xff,0x5,0x0,0xff,
0xff,0x9,0x0,0x3,0x0,0x12,0x0,0xb,0x0,0x1a,0x0,0x16,0x0,0x1f,0x0,0x1a,
0x0,0x27,0x0,0x1d,0x0,0x2e,0x0,0x24,0x0,0x33,0x0,0x2a,0x0,0x35,0x0,0x31,
0x0,0x37,0x0,0x38,0x0,0x39,0x0,0x39,0x0,0x39,0x0,0x37,0x0,0x34,0x0,0x32,
0x0,0x2c,0x0,0x2b,0x0,0x27,0x0,0x26,0x0,0x27,0x0,0x27,0x0,0x29,0x0,0x2a,
0x0,0x29,0x0,0x28,0x0,0x24,0x0,0x25,0x0,0x1c,0x0,0x22,0x0,0x13,0x0,0x1d,
0x0,0xc,0x0,0x14,0x0,0x8,0x0,0xf,0x0,0x4,0x0,0xb,0x0,0x1,0x0,0x4,
0x0,0xfb,0xff,0xfd,0xff,0xf5,0xff,0xfa,0xff,0xf6,0xff,0xf7,0xff,0xf7,0xff,0xf9,
0xff,0xf8,0xff,0xfc,0xff,0xf9,0xff,0xfd,0xff,0xf9,0xff,0xfc,0xff,0xf7,0xff,0xf9,
0xff,0xf9,0xff,0xf6,0xff,0xfc,0xff,0xf8,0xff,0xff,0xff,0xfc,0xff,0x5,0x0,0x3,
0x0,0xb,0x0,0xb,0x0,0xf,0x0,0xf,0x0,0x14,0x0,0x12,0x0,0x18,0x0,0x16,
0x0,0x1b,0x0,0x19,0x0,0x20,0x0,0x1d,0x0,0x24,0x0,0x21,0x0,0x27,0x0,0x24,
0x0,0x2a,0x0,0x29,0x0,0x2c,0x0,0x2e,0x0,0x2d,0x0,0x32,0x0,0x2d,0x0,0x34,
0x0,0x2e,0x0,0x34,0x0,0x2c,0x0,0x30,0x0,0x28,0x0,0x2d,0x0,0x23,0x0,0x2c,
0x0,0x1e,0x0,0x29,0x0,0x19,0x0,0x24,0x0,0x15,0x0,0x1d,0x0,0xe,0x0,0x15,
0x0,0x5,0x0,0xd,0x0,0xfe,0xff,0x4,0x0,0xf7,0xff,0xfd,0xff,0xf2,0xff,0xf8,
0xff,0xef,0xff,0xf4,0xff,0xea,0xff,0xf2,0xff,0xe5,0xff,0xf1,0xff,0xe6,0xff,0xf1,
0xff,0xe9,0xff,0xf2,0xff,0xea,0xff,0xf2,0xff,0xed,0xff,0xf3,0xff,0xee,0xff,0xf3,
0xff,0xec,0xff,0xf1,0xff,0xef,0xff,0xf2,0xff,0xf5,0xff,0xf7,0xff,0xfa,0xff,0xfc,
0xff,0x3,0x0,0x4,0x0,0xa,0x0,0xb,0x0,0xe,0x0,0xf,0x0,0x11,0x0,0x11,
0x0,0x15,0x0,0x15,0x0,0x1a,0x0,0x1a,0x0,0x1f,0x0,0x1e,0x0,0x23,0x0,0x21,
0x0,0x27,0x0,0x24,0x0,0x2a,0x0,0x2a,0x0,0x29,0x0,0x2e,0x0,0x24,0x0,0x2d,
0x0,0x20,0x0,0x27,0x0,0x1d,0x0,0x1f,0x0,0x18,0x0,0x19,0x0,0x12,0x0,0x16,
0x0,0xc,0x0,0x11,0x0,0x4,0x0,0xb,0x0,0xfd,0xff,0x5,0x0,0xfa,0xff,0xff,
0xff,0xf7,0xff,0xfc,0xff,0xf4,0xff,0xfa,0xff,0xf1,0xff,0xf7,0xff,0xee,0xff,0xf3,
0xff,0xeb,0xff,0xf0,0xff,0xe8,0xff,0xed,0xff,0xe7,0xff,0xec,0xff,0xe8,0xff,0xee,
0xff,0xea,0xff,0xef,0xff,0xee,0xff,0xf3,0xff,0xf4,0xff,0xf9,0xff,0xf8,0xff,0xfb,
0xff,0xf8,0xff,0xfd,0xff,0xf8,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0xfd,
0xff,0xff,0xff,0x0,0x0,0x3,0x0,0x4,0x0,0x6,0x0,0xb,0x0,0xa,0x0,0x10,
0x0,0xc,0x0,0x10,0x0,0xc,0x0,0xf,0x0,0xa,0x0,0xb,0x0,0x7,0x0,0x5,
0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x4,0x0,0x4,0x0,0x4,0x0,0x5,0x0,0x6,
0x0,0x7,0x0,0x8,0x0,0x7,0x0,0x6,0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x7,
0x0,0xf7,0xff,0x3,0x0,0xed,0xff,0xfc,0xff,0xe6,0xff,0xf6,0xff,0xe3,0xff,0xf1,
0xff,0xdf,0xff,0xea,0xff,0xdb,0xff,0xe5,0xff,0xda,0xff,0xe2,0xff,0xd9,0xff,0xe1,
0xff,0xd6,0xff,0xe2,0xff,0xd8,0xff,0xe3,0xff,0xdb,0xff,0xe1,0xff,0xdc,0xff,0xe1,
0xff,0xde,0xff,0xe4,0xff,0xe0,0xff,0xe6,0xff,0xe2,0xff,0xe6,0xff,0xe4,0xff,0xe9,
0xff,0xe8,0xff,0xec,0xff,0xee,0xff,0xed,0xff,0xf2,0xff,0xf0,0xff,0xf4,0xff,0xf4,
0xff,0xf8,0xff,0xf7,0xff,0xfb,0xff,0xf9,0xff,0xf9,0xff,0xfa,0xff,0xf9,0xff,0xf9,
0xff,0xf9,0xff,0xfa,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0xfd,
0xff,0xf6,0xff,0xfd,0xff,0xf4,0xff,0xfa,0xff,0xf3,0xff,0xf8,0xff,0xf0,0xff,0xf4,
0xff,0xf0,0xff,0xf1,0xff,0xef,0xff,0xf0,0xff,0xe9,0xff,0xee,0xff,0xe7,0xff,0xeb,
0xff,0xe5,0xff,0xe8,0xff,0xe2,0xff,0xe6,0xff,0xe1,0xff,0xe7,0xff,0xe2,0xff,0xe7,
0xff,0xe1,0xff,0xe4,0xff,0xdf,0xff,0xe0,0xff,0xdc,0xff,0xe0,0xff,0xdc,0xff,0xe1,
0xff,0xdf,0xff,0xe3,0xff,0xe1,0xff,0xe3,0xff,0xe1,0xff,0xe0,0xff,0xe2,0xff,0xde,
0xff,0xe3,0xff,0xdf,0xff,0xe7,0xff,0xe2,0xff,0xea,0xff,0xe4,0xff,0xe9,0xff,0xe6,
0xff,0xeb,0xff,0xe9,0xff,0xee,0xff,0xeb,0xff,0xef,0xff,0xed,0xff,0xf2,0xff,0xef,
0xff,0xf4,0xff,0xf1,0xff,0xf3,0xff,0xf2,0xff,0xf5,0xff,0xf4,0xff,0xfa,0xff,0xf8,
0xff,0xf9,0xff,0xfa,0xff,0xf8,0xff,0xf8,0xff,0xf8,0xff,0xf5,0xff,0xf3,0xff,0xf1,
0xff,0xec,0xff,0xea,0xff,0xe8,0xff,0xe9,0xff,0xe3,0xff,0xe8,0xff,0xdd,0xff,0xe2,
0xff,0xdb,0xff,0xdb,0xff,0xd8,0xff,0xd5,0xff,0xd3,0xff,0xcf,0xff,0xce,0xff,0xce,
0xff,0xcc,0xff,0xcf,0xff,0xcc,0xff,0xd0,0xff,0xcd,0xff,0xd2,0xff,0xd0,0xff,0xd5,
0xff,0xd4,0xff,0xd7,0xff,0xd6,0xff,0xdb,0xff,0xd8,0xff,0xe0,0xff,0xdd,0xff,0xe4,
0xff,0xe3,0xff,0xe8,0xff,0xe5,0xff,0xe8,0xff,0xe6,0xff,0xe6,0xff,0xe6,0xff,0xe6,
0xff,0xe8,0xff,0xe9,0xff,0xea,0xff,0xef,0xff,0xec,0xff,0xf4,0xff,0xf0,0xff,0xf4,
0xff,0xef,0xff,0xef,0xff,0xec,0xff,0xeb,0xff,0xeb,0xff,0xe9,0xff,0xea,0xff,0xe9,
0xff,0xe8,0xff,0xea,0xff,0xe9,0xff,0xeb,0xff,0xe8,0xff,0xe9,0xff,0xe5,0xff,0xe5,
0xff,0xe2,0xff,0xe0,0xff,0xdd,0xff,0xda,0xff,0xd9,0xff,0xd6,0xff,0xd6,0xff,0xd6,
0xff,0xd3,0xff,0xd5,0xff,0xd2,0xff,0xd4,0xff,0xd4,0xff,0xd4,0xff,0xd4,0xff,0xd2,
0xff,0xd5,0xff,0xd2,0xff,0xd7,0xff,0xd6,0xff,0xd7,0xff,0xdb,0xff,0xda,0xff,0xe0,
0xff,0xdd,0xff,0xe2,0xff,0xdd,0xff,0xe0,0xff,0xdb,0xff,0xde,0xff,0xda,0xff,0xdb,
0xff,0xd9,0xff,0xda,0xff,0xda,0xff,0xdd,0xff,0xd9,0xff,0xdf,0xff,0xd8,0xff,0xde,
0xff,0xda,0xff,0xdd,0xff,0xda,0xff,0xdc,0xff,0xd9,0xff,0xdb,0xff,0xd8,0xff,0xd8,
0xff,0xd7,0xff,0xd6,0xff,0xd8,0xff,0xd6,0xff,0xd9,0xff,0xd6,0xff,0xd9,0xff,0xd8,
0xff,0xdb,0xff,0xda,0xff,0xd9,0xff,0xdb,0xff,0xd5,0xff,0xda,0xff,0xd5,0xff,0xd9,
0xff,0xd5,0xff,0xd6,0xff,0xd2,0xff,0xd2,0xff,0xcf,0xff,0xcf,0xff,0xcd,0xff,0xca,
0xff,0xcc,0xff,0xc7,0xff,0xcd,0xff,0xc8,0xff,0xcd,0xff,0xc9,0xff,0xce,0xff,0xca,
0xff,0xcf,0xff,0xcc,0xff,0xd0,0xff,0xcf,0xff,0xd3,0xff,0xcf,0xff,0xd5,0xff,0xcf,
0xff,0xd5,0xff,0xd2,0xff,0xd9,0xff,0xd8,0xff,0xde,0xff,0xde,0xff,0xe2,0xff,0xe4,
0xff,0xe8,0xff,0xe6,0xff,0xeb,0xff,0xe5,0xff,0xe8,0xff,0xe2,0xff,0xe4,0xff,0xde,
0xff,0xdf,0xff,0xd9,0xff,0xdb,0xff,0xdc,0xff,0xde,0xff,0xe2,0xff,0xe3,0xff,0xe4,
0xff,0xe5,0xff,0xe3,0xff,0xe4,0xff,0xe2,0xff,0xe1,0xff,0xe2,0xff,0xdc,0xff,0xe2,
0xff,0xde,0xff,0xe2,0xff,0xe4,0xff,0xe5,0xff,0xe8,0xff,0xe6,0xff,0xeb,0xff,0xe4,
0xff,0xea,0xff,0xe1,0xff,0xe6,0xff,0xde,0xff,0xe1,0xff,0xdc,0xff,0xde,0xff,0xdd,
0xff,0xdf,0xff,0xdf,0xff,0xe1,0xff,0xe0,0xff,0xe0,0xff,0xde,0xff,0xdd,0xff,0xd9,
0xff,0xdb,0xff,0xd5,0xff,0xd9,0xff,0xd5,0xff,0xdb,0xff,0xd5,0xff,0xdd,0xff,0xdb,
0xff,0xdf,0xff,0xe1,0xff,0xe3,0xff,0xdf,0xff,0xe5,0xff,0xdc,0xff,0xe2,0xff,0xdd,
0xff,0xe2,0xff,0xdd,0xff,0xe5,0xff,0xe2,0xff,0xe6,0xff,0xe9,0xff,0xe7,0xff,0xec,
0xff,0xe6,0xff,0xed,0xff,0xe2,0xff,0xec,0xff,0xde,0xff,0xe9,0xff,0xdd,0xff,0xe8,
0xff,0xde,0xff,0xe8,0xff,0xe0,0xff,0xe7,0xff,0xe2,0xff,0xe9,0xff,0xe5,0xff,0xeb,
0xff,0xe8,0xff,0xe9,0xff,0xe9,0xff,0xe8,0xff,0xea,0xff,0xe8,0xff,0xe8,0xff,0xe5,
0xff,0xe5,0xff,0xe3,0xff,0xe3,0xff,0xe6,0xff,0xe4,0xff,0xe8,0xff,0xe5,0xff,0xe8,
0xff,0xe6,0xff,0xe8,0xff,0xe7,0xff,0xe9,0xff,0xe9,0xff,0xe9,0xff,0xec,0xff,0xeb,
0xff,0xed,0xff,0xec,0xff,0xed,0xff,0xec,0xff,0xed,0xff,0xea,0xff,0xea,0xff,0xe6,
0xff,0xe7,0xff,0xdf,0xff,0xe5,0xff,0xda,0xff,0xe5,0xff,0xdc,0xff,0xea,0xff,0xe3,
0xff,0xee,0xff,0xeb,0xff,0xef,0xff,0xef,0xff,0xf0,0xff,0xef,0xff,0xec,0xff,0xed,
0xff,0xe9,0xff,0xea,0xff,0xea,0xff,0xe9,0xff,0xea,0xff,0xe7,0xff,0xeb,0xff,0xe5,
0xff,0xec,0xff,0xe5,0xff,0xea,0xff,0xe5,0xff,0xeb,0xff,0xe6,0xff,0xec,0xff,0xe7,
0xff,0xe8,0xff,0xe8,0xff,0xe6,0xff,0xe6,0xff,0xe5,0xff,0xe3,0xff,0xe2,0xff,0xe2,
0xff,0xe2,0xff,0xe2,0xff,0xe2,0xff,0xe3,0xff,0xdf,0xff,0xe6,0xff,0xe3,0xff,0xea,
0xff,0xe9,0xff,0xef,0xff,0xe9,0xff,0xf2,0xff,0xe9,0xff,0xf1,0xff,0xeb,0xff,0xec,
0xff,0xed,0xff,0xe9,0xff,0xec,0xff,0xe9,0xff,0xeb,0xff,0xe9,0xff,0xec,0xff,0xea,
0xff,0xeb,0xff,0xeb,0xff,0xea,0xff,0xe9,0xff,0xeb,0xff,0xe8,0xff,0xeb,0xff,0xe8,
0xff,0xea,0xff,0xe9,0xff,0xed,0xff,0xe8,0xff,0xef,0xff,0xe7,0xff,0xed,0xff,0xe9,
0xff,0xec,0xff,0xe8,0xff,0xeb,0xff,0xe5,0xff,0xed,0xff,0xe8,0xff,0xef,0xff,0xec,
0xff,0xef,0xff,0xed,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xf4,0xff,0xef,0xff,0xf3,
0xff,0xf2,0xff,0xf5,0xff,0xf8,0xff,0xf9,0xff,0xfa,0xff,0xfc,0xff,0xfb,0xff,0xff,
0xff,0xfe,0xff,0xfe,0xff,0x0,0x0,0xfb,0xff,0x0,0x0,0xfa,0xff,0xfd,0xff,0xf7,
0xff,0xfc,0xff,0xf4,0xff,0xfd,0xff,0xf3,0xff,0xfa,0xff,0xf3,0xff,0xf9,0xff,0xf2,
0xff,0xf9,0xff,0xf1,0xff,0xf7,0xff,0xf0,0xff,0xfa,0xff,0xf1,0xff,0xfc,0xff,0xf3,
0xff,0xf7,0xff,0xf2,0xff,0xf4,0xff,0xef,0xff,0xf1,0xff,0xef,0xff,0xed,0xff,0xf1,
0xff,0xeb,0xff,0xf0,0xff,0xe7,0xff,0xeb,0xff,0xe2,0xff,0xe5,0xff,0xe1,0xff,0xdf,
0xff,0xe0,0xff,0xdb,0xff,0xdf,0xff,0xdb,0xff,0xe0,0xff,0xde,0xff,0xe3,0xff,0xdf,
0xff,0xe4,0xff,0xdf,0xff,0xe3,0xff,0xde,0xff,0xe2,0xff,0xdf,0xff,0xe6,0xff,0xe3,
0xff,0xe8,0xff,0xe9,0xff,0xec,0xff,0xee,0xff,0xf2,0xff,0xf0,0xff,0xf4,0xff,0xee,
0xff,0xf5,0xff,0xf0,0xff,0xf9,0xff,0xf2,0xff,0xfb,0xff,0xf3,0xff,0x0,0x0,0xf6,
0xff,0x7,0x0,0xfd,0xff,0x7,0x0,0x0,0x0,0x6,0x0,0x1,0x0,0x6,0x0,0x1,
0x0,0x5,0x0,0x0,0x0,0x7,0x0,0xfe,0xff,0x6,0x0,0xff,0xff,0x3,0x0,0xff,
0xff,0x3,0x0,0xfe,0xff,0x3,0x0,0xfd,0xff,0x1,0x0,0xfe,0xff,0x2,0x0,0xff,
0xff,0x0,0x0,0xfc,0xff,0xfc,0xff,0xf8,0xff,0xf8,0xff,0xf4,0xff,0xf1,0xff,0xf2,
0xff,0xeb,0xff,0xf1,0xff,0xec,0xff,0xef,0xff,0xed,0xff,0xee,0xff,0xee,0xff,0xee,
0xff,0xf1,0xff,0xed,0xff,0xf4,0xff,0xf1,0xff,0xf8,0xff,0xf6,0xff,0xfd,0xff,0xf8,
0xff,0xfd,0xff,0xf8,0xff,0xfb,0xff,0xf9,0xff,0xf9,0xff,0xf7,0xff,0xf8,0xff,0xf5,
0xff,0xf9,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xfa,0xff,0xf7,0xff,0xf7,
0xff,0xf5,0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf7,0xff,0xf5,0xff,0xfd,0xff,0xf8,
0xff,0x3,0x0,0xff,0xff,0x8,0x0,0x4,0x0,0xb,0x0,0x3,0x0,0x8,0x0,0x1,
0x0,0x6,0x0,0x1,0x0,0x8,0x0,0xff,0xff,0x7,0x0,0xfd,0xff,0x5,0x0,0xff,
0xff,0x4,0x0,0xfe,0xff,0x0,0x0,0xfc,0xff,0xfd,0xff,0xfd,0xff,0x0,0x0,0xfe,
0xff,0x3,0x0,0x0,0x0,0x6,0x0,0x5,0x0,0x8,0x0,0x8,0x0,0x6,0x0,0x5,
0x0,0x2,0x0,0x1,0x0,0xff,0xff,0x0,0x0,0xfc,0xff,0xfe,0xff,0xfb,0xff,0xfb,
0xff,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfc,0xff,0xfa,0xff,0xfb,0xff,0xfb,0xff,0xf9,
0xff,0xfc,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfd,0xff,0xfc,
0xff,0x1,0x0,0xfd,0xff,0x5,0x0,0xff,0xff,0x6,0x0,0x2,0x0,0x5,0x0,0x4,
0x0,0x5,0x0,0x1,0x0,0x6,0x0,0xff,0xff,0x5,0x0,0xff,0xff,0x2,0x0,0xfc,
0xff,0x0,0x0,0xfa,0xff,0xff,0xff,0xfd,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,
0x0,0x4,0x0,0x1,0x0,0x7,0x0,0x2,0x0,0x8,0x0,0x3,0x0,0x6,0x0,0x5,
0x0,0x5,0x0,0x7,0x0,0x4,0x0,0x8,0x0,0x4,0x0,0x6,0x0,0x4,0x0,0x1,
0x0,0x1,0x0,0xfe,0xff,0x3,0x0,0x3,0x0,0x9,0x0,0x8,0x0,0xb,0x0,0x8,
0x0,0x9,0x0,0xa,0x0,0x7,0x0,0xa,0x0,0x6,0x0,0x9,0x0,0x8,0x0,0xa,
0x0,0xb,0x0,0xa,0x0,0xe,0x0,0xa,0x0,0x12,0x0,0xd,0x0,0x15,0x0,0xf,
0x0,0x13,0x0,0xf,0x0,0x13,0x0,0xe,0x0,0x16,0x0,0xc,0x0,0x15,0x0,0xc,
0x0,0x11,0x0,0xc,0x0,0xf,0x0,0xa,0x0,0xb,0x0,0xb,0x0,0x8,0x0,0xb,
0x0,0x5,0x0,0x9,0x0,0x2,0x0,0x5,0x0,0x1,0x0,0x3,0x0,0x1,0x0,0x3,
0x0,0x1,0x0,0x2,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x0,0x0,0xff,
0xff,0x0,0x0,0xfb,0xff,0x0,0x0,0xf9,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xf8,
0xff,0xfa,0xff,0xfa,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0x0,0x0,0xfd,
0xff,0x4,0x0,0xfd,0xff,0x5,0x0,0xfc,0xff,0x4,0x0,0xff,0xff,0x8,0x0,0x5,
0x0,0xd,0x0,0x9,0x0,0x11,0x0,0xe,0x0,0x15,0x0,0x13,0x0,0x17,0x0,0x15,
0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x12,0x0,0x12,0x0,0x12,0x0,0x12,0x0,0x13,
0x0,0x13,0x0,0x14,0x0,0x16,0x0,0x14,0x0,0x1a,0x0,0x16,0x0,0x1c,0x0,0x1b,
0x0,0x1c,0x0,0x1e,0x0,0x1d,0x0,0x1f,0x0,0x1d,0x0,0x22,0x0,0x1a,0x0,0x21,
0x0,0x18,0x0,0x1d,0x0,0x17,0x0,0x1c,0x0,0x18,0x0,0x1c,0x0,0x1a,0x0,0x19,
0x0,0x18,0x0,0x16,0x0,0x14,0x0,0x15,0x0,0x13,0x0,0x14,0x0,0x15,0x0,0x14,
0x0,0x19,0x0,0x17,0x0,0x1c,0x0,0x19,0x0,0x1d,0x0,0x18,0x0,0x1b,0x0,0x15,
0x0,0x17,0x0,0x10,0x0,0x13,0x0,0xd,0x0,0xf,0x0,0xb,0x0,0xc,0x0,0xb,
0x0,0xa,0x0,0x9,0x0,0x8,0x0,0x7,0x0,0x8,0x0,0x6,0x0,0x9,0x0,0x8,
0x0,0xa,0x0,0xb,0x0,0xb,0x0,0xd,0x0,0xb,0x0,0xe,0x0,0xd,0x0,0xd,
0x0,0xd,0x0,0xc,0x0,0xe,0x0,0xc,0x0,0x12,0x0,0xe,0x0,0x16,0x0,0x13,
0x0,0x1b,0x0,0x19,0x0,0x1d,0x0,0x1d,0x0,0x1c,0x0,0x1b,0x0,0x1b,0x0,0x1a,
0x0,0x1b,0x0,0x1c,0x0,0x1b,0x0,0x1c,0x0,0x1e,0x0,0x1f,0x0,0x21,0x0,0x23,
0x0,0x21,0x0,0x23,0x0,0x1f,0x0,0x22,0x0,0x1f,0x0,0x21,0x0,0x1e,0x0,0x1e,
0x0,0x1c,0x0,0x1c,0x0,0x1c,0x0,0x1a,0x0,0x1e,0x0,0x18,0x0,0x1b,0x0,0x18,
0x0,0x17,0x0,0x16,0x0,0x16,0x0,0x13,0x0,0x13,0x0,0x12,0x0,0xe,0x0,0xf,
0x0,0x10,0x0,0xf,0x0,0x15,0x0,0x13,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x1c,
0x0,0x1c,0x0,0x1e,0x0,0x1e,0x0,0x1d,0x0,0x1f,0x0,0x20,0x0,0x21,0x0,0x26,
0x0,0x26,0x0,0x2a,0x0,0x29,0x0,0x2c,0x0,0x2d,0x0,0x2f,0x0,0x34,0x0,0x2f,
0x0,0x37,0x0,0x2f,0x0,0x34,0x0,0x30,0x0,0x33,0x0,0x30,0x0,0x31,0x0,0x2e,
0x0,0x2f,0x0,0x2b,0x0,0x2e,0x0,0x2b,0x0,0x2d,0x0,0x2e,0x0,0x30,0x0,0x31,
0x0,0x35,0x0,0x33,0x0,0x38,0x0,0x35,0x0,0x39,0x0,0x37,0x0,0x3a,0x0,0x37,
0x0,0x34,0x0,0x35,0x0,0x2e,0x0,0x2d,0x0,0x2b,0x0,0x27,0x0,0x29,0x0,0x26,
0x0,0x2a,0x0,0x25,0x0,0x2b,0x0,0x27,0x0,0x29,0x0,0x2a,0x0,0x25,0x0,0x26,
0x0,0x22,0x0,0x21,0x0,0x1f,0x0,0x1e,0x0,0x21,0x0,0x1f,0x0,0x27,0x0,0x25,
0x0,0x28,0x0,0x2c,0x0,0x25,0x0,0x2a,0x0,0x1d,0x0,0x20,0x0,0x14,0x0,0x14,
0x0,0x10,0x0,0xc,0x0,0x13,0x0,0xd,0x0,0x1c,0x0,0x15,0x0,0x26,0x0,0x20,
0x0,0x2b,0x0,0x28,0x0,0x2b,0x0,0x26,0x0,0x28,0x0,0x20,0x0,0x28,0x0,0x20,
0x0,0x2e,0x0,0x27,0x0,0x35,0x0,0x30,0x0,0x3b,0x0,0x38,0x0,0x3f,0x0,0x3c,
0x0,0x3c,0x0,0x37,0x0,0x38,0x0,0x31,0x0,0x37,0x0,0x30,0x0,0x38,0x0,0x32,
0x0,0x3b,0x0,0x33,0x0,0x3f,0x0,0x36,0x0,0x3d,0x0,0x39,0x0,0x39,0x0,0x37,
0x0,0x35,0x0,0x34,0x0,0x34,0x0,0x31,0x0,0x34,0x0,0x2f,0x0,0x32,0x0,0x32,
0x0,0x2f,0x0,0x34,0x0,0x2d,0x0,0x30,0x0,0x27,0x0,0x2a,0x0,0x23,0x0,0x25,
0x0,0x22,0x0,0x20,0x0,0x20,0x0,0x20,0x0,0x20,0x0,0x1f,0x0,0x21,0x0,0x21,
0x0,0x1f,0x0,0x23,0x0,0x1d,0x0,0x20,0x0,0x1c,0x0,0x1b,0x0,0x1a,0x0,0x1b,
0x0,0x1b,0x0,0x1c,0x0,0x20,0x0,0x1c,0x0,0x24,0x0,0x1d,0x0,0x25,0x0,0x1e,
0x0,0x26,0x0,0x1f,0x0,0x25,0x0,0x20,0x0,0x25,0x0,0x21,0x0,0x26,0x0,0x22,
0x0,0x28,0x0,0x24,0x0,0x2a,0x0,0x29,0x0,0x2c,0x0,0x2d,0x0,0x2f,0x0,0x30,
0x0,0x30,0x0,0x32,0x0,0x30,0x0,0x33,0x0,0x30,0x0,0x32,0x0,0x33,0x0,0x34,
0x0,0x38,0x0,0x37,0x0,0x38,0x0,0x38,0x0,0x36,0x0,0x38,0x0,0x33,0x0,0x33,
0x0,0x2f,0x0,0x2d,0x0,0x2c,0x0,0x2b,0x0,0x2c,0x0,0x29,0x0,0x2b,0x0,0x2a,
0x0,0x2a,0x0,0x2c,0x0,0x2a,0x0,0x29,0x0,0x28,0x0,0x25,0x0,0x25,0x0,0x23,
0x0,0x23,0x0,0x20,0x0,0x22,0x0,0x21,0x0,0x28,0x0,0x27,0x0,0x2d,0x0,0x2b,
0x0,0x2e,0x0,0x2d,0x0,0x30,0x0,0x2d,0x0,0x30,0x0,0x29,0x0,0x2d,0x0,0x28,
0x0,0x2c,0x0,0x27,0x0,0x2b,0x0,0x25,0x0,0x2b,0x0,0x26,0x0,0x2d,0x0,0x27,
0x0,0x2f,0x0,0x28,0x0,0x33,0x0,0x2d,0x0,0x39,0x0,0x33,0x0,0x3e,0x0,0x37,
0x0,0x3e,0x0,0x37,0x0,0x3c,0x0,0x36,0x0,0x3a,0x0,0x37,0x0,0x3c,0x0,0x39,
0x0,0x3e,0x0,0x37,0x0,0x3d,0x0,0x37,0x0,0x3b,0x0,0x37,0x0,0x38,0x0,0x34,
0x0,0x33,0x0,0x32,0x0,0x30,0x0,0x2f,0x0,0x30,0x0,0x2c,0x0,0x30,0x0,0x2d,
0x0,0x30,0x0,0x2c,0x0,0x2c,0x0,0x28,0x0,0x28,0x0,0x25,0x0,0x28,0x0,0x25,
0x0,0x2b,0x0,0x27,0x0,0x2c,0x0,0x28,0x0,0x2a,0x0,0x24,0x0,0x29,0x0,0x23,
0x0,0x25,0x0,0x21,0x0,0x21,0x0,0x1c,0x0,0x22,0x0,0x1b,0x0,0x25,0x0,0x1f,
0x0,0x25,0x0,0x21,0x0,0x28,0x0,0x23,0x0,0x2b,0x0,0x25,0x0,0x2b,0x0,0x26,
0x0,0x2d,0x0,0x25,0x0,0x2e,0x0,0x24,0x0,0x2e,0x0,0x24,0x0,0x30,0x0,0x27,
0x0,0x32,0x0,0x28,0x0,0x33,0x0,0x2b,0x0,0x32,0x0,0x2d,0x0,0x32,0x0,0x2e,
0x0,0x34,0x0,0x2f,0x0,0x35,0x0,0x30,0x0,0x35,0x0,0x31,0x0,0x35,0x0,0x31,
0x0,0x34,0x0,0x2f,0x0,0x33,0x0,0x2c,0x0,0x34,0x0,0x2c,0x0,0x34,0x0,0x2f,
0x0,0x33,0x0,0x2f,0x0,0x30,0x0,0x2d,0x0,0x2c,0x0,0x2c,0x0,0x2b,0x0,0x2b,
0x0,0x2e,0x0,0x2b,0x0,0x2f,0x0,0x2c,0x0,0x2e,0x0,0x2b,0x0,0x2b,0x0,0x29,
0x0,0x27,0x0,0x28,0x0,0x27,0x0,0x27,0x0,0x28,0x0,0x24,0x0,0x2a,0x0,0x23,
0x0,0x2a,0x0,0x24,0x0,0x29,0x0,0x22,0x0,0x2b,0x0,0x21,0x0,0x2e,0x0,0x24,
0x0,0x31,0x0,0x2a,0x0,0x34,0x0,0x2f,0x0,0x36,0x0,0x33,0x0,0x37,0x0,0x35,
0x0,0x37,0x0,0x33,0x0,0x34,0x0,0x2e,0x0,0x2e,0x0,0x2a,0x0,0x2b,0x0,0x28,
0x0,0x2c,0x0,0x29,0x0,0x31,0x0,0x2d,0x0,0x37,0x0,0x30,0x0,0x39,0x0,0x34,
0x0,0x38,0x0,0x39,0x0,0x39,0x0,0x3a,0x0,0x3b,0x0,0x3c,0x0,0x3e,0x0,0x3f,
0x0,0x42,0x0,0x3f,0x0,0x45,0x0,0x41,0x0,0x47,0x0,0x45,0x0,0x44,0x0,0x44,
0x0,0x41,0x0,0x40,0x0,0x3f,0x0,0x40,0x0,0x3d,0x0,0x3e,0x0,0x3e,0x0,0x3c,
0x0,0x40,0x0,0x3c,0x0,0x3f,0x0,0x3b,0x0,0x3d,0x0,0x39,0x0,0x38,0x0,0x35,
0x0,0x34,0x0,0x31,0x0,0x36,0x0,0x32,0x0,0x3b,0x0,0x35,0x0,0x3d,0x0,0x37,
0x0,0x40,0x0,0x3a,0x0,0x3d,0x0,0x3a,0x0,0x37,0x0,0x35,0x0,0x33,0x0,0x30,
0x0,0x31,0x0,0x2c,0x0,0x31,0x0,0x2d,0x0,0x31,0x0,0x30,0x0,0x31,0x0,0x32,
0x0,0x32,0x0,0x33,0x0,0x2f,0x0,0x32,0x0,0x2a,0x0,0x2e,0x0,0x28,0x0,0x2b,
0x0,0x27,0x0,0x2a,0x0,0x29,0x0,0x2c,0x0,0x2b,0x0,0x30,0x0,0x2b,0x0,0x33,
0x0,0x2a,0x0,0x37,0x0,0x2a,0x0,0x37,0x0,0x29,0x0,0x32,0x0,0x2c,0x0,0x31,
0x0,0x31,0x0,0x36,0x0,0x33,0x0,0x37,0x0,0x34,0x0,0x36,0x0,0x38,0x0,0x36,
0x0,0x3b,0x0,0x37,0x0,0x3e,0x0,0x3a,0x0,0x3f,0x0,0x3c,0x0,0x3f,0x0,0x3c,
0x0,0x3f,0x0,0x3d,0x0,0x3d,0x0,0x3c,0x0,0x3b,0x0,0x3a,0x0,0x38,0x0,0x39,
0x0,0x35,0x0,0x38,0x0,0x34,0x0,0x36,0x0,0x35,0x0,0x34,0x0,0x34,0x0,0x31,
0x0,0x31,0x0,0x2b,0x0,0x2b,0x0,0x26,0x0,0x26,0x0,0x22,0x0,0x24,0x0,0x1c,
0x0,0x25,0x0,0x1c,0x0,0x26,0x0,0x1f,0x0,0x28,0x0,0x20,0x0,0x2a,0x0,0x21,
0x0,0x2a,0x0,0x23,0x0,0x2a,0x0,0x22,0x0,0x2f,0x0,0x24,0x0,0x33,0x0,0x28,
0x0,0x30,0x0,0x2b,0x0,0x2f,0x0,0x2c,0x0,0x2f,0x0,0x2e,0x0,0x2c,0x0,0x2f,
0x0,0x2d,0x0,0x33,0x0,0x33,0x0,0x37,0x0,0x36,0x0,0x37,0x0,0x38,0x0,0x38,
0x0,0x39,0x0,0x39,0x0,0x38,0x0,0x37,0x0,0x36,0x0,0x34,0x0,0x33,0x0,0x32,
0x0,0x30,0x0,0x2f,0x0,0x2f,0x0,0x2c,0x0,0x2b,0x0,0x28,0x0,0x26,0x0,0x26,
0x0,0x26,0x0,0x26,0x0,0x25,0x0,0x25,0x0,0x23,0x0,0x23,0x0,0x24,0x0,0x20,
0x0,0x26,0x0,0x1f,0x0,0x27,0x0,0x1f,0x0,0x26,0x0,0x1f,0x0,0x25,0x0,0x1d,
0x0,0x23,0x0,0x1c,0x0,0x21,0x0,0x1b,0x0,0x1f,0x0,0x19,0x0,0x1d,0x0,0x1a,
0x0,0x19,0x0,0x1a,0x0,0x16,0x0,0x18,0x0,0x16,0x0,0x17,0x0,0x17,0x0,0x16,
0x0,0x16,0x0,0x18,0x0,0x18,0x0,0x1c,0x0,0x1f,0x0,0x21,0x0,0x26,0x0,0x25,
0x0,0x29,0x0,0x28,0x0,0x29,0x0,0x29,0x0,0x29,0x0,0x2b,0x0,0x28,0x0,0x2a,
0x0,0x2a,0x0,0x29,0x0,0x2a,0x0,0x2c,0x0,0x27,0x0,0x2e,0x0,0x27,0x0,0x2f,
0x0,0x27,0x0,0x31,0x0,0x25,0x0,0x2e,0x0,0x24,0x0,0x2c,0x0,0x22,0x0,0x29,
0x0,0x1e,0x0,0x22,0x0,0x1b,0x0,0x1b,0x0,0x1a,0x0,0x19,0x0,0x18,0x0,0x15,
0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x14,0x0,0x15,0x0,0x16,0x0,0x16,
0x0,0x16,0x0,0x18,0x0,0x13,0x0,0x13,0x0,0xe,0x0,0xd,0x0,0xc,0x0,0xa,
0x0,0xa,0x0,0x8,0x0,0x7,0x0,0x4,0x0,0x7,0x0,0x2,0x0,0x9,0x0,0x5,
0x0,0x8,0x0,0x9,0x0,0x7,0x0,0xa,0x0,0x9,0x0,0x9,0x0,0xa,0x0,0xb,
0x0,0xa,0x0,0xe,0x0,0x9,0x0,0x10,0x0,0x9,0x0,0x11,0x0,0xc,0x0,0x13,
0x0,0xd,0x0,0x15,0x0,0xb,0x0,0x14,0x0,0xe,0x0,0x14,0x0,0xf,0x0,0x15,
0x0,0xe,0x0,0x13,0x0,0xd,0x0,0x10,0x0,0xc,0x0,0x10,0x0,0xb,0x0,0x11,
0x0,0xb,0x0,0x11,0x0,0xe,0x0,0x13,0x0,0x12,0x0,0x14,0x0,0x13,0x0,0x12,
0x0,0xf,0x0,0xf,0x0,0xb,0x0,0xf,0x0,0x9,0x0,0xc,0x0,0x7,0x0,0x6,
0x0,0x7,0x0,0x0,0x0,0x5,0x0,0xfd,0xff,0x1,0x0,0xfb,0xff,0x0,0x0,0xfd,
0xff,0xfe,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0xf9,0xff,0xfa,0xff,0xf9,0xff,0xf8,
0xff,0xf7,0xff,0xf5,0xff,0xf6,0xff,0xf7,0xff,0xf9,0xff,0xfb,0xff,0xfb,0xff,0xfc,
0xff,0xf8,0xff,0xfc,0xff,0xf5,0xff,0xfb,0xff,0xf5,0xff,0xfa,0xff,0xf6,0xff,0xf9,
0xff,0xfa,0xff,0xf8,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0x0,0x0,0x0,0x0,0x5,
0x0,0x5,0x0,0xb,0x0,0x6,0x0,0xd,0x0,0x7,0x0,0xd,0x0,0x8,0x0,0xe,
0x0,0x5,0x0,0xb,0x0,0x0,0x0,0x3,0x0,0xfb,0xff,0xfd,0xff,0xf8,0xff,0xf9,
0xff,0xf7,0xff,0xf8,0xff,0xfa,0xff,0xfc,0xff,0xff,0xff,0x0,0x0,0x4,0x0,0x3,
0x0,0x8,0x0,0x7,0x0,0x9,0x0,0xb,0x0,0x7,0x0,0xc,0x0,0x6,0x0,0x8,
0x0,0x6,0x0,0x3,0x0,0x1,0x0,0xfe,0xff,0xfa,0xff,0xf6,0xff,0xf5,0xff,0xf2,
0xff,0xef,0xff,0xf0,0xff,0xec,0xff,0xeb,0xff,0xe9,0xff,0xe9,0xff,0xe9,0xff,0xec,
0xff,0xed,0xff,0xef,0xff,0xef,0xff,0xf2,0xff,0xf2,0xff,0xf5,0xff,0xf7,0xff,0xf8,
0xff,0xf8,0xff,0xfa,0xff,0xf4,0xff,0xfa,0xff,0xf2,0xff,0xf4,0xff,0xf3,0xff,0xef,
0xff,0xf4,0xff,0xee,0xff,0xf6,0xff,0xf1,0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xfa,
0xff,0xf8,0xff,0xfb,0xff,0xf7,0xff,0xfd,0xff,0xfd,0xff,0x1,0x0,0x3,0x0,0x4,
0x0,0x4,0x0,0x7,0x0,0x4,0x0,0x9,0x0,0x3,0x0,0x6,0x0,0xfd,0xff,0x2,
0x0,0xf8,0xff,0x0,0x0,0xfc,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,
0x0,0xff,0xff,0x3,0x0,0xfb,0xff,0x1,0x0,0xf5,0xff,0xfc,0xff,0xf1,0xff,0xf7,
0xff,0xf0,0xff,0xf3,0xff,0xf0,0xff,0xf2,0xff,0xf3,0xff,0xf2,0xff,0xf3,0xff,0xf1,
0xff,0xee,0xff,0xf0,0xff,0xeb,0xff,0xee,0xff,0xea,0xff,0xec,0xff,0xed,0xff,0xed,
0xff,0xf1,0xff,0xef,0xff,0xf2,0xff,0xef,0xff,0xed,0xff,0xed,0xff,0xe8,0xff,0xea,
0xff,0xe5,0xff,0xe9,0xff,0xe4,0xff,0xeb,0xff,0xe9,0xff,0xef,0xff,0xf0,0xff,0xf4,
0xff,0xf4,0xff,0xf9,0xff,0xf6,0xff,0xfd,0xff,0xf6,0xff,0xfe,0xff,0xf7,0xff,0xfd,
0xff,0xfb,0xff,0xfe,0xff,0x1,0x0,0x3,0x0,0x7,0x0,0xa,0x0,0xa,0x0,0xe,
0x0,0x8,0x0,0xb,0x0,0x2,0x0,0x4,0x0,0xfa,0xff,0xff,0xff,0xf6,0xff,0xfd,
0xff,0xf5,0xff,0xfe,0xff,0xf6,0xff,0x1,0x0,0xf6,0xff,0x1,0x0,0xf3,0xff,0xfe,
0xff,0xf0,0xff,0xf8,0xff,0xee,0xff,0xf4,0xff,0xec,0xff,0xf1,0xff,0xeb,0xff,0xef,
0xff,0xea,0xff,0xea,0xff,0xe5,0xff,0xe5,0xff,0xdf,0xff,0xdd,0xff,0xd9,0xff,0xd6,
0xff,0xd6,0xff,0xd5,0xff,0xd7,0xff,0xd6,0xff,0xd7,0xff,0xd6,0xff,0xd7,0xff,0xdb,
0xff,0xdc,0xff,0xdf,0xff,0xe2,0xff,0xdf,0xff,0xe6,0xff,0xe3,0xff,0xeb,0xff,0xe9,
0xff,0xf1,0xff,0xee,0xff,0xf6,0xff,0xf6,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0xfc,
0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfd,0xff,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,
0x0,0xfd,0xff,0x0,0x0,0xfc,0xff,0xfd,0xff,0xf8,0xff,0xf7,0xff,0xf3,0xff,0xf1,
0xff,0xf2,0xff,0xef,0xff,0xf5,0xff,0xf0,0xff,0xf6,0xff,0xf1,0xff,0xf3,0xff,0xf1,
0xff,0xed,0xff,0xed,0xff,0xe8,0xff,0xe7,0xff,0xe5,0xff,0xe4,0xff,0xe4,0xff,0xe2,
0xff,0xe5,0xff,0xe4,0xff,0xe6,0xff,0xe6,0xff,0xe3,0xff,0xe5,0xff,0xe0,0xff,0xe1,
0xff,0xdc,0xff,0xdc,0xff,0xd7,0xff,0xda,0xff,0xd8,0xff,0xd9,0xff,0xdd,0xff,0xd8,
0xff,0xe2,0xff,0xd8,0xff,0xe4,0xff,0xdc,0xff,0xe4,0xff,0xdf,0xff,0xe2,0xff,0xe0,
0xff,0xe2,0xff,0xe2,0xff,0xe2,0xff,0xe1,0xff,0xe3,0xff,0xe0,0xff,0xe5,0xff,0xe4,
0xff,0xe7,0xff,0xe6,0xff,0xe9,0xff,0xe8,0xff,0xea,0xff,0xea,0xff,0xe8,0xff,0xe9,
0xff,0xe5,0xff,0xe7,0xff,0xe7,0xff,0xe9,0xff,0xeb,0xff,0xeb,0xff,0xed,0xff,0xec,
0xff,0xed,0xff,0xec,0xff,0xea,0xff,0xe9,0xff,0xe7,0xff,0xe5,0xff,0xe4,0xff,0xe3,
0xff,0xe2,0xff,0xe1,0xff,0xe2,0xff,0xe1,0xff,0xe1,0xff,0xe3,0xff,0xe1,0xff,0xe3,
0xff,0xe0,0xff,0xdf,0xff,0xde,0xff,0xdb,0xff,0xdb,0xff,0xd8,0xff,0xd9,0xff,0xd5,
0xff,0xda,0xff,0xd7,0xff,0xe0,0xff,0xdb,0xff,0xe7,0xff,0xe1,0xff,0xec,0xff,0xe9,
0xff,0xef,0xff,0xeb,0xff,0xee,0xff,0xe8,0xff,0xeb,0xff,0xe6,0xff,0xe9,0xff,0xe7,
0xff,0xe9,0xff,0xe8,0xff,0xea,0xff,0xea,0xff,0xea,0xff,0xeb,0xff,0xe9,0xff,0xe9,
0xff,0xe9,0xff,0xe6,0xff,0xe9,0xff,0xe5,0xff,0xea,0xff,0xe7,0xff,0xee,0xff,0xec,
0xff,0xf3,0xff,0xf1,0xff,0xf6,0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf0,0xff,0xee,
0xff,0xe9,0xff,0xe6,0xff,0xe4,0xff,0xe2,0xff,0xe2,0xff,0xdf,0xff,0xe3,0xff,0xe0,
0xff,0xe1,0xff,0xe1,0xff,0xdc,0xff,0xdc,0xff,0xd8,0xff,0xd8,0xff,0xd6,0xff,0xd6,
0xff,0xd6,0xff,0xd7,0xff,0xda,0xff,0xdc,0xff,0xde,0xff,0xe3,0xff,0xdf,0xff,0xe4,
0xff,0xdf,0xff,0xe2,0xff,0xdc,0xff,0xe0,0xff,0xdb,0xff,0xdd,0xff,0xdb,0xff,0xdc,
0xff,0xdb,0xff,0xe0,0xff,0xdd,0xff,0xe3,0xff,0xe0,0xff,0xe4,0xff,0xe1,0xff,0xe3,
0xff,0xe1,0xff,0xe4,0xff,0xe1,0xff,0xe6,0xff,0xe3,0xff,0xe7,0xff,0xe9,0xff,0xe8,
0xff,0xef,0xff,0xee,0xff,0xf3,0xff,0xf6,0xff,0xf6,0xff,0xf7,0xff,0xf6,0xff,0xf2,
0xff,0xf2,0xff,0xee,0xff,0xee,0xff,0xea,0xff,0xec,0xff,0xe8,0xff,0xec,0xff,0xea,
0xff,0xed,0xff,0xe9,0xff,0xec,0xff,0xe6,0xff,0xea,0xff,0xe4,0xff,0xe4,0xff,0xe1,
0xff,0xdf,0xff,0xdc,0xff,0xdc,0xff,0xda,0xff,0xdb,0xff,0xd8,0xff,0xdc,0xff,0xd7,
0xff,0xdd,0xff,0xd8,0xff,0xd9,0xff,0xd6,0xff,0xd6,0xff,0xd3,0xff,0xd7,0xff,0xd6,
0xff,0xd8,0xff,0xd7,0xff,0xda,0xff,0xd7,0xff,0xdd,0xff,0xde,0xff,0xde,0xff,0xe3,
0xff,0xdd,0xff,0xe1,0xff,0xda,0xff,0xdd,0xff,0xd7,0xff,0xd9,0xff,0xda,0xff,0xd8,
0xff,0xdf,0xff,0xdc,0xff,0xe4,0xff,0xe1,0xff,0xea,0xff,0xe7,0xff,0xee,0xff,0xed,
0xff,0xee,0xff,0xee,0xff,0xef,0xff,0xea,0xff,0xf1,0xff,0xea,0xff,0xf1,0xff,0xed,
0xff,0xf2,0xff,0xf0,0xff,0xf2,0xff,0xef,0xff,0xed,0xff,0xe9,0xff,0xe7,0xff,0xe1,
0xff,0xe1,0xff,0xda,0xff,0xdc,0xff,0xd5,0xff,0xdc,0xff,0xd4,0xff,0xe1,0xff,0xd7,
0xff,0xe6,0xff,0xde,0xff,0xe7,0xff,0xe2,0xff,0xe5,0xff,0xe1,0xff,0xe0,0xff,0xdc,
0xff,0xda,0xff,0xd6,0xff,0xd8,0xff,0xd1,0xff,0xdb,0xff,0xd2,0xff,0xdd,0xff,0xd6,
0xff,0xdc,0xff,0xda,0xff,0xd7,0xff,0xd8,0xff,0xd3,0xff,0xcf,0xff,0xcf,0xff,0xc7,
0xff,0xcd,0xff,0xc8,0xff,0xd2,0xff,0xcf,0xff,0xda,0xff,0xda,0xff,0xe0,0xff,0xdf,
0xff,0xe0,0xff,0xdc,0xff,0xdd,0xff,0xd8,0xff,0xd9,0xff,0xd6,0xff,0xdb,0xff,0xd7,
0xff,0xe3,0xff,0xe0,0xff,0xeb,0xff,0xeb,0xff,0xec,0xff,0xee,0xff,0xe7,0xff,0xe9,
0xff,0xe0,0xff,0xe1,0xff,0xdb,0xff,0xda,0xff,0xd9,0xff,0xd8,0xff,0xdb,0xff,0xdc,
0xff,0xe1,0xff,0xde,0xff,0xe2,0xff,0xdc,0xff,0xdd,0xff,0xda,0xff,0xd8,0xff,0xd7,
0xff,0xd7,0xff,0xd3,0xff,0xd7,0xff,0xd1,0xff,0xd8,0xff,0xd2,0xff,0xd7,0xff,0xd3,
0xff,0xd2,0xff,0xd1,0xff,0xcc,0xff,0xce,0xff,0xc8,0xff,0xcc,0xff,0xc6,0xff,0xc6,
0xff,0xc3,0xff,0xc1,0xff,0xc0,0xff,0xbf,0xff,0xc1,0xff,0xc3,0xff,0xc7,0xff,0xca,
0xff,0xca,0xff,0xd1,0xff,0xcc,0xff,0xd4,0xff,0xd0,0xff,0xd3,0xff,0xd5,0xff,0xd2,
0xff,0xd6,0xff,0xd1,0xff,0xd4,0xff,0xd1,0xff,0xd4,0xff,0xd5,0xff,0xd6,0xff,0xda,
0xff,0xd9,0xff,0xdb,0xff,0xda,0xff,0xd8,0xff,0xd5,0xff,0xd2,0xff,0xcd,0xff,0xcc,
0xff,0xcd,0xff,0xcc,0xff,0xd1,0xff,0xd2,0xff,0xd3,0xff,0xd7,0xff,0xd7,0xff,0xd9,
0xff,0xd9,0xff,0xd8,0xff,0xd7,0xff,0xd4,0xff,0xd3,0xff,0xcf,0xff,0xd1,0xff,0xce,
0xff,0xd3,0xff,0xd1,0xff,0xd6,0xff,0xd4,0xff,0xd5,0xff,0xd1,0xff,0xd1,0xff,0xca,
0xff,0xc8,0xff,0xc3,0xff,0xbf,0xff,0xbd,0xff,0xbe,0xff,0xbe,0xff,0xc4,0xff,0xc5,
0xff,0xca,0xff,0xc9,0xff,0xcd,0xff,0xcb,0xff,0xcb,0xff,0xca,0xff,0xc5,0xff,0xc5,
0xff,0xc2,0xff,0xc1,0xff,0xc3,0xff,0xc5,0xff,0xc6,0xff,0xcc,0xff,0xc9,0xff,0xcf,
0xff,0xc8,0xff,0xce,0xff,0xc5,0xff,0xc7,0xff,0xc1,0xff,0xc1,0xff,0xbe,0xff,0xc0,
0xff,0xc2,0xff,0xc4,0xff,0xca,0xff,0xcd,0xff,0xd1,0xff,0xd8,0xff,0xd6,0xff,0xda,
0xff,0xd6,0xff,0xd9,0xff,0xd3,0xff,0xd9,0xff,0xd2,0xff,0xd9,0xff,0xd4,0xff,0xdb,
0xff,0xd8,0xff,0xdf,0xff,0xdc,0xff,0xe1,0xff,0xda,0xff,0xe0,0xff,0xd7,0xff,0xdb,
0xff,0xd2,0xff,0xd4,0xff,0xcf,0xff,0xd1,0xff,0xce,0xff,0xd4,0xff,0xd1,0xff,0xd7,
0xff,0xd4,0xff,0xd9,0xff,0xd4,0xff,0xdb,0xff,0xd2,0xff,0xd8,0xff,0xce,0xff,0xd1,
0xff,0xcb,0xff,0xca,0xff,0xcb,0xff,0xc8,0xff,0xcd,0xff,0xc9,0xff,0xcf,0xff,0xca,
0xff,0xcd,0xff,0xc9,0xff,0xc9,0xff,0xc5,0xff,0xc3,0xff,0xc1,0xff,0xbf,0xff,0xbd,
0xff,0xbe,0xff,0xbe,0xff,0xbe,0xff,0xc3,0xff,0xbd,0xff,0xc3,0xff,0xbf,0xff,0xc2,
0xff,0xc1,0xff,0xc4,0xff,0xc2,0xff,0xc4,0xff,0xc2,0xff,0xc3,0xff,0xc2,0xff,0xc6,
0xff,0xc6,0xff,0xc6,0xff,0xcc,0xff,0xc7,0xff,0xce,0xff,0xcb,0xff,0xcc,0xff,0xce,
0xff,0xcb,0xff,0xce,0xff,0xc9,0xff,0xcc,0xff,0xc8,0xff,0xc7,0xff,0xc8,0xff,0xc5,
0xff,0xca,0xff,0xc8,0xff,0xca,0xff,0xc9,0xff,0xca,0xff,0xcb,0xff,0xcc,0xff,0xcd,
0xff,0xcc,0xff,0xcb,0xff,0xc9,0xff,0xc9,0xff,0xc9,0xff,0xca,0xff,0xcd,0xff,0xcc,
0xff,0xd2,0xff,0xd2,0xff,0xd2,0xff,0xd6,0xff,0xcf,0xff,0xd3,0xff,0xc9,0xff,0xcc,
0xff,0xc3,0xff,0xc5,0xff,0xbe,0xff,0xbe,0xff,0xbb,0xff,0xbc,0xff,0xbc,0xff,0xbd,
0xff,0xbe,0xff,0xbe,0xff,0xbf,0xff,0xbd,0xff,0xbe,0xff,0xbb,0xff,0xbd,0xff,0xba,
0xff,0xbf,0xff,0xba,0xff,0xc2,0xff,0xbd,0xff,0xc5,0xff,0xc3,0xff,0xc9,0xff,0xc7,
0xff,0xca,0xff,0xc7,0xff,0xc8,0xff,0xc8,0xff,0xc5,0xff,0xc5,0xff,0xc3,0xff,0xc1,
0xff,0xc0,0xff,0xc2,0xff,0xc0,0xff,0xc7,0xff,0xc5,0xff,0xcc,0xff,0xce,0xff,0xd3,
0xff,0xd4,0xff,0xd6,0xff,0xd4,0xff,0xd5,0xff,0xd3,0xff,0xd3,0xff,0xd3,0xff,0xd3,
0xff,0xd6,0xff,0xd4,0xff,0xd8,0xff,0xd5,0xff,0xd8,0xff,0xd6,0xff,0xd7,0xff,0xd6,
0xff,0xd3,0xff,0xd3,0xff,0xcb,0xff,0xcd,0xff,0xc6,0xff,0xcb,0xff,0xc7,0xff,0xcb,
0xff,0xcc,0xff,0xcb,0xff,0xd0,0xff,0xce,0xff,0xd2,0xff,0xce,0xff,0xd0,0xff,0xcb,
0xff,0xd0,0xff,0xca,0xff,0xd0,0xff,0xca,0xff,0xd0,0xff,0xc9,0xff,0xd3,0xff,0xcc,
0xff,0xd6,0xff,0xd0,0xff,0xd9,0xff,0xd3,0xff,0xda,0xff,0xd5,0xff,0xd7,0xff,0xd6,
0xff,0xd5,0xff,0xd4,0xff,0xd6,0xff,0xd1,0xff,0xd8,0xff,0xce,0xff,0xd8,0xff,0xd1,
0xff,0xd8,0xff,0xd6,0xff,0xd8,0xff,0xda,0xff,0xda,0xff,0xdb,0xff,0xdb,0xff,0xde,
0xff,0xdb,0xff,0xe0,0xff,0xdd,0xff,0xe2,0xff,0xe0,0xff,0xe5,0xff,0xe3,0xff,0xe8,
0xff,0xe4,0xff,0xe9,0xff,0xe2,0xff,0xe8,0xff,0xe2,0xff,0xe5,0xff,0xe4,0xff,0xe5,
0xff,0xe6,0xff,0xe7,0xff,0xe5,0xff,0xe7,0xff,0xe5,0xff,0xe6,0xff,0xe4,0xff,0xe5,
0xff,0xe1,0xff,0xe6,0xff,0xe2,0xff,0xe7,0xff,0xe5,0xff,0xe7,0xff,0xe7,0xff,0xea,
0xff,0xea,0xff,0xee,0xff,0xee,0xff,0xf0,0xff,0xf0,0xff,0xf0,0xff,0xef,0xff,0xf0,
0xff,0xeb,0xff,0xf0,0xff,0xe8,0xff,0xee,0xff,0xe9,0xff,0xec,0xff,0xec,0xff,0xec,
0xff,0xec,0xff,0xef,0xff,0xec,0xff,0xf0,0xff,0xee,0xff,0xf2,0xff,0xf1,0xff,0xf4,
0xff,0xf5,0xff,0xf4,0xff,0xf7,0xff,0xf2,0xff,0xf4,0xff,0xf2,0xff,0xf3,0xff,0xf2,
0xff,0xf2,0xff,0xf2,0xff,0xf0,0xff,0xf0,0xff,0xef,0xff,0xec,0xff,0xed,0xff,0xea,
0xff,0xea,0xff,0xe8,0xff,0xe6,0xff,0xe7,0xff,0xe4,0xff,0xea,0xff,0xe9,0xff,0xf1,
0xff,0xf3,0xff,0xf5,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xfd,0xff,0xfa,0xff,0xfd,
0xff,0xf9,0xff,0xfe,0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0x0,0x0,0xff,0xff,0x3,
0x0,0x1,0x0,0x4,0x0,0xff,0xff,0x1,0x0,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfa,
0xff,0xfb,0xff,0xfb,0xff,0xfe,0xff,0xff,0xff,0x6,0x0,0x4,0x0,0xc,0x0,0x9,
0x0,0x10,0x0,0xd,0x0,0x10,0x0,0xc,0x0,0xe,0x0,0x9,0x0,0xb,0x0,0x6,
0x0,0x7,0x0,0x1,0x0,0x1,0x0,0xfb,0xff,0xfe,0xff,0xf7,0xff,0xfe,0xff,0xf4,
0xff,0xfc,0xff,0xf6,0xff,0xfc,0xff,0xf7,0xff,0xfa,0xff,0xf5,0xff,0xf5,0xff,0xf8,
0xff,0xf5,0xff,0xfa,0xff,0xf8,0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0x0,0x0,0xfd,
0xff,0x4,0x0,0xfd,0xff,0x3,0x0,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfa,0xff,0xfb,
0xff,0xf8,0xff,0xfb,0xff,0xf8,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfc,0xff,0xfa,
0xff,0xfa,0xff,0xfc,0xff,0xf8,0xff,0x1,0x0,0xfb,0xff,0x4,0x0,0x1,0x0,0x5,
0x0,0x7,0x0,0x7,0x0,0xb,0x0,0xb,0x0,0xd,0x0,0xa,0x0,0xc,0x0,0x9,
0x0,0xa,0x0,0x8,0x0,0x9,0x0,0x7,0x0,0xc,0x0,0xa,0x0,0xf,0x0,0xe,
0x0,0x10,0x0,0xe,0x0,0x10,0x0,0xc,0x0,0xf,0x0,0xb,0x0,0xd,0x0,0x7,
0x0,0xb,0x0,0x5,0x0,0xd,0x0,0x7,0x0,0x10,0x0,0xa,0x0,0x10,0x0,0xb,
0x0,0xe,0x0,0xb,0x0,0xb,0x0,0x8,0x0,0x9,0x0,0x5,0x0,0x7,0x0,0x4,
0x0,0x7,0x0,0x4,0x0,0x7,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,
0x0,0xff,0xff,0x0,0x0,0xfe,0xff,0x0,0x0,0xfe,0xff,0x1,0x0,0x0,0x0,0x2,
0x0,0x6,0x0,0x7,0x0,0xd,0x0,0xe,0x0,0x12,0x0,0x12,0x0,0x14,0x0,0x14,
0x0,0x15,0x0,0x16,0x0,0x15,0x0,0x15,0x0,0x11,0x0,0x13,0x0,0xc,0x0,0x11,
0x0,0x9,0x0,0x11,0x0,0x8,0x0,0x10,0x0,0xa,0x0,0x11,0x0,0xe,0x0,0x12,
0x0,0x12,0x0,0x16,0x0,0x16,0x0,0x1a,0x0,0x19,0x0,0x1f,0x0,0x1b,0x0,0x24,
0x0,0x1f,0x0,0x26,0x0,0x23,0x0,0x27,0x0,0x27,0x0,0x26,0x0,0x28,0x0,0x21,
0x0,0x26,0x0,0x1b,0x0,0x22,0x0,0x19,0x0,0x1e,0x0,0x18,0x0,0x1d,0x0,0x18,
0x0,0x1e,0x0,0x18,0x0,0x21,0x0,0x1b,0x0,0x25,0x0,0x1f,0x0,0x25,0x0,0x22,
0x0,0x23,0x0,0x24,0x0,0x24,0x0,0x26,0x0,0x26,0x0,0x27,0x0,0x25,0x0,0x25,
0x0,0x26,0x0,0x24,0x0,0x26,0x0,0x27,0x0,0x25,0x0,0x28,0x0,0x26,0x0,0x28,
0x0,0x26,0x0,0x28,0x0,0x24,0x0,0x27,0x0,0x24,0x0,0x24,0x0,0x23,0x0,0x21,
0x0,0x20,0x0,0x20,0x0,0x1e,0x0,0x22,0x0,0x1b,0x0,0x22,0x0,0x18,0x0,0x21,
0x0,0x19,0x0,0x22,0x0,0x1b,0x0,0x23,0x0,0x1c,0x0,0x22,0x0,0x1f,0x0,0x21,
0x0,0x20,0x0,0x21,0x0,0x1c,0x0,0x1f,0x0,0x19,0x0,0x1c,0x0,0x19,0x0,0x1a,
0x0,0x16,0x0,0x16,0x0,0x11,0x0,0x11,0x0,0x10,0x0,0xd,0x0,0x11,0x0,0xc,
0x0,0x12,0x0,0xf,0x0,0x18,0x0,0x15,0x0,0x1d,0x0,0x1a,0x0,0x1d,0x0,0x1c,
0x0,0x1e,0x0,0x1e,0x0,0x1f,0x0,0x20,0x0,0x1f,0x0,0x21,0x0,0x22,0x0,0x21,
0x0,0x23,0x0,0x22,0x0,0x26,0x0,0x22,0x0,0x27,0x0,0x20,0x0,0x23,0x0,0x1e,
0x0,0x20,0x0,0x1c,0x0,0x22,0x0,0x1c,0x0,0x22,0x0,0x1e,0x0,0x21,0x0,0x23,
0x0,0x24,0x0,0x27,0x0,0x27,0x0,0x29,0x0,0x28,0x0,0x2a,0x0,0x27,0x0,0x2c,
0x0,0x27,0x0,0x2a,0x0,0x2a,0x0,0x2a,0x0,0x2d,0x0,0x2e,0x0,0x2a,0x0,0x2c,
0x0,0x23,0x0,0x23,0x0,0x1b,0x0,0x1b,0x0,0x17,0x0,0x14,0x0,0x16,0x0,0x11,
0x0,0x17,0x0,0x15,0x0,0x1b,0x0,0x1b,0x0,0x21,0x0,0x1e,0x0,0x21,0x0,0x20,
0x0,0x1e,0x0,0x1e,0x0,0x1d,0x0,0x1b,0x0,0x1e,0x0,0x1d,0x0,0x1f,0x0,0x21,
0x0,0x21,0x0,0x23,0x0,0x20,0x0,0x22,0x0,0x1d,0x0,0x1d,0x0,0x15,0x0,0x15,
0x0,0xe,0x0,0x14,0x0,0xd,0x0,0x18,0x0,0x13,0x0,0x1a,0x0,0x1b,0x0,0x1e,
0x0,0x20,0x0,0x25,0x0,0x21,0x0,0x27,0x0,0x22,0x0,0x25,0x0,0x25,0x0,0x24,
0x0,0x29,0x0,0x26,0x0,0x2f,0x0,0x2c,0x0,0x34,0x0,0x31,0x0,0x33,0x0,0x33,
0x0,0x31,0x0,0x31,0x0,0x2d,0x0,0x2c,0x0,0x2a,0x0,0x27,0x0,0x29,0x0,0x28,
0x0,0x2b,0x0,0x2e,0x0,0x2e,0x0,0x34,0x0,0x32,0x0,0x39,0x0,0x32,0x0,0x38,
0x0,0x31,0x0,0x32,0x0,0x30,0x0,0x2e,0x0,0x2f,0x0,0x2f,0x0,0x31,0x0,0x31,
0x0,0x38,0x0,0x37,0x0,0x3a,0x0,0x3a,0x0,0x36,0x0,0x36,0x0,0x30,0x0,0x30,
0x0,0x2b,0x0,0x28,0x0,0x28,0x0,0x23,0x0,0x2a,0x0,0x25,0x0,0x2a,0x0,0x2b,
0x0,0x2b,0x0,0x2b,0x0,0x2b,0x0,0x29,0x0,0x27,0x0,0x25,0x0,0x1f,0x0,0x1d,
0x0,0x1d,0x0,0x1c,0x0,0x21,0x0,0x24,0x0,0x27,0x0,0x2c,0x0,0x2f,0x0,0x2f,
0x0,0x30,0x0,0x30,0x0,0x2b,0x0,0x2b,0x0,0x28,0x0,0x22,0x0,0x27,0x0,0x23,
0x0,0x29,0x0,0x2b,0x0,0x30,0x0,0x34,0x0,0x36,0x0,0x38,0x0,0x34,0x0,0x35,
0x0,0x2e,0x0,0x2e,0x0,0x2a,0x0,0x2a,0x0,0x2b,0x0,0x2b,0x0,0x2d,0x0,0x31,
0x0,0x31,0x0,0x36,0x0,0x35,0x0,0x3b,0x0,0x37,0x0,0x3b,0x0,0x35,0x0,0x38,
0x0,0x31,0x0,0x33,0x0,0x2d,0x0,0x2f,0x0,0x29,0x0,0x2c,0x0,0x25,0x0,0x29,
0x0,0x23,0x0,0x24,0x0,0x20,0x0,0x1f,0x0,0x19,0x0,0x19,0x0,0x17,0x0,0x15,
0x0,0x18,0x0,0x18,0x0,0x1a,0x0,0x1f,0x0,0x1d,0x0,0x23,0x0,0x1d,0x0,0x23,
0x0,0x1c,0x0,0x22,0x0,0x1b,0x0,0x21,0x0,0x1c,0x0,0x21,0x0,0x1c,0x0,0x20,
0x0,0x1c,0x0,0x20,0x0,0x1c,0x0,0x22,0x0,0x1e,0x0,0x23,0x0,0x21,0x0,0x24,
0x0,0x20,0x0,0x23,0x0,0x1d,0x0,0x20,0x0,0x1a,0x0,0x1d,0x0,0x16,0x0,0x1a,
0x0,0x19,0x0,0x1a,0x0,0x21,0x0,0x21,0x0,0x27,0x0,0x2a,0x0,0x2b,0x0,0x2c,
0x0,0x2d,0x0,0x2c,0x0,0x29,0x0,0x2c,0x0,0x23,0x0,0x2a,0x0,0x20,0x0,0x26,
0x0,0x20,0x0,0x23,0x0,0x20,0x0,0x24,0x0,0x1d,0x0,0x24,0x0,0x1a,0x0,0x21,
0x0,0x18,0x0,0x1e,0x0,0x18,0x0,0x1d,0x0,0x1a,0x0,0x1c,0x0,0x1c,0x0,0x1f,
0x0,0x1e,0x0,0x22,0x0,0x20,0x0,0x23,0x0,0x1d,0x0,0x23,0x0,0x18,0x0,0x1f,
0x0,0x16,0x0,0x1a,0x0,0x18,0x0,0x1a,0x0,0x1b,0x0,0x19,0x0,0x1c,0x0,0x19,
0x0,0x1b,0x0,0x1b,0x0,0x1a,0x0,0x1b,0x0,0x16,0x0,0x17,0x0,0x11,0x0,0x12,
0x0,0x10,0x0,0x11,0x0,0x14,0x0,0x15,0x0,0x1b,0x0,0x1b,0x0,0x20,0x0,0x1f,
0x0,0x1e,0x0,0x1f,0x0,0x1a,0x0,0x1e,0x0,0x1b,0x0,0x1c,0x0,0x1c,0x0,0x1b,
0x0,0x1c,0x0,0x1a,0x0,0x1b,0x0,0x1a,0x0,0x1e,0x0,0x1a,0x0,0x22,0x0,0x19,
0x0,0x23,0x0,0x1a,0x0,0x22,0x0,0x1a,0x0,0x21,0x0,0x1a,0x0,0x1d,0x0,0x17,
0x0,0x19,0x0,0x16,0x0,0x16,0x0,0x14,0x0,0x16,0x0,0x14,0x0,0x1b,0x0,0x17,
0x0,0x1f,0x0,0x1a,0x0,0x1d,0x0,0x17,0x0,0x1c,0x0,0x13,0x0,0x19,0x0,0x11,
0x0,0x14,0x0,0xf,0x0,0x11,0x0,0x10,0x0,0x10,0x0,0x10,0x0,0x11,0x0,0xf,
0x0,0x15,0x0,0xf,0x0,0x13,0x0,0xe,0x0,0x12,0x0,0xd,0x0,0x15,0x0,0x11,
0x0,0x17,0x0,0x16,0x0,0x14,0x0,0x18,0x0,0x14,0x0,0x16,0x0,0x16,0x0,0x16,
0x0,0x19,0x0,0x17,0x0,0x18,0x0,0x16,0x0,0x12,0x0,0x16,0x0,0x10,0x0,0x17,
0x0,0x13,0x0,0x18,0x0,0x16,0x0,0x1a,0x0,0x18,0x0,0x1b,0x0,0x18,0x0,0x18,
0x0,0x18,0x0,0x15,0x0,0x1a,0x0,0x18,0x0,0x1e,0x0,0x1f,0x0,0x21,0x0,0x22,
0x0,0x22,0x0,0x21,0x0,0x22,0x0,0x1f,0x0,0x20,0x0,0x1d,0x0,0x1f,0x0,0x1b,
0x0,0x1e,0x0,0x1b,0x0,0x1c,0x0,0x1f,0x0,0x19,0x0,0x1f,0x0,0x16,0x0,0x1b,
0x0,0x11,0x0,0x15,0x0,0xf,0x0,0xe,0x0,0xe,0x0,0xb,0x0,0xb,0x0,0xc,
0x0,0x9,0x0,0xb,0x0,0x7,0x0,0x9,0x0,0x5,0x0,0xa,0x0,0x7,0x0,0xc,
0x0,0xb,0x0,0xf,0x0,0xd,0x0,0x15,0x0,0xd,0x0,0x19,0x0,0xc,0x0,0x19,
0x0,0x8,0x0,0x16,0x0,0x8,0x0,0x13,0x0,0xc,0x0,0x14,0x0,0x12,0x0,0x14,
0x0,0x13,0x0,0x15,0x0,0x12,0x0,0x19,0x0,0x14,0x0,0x1f,0x0,0x18,0x0,0x23,
0x0,0x1b,0x0,0x27,0x0,0x1e,0x0,0x27,0x0,0x20,0x0,0x24,0x0,0x1d,0x0,0x23,
0x0,0x1b,0x0,0x20,0x0,0x1a,0x0,0x1f,0x0,0x1b,0x0,0x22,0x0,0x20,0x0,0x23,
0x0,0x24,0x0,0x24,0x0,0x26,0x0,0x25,0x0,0x27,0x0,0x26,0x0,0x27,0x0,0x2a,
0x0,0x23,0x0,0x2b,0x0,0x1e,0x0,0x27,0x0,0x1b,0x0,0x22,0x0,0x1b,0x0,0x1d,
0x0,0x1b,0x0,0x18,0x0,0x18,0x0,0x16,0x0,0x13,0x0,0x16,0x0,0x11,0x0,0x17,
0x0,0xe,0x0,0x16,0x0,0xd,0x0,0x12,0x0,0x10,0x0,0xf,0x0,0x13,0x0,0x11,
0x0,0x11,0x0,0xf,0x0,0xb,0x0,0x8,0x0,0x6,0x0,0x5,0x0,0x4,0x0,0x4,
0x0,0x5,0x0,0x4,0x0,0x9,0x0,0xb,0x0,0xf,0x0,0x13,0x0,0x13,0x0,0x17,
0x0,0x14,0x0,0x1a,0x0,0x15,0x0,0x1b,0x0,0x16,0x0,0x1a,0x0,0x16,0x0,0x1b,
0x0,0x17,0x0,0x1c,0x0,0x18,0x0,0x1b,0x0,0x19,0x0,0x1b,0x0,0x18,0x0,0x1a,
0x0,0x1a,0x0,0x1a,0x0,0x20,0x0,0x1e,0x0,0x24,0x0,0x22,0x0,0x25,0x0,0x25,
0x0,0x27,0x0,0x29,0x0,0x28,0x0,0x2a,0x0,0x28,0x0,0x28,0x0,0x29,0x0,0x26,
0x0,0x29,0x0,0x26,0x0,0x29,0x0,0x27,0x0,0x25,0x0,0x24,0x0,0x20,0x0,0x20,
0x0,0x1d,0x0,0x1d,0x0,0x19,0x0,0x16,0x0,0x17,0x0,0x10,0x0,0x16,0x0,0xe,
0x0,0x17,0x0,0xe,0x0,0x1a,0x0,0x12,0x0,0x1d,0x0,0x18,0x0,0x1d,0x0,0x1b,
0x0,0x1b,0x0,0x18,0x0,0x18,0x0,0x11,0x0,0x12,0x0,0xc,0x0,0xd,0x0,0xa,
0x0,0xb,0x0,0xb,0x0,0xc,0x0,0xd,0x0,0x12,0x0,0x10,0x0,0x14,0x0,0xf,
0x0,0x12,0x0,0xd,0x0,0x13,0x0,0x11,0x0,0x16,0x0,0x14,0x0,0x17,0x0,0x17,
0x0,0x18,0x0,0x18,0x0,0x1a,0x0,0x18,0x0,0x18,0x0,0x17,0x0,0x16,0x0,0x17,
0x0,0x15,0x0,0x17,0x0,0x14,0x0,0x18,0x0,0x17,0x0,0x1d,0x0,0x1d,0x0,0x24,
0x0,0x20,0x0,0x29,0x0,0x21,0x0,0x27,0x0,0x21,0x0,0x22,0x0,0x1f,0x0,0x1c,
0x0,0x1e,0x0,0x17,0x0,0x1f,0x0,0x17,0x0,0x22,0x0,0x1c,0x0,0x27,0x0,0x23,
0x0,0x29,0x0,0x25,0x0,0x24,0x0,0x20,0x0,0x1c,0x0,0x1a,0x0,0x16,0x0,0x16,
0x0,0x15,0x0,0x15,0x0,0x18,0x0,0x1a,0x0,0x1d,0x0,0x1f,0x0,0x1d,0x0,0x1d,
0x0,0x19,0x0,0x19,0x0,0x16,0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x13,0x0,0x16,
0x0,0x17,0x0,0x1c,0x0,0x1b,0x0,0x1e,0x0,0x1a,0x0,0x1c,0x0,0x13,0x0,0x16,
0x0,0xd,0x0,0x12,0x0,0xd,0x0,0x12,0x0,0x11,0x0,0x15,0x0,0x15,0x0,0x16,
0x0,0x1a,0x0,0x18,0x0,0x1a,0x0,0x1b,0x0,0x16,0x0,0x17,0x0,0x13,0x0,0x11,
0x0,0x13,0x0,0xe,0x0,0x15,0x0,0x10,0x0,0x1b,0x0,0x17,0x0,0x1e,0x0,0x1d,
0x0,0x1b,0x0,0x1a,0x0,0x14,0x0,0x13,0x0,0xd,0x0,0xd,0x0,0xb,0x0,0x6,
0x0,0xc,0x0,0x6,0x0,0x11,0x0,0xd,0x0,0x16,0x0,0x13,0x0,0x15,0x0,0x13,
0x0,0xf,0x0,0xc,0x0,0x8,0x0,0x5,0x0,0x5,0x0,0x6,0x0,0x7,0x0,0xa,
0x0,0xb,0x0,0xb,0x0,0xe,0x0,0xd,0x0,0xe,0x0,0xd,0x0,0xc,0x0,0x8,
0x0,0x5,0x0,0x1,0x0,0x0,0x0,0xff,0xff,0x2,0x0,0x3,0x0,0x7,0x0,0xc,
0x0,0x9,0x0,0x12,0x0,0x6,0x0,0x10,0x0,0xff,0xff,0x7,0x0,0xf9,0xff,0xff,
0xff,0xf7,0xff,0xfc,0xff,0xf9,0xff,0xfd,0xff,0x2,0x0,0x6,0x0,0xe,0x0,0x13,
0x0,0x16,0x0,0x18,0x0,0x12,0x0,0x15,0x0,0x9,0x0,0xc,0x0,0x0,0x0,0x1,
0x0,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xfd,
0xff,0xfa,0xff,0xff,0xff,0xfb,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0x5,0x0,0x4,
0x0,0xc,0x0,0x9,0x0,0x12,0x0,0x10,0x0,0x14,0x0,0x14,0x0,0xf,0x0,0x11,
0x0,0x7,0x0,0xb,0x0,0x1,0x0,0x4,0x0,0xfa,0xff,0x0,0x0,0xfa,0xff,0x1,
0x0,0x0,0x0,0x6,0x0,0x4,0x0,0xb,0x0,0x8,0x0,0xd,0x0,0xc,0x0,0xe,
0x0,0xc,0x0,0xd,0x0,0xd,0x0,0xa,0x0,0xd,0x0,0xa,0x0,0xb,0x0,0xb,
0x0,0xb,0x0,0xa,0x0,0xa,0x0,0x8,0x0,0x5,0x0,0x4,0x0,0x3,0x0,0xfd,
0xff,0x3,0x0,0xf8,0xff,0x1,0x0,0xf6,0xff,0x0,0x0,0xf7,0xff,0xfd,0xff,0xf9,
0xff,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xfb,0xff,0xf9,0xff,0xfd,0xff,0xfc,0xff,0xfd,
0xff,0xfe,0xff,0xfb,0xff,0xfd,0xff,0xfc,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0x0,
0x0,0xfb,0xff,0xfc,0xff,0xfa,0xff,0xf6,0xff,0xf7,0xff,0xf3,0xff,0xf4,0xff,0xf3,
0xff,0xf6,0xff,0xf4,0xff,0xfa,0xff,0xf9,0xff,0xff,0xff,0xfd,0xff,0x3,0x0,0x1,
0x0,0x3,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x1,0x0,0x3,
0x0,0x4,0x0,0x7,0x0,0x6,0x0,0x7,0x0,0x6,0x0,0x4,0x0,0x2,0x0,0xff,
0xff,0xfc,0xff,0xfa,0xff,0xf8,0xff,0xf6,0xff,0xf9,0xff,0xf7,0xff,0xfb,0xff,0xfb,
0xff,0xf9,0xff,0xfd,0xff,0xf6,0xff,0xf8,0xff,0xf1,0xff,0xed,0xff,0xed,0xff,0xe9,
0xff,0xef,0xff,0xeb,0xff,0xf4,0xff,0xf0,0xff,0xf8,0xff,0xf7,0xff,0xfa,0xff,0xfc,
0xff,0xf8,0xff,0xfc,0xff,0xf5,0xff,0xf9,0xff,0xf2,0xff,0xf5,0xff,0xef,0xff,0xf1,
0xff,0xee,0xff,0xf2,0xff,0xee,0xff,0xf2,0xff,0xeb,0xff,0xf0,0xff,0xe5,0xff,0xef,
0xff,0xe2,0xff,0xed,0xff,0xe3,0xff,0xed,0xff,0xe5,0xff,0xef,0xff,0xe6,0xff,0xef,
0xff,0xe6,0xff,0xef,0xff,0xea,0xff,0xf0,0xff,0xee,0xff,0xf0,0xff,0xee,0xff,0xf0,
0xff,0xed,0xff,0xeb,0xff,0xef,0xff,0xe9,0xff,0xef,0xff,0xec,0xff,0xec,0xff,0xeb,
0xff,0xea,0xff,0xe7,0xff,0xea,0xff,0xe7,0xff,0xe9,0xff,0xe9,0xff,0xe7,0xff,0xeb,
0xff,0xea,0xff,0xef,0xff,0xf1,0xff,0xf2,0xff,0xf4,0xff,0xf4,0xff,0xf5,0xff,0xf4,
0xff,0xf6,0xff,0xf1,0xff,0xf5,0xff,0xf2,0xff,0xf2,0xff,0xf3,0xff,0xef,0xff,0xf1,
0xff,0xed,0xff,0xef,0xff,0xeb,0xff,0xee,0xff,0xeb,0xff,0xeb,0xff,0xe9,0xff,0xeb,
0xff,0xe6,0xff,0xec,0xff,0xe4,0xff,0xe9,0xff,0xe4,0xff,0xe5,0xff,0xe6,0xff,0xe5,
0xff,0xe9,0xff,0xe6,0xff,0xe9,0xff,0xe6,0xff,0xe8,0xff,0xe8,0xff,0xe6,0xff,0xe9,
0xff,0xe3,0xff,0xe9,0xff,0xe4,0xff,0xe9,0xff,0xe7,0xff,0xeb,0xff,0xec,0xff,0xee,
0xff,0xf0,0xff,0xf3,0xff,0xf0,0xff,0xf2,0xff,0xed,0xff,0xee,0xff,0xe9,0xff,0xec,
0xff,0xe6,0xff,0xeb,0xff,0xe7,0xff,0xe9,0xff,0xec,0xff,0xed,0xff,0xf3,0xff,0xf5,
0xff,0xf9,0xff,0xfa,0xff,0xf7,0xff,0xfb,0xff,0xf1,0xff,0xf8,0xff,0xef,0xff,0xf2,
0xff,0xf0,0xff,0xf1,0xff,0xf2,0xff,0xf2,0xff,0xf4,0xff,0xf3,0xff,0xf2,0xff,0xf4,
0xff,0xed,0xff,0xf2,0xff,0xe9,0xff,0xec,0xff,0xe6,0xff,0xe6,0xff,0xe3,0xff,0xe5,
0xff,0xe5,0xff,0xe5,0xff,0xe8,0xff,0xe3,0xff,0xe9,0xff,0xe2,0xff,0xe6,0xff,0xe2,
0xff,0xe3,0xff,0xe1,0xff,0xe4,0xff,0xe3,0xff,0xe8,0xff,0xe4,0xff,0xeb,0xff,0xe5,
0xff,0xee,0xff,0xe9,0xff,0xed,0xff,0xe9,0xff,0xe7,0xff,0xe4,0xff,0xe1,0xff,0xdf,
0xff,0xde,0xff,0xdf,0xff,0xe2,0xff,0xe2,0xff,0xeb,0xff,0xe8,0xff,0xf1,0xff,0xee,
0xff,0xf6,0xff,0xf3,0xff,0xf7,0xff,0xf6,0xff,0xf2,0xff,0xf4,0xff,0xf0,0xff,0xf1,
0xff,0xef,0xff,0xec,0xff,0xed,0xff,0xe9,0xff,0xec,0xff,0xe8,0xff,0xe8,0xff,0xe7,
0xff,0xe2,0xff,0xe6,0xff,0xde,0xff,0xe3,0xff,0xdc,0xff,0xe3,0xff,0xdd,0xff,0xe4,
0xff,0xe1,0xff,0xe3,0xff,0xe3,0xff,0xe4,0xff,0xe4,0xff,0xe5,0xff,0xe5,0xff,0xe2,
0xff,0xe2,0xff,0xdf,0xff,0xe0,0xff,0xdf,0xff,0xdf,0xff,0xdf,0xff,0xdf,0xff,0xe0,
0xff,0xe1,0xff,0xe0,0xff,0xde,0xff,0xde,0xff,0xd7,0xff,0xde,0xff,0xd6,0xff,0xdd,
0xff,0xd8,0xff,0xdb,0xff,0xd9,0xff,0xdc,0xff,0xde,0xff,0xde,0xff,0xe1,0xff,0xde,
0xff,0xe0,0xff,0xde,0xff,0xe0,0xff,0xdd,0xff,0xe0,0xff,0xdd,0xff,0xe2,0xff,0xdf,
0xff,0xe7,0xff,0xe2,0xff,0xea,0xff,0xe6,0xff,0xea,0xff,0xe8,0xff,0xe9,0xff,0xe6,
0xff,0xe8,0xff,0xe6,0xff,0xe6,0xff,0xe7,0xff,0xe3,0xff,0xe6,0xff,0xe2,0xff,0xe4,
0xff,0xe0,0xff,0xe0,0xff,0xdb,0xff,0xda,0xff,0xd7,0xff,0xd6,0xff,0xd6,0xff,0xd8,
0xff,0xdb,0xff,0xdd,0xff,0xe4,0xff,0xe2,0xff,0xe9,0xff,0xe5,0xff,0xe4,0xff,0xe6,
0xff,0xe1,0xff,0xe5,0xff,0xe2,0xff,0xe4,0xff,0xe2,0xff,0xe4,0xff,0xe5,0xff,0xe5,
0xff,0xe8,0xff,0xe7,0xff,0xea,0xff,0xe9,0xff,0xea,0xff,0xe8,0xff,0xe7,0xff,0xe5,
0xff,0xe4,0xff,0xe4,0xff,0xe6,0xff,0xe5,0xff,0xe9,0xff,0xe8,0xff,0xed,0xff,0xe9,
0xff,0xef,0xff,0xeb,0xff,0xee,0xff,0xed,0xff,0xef,0xff,0xf0,0xff,0xf1,0xff,0xf2,
0xff,0xf3,0xff,0xf6,0xff,0xfb,0xff,0xfa,0xff,0x1,0x0,0xfd,0xff,0xfe,0xff,0xfd,
0xff,0xf8,0xff,0xfa,0xff,0xf0,0xff,0xf4,0xff,0xe8,0xff,0xed,0xff,0xe7,0xff,0xea,
0xff,0xe9,0xff,0xe9,0xff,0xe9,0xff,0xeb,0xff,0xec,0xff,0xef,0xff,0xef,0xff,0xf3,
0xff,0xf0,0xff,0xf4,0xff,0xf0,0xff,0xf5,0xff,0xf2,0xff,0xf6,0xff,0xf3,0xff,0xf6,
0xff,0xf0,0xff,0xf4,0xff,0xeb,0xff,0xf1,0xff,0xe6,0xff,0xee,0xff,0xe5,0xff,0xee,
0xff,0xe5,0xff,0xec,0xff,0xe7,0xff,0xe8,0xff,0xeb,0xff,0xe7,0xff,0xed,0xff,0xe7,
0xff,0xed,0xff,0xea,0xff,0xed,0xff,0xf0,0xff,0xf0,0xff,0xf3,0xff,0xf3,0xff,0xf4,
0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf3,0xff,0xf5,0xff,0xf2,0xff,0xf5,0xff,0xf4,
0xff,0xf5,0xff,0xf6,0xff,0xf5,0xff,0xf4,0xff,0xf5,0xff,0xf5,0xff,0xf3,0xff,0xf6,
0xff,0xf4,0xff,0xf6,0xff,0xf5,0xff,0xf8,0xff,0xf4,0xff,0xfc,0xff,0xf7,0xff,0xfe,
0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0x0,0x0,0xfe,0xff,0x0,0x0,0x0,0x0,0x3,
0x0,0x2,0x0,0x9,0x0,0x6,0x0,0xc,0x0,0x9,0x0,0xc,0x0,0x7,0x0,0xa,
0x0,0x4,0x0,0x4,0x0,0x1,0x0,0xfd,0xff,0xfc,0xff,0xf9,0xff,0xf8,0xff,0xf3,
0xff,0xf6,0xff,0xed,0xff,0xf4,0xff,0xef,0xff,0xf4,0xff,0xf4,0xff,0xf6,0xff,0xf7,
0xff,0xf9,0xff,0xf9,0xff,0xfa,0xff,0xfa,0xff,0xfb,0xff,0xf9,0xff,0xfc,0xff,0xf9,
0xff,0xfd,0xff,0xfb,0xff,0xfe,0xff,0xfb,0xff,0xfd,0xff,0xf8,0xff,0xfa,0xff,0xf7,
0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xf8,0xff,0xfb,0xff,0xfc,0xff,0xff,0xff,0x0,
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x1,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x4,
0x0,0x6,0x0,0x9,0x0,0x9,0x0,0xc,0x0,0x5,0x0,0xc,0x0,0x2,0x0,0xb,
0x0,0x2,0x0,0x7,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xfc,0xff,0xff,0xff,0xfc,
0xff,0xfd,0xff,0xfe,0xff,0x0,0x0,0x1,0x0,0x6,0x0,0x4,0x0,0x7,0x0,0x7,
0x0,0x5,0x0,0x7,0x0,0x2,0x0,0x4,0x0,0xfe,0xff,0x1,0x0,0x0,0x0,0xff,
0xff,0x0,0x0,0xfe,0xff,0xfd,0xff,0x0,0x0,0xff,0xff,0x3,0x0,0x2,0x0,0x2,
0x0,0xff,0xff,0x0,0x0,0xfe,0xff,0xfe,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xf7,
0xff,0xf8,0xff,0xf8,0xff,0xf2,0xff,0xf3,0xff,0xef,0xff,0xed,0xff,0xef,0xff,0xeb,
0xff,0xf1,0xff,0xed,0xff,0xf5,0xff,0xf1,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0x1,
0x0,0xfb,0xff,0x2,0x0,0xfb,0xff,0xff,0xff,0xf9,0xff,0xfc,0xff,0xfd,0xff,0xfe,
0xff,0x0,0x0,0xfe,0xff,0xff,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0x0,
0x0,0xff,0xff,0x3,0x0,0x1,0x0,0x7,0x0,0x5,0x0,0x9,0x0,0x8,0x0,0xa,
0x0,0x7,0x0,0xc,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0x8,0x0,0xfd,0xff,0x7,
0x0,0xfe,0xff,0x6,0x0,0x4,0x0,0x6,0x0,0xa,0x0,0x9,0x0,0xe,0x0,0xc,
0x0,0xd,0x0,0xa,0x0,0x8,0x0,0x5,0x0,0x4,0x0,0x1,0x0,0x0,0x0,0xfc,
0xff,0xfe,0xff,0xfa,0xff,0x5,0x0,0x0,0x0,0x10,0x0,0xa,0x0,0x15,0x0,0x12,
0x0,0x14,0x0,0x17,0x0,0x11,0x0,0x18,0x0,0xf,0x0,0x17,0x0,0x11,0x0,0x16,
0x0,0x15,0x0,0x17,0x0,0x17,0x0,0x18,0x0,0x13,0x0,0x16,0x0,0xb,0x0,0x11,
0x0,0x6,0x0,0xc,0x0,0x5,0x0,0x9,0x0,0x7,0x0,0x9,0x0,0xf,0x0,0xe,
0x0,0x16,0x0,0x15,0x0,0x18,0x0,0x18,0x0,0x19,0x0,0x18,0x0,0x1a,0x0,0x18,
0x0,0x1a,0x0,0x18,0x0,0x1c,0x0,0x18,0x0,0x1d,0x0,0x18,0x0,0x1a,0x0,0x16,
0x0,0x14,0x0,0x11,0x0,0xb,0x0,0x9,0x0,0x3,0x0,0x2,0x0,0x2,0x0,0xff,
0xff,0x7,0x0,0x1,0x0,0xc,0x0,0x6,0x0,0x11,0x0,0xa,0x0,0x13,0x0,0xe,
0x0,0x10,0x0,0xe,0x0,0xb,0x0,0x9,0x0,0x4,0x0,0x3,0x0,0xfe,0xff,0xfd,
0xff,0xfc,0xff,0xf8,0xff,0xfc,0xff,0xfa,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0x4,
0x0,0xff,0xff,0x6,0x0,0x2,0x0,0x8,0x0,0x5,0x0,0x9,0x0,0x8,0x0,0x9,
0x0,0x9,0x0,0x9,0x0,0x7,0x0,0x8,0x0,0x6,0x0,0x6,0x0,0x5,0x0,0x4,
0x0,0x7,0x0,0x6,0x0,0xb,0x0,0xc,0x0,0x12,0x0,0x15,0x0,0x17,0x0,0x1c,
0x0,0x18,0x0,0x1d,0x0,0x16,0x0,0x19,0x0,0x14,0x0,0x13,0x0,0xe,0x0,0xc,
0x0,0x8,0x0,0x7,0x0,0x6,0x0,0x3,0x0,0x4,0x0,0x1,0x0,0x4,0x0,0x1,
0x0,0x3,0x0,0x1,0x0,0x1,0x0,0xff,0xff,0x3,0x0,0xff,0xff,0x8,0x0,0x3,
0x0,0xb,0x0,0x8,0x0,0x9,0x0,0x5,0x0,0x2,0x0,0xfd,0xff,0xfb,0xff,0xfa,
0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xf4,0xff,0xfb,0xff,0xf5,0xff,0x0,0x0,0xfa,
0xff,0x2,0x0,0x1,0x0,0x4,0x0,0x8,0x0,0x8,0x0,0xd,0x0,0x9,0x0,0x12,
0x0,0xb,0x0,0x18,0x0,0x12,0x0,0x1a,0x0,0x17,0x0,0x1b,0x0,0x1a,0x0,0x1b,
0x0,0x1b,0x0,0x19,0x0,0x16,0x0,0x18,0x0,0x12,0x0,0x15,0x0,0x11,0x0,0x10,
0x0,0xf,0x0,0xf,0x0,0xc,0x0,0xe,0x0,0x9,0x0,0xc,0x0,0x9,0x0,0xe,
0x0,0x10,0x0,0x13,0x0,0x18,0x0,0x1a,0x0,0x1e,0x0,0x1f,0x0,0x21,0x0,0x1f,
0x0,0x1b,0x0,0x1b,0x0,0x10,0x0,0x15,0x0,0xa,0x0,0xd,0x0,0x7,0x0,0x8,
0x0,0x7,0x0,0x9,0x0,0xc,0x0,0xa,0x0,0xf,0x0,0xb,0x0,0xf,0x0,0xd,
0x0,0x10,0x0,0xe,0x0,0x11,0x0,0xf,0x0,0x14,0x0,0xf,0x0,0x18,0x0,0x11,
0x0,0x18,0x0,0x14,0x0,0x15,0x0,0x15,0x0,0x13,0x0,0x12,0x0,0x11,0x0,0x10,
0x0,0x12,0x0,0xf,0x0,0x18,0x0,0x12,0x0,0x1a,0x0,0x18,0x0,0x1b,0x0,0x1d,
0x0,0x1d,0x0,0x22,0x0,0x1d,0x0,0x23,0x0,0x1e,0x0,0x22,0x0,0x20,0x0,0x22,
0x0,0x20,0x0,0x24,0x0,0x20,0x0,0x26,0x0,0x21,0x0,0x23,0x0,0x1c,0x0,0x1f,
0x0,0x17,0x0,0x1b,0x0,0x14,0x0,0x17,0x0,0x14,0x0,0x15,0x0,0x18,0x0,0x1c,
0x0,0x1c,0x0,0x22,0x0,0x1d,0x0,0x22,0x0,0x1b,0x0,0x21,0x0,0x16,0x0,0x1e,
0x0,0x13,0x0,0x15,0x0,0x14,0x0,0xe,0x0,0x12,0x0,0xb,0x0,0xc,0x0,0x9,
0x0,0x8,0x0,0x7,0x0,0x7,0x0,0x6,0x0,0x9,0x0,0xa,0x0,0x11,0x0,0xf,
0x0,0x18,0x0,0x16,0x0,0x1b,0x0,0x1c,0x0,0x1b,0x0,0x1e,0x0,0x19,0x0,0x1d,
0x0,0x16,0x0,0x1b,0x0,0x16,0x0,0x19,0x0,0x17,0x0,0x17,0x0,0x1c,0x0,0x19,
0x0,0x1e,0x0,0x1c,0x0,0x1c,0x0,0x1c,0x0,0x1b,0x0,0x1a,0x0,0x1c,0x0,0x17,
0x0,0x1a,0x0,0x16,0x0,0x1a,0x0,0x18,0x0,0x1d,0x0,0x1c,0x0,0x21,0x0,0x21,
0x0,0x20,0x0,0x25,0x0,0x1d,0x0,0x22,0x0,0x19,0x0,0x1d,0x0,0x15,0x0,0x1b,
0x0,0x14,0x0,0x19,0x0,0x16,0x0,0x18,0x0,0x15,0x0,0x19,0x0,0x13,0x0,0x18,
0x0,0x12,0x0,0x14,0x0,0x10,0x0,0x13,0x0,0x11,0x0,0x14,0x0,0x15,0x0,0x16,
0x0,0x1a,0x0,0x17,0x0,0x1a,0x0,0x15,0x0,0x13,0x0,0xc,0x0,0x8,0x0,0x4,
0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x2,0x0,0x7,0x0,0x8,0x0,0xd,0x0,0xf,
0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x14,0x0,0x14,0x0,0x14,0x0,0x16,0x0,0x16,
0x0,0x19,0x0,0x17,0x0,0x1d,0x0,0x17,0x0,0x1d,0x0,0x1a,0x0,0x19,0x0,0x19,
0x0,0x17,0x0,0x17,0x0,0x14,0x0,0x14,0x0,0x11,0x0,0x12,0x0,0x11,0x0,0x13,
0x0,0x12,0x0,0x17,0x0,0x12,0x0,0x16,0x0,0x11,0x0,0x12,0x0,0x10,0x0,0x10,
0x0,0xe,0x0,0xf,0x0,0xd,0x0,0x10,0x0,0xd,0x0,0x11,0x0,0xf,0x0,0xe,
0x0,0xe,0x0,0xd,0x0,0xc,0x0,0x8,0x0,0xd,0x0,0x3,0x0,0x10,0x0,0x5,
0x0,0xf,0x0,0x8,0x0,0xc,0x0,0x6,0x0,0xa,0x0,0x4,0x0,0x6,0x0,0x4,
0x0,0x3,0x0,0x0,0x0,0x2,0x0,0xfe,0xff,0x0,0x0,0xfb,0xff,0xfb,0xff,0xf7,
0xff,0xf8,0xff,0xfa,0xff,0xf8,0xff,0x1,0x0,0xfa,0xff,0x5,0x0,0x1,0x0,0x8,
0x0,0xc,0x0,0x10,0x0,0x15,0x0,0x17,0x0,0x1a,0x0,0x1c,0x0,0x1c,0x0,0x1e,
0x0,0x19,0x0,0x20,0x0,0x17,0x0,0x1d,0x0,0x17,0x0,0x19,0x0,0x18,0x0,0x16,
0x0,0x18,0x0,0x14,0x0,0x16,0x0,0x14,0x0,0x14,0x0,0x15,0x0,0x15,0x0,0x18,
0x0,0x16,0x0,0x19,0x0,0x17,0x0,0x17,0x0,0x18,0x0,0x16,0x0,0x19,0x0,0x17,
0x0,0x18,0x0,0x15,0x0,0x14,0x0,0x13,0x0,0x10,0x0,0x12,0x0,0xc,0x0,0xd,
0x0,0x6,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0xfd,0xff,0x0,0x0,0xff,0xff,0x2,
0x0,0x3,0x0,0x9,0x0,0xa,0x0,0x11,0x0,0x12,0x0,0x18,0x0,0x16,0x0,0x19,
0x0,0x16,0x0,0x16,0x0,0x16,0x0,0x15,0x0,0x17,0x0,0x16,0x0,0x19,0x0,0x17,
0x0,0x1b,0x0,0x1a,0x0,0x19,0x0,0x19,0x0,0x11,0x0,0x11,0x0,0x9,0x0,0x9,
0x0,0x5,0x0,0x6,0x0,0x9,0x0,0xb,0x0,0x11,0x0,0x14,0x0,0x1a,0x0,0x1c,
0x0,0x22,0x0,0x22,0x0,0x26,0x0,0x23,0x0,0x24,0x0,0x1f,0x0,0x23,0x0,0x1c,
0x0,0x26,0x0,0x1c,0x0,0x28,0x0,0x1d,0x0,0x25,0x0,0x1d,0x0,0x1d,0x0,0x1d,
0x0,0x16,0x0,0x1b,0x0,0x11,0x0,0x18,0x0,0x11,0x0,0x14,0x0,0x13,0x0,0x11,
0x0,0x16,0x0,0x12,0x0,0x18,0x0,0x13,0x0,0x14,0x0,0x13,0x0,0xe,0x0,0x10,
0x0,0x9,0x0,0xd,0x0,0x7,0x0,0x9,0x0,0xa,0x0,0x9,0x0,0x10,0x0,0xd,
0x0,0x13,0x0,0x11,0x0,0x11,0x0,0x11,0x0,0xe,0x0,0xe,0x0,0xd,0x0,0xb,
0x0,0xf,0x0,0xa,0x0,0x11,0x0,0xb,0x0,0x11,0x0,0xc,0x0,0x11,0x0,0xc,
0x0,0xc,0x0,0xa,0x0,0x5,0x0,0x3,0x0,0x2,0x0,0xfd,0xff,0x3,0x0,0xfc,
0xff,0x5,0x0,0x1,0x0,0xc,0x0,0xb,0x0,0x14,0x0,0x16,0x0,0x19,0x0,0x1d,
0x0,0x1b,0x0,0x20,0x0,0x1d,0x0,0x1d,0x0,0x1c,0x0,0x17,0x0,0x18,0x0,0x14,
0x0,0x11,0x0,0x13,0x0,0xa,0x0,0x11,0x0,0x6,0x0,0xe,0x0,0x6,0x0,0xd,
0x0,0x9,0x0,0xe,0x0,0x11,0x0,0x14,0x0,0x19,0x0,0x1a,0x0,0x20,0x0,0x1f,
0x0,0x26,0x0,0x26,0x0,0x28,0x0,0x29,0x0,0x26,0x0,0x25,0x0,0x1e,0x0,0x1d,
0x0,0x10,0x0,0x12,0x0,0x4,0x0,0x8,0x0,0xfc,0xff,0x3,0x0,0xf9,0xff,0x2,
0x0,0xff,0xff,0x2,0x0,0x5,0x0,0x4,0x0,0x6,0x0,0x6,0x0,0x8,0x0,0x6,
0x0,0xe,0x0,0x9,0x0,0x12,0x0,0xe,0x0,0x17,0x0,0x11,0x0,0x19,0x0,0x13,
0x0,0x18,0x0,0x16,0x0,0x15,0x0,0x12,0x0,0x10,0x0,0xd,0x0,0xb,0x0,0xd,
0x0,0xb,0x0,0xb,0x0,0xf,0x0,0xa,0x0,0x16,0x0,0x11,0x0,0x1c,0x0,0x17,
0x0,0x1f,0x0,0x18,0x0,0x1f,0x0,0x18,0x0,0x1d,0x0,0x19,0x0,0x1a,0x0,0x17,
0x0,0x1a,0x0,0x17,0x0,0x1d,0x0,0x1b,0x0,0x1d,0x0,0x1b,0x0,0x1b,0x0,0x17,
0x0,0x17,0x0,0x12,0x0,0x11,0x0,0xf,0x0,0xe,0x0,0xb,0x0,0xc,0x0,0x9,
0x0,0xa,0x0,0x9,0x0,0xb,0x0,0xb,0x0,0xd,0x0,0xe,0x0,0xe,0x0,0x10,
0x0,0xd,0x0,0xf,0x0,0xb,0x0,0xd,0x0,0xb,0x0,0xd,0x0,0x10,0x0,0xf,
0x0,0x12,0x0,0x13,0x0,0x12,0x0,0x15,0x0,0x15,0x0,0x18,0x0,0x16,0x0,0x19,
0x0,0x11,0x0,0x15,0x0,0xa,0x0,0x11,0x0,0x5,0x0,0xc,0x0,0x0,0x0,0x6,
0x0,0xfa,0xff,0x0,0x0,0xfb,0xff,0xfc,0xff,0x1,0x0,0xff,0xff,0xa,0x0,0x8,
0x0,0x12,0x0,0x11,0x0,0x1a,0x0,0x18,0x0,0x21,0x0,0x20,0x0,0x28,0x0,0x26,
0x0,0x28,0x0,0x25,0x0,0x23,0x0,0x21,0x0,0x1e,0x0,0x19,0x0,0x19,0x0,0x13,
0x0,0x16,0x0,0x10,0x0,0x16,0x0,0xf,0x0,0x16,0x0,0x11,0x0,0x14,0x0,0x14,
0x0,0x14,0x0,0x14,0x0,0x17,0x0,0x17,0x0,0x1d,0x0,0x1e,0x0,0x21,0x0,0x25,
0x0,0x24,0x0,0x29,0x0,0x26,0x0,0x2b,0x0,0x24,0x0,0x2b,0x0,0x20,0x0,0x28,
0x0,0x1d,0x0,0x22,0x0,0x19,0x0,0x1b,0x0,0x11,0x0,0x15,0x0,0xa,0x0,0xf,
0x0,0x6,0x0,0xb,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0x6,0x0,0x3,0x0,0x4,
0x0,0x3,0x0,0x2,0x0,0x3,0x0,0x2,0x0,0x5,0x0,0x4,0x0,0x5,0x0,0x6,
0x0,0x7,0x0,0x9,0x0,0xc,0x0,0xa,0x0,0x11,0x0,0xa,0x0,0xf,0x0,0xa,
0x0,0x6,0x0,0x7,0x0,0xfe,0xff,0x2,0x0,0xfd,0xff,0x3,0x0,0xff,0xff,0x6,
0x0,0x2,0x0,0x8,0x0,0x7,0x0,0x9,0x0,0xa,0x0,0xc,0x0,0xd,0x0,0xf,
0x0,0x12,0x0,0x10,0x0,0x15,0x0,0x11,0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x13,
0x0,0x12,0x0,0x15,0x0,0x12,0x0,0x17,0x0,0x12,0x0,0x13,0x0,0xe,0x0,0xd,
0x0,0x8,0x0,0xb,0x0,0x3,0x0,0x9,0x0,0x3,0x0,0x8,0x0,0x9,0x0,0xe,
0x0,0xd,0x0,0x11,0x0,0xc,0x0,0xd,0x0,0x8,0x0,0x9,0x0,0x4,0x0,0x8,
0x0,0xfe,0xff,0x3,0x0,0xf9,0xff,0xfc,0xff,0xf5,0xff,0xf7,0xff,0xf5,0xff,0xf6,
0xff,0xf9,0xff,0xf8,0xff,0xfd,0xff,0xfc,0xff,0xff,0xff,0xfe,0xff,0xfe,0xff,0xfc,
0xff,0xfb,0xff,0xf9,0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xf3,0xff,0xfe,0xff,0xf6,
0xff,0x4,0x0,0xfe,0xff,0x8,0x0,0x3,0x0,0x7,0x0,0x5,0x0,0x6,0x0,0x6,
0x0,0x5,0x0,0x6,0x0,0x1,0x0,0x5,0x0,0xfe,0xff,0x2,0x0,0xff,0xff,0x0,
0x0,0x0,0x0,0x0,0x0,0xfb,0xff,0xfc,0xff,0xf4,0xff,0xf4,0xff,0xed,0xff,0xed,
0xff,0xe9,0xff,0xec,0xff,0xea,0xff,0xed,0xff,0xf1,0xff,0xf1,0xff,0xfa,0xff,0xf8,
0xff,0x0,0x0,0xff,0xff,0x5,0x0,0x2,0x0,0xb,0x0,0x5,0x0,0xc,0x0,0x8,
0x0,0xa,0x0,0xa,0x0,0x9,0x0,0xb,0x0,0x9,0x0,0xa,0x0,0x7,0x0,0x6,
0x0,0x1,0x0,0x2,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x2,0x0,0xc,0x0,0xe,
0x0,0x1b,0x0,0x1d,0x0,0x29,0x0,0x26,0x0,0x2c,0x0,0x27,0x0,0x22,0x0,0x1d,
0x0,0x13,0x0,0x11,0x0,0x6,0x0,0x5,0x0,0xfe,0xff,0xfa,0xff,0xfa,0xff,0xf3,
0xff,0xf4,0xff,0xee,0xff,0xee,0xff,0xe8,0xff,0xe7,0xff,0xe7,0xff,0xe0,0xff,0xe5,
0xff,0xdf,0xff,0xe3,0xff,0xe4,0xff,0xe4,0xff,0xe9,0xff,0xe7,0xff,0xea,0xff,0xe8,
0xff,0xe9,0xff,0xe9,0xff,0xe9,0xff,0xe9,0xff,0xeb,0xff,0xeb,0xff,0xf0,0xff,0xf2,
0xff,0xfb,0xff,0xfc,0xff,0x7,0x0,0x6,0x0,0xe,0x0,0x10,0x0,0xe,0x0,0x13,
0x0,0x9,0x0,0x10,0x0,0x3,0x0,0x9,0x0,0xff,0xff,0x3,0x0,0xfd,0xff,0xfd,
0xff,0xff,0xff,0xf8,0xff,0x3,0x0,0xf8,0xff,0x7,0x0,0xfc,0xff,0xa,0x0,0x1,
0x0,0xc,0x0,0xa,0x0,0xa,0x0,0xd,0x0,0x6,0x0,0x7,0x0,0x0,0x0,0x2,
0x0,0xfd,0xff,0xff,0xff,0xfb,0xff,0xfb,0xff,0xf7,0xff,0xfa,0xff,0xf5,0xff,0xf9,
0xff,0xf6,0xff,0xf8,0xff,0xf6,0xff,0xf7,0xff,0xf4,0xff,0xf5,0xff,0xf2,0xff,0xf2,
0xff,0xef,0xff,0xef,0xff,0xed,0xff,0xf0,0xff,0xec,0xff,0xf2,0xff,0xee,0xff,0xf1,
0xff,0xf7,0xff,0xf3,0xff,0x0,0x0,0xfa,0xff,0x3,0x0,0x0,0x0,0x3,0x0,0x3,
0x0,0x4,0x0,0x4,0x0,0x2,0x0,0xfe,0xff,0x0,0x0,0xf9,0xff,0x3,0x0,0xfb,
0xff,0x9,0x0,0x1,0x0,0xd,0x0,0x9,0x0,0xd,0x0,0x11,0x0,0xf,0x0,0x16,
0x0,0x11,0x0,0x16,0x0,0xc,0x0,0x11,0x0,0x7,0x0,0xa,0x0,0x4,0x0,0x6,
0x0,0xfd,0xff,0x2,0x0,0xf4,0xff,0xfb,0xff,0xee,0xff,0xf6,0xff,0xec,0xff,0xf3,
0xff,0xec,0xff,0xf2,0xff,0xef,0xff,0xf6,0xff,0xf3,0xff,0xfc,0xff,0xf6,0xff,0xfe,
0xff,0xf9,0xff,0x1,0x0,0xfe,0xff,0x3,0x0,0x5,0x0,0x2,0x0,0xa,0x0,0x3,
0x0,0xc,0x0,0x7,0x0,0xd,0x0,0xa,0x0,0xc,0x0,0xb,0x0,0xa,0x0,0xa,
0x0,0x9,0x0,0x8,0x0,0x9,0x0,0x7,0x0,0x9,0x0,0x7,0x0,0x9,0x0,0x7,
0x0,0xa,0x0,0x6,0x0,0xa,0x0,0x6,0x0,0x8,0x0,0x4,0x0,0x7,0x0,0x3,
0x0,0x7,0x0,0x2,0x0,0x8,0x0,0xfe,0xff,0x5,0x0,0xfa,0xff,0x0,0x0,0xfb,
0xff,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfc,0xff,0xfa,0xff,0xfd,
0xff,0xfd,0xff,0xff,0xff,0xfd,0xff,0x2,0x0,0xfe,0xff,0x3,0x0,0x0,0x0,0x2,
0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xff,0xff,0x6,0x0,0x6,0x0,0xf,0x0,0xe,
0x0,0x14,0x0,0x11,0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x12,0x0,0x10,0x0,0xd,
0x0,0xf,0x0,0xb,0x0,0x13,0x0,0xd,0x0,0x16,0x0,0x10,0x0,0x17,0x0,0x10,
0x0,0x18,0x0,0xd,0x0,0x16,0x0,0xb,0x0,0xf,0x0,0x8,0x0,0x9,0x0,0x4,
0x0,0x6,0x0,0xff,0xff,0x5,0x0,0xfd,0xff,0x3,0x0,0xfd,0xff,0x1,0x0,0xfa,
0xff,0x0,0x0,0xfb,0xff,0x2,0x0,0x2,0x0,0x8,0x0,0x7,0x0,0x10,0x0,0xb,
0x0,0x12,0x0,0xe,0x0,0x10,0x0,0xd,0x0,0xc,0x0,0x7,0x0,0x5,0x0,0x3,
0x0,0xff,0xff,0x0,0x0,0x2,0x0,0xff,0xff,0xb,0x0,0x2,0x0,0x12,0x0,0xa,
0x0,0x14,0x0,0x10,0x0,0x14,0x0,0xf,0x0,0x11,0x0,0xb,0x0,0x9,0x0,0x8,
0x0,0x6,0x0,0x6,0x0,0xa,0x0,0xb,0x0,0xf,0x0,0x14,0x0,0x14,0x0,0x1b,
0x0,0x19,0x0,0x1e,0x0,0x1c,0x0,0x1c,0x0,0x1d,0x0,0x18,0x0,0x1b,0x0,0x1a,
0x0,0x17,0x0,0x1a,0x0,0x14,0x0,0x16,0x0,0x11,0x0,0xf,0x0,0xe,0x0,0x9,
0x0,0xd,0x0,0x9,0x0,0xe,0x0,0xd,0x0,0x11,0x0,0x11,0x0,0x16,0x0,0x15,
0x0,0x19,0x0,0x18,0x0,0x18,0x0,0x17,0x0,0x16,0x0,0x13,0x0,0xf,0x0,0xd,
0x0,0x9,0x0,0x4,0x0,0x4,0x0,0xfc,0xff,0xff,0xff,0xf7,0xff,0xfe,0xff,0xf7,
0xff,0xff,0xff,0xfc,0xff,0x6,0x0,0x3,0x0,0x11,0x0,0xb,0x0,0x17,0x0,0x11,
0x0,0x17,0x0,0x14,0x0,0x19,0x0,0x17,0x0,0x1a,0x0,0x19,0x0,0x18,0x0,0x1c,
0x0,0x1c,0x0,0x24,0x0,0x23,0x0,0x28,0x0,0x25,0x0,0x26,0x0,0x24,0x0,0x24,
0x0,0x1f,0x0,0x1e,0x0,0x17,0x0,0x14,0x0,0x10,0x0,0x10,0x0,0xe,0x0,0x10,
0x0,0x16,0x0,0x13,0x0,0x22,0x0,0x1b,0x0,0x28,0x0,0x22,0x0,0x2a,0x0,0x28,
0x0,0x2b,0x0,0x2e,0x0,0x2d,0x0,0x2e,0x0,0x2f,0x0,0x2b,0x0,0x2d,0x0,0x27,
0x0,0x25,0x0,0x21,0x0,0x1b,0x0,0x1a,0x0,0x11,0x0,0x10,0x0,0xd,0x0,0xc,
0x0,0x11,0x0,0xe,0x0,0x16,0x0,0x13,0x0,0x1b,0x0,0x18,0x0,0x1e,0x0,0x1b,
0x0,0x1b,0x0,0x19,0x0,0x16,0x0,0x17,0x0,0x13,0x0,0x15,0x0,0x14,0x0,0x16,
0x0,0x18,0x0,0x1a,0x0,0x1d,0x0,0x1d,0x0,0x1f,0x0,0x1c,0x0,0x20,0x0,0x1c,
0x0,0x1d,0x0,0x1b,0x0,0x1c,0x0,0x1a,0x0,0x21,0x0,0x1f,0x0,0x26,0x0,0x23,
0x0,0x29,0x0,0x23,0x0,0x27,0x0,0x22,0x0,0x1f,0x0,0x1f,0x0,0x1b,0x0,0x1b,
0x0,0x20,0x0,0x1c,0x0,0x28,0x0,0x26,0x0,0x33,0x0,0x33,0x0,0x3c,0x0,0x3a,
0x0,0x3a,0x0,0x37,0x0,0x31,0x0,0x2f,0x0,0x28,0x0,0x29,0x0,0x23,0x0,0x26,
0x0,0x24,0x0,0x26,0x0,0x26,0x0,0x26,0x0,0x26,0x0,0x25,0x0,0x26,0x0,0x24,
0x0,0x23,0x0,0x21,0x0,0x1c,0x0,0x1b,0x0,0x1b,0x0,0x18,0x0,0x1f,0x0,0x17,
0x0,0x20,0x0,0x16,0x0,0x1f,0x0,0x18,0x0,0x1e,0x0,0x1b,0x0,0x19,0x0,0x1a,
0x0,0x14,0x0,0x17,0x0,0x12,0x0,0x13,0x0,0x14,0x0,0x13,0x0,0x1d,0x0,0x1a,
0x0,0x28,0x0,0x22,0x0,0x2b,0x0,0x25,0x0,0x2c,0x0,0x26,0x0,0x2b,0x0,0x25,
0x0,0x26,0x0,0x22,0x0,0x25,0x0,0x22,0x0,0x27,0x0,0x26,0x0,0x29,0x0,0x29,
0x0,0x2f,0x0,0x2e,0x0,0x34,0x0,0x31,0x0,0x30,0x0,0x2e,0x0,0x2d,0x0,0x29,
0x0,0x2f,0x0,0x28,0x0,0x30,0x0,0x28,0x0,0x31,0x0,0x29,0x0,0x2f,0x0,0x2b,
0x0,0x27,0x0,0x29,0x0,0x21,0x0,0x22,0x0,0x22,0x0,0x21,0x0,0x28,0x0,0x26,
0x0,0x32,0x0,0x2b,0x0,0x38,0x0,0x32,0x0,0x36,0x0,0x35,0x0,0x2f,0x0,0x2e,
0x0,0x28,0x0,0x25,0x0,0x22,0x0,0x1e,0x0,0x1e,0x0,0x19,0x0,0x20,0x0,0x1b,
0x0,0x23,0x0,0x24,0x0,0x23,0x0,0x2a,0x0,0x23,0x0,0x29,0x0,0x23,0x0,0x24,
0x0,0x27,0x0,0x23,0x0,0x30,0x0,0x2a,0x0,0x37,0x0,0x31,0x0,0x3a,0x0,0x37,
0x0,0x3d,0x0,0x3a,0x0,0x3b,0x0,0x39,0x0,0x34,0x0,0x32,0x0,0x31,0x0,0x2e,
0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x32,0x0,0x35,0x0,0x30,0x0,0x31,0x0,0x2e,
0x0,0x2a,0x0,0x2a,0x0,0x23,0x0,0x22,0x0,0x1f,0x0,0x19,0x0,0x23,0x0,0x18,
0x0,0x2b,0x0,0x20,0x0,0x32,0x0,0x2d,0x0,0x36,0x0,0x35,0x0,0x35,0x0,0x36,
0x0,0x32,0x0,0x31,0x0,0x2e,0x0,0x2c,0x0,0x2a,0x0,0x2b,0x0,0x2a,0x0,0x2c,
0x0,0x2e,0x0,0x2e,0x0,0x33,0x0,0x31,0x0,0x34,0x0,0x30,0x0,0x32,0x0,0x2c,
0x0,0x2d,0x0,0x28,0x0,0x27,0x0,0x24,0x0,0x22,0x0,0x23,0x0,0x23,0x0,0x24,
0x0,0x23,0x0,0x24,0x0,0x23,0x0,0x22,0x0,0x27,0x0,0x26,0x0,0x2b,0x0,0x2a,
0x0,0x2b,0x0,0x2b,0x0,0x2a,0x0,0x2d,0x0,0x2c,0x0,0x2e,0x0,0x2d,0x0,0x2d,
0x0,0x2f,0x0,0x2d,0x0,0x2f,0x0,0x2c,0x0,0x2b,0x0,0x28,0x0,0x27,0x0,0x24,
0x0,0x27,0x0,0x23,0x0,0x2c,0x0,0x25,0x0,0x32,0x0,0x28,0x0,0x33,0x0,0x2d,
0x0,0x30,0x0,0x2f,0x0,0x2c,0x0,0x2d,0x0,0x26,0x0,0x28,0x0,0x22,0x0,0x22,
0x0,0x21,0x0,0x1e,0x0,0x21,0x0,0x1e,0x0,0x21,0x0,0x20,0x0,0x23,0x0,0x23,
0x0,0x24,0x0,0x25,0x0,0x21,0x0,0x25,0x0,0x1d,0x0,0x25,0x0,0x1d,0x0,0x24,
0x0,0x20,0x0,0x23,0x0,0x24,0x0,0x24,0x0,0x29,0x0,0x26,0x0,0x2b,0x0,0x27,
0x0,0x2e,0x0,0x26,0x0,0x31,0x0,0x26,0x0,0x33,0x0,0x26,0x0,0x34,0x0,0x26,
0x0,0x33,0x0,0x27,0x0,0x2e,0x0,0x26,0x0,0x27,0x0,0x23,0x0,0x21,0x0,0x21,
0x0,0x1f,0x0,0x22,0x0,0x21,0x0,0x23,0x0,0x26,0x0,0x28,0x0,0x2f,0x0,0x2e,
0x0,0x38,0x0,0x32,0x0,0x38,0x0,0x34,0x0,0x35,0x0,0x33,0x0,0x30,0x0,0x2d,
0x0,0x29,0x0,0x29,0x0,0x25,0x0,0x28,0x0,0x27,0x0,0x26,0x0,0x28,0x0,0x26,
0x0,0x28,0x0,0x26,0x0,0x28,0x0,0x28,0x0,0x29,0x0,0x2c,0x0,0x29,0x0,0x2d,
0x0,0x28,0x0,0x2d,0x0,0x28,0x0,0x2b,0x0,0x28,0x0,0x23,0x0,0x25,0x0,0x1c,
0x0,0x23,0x0,0x1b,0x0,0x24,0x0,0x1e,0x0,0x26,0x0,0x24,0x0,0x2a,0x0,0x2b,
0x0,0x2e,0x0,0x2d,0x0,0x2c,0x0,0x2a,0x0,0x28,0x0,0x25,0x0,0x25,0x0,0x22,
0x0,0x25,0x0,0x24,0x0,0x2a,0x0,0x25,0x0,0x31,0x0,0x27,0x0,0x35,0x0,0x2c,
0x0,0x37,0x0,0x2f,0x0,0x38,0x0,0x30,0x0,0x35,0x0,0x34,0x0,0x31,0x0,0x35,
0x0,0x2e,0x0,0x35,0x0,0x30,0x0,0x33,0x0,0x33,0x0,0x30,0x0,0x35,0x0,0x31,
0x0,0x34,0x0,0x30,0x0,0x32,0x0,0x2f,0x0,0x2f,0x0,0x32,0x0,0x2e,0x0,0x34,
0x0,0x2e,0x0,0x32,0x0,0x2e,0x0,0x31,0x0,0x2c,0x0,0x2d,0x0,0x26,0x0,0x2a,
0x0,0x22,0x0,0x2a,0x0,0x23,0x0,0x2a,0x0,0x25,0x0,0x2c,0x0,0x29,0x0,0x32,
0x0,0x33,0x0,0x38,0x0,0x3a,0x0,0x3f,0x0,0x39,0x0,0x44,0x0,0x38,0x0,0x41,
0x0,0x33,0x0,0x3a,0x0,0x2b,0x0,0x35,0x0,0x29,0x0,0x30,0x0,0x2d,0x0,0x2d,
0x0,0x2f,0x0,0x2d,0x0,0x30,0x0,0x30,0x0,0x32,0x0,0x32,0x0,0x35,0x0,0x34,
0x0,0x3b,0x0,0x39,0x0,0x40,0x0,0x3d,0x0,0x45,0x0,0x3e,0x0,0x47,0x0,0x3f,
0x0,0x43,0x0,0x3e,0x0,0x3a,0x0,0x3b,0x0,0x37,0x0,0x3a,0x0,0x39,0x0,0x3a,
0x0,0x3c,0x0,0x3a,0x0,0x40,0x0,0x39,0x0,0x40,0x0,0x39,0x0,0x3f,0x0,0x3d,
0x0,0x40,0x0,0x40,0x0,0x3f,0x0,0x41,0x0,0x3c,0x0,0x43,0x0,0x3c,0x0,0x46,
0x0,0x3b,0x0,0x48,0x0,0x3b,0x0,0x48,0x0,0x3b,0x0,0x43,0x0,0x38,0x0,0x3a,
0x0,0x36,0x0,0x37,0x0,0x35,0x0,0x35,0x0,0x37,0x0,0x34,0x0,0x3c,0x0,0x38,
0x0,0x3e,0x0,0x3b,0x0,0x3a,0x0,0x3d,0x0,0x3a,0x0,0x3b,0x0,0x3c,0x0,0x37,
0x0,0x39,0x0,0x35,0x0,0x39,0x0,0x38,0x0,0x3d,0x0,0x3d,0x0,0x41,0x0,0x40,
0x0,0x40,0x0,0x43,0x0,0x3d,0x0,0x42,0x0,0x37,0x0,0x3b,0x0,0x2d,0x0,0x32,
0x0,0x27,0x0,0x2f,0x0,0x29,0x0,0x2e,0x0,0x2c,0x0,0x2c,0x0,0x2d,0x0,0x2d,
0x0,0x2f,0x0,0x2f,0x0,0x33,0x0,0x30,0x0,0x35,0x0,0x32,0x0,0x33,0x0,0x31,
0x0,0x2f,0x0,0x2c,0x0,0x2c,0x0,0x2a,0x0,0x2a,0x0,0x2b,0x0,0x2a,0x0,0x2b,
0x0,0x2b,0x0,0x2c,0x0,0x2d,0x0,0x2d,0x0,0x2f,0x0,0x32,0x0,0x33,0x0,0x34,
0x0,0x34,0x0,0x31,0x0,0x34,0x0,0x32,0x0,0x31,0x0,0x33,0x0,0x2b,0x0,0x2d,
0x0,0x27,0x0,0x29,0x0,0x29,0x0,0x2a,0x0,0x2d,0x0,0x29,0x0,0x32,0x0,0x2a,
0x0,0x36,0x0,0x2d,0x0,0x35,0x0,0x2d,0x0,0x30,0x0,0x2d,0x0,0x2a,0x0,0x2b,
0x0,0x25,0x0,0x26,0x0,0x20,0x0,0x23,0x0,0x1e,0x0,0x1e,0x0,0x1a,0x0,0x19,
0x0,0x16,0x0,0x18,0x0,0x12,0x0,0x15,0x0,0xf,0x0,0x14,0x0,0xe,0x0,0x17,
0x0,0x13,0x0,0x1a,0x0,0x18,0x0,0x1a,0x0,0x1a,0x0,0x18,0x0,0x1c,0x0,0x19,
0x0,0x20,0x0,0x1f,0x0,0x25,0x0,0x25,0x0,0x29,0x0,0x28,0x0,0x2b,0x0,0x2a,
0x0,0x2b,0x0,0x28,0x0,0x28,0x0,0x24,0x0,0x22,0x0,0x23,0x0,0x1c,0x0,0x20,
0x0,0x1b,0x0,0x1e,0x0,0x21,0x0,0x1f,0x0,0x28,0x0,0x24,0x0,0x2f,0x0,0x2b,
0x0,0x33,0x0,0x32,0x0,0x33,0x0,0x32,0x0,0x31,0x0,0x2e,0x0,0x2c,0x0,0x28,
0x0,0x24,0x0,0x21,0x0,0x1c,0x0,0x1b,0x0,0x1a,0x0,0x1d,0x0,0x1f,0x0,0x21,
0x0,0x23,0x0,0x24,0x0,0x24,0x0,0x25,0x0,0x24,0x0,0x25,0x0,0x24,0x0,0x24,
0x0,0x21,0x0,0x20,0x0,0x1d,0x0,0x1a,0x0,0x18,0x0,0x15,0x0,0x10,0x0,0x12,
0x0,0xc,0x0,0x13,0x0,0xe,0x0,0x15,0x0,0x13,0x0,0x17,0x0,0x19,0x0,0x1c,
0x0,0x1d,0x0,0x21,0x0,0x1d,0x0,0x21,0x0,0x1c,0x0,0x20,0x0,0x1b,0x0,0x21,
0x0,0x1c,0x0,0x23,0x0,0x20,0x0,0x24,0x0,0x27,0x0,0x28,0x0,0x2d,0x0,0x2d,
0x0,0x2d,0x0,0x2d,0x0,0x27,0x0,0x2b,0x0,0x1e,0x0,0x28,0x0,0x1a,0x0,0x26,
0x0,0x1d,0x0,0x27,0x0,0x21,0x0,0x29,0x0,0x22,0x0,0x29,0x0,0x23,0x0,0x27,
0x0,0x21,0x0,0x26,0x0,0x1d,0x0,0x26,0x0,0x1f,0x0,0x25,0x0,0x21,0x0,0x23,
0x0,0x1f,0x0,0x22,0x0,0x18,0x0,0x20,0x0,0x14,0x0,0x1c,0x0,0x14,0x0,0x19,
0x0,0x17,0x0,0x19,0x0,0x1e,0x0,0x1c,0x0,0x29,0x0,0x22,0x0,0x2d,0x0,0x25,
0x0,0x2a,0x0,0x26,0x0,0x25,0x0,0x23,0x0,0x21,0x0,0x1e,0x0,0x20,0x0,0x1b,
0x0,0x1e,0x0,0x1b,0x0,0x17,0x0,0x19,0x0,0x10,0x0,0x13,0x0,0x7,0x0,0xd,
0x0,0x0,0x0,0xa,0x0,0x4,0x0,0xd,0x0,0x13,0x0,0x15,0x0,0x1b,0x0,0x1d,
0x0,0x1d,0x0,0x23,0x0,0x1c,0x0,0x22,0x0,0x17,0x0,0x1a,0x0,0x10,0x0,0x12,
0x0,0xd,0x0,0x11,0x0,0xe,0x0,0x14,0x0,0x14,0x0,0x17,0x0,0x18,0x0,0x1a,
0x0,0x19,0x0,0x1c,0x0,0x1c,0x0,0x1e,0x0,0x1e,0x0,0x1e,0x0,0x1f,0x0,0x1c,
0x0,0x23,0x0,0x1d,0x0,0x26,0x0,0x21,0x0,0x29,0x0,0x24,0x0,0x2b,0x0,0x27,
0x0,0x29,0x0,0x28,0x0,0x25,0x0,0x24,0x0,0x22,0x0,0x21,0x0,0x1c,0x0,0x1d,
0x0,0x16,0x0,0x19,0x0,0x14,0x0,0x17,0x0,0x12,0x0,0x15,0x0,0xc,0x0,0x10,
0x0,0xa,0x0,0xc,0x0,0xb,0x0,0x7,0x0,0xb,0x0,0x6,0x0,0x9,0x0,0x6,
0x0,0x5,0x0,0x5,0x0,0xfe,0xff,0x2,0x0,0xf9,0xff,0x0,0x0,0xfa,0xff,0x0,
0x0,0xfc,0xff,0x2,0x0,0xfd,0xff,0x4,0x0,0xff,0xff,0x3,0x0,0xfe,0xff,0x0,
0x0,0xfd,0xff,0xfd,0xff,0xff,0xff,0xfe,0xff,0x4,0x0,0x3,0x0,0x9,0x0,0x5,
0x0,0x10,0x0,0x9,0x0,0x17,0x0,0x11,0x0,0x1b,0x0,0x15,0x0,0x1d,0x0,0x16,
0x0,0x1d,0x0,0x18,0x0,0x1b,0x0,0x17,0x0,0x18,0x0,0x14,0x0,0x18,0x0,0x12,
0x0,0x18,0x0,0x10,0x0,0x17,0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x10,0x0,0x11,
0x0,0xb,0x0,0xf,0x0,0x4,0x0,0x9,0x0,0xff,0xff,0x4,0x0,0xfe,0xff,0x3,
0x0,0xfc,0xff,0x1,0x0,0xf8,0xff,0x0,0x0,0xf7,0xff,0xff,0xff,0xf9,0xff,0xff,
0xff,0xfe,0xff,0x3,0x0,0x5,0x0,0xa,0x0,0x8,0x0,0xc,0x0,0x6,0x0,0xa,
0x0,0x1,0x0,0x6,0x0,0xf7,0xff,0x3,0x0,0xf3,0xff,0x3,0x0,0xf9,0xff,0x4,
0x0,0x0,0x0,0x3,0x0,0x1,0x0,0xfe,0xff,0xfd,0xff,0xf9,0xff,0xf8,0xff,0xf7,
0xff,0xf7,0xff,0xf7,0xff,0xfd,0xff,0xfe,0xff,0x7,0x0,0xb,0x0,0xf,0x0,0x11,
0x0,0xf,0x0,0xf,0x0,0x8,0x0,0xb,0x0,0x2,0x0,0x8,0x0,0x3,0x0,0x7,
0x0,0x9,0x0,0x7,0x0,0x10,0x0,0xb,0x0,0x16,0x0,0x11,0x0,0x16,0x0,0x12,
0x0,0x13,0x0,0x11,0x0,0x11,0x0,0x14,0x0,0x12,0x0,0x14,0x0,0x13,0x0,0x14,
0x0,0x12,0x0,0x16,0x0,0x13,0x0,0x15,0x0,0x11,0x0,0x13,0x0,0xd,0x0,0xd,
0x0,0xc,0x0,0x7,0x0,0xc,0x0,0x9,0x0,0xb,0x0,0xe,0x0,0xa,0x0,0xf,
0x0,0x9,0x0,0x12,0x0,0x9,0x0,0x13,0x0,0x8,0x0,0xe,0x0,0x5,0x0,0xa,
0x0,0x5,0x0,0x8,0x0,0x8,0x0,0x9,0x0,0x9,0x0,0xc,0x0,0x8,0x0,0x10,
0x0,0xb,0x0,0x15,0x0,0xc,0x0,0x16,0x0,0xc,0x0,0x15,0x0,0xd,0x0,0x15,
0x0,0xe,0x0,0x12,0x0,0xc,0x0,0xb,0x0,0x8,0x0,0x4,0x0,0x2,0x0,0xfe,
0xff,0xfc,0xff,0xfd,0xff,0xf9,0xff,0x2,0x0,0xfc,0xff,0x4,0x0,0x1,0x0,0x8,
0x0,0x5,0x0,0xd,0x0,0x9,0x0,0xd,0x0,0xb,0x0,0xa,0x0,0x9,0x0,0xa,
0x0,0x8,0x0,0x8,0x0,0x9,0x0,0x9,0x0,0xa,0x0,0xe,0x0,0xa,0x0,0x12,
0x0,0xc,0x0,0x14,0x0,0xe,0x0,0x13,0x0,0xb,0x0,0x11,0x0,0x7,0x0,0xb,
0x0,0x8,0x0,0x4,0x0,0xa,0x0,0x3,0x0,0x9,0x0,0x4,0x0,0x5,0x0,0x5,
0x0,0x4,0x0,0xb,0x0,0x7,0x0,0x11,0x0,0xc,0x0,0x13,0x0,0xf,0x0,0x16,
0x0,0x10,0x0,0x19,0x0,0x10,0x0,0x16,0x0,0xd,0x0,0x13,0x0,0x7,0x0,0xf,
0x0,0x2,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0xfe,0xff,0xff,0xff,0xfb,0xff,0x0,
0x0,0xf9,0xff,0x4,0x0,0xf7,0xff,0x5,0x0,0xf7,0xff,0x1,0x0,0xfa,0xff,0xfe,
0xff,0xff,0xff,0xfd,0xff,0x4,0x0,0xff,0xff,0x9,0x0,0x3,0x0,0xe,0x0,0xa,
0x0,0x10,0x0,0xb,0x0,0xd,0x0,0x7,0x0,0x6,0x0,0x4,0x0,0xfd,0xff,0xff,
0xff,0xf8,0xff,0xf8,0xff,0xf9,0xff,0xf4,0xff,0xfc,0xff,0xf2,0xff,0xfe,0xff,0xf7,
0xff,0x3,0x0,0x0,0x0,0x7,0x0,0x4,0x0,0x9,0x0,0x5,0x0,0x8,0x0,0x5,
0x0,0x3,0x0,0x1,0x0,0xf9,0xff,0xfe,0xff,0xf3,0xff,0xfb,0xff,0xf3,0xff,0xf6,
0xff,0xf6,0xff,0xf5,0xff,0xfd,0xff,0xfa,0xff,0x5,0x0,0x0,0x0,0x7,0x0,0x4,
0x0,0x5,0x0,0x4,0x0,0xfe,0xff,0x1,0x0,0xf6,0xff,0xfe,0xff,0xf4,0xff,0xfb,
0xff,0xf5,0xff,0xfb,0xff,0xf6,0xff,0xfc,0xff,0xfa,0xff,0xfc,0xff,0xff,0xff,0xfc,
0xff,0x1,0x0,0xfb,0xff,0xfe,0xff,0xf6,0xff,0xf7,0xff,0xf2,0xff,0xf4,0xff,0xf1,
0xff,0xf4,0xff,0xf0,0xff,0xf2,0xff,0xed,0xff,0xf2,0xff,0xed,0xff,0xf5,0xff,0xee,
0xff,0xf4,0xff,0xed,0xff,0xf3,0xff,0xec,0xff,0xf4,0xff,0xee,0xff,0xf2,0xff,0xf0,
0xff,0xf1,0xff,0xf3,0xff,0xf1,0xff,0xf7,0xff,0xf1,0xff,0xf8,0xff,0xf5,0xff,0xf9,
0xff,0xfa,0xff,0xfc,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0xf8,0xff,0xf7,0xff,0xf7,
0xff,0xf2,0xff,0xf1,0xff,0xec,0xff,0xeb,0xff,0xe7,0xff,0xe5,0xff,0xe5,0xff,0xdd,
0xff,0xe4,0xff,0xdc,0xff,0xe8,0xff,0xe4,0xff,0xf0,0xff,0xed,0xff,0xf8,0xff,0xf3,
0xff,0xfb,0xff,0xf6,0xff,0xfc,0xff,0xf5,0xff,0xfa,0xff,0xf2,0xff,0xf1,0xff,0xea,
0xff,0xe4,0xff,0xe0,0xff,0xd8,0xff,0xdb,0xff,0xd3,0xff,0xd7,0xff,0xd5,0xff,0xd4,
0xff,0xd9,0xff,0xd3,0xff,0xde,0xff,0xd8,0xff,0xe3,0xff,0xde,0xff,0xe2,0xff,0xdd,
0xff,0xdc,0xff,0xda,0xff,0xd7,0xff,0xd9,0xff,0xd3,0xff,0xd7,0xff,0xd3,0xff,0xd3,
0xff,0xd5,0xff,0xd2,0xff,0xdb,0xff,0xd9,0xff,0xe3,0xff,0xe5,0xff,0xea,0xff,0xee,
0xff,0xec,0xff,0xef,0xff,0xea,0xff,0xeb,0xff,0xe5,0xff,0xe4,0xff,0xde,0xff,0xde,
0xff,0xda,0xff,0xe1,0xff,0xdf,0xff,0xe6,0xff,0xeb,0xff,0xeb,0xff,0xfa,0xff,0xf3,
0xff,0x6,0x0,0xfe,0xff,0xc,0x0,0x3,0x0,0x8,0x0,0x1,0x0,0xfd,0xff,0xfc,
0xff,0xf4,0xff,0xf5,0xff,0xea,0xff,0xee,0xff,0xe0,0xff,0xe5,0xff,0xdb,0xff,0xdf,
0xff,0xdc,0xff,0xdd,0xff,0xe0,0xff,0xe0,0xff,0xe5,0xff,0xe5,0xff,0xe6,0xff,0xe5,
0xff,0xe4,0xff,0xe0,0xff,0xdb,0xff,0xd8,0xff,0xd2,0xff,0xd0,0xff,0xd0,0xff,0xca,
0xff,0xd2,0xff,0xca,0xff,0xd6,0xff,0xd1,0xff,0xdb,0xff,0xdc,0xff,0xdf,0xff,0xe3,
0xff,0xe2,0xff,0xe4,0xff,0xe2,0xff,0xe3,0xff,0xde,0xff,0xe1,0xff,0xdb,0xff,0xdd,
0xff,0xda,0xff,0xd9,0xff,0xd7,0xff,0xd7,0xff,0xd5,0xff,0xd9,0xff,0xd9,0xff,0xe1,
0xff,0xe4,0xff,0xe9,0xff,0xf0,0xff,0xef,0xff,0xf9,0xff,0xf5,0xff,0xfa,0xff,0xf8,
0xff,0xf8,0xff,0xf5,0xff,0xf4,0xff,0xef,0xff,0xed,0xff,0xe7,0xff,0xe6,0xff,0xe0,
0xff,0xe4,0xff,0xdf,0xff,0xe2,0xff,0xe2,0xff,0xde,0xff,0xe1,0xff,0xdb,0xff,0xdc,
0xff,0xd8,0xff,0xd7,0xff,0xd0,0xff,0xd5,0xff,0xc9,0xff,0xd3,0xff,0xc8,0xff,0xcd,
0xff,0xc6,0xff,0xc9,0xff,0xc7,0xff,0xca,0xff,0xca,0xff,0xce,0xff,0xcc,0xff,0xd2,
0xff,0xd0,0xff,0xd7,0xff,0xd5,0xff,0xd9,0xff,0xd5,0xff,0xd6,0xff,0xd2,0xff,0xd2,
0xff,0xd0,0xff,0xcf,0xff,0xcf,0xff,0xce,0xff,0xd1,0xff,0xd1,0xff,0xd5,0xff,0xd4,
0xff,0xda,0xff,0xd8,0xff,0xe1,0xff,0xdd,0xff,0xe8,0xff,0xe1,0xff,0xed,0xff,0xe6,
0xff,0xef,0xff,0xea,0xff,0xee,0xff,0xe8,0xff,0xe9,0xff,0xe1,0xff,0xe1,0xff,0xda,
0xff,0xd7,0xff,0xd7,0xff,0xd0,0xff,0xd7,0xff,0xd0,0xff,0xd9,0xff,0xd4,0xff,0xdd,
0xff,0xd7,0xff,0xdd,0xff,0xd6,0xff,0xd8,0xff,0xd4,0xff,0xd5,0xff,0xd3,0xff,0xd3,
0xff,0xcf,0xff,0xd1,0xff,0xcc,0xff,0xce,0xff,0xcb,0xff,0xcb,0xff,0xc7,0xff,0xcb,
0xff,0xc1,0xff,0xca,0xff,0xc0,0xff,0xc8,0xff,0xc2,0xff,0xcb,0xff,0xc9,0xff,0xd1,
0xff,0xcf,0xff,0xd0,0xff,0xd2,0xff,0xcc,0xff,0xd0,0xff,0xc8,0xff,0xcc,0xff,0xc6,
0xff,0xc7,0xff,0xc7,0xff,0xc6,0xff,0xc6,0xff,0xc8,0xff,0xc6,0xff,0xcd,0xff,0xc9,
0xff,0xd1,0xff,0xcb,0xff,0xd1,0xff,0xce,0xff,0xd4,0xff,0xd4,0xff,0xda,0xff,0xd8,
0xff,0xdd,0xff,0xd6,0xff,0xd9,0xff,0xd2,0xff,0xd0,0xff,0xcd,0xff,0xc4,0xff,0xc4,
0xff,0xbb,0xff,0xbb,0xff,0xba,0xff,0xb7,0xff,0xbd,0xff,0xb9,0xff,0xc2,0xff,0xbf,
0xff,0xc7,0xff,0xc5,0xff,0xc6,0xff,0xca,0xff,0xc4,0xff,0xca,0xff,0xc1,0xff,0xc5,
0xff,0xbb,0xff,0xbe,0xff,0xba,0xff,0xba,0xff,0xbf,0xff,0xb9,0xff,0xc1,0xff,0xb9,
0xff,0xbf,0xff,0xbc,0xff,0xbe,0xff,0xbf,0xff,0xbb,0xff,0xbe,0xff,0xb8,0xff,0xbb,
0xff,0xbb,0xff,0xbc,0xff,0xbe,0xff,0xbd,0xff,0xbb,0xff,0xba,0xff,0xb9,0xff,0xb7,
0xff,0xb8,0xff,0xb7,0xff,0xb4,0xff,0xb7,0xff,0xb3,0xff,0xb8,0xff,0xb7,0xff,0xbb,
0xff,0xbc,0xff,0xbf,0xff,0xc0,0xff,0xc0,0xff,0xc2,0xff,0xc0,0xff,0xbf,0xff,0xbf,
0xff,0xbb,0xff,0xbb,0xff,0xbb,0xff,0xb5,0xff,0xbe,0xff,0xb3,0xff,0xc0,0xff,0xb8,
0xff,0xc0,0xff,0xbf,0xff,0xc1,0xff,0xc2,0xff,0xc4,0xff,0xc5,0xff,0xc7,0xff,0xca,
0xff,0xc9,0xff,0xca,0xff,0xc8,0xff,0xc9,0xff,0xc6,0xff,0xc7,0xff,0xc3,0xff,0xc7,
0xff,0xc1,0xff,0xc9,0xff,0xc4,0xff,0xc9,0xff,0xca,0xff,0xc6,0xff,0xce,0xff,0xc5,
0xff,0xcd,0xff,0xc6,0xff,0xcb,0xff,0xc5,0xff,0xc9,0xff,0xc2,0xff,0xc5,0xff,0xbe,
0xff,0xc2,0xff,0xbb,0xff,0xbf,0xff,0xbc,0xff,0xbf,0xff,0xbd,0xff,0xc4,0xff,0xbf,
0xff,0xc8,0xff,0xc4,0xff,0xcb,0xff,0xc7,0xff,0xcf,0xff,0xcb,0xff,0xd2,0xff,0xcf,
0xff,0xd0,0xff,0xcf,0xff,0xc9,0xff,0xca,0xff,0xc3,0xff,0xc3,0xff,0xc1,0xff,0xbe,
0xff,0xc3,0xff,0xbe,0xff,0xc4,0xff,0xc1,0xff,0xc5,0xff,0xcb,0xff,0xcb,0xff,0xd9,
0xff,0xd4,0xff,0xe1,0xff,0xde,0xff,0xe2,0xff,0xdf,0xff,0xdd,0xff,0xd6,0xff,0xd3,
0xff,0xc9,0xff,0xc9,0xff,0xbc,0xff,0xc1,0xff,0xb7,0xff,0xbe,0xff,0xc1,0xff,0xc3,
0xff,0xcc,0xff,0xcb,0xff,0xd4,0xff,0xd2,0xff,0xda,0xff,0xd5,0xff,0xd9,0xff,0xd3,
0xff,0xd2,0xff,0xd1,0xff,0xd0,0xff,0xcd,0xff,0xcc,0xff,0xc6,0xff,0xc8,0xff,0xc5,
0xff,0xcb,0xff,0xc7,0xff,0xce,0xff,0xcb,0xff,0xd3,0xff,0xd8,0xff,0xdb,0xff,0xe8,
0xff,0xdf,0xff,0xec,0xff,0xdd,0xff,0xe5,0xff,0xd7,0xff,0xd5,0xff,0xcb,0xff,0xc7,
0xff,0xc0,0xff,0xbe,0xff,0xba,0xff,0xb8,0xff,0xb8,0xff,0xba,0xff,0xba,0xff,0xbf,
0xff,0xc0,0xff,0xc3,0xff,0xc4,0xff,0xcb,0xff,0xc8,0xff,0xd1,0xff,0xca,0xff,0xcf,
0xff,0xcc,0xff,0xcf,0xff,0xcf,0xff,0xd0,0xff,0xcf,0xff,0xcc,0xff,0xcf,0xff,0xc9,
0xff,0xd0,0xff,0xcc,0xff,0xd0,0xff,0xd1,0xff,0xd6,0xff,0xda,0xff,0xe1,0xff,0xe5,
0xff,0xe8,0xff,0xe7,0xff,0xe7,0xff,0xe2,0xff,0xe2,0xff,0xdd,0xff,0xd9,0xff,0xda,
0xff,0xd0,0xff,0xd4,0xff,0xcb,0xff,0xd0,0xff,0xcd,0xff,0xd0,0xff,0xd4,0xff,0xd3,
0xff,0xd8,0xff,0xd8,0xff,0xdc,0xff,0xda,0xff,0xdb,0xff,0xd7,0xff,0xd3,0xff,0xd1,
0xff,0xca,0xff,0xc7,0xff,0xc3,0xff,0xba,0xff,0xbe,0xff,0xb5,0xff,0xc2,0xff,0xb9,
0xff,0xc6,0xff,0xc1,0xff,0xc6,0xff,0xcc,0xff,0xcc,0xff,0xd7,0xff,0xd4,0xff,0xdb,
0xff,0xd8,0xff,0xdb,0xff,0xd7,0xff,0xd8,0xff,0xd2,0xff,0xd6,0xff,0xce,0xff,0xd2,
0xff,0xcd,0xff,0xcd,0xff,0xcf,0xff,0xcd,0xff,0xd4,0xff,0xd2,0xff,0xd8,0xff,0xd6,
0xff,0xda,0xff,0xdc,0xff,0xdc,0xff,0xe1,0xff,0xdb,0xff,0xdd,0xff,0xd7,0xff,0xd4,
0xff,0xd3,0xff,0xcd,0xff,0xce,0xff,0xc7,0xff,0xcb,0xff,0xc4,0xff,0xce,0xff,0xc7,
0xff,0xd3,0xff,0xce,0xff,0xdb,0xff,0xd8,0xff,0xe2,0xff,0xdd,0xff,0xe1,0xff,0xdb,
0xff,0xd9,0xff,0xd5,0xff,0xd1,0xff,0xce,0xff,0xcc,0xff,0xc9,0xff,0xcf,0xff,0xcb,
0xff,0xd3,0xff,0xd2,0xff,0xd6,0xff,0xd2,0xff,0xd7,0xff,0xd1,0xff,0xd9,0xff,0xd4,
0xff,0xdc,0xff,0xd9,0xff,0xe0,0xff,0xdd,0xff,0xdc,0xff,0xde,0xff,0xd0,0xff,0xd9,
0xff,0xc4,0xff,0xcf,0xff,0xba,0xff,0xc6,0xff,0xb9,0xff,0xc1,0xff,0xc2,0xff,0xc2,
0xff,0xcc,0xff,0xc6,0xff,0xd0,0xff,0xcb,0xff,0xce,0xff,0xd0,0xff,0xca,0xff,0xd1,
0xff,0xca,0xff,0xd0,0xff,0xcd,0xff,0xd1,0xff,0xd0,0xff,0xd3,0xff,0xd1,0xff,0xd0,
0xff,0xce,0xff,0xce,0xff,0xcd,0xff,0xcf,0xff,0xd1,0xff,0xd1,0xff,0xd4,0xff,0xd3,
0xff,0xd3,0xff,0xd6,0xff,0xd1,0xff,0xd6,0xff,0xd1,0xff,0xd1,0xff,0xd1,0xff,0xce,
0xff,0xd2,0xff,0xd0,0xff,0xd5,0xff,0xd5,0xff,0xd6,0xff,0xd6,0xff,0xd5,0xff,0xd5,
0xff,0xd5,0xff,0xd2,0xff,0xd7,0xff,0xd3,0xff,0xd9,0xff,0xd7,0xff,0xd9,0xff,0xd8,
0xff,0xd7,0xff,0xd9,0xff,0xd6,0xff,0xdd,0xff,0xd7,0xff,0xdc,0xff,0xd8,0xff,0xd7,
0xff,0xd8,0xff,0xd4,0xff,0xd9,0xff,0xd4,0xff,0xd7,0xff,0xd7,0xff,0xd4,0xff,0xd9,
0xff,0xd4,0xff,0xd7,0xff,0xd6,0xff,0xd6,0xff,0xd9,0xff,0xd8,0xff,0xdc,0xff,0xdd,
0xff,0xdd,0xff,0xe2,0xff,0xdc,0xff,0xe3,0xff,0xdb,0xff,0xe1,0xff,0xdc,0xff,0xdf,
0xff,0xe3,0xff,0xdf,0xff,0xe6,0xff,0xde,0xff,0xe6,0xff,0xdb,0xff,0xe5,0xff,0xd9,
0xff,0xe1,0xff,0xda,0xff,0xde,0xff,0xdd,0xff,0xe2,0xff,0xe1,0xff,0xe5,0xff,0xe4,
0xff,0xe7,0xff,0xe3,0xff,0xe6,0xff,0xdd,0xff,0xe0,0xff,0xd8,0xff,0xdb,0xff,0xd5,
0xff,0xd8,0xff,0xd0,0xff,0xd8,0xff,0xcf,0xff,0xdb,0xff,0xd3,0xff,0xdb,0xff,0xd5,
0xff,0xd7,0xff,0xd5,0xff,0xd9,0xff,0xd8,0xff,0xda,0xff,0xdb,0xff,0xd4,0xff,0xdb,
0xff,0xd1,0xff,0xda,0xff,0xd4,0xff,0xdc,0xff,0xdc,0xff,0xe0,0xff,0xe5,0xff,0xe5,
0xff,0xea,0xff,0xe9,0xff,0xee,0xff,0xea,0xff,0xf0,0xff,0xe9,0xff,0xef,0xff,0xe7,
0xff,0xed,0xff,0xe8,0xff,0xec,0xff,0xe7,0xff,0xe8,0xff,0xe8,0xff,0xe7,0xff,0xe8,
0xff,0xe7,0xff,0xe7,0xff,0xe2,0xff,0xe5,0xff,0xdd,0xff,0xe2,0xff,0xdd,0xff,0xdf,
0xff,0xdd,0xff,0xde,0xff,0xdb,0xff,0xdb,0xff,0xd8,0xff,0xd6,0xff,0xd8,0xff,0xd7,
0xff,0xd9,0xff,0xdb,0xff,0xd8,0xff,0xdc,0xff,0xd9,0xff,0xdb,0xff,0xdc,0xff,0xda,
0xff,0xda,0xff,0xd9,0xff,0xd6,0xff,0xd3,0xff,0xd3,0xff,0xc9,0xff,0xd0,0xff,0xc5,
0xff,0xd0,0xff,0xca,0xff,0xd0,0xff,0xcf,0xff,0xd4,0xff,0xd2,0xff,0xdb,0xff,0xd7,
0xff,0xe0,0xff,0xda,0xff,0xe5,0xff,0xdd,0xff,0xe9,0xff,0xe2,0xff,0xec,0xff,0xea,
0xff,0xf0,0xff,0xed,0xff,0xf0,0xff,0xeb,0xff,0xee,0xff,0xe9,0xff,0xf0,0xff,0xe7,
0xff,0xf0,0xff,0xe7,0xff,0xed,0xff,0xeb,0xff,0xec,0xff,0xf0,0xff,0xeb,0xff,0xf0,
0xff,0xea,0xff,0xef,0xff,0xe9,0xff,0xed,0xff,0xe3,0xff,0xe6,0xff,0xd8,0xff,0xdf,
0xff,0xd0,0xff,0xdc,0xff,0xcf,0xff,0xdc,0xff,0xd6,0xff,0xdc,0xff,0xdd,0xff,0xdd,
0xff,0xdf,0xff,0xe4,0xff,0xe1,0xff,0xea,0xff,0xe4,0xff,0xe9,0xff,0xe4,0xff,0xe6,
0xff,0xe3,0xff,0xe5,0xff,0xe5,0xff,0xe6,0xff,0xeb,0xff,0xec,0xff,0xf0,0xff,0xf2,
0xff,0xf1,0xff,0xf3,0xff,0xf2,0xff,0xf3,0xff,0xf6,0xff,0xf0,0xff,0xf7,0xff,0xec,
0xff,0xf6,0xff,0xee,0xff,0xf3,0xff,0xee,0xff,0xef,0xff,0xea,0xff,0xed,0xff,0xe7,
0xff,0xed,0xff,0xe6,0xff,0xeb,0xff,0xe6,0xff,0xe9,0xff,0xea,0xff,0xeb,0xff,0xef,
0xff,0xec,0xff,0xf0,0xff,0xe9,0xff,0xf0,0xff,0xe5,0xff,0xef,0xff,0xe4,0xff,0xec,
0xff,0xe3,0xff,0xea,0xff,0xe4,0xff,0xec,0xff,0xe8,0xff,0xf3,0xff,0xee,0xff,0xf6,
0xff,0xf0,0xff,0xf3,0xff,0xed,0xff,0xef,0xff,0xe7,0xff,0xec,0xff,0xe1,0xff,0xeb,
0xff,0xdf,0xff,0xec,0xff,0xe3,0xff,0xe9,0xff,0xe7,0xff,0xe6,0xff,0xe9,0xff,0xe5,
0xff,0xea,0xff,0xe7,0xff,0xec,0xff,0xeb,0xff,0xec,0xff,0xeb,0xff,0xe9,0xff,0xe6,
0xff,0xe5,0xff,0xe0,0xff,0xe2,0xff,0xdc,0xff,0xe3,0xff,0xdb,0xff,0xe7,0xff,0xe1,
0xff,0xec,0xff,0xe8,0xff,0xef,0xff,0xe6,0xff,0xee,0xff,0xe1,0xff,0xec,0xff,0xe2,
0xff,0xeb,0xff,0xe5,0xff,0xea,0xff,0xe6,0xff,0xe9,0xff,0xe5,0xff,0xe7,0xff,0xe4,
0xff,0xe6,0xff,0xe7,0xff,0xeb,0xff,0xee,0xff,0xf1,0xff,0xf5,0xff,0xf1,0xff,0xfc,
0xff,0xec,0xff,0xfe,0xff,0xea,0xff,0xf8,0xff,0xe8,0xff,0xf0,0xff,0xe8,0xff,0xeb,
0xff,0xe9,0xff,0xe8,0xff,0xe7,0xff,0xe8,0xff,0xe4,0xff,0xea,0xff,0xe4,0xff,0xef,
0xff,0xe9,0xff,0xf8,0xff,0xf1,0xff,0xff,0xff,0xf9,0xff,0x4,0x0,0xff,0xff,0x8,
0x0,0xfd,0xff,0x8,0x0,0xf5,0xff,0x0,0x0,0xef,0xff,0xf6,0xff,0xed,0xff,0xef,
0xff,0xed,0xff,0xf0,0xff,0xf5,0xff,0xf7,0xff,0x2,0x0,0xfe,0xff,0x8,0x0,0x3,
0x0,0x5,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0xfc,0xff,0x4,0x0,0xf6,0xff,0x0,
0x0,0xf1,0xff,0xf6,0xff,0xef,0xff,0xee,0xff,0xf1,0xff,0xee,0xff,0xf6,0xff,0xf7,
0xff,0xfe,0xff,0x4,0x0,0x8,0x0,0xd,0x0,0xd,0x0,0x10,0x0,0x8,0x0,0xc,
0x0,0xff,0xff,0x2,0x0,0xfa,0xff,0xf8,0xff,0xf9,0xff,0xf7,0xff,0xf9,0xff,0xf9,
0xff,0xfd,0xff,0xfa,0xff,0x2,0x0,0xfe,0xff,0x4,0x0,0x5,0x0,0x5,0x0,0x9,
0x0,0x3,0x0,0x7,0x0,0xfd,0xff,0x5,0x0,0xf4,0xff,0x0,0x0,0xef,0xff,0xfa,
0xff,0xef,0xff,0xf8,0xff,0xf1,0xff,0xfc,0xff,0xf3,0xff,0x0,0x0,0xfa,0xff,0x6,
0x0,0x4,0x0,0xe,0x0,0x9,0x0,0xe,0x0,0x7,0x0,0xb,0x0,0x2,0x0,0x6,
0x0,0xfa,0xff,0x0,0x0,0xf5,0xff,0x0,0x0,0xf8,0xff,0x5,0x0,0xfc,0xff,0x4,
0x0,0x1,0x0,0x1,0x0,0x8,0x0,0x1,0x0,0xe,0x0,0x2,0x0,0x10,0x0,0x7,
0x0,0xe,0x0,0xc,0x0,0xc,0x0,0xe,0x0,0x10,0x0,0xd,0x0,0x13,0x0,0xd,
0x0,0x11,0x0,0xc,0x0,0xd,0x0,0xa,0x0,0x8,0x0,0x9,0x0,0x6,0x0,0x9,
0x0,0xa,0x0,0xc,0x0,0xc,0x0,0xe,0x0,0xd,0x0,0xe,0x0,0x9,0x0,0xc,
0x0,0x0,0x0,0xa,0x0,0xf8,0xff,0x6,0x0,0xf7,0xff,0x3,0x0,0xf8,0xff,0x5,
0x0,0xfb,0xff,0x6,0x0,0x1,0x0,0x4,0x0,0x2,0x0,0x6,0x0,0x4,0x0,0x8,
0x0,0x9,0x0,0x8,0x0,0xc,0x0,0xa,0x0,0x9,0x0,0xc,0x0,0x2,0x0,0xe,
0x0,0xff,0xff,0xf,0x0,0x2,0x0,0xd,0x0,0x8,0x0,0x9,0x0,0xf,0x0,0xb,
0x0,0x13,0x0,0x11,0x0,0x14,0x0,0x17,0x0,0x17,0x0,0x1c,0x0,0x1c,0x0,0x1a,
0x0,0x1d,0x0,0x14,0x0,0x19,0x0,0x11,0x0,0x13,0x0,0x10,0x0,0xc,0x0,0xf,
0x0,0xa,0x0,0xd,0x0,0xb,0x0,0xd,0x0,0x12,0x0,0xf,0x0,0x1a,0x0,0x10,
0x0,0x1c,0x0,0x11,0x0,0x16,0x0,0xe,0x0,0xd,0x0,0x9,0x0,0x4,0x0,0x5,
0x0,0xfe,0xff,0x2,0x0,0xfa,0xff,0x0,0x0,0xfb,0xff,0x2,0x0,0x1,0x0,0x3,
0x0,0x4,0x0,0x1,0x0,0x4,0x0,0x6,0x0,0x7,0x0,0xb,0x0,0x8,0x0,0xe,
0x0,0x3,0x0,0xf,0x0,0xff,0xff,0xb,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x4,
0x0,0x8,0x0,0x8,0x0,0xa,0x0,0xb,0x0,0x7,0x0,0xe,0x0,0x3,0x0,0xd,
0x0,0x4,0x0,0x8,0x0,0xa,0x0,0x3,0x0,0x10,0x0,0x3,0x0,0x11,0x0,0x8,
0x0,0x11,0x0,0xe,0x0,0x12,0x0,0x11,0x0,0x11,0x0,0xe,0x0,0xd,0x0,0x9,
0x0,0xc,0x0,0x7,0x0,0xe,0x0,0x8,0x0,0x13,0x0,0xb,0x0,0x17,0x0,0xe,
0x0,0x14,0x0,0xd,0x0,0xc,0x0,0x8,0x0,0xa,0x0,0x5,0x0,0xe,0x0,0x5,
0x0,0x14,0x0,0x7,0x0,0x15,0x0,0xa,0x0,0x15,0x0,0xb,0x0,0x15,0x0,0xf,
0x0,0x16,0x0,0x17,0x0,0x16,0x0,0x1c,0x0,0x1a,0x0,0x1f,0x0,0x1f,0x0,0x23,
0x0,0x20,0x0,0x21,0x0,0x1c,0x0,0x1c,0x0,0x1c,0x0,0x1a,0x0,0x1f,0x0,0x1c,
0x0,0x1e,0x0,0x21,0x0,0x1b,0x0,0x22,0x0,0x1b,0x0,0x1e,0x0,0x1a,0x0,0x1a,
0x0,0x15,0x0,0x17,0x0,0x11,0x0,0x11,0x0,0xc,0x0,0xa,0x0,0x7,0x0,0x6,
0x0,0x9,0x0,0x5,0x0,0x12,0x0,0x9,0x0,0x1b,0x0,0xe,0x0,0x1e,0x0,0x12,
0x0,0x1a,0x0,0x12,0x0,0x12,0x0,0xc,0x0,0xb,0x0,0xa,0x0,0x9,0x0,0x9,
0x0,0xa,0x0,0x7,0x0,0x11,0x0,0x5,0x0,0x18,0x0,0x8,0x0,0x1a,0x0,0xd,
0x0,0x1b,0x0,0x13,0x0,0x1d,0x0,0x18,0x0,0x22,0x0,0x20,0x0,0x27,0x0,0x29,
0x0,0x2d,0x0,0x31,0x0,0x32,0x0,0x34,0x0,0x30,0x0,0x2e,0x0,0x27,0x0,0x21,
0x0,0x20,0x0,0x15,0x0,0x1e,0x0,0x12,0x0,0x1b,0x0,0x15,0x0,0x1a,0x0,0x17,
0x0,0x1c,0x0,0x19,0x0,0x1d,0x0,0x1a,0x0,0x1d,0x0,0x19,0x0,0x1a,0x0,0x15,
0x0,0x16,0x0,0xf,0x0,0xf,0x0,0x9,0x0,0x6,0x0,0x3,0x0,0x0,0x0,0x1,
0x0,0xff,0xff,0x0,0x0,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xf9,0xff,0xfe,0xff,0xf9,
0xff,0xfe,0xff,0xff,0xff,0x0,0x0,0x4,0x0,0x5,0x0,0x5,0x0,0x6,0x0,0x6,
0x0,0x8,0x0,0x9,0x0,0x11,0x0,0x10,0x0,0x1c,0x0,0x17,0x0,0x21,0x0,0x1a,
0x0,0x1c,0x0,0x1c,0x0,0x17,0x0,0x20,0x0,0x16,0x0,0x20,0x0,0x17,0x0,0x1c,
0x0,0x19,0x0,0x1a,0x0,0x1e,0x0,0x1b,0x0,0x21,0x0,0x1e,0x0,0x23,0x0,0x1e,
0x0,0x23,0x0,0x19,0x0,0x1a,0x0,0x14,0x0,0xb,0x0,0xe,0x0,0xfc,0xff,0x6,
0x0,0xf2,0xff,0xfd,0xff,0xf0,0xff,0xf3,0xff,0xf6,0xff,0xed,0xff,0x0,0x0,0xf0,
0xff,0xb,0x0,0xf9,0xff,0x13,0x0,0x0,0x0,0x11,0x0,0x5,0x0,0x6,0x0,0x5,
0x0,0xf8,0xff,0xfd,0xff,0xee,0xff,0xf6,0xff,0xeb,0xff,0xf7,0xff,0xee,0xff,0xfc,
0xff,0xf7,0xff,0xfe,0xff,0x2,0x0,0xfd,0xff,0xa,0x0,0xfd,0xff,0xe,0x0,0x1,
0x0,0x10,0x0,0x9,0x0,0x11,0x0,0x13,0x0,0x11,0x0,0x1a,0x0,0x10,0x0,0x18,
0x0,0xf,0x0,0x11,0x0,0xe,0x0,0xa,0x0,0xc,0x0,0x7,0x0,0xd,0x0,0xa,
0x0,0x17,0x0,0xd,0x0,0x1e,0x0,0x12,0x0,0x1a,0x0,0x15,0x0,0x10,0x0,0xd,
0x0,0x4,0x0,0x2,0x0,0xff,0xff,0xfe,0xff,0x5,0x0,0x0,0x0,0xf,0x0,0x1,
0x0,0x13,0x0,0x3,0x0,0x10,0x0,0x8,0x0,0x7,0x0,0xb,0x0,0x2,0x0,0xb,
0x0,0x4,0x0,0x6,0x0,0x8,0x0,0x4,0x0,0x6,0x0,0x3,0x0,0xfd,0xff,0xfc,
0xff,0xf3,0xff,0xf5,0xff,0xf4,0xff,0xf8,0xff,0x0,0x0,0xff,0xff,0xb,0x0,0x3,
0x0,0x10,0x0,0x6,0x0,0xa,0x0,0x5,0x0,0xfd,0xff,0xfe,0xff,0xf4,0xff,0xf9,
0xff,0xf2,0xff,0xf5,0xff,0xef,0xff,0xf5,0xff,0xf1,0xff,0xf4,0xff,0xf6,0xff,0xf2,
0xff,0xfb,0xff,0xf6,0xff,0xff,0xff,0xfe,0xff,0x4,0x0,0x3,0x0,0x7,0x0,0x8,
0x0,0x5,0x0,0xc,0x0,0xfe,0xff,0x6,0x0,0xf8,0xff,0xf9,0xff,0xf6,0xff,0xee,
0xff,0xf2,0xff,0xe9,0xff,0xf4,0xff,0xeb,0xff,0xfe,0xff,0xf2,0xff,0x8,0x0,0xfd,
0xff,0xa,0x0,0x3,0x0,0x6,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0xff,0xff,0xff,
0xff,0xf9,0xff,0xfb,0xff,0xf2,0xff,0xf3,0xff,0xee,0xff,0xeb,0xff,0xf0,0xff,0xe8,
0xff,0xf5,0xff,0xef,0xff,0xf9,0xff,0xf5,0xff,0xfc,0xff,0xf5,0xff,0xfe,0xff,0xf5,
0xff,0xfe,0xff,0xf7,0xff,0xfc,0xff,0xfd,0xff,0xfc,0xff,0x8,0x0,0xfa,0xff,0xa,
0x0,0xf6,0xff,0x2,0x0,0xf6,0xff,0xf8,0xff,0xf4,0xff,0xf1,0xff,0xf3,0xff,0xf2,
0xff,0xf7,0xff,0xf9,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xfc,0xff,0xfc,0xff,0xfd,
0xff,0xf3,0xff,0xfb,0xff,0xe5,0xff,0xf4,0xff,0xde,0xff,0xed,0xff,0xdf,0xff,0xe7,
0xff,0xe4,0xff,0xe6,0xff,0xea,0xff,0xe6,0xff,0xeb,0xff,0xe3,0xff,0xe6,0xff,0xdf,
0xff,0xe0,0xff,0xdc,0xff,0xe0,0xff,0xdd,0xff,0xe5,0xff,0xe1,0xff,0xe9,0xff,0xe4,
0xff,0xea,0xff,0xe3,0xff,0xe4,0xff,0xdc,0xff,0xd8,0xff,0xd1,0xff,0xd0,0xff,0xca,
0xff,0xd4,0xff,0xca,0xff,0xdf,0xff,0xd1,0xff,0xeb,0xff,0xe1,0xff,0xf5,0xff,0xf4,
0xff,0xfa,0xff,0xff,0xff,0xf9,0xff,0x0,0x0,0xf3,0xff,0xf9,0xff,0xed,0xff,0xf5,
0xff,0xea,0xff,0xf4,0xff,0xeb,0xff,0xf1,0xff,0xeb,0xff,0xe9,0xff,0xe7,0xff,0xdf,
0xff,0xdb,0xff,0xd6,0xff,0xd1,0xff,0xd6,0xff,0xcf,0xff,0xda,0xff,0xd3,0xff,0xdb,
0xff,0xd9,0xff,0xdd,0xff,0xe1,0xff,0xe0,0xff,0xe5,0xff,0xdf,0xff,0xe4,0xff,0xde,
0xff,0xe3,0xff,0xde,0xff,0xdf,0xff,0xde,0xff,0xd8,0xff,0xe0,0xff,0xd3,0xff,0xe2,
0xff,0xd7,0xff,0xe2,0xff,0xdf,0xff,0xe3,0xff,0xe9,0xff,0xe5,0xff,0xf1,0xff,0xe7,
0xff,0xf3,0xff,0xec,0xff,0xf2,0xff,0xee,0xff,0xef,0xff,0xe9,0xff,0xe7,0xff,0xe0,
0xff,0xdf,0xff,0xda,0xff,0xdc,0xff,0xda,0xff,0xdc,0xff,0xdc,0xff,0xdc,0xff,0xdd,
0xff,0xdf,0xff,0xde,0xff,0xe5,0xff,0xe1,0xff,0xe9,0xff,0xe4,0xff,0xeb,0xff,0xe5,
0xff,0xed,0xff,0xe9,0xff,0xec,0xff,0xe9,0xff,0xe6,0xff,0xe4,0xff,0xe4,0xff,0xe1,
0xff,0xe3,0xff,0xe3,0xff,0xde,0xff,0xe7,0xff,0xd8,0xff,0xe5,0xff,0xd2,0xff,0xe2,
0xff,0xd1,0xff,0xe2,0xff,0xd6,0xff,0xe3,0xff,0xde,0xff,0xe3,0xff,0xe7,0xff,0xe4,
0xff,0xed,0xff,0xe6,0xff,0xea,0xff,0xe5,0xff,0xdd,0xff,0xe2,0xff,0xd4,0xff,0xe1,
0xff,0xd5,0xff,0xe6,0xff,0xe0,0xff,0xec,0xff,0xec,0xff,0xed,0xff,0xf3,0xff,0xeb,
0xff,0xf5,0xff,0xe7,0xff,0xf0,0xff,0xe0,0xff,0xe4,0xff,0xdb,0xff,0xd7,0xff,0xd8,
0xff,0xce,0xff,0xd3,0xff,0xc8,0xff,0xc8,0xff,0xc1,0xff,0xba,0xff,0xb9,0xff,0xb4,
0xff,0xb5,0xff,0xb7,0xff,0xba,0xff,0xbb,0xff,0xc3,0xff,0xc1,0xff,0xcf,0xff,0xcb,
0xff,0xd9,0xff,0xd2,0xff,0xdd,0xff,0xd3,0xff,0xdb,0xff,0xd5,0xff,0xd9,0xff,0xd5,
0xff,0xda,0xff,0xda,0xff,0xdd,0xff,0xe8,0xff,0xe2,0xff,0xef,0xff,0xe1,0xff,0xf1,
0xff,0xdb,0xff,0xf3,0xff,0xd9,0xff,0xee,0xff,0xd9,0xff,0xe9,0xff,0xd7,0xff,0xe7,
0xff,0xd3,0xff,0xe1,0xff,0xd1,0xff,0xd4,0xff,0xce,0xff,0xc8,0xff,0xc7,0xff,0xc6,
0xff,0xbf,0xff,0xca,0xff,0xbb,0xff,0xcc,0xff,0xbc,0xff,0xc8,0xff,0xc1,0xff,0xc7,
0xff,0xc5,0xff,0xcb,0xff,0xc6,0xff,0xca,0xff,0xc5,0xff,0xc1,0xff,0xc2,0xff,0xb7,
0xff,0xbb,0xff,0xaf,0xff,0xaf,0xff,0xa4,0xff,0xa5,0xff,0x99,0xff,0x9e,0xff,0x98,
0xff,0x9d,0xff,0xa0,0xff,0xa5,0xff,0xab,0xff,0xb0,0xff,0xb5,0xff,0xb5,0xff,0xb9,
0xff,0xb8,0xff,0xb6,0xff,0xbd,0xff,0xb4,0xff,0xc5,0xff,0xbc,0xff,0xcd,0xff,0xc9,
0xff,0xcf,0xff,0xd6,0xff,0xce,0xff,0xe2,0xff,0xd2,0xff,0xec,0xff,0xdb,0xff,0xec,
0xff,0xde,0xff,0xe6,0xff,0xd8,0xff,0xe0,0xff,0xd0,0xff,0xd9,0xff,0xca,0xff,0xcf,
0xff,0xc5,0xff,0xc7,0xff,0xc1,0xff,0xc3,0xff,0xbc,0xff,0xc3,0xff,0xb9,0xff,0xc0,
0xff,0xb8,0xff,0xb5,0xff,0xb4,0xff,0xa5,0xff,0xaf,0xff,0x9b,0xff,0xa9,0xff,0x9b,
0xff,0xa1,0xff,0x9f,0xff,0xa1,0xff,0xa6,0xff,0xaa,0xff,0xb0,0xff,0xb2,0xff,0xb9,
0xff,0xba,0xff,0xc2,0xff,0xc4,0xff,0xcd,0xff,0xcd,0xff,0xd4,0xff,0xd1,0xff,0xd0,
0xff,0xd1,0xff,0xc9,0xff,0xce,0xff,0xc5,0xff,0xc6,0xff,0xbf,0xff,0xbb,0xff,0xba,
0xff,0xb4,0xff,0xbd,0xff,0xbc,0xff,0xc8,0xff,0xcd,0xff,0xd7,0xff,0xda,0xff,0xe3,
0xff,0xda,0xff,0xdf,0xff,0xcb,0xff,0xca,0xff,0xbd,0xff,0xb7,0xff,0xba,0xff,0xb6,
0xff,0xc2,0xff,0xc3,0xff,0xd2,0xff,0xd5,0xff,0xe2,0xff,0xe4,0xff,0xe9,0xff,0xe8,
0xff,0xe8,0xff,0xe1,0xff,0xe0,0xff,0xda,0xff,0xd8,0xff,0xd2,0xff,0xd8,0xff,0xcd,
0xff,0xde,0xff,0xd5,0xff,0xdf,0xff,0xd8,0xff,0xd2,0xff,0xcd,0xff,0xbb,0xff,0xc6,
0xff,0xae,0xff,0xc9,0xff,0xb3,0xff,0xce,0xff,0xbf,0xff,0xd0,0xff,0xc6,0xff,0xce,
0xff,0xc5,0xff,0xc9,0xff,0xc0,0xff,0xc7,0xff,0xc1,0xff,0xc5,0xff,0xc7,0xff,0xc4,
0xff,0xcc,0xff,0xc6,0xff,0xcf,0xff,0xc7,0xff,0xd4,0xff,0xc8,0xff,0xd3,0xff,0xc8,
0xff,0xc9,0xff,0xc2,0xff,0xc2,0xff,0xbf,0xff,0xc2,0xff,0xc1,0xff,0xc4,0xff,0xc6,
0xff,0xc8,0xff,0xcd,0xff,0xd1,0xff,0xd4,0xff,0xd6,0xff,0xd4,0xff,0xdd,0xff,0xd7,
0xff,0xe8,0xff,0xe2,0xff,0xf0,0xff,0xef,0xff,0xf6,0xff,0xf6,0xff,0xfa,0xff,0xf7,
0xff,0xfb,0xff,0xf5,0xff,0xf9,0xff,0xf2,0xff,0xf4,0xff,0xef,0xff,0xec,0xff,0xef,
0xff,0xec,0xff,0xef,0xff,0xf0,0xff,0xf2,0xff,0xef,0xff,0xf6,0xff,0xed,0xff,0xf4,
0xff,0xe9,0xff,0xeb,0xff,0xe1,0xff,0xdf,0xff,0xd7,0xff,0xd5,0xff,0xcd,0xff,0xcf,
0xff,0xcc,0xff,0xce,0xff,0xd4,0xff,0xd1,0xff,0xdd,0xff,0xd8,0xff,0xe3,0xff,0xde,
0xff,0xe0,0xff,0xdd,0xff,0xd3,0xff,0xd4,0xff,0xc7,0xff,0xcb,0xff,0xc1,0xff,0xc3,
0xff,0xc1,0xff,0xc1,0xff,0xca,0xff,0xce,0xff,0xdf,0xff,0xe5,0xff,0xf8,0xff,0xf9,
0xff,0x4,0x0,0x1,0x0,0xff,0xff,0x2,0x0,0xf8,0xff,0x1,0x0,0xf0,0xff,0xfa,
0xff,0xe4,0xff,0xeb,0xff,0xdd,0xff,0xdd,0xff,0xd9,0xff,0xd4,0xff,0xd5,0xff,0xcf,
0xff,0xd9,0xff,0xd2,0xff,0xe1,0xff,0xde,0xff,0xe5,0xff,0xe7,0xff,0xed,0xff,0xed,
0xff,0xf3,0xff,0xf2,0xff,0xf2,0xff,0xf7,0xff,0xed,0xff,0xf9,0xff,0xe6,0xff,0xf6,
0xff,0xe3,0xff,0xed,0xff,0xe7,0xff,0xe6,0xff,0xea,0xff,0xe8,0xff,0xea,0xff,0xee,
0xff,0xed,0xff,0xf2,0xff,0xf5,0xff,0xf6,0xff,0xfb,0xff,0xfb,0xff,0xf9,0xff,0xf8,
0xff,0xef,0xff,0xf0,0xff,0xe2,0xff,0xea,0xff,0xd7,0xff,0xe2,0xff,0xd3,0xff,0xd9,
0xff,0xd5,0xff,0xd6,0xff,0xdc,0xff,0xd8,0xff,0xe8,0xff,0xdb,0xff,0xf4,0xff,0xe5,
0xff,0xff,0xff,0xf6,0xff,0x2,0x0,0x7,0x0,0xf9,0xff,0xc,0x0,0xf3,0xff,0x0,
0x0,0xed,0xff,0xeb,0xff,0xd9,0xff,0xd5,0xff,0xc8,0xff,0xc2,0xff,0xc6,0xff,0xbb,
0xff,0xcf,0xff,0xc9,0xff,0xe3,0xff,0xe3,0xff,0xfa,0xff,0xf9,0xff,0x1,0x0,0x6,
0x0,0xfa,0xff,0x6,0x0,0xf0,0xff,0xfd,0xff,0xeb,0xff,0xf3,0xff,0xee,0xff,0xf0,
0xff,0xf0,0xff,0xf2,0xff,0xf1,0xff,0xf4,0xff,0xf4,0xff,0xf1,0xff,0xf7,0xff,0xe7,
0xff,0xf3,0xff,0xe3,0xff,0xf0,0xff,0xec,0xff,0xf6,0xff,0xf8,0xff,0xff,0xff,0x2,
0x0,0xfb,0xff,0x1,0x0,0xec,0xff,0xee,0xff,0xdd,0xff,0xd4,0xff,0xd2,0xff,0xc7,
0xff,0xd4,0xff,0xcc,0xff,0xe5,0xff,0xe3,0xff,0xfd,0xff,0xfe,0xff,0xc,0x0,0x6,
0x0,0x8,0x0,0xf9,0xff,0xf1,0xff,0xe4,0xff,0xd7,0xff,0xd0,0xff,0xcb,0xff,0xc3,
0xff,0xce,0xff,0xc3,0xff,0xd6,0xff,0xd4,0xff,0xe1,0xff,0xeb,0xff,0xed,0xff,0xf8,
0xff,0xf1,0xff,0xf2,0xff,0xea,0xff,0xe4,0xff,0xe2,0xff,0xde,0xff,0xdb,0xff,0xde,
0xff,0xdb,0xff,0xe0,0xff,0xe2,0xff,0xe6,0xff,0xe2,0xff,0xf0,0xff,0xe0,0xff,0xfb,
0xff,0xeb,0xff,0x8,0x0,0xfb,0xff,0x12,0x0,0x6,0x0,0xd,0x0,0x9,0x0,0xfc,
0xff,0x3,0x0,0xe8,0xff,0xf5,0xff,0xd9,0xff,0xe5,0xff,0xd3,0xff,0xd6,0xff,0xd2,
0xff,0xd1,0xff,0xd5,0xff,0xd7,0xff,0xde,0xff,0xe4,0xff,0xe5,0xff,0xef,0xff,0xe6,
0xff,0xee,0xff,0xe2,0xff,0xe3,0xff,0xd4,0xff,0xd9,0xff,0xc6,0xff,0xd1,0xff,0xc2,
0xff,0xcc,0xff,0xc3,0xff,0xc9,0xff,0xc4,0xff,0xc7,0xff,0xce,0xff,0xcf,0xff,0xdc,
0xff,0xdf,0xff,0xe6,0xff,0xed,0xff,0xe7,0xff,0xf5,0xff,0xe4,0xff,0xf4,0xff,0xe6,
0xff,0xeb,0xff,0xe9,0xff,0xdd,0xff,0xe3,0xff,0xd0,0xff,0xda,0xff,0xcb,0xff,0xd9,
0xff,0xd5,0xff,0xe0,0xff,0xe6,0xff,0xe9,0xff,0xea,0xff,0xe8,0xff,0xdd,0xff,0xdc,
0xff,0xc8,0xff,0xd2,0xff,0xbf,0xff,0xca,0xff,0xc9,0xff,0xc9,0xff,0xdb,0xff,0xd5,
0xff,0xe9,0xff,0xe7,0xff,0xee,0xff,0xf0,0xff,0xea,0xff,0xed,0xff,0xe5,0xff,0xe8,
0xff,0xe5,0xff,0xe7,0xff,0xe8,0xff,0xe8,0xff,0xef,0xff,0xec,0xff,0xfc,0xff,0xf5,
0xff,0x5,0x0,0xfc,0xff,0xff,0xff,0xfb,0xff,0xf8,0xff,0xfc,0xff,0xfa,0xff,0xfe,
0xff,0xf7,0xff,0xf9,0xff,0xed,0xff,0xea,0xff,0xe1,0xff,0xd7,0xff,0xd3,0xff,0xce,
0xff,0xcd,0xff,0xcf,0xff,0xd5,0xff,0xd0,0xff,0xe1,0xff,0xd8,0xff,0xea,0xff,0xe5,
0xff,0xee,0xff,0xe8,0xff,0xec,0xff,0xe2,0xff,0xdf,0xff,0xd9,0xff,0xc7,0xff,0xc8,
0xff,0xac,0xff,0xb8,0xff,0xa2,0xff,0xb2,0xff,0xae,0xff,0xb5,0xff,0xc3,0xff,0xbd,
0xff,0xd6,0xff,0xc8,0xff,0xe0,0xff,0xd3,0xff,0xdf,0xff,0xdd,0xff,0xd7,0xff,0xe3,
0xff,0xd7,0xff,0xed,0xff,0xe3,0xff,0xfc,0xff,0xed,0xff,0x2,0x0,0xf4,0xff,0xff,
0xff,0x0,0x0,0xfb,0xff,0x9,0x0,0xf9,0xff,0x11,0x0,0x1,0x0,0x1a,0x0,0x10,
0x0,0x17,0x0,0x16,0x0,0xfc,0xff,0xfd,0xff,0xc9,0xff,0xc4,0xff,0xa2,0xff,0x98,
0xff,0xb7,0xff,0xb3,0xff,0xf7,0xff,0xfa,0xff,0x21,0x0,0x2a,0x0,0x1e,0x0,0x2b,
0x0,0x7,0x0,0xa,0x0,0xe3,0xff,0xd8,0xff,0xb7,0xff,0xab,0xff,0x97,0xff,0x95,
0xff,0x96,0xff,0x9f,0xff,0xb3,0xff,0xc1,0xff,0xe4,0xff,0xf0,0xff,0x12,0x0,0x1c,
0x0,0x25,0x0,0x34,0x0,0x1e,0x0,0x2b,0x0,0x3,0x0,0x6,0x0,0xd9,0xff,0xd2,
0xff,0xb2,0xff,0xa1,0xff,0x9c,0xff,0x87,0xff,0x9b,0xff,0x91,0xff,0xb5,0xff,0xb8,
0xff,0xdd,0xff,0xeb,0xff,0xfe,0xff,0x11,0x0,0x13,0x0,0x1f,0x0,0x1b,0x0,0x1b,
0x0,0xe,0x0,0x8,0x0,0xe7,0xff,0xdf,0xff,0xac,0xff,0xa4,0xff,0x70,0xff,0x66,
0xff,0x4b,0xff,0x43,0xff,0x62,0xff,0x5f,0xff,0xc8,0xff,0xc5,0xff,0x49,0x0,0x45,
0x0,0x88,0x0,0x8a,0x0,0x72,0x0,0x78,0x0,0x2f,0x0,0x38,0x0,0xde,0xff,0xea,
0xff,0x92,0xff,0x9d,0xff,0x6e,0xff,0x78,0xff,0x8f,0xff,0x90,0xff,0xe9,0xff,0xda,
0xff,0x49,0x0,0x33,0x0,0x7d,0x0,0x70,0x0,0x72,0x0,0x74,0x0,0x33,0x0,0x42,
0x0,0xdb,0xff,0xec,0xff,0x85,0xff,0x8c,0xff,0x4a,0xff,0x48,0xff,0x43,0xff,0x36,
0xff,0x70,0xff,0x5c,0xff,0xb2,0xff,0xa2,0xff,0xea,0xff,0xe8,0xff,0xb,0x0,0x14,
0x0,0x11,0x0,0x1c,0x0,0xf8,0xff,0xfe,0xff,0xb8,0xff,0xbe,0xff,0x61,0xff,0x6c,
0xff,0x21,0xff,0x2b,0xff,0x2e,0xff,0x31,0xff,0x93,0xff,0x88,0xff,0x11,0x0,0x1,
0x0,0x65,0x0,0x5d,0x0,0x7b,0x0,0x7e,0x0,0x5a,0x0,0x61,0x0,0x11,0x0,0x1f,
0x0,0xbd,0xff,0xd5,0xff,0x82,0xff,0x98,0xff,0x77,0xff,0x7f,0xff,0xa2,0xff,0x9c,
0xff,0xf0,0xff,0xe7,0xff,0x3f,0x0,0x3a,0x0,0x6e,0x0,0x6e,0x0,0x70,0x0,0x6e,
0x0,0x4d,0x0,0x43,0x0,0xc,0x0,0xfd,0xff,0xba,0xff,0xa8,0xff,0x71,0xff,0x61,
0xff,0x54,0xff,0x4c,0xff,0x74,0xff,0x6d,0xff,0xb4,0xff,0xaa,0xff,0xee,0xff,0xe8,
0xff,0x13,0x0,0xe,0x0,0x12,0x0,0x9,0x0,0xe7,0xff,0xdf,0xff,0xae,0xff,0xa8,
0xff,0x74,0xff,0x75,0xff,0x42,0xff,0x4f,0xff,0x39,0xff,0x48,0xff,0x6a,0xff,0x6d,
0xff,0xc1,0xff,0xb9,0xff,0x1a,0x0,0x12,0x0,0x54,0x0,0x4d,0x0,0x64,0x0,0x5a,
0x0,0x52,0x0,0x4b,0x0,0x30,0x0,0x31,0x0,0xb,0x0,0x13,0x0,0xe8,0xff,0xf6,
0xff,0xcc,0xff,0xde,0xff,0xc9,0xff,0xd5,0xff,0xe4,0xff,0xe8,0xff,0xa,0x0,0xc,
0x0,0x20,0x0,0x23,0x0,0x1e,0x0,0x22,0x0,0x13,0x0,0x13,0x0,0xa,0x0,0x7,
0x0,0xf6,0xff,0xf8,0xff,0xd2,0xff,0xd6,0xff,0xb0,0xff,0xaa,0xff,0x95,0xff,0x89,
0xff,0x80,0xff,0x79,0xff,0x7d,0xff,0x82,0xff,0x96,0xff,0xa2,0xff,0xbe,0xff,0xc5,
0xff,0xe3,0xff,0xdf,0xff,0xfc,0xff,0xf3,0xff,0xfe,0xff,0xf4,0xff,0xdf,0xff,0xda,
0xff,0xb9,0xff,0xb8,0xff,0xaf,0xff,0xa9,0xff,0xab,0xff,0xa3,0xff,0x81,0xff,0x80,
0xff,0x3d,0xff,0x45,0xff,0x31,0xff,0x3b,0xff,0xb6,0xff,0xbc,0xff,0xd1,0x0,0xd8,
0x0,0xe1,0x1,0xed,0x1,0xf2,0x1,0xfd,0x1,0xcd,0x0,0xcf,0x0,0x4b,0xff,0x44,
0xff,0x66,0xfe,0x5f,0xfe,0x6d,0xfe,0x6f,0xfe,0x1b,0xff,0x22,0xff,0xf7,0xff,0x4,
0x0,0xa2,0x0,0xb7,0x0,0xe6,0x0,0xf2,0x0,0xaa,0x0,0xa8,0x0,0x26,0x0,0x26,
0x0,0xb7,0xff,0xba,0xff,0x72,0xff,0x6d,0xff,0x2d,0xff,0x28,0xff,0xee,0xfe,0xec,
0xfe,0xf3,0xfe,0xef,0xfe,0x6a,0xff,0x62,0xff,0x25,0x0,0x1a,0x0,0xaf,0x0,0xa7,
0x0,0xb8,0x0,0xbc,0x0,0x54,0x0,0x5a,0x0,0xcf,0xff,0xcb,0xff,0x68,0xff,0x60,
0xff,0x38,0xff,0x37,0xff,0x3e,0xff,0x49,0xff,0x76,0xff,0x83,0xff,0xd4,0xff,0xd4,
0xff,0x35,0x0,0x28,0x0,0x69,0x0,0x5e,0x0,0x5f,0x0,0x5e,0x0,0x28,0x0,0x2f,
0x0,0xd8,0xff,0xe7,0xff,0x8b,0xff,0xa0,0xff,0x5f,0xff,0x73,0xff,0x64,0xff,0x6e,
0xff,0x9d,0xff,0xa1,0xff,0xfb,0xff,0xfe,0xff,0x4a,0x0,0x4b,0x0,0x57,0x0,0x4e,
0x0,0x19,0x0,0x6,0x0,0xb5,0xff,0x9f,0xff,0x66,0xff,0x56,0xff,0x4c,0xff,0x4a,
0xff,0x65,0xff,0x6e,0xff,0xa5,0xff,0xb3,0xff,0xf3,0xff,0x3,0x0,0x31,0x0,0x3d,
0x0,0x3e,0x0,0x43,0x0,0x14,0x0,0xc,0x0,0xcc,0xff,0xbc,0xff,0x86,0xff,0x7c,
0xff,0x57,0xff,0x59,0xff,0x50,0xff,0x5b,0xff,0x7b,0xff,0x88,0xff,0xcf,0xff,0xd9,
0xff,0x3e,0x0,0x42,0x0,0x9f,0x0,0xa5,0x0,0xb2,0x0,0xb9,0x0,0x55,0x0,0x55,
0x0,0xba,0xff,0xb4,0xff,0x3b,0xff,0x36,0xff,0xe,0xff,0xc,0xff,0x2c,0xff,0x2c,
0xff,0x80,0xff,0x7b,0xff,0xee,0xff,0xeb,0xff,0x54,0x0,0x58,0x0,0x85,0x0,0x85,
0x0,0x5e,0x0,0x55,0x0,0xf3,0xff,0xec,0xff,0x83,0xff,0x81,0xff,0x42,0xff,0x3d,
0xff,0x41,0xff,0x34,0xff,0x70,0xff,0x5d,0xff,0xb0,0xff,0xa3,0xff,0xf5,0xff,0xf6,
0xff,0x36,0x0,0x3d,0x0,0x50,0x0,0x51,0x0,0x27,0x0,0x1f,0x0,0xc8,0xff,0xbe,
0xff,0x6a,0xff,0x69,0xff,0x48,0xff,0x4f,0xff,0x6f,0xff,0x74,0xff,0xc0,0xff,0xbe,
0xff,0x14,0x0,0xe,0x0,0x48,0x0,0x44,0x0,0x49,0x0,0x45,0x0,0x23,0x0,0x21,
0x0,0xf2,0xff,0xfc,0xff,0xc5,0xff,0xda,0xff,0xa5,0xff,0xaf,0xff,0x9b,0xff,0x91,
0xff,0xa0,0xff,0x93,0xff,0xae,0xff,0xad,0xff,0xc6,0xff,0xcf,0xff,0xe4,0xff,0xed,
0xff,0xf5,0xff,0xf5,0xff,0xe7,0xff,0xdc,0xff,0xb2,0xff,0xa5,0xff,0x71,0xff,0x6c,
0xff,0x52,0xff,0x53,0xff,0x78,0xff,0x77,0xff,0xe5,0xff,0xdf,0xff,0x5b,0x0,0x50,
0x0,0x7f,0x0,0x75,0x0,0x4d,0x0,0x47,0x0,0x15,0x0,0xc,0x0,0xf3,0xff,0xe9,
0xff,0xd3,0xff,0xcc,0xff,0xc0,0xff,0xb8,0xff,0xcd,0xff,0xc6,0xff,0xf5,0xff,0xf6,
0xff,0x1b,0x0,0x20,0x0,0x20,0x0,0x24,0x0,0x1,0x0,0x6,0x0,0xd6,0xff,0xd9,
0xff,0xb7,0xff,0xb0,0xff,0xa0,0xff,0x92,0xff,0x8d,0xff,0x81,0xff,0x86,0xff,0x80,
0xff,0x97,0xff,0x9a,0xff,0xbd,0xff,0xc8,0xff,0xdf,0xff,0xed,0xff,0xdf,0xff,0xe8,
0xff,0xbb,0xff,0xb8,0xff,0x9b,0xff,0x8f,0xff,0xa3,0xff,0x9b,0xff,0xcd,0xff,0xcc,
0xff,0xea,0xff,0xeb,0xff,0xe7,0xff,0xec,0xff,0xe0,0xff,0xea,0xff,0xe7,0xff,0xfb,
0xff,0xf2,0xff,0xe,0x0,0xf5,0xff,0x5,0x0,0xea,0xff,0xed,0xff,0xd7,0xff,0xe3,
0xff,0xd2,0xff,0xeb,0xff,0xee,0xff,0x1,0x0,0x1d,0x0,0x1c,0x0,0x3d,0x0,0x2c,
0x0,0x3b,0x0,0x27,0x0,0x19,0x0,0x8,0x0,0xde,0xff,0xce,0xff,0xa1,0xff,0x9e,
0xff,0x89,0xff,0x99,0xff,0xa0,0xff,0xb1,0xff,0xc3,0xff,0xc1,0xff,0xd8,0xff,0xc2,
0xff,0xe3,0xff,0xcb,0xff,0xf0,0xff,0xe7,0xff,0xf0,0xff,0xfb,0xff,0xd2,0xff,0xe6,
0xff,0x99,0xff,0xa4,0xff,0x58,0xff,0x55,0xff,0x37,0xff,0x32,0xff,0x5a,0xff,0x5f,
0xff,0xb3,0xff,0xbd,0xff,0xf,0x0,0x15,0x0,0x48,0x0,0x46,0x0,0x59,0x0,0x50,
0x0,0x4d,0x0,0x3d,0x0,0x1d,0x0,0xf,0x0,0xca,0xff,0xcc,0xff,0x81,0xff,0x96,
0xff,0x70,0xff,0x82,0xff,0x88,0xff,0x85,0xff,0xad,0xff,0x9a,0xff,0xdc,0xff,0xcc,
0xff,0xb,0x0,0x14,0x0,0x27,0x0,0x41,0x0,0x1d,0x0,0x2c,0x0,0xe8,0xff,0xe7,
0xff,0x9f,0xff,0x98,0xff,0x65,0xff,0x5f,0xff,0x60,0xff,0x5d,0xff,0x96,0xff,0x90,
0xff,0xe1,0xff,0xd1,0xff,0x19,0x0,0xa,0x0,0x3d,0x0,0x38,0x0,0x47,0x0,0x4c,
0x0,0x20,0x0,0x2d,0x0,0xcf,0xff,0xdc,0xff,0x84,0xff,0x89,0xff,0x63,0xff,0x62,
0xff,0x73,0xff,0x6a,0xff,0xa4,0xff,0x96,0xff,0xd7,0xff,0xd1,0xff,0xf1,0xff,0xf3,
0xff,0xef,0xff,0xf1,0xff,0xdc,0xff,0xdf,0xff,0xc0,0xff,0xc2,0xff,0x9e,0xff,0x9d,
0xff,0x85,0xff,0x85,0xff,0x93,0xff,0x91,0xff,0xcd,0xff,0xc8,0xff,0x12,0x0,0xf,
0x0,0x37,0x0,0x3a,0x0,0x2b,0x0,0x39,0x0,0xff,0xff,0x13,0x0,0xd0,0xff,0xda,
0xff,0xb0,0xff,0xac,0xff,0x9e,0xff,0x9f,0xff,0xa3,0xff,0xad,0xff,0xc5,0xff,0xd1,
0xff,0xfa,0xff,0x2,0x0,0x25,0x0,0x27,0x0,0x25,0x0,0x1f,0x0,0xfe,0xff,0xf5,
0xff,0xd8,0xff,0xd0,0xff,0xc5,0xff,0xbf,0xff,0xb9,0xff,0xaf,0xff,0xaf,0xff,0x9d,
0xff,0xa8,0xff,0x98,0xff,0xab,0xff,0xa5,0xff,0xc2,0xff,0xc3,0xff,0xdf,0xff,0xe3,
0xff,0xea,0xff,0xee,0xff,0xd3,0xff,0xd1,0xff,0xab,0xff,0x9b,0xff,0x89,0xff,0x77,
0xff,0x82,0xff,0x7e,0xff,0x91,0xff,0xa1,0xff,0xa6,0xff,0xc3,0xff,0xba,0xff,0xd6,
0xff,0xc7,0xff,0xd4,0xff,0xc5,0xff,0xc3,0xff,0xc3,0xff,0xbe,0xff,0xd4,0xff,0xd3,
0xff,0xe9,0xff,0xf0,0xff,0xf3,0xff,0xff,0xff,0xf1,0xff,0xfe,0xff,0xe4,0xff,0xf1,
0xff,0xd7,0xff,0xde,0xff,0xd8,0xff,0xd3,0xff,0xe5,0xff,0xdc,0xff,0xf7,0xff,0xed,
0xff,0xfe,0xff,0xf5,0xff,0xeb,0xff,0xe8,0xff,0xcb,0xff,0xc9,0xff,0xaf,0xff,0xa7,
0xff,0x9f,0xff,0x97,0xff,0x9f,0xff,0x9d,0xff,0xa8,0xff,0xab,0xff,0xb3,0xff,0xb4,
0xff,0xc1,0xff,0xb7,0xff,0xcb,0xff,0xba,0xff,0xc4,0xff,0xbb,0xff,0xb3,0xff,0xb2,
0xff,0xab,0xff,0xad,0xff,0xbb,0xff,0xbe,0xff,0xd3,0xff,0xda,0xff,0xd8,0xff,0xe8,
0xff,0xc4,0xff,0xe1,0xff,0xb0,0xff,0xd0,0xff,0xb4,0xff,0xc4,0xff,0xc7,0xff,0xc2,
0xff,0xcd,0xff,0xc0,0xff,0xbb,0xff,0xb5,0xff,0xa1,0xff,0xa8,0xff,0x96,0xff,0xae,
0xff,0xaf,0xff,0xcf,0xff,0xdf,0xff,0xfa,0xff,0xff,0xff,0xf,0x0,0xfa,0xff,0xff,
0xff,0xde,0xff,0xd9,0xff,0xbd,0xff,0xb4,0xff,0xaf,0xff,0xa1,0xff,0xb2,0xff,0xa0,
0xff,0xbd,0xff,0xab,0xff,0xd4,0xff,0xc0,0xff,0xe9,0xff,0xd7,0xff,0xe8,0xff,0xe1,
0xff,0xd6,0xff,0xdb,0xff,0xbf,0xff,0xc6,0xff,0xa5,0xff,0xa4,0xff,0x8d,0xff,0x80,
0xff,0x85,0xff,0x78,0xff,0xa0,0xff,0x98,0xff,0xd5,0xff,0xcf,0xff,0x0,0x0,0xff,
0xff,0xa,0x0,0xe,0x0,0xf6,0xff,0xfd,0xff,0xd4,0xff,0xe1,0xff,0xbb,0xff,0xd2,
0xff,0xb5,0xff,0xd3,0xff,0xb7,0xff,0xce,0xff,0xb9,0xff,0xb8,0xff,0xc1,0xff,0xa7,
0xff,0xca,0xff,0xac,0xff,0xc8,0xff,0xbc,0xff,0xb8,0xff,0xc0,0xff,0xa9,0xff,0xb5,
0xff,0xa0,0xff,0xa8,0xff,0x96,0xff,0x97,0xff,0x87,0xff,0x82,0xff,0x8d,0xff,0x84,
0xff,0xb7,0xff,0xaa,0xff,0xdf,0xff,0xd5,0xff,0xec,0xff,0xec,0xff,0xf6,0xff,0xf4,
0xff,0x9,0x0,0xfb,0xff,0x14,0x0,0x5,0x0,0xe,0x0,0x4,0x0,0xf7,0xff,0xf3,
0xff,0xd6,0xff,0xda,0xff,0xbe,0xff,0xc3,0xff,0xbd,0xff,0xc3,0xff,0xd0,0xff,0xe0,
0xff,0xf0,0xff,0xfe,0xff,0xa,0x0,0xd,0x0,0xd,0x0,0xa,0x0,0xf4,0xff,0xe9,
0xff,0xc3,0xff,0xb9,0xff,0x95,0xff,0x96,0xff,0x8c,0xff,0x8f,0xff,0xa9,0xff,0xae,
0xff,0xd4,0xff,0xde,0xff,0xf2,0xff,0xf9,0xff,0xf3,0xff,0xf3,0xff,0xdd,0xff,0xd4,
0xff,0xc2,0xff,0xad,0xff,0xae,0xff,0x97,0xff,0xad,0xff,0x99,0xff,0xbc,0xff,0xa8,
0xff,0xcd,0xff,0xbd,0xff,0xd7,0xff,0xd5,0xff,0xd6,0xff,0xe7,0xff,0xcf,0xff,0xef,
0xff,0xd6,0xff,0xef,0xff,0xf2,0xff,0xf4,0xff,0xd,0x0,0x0,0x0,0x12,0x0,0x2,
0x0,0x5,0x0,0xf9,0xff,0xf2,0xff,0xf2,0xff,0xe3,0xff,0xeb,0xff,0xda,0xff,0xe2,
0xff,0xdd,0xff,0xda,0xff,0xec,0xff,0xd8,0xff,0xf7,0xff,0xe0,0xff,0xf1,0xff,0xe4,
0xff,0xe0,0xff,0xde,0xff,0xd5,0xff,0xd9,0xff,0xd7,0xff,0xdc,0xff,0xdd,0xff,0xe1,
0xff,0xdb,0xff,0xdc,0xff,0xc4,0xff,0xc2,0xff,0xa4,0xff,0x9f,0xff,0xa2,0xff,0x99,
0xff,0xd1,0xff,0xcc,0xff,0x9,0x0,0x15,0x0,0x1d,0x0,0x34,0x0,0x3,0x0,0xe,
0x0,0xd4,0xff,0xcf,0xff,0xb7,0xff,0xb3,0xff,0xbd,0xff,0xc5,0xff,0xd8,0xff,0xe8,
0xff,0xec,0xff,0xf8,0xff,0xea,0xff,0xea,0xff,0xd4,0xff,0xcf,0xff,0xbe,0xff,0xb6,
0xff,0xb5,0xff,0xa9,0xff,0xaa,0xff,0xae,0xff,0x9a,0xff,0xb0,0xff,0x8f,0xff,0x9f,
0xff,0x8b,0xff,0x8e,0xff,0x9c,0xff,0x90,0xff,0xc3,0xff,0xa7,0xff,0xe6,0xff,0xd2,
0xff,0xf7,0xff,0xfe,0xff,0xf6,0xff,0xa,0x0,0xe0,0xff,0xf2,0xff,0xc9,0xff,0xcd,
0xff,0xc2,0xff,0xb7,0xff,0xc8,0xff,0xc1,0xff,0xe5,0xff,0xe7,0xff,0x1f,0x0,0x1f,
0x0,0x5c,0x0,0x53,0x0,0x7e,0x0,0x66,0x0,0x73,0x0,0x50,0x0,0x37,0x0,0x20,
0x0,0xe6,0xff,0xea,0xff,0xa0,0xff,0xc1,0xff,0x78,0xff,0xa9,0xff,0x76,0xff,0x9d,
0xff,0x8d,0xff,0x9a,0xff,0xa2,0xff,0x9b,0xff,0xae,0xff,0xa4,0xff,0xb9,0xff,0xba,
0xff,0xbf,0xff,0xcc,0xff,0xbb,0xff,0xc8,0xff,0xad,0xff,0xb6,0xff,0x98,0xff,0x9c,
0xff,0x81,0xff,0x7f,0xff,0x71,0xff,0x6d,0xff,0x73,0xff,0x71,0xff,0x85,0xff,0x81,
0xff,0xa1,0xff,0x96,0xff,0xcd,0xff,0xbb,0xff,0x9,0x0,0xf4,0xff,0x3a,0x0,0x29,
0x0,0x44,0x0,0x3e,0x0,0x28,0x0,0x2d,0x0,0x7,0x0,0xc,0x0,0x5,0x0,0x2,
0x0,0x31,0x0,0x2d,0x0,0x87,0x0,0x84,0x0,0xd2,0x0,0xcd,0x0,0xc8,0x0,0xbf,
0x0,0x62,0x0,0x5a,0x0,0xee,0xff,0xed,0xff,0xb3,0xff,0xb5,0xff,0xa8,0xff,0xad,
0xff,0x95,0xff,0xa0,0xff,0x58,0xff,0x64,0xff,0xfd,0xfe,0x4,0xff,0xb8,0xfe,0xbb,
0xfe,0xca,0xfe,0xcc,0xfe,0x41,0xff,0x42,0xff,0xce,0xff,0xd5,0xff,0x16,0x0,0x28,
0x0,0xf9,0xff,0x10,0x0,0x99,0xff,0xaa,0xff,0x4d,0xff,0x52,0xff,0x63,0xff,0x5b,
0xff,0xcd,0xff,0xbb,0xff,0x28,0x0,0x12,0x0,0x1d,0x0,0xb,0x0,0xb9,0xff,0xb3,
0xff,0x5f,0xff,0x5f,0xff,0x5a,0xff,0x56,0xff,0x9f,0xff,0x99,0xff,0xef,0xff,0xee,
0xff,0x15,0x0,0x11,0x0,0xfd,0xff,0xf5,0xff,0xc9,0xff,0xc5,0xff,0xae,0xff,0xad,
0xff,0xce,0xff,0xc5,0xff,0x13,0x0,0x6,0x0,0x45,0x0,0x3f,0x0,0x3f,0x0,0x48,
0x0,0xc,0x0,0x1e,0x0,0xd0,0xff,0xde,0xff,0xb4,0xff,0xb6,0xff,0xbb,0xff,0xb4,
0xff,0xc3,0xff,0xb9,0xff,0xaf,0xff,0xa6,0xff,0x90,0xff,0x88,0xff,0x80,0xff,0x7a,
0xff,0x85,0xff,0x7e,0xff,0x88,0xff,0x8c,0xff,0x87,0xff,0xa0,0xff,0x98,0xff,0xb6,
0xff,0xbe,0xff,0xcc,0xff,0xe5,0xff,0xde,0xff,0xf4,0xff,0xe5,0xff,0xe2,0xff,0xdb,
0xff,0xc5,0xff,0xc3,0xff,0xb8,0xff,0xad,0xff,0xb3,0xff,0xa4,0xff,0xa2,0xff,0x9e,
0xff,0x8c,0xff,0x94,0xff,0x84,0xff,0x90,0xff,0x8c,0xff,0x96,0xff,0x8e,0xff,0x95,
0xff,0x83,0xff,0x87,0xff,0x77,0xff,0x75,0xff,0x6c,0xff,0x67,0xff,0x65,0xff,0x61,
0xff,0x6f,0xff,0x6d,0xff,0x8c,0xff,0x8a,0xff,0xac,0xff,0xa3,0xff,0xba,0xff,0xae,
0xff,0xb2,0xff,0xb3,0xff,0xa2,0xff,0xba,0xff,0x9e,0xff,0xc6,0xff,0xbb,0xff,0xde,
0xff,0xf9,0xff,0x4,0x0,0x2c,0x0,0x20,0x0,0x2d,0x0,0x1a,0x0,0xa,0x0,0xfe,
0xff,0xe8,0xff,0xe9,0xff,0xd8,0xff,0xe4,0xff,0xdb,0xff,0xec,0xff,0xe0,0xff,0xf0,
0xff,0xd4,0xff,0xdd,0xff,0xb5,0xff,0xb8,0xff,0x89,0xff,0x8b,0xff,0x69,0xff,0x66,
0xff,0x75,0xff,0x6c,0xff,0xa0,0xff,0x94,0xff,0xb7,0xff,0xaa,0xff,0xa8,0xff,0xa0,
0xff,0x86,0xff,0x87,0xff,0x67,0xff,0x68,0xff,0x54,0xff,0x51,0xff,0x52,0xff,0x4b,
0xff,0x60,0xff,0x58,0xff,0x78,0xff,0x77,0xff,0x8d,0xff,0x97,0xff,0x9d,0xff,0xae,
0xff,0xb0,0xff,0xbf,0xff,0xc6,0xff,0xc7,0xff,0xcf,0xff,0xcc,0xff,0xc6,0xff,0xd4,
0xff,0xbb,0xff,0xd4,0xff,0xbc,0xff,0xd1,0xff,0xd1,0xff,0xd3,0xff,0xee,0xff,0xd9,
0xff,0x1,0x0,0xeb,0xff,0x7,0x0,0x7,0x0,0x9,0x0,0x16,0x0,0xb,0x0,0x13,
0x0,0x9,0x0,0x6,0x0,0xf9,0xff,0xf3,0xff,0xd7,0xff,0xd7,0xff,0xa5,0xff,0xa4,
0xff,0x6c,0xff,0x63,0xff,0x48,0xff,0x3f,0xff,0x51,0xff,0x4e,0xff,0x7b,0xff,0x78,
0xff,0xa2,0xff,0x9e,0xff,0xb3,0xff,0xb3,0xff,0xad,0xff,0xbb,0xff,0x9c,0xff,0xb0,
0xff,0x8a,0xff,0x90,0xff,0x83,0xff,0x71,0xff,0x91,0xff,0x70,0xff,0xa8,0xff,0x8c,
0xff,0xae,0xff,0xaf,0xff,0x9b,0xff,0xba,0xff,0x86,0xff,0xaa,0xff,0x7f,0xff,0x96,
0xff,0x86,0xff,0x93,0xff,0x99,0xff,0xa0,0xff,0xb7,0xff,0xb6,0xff,0xcb,0xff,0xc5,
0xff,0xc1,0xff,0xb8,0xff,0xa7,0xff,0x9c,0xff,0x99,0xff,0x8c,0xff,0xa0,0xff,0x97,
0xff,0xbb,0xff,0xbb,0xff,0xe0,0xff,0xec,0xff,0xfd,0xff,0x8,0x0,0xfe,0xff,0xff,
0xff,0xe8,0xff,0xdc,0xff,0xd3,0xff,0xbd,0xff,0xcc,0xff,0xae,0xff,0xbb,0xff,0xa8,
0xff,0x9d,0xff,0x9e,0xff,0x8d,0xff,0x98,0xff,0x9a,0xff,0x9f,0xff,0xb0,0xff,0xac,
0xff,0xbd,0xff,0xb6,0xff,0xc2,0xff,0xbc,0xff,0xc7,0xff,0xc0,0xff,0xc7,0xff,0xbd,
0xff,0xb8,0xff,0xb1,0xff,0xa0,0xff,0x9f,0xff,0x8f,0xff,0x8f,0xff,0x88,0xff,0x87,
0xff,0x8a,0xff,0x8e,0xff,0x91,0xff,0x9d,0xff,0x99,0xff,0xa9,0xff,0xab,0xff,0xb5,
0xff,0xcc,0xff,0xc8,0xff,0xe1,0xff,0xd6,0xff,0xd1,0xff,0xcc,0xff,0xa7,0xff,0xa5,
0xff,0x7f,0xff,0x78,0xff,0x6f,0xff,0x62,0xff,0x7b,0xff,0x69,0xff,0x8f,0xff,0x82,
0xff,0x9c,0xff,0x9e,0xff,0xa5,0xff,0xb2,0xff,0xab,0xff,0xbf,0xff,0xb6,0xff,0xc5,
0xff,0xc4,0xff,0xc1,0xff,0xc2,0xff,0xb0,0xff,0xaa,0xff,0x9a,0xff,0x94,0xff,0x8d,
0xff,0x92,0xff,0x93,0xff,0xa2,0xff,0xa9,0xff,0xb8,0xff,0xc1,0xff,0xc3,0xff,0xcc,
0xff,0xc6,0xff,0xc5,0xff,0xc3,0xff,0xb4,0xff,0xb4,0xff,0xa3,0xff,0x9f,0xff,0x95,
0xff,0x95,0xff,0x8e,0xff,0x9e,0xff,0x92,0xff,0xbc,0xff,0xaa,0xff,0xd7,0xff,0xcc,
0xff,0xd6,0xff,0xda,0xff,0xbd,0xff,0xcd,0xff,0xa7,0xff,0xba,0xff,0xa7,0xff,0xae,
0xff,0xb8,0xff,0xac,0xff,0xc9,0xff,0xb7,0xff,0xd0,0xff,0xc2,0xff,0xcd,0xff,0xc3,
0xff,0xc1,0xff,0xbb,0xff,0xae,0xff,0xac,0xff,0x9d,0xff,0xa3,0xff,0x9e,0xff,0xaa,
0xff,0xb1,0xff,0xb9,0xff,0xbe,0xff,0xc8,0xff,0xa8,0xff,0xc5,0xff,0x72,0xff,0xa0,
0xff,0x42,0xff,0x64,0xff,0x3f,0xff,0x3f,0xff,0x65,0xff,0x51,0xff,0x90,0xff,0x87,
0xff,0xaa,0xff,0xaf,0xff,0xad,0xff,0xb4,0xff,0x95,0xff,0x9f,0xff,0x80,0xff,0x8f,
0xff,0x8c,0xff,0x92,0xff,0xae,0xff,0x9f,0xff,0xc7,0xff,0xab,0xff,0xcb,0xff,0xb5,
0xff,0xbc,0xff,0xb9,0xff,0xb2,0xff,0xae,0xff,0xb8,0xff,0xa3,0xff,0xc7,0xff,0xac,
0xff,0xd7,0xff,0xc8,0xff,0xdf,0xff,0xda,0xff,0xd3,0xff,0xd7,0xff,0xbf,0xff,0xc6,
0xff,0xaf,0xff,0xb5,0xff,0xab,0xff,0xb0,0xff,0xb7,0xff,0xbb,0xff,0xcc,0xff,0xd1,
0xff,0xdb,0xff,0xe5,0xff,0xd7,0xff,0xe4,0xff,0xb6,0xff,0xc7,0xff,0x88,0xff,0x9f,
0xff,0x6c,0xff,0x84,0xff,0x69,0xff,0x78,0xff,0x6e,0xff,0x6f,0xff,0x6c,0xff,0x65,
0xff,0x62,0xff,0x61,0xff,0x5f,0xff,0x66,0xff,0x71,0xff,0x7c,0xff,0x91,0xff,0xa0,
0xff,0xaa,0xff,0xb9,0xff,0xad,0xff,0xb6,0xff,0xa1,0xff,0xa4,0xff,0x99,0xff,0x95,
0xff,0x9c,0xff,0x90,0xff,0xa7,0xff,0x99,0xff,0xb5,0xff,0xa8,0xff,0xc1,0xff,0xb6,
0xff,0xc8,0xff,0xbc,0xff,0xcd,0xff,0xb6,0xff,0xd2,0xff,0xb1,0xff,0xd3,0xff,0xb4,
0xff,0xcd,0xff,0xb4,0xff,0xc1,0xff,0xb0,0xff,0xaf,0xff,0xac,0xff,0x92,0xff,0xa3,
0xff,0x74,0xff,0x96,0xff,0x78,0xff,0x9a,0xff,0xa1,0xff,0xb4,0xff,0xca,0xff,0xd3,
0xff,0xd2,0xff,0xde,0xff,0xba,0xff,0xc9,0xff,0x9a,0xff,0xa3,0xff,0x87,0xff,0x88,
0xff,0x8a,0xff,0x81,0xff,0x97,0xff,0x89,0xff,0x9f,0xff,0x96,0xff,0x97,0xff,0x98,
0xff,0x8a,0xff,0x92,0xff,0x8d,0xff,0x98,0xff,0xa4,0xff,0xa6,0xff,0xba,0xff,0xb1,
0xff,0xb9,0xff,0xb0,0xff,0xa0,0xff,0x9e,0xff,0x83,0xff,0x88,0xff,0x76,0xff,0x7f,
0xff,0x78,0xff,0x7f,0xff,0x7f,0xff,0x7e,0xff,0x7e,0xff,0x77,0xff,0x72,0xff,0x66,
0xff,0x65,0xff,0x56,0xff,0x66,0xff,0x60,0xff,0x7d,0xff,0x82,0xff,0xa7,0xff,0xae,
0xff,0xce,0xff,0xcc,0xff,0xd9,0xff,0xca,0xff,0xb8,0xff,0xa7,0xff,0x85,0xff,0x7f,
0xff,0x6b,0xff,0x75,0xff,0x80,0xff,0x94,0xff,0xae,0xff,0xc2,0xff,0xd4,0xff,0xe1,
0xff,0xe2,0xff,0xea,0xff,0xdd,0xff,0xe7,0xff,0xda,0xff,0xe2,0xff,0xd9,0xff,0xd3,
0xff,0xc7,0xff,0xb1,0xff,0x9d,0xff,0x89,0xff,0x74,0xff,0x6e,0xff,0x61,0xff,0x64,
0xff,0x66,0xff,0x6d,0xff,0x7e,0xff,0x88,0xff,0xa9,0xff,0xb1,0xff,0xdb,0xff,0xdf,
0xff,0xf6,0xff,0xf0,0xff,0xe4,0xff,0xd0,0xff,0xaf,0xff,0x95,0xff,0x7b,0xff,0x6a,
0xff,0x62,0xff,0x65,0xff,0x64,0xff,0x74,0xff,0x64,0xff,0x72,0xff,0x4e,0xff,0x53,
0xff,0x36,0xff,0x37,0xff,0x3e,0xff,0x41,0xff,0x6a,0xff,0x73,0xff,0xa1,0xff,0xb0,
0xff,0xc4,0xff,0xd4,0xff,0xc7,0xff,0xcc,0xff,0xb5,0xff,0xa5,0xff,0xa5,0xff,0x85,
0xff,0xa1,0xff,0x81,0xff,0xa6,0xff,0x99,0xff,0xb6,0xff,0xbe,0xff,0xd1,0xff,0xe0,
0xff,0xdd,0xff,0xeb,0xff,0xca,0xff,0xd3,0xff,0xaf,0xff,0xa9,0xff,0xa1,0xff,0x8d,
0xff,0x99,0xff,0x84,0xff,0x91,0xff,0x83,0xff,0x92,0xff,0x92,0xff,0x9f,0xff,0xb4,
0xff,0xb1,0xff,0xd0,0xff,0xb7,0xff,0xd4,0xff,0xad,0xff,0xc4,0xff,0xa3,0xff,0xab,
0xff,0x9f,0xff,0x9c,0xff,0xa2,0xff,0x9f,0xff,0xad,0xff,0xab,0xff,0xbb,0xff,0xbb,
0xff,0xc2,0xff,0xc3,0xff,0xbd,0xff,0xb6,0xff,0xaa,0xff,0xa0,0xff,0x91,0xff,0x92,
0xff,0x83,0xff,0x90,0xff,0x86,0xff,0x95,0xff,0x95,0xff,0x9f,0xff,0x9c,0xff,0xa4,
0xff,0x99,0xff,0xa6,0xff,0x9e,0xff,0xac,0xff,0xb2,0xff,0xba,0xff,0xc8,0xff,0xc6,
0xff,0xd1,0xff,0xbd,0xff,0xbd,0xff,0x9c,0xff,0x92,0xff,0x75,0xff,0x6a,0xff,0x5c,
0xff,0x5a,0xff,0x57,0xff,0x63,0xff,0x68,0xff,0x7e,0xff,0x8a,0xff,0xa5,0xff,0xb6,
0xff,0xca,0xff,0xd9,0xff,0xd7,0xff,0xde,0xff,0xc8,0xff,0xc9,0xff,0xaf,0xff,0xaa,
0xff,0x97,0xff,0x8c,0xff,0x88,0xff,0x80,0xff,0x8e,0xff,0x92,0xff,0xb1,0xff,0xbc,
0xff,0xe8,0xff,0xef,0xff,0x10,0x0,0x16,0x0,0x9,0x0,0x11,0x0,0xe2,0xff,0xe4,
0xff,0xbd,0xff,0xb1,0xff,0x9f,0xff,0x90,0xff,0x82,0xff,0x7f,0xff,0x69,0xff,0x6d,
0xff,0x5f,0xff,0x63,0xff,0x69,0xff,0x74,0xff,0x82,0xff,0x95,0xff,0xa4,0xff,0xb7,
0xff,0xc8,0xff,0xd5,0xff,0xdc,0xff,0xe2,0xff,0xcc,0xff,0xc4,0xff,0x93,0xff,0x7f,
0xff,0x4d,0xff,0x33,0xff,0x24,0xff,0x11,0xff,0x2f,0xff,0x28,0xff,0x5d,0xff,0x58,
0xff,0x7c,0xff,0x79,0xff,0x70,0xff,0x76,0xff,0x52,0xff,0x5c,0xff,0x4b,0xff,0x4f,
0xff,0x5f,0xff,0x5a,0xff,0x77,0xff,0x68,0xff,0x76,0xff,0x63,0xff,0x63,0xff,0x55,
0xff,0x66,0xff,0x5c,0xff,0x94,0xff,0x89,0xff,0xda,0xff,0xce,0xff,0x17,0x0,0xc,
0x0,0x2b,0x0,0x25,0x0,0x13,0x0,0xe,0x0,0xe3,0xff,0xdf,0xff,0xb2,0xff,0xb5,
0xff,0x95,0xff,0xa5,0xff,0x91,0xff,0xa8,0xff,0x9a,0xff,0xa8,0xff,0x9e,0xff,0x9f,
0xff,0x98,0xff,0x97,0xff,0x8f,0xff,0x95,0xff,0x99,0xff,0xa8,0xff,0xb7,0xff,0xcd,
0xff,0xc9,0xff,0xd9,0xff,0xb8,0xff,0xb8,0xff,0x93,0xff,0x83,0xff,0x79,0xff,0x5e,
0xff,0x7a,0xff,0x61,0xff,0x8a,0xff,0x85,0xff,0x98,0xff,0xa4,0xff,0x99,0xff,0xa5,
0xff,0x8a,0xff,0x8e,0xff,0x78,0xff,0x72,0xff,0x68,0xff,0x56,0xff,0x55,0xff,0x3d,
0xff,0x49,0xff,0x39,0xff,0x51,0xff,0x51,0xff,0x6a,0xff,0x71,0xff,0x8c,0xff,0x89,
0xff,0xaf,0xff,0xa3,0xff,0xc7,0xff,0xc1,0xff,0xce,0xff,0xd5,0xff,0xc6,0xff,0xd6,
0xff,0xc0,0xff,0xcb,0xff,0xc6,0xff,0xba,0xff,0xc0,0xff,0xa0,0xff,0x9d,0xff,0x85,
0xff,0x73,0xff,0x76,0xff,0x62,0xff,0x78,0xff,0x75,0xff,0x8c,0xff,0x9e,0xff,0xb0,
0xff,0xbf,0xff,0xcc,0xff,0xc8,0xff,0xcd,0xff,0xc7,0xff,0xc0,0xff,0xcb,0xff,0xbe,
0xff,0xcf,0xff,0xc2,0xff,0xc0,0xff,0xbe,0xff,0xaa,0xff,0xb0,0xff,0xa6,0xff,0xa7,
0xff,0xaf,0xff,0xa8,0xff,0xb8,0xff,0xb1,0xff,0xc1,0xff,0xc3,0xff,0xc5,0xff,0xd0,
0xff,0xb5,0xff,0xbf,0xff,0x89,0xff,0x8f,0xff,0x5c,0xff,0x60,0xff,0x4d,0xff,0x46,
0xff,0x5a,0xff,0x41,0xff,0x6a,0xff,0x52,0xff,0x76,0xff,0x75,0xff,0x84,0xff,0x97,
0xff,0x93,0xff,0xa9,0xff,0xa2,0xff,0xb1,0xff,0xad,0xff,0xb3,0xff,0xac,0xff,0xa5,
0xff,0x95,0xff,0x83,0xff,0x77,0xff,0x69,0xff,0x70,0xff,0x6a,0xff,0x80,0xff,0x83,
0xff,0x93,0xff,0xa2,0xff,0xa2,0xff,0xb4,0xff,0xad,0xff,0xb4,0xff,0xb1,0xff,0xab,
0xff,0xb2,0xff,0xa6,0xff,0xb7,0xff,0xac,0xff,0xba,0xff,0xb5,0xff,0xb1,0xff,0xb2,
0xff,0xa3,0xff,0xac,0xff,0xa8,0xff,0xb7,0xff,0xc7,0xff,0xd4,0xff,0xe7,0xff,0xf1,
0xff,0xf4,0xff,0xfb,0xff,0xe9,0xff,0xee,0xff,0xce,0xff,0xd2,0xff,0xb4,0xff,0xb7,
0xff,0xb0,0xff,0xb0,0xff,0xc3,0xff,0xbc,0xff,0xd2,0xff,0xc5,0xff,0xca,0xff,0xc0,
0xff,0xb6,0xff,0xb0,0xff,0x9e,0xff,0x9f,0xff,0x8b,0xff,0x93,0xff,0x86,0xff,0x8e,
0xff,0x81,0xff,0x82,0xff,0x64,0xff,0x64,0xff,0x38,0xff,0x3e,0xff,0x21,0xff,0x2f,
0xff,0x32,0xff,0x47,0xff,0x53,0xff,0x6d,0xff,0x5f,0xff,0x74,0xff,0x5f,0xff,0x61,
0xff,0x6d,0xff,0x5b,0xff,0x89,0xff,0x77,0xff,0xb1,0xff,0xa9,0xff,0xd9,0xff,0xd2,
0xff,0xed,0xff,0xe5,0xff,0xe7,0xff,0xe3,0xff,0xd7,0xff,0xd1,0xff,0xc8,0xff,0xc1,
0xff,0xc3,0xff,0xc7,0xff,0xca,0xff,0xe0,0xff,0xdf,0xff,0xf3,0xff,0xf5,0xff,0xf3,
0xff,0xf8,0xff,0xe8,0xff,0xed,0xff,0xdd,0xff,0xe6,0xff,0xd9,0xff,0xe7,0xff,0xe0,
0xff,0xe8,0xff,0xe4,0xff,0xe4,0xff,0xdc,0xff,0xe1,0xff,0xd5,0xff,0xe2,0xff,0xda,
0xff,0xe1,0xff,0xe2,0xff,0xd7,0xff,0xdc,0xff,0xc0,0xff,0xc3,0xff,0x99,0xff,0xa2,
0xff,0x70,0xff,0x82,0xff,0x58,0xff,0x66,0xff,0x51,0xff,0x52,0xff,0x4d,0xff,0x4e,
0xff,0x47,0xff,0x51,0xff,0x44,0xff,0x51,0xff,0x4c,0xff,0x56,0xff,0x5b,0xff,0x65,
0xff,0x62,0xff,0x6e,0xff,0x60,0xff,0x67,0xff,0x5c,0xff,0x5e,0xff,0x63,0xff,0x65,
0xff,0x89,0xff,0x85,0xff,0xc3,0xff,0xb7,0xff,0xf3,0xff,0xe4,0xff,0xb,0x0,0xfc,
0xff,0xd,0x0,0xfd,0xff,0x3,0x0,0xf1,0xff,0xf4,0xff,0xe2,0xff,0xe5,0xff,0xdb,
0xff,0xdb,0xff,0xd7,0xff,0xd5,0xff,0xce,0xff,0xca,0xff,0xc2,0xff,0xc3,0xff,0xc3,
0xff,0xcd,0xff,0xda,0xff,0xe7,0xff,0xff,0xff,0x2,0x0,0x19,0x0,0x7,0x0,0xf,
0x0,0xec,0xff,0xe6,0xff,0xc3,0xff,0xb8,0xff,0xa1,0xff,0xa1,0xff,0x8d,0xff,0xa8,
0xff,0x8f,0xff,0xbb,0xff,0xa3,0xff,0xc5,0xff,0xb9,0xff,0xc6,0xff,0xc4,0xff,0xc7,
0xff,0xc3,0xff,0xc3,0xff,0xbf,0xff,0xb5,0xff,0xbe,0xff,0xa6,0xff,0xbb,0xff,0x9e,
0xff,0xaf,0xff,0x9a,0xff,0xa1,0xff,0x97,0xff,0x96,0xff,0x9a,0xff,0x95,0xff,0xa3,
0xff,0x9b,0xff,0xa7,0xff,0x9d,0xff,0x9c,0xff,0x90,0xff,0x82,0xff,0x7f,0xff,0x68,
0xff,0x7d,0xff,0x61,0xff,0x8f,0xff,0x78,0xff,0xa4,0xff,0x9b,0xff,0xaa,0xff,0xac,
0xff,0x9f,0xff,0xa1,0xff,0x8f,0xff,0x89,0xff,0x8a,0xff,0x81,0xff,0x95,0xff,0x99,
0xff,0xb2,0xff,0xc5,0xff,0xd5,0xff,0xeb,0xff,0xeb,0xff,0xf9,0xff,0xed,0xff,0xf0,
0xff,0xe9,0xff,0xde,0xff,0xee,0xff,0xdd,0xff,0x0,0x0,0x0,0x0,0x1f,0x0,0x35,
0x0,0x44,0x0,0x5f,0x0,0x55,0x0,0x69,0x0,0x4a,0x0,0x50,0x0,0x36,0x0,0x2b,
0x0,0x29,0x0,0x14,0x0,0x2b,0x0,0x17,0x0,0x36,0x0,0x2a,0x0,0x39,0x0,0x31,
0x0,0x1c,0x0,0x15,0x0,0xd9,0xff,0xd5,0xff,0x82,0xff,0x7f,0xff,0x34,0xff,0x36,
0xff,0xfe,0xfe,0xa,0xff,0xdd,0xfe,0xf1,0xfe,0xd4,0xfe,0xdf,0xfe,0xe3,0xfe,0xd3,
0xfe,0xf0,0xfe,0xcd,0xfe,0xed,0xfe,0xdc,0xfe,0xf7,0xfe,0x4,0xff,0x2f,0xff,0x3e,
0xff,0x82,0xff,0x82,0xff,0xbe,0xff,0xbb,0xff,0xd0,0xff,0xd1,0xff,0xc2,0xff,0xc0,
0xff,0xac,0xff,0xa9,0xff,0xa8,0xff,0xae,0xff,0xc5,0xff,0xd5,0xff,0xf9,0xff,0xff,
0xff,0x28,0x0,0x12,0x0,0x3a,0x0,0x16,0x0,0x2d,0x0,0x1a,0x0,0x1c,0x0,0x24,
0x0,0x1b,0x0,0x38,0x0,0x31,0x0,0x52,0x0,0x56,0x0,0x63,0x0,0x74,0x0,0x6d,
0x0,0x7d,0x0,0x7b,0x0,0x80,0x0,0x88,0x0,0x7b,0x0,0x7f,0x0,0x5e,0x0,0x64,
0x0,0x2f,0x0,0x42,0x0,0x0,0x0,0x13,0x0,0xd0,0xff,0xd3,0xff,0x9a,0xff,0x90,
0xff,0x5e,0xff,0x58,0xff,0x28,0xff,0x26,0xff,0x0,0xff,0xf5,0xfe,0xe5,0xfe,0xcd,
0xfe,0xd7,0xfe,0xba,0xfe,0xe1,0xfe,0xc3,0xfe,0xfb,0xfe,0xe1,0xfe,0x19,0xff,0xb,
0xff,0x38,0xff,0x37,0xff,0x51,0xff,0x5b,0xff,0x68,0xff,0x74,0xff,0x8c,0xff,0x8d,
0xff,0xb6,0xff,0xa8,0xff,0xd1,0xff,0xba,0xff,0xd0,0xff,0xc2,0xff,0xc2,0xff,0xca,
0xff,0xc7,0xff,0xdc,0xff,0xea,0xff,0xf8,0xff,0x12,0x0,0x1a,0x0,0x2c,0x0,0x36,
0x0,0x3b,0x0,0x43,0x0,0x3d,0x0,0x40,0x0,0x2b,0x0,0x30,0x0,0xe,0x0,0x1c,
0x0,0x5,0x0,0x12,0x0,0x1e,0x0,0x23,0x0,0x47,0x0,0x4f,0x0,0x6a,0x0,0x7b,
0x0,0x75,0x0,0x86,0x0,0x63,0x0,0x66,0x0,0x3e,0x0,0x2e,0x0,0x7,0x0,0xf3,
0xff,0xcb,0xff,0xc0,0xff,0x9d,0xff,0x9b,0xff,0x7f,0xff,0x83,0xff,0x66,0xff,0x68,
0xff,0x4e,0xff,0x45,0xff,0x36,0xff,0x23,0xff,0x2a,0xff,0x14,0xff,0x36,0xff,0x23,
0xff,0x4a,0xff,0x3a,0xff,0x4b,0xff,0x40,0xff,0x2e,0xff,0x28,0xff,0xfd,0xfe,0xfe,
0xfe,0xdf,0xfe,0xe6,0xfe,0xf0,0xfe,0xf9,0xfe,0x27,0xff,0x2a,0xff,0x70,0xff,0x6e,
0xff,0xb8,0xff,0xbd,0xff,0xea,0xff,0xfa,0xff,0xf6,0xff,0x11,0x0,0xe3,0xff,0x3,
0x0,0xd1,0xff,0xe1,0xff,0xd9,0xff,0xd9,0xff,0xfb,0xff,0xfa,0xff,0x22,0x0,0x26,
0x0,0x3c,0x0,0x42,0x0,0x44,0x0,0x4c,0x0,0x45,0x0,0x50,0x0,0x4d,0x0,0x57,
0x0,0x5a,0x0,0x5c,0x0,0x5c,0x0,0x52,0x0,0x45,0x0,0x37,0x0,0x22,0x0,0x15,
0x0,0x7,0x0,0xfd,0xff,0xf4,0xff,0xf4,0xff,0xe7,0xff,0xe7,0xff,0xd6,0xff,0xd1,
0xff,0xc1,0xff,0xbc,0xff,0xaf,0xff,0xab,0xff,0x9c,0xff,0x91,0xff,0x79,0xff,0x6b,
0xff,0x4b,0xff,0x46,0xff,0x22,0xff,0x2d,0xff,0x9,0xff,0x15,0xff,0x0,0xff,0xfd,
0xfe,0xfa,0xfe,0xf2,0xfe,0xfb,0xfe,0xf8,0xfe,0x8,0xff,0x9,0xff,0x1b,0xff,0x19,
0xff,0x2a,0xff,0x29,0xff,0x38,0xff,0x3f,0xff,0x4a,0xff,0x5a,0xff,0x67,0xff,0x79,
0xff,0x8d,0xff,0xa4,0xff,0xba,0xff,0xd6,0xff,0xe7,0xff,0x2,0x0,0xa,0x0,0x1f,
0x0,0x22,0x0,0x2d,0x0,0x35,0x0,0x34,0x0,0x41,0x0,0x39,0x0,0x42,0x0,0x3b,
0x0,0x3c,0x0,0x3b,0x0,0x37,0x0,0x3b,0x0,0x36,0x0,0x3c,0x0,0x36,0x0,0x40,
0x0,0x32,0x0,0x41,0x0,0x2c,0x0,0x3a,0x0,0x2d,0x0,0x2f,0x0,0x37,0x0,0x26,
0x0,0x39,0x0,0x1f,0x0,0x22,0x0,0x13,0x0,0xfa,0xff,0xf3,0xff,0xcd,0xff,0xc3,
0xff,0xa7,0xff,0x97,0xff,0x88,0xff,0x7a,0xff,0x65,0xff,0x69,0xff,0x3d,0xff,0x55,
0xff,0x1d,0xff,0x34,0xff,0x9,0xff,0x12,0xff,0x0,0xff,0xfd,0xfe,0xff,0xfe,0xf3,
0xfe,0xfd,0xfe,0xf6,0xfe,0x1,0xff,0x10,0xff,0x14,0xff,0x35,0xff,0x27,0xff,0x4c,
0xff,0x36,0xff,0x50,0xff,0x4a,0xff,0x56,0xff,0x71,0xff,0x72,0xff,0xab,0xff,0xaa,
0xff,0xe3,0xff,0xed,0xff,0xc,0x0,0x1b,0x0,0x29,0x0,0x2e,0x0,0x3a,0x0,0x32,
0x0,0x42,0x0,0x37,0x0,0x49,0x0,0x44,0x0,0x53,0x0,0x58,0x0,0x63,0x0,0x69,
0x0,0x76,0x0,0x76,0x0,0x80,0x0,0x79,0x0,0x7c,0x0,0x75,0x0,0x76,0x0,0x77,
0x0,0x78,0x0,0x7c,0x0,0x7b,0x0,0x79,0x0,0x64,0x0,0x5e,0x0,0x2e,0x0,0x24,
0x0,0xed,0xff,0xe0,0xff,0xb7,0xff,0xb0,0xff,0x9b,0xff,0xa2,0xff,0x8e,0xff,0xa7,
0xff,0x7b,0xff,0x9e,0xff,0x5c,0xff,0x77,0xff,0x3f,0xff,0x47,0xff,0x29,0xff,0x20,
0xff,0x19,0xff,0x4,0xff,0x9,0xff,0xf6,0xfe,0xff,0xfe,0xf9,0xfe,0xa,0xff,0xc,
0xff,0x1e,0xff,0x23,0xff,0x2d,0xff,0x35,0xff,0x40,0xff,0x48,0xff,0x69,0xff,0x6c,
0xff,0xa3,0xff,0xa0,0xff,0xd6,0xff,0xcc,0xff,0xee,0xff,0xdd,0xff,0xf9,0xff,0xe1,
0xff,0xf,0x0,0xf4,0xff,0x2f,0x0,0x18,0x0,0x4f,0x0,0x3d,0x0,0x5f,0x0,0x58,
0x0,0x6a,0x0,0x6f,0x0,0x81,0x0,0x8c,0x0,0x99,0x0,0xa5,0x0,0x9f,0x0,0xa4,
0x0,0x8c,0x0,0x84,0x0,0x66,0x0,0x57,0x0,0x3f,0x0,0x39,0x0,0x26,0x0,0x2a,
0x0,0xd,0x0,0x18,0x0,0xe9,0xff,0x1,0x0,0xc0,0xff,0xea,0xff,0xa6,0xff,0xcf,
0xff,0xa1,0xff,0xb4,0xff,0x9b,0xff,0x98,0xff,0x83,0xff,0x77,0xff,0x6a,0xff,0x5a,
0xff,0x67,0xff,0x4f,0xff,0x7b,0xff,0x59,0xff,0x89,0xff,0x72,0xff,0x7d,0xff,0x7f,
0xff,0x5f,0xff,0x6b,0xff,0x3e,0xff,0x41,0xff,0x25,0xff,0x1a,0xff,0x1d,0xff,0x9,
0xff,0x2b,0xff,0x1a,0xff,0x4c,0xff,0x47,0xff,0x7c,0xff,0x80,0xff,0xad,0xff,0xb2,
0xff,0xd0,0xff,0xd5,0xff,0xe4,0xff,0xee,0xff,0xfa,0xff,0x3,0x0,0x20,0x0,0x1a,
0x0,0x4b,0x0,0x3a,0x0,0x66,0x0,0x59,0x0,0x6f,0x0,0x6a,0x0,0x6b,0x0,0x76,
0x0,0x61,0x0,0x7e,0x0,0x5d,0x0,0x78,0x0,0x58,0x0,0x5e,0x0,0x43,0x0,0x34,
0x0,0x18,0x0,0x5,0x0,0xe4,0xff,0xda,0xff,0xc2,0xff,0xbe,0xff,0xc2,0xff,0xbb,
0xff,0xd8,0xff,0xce,0xff,0xe8,0xff,0xe7,0xff,0xe0,0xff,0xef,0xff,0xc6,0xff,0xda,
0xff,0xa9,0xff,0xb5,0xff,0x99,0xff,0x94,0xff,0x9a,0xff,0x88,0xff,0x9f,0xff,0x90,
0xff,0x92,0xff,0x92,0xff,0x6f,0xff,0x76,0xff,0x48,0xff,0x4b,0xff,0x35,0xff,0x33,
0xff,0x43,0xff,0x3c,0xff,0x63,0xff,0x54,0xff,0x74,0xff,0x61,0xff,0x68,0xff,0x5f,
0xff,0x5d,0xff,0x62,0xff,0x7b,0xff,0x7f,0xff,0xbe,0xff,0xba,0xff,0xfb,0xff,0xfd,
0xff,0x1d,0x0,0x28,0x0,0x27,0x0,0x32,0x0,0x28,0x0,0x28,0x0,0x2c,0x0,0x1c,
0x0,0x36,0x0,0x1c,0x0,0x3d,0x0,0x2d,0x0,0x3d,0x0,0x40,0x0,0x33,0x0,0x43,
0x0,0x24,0x0,0x36,0x0,0x18,0x0,0x23,0x0,0x11,0x0,0x15,0x0,0x1b,0x0,0x15,
0x0,0x2e,0x0,0x1d,0x0,0x2d,0x0,0x1d,0x0,0x17,0x0,0xf,0x0,0x2,0x0,0xfb,
0xff,0xee,0xff,0xe7,0xff,0xd7,0xff,0xd7,0xff,0xbf,0xff,0xc7,0xff,0xa8,0xff,0xae,
0xff,0x8f,0xff,0x94,0xff,0x79,0xff,0x7f,0xff,0x6f,0xff,0x6d,0xff,0x6a,0xff,0x5e,
0xff,0x62,0xff,0x54,0xff,0x63,0xff,0x50,0xff,0x6e,0xff,0x55,0xff,0x74,0xff,0x63,
0xff,0x75,0xff,0x75,0xff,0x77,0xff,0x87,0xff,0x86,0xff,0x9a,0xff,0xab,0xff,0xb2,
0xff,0xd5,0xff,0xcc,0xff,0xf3,0xff,0xdf,0xff,0x8,0x0,0xeb,0xff,0x15,0x0,0xf6,
0xff,0x18,0x0,0x1,0x0,0x13,0x0,0xd,0x0,0x9,0x0,0x15,0x0,0x1,0x0,0x14,
0x0,0x0,0x0,0x12,0x0,0xd,0x0,0x19,0x0,0x1f,0x0,0x28,0x0,0x26,0x0,0x33,
0x0,0x27,0x0,0x35,0x0,0x30,0x0,0x36,0x0,0x3a,0x0,0x3d,0x0,0x38,0x0,0x37,
0x0,0x1c,0x0,0x13,0x0,0xe6,0xff,0xde,0xff,0xb4,0xff,0xb1,0xff,0x98,0xff,0x93,
0xff,0x86,0xff,0x82,0xff,0x7b,0xff,0x79,0xff,0x7b,0xff,0x7a,0xff,0x84,0xff,0x80,
0xff,0x8c,0xff,0x86,0xff,0x8f,0xff,0x8c,0xff,0x93,0xff,0x91,0xff,0x9b,0xff,0x96,
0xff,0xa0,0xff,0x99,0xff,0xa1,0xff,0x98,0xff,0xa5,0xff,0x97,0xff,0xa8,0xff,0x99,
0xff,0xab,0xff,0xa0,0xff,0xb1,0xff,0xb4,0xff,0xb5,0xff,0xc8,0xff,0xad,0xff,0xc3,
0xff,0xa4,0xff,0xac,0xff,0xb0,0xff,0xa7,0xff,0xd3,0xff,0xbd,0xff,0xef,0xff,0xd9,
0xff,0xf5,0xff,0xe6,0xff,0xf0,0xff,0xea,0xff,0xf8,0xff,0xf9,0xff,0x16,0x0,0x1d,
0x0,0x34,0x0,0x43,0x0,0x3e,0x0,0x51,0x0,0x38,0x0,0x3c,0x0,0x1d,0x0,0x12,
0x0,0xf6,0xff,0xec,0xff,0xd9,0xff,0xd6,0xff,0xce,0xff,0xcd,0xff,0xd5,0xff,0xd2,
0xff,0xea,0xff,0xe0,0xff,0xf2,0xff,0xe9,0xff,0xdf,0xff,0xe4,0xff,0xc2,0xff,0xd7,
0xff,0xb8,0xff,0xcf,0xff,0xcb,0xff,0xd2,0xff,0xe0,0xff,0xd3,0xff,0xdd,0xff,0xc5,
0xff,0xc4,0xff,0xab,0xff,0x9e,0xff,0x8f,0xff,0x78,0xff,0x77,0xff,0x67,0xff,0x69,
0xff,0x6a,0xff,0x6d,0xff,0x72,0xff,0x7d,0xff,0x7e,0xff,0x89,0xff,0x8b,0xff,0x89,
0xff,0x9c,0xff,0x90,0xff,0xb3,0xff,0xa9,0xff,0xd3,0xff,0xce,0xff,0xf5,0xff,0xee,
0xff,0x6,0x0,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xee,0xff,0xff,0xff,0xee,0xff,0xd,
0x0,0xfc,0xff,0x1d,0x0,0x9,0x0,0x20,0x0,0xb,0x0,0x11,0x0,0x2,0x0,0xf6,
0xff,0xf3,0xff,0xe3,0xff,0xf5,0xff,0xe6,0xff,0xc,0x0,0x0,0x0,0x21,0x0,0x20,
0x0,0x1f,0x0,0x30,0x0,0xc,0x0,0x21,0x0,0xf5,0xff,0x2,0x0,0xe9,0xff,0xeb,
0xff,0xeb,0xff,0xe3,0xff,0xed,0xff,0xde,0xff,0xe4,0xff,0xcf,0xff,0xc9,0xff,0xb1,
0xff,0xa1,0xff,0x92,0xff,0x8a,0xff,0x87,0xff,0x91,0xff,0x95,0xff,0x9b,0xff,0xa4,
0xff,0x90,0xff,0x98,0xff,0x74,0xff,0x76,0xff,0x5c,0xff,0x5f,0xff,0x63,0xff,0x66,
0xff,0x91,0xff,0x8a,0xff,0xd3,0xff,0xc3,0xff,0x8,0x0,0xfe,0xff,0x18,0x0,0x20,
0x0,0x8,0x0,0x1c,0x0,0xed,0xff,0x8,0x0,0xd9,0xff,0xfa,0xff,0xdd,0xff,0xf8,
0xff,0xeb,0xff,0xf1,0xff,0xde,0xff,0xd8,0xff,0xbc,0xff,0xb9,0xff,0xb3,0xff,0xb0,
0xff,0xdc,0xff,0xcc,0xff,0x17,0x0,0x0,0x0,0x28,0x0,0x22,0x0,0xf9,0xff,0xb,
0x0,0xbc,0xff,0xce,0xff,0xac,0xff,0xad,0xff,0xd3,0xff,0xc4,0xff,0xa,0x0,0xef,
0xff,0x23,0x0,0x3,0x0,0xe,0x0,0xf6,0xff,0xe4,0xff,0xdf,0xff,0xcc,0xff,0xd6,
0xff,0xcd,0xff,0xda,0xff,0xd3,0xff,0xd6,0xff,0xc6,0xff,0xbf,0xff,0x9e,0xff,0x97,
0xff,0x6a,0xff,0x6e,0xff,0x45,0xff,0x59,0xff,0x4a,0xff,0x67,0xff,0x81,0xff,0x90,
0xff,0xc8,0xff,0xc1,0xff,0xee,0xff,0xe6,0xff,0xee,0xff,0xf8,0xff,0xe5,0xff,0xfb,
0xff,0xe0,0xff,0xfa,0xff,0xdf,0xff,0xf6,0xff,0xe1,0xff,0xec,0xff,0xe0,0xff,0xd9,
0xff,0xd8,0xff,0xc6,0xff,0xd1,0xff,0xc3,0xff,0xcf,0xff,0xd3,0xff,0xce,0xff,0xe1,
0xff,0xca,0xff,0xd8,0xff,0xc8,0xff,0xbe,0xff,0xc6,0xff,0xa9,0xff,0xc4,0xff,0xa6,
0xff,0xc4,0xff,0xb3,0xff,0xc9,0xff,0xc3,0xff,0xd4,0xff,0xcf,0xff,0xe7,0xff,0xde,
0xff,0xfa,0xff,0xf1,0xff,0x6,0x0,0xff,0xff,0x7,0x0,0x0,0x0,0xf3,0xff,0xf5,
0xff,0xd8,0xff,0xe5,0xff,0xcd,0xff,0xd7,0xff,0xd0,0xff,0xd2,0xff,0xda,0xff,0xdb,
0xff,0xea,0xff,0xef,0xff,0xf6,0xff,0xf9,0xff,0xee,0xff,0xec,0xff,0xd2,0xff,0xce,
0xff,0xb1,0xff,0xb6,0xff,0xa6,0xff,0xb7,0xff,0xb5,0xff,0xc7,0xff,0xc4,0xff,0xcf,
0xff,0xc4,0xff,0xca,0xff,0xbd,0xff,0xbe,0xff,0xbc,0xff,0xb7,0xff,0xc1,0xff,0xba,
0xff,0xc1,0xff,0xb7,0xff,0xb2,0xff,0xa6,0xff,0x9b,0xff,0x98,0xff,0x95,0xff,0x9e,
0xff,0xa9,0xff,0xb2,0xff,0xc5,0xff,0xc7,0xff,0xd1,0xff,0xd1,0xff,0xd1,0xff,0xd5,
0xff,0xd6,0xff,0xd8,0xff,0xe1,0xff,0xda,0xff,0xe8,0xff,0xdd,0xff,0xec,0xff,0xe5,
0xff,0xf5,0xff,0xf2,0xff,0x0,0x0,0x1,0x0,0x8,0x0,0xd,0x0,0xf,0x0,0x14,
0x0,0x15,0x0,0x1a,0x0,0x1b,0x0,0x21,0x0,0x1a,0x0,0x1f,0x0,0x2,0x0,0xa,
0x0,0xd9,0xff,0xe4,0xff,0xbd,0xff,0xc7,0xff,0xbe,0xff,0xc8,0xff,0xd3,0xff,0xdf,
0xff,0xdf,0xff,0xeb,0xff,0xc8,0xff,0xd9,0xff,0xa3,0xff,0xb3,0xff,0x90,0xff,0x97,
0xff,0x98,0xff,0x97,0xff,0xb0,0xff,0xa7,0xff,0xba,0xff,0xaf,0xff,0xa7,0xff,0xa3,
0xff,0x89,0xff,0x8c,0xff,0x7c,0xff,0x7d,0xff,0x89,0xff,0x87,0xff,0xac,0xff,0xa3,
0xff,0xcb,0xff,0xbe,0xff,0xd8,0xff,0xca,0xff,0xdd,0xff,0xd0,0xff,0xe5,0xff,0xdf,
0xff,0xf0,0xff,0xf1,0xff,0xfb,0xff,0xf4,0xff,0xfd,0xff,0xeb,0xff,0xf9,0xff,0xe9,
0xff,0xec,0xff,0xf1,0xff,0xdc,0xff,0xf3,0xff,0xd8,0xff,0xed,0xff,0xe6,0xff,0xeb,
0xff,0xf5,0xff,0xf2,0xff,0xf9,0xff,0xf6,0xff,0xf1,0xff,0xf5,0xff,0xe4,0xff,0xf3,
0xff,0xe0,0xff,0xec,0xff,0xe4,0xff,0xdf,0xff,0xe2,0xff,0xce,0xff,0xd2,0xff,0xc0,
0xff,0xc2,0xff,0xbd,0xff,0xc5,0xff,0xc4,0xff,0xcd,0xff,0xcc,0xff,0xc1,0xff,0xcc,
0xff,0xad,0xff,0xc3,0xff,0xac,0xff,0xbb,0xff,0xbc,0xff,0xc0,0xff,0xc7,0xff,0xc8,
0xff,0xc0,0xff,0xc0,0xff,0xad,0xff,0xab,0xff,0x9d,0xff,0x99,0xff,0xa0,0xff,0x9c,
0xff,0xb8,0xff,0xb6,0xff,0xd4,0xff,0xd3,0xff,0xe2,0xff,0xe1,0xff,0xe4,0xff,0xdc,
0xff,0xe2,0xff,0xd2,0xff,0xe2,0xff,0xd4,0xff,0xe1,0xff,0xd9,0xff,0xd7,0xff,0xd1,
0xff,0xc9,0xff,0xc0,0xff,0xbe,0xff,0xb0,0xff,0xb2,0xff,0xa4,0xff,0xaa,0xff,0xa0,
0xff,0xb0,0xff,0xa8,0xff,0xc1,0xff,0xbb,0xff,0xd1,0xff,0xd1,0xff,0xd6,0xff,0xd9,
0xff,0xd1,0xff,0xd0,0xff,0xcb,0xff,0xc1,0xff,0xcd,0xff,0xb9,0xff,0xd4,0xff,0xc4,
0xff,0xd9,0xff,0xdc,0xff,0xd8,0xff,0xe6,0xff,0xd6,0xff,0xe3,0xff,0xda,0xff,0xe4,
0xff,0xdf,0xff,0xeb,0xff,0xdb,0xff,0xe9,0xff,0xc6,0xff,0xd3,0xff,0xb0,0xff,0xb6,
0xff,0xb7,0xff,0xb4,0xff,0xd4,0xff,0xcf,0xff,0xe9,0xff,0xe4,0xff,0xe8,0xff,0xe1,
0xff,0xd5,0xff,0xca,0xff,0xbc,0xff,0xac,0xff,0xb0,0xff,0x9e,0xff,0xb3,0xff,0xa1,
0xff,0xbe,0xff,0xab,0xff,0xcc,0xff,0xb4,0xff,0xd1,0xff,0xb8,0xff,0xcc,0xff,0xc1,
0xff,0xce,0xff,0xd1,0xff,0xda,0xff,0xda,0xff,0xe6,0xff,0xd9,0xff,0xe9,0xff,0xd4,
0xff,0xdd,0xff,0xcb,0xff,0xca,0xff,0xc5,0xff,0xc5,0xff,0xc6,0xff,0xce,0xff,0xd0,
0xff,0xde,0xff,0xe9,0xff,0xf0,0xff,0x5,0x0,0xf8,0xff,0x9,0x0,0xf6,0xff,0xfb,
0xff,0xf5,0xff,0xef,0xff,0xf1,0xff,0xec,0xff,0xec,0xff,0xf1,0xff,0xe7,0xff,0xf0,
0xff,0xdc,0xff,0xe2,0xff,0xd1,0xff,0xd2,0xff,0xd5,0xff,0xca,0xff,0xdf,0xff,0xca,
0xff,0xdd,0xff,0xcf,0xff,0xce,0xff,0xcf,0xff,0xbf,0xff,0xc6,0xff,0xbe,0xff,0xc1,
0xff,0xcb,0xff,0xbe,0xff,0xd4,0xff,0xb8,0xff,0xcd,0xff,0xb5,0xff,0xb8,0xff,0xba,
0xff,0xae,0xff,0xc5,0xff,0xc8,0xff,0xd8,0xff,0xf9,0xff,0xf0,0xff,0x1e,0x0,0x3,
0x0,0x26,0x0,0x7,0x0,0x16,0x0,0xfb,0xff,0xfd,0xff,0xee,0xff,0xef,0xff,0xf6,
0xff,0xfa,0xff,0x14,0x0,0x15,0x0,0x32,0x0,0x29,0x0,0x3b,0x0,0x2b,0x0,0x2f,
0x0,0x1c,0x0,0x1b,0x0,0x9,0x0,0x5,0x0,0x1,0x0,0xf9,0xff,0x5,0x0,0xfa,
0xff,0x8,0x0,0xfb,0xff,0xf7,0xff,0xf5,0xff,0xd3,0xff,0xe5,0xff,0xb3,0xff,0xcc,
0xff,0xad,0xff,0xbd,0xff,0xb8,0xff,0xbf,0xff,0xc2,0xff,0xc1,0xff,0xc2,0xff,0xba,
0xff,0xbc,0xff,0xb3,0xff,0xbe,0xff,0xb6,0xff,0xc5,0xff,0xc3,0xff,0xc5,0xff,0xcb,
0xff,0xbf,0xff,0xc5,0xff,0xbd,0xff,0xc1,0xff,0xc7,0xff,0xcd,0xff,0xde,0xff,0xe3,
0xff,0xfa,0xff,0xf7,0xff,0xf,0x0,0x1,0x0,0x14,0x0,0x0,0x0,0x10,0x0,0x7,
0x0,0x19,0x0,0x22,0x0,0x38,0x0,0x49,0x0,0x5d,0x0,0x6b,0x0,0x73,0x0,0x7a,
0x0,0x6f,0x0,0x71,0x0,0x59,0x0,0x5b,0x0,0x48,0x0,0x43,0x0,0x43,0x0,0x30,
0x0,0x45,0x0,0x27,0x0,0x3f,0x0,0x1f,0x0,0x1e,0x0,0x8,0x0,0xe6,0xff,0xe4,
0xff,0xb8,0xff,0xc6,0xff,0xa6,0xff,0xbb,0xff,0xa2,0xff,0xb2,0xff,0x9b,0xff,0x9c,
0xff,0x90,0xff,0x81,0xff,0x86,0xff,0x73,0xff,0x83,0xff,0x7d,0xff,0x87,0xff,0x95,
0xff,0x8b,0xff,0xa5,0xff,0x86,0xff,0xa3,0xff,0x81,0xff,0x9b,0xff,0x8e,0xff,0x9e,
0xff,0xac,0xff,0xac,0xff,0xc8,0xff,0xc0,0xff,0xda,0xff,0xd3,0xff,0xe9,0xff,0xe3,
0xff,0xfa,0xff,0xf4,0xff,0x11,0x0,0xc,0x0,0x27,0x0,0x27,0x0,0x39,0x0,0x44,
0x0,0x47,0x0,0x59,0x0,0x55,0x0,0x61,0x0,0x65,0x0,0x63,0x0,0x7f,0x0,0x6f,
0x0,0xa5,0x0,0x83,0x0,0xc2,0x0,0x94,0x0,0xbf,0x0,0x98,0x0,0x9e,0x0,0x87,
0x0,0x70,0x0,0x69,0x0,0x43,0x0,0x44,0x0,0x18,0x0,0x1a,0x0,0xf1,0xff,0xf0,
0xff,0xd5,0xff,0xd5,0xff,0xc9,0xff,0xd0,0xff,0xc6,0xff,0xd3,0xff,0xbb,0xff,0xc6,
0xff,0x9c,0xff,0xa4,0xff,0x72,0xff,0x82,0xff,0x54,0xff,0x6f,0xff,0x44,0xff,0x67,
0xff,0x3e,0xff,0x5f,0xff,0x40,0xff,0x53,0xff,0x4e,0xff,0x4f,0xff,0x66,0xff,0x57,
0xff,0x83,0xff,0x69,0xff,0x99,0xff,0x84,0xff,0xa8,0xff,0xa2,0xff,0xc2,0xff,0xbf,
0xff,0xeb,0xff,0xdd,0xff,0x10,0x0,0xfb,0xff,0x2e,0x0,0x15,0x0,0x4a,0x0,0x30,
0x0,0x69,0x0,0x53,0x0,0x8e,0x0,0x78,0x0,0xae,0x0,0x95,0x0,0xc0,0x0,0xa4,
0x0,0xc0,0x0,0xab,0x0,0xb1,0x0,0xac,0x0,0x9b,0x0,0x9c,0x0,0x89,0x0,0x7e,
0x0,0x75,0x0,0x62,0x0,0x5c,0x0,0x51,0x0,0x40,0x0,0x46,0x0,0x1e,0x0,0x32,
0x0,0xf6,0xff,0xe,0x0,0xd8,0xff,0xe7,0xff,0xc8,0xff,0xc9,0xff,0xba,0xff,0xb6,
0xff,0xa9,0xff,0xa9,0xff,0x93,0xff,0x9f,0xff,0x7b,0xff,0x90,0xff,0x61,0xff,0x79,
0xff,0x45,0xff,0x54,0xff,0x2e,0xff,0x2a,0xff,0x21,0xff,0xf,0xff,0x1e,0xff,0xe,
0xff,0x25,0xff,0x1d,0xff,0x35,0xff,0x2e,0xff,0x48,0xff,0x3f,0xff,0x62,0xff,0x59,
0xff,0x88,0xff,0x82,0xff,0xb8,0xff,0xb3,0xff,0xe4,0xff,0xe2,0xff,0x1,0x0,0x7,
0x0,0x16,0x0,0x20,0x0,0x32,0x0,0x32,0x0,0x54,0x0,0x4a,0x0,0x7b,0x0,0x74,
0x0,0xa2,0x0,0xa1,0x0,0xb7,0x0,0xb3,0x0,0xae,0x0,0xa5,0x0,0x98,0x0,0x8c,
0x0,0x8d,0x0,0x81,0x0,0x93,0x0,0x8d,0x0,0x95,0x0,0x9b,0x0,0x86,0x0,0x94,
0x0,0x6d,0x0,0x79,0x0,0x52,0x0,0x57,0x0,0x3c,0x0,0x3a,0x0,0x30,0x0,0x27,
0x0,0x21,0x0,0x17,0x0,0xff,0xff,0xfa,0xff,0xd0,0xff,0xce,0xff,0xa8,0xff,0xa2,
0xff,0x8e,0xff,0x80,0xff,0x78,0xff,0x6b,0xff,0x5a,0xff,0x5f,0xff,0x3e,0xff,0x56,
0xff,0x37,0xff,0x4d,0xff,0x3e,0xff,0x41,0xff,0x3d,0xff,0x37,0xff,0x38,0xff,0x39,
0xff,0x42,0xff,0x4b,0xff,0x62,0xff,0x6e,0xff,0x8d,0xff,0x99,0xff,0xb5,0xff,0xb9,
0xff,0xd2,0xff,0xc5,0xff,0xdf,0xff,0xc4,0xff,0xec,0xff,0xce,0xff,0x8,0x0,0xf1,
0xff,0x36,0x0,0x2c,0x0,0x6c,0x0,0x65,0x0,0x93,0x0,0x82,0x0,0x96,0x0,0x84,
0x0,0x80,0x0,0x7f,0x0,0x70,0x0,0x88,0x0,0x7c,0x0,0xa0,0x0,0x9c,0x0,0xb6,
0x0,0xb1,0x0,0xb9,0x0,0xa8,0x0,0xa9,0x0,0x83,0x0,0x85,0x0,0x52,0x0,0x58,
0x0,0x34,0x0,0x37,0x0,0x38,0x0,0x2e,0x0,0x41,0x0,0x31,0x0,0x33,0x0,0x25,
0x0,0x3,0x0,0xf6,0xff,0xb9,0xff,0xb2,0xff,0x79,0xff,0x7c,0xff,0x65,0xff,0x66,
0xff,0x74,0xff,0x6e,0xff,0x81,0xff,0x79,0xff,0x75,0xff,0x6e,0xff,0x51,0xff,0x4f,
0xff,0x2f,0xff,0x36,0xff,0x29,0xff,0x30,0xff,0x44,0xff,0x41,0xff,0x6e,0xff,0x65,
0xff,0x96,0xff,0x8c,0xff,0xb2,0xff,0xaa,0xff,0xc9,0xff,0xbf,0xff,0xe7,0xff,0xd6,
0xff,0xb,0x0,0xf7,0xff,0x2e,0x0,0x1c,0x0,0x4c,0x0,0x39,0x0,0x62,0x0,0x4d,
0x0,0x71,0x0,0x65,0x0,0x7a,0x0,0x80,0x0,0x7c,0x0,0x93,0x0,0x7e,0x0,0x9c,
0x0,0x83,0x0,0x9c,0x0,0x84,0x0,0x92,0x0,0x7b,0x0,0x83,0x0,0x6d,0x0,0x72,
0x0,0x61,0x0,0x60,0x0,0x54,0x0,0x4e,0x0,0x3f,0x0,0x3a,0x0,0x22,0x0,0x23,
0x0,0xc,0x0,0x11,0x0,0xfe,0xff,0x0,0x0,0xea,0xff,0xe9,0xff,0xce,0xff,0xce,
0xff,0xad,0xff,0xb0,0xff,0x8b,0xff,0x8c,0xff,0x6e,0xff,0x69,0xff,0x5b,0xff,0x4b,
0xff,0x52,0xff,0x3a,0xff,0x59,0xff,0x40,0xff,0x6e,0xff,0x5c,0xff,0x84,0xff,0x7a,
0xff,0x8e,0xff,0x8b,0xff,0x90,0xff,0x92,0xff,0x9b,0xff,0x9a,0xff,0xb8,0xff,0xad,
0xff,0xe1,0xff,0xd0,0xff,0x1,0x0,0xfb,0xff,0x10,0x0,0x17,0x0,0x14,0x0,0x20,
0x0,0x1f,0x0,0x26,0x0,0x39,0x0,0x36,0x0,0x58,0x0,0x54,0x0,0x75,0x0,0x75,
0x0,0x82,0x0,0x80,0x0,0x7f,0x0,0x79,0x0,0x76,0x0,0x72,0x0,0x74,0x0,0x70,
0x0,0x78,0x0,0x78,0x0,0x80,0x0,0x88,0x0,0x83,0x0,0x8f,0x0,0x76,0x0,0x83,
0x0,0x5a,0x0,0x66,0x0,0x3e,0x0,0x43,0x0,0x2f,0x0,0x2d,0x0,0x29,0x0,0x26,
0x0,0x25,0x0,0x25,0x0,0x16,0x0,0x1e,0x0,0xf8,0xff,0x3,0x0,0xd7,0xff,0xdc,
0xff,0xc5,0xff,0xc3,0xff,0xc8,0xff,0xbc,0xff,0xd2,0xff,0xbe,0xff,0xd4,0xff,0xc1,
0xff,0xc8,0xff,0xbc,0xff,0xb7,0xff,0xb1,0xff,0xac,0xff,0xad,0xff,0xac,0xff,0xb6,
0xff,0xbf,0xff,0xcb,0xff,0xdf,0xff,0xe4,0xff,0xfc,0xff,0xfd,0xff,0x11,0x0,0x12,
0x0,0x20,0x0,0x20,0x0,0x23,0x0,0x22,0x0,0x25,0x0,0x22,0x0,0x31,0x0,0x29,
0x0,0x3f,0x0,0x3a,0x0,0x48,0x0,0x52,0x0,0x4c,0x0,0x64,0x0,0x4b,0x0,0x68,
0x0,0x4c,0x0,0x61,0x0,0x4d,0x0,0x58,0x0,0x46,0x0,0x51,0x0,0x37,0x0,0x48,
0x0,0x26,0x0,0x35,0x0,0x17,0x0,0x1e,0x0,0x1e,0x0,0x21,0x0,0x46,0x0,0x4b,
0x0,0x7c,0x0,0x88,0x0,0xae,0x0,0xb9,0x0,0xc7,0x0,0xc8,0x0,0xb6,0x0,0xb1,
0x0,0x8a,0x0,0x85,0x0,0x62,0x0,0x61,0x0,0x4b,0x0,0x4b,0x0,0x3f,0x0,0x38,
0x0,0x34,0x0,0x20,0x0,0x21,0x0,0x9,0x0,0x7,0x0,0xfa,0xff,0xf5,0xff,0xf5,
0xff,0xee,0xff,0xf4,0xff,0xe6,0xff,0xec,0xff,0xcb,0xff,0xd1,0xff,0x9b,0xff,0x9e,
0xff,0x68,0xff,0x6a,0xff,0x48,0xff,0x4d,0xff,0x44,0xff,0x4b,0xff,0x58,0xff,0x59,
0xff,0x77,0xff,0x72,0xff,0x93,0xff,0x91,0xff,0xa8,0xff,0xa8,0xff,0xb8,0xff,0xb2,
0xff,0xc2,0xff,0xbc,0xff,0xcd,0xff,0xd0,0xff,0xe5,0xff,0xee,0xff,0xe,0x0,0x19,
0x0,0x47,0x0,0x51,0x0,0x8a,0x0,0x95,0x0,0xd0,0x0,0xdd,0x0,0xe,0x1,0x18,
0x1,0x37,0x1,0x38,0x1,0x44,0x1,0x44,0x1,0x3f,0x1,0x42,0x1,0x34,0x1,0x36,
0x1,0x1e,0x1,0x22,0x1,0xf8,0x0,0xfb,0x0,0xc3,0x0,0xc1,0x0,0x88,0x0,0x88,
0x0,0x58,0x0,0x56,0x0,0x38,0x0,0x2a,0x0,0x1e,0x0,0x7,0x0,0xff,0xff,0xec,
0xff,0xd1,0xff,0xc8,0xff,0x90,0xff,0x93,0xff,0x4e,0xff,0x55,0xff,0x1f,0xff,0x22,
0xff,0x7,0xff,0xa,0xff,0x2,0xff,0x2,0xff,0x3,0xff,0xfd,0xfe,0x8,0xff,0xff,
0xfe,0x1c,0xff,0x13,0xff,0x49,0xff,0x3c,0xff,0x7f,0xff,0x71,0xff,0xa4,0xff,0x9b,
0xff,0xb6,0xff,0xb3,0xff,0xd0,0xff,0xd4,0xff,0x6,0x0,0x12,0x0,0x4a,0x0,0x5d,
0x0,0x88,0x0,0x96,0x0,0xb1,0x0,0xb2,0x0,0xc9,0x0,0xc4,0x0,0xe1,0x0,0xe2,
0x0,0x0,0x1,0x7,0x1,0x18,0x1,0x1e,0x1,0x1e,0x1,0x23,0x1,0x13,0x1,0x1a,
0x1,0xf7,0x0,0xfd,0x0,0xcf,0x0,0xd3,0x0,0xa1,0x0,0xa4,0x0,0x6e,0x0,0x73,
0x0,0x3a,0x0,0x41,0x0,0xa,0x0,0xd,0x0,0xda,0xff,0xd4,0xff,0xab,0xff,0x9e,
0xff,0x84,0xff,0x73,0xff,0x74,0xff,0x5b,0xff,0x79,0xff,0x5d,0xff,0x80,0xff,0x6e,
0xff,0x76,0xff,0x77,0xff,0x63,0xff,0x6d,0xff,0x52,0xff,0x56,0xff,0x4b,0xff,0x45,
0xff,0x56,0xff,0x4a,0xff,0x72,0xff,0x64,0xff,0x91,0xff,0x86,0xff,0xae,0xff,0xa3,
0xff,0xc9,0xff,0xbf,0xff,0xe3,0xff,0xe3,0xff,0xfe,0xff,0xc,0x0,0x1f,0x0,0x31,
0x0,0x40,0x0,0x4d,0x0,0x5e,0x0,0x63,0x0,0x6f,0x0,0x70,0x0,0x6b,0x0,0x6e,
0x0,0x58,0x0,0x60,0x0,0x4e,0x0,0x56,0x0,0x54,0x0,0x58,0x0,0x66,0x0,0x62,
0x0,0x76,0x0,0x71,0x0,0x76,0x0,0x7a,0x0,0x66,0x0,0x75,0x0,0x55,0x0,0x69,
0x0,0x4e,0x0,0x5f,0x0,0x52,0x0,0x56,0x0,0x57,0x0,0x4c,0x0,0x4c,0x0,0x38,
0x0,0x2b,0x0,0x1d,0x0,0xff,0xff,0xff,0xff,0xd7,0xff,0xde,0xff,0xc3,0xff,0xc2,
0xff,0xc1,0xff,0xb4,0xff,0xbc,0xff,0xaf,0xff,0xab,0xff,0xa7,0xff,0x94,0xff,0x94,
0xff,0x7d,0xff,0x7d,0xff,0x74,0xff,0x72,0xff,0x82,0xff,0x7f,0xff,0x9c,0xff,0x9b,
0xff,0xbc,0xff,0xc0,0xff,0xe1,0xff,0xe9,0xff,0xff,0xff,0x8,0x0,0xc,0x0,0x16,
0x0,0x3,0x0,0xe,0x0,0xf2,0xff,0xfa,0xff,0xf1,0xff,0xf9,0xff,0x12,0x0,0x1a,
0x0,0x41,0x0,0x43,0x0,0x60,0x0,0x53,0x0,0x60,0x0,0x4d,0x0,0x50,0x0,0x43,
0x0,0x4a,0x0,0x48,0x0,0x5a,0x0,0x60,0x0,0x70,0x0,0x79,0x0,0x7f,0x0,0x81,
0x0,0x7e,0x0,0x74,0x0,0x6e,0x0,0x5c,0x0,0x5a,0x0,0x4c,0x0,0x4f,0x0,0x4f,
0x0,0x4b,0x0,0x5b,0x0,0x4b,0x0,0x60,0x0,0x47,0x0,0x50,0x0,0x31,0x0,0x29,
0x0,0xa,0x0,0xfb,0xff,0xdb,0xff,0xd8,0xff,0xb2,0xff,0xc2,0xff,0xa0,0xff,0xb3,
0xff,0xa8,0xff,0xac,0xff,0xbb,0xff,0xb3,0xff,0xc7,0xff,0xc5,0xff,0xc9,0xff,0xd7,
0xff,0xc9,0xff,0xdd,0xff,0xcd,0xff,0xd9,0xff,0xd4,0xff,0xd4,0xff,0xe2,0xff,0xd9,
0xff,0xf9,0xff,0xed,0xff,0x11,0x0,0xb,0x0,0x23,0x0,0x20,0x0,0x2d,0x0,0x27,
0x0,0x30,0x0,0x25,0x0,0x32,0x0,0x25,0x0,0x3b,0x0,0x2c,0x0,0x4c,0x0,0x3b,
0x0,0x5a,0x0,0x48,0x0,0x57,0x0,0x46,0x0,0x42,0x0,0x32,0x0,0x27,0x0,0x1b,
0x0,0x1d,0x0,0x15,0x0,0x30,0x0,0x29,0x0,0x4e,0x0,0x49,0x0,0x5a,0x0,0x5a,
0x0,0x4e,0x0,0x50,0x0,0x35,0x0,0x3b,0x0,0x28,0x0,0x2c,0x0,0x33,0x0,0x29,
0x0,0x3f,0x0,0x31,0x0,0x3a,0x0,0x38,0x0,0x31,0x0,0x3e,0x0,0x2a,0x0,0x48,
0x0,0x23,0x0,0x48,0x0,0x1d,0x0,0x32,0x0,0x13,0x0,0x18,0x0,0x6,0x0,0xa,
0x0,0x3,0x0,0xa,0x0,0xa,0x0,0xf,0x0,0x13,0x0,0xf,0x0,0x1f,0x0,0xa,
0x0,0x25,0x0,0x7,0x0,0x1d,0x0,0x4,0x0,0xa,0x0,0xfe,0xff,0xf6,0xff,0xf5,
0xff,0xef,0xff,0xec,0xff,0xf4,0xff,0xe7,0xff,0xf8,0xff,0xe2,0xff,0xf3,0xff,0xd9,
0xff,0xe8,0xff,0xd0,0xff,0xe3,0xff,0xcf,0xff,0xed,0xff,0xdf,0xff,0x3,0x0,0xf7,
0xff,0x19,0x0,0xf,0x0,0x2e,0x0,0x29,0x0,0x44,0x0,0x45,0x0,0x55,0x0,0x5d,
0x0,0x62,0x0,0x67,0x0,0x6a,0x0,0x67,0x0,0x70,0x0,0x6d,0x0,0x7e,0x0,0x7c,
0x0,0x88,0x0,0x87,0x0,0x81,0x0,0x84,0x0,0x6c,0x0,0x74,0x0,0x55,0x0,0x60,
0x0,0x49,0x0,0x52,0x0,0x4b,0x0,0x4f,0x0,0x4c,0x0,0x4e,0x0,0x44,0x0,0x4a,
0x0,0x37,0x0,0x3f,0x0,0x26,0x0,0x2e,0x0,0x18,0x0,0x20,0x0,0x15,0x0,0x15,
0x0,0x12,0x0,0xb,0x0,0x8,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0xf6,0xff,0xf7,
0xff,0xdf,0xff,0xdf,0xff,0xc6,0xff,0xbc,0xff,0xb8,0xff,0xa0,0xff,0xbd,0xff,0xa1,
0xff,0xd2,0xff,0xbe,0xff,0xeb,0xff,0xe2,0xff,0xfb,0xff,0xf8,0xff,0x2,0x0,0xfc,
0xff,0x6,0x0,0xfc,0xff,0x12,0x0,0x3,0x0,0x28,0x0,0x13,0x0,0x41,0x0,0x2b,
0x0,0x51,0x0,0x42,0x0,0x51,0x0,0x4e,0x0,0x46,0x0,0x4d,0x0,0x39,0x0,0x43,
0x0,0x35,0x0,0x3d,0x0,0x3a,0x0,0x3f,0x0,0x41,0x0,0x45,0x0,0x42,0x0,0x48,
0x0,0x3b,0x0,0x42,0x0,0x29,0x0,0x2e,0x0,0x19,0x0,0x16,0x0,0x16,0x0,0x11,
0x0,0x20,0x0,0x25,0x0,0x2e,0x0,0x44,0x0,0x35,0x0,0x57,0x0,0x2d,0x0,0x50,
0x0,0x1e,0x0,0x37,0x0,0x10,0x0,0x1a,0x0,0xa,0x0,0xa,0x0,0xc,0x0,0xa,
0x0,0xa,0x0,0x8,0x0,0xf8,0xff,0xf2,0xff,0xe0,0xff,0xd7,0xff,0xd6,0xff,0xca,
0xff,0xe3,0xff,0xd6,0xff,0xff,0xff,0xf1,0xff,0x12,0x0,0x4,0x0,0xe,0x0,0x0,
0x0,0x0,0x0,0xef,0xff,0xf6,0xff,0xde,0xff,0xf4,0xff,0xd8,0xff,0xf6,0xff,0xdd,
0xff,0xf4,0xff,0xe3,0xff,0xf2,0xff,0xe7,0xff,0xf1,0xff,0xea,0xff,0xeb,0xff,0xe8,
0xff,0xe3,0xff,0xe7,0xff,0xe4,0xff,0xed,0xff,0xf1,0xff,0xf8,0xff,0x7,0x0,0x9,
0x0,0x1d,0x0,0x20,0x0,0x25,0x0,0x30,0x0,0x20,0x0,0x35,0x0,0x20,0x0,0x37,
0x0,0x29,0x0,0x3b,0x0,0x35,0x0,0x47,0x0,0x42,0x0,0x55,0x0,0x48,0x0,0x57,
0x0,0x3c,0x0,0x4a,0x0,0x23,0x0,0x39,0x0,0x10,0x0,0x2d,0x0,0x10,0x0,0x25,
0x0,0x19,0x0,0x20,0x0,0x1c,0x0,0x15,0x0,0xf,0x0,0x2,0x0,0xfa,0xff,0xf1,
0xff,0xf3,0xff,0xed,0xff,0xfd,0xff,0xf7,0xff,0xe,0x0,0x3,0x0,0x16,0x0,0x1,
0x0,0xe,0x0,0xf5,0xff,0xfd,0xff,0xea,0xff,0xed,0xff,0xdf,0xff,0xe2,0xff,0xd6,
0xff,0xdb,0xff,0xd0,0xff,0xd4,0xff,0xcf,0xff,0xcb,0xff,0xcd,0xff,0xc3,0xff,0xc6,
0xff,0xc1,0xff,0xc1,0xff,0xc9,0xff,0xce,0xff,0xe2,0xff,0xed,0xff,0x0,0x0,0xc,
0x0,0x12,0x0,0x1d,0x0,0x17,0x0,0x1f,0x0,0x18,0x0,0x1b,0x0,0x17,0x0,0x1a,
0x0,0x18,0x0,0x1d,0x0,0x1d,0x0,0x21,0x0,0x21,0x0,0x2b,0x0,0x29,0x0,0x3c,
0x0,0x35,0x0,0x4a,0x0,0x38,0x0,0x46,0x0,0x2f,0x0,0x30,0x0,0x22,0x0,0x1f,
0x0,0x1a,0x0,0x1c,0x0,0x16,0x0,0x19,0x0,0x9,0x0,0x7,0x0,0xf6,0xff,0xeb,
0xff,0xeb,0xff,0xda,0xff,0xef,0xff,0xe0,0xff,0xf6,0xff,0xef,0xff,0xf6,0xff,0xf3,
0xff,0xf3,0xff,0xed,0xff,0xf9,0xff,0xf2,0xff,0x8,0x0,0x9,0x0,0xb,0x0,0x14,
0x0,0xe7,0xff,0xf1,0xff,0xab,0xff,0xb1,0xff,0x93,0xff,0x97,0xff,0xc3,0xff,0xc3,
0xff,0x6,0x0,0x2,0x0,0xf,0x0,0x9,0x0,0xe4,0xff,0xdf,0xff,0xcc,0xff,0xc4,
0xff,0xea,0xff,0xdd,0xff,0x21,0x0,0x15,0x0,0x3c,0x0,0x38,0x0,0x2b,0x0,0x2f,
0x0,0x7,0x0,0x11,0x0,0xf2,0xff,0xfd,0xff,0xf3,0xff,0xf8,0xff,0xfd,0xff,0xfe,
0xff,0x10,0x0,0x16,0x0,0x31,0x0,0x3c,0x0,0x48,0x0,0x55,0x0,0x3b,0x0,0x42,
0x0,0x14,0x0,0xe,0x0,0xf8,0xff,0xea,0xff,0xfc,0xff,0xec,0xff,0xb,0x0,0x3,
0x0,0xc,0x0,0xc,0x0,0xfc,0xff,0xfe,0xff,0xe8,0xff,0xe5,0xff,0xdf,0xff,0xd9,
0xff,0xe7,0xff,0xe1,0xff,0xf2,0xff,0xf5,0xff,0xf4,0xff,0x3,0x0,0xf6,0xff,0x5,
0x0,0xf7,0xff,0xfc,0xff,0xec,0xff,0xe6,0xff,0xd7,0xff,0xce,0xff,0xcd,0xff,0xc7,
0xff,0xdd,0xff,0xd9,0xff,0xff,0xff,0xf9,0xff,0x14,0x0,0x10,0x0,0x10,0x0,0x12,
0x0,0x1,0x0,0xb,0x0,0xf8,0xff,0x7,0x0,0xfa,0xff,0x7,0x0,0xfe,0xff,0x6,
0x0,0x0,0x0,0x2,0x0,0xfa,0xff,0xfb,0xff,0xf3,0xff,0xf6,0xff,0xf5,0xff,0xf8,
0xff,0xff,0xff,0xfe,0xff,0xd,0x0,0x6,0x0,0x1a,0x0,0xc,0x0,0x1d,0x0,0xc,
0x0,0xf,0x0,0xfe,0xff,0xf8,0xff,0xe6,0xff,0xec,0xff,0xd5,0xff,0xea,0xff,0xd4,
0xff,0xe3,0xff,0xd3,0xff,0xd7,0xff,0xcf,0xff,0xd0,0xff,0xd0,0xff,0xd2,0xff,0xd6,
0xff,0xda,0xff,0xde,0xff,0xe6,0xff,0xed,0xff,0xf2,0xff,0xfd,0xff,0xfb,0xff,0x5,
0x0,0xfc,0xff,0x4,0x0,0xfa,0xff,0x0,0x0,0x1,0x0,0x5,0x0,0x11,0x0,0x18,
0x0,0x24,0x0,0x2f,0x0,0x30,0x0,0x41,0x0,0x2e,0x0,0x45,0x0,0x22,0x0,0x38,
0x0,0x1e,0x0,0x27,0x0,0x25,0x0,0x23,0x0,0x2e,0x0,0x2b,0x0,0x31,0x0,0x36,
0x0,0x27,0x0,0x35,0x0,0x18,0x0,0x27,0x0,0x13,0x0,0x17,0x0,0x11,0x0,0x7,
0x0,0xc,0x0,0xf7,0xff,0x13,0x0,0xf2,0xff,0x1b,0x0,0xf5,0xff,0xd,0x0,0xea,
0xff,0xed,0xff,0xd0,0xff,0xcf,0xff,0xb6,0xff,0xbe,0xff,0xa7,0xff,0xc2,0xff,0xaf,
0xff,0xd0,0xff,0xc6,0xff,0xd2,0xff,0xd4,0xff,0xc7,0xff,0xc9,0xff,0xba,0xff,0xb7,
0xff,0xb9,0xff,0xb0,0xff,0xc8,0xff,0xbe,0xff,0xde,0xff,0xd9,0xff,0xec,0xff,0xf2,
0xff,0xf1,0xff,0x2,0x0,0xed,0xff,0x9,0x0,0xea,0xff,0xa,0x0,0xf5,0xff,0xf,
0x0,0x9,0x0,0x1c,0x0,0x20,0x0,0x30,0x0,0x32,0x0,0x43,0x0,0x31,0x0,0x4c,
0x0,0x28,0x0,0x4a,0x0,0x27,0x0,0x44,0x0,0x32,0x0,0x40,0x0,0x41,0x0,0x3f,
0x0,0x49,0x0,0x3d,0x0,0x3e,0x0,0x30,0x0,0x22,0x0,0x16,0x0,0xa,0x0,0xfe,
0xff,0x2,0x0,0xf5,0xff,0x7,0x0,0xf6,0xff,0xc,0x0,0xf4,0xff,0x2,0x0,0xe8,
0xff,0xe5,0xff,0xd3,0xff,0xc5,0xff,0xbe,0xff,0xb3,0xff,0xb3,0xff,0xb0,0xff,0xb5,
0xff,0xb6,0xff,0xb9,0xff,0xbd,0xff,0xb6,0xff,0xbe,0xff,0xb3,0xff,0xb6,0xff,0xb2,
0xff,0xaf,0xff,0xb3,0xff,0xae,0xff,0xbd,0xff,0xb7,0xff,0xcd,0xff,0xc8,0xff,0xd5,
0xff,0xd3,0xff,0xd1,0xff,0xce,0xff,0xcb,0xff,0xc5,0xff,0xd2,0xff,0xcc,0xff,0xe8,
0xff,0xe9,0xff,0x5,0x0,0xb,0x0,0x19,0x0,0x18,0x0,0x1f,0x0,0x14,0x0,0x1f,
0x0,0x10,0x0,0x1f,0x0,0x11,0x0,0x20,0x0,0x15,0x0,0x23,0x0,0x1a,0x0,0x24,
0x0,0x1d,0x0,0x22,0x0,0x21,0x0,0x1c,0x0,0x1e,0x0,0xd,0x0,0x9,0x0,0xf9,
0xff,0xf5,0xff,0xed,0xff,0xf3,0xff,0xec,0xff,0xf7,0xff,0xec,0xff,0xf6,0xff,0xe6,
0xff,0xed,0xff,0xe2,0xff,0xda,0xff,0xe5,0xff,0xcc,0xff,0xea,0xff,0xcf,0xff,0xe9,
0xff,0xdb,0xff,0xe1,0xff,0xe0,0xff,0xd6,0xff,0xe0,0xff,0xcf,0xff,0xe3,0xff,0xd4,
0xff,0xe9,0xff,0xde,0xff,0xe2,0xff,0xdd,0xff,0xcf,0xff,0xcf,0xff,0xbe,0xff,0xc5,
0xff,0xbc,0xff,0xc7,0xff,0xc3,0xff,0xd1,0xff,0xc5,0xff,0xd7,0xff,0xbe,0xff,0xd4,
0xff,0xb8,0xff,0xcf,0xff,0xbc,0xff,0xd1,0xff,0xcd,0xff,0xdc,0xff,0xe3,0xff,0xed,
0xff,0xee,0xff,0xfd,0xff,0xec,0xff,0x5,0x0,0xeb,0xff,0x6,0x0,0xef,0xff,0xff,
0xff,0xf4,0xff,0xf4,0xff,0xf7,0xff,0xed,0xff,0xfc,0xff,0xf2,0xff,0x8,0x0,0x3,
0x0,0x14,0x0,0x14,0x0,0x17,0x0,0x1a,0x0,0x1a,0x0,0x16,0x0,0x1d,0x0,0x12,
0x0,0x19,0x0,0x14,0x0,0xc,0x0,0x15,0x0,0xff,0xff,0xe,0x0,0xf5,0xff,0x2,
0x0,0xf1,0xff,0xf6,0xff,0xef,0xff,0xeb,0xff,0xe9,0xff,0xe3,0xff,0xdd,0xff,0xdd,
0xff,0xd6,0xff,0xd9,0xff,0xda,0xff,0xda,0xff,0xdc,0xff,0xdf,0xff,0xd5,0xff,0xd9,
0xff,0xc4,0xff,0xc6,0xff,0xa7,0xff,0xad,0xff,0x8e,0xff,0x9e,0xff,0x8c,0xff,0xa1,
0xff,0x9e,0xff,0xb0,0xff,0xb7,0xff,0xc2,0xff,0xcd,0xff,0xd3,0xff,0xd3,0xff,0xdc,
0xff,0xcf,0xff,0xdd,0xff,0xd1,0xff,0xdd,0xff,0xd8,0xff,0xe1,0xff,0xe3,0xff,0xeb,
0xff,0xf1,0xff,0xf7,0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0xf8,0xff,0x0,0x0,0xfb,
0xff,0xd,0x0,0xd,0x0,0x27,0x0,0x28,0x0,0x41,0x0,0x41,0x0,0x4a,0x0,0x49,
0x0,0x41,0x0,0x3b,0x0,0x30,0x0,0x2b,0x0,0x22,0x0,0x24,0x0,0x17,0x0,0x1c,
0x0,0x5,0x0,0xd,0x0,0xec,0xff,0xfd,0xff,0xdd,0xff,0xf2,0xff,0xda,0xff,0xe6,
0xff,0xd9,0xff,0xd4,0xff,0xd2,0xff,0xbe,0xff,0xc5,0xff,0xb1,0xff,0xb7,0xff,0xb2,
0xff,0xb0,0xff,0xb8,0xff,0xb0,0xff,0xb7,0xff,0xb2,0xff,0xaf,0xff,0xb4,0xff,0xa9,
0xff,0xb8,0xff,0xae,0xff,0xbf,0xff,0xbc,0xff,0xc5,0xff,0xc9,0xff,0xcb,0xff,0xd5,
0xff,0xd4,0xff,0xde,0xff,0xdd,0xff,0xe3,0xff,0xdf,0xff,0xe0,0xff,0xda,0xff,0xd6,
0xff,0xd5,0xff,0xd0,0xff,0xd5,0xff,0xd6,0xff,0xdd,0xff,0xe3,0xff,0xec,0xff,0xeb,
0xff,0xf8,0xff,0xec,0xff,0xf9,0xff,0xe9,0xff,0xec,0xff,0xe8,0xff,0xd9,0xff,0xed,
0xff,0xd8,0xff,0xf5,0xff,0xeb,0xff,0xf8,0xff,0xf8,0xff,0xf4,0xff,0xfc,0xff,0xf6,
0xff,0xd,0x0,0xc,0x0,0x2b,0x0,0x2e,0x0,0x42,0x0,0x48,0x0,0x46,0x0,0x49,
0x0,0x2e,0x0,0x2e,0x0,0x7,0x0,0x5,0x0,0xef,0xff,0xea,0xff,0xec,0xff,0xe7,
0xff,0xec,0xff,0xee,0xff,0xe7,0xff,0xee,0xff,0xe4,0xff,0xe2,0xff,0xe2,0xff,0xd5,
0xff,0xe5,0xff,0xd5,0xff,0xe9,0xff,0xdf,0xff,0xe1,0xff,0xe6,0xff,0xce,0xff,0xdf,
0xff,0xb7,0xff,0xc3,0xff,0x9b,0xff,0x99,0xff,0x7e,0xff,0x74,0xff,0x6c,0xff,0x66,
0xff,0x6f,0xff,0x6f,0xff,0x83,0xff,0x83,0xff,0x96,0xff,0x92,0xff,0xa3,0xff,0x9b,
0xff,0xa9,0xff,0x9f,0xff,0xab,0xff,0xa4,0xff,0xb6,0xff,0xb4,0xff,0xce,0xff,0xce,
0xff,0xe4,0xff,0xe5,0xff,0xf7,0xff,0xf8,0xff,0x9,0x0,0xc,0x0,0x18,0x0,0x21,
0x0,0x22,0x0,0x37,0x0,0x2f,0x0,0x50,0x0,0x43,0x0,0x65,0x0,0x5b,0x0,0x74,
0x0,0x6d,0x0,0x78,0x0,0x6e,0x0,0x76,0x0,0x67,0x0,0x74,0x0,0x5e,0x0,0x6b,
0x0,0x50,0x0,0x55,0x0,0x38,0x0,0x38,0x0,0x13,0x0,0x17,0x0,0xe9,0xff,0xed,
0xff,0xc9,0xff,0xc6,0xff,0xb4,0xff,0xac,0xff,0xa4,0xff,0x9d,0xff,0x95,0xff,0x8f,
0xff,0x83,0xff,0x81,0xff,0x74,0xff,0x70,0xff,0x71,0xff,0x64,0xff,0x75,0xff,0x66,
0xff,0x78,0xff,0x73,0xff,0x7c,0xff,0x81,0xff,0x80,0xff,0x89,0xff,0x89,0xff,0x8e,
0xff,0x9a,0xff,0x99,0xff,0xae,0xff,0xae,0xff,0xc6,0xff,0xca,0xff,0xdd,0xff,0xe5,
0xff,0xee,0xff,0xfd,0xff,0x0,0x0,0x14,0x0,0x15,0x0,0x28,0x0,0x28,0x0,0x35,
0x0,0x34,0x0,0x3d,0x0,0x39,0x0,0x42,0x0,0x3f,0x0,0x4a,0x0,0x49,0x0,0x54,
0x0,0x50,0x0,0x58,0x0,0x51,0x0,0x54,0x0,0x4e,0x0,0x4a,0x0,0x40,0x0,0x40,
0x0,0x25,0x0,0x33,0x0,0xa,0x0,0x1e,0x0,0xf5,0xff,0xff,0xff,0xe5,0xff,0xe4,
0xff,0xd9,0xff,0xd0,0xff,0xc9,0xff,0xb9,0xff,0xb0,0xff,0xa0,0xff,0x99,0xff,0x91,
0xff,0x93,0xff,0x90,0xff,0x99,0xff,0x98,0xff,0x9f,0xff,0xa2,0xff,0xa0,0xff,0xa5,
0xff,0x9f,0xff,0xa5,0xff,0xa8,0xff,0xac,0xff,0xbf,0xff,0xbb,0xff,0xd8,0xff,0xcc,
0xff,0xe5,0xff,0xdc,0xff,0xe7,0xff,0xe8,0xff,0xe4,0xff,0xf2,0xff,0xe8,0xff,0xf9,
0xff,0xf2,0xff,0x0,0x0,0xf9,0xff,0x6,0x0,0xfe,0xff,0x8,0x0,0x6,0x0,0xa,
0x0,0xb,0x0,0xc,0x0,0xd,0x0,0xa,0x0,0xe,0x0,0x6,0x0,0xa,0x0,0x5,
0x0,0x3,0x0,0x8,0x0,0xff,0xff,0xc,0x0,0xff,0xff,0x10,0x0,0xf9,0xff,0xc,
0x0,0xed,0xff,0xff,0xff,0xe3,0xff,0xef,0xff,0xe3,0xff,0xe1,0xff,0xe6,0xff,0xd8,
0xff,0xe3,0xff,0xd8,0xff,0xda,0xff,0xde,0xff,0xcd,0xff,0xe0,0xff,0xc4,0xff,0xd8,
0xff,0xc5,0xff,0xcc,0xff,0xc9,0xff,0xc3,0xff,0xc9,0xff,0xbf,0xff,0xc7,0xff,0xbe,
0xff,0xc5,0xff,0xbd,0xff,0xc2,0xff,0xbf,0xff,0xc7,0xff,0xc9,0xff,0xd4,0xff,0xda,
0xff,0xe2,0xff,0xe9,0xff,0xea,0xff,0xf1,0xff,0xec,0xff,0xf4,0xff,0xe9,0xff,0xf2,
0xff,0xea,0xff,0xf0,0xff,0xf3,0xff,0xf8,0xff,0xfc,0xff,0x4,0x0,0xfd,0xff,0x3,
0x0,0xf5,0xff,0xf7,0xff,0xec,0xff,0xea,0xff,0xea,0xff,0xe8,0xff,0xe9,0xff,0xf1,
0xff,0xe4,0xff,0xfa,0xff,0xde,0xff,0xf6,0xff,0xd8,0xff,0xe6,0xff,0xd5,0xff,0xd6,
0xff,0xd4,0xff,0xd3,0xff,0xd4,0xff,0xdb,0xff,0xd7,0xff,0xde,0xff,0xdd,0xff,0xdb,
0xff,0xd9,0xff,0xd5,0xff,0xce,0xff,0xcb,0xff,0xcb,0xff,0xc7,0xff,0xd4,0xff,0xd0,
0xff,0xe4,0xff,0xe0,0xff,0xee,0xff,0xef,0xff,0xea,0xff,0xf6,0xff,0xe0,0xff,0xef,
0xff,0xdc,0xff,0xdf,0xff,0xe1,0xff,0xd9,0xff,0xed,0xff,0xe3,0xff,0xf4,0xff,0xf3,
0xff,0xf3,0xff,0x2,0x0,0xf7,0xff,0xc,0x0,0x2,0x0,0x12,0x0,0x9,0x0,0x12,
0x0,0x3,0x0,0xd,0x0,0xf7,0xff,0x4,0x0,0xef,0xff,0xfd,0xff,0xec,0xff,0xf7,
0xff,0xe7,0xff,0xf2,0xff,0xe6,0xff,0xed,0xff,0xed,0xff,0xe9,0xff,0xf2,0xff,0xe7,
0xff,0xeb,0xff,0xe6,0xff,0xdd,0xff,0xe2,0xff,0xd3,0xff,0xe1,0xff,0xd6,0xff,0xe1,
0xff,0xe0,0xff,0xdd,0xff,0xe5,0xff,0xd9,0xff,0xe6,0xff,0xdb,0xff,0xe4,0xff,0xe4,
0xff,0xe2,0xff,0xeb,0xff,0xdf,0xff,0xec,0xff,0xd7,0xff,0xe3,0xff,0xd1,0xff,0xd7,
0xff,0xd9,0xff,0xdc,0xff,0xec,0xff,0xf2,0xff,0xff,0xff,0x9,0x0,0xd,0x0,0x17,
0x0,0x12,0x0,0x1c,0x0,0x1f,0x0,0x21,0x0,0x35,0x0,0x2d,0x0,0x3e,0x0,0x30,
0x0,0x2f,0x0,0x1f,0x0,0x12,0x0,0x8,0x0,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xff,
0xff,0x2,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0xf3,0xff,0xf3,0xff,0xe6,0xff,0xe4,
0xff,0xe5,0xff,0xe3,0xff,0xe9,0xff,0xe6,0xff,0xe4,0xff,0xe6,0xff,0xd7,0xff,0xdb,
0xff,0xcd,0xff,0xcc,0xff,0xca,0xff,0xc5,0xff,0xca,0xff,0xc6,0xff,0xcb,0xff,0xc6,
0xff,0xce,0xff,0xc9,0xff,0xd5,0xff,0xd0,0xff,0xd9,0xff,0xd5,0xff,0xd6,0xff,0xd4,
0xff,0xcf,0xff,0xd0,0xff,0xc9,0xff,0xcb,0xff,0xc9,0xff,0xd1,0xff,0xd6,0xff,0xe4,
0xff,0xe4,0xff,0xf6,0xff,0xeb,0xff,0xfd,0xff,0xef,0xff,0xfd,0xff,0xf6,0xff,0xff,
0xff,0x5,0x0,0xa,0x0,0x18,0x0,0x1c,0x0,0x26,0x0,0x27,0x0,0x27,0x0,0x25,
0x0,0x1d,0x0,0x18,0x0,0x11,0x0,0xa,0x0,0xb,0x0,0x4,0x0,0x6,0x0,0x4,
0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x2,0x0,0xfb,0xff,0xf8,0xff,0xef,0xff,0xeb,
0xff,0xdc,0xff,0xdc,0xff,0xc9,0xff,0xce,0xff,0xc4,0xff,0xc6,0xff,0xca,0xff,0xc6,
0xff,0xd2,0xff,0xcb,0xff,0xd5,0xff,0xd2,0xff,0xd4,0xff,0xd5,0xff,0xd2,0xff,0xcf,
0xff,0xd1,0xff,0xc4,0xff,0xcd,0xff,0xbc,0xff,0xc9,0xff,0xc1,0xff,0xcc,0xff,0xd1,
0xff,0xd5,0xff,0xdb,0xff,0xd5,0xff,0xd2,0xff,0xca,0xff,0xc3,0xff,0xc4,0xff,0xbd,
0xff,0xce,0xff,0xcd,0xff,0xe9,0xff,0xf1,0xff,0x3,0x0,0xe,0x0,0x7,0x0,0xc,
0x0,0xf9,0xff,0xf8,0xff,0xf7,0xff,0xf1,0xff,0xa,0x0,0x3,0x0,0x22,0x0,0x1b,
0x0,0x28,0x0,0x1c,0x0,0xe,0x0,0x5,0x0,0xec,0xff,0xed,0xff,0xe1,0xff,0xe7,
0xff,0xeb,0xff,0xee,0xff,0xee,0xff,0xf0,0xff,0xe3,0xff,0xe6,0xff,0xdc,0xff,0xdf,
0xff,0xea,0xff,0xea,0xff,0x4,0x0,0xfc,0xff,0x11,0x0,0x6,0x0,0x4,0x0,0xff,
0xff,0xed,0xff,0xed,0xff,0xe5,0xff,0xe5,0xff,0xf1,0xff,0xed,0xff,0xf9,0xff,0xf6,
0xff,0xed,0xff,0xf1,0xff,0xe3,0xff,0xe5,0xff,0xed,0xff,0xe5,0xff,0x1,0x0,0xf6,
0xff,0xb,0x0,0x6,0x0,0x0,0x0,0x1,0x0,0xf5,0xff,0xf8,0xff,0xfe,0xff,0xfd,
0xff,0x10,0x0,0xd,0x0,0xe,0x0,0x11,0x0,0xee,0xff,0xf4,0xff,0xc3,0xff,0xc3,
0xff,0xa7,0xff,0xa1,0xff,0xa7,0xff,0x9e,0xff,0xb5,0xff,0xad,0xff,0xbd,0xff,0xba,
0xff,0xbc,0xff,0xb9,0xff,0xbc,0xff,0xb5,0xff,0xc7,0xff,0xbf,0xff,0xdc,0xff,0xda,
0xff,0xf8,0xff,0xf9,0xff,0x11,0x0,0xf,0x0,0x1f,0x0,0x16,0x0,0x1d,0x0,0xe,
0x0,0xe,0x0,0x2,0x0,0xfd,0xff,0xf7,0xff,0xfd,0xff,0xfb,0xff,0x13,0x0,0x12,
0x0,0x2e,0x0,0x2e,0x0,0x3c,0x0,0x3d,0x0,0x36,0x0,0x39,0x0,0x29,0x0,0x30,
0x0,0x26,0x0,0x2e,0x0,0x2c,0x0,0x34,0x0,0x2f,0x0,0x35,0x0,0x29,0x0,0x2a,
0x0,0x18,0x0,0x18,0x0,0xff,0xff,0x4,0x0,0xe5,0xff,0xf0,0xff,0xcc,0xff,0xd8,
0xff,0xb5,0xff,0xc5,0xff,0xa6,0xff,0xb8,0xff,0x98,0xff,0xa9,0xff,0x87,0xff,0x96,
0xff,0x7c,0xff,0x83,0xff,0x78,0xff,0x75,0xff,0x78,0xff,0x79,0xff,0x83,0xff,0x8c,
0xff,0x9d,0xff,0xa1,0xff,0xc2,0xff,0xbc,0xff,0xf0,0xff,0xe1,0xff,0x13,0x0,0x4,
0x0,0x20,0x0,0x17,0x0,0x21,0x0,0x16,0x0,0x20,0x0,0xc,0x0,0x27,0x0,0x13,
0x0,0x39,0x0,0x30,0x0,0x49,0x0,0x4a,0x0,0x4c,0x0,0x51,0x0,0x44,0x0,0x44,
0x0,0x36,0x0,0x31,0x0,0x35,0x0,0x34,0x0,0x46,0x0,0x50,0x0,0x4f,0x0,0x62,
0x0,0x47,0x0,0x55,0x0,0x2f,0x0,0x35,0x0,0xd,0x0,0x12,0x0,0xee,0xff,0xf9,
0xff,0xda,0xff,0xeb,0xff,0xc4,0xff,0xda,0xff,0xab,0xff,0xbe,0xff,0x91,0xff,0x9a,
0xff,0x7b,0xff,0x7c,0xff,0x76,0xff,0x71,0xff,0x84,0xff,0x7e,0xff,0x99,0xff,0x97,
0xff,0xb4,0xff,0xae,0xff,0xcf,0xff,0xc5,0xff,0xe5,0xff,0xda,0xff,0xf7,0xff,0xeb,
0xff,0x7,0x0,0xfb,0xff,0x16,0x0,0xe,0x0,0x24,0x0,0x1c,0x0,0x31,0x0,0x24,
0x0,0x39,0x0,0x28,0x0,0x3a,0x0,0x2c,0x0,0x3e,0x0,0x36,0x0,0x40,0x0,0x41,
0x0,0x36,0x0,0x3f,0x0,0x2c,0x0,0x37,0x0,0x2f,0x0,0x3a,0x0,0x37,0x0,0x42,
0x0,0x38,0x0,0x41,0x0,0x2a,0x0,0x33,0x0,0xc,0x0,0x19,0x0,0xf3,0xff,0xfc,
0xff,0xeb,0xff,0xea,0xff,0xe9,0xff,0xe3,0xff,0xdf,0xff,0xd9,0xff,0xc7,0xff,0xc6,
0xff,0xae,0xff,0xb7,0xff,0xad,0xff,0xb8,0xff,0xc1,0xff,0xc8,0xff,0xd8,0xff,0xdc,
0xff,0xe6,0xff,0xe6,0xff,0xea,0xff,0xe8,0xff,0xef,0xff,0xef,0xff,0xff,0xff,0xfb,
0xff,0xf,0x0,0x7,0x0,0x1e,0x0,0x12,0x0,0x2e,0x0,0x21,0x0,0x36,0x0,0x33,
0x0,0x3a,0x0,0x44,0x0,0x40,0x0,0x4b,0x0,0x46,0x0,0x4d,0x0,0x4e,0x0,0x50,
0x0,0x59,0x0,0x51,0x0,0x5b,0x0,0x51,0x0,0x4e,0x0,0x4f,0x0,0x3b,0x0,0x44,
0x0,0x28,0x0,0x34,0x0,0x19,0x0,0x26,0x0,0xe,0x0,0x18,0x0,0x1,0x0,0x8,
0x0,0xf0,0xff,0xf9,0xff,0xe3,0xff,0xeb,0xff,0xda,0xff,0xdf,0xff,0xd3,0xff,0xd5,
0xff,0xd0,0xff,0xd3,0xff,0xd4,0xff,0xd9,0xff,0xe1,0xff,0xe5,0xff,0xee,0xff,0xef,
0xff,0xef,0xff,0xf0,0xff,0xe7,0xff,0xeb,0xff,0xe7,0xff,0xf1,0xff,0xf9,0xff,0x5,
0x0,0x11,0x0,0x16,0x0,0x20,0x0,0x1f,0x0,0x27,0x0,0x25,0x0,0x33,0x0,0x33,
0x0,0x4a,0x0,0x50,0x0,0x64,0x0,0x73,0x0,0x72,0x0,0x82,0x0,0x6c,0x0,0x71,
0x0,0x58,0x0,0x53,0x0,0x48,0x0,0x41,0x0,0x3f,0x0,0x39,0x0,0x38,0x0,0x35,
0x0,0x2e,0x0,0x2c,0x0,0x24,0x0,0x20,0x0,0x21,0x0,0x1b,0x0,0x1e,0x0,0x19,
0x0,0x15,0x0,0xc,0x0,0xb,0x0,0xf8,0xff,0xfc,0xff,0xee,0xff,0xeb,0xff,0xed,
0xff,0xde,0xff,0xec,0xff,0xd0,0xff,0xdb,0xff,0xbd,0xff,0xc1,0xff,0xb4,0xff,0xb7,
0xff,0xbd,0xff,0xc8,0xff,0xcd,0xff,0xe1,0xff,0xd6,0xff,0xed,0xff,0xdb,0xff,0xed,
0xff,0xec,0xff,0xf2,0xff,0xe,0x0,0xe,0x0,0x39,0x0,0x39,0x0,0x5d,0x0,0x5f,
0x0,0x70,0x0,0x73,0x0,0x76,0x0,0x77,0x0,0x7f,0x0,0x7c,0x0,0x8f,0x0,0x87,
0x0,0x9f,0x0,0x90,0x0,0xa1,0x0,0x8e,0x0,0x8f,0x0,0x82,0x0,0x76,0x0,0x6f,
0x0,0x66,0x0,0x5f,0x0,0x61,0x0,0x58,0x0,0x60,0x0,0x54,0x0,0x55,0x0,0x4c,
0x0,0x37,0x0,0x3c,0x0,0x1b,0x0,0x21,0x0,0xc,0x0,0x4,0x0,0x1,0x0,0xf1,
0xff,0xf0,0xff,0xe8,0xff,0xdd,0xff,0xe6,0xff,0xd1,0xff,0xe2,0xff,0xd5,0xff,0xdc,
0xff,0xe3,0xff,0xdc,0xff,0xe8,0xff,0xe2,0xff,0xe1,0xff,0xe4,0xff,0xdd,0xff,0xe8,
0xff,0xe9,0xff,0xf1,0xff,0x1,0x0,0xfe,0xff,0x18,0x0,0xd,0x0,0x22,0x0,0x19,
0x0,0x20,0x0,0x1d,0x0,0x22,0x0,0x1f,0x0,0x33,0x0,0x29,0x0,0x4c,0x0,0x3d,
0x0,0x66,0x0,0x54,0x0,0x77,0x0,0x61,0x0,0x7b,0x0,0x63,0x0,0x78,0x0,0x65,
0x0,0x76,0x0,0x6b,0x0,0x76,0x0,0x71,0x0,0x73,0x0,0x70,0x0,0x69,0x0,0x67,
0x0,0x56,0x0,0x5e,0x0,0x41,0x0,0x56,0x0,0x31,0x0,0x4b,0x0,0x27,0x0,0x3f,
0x0,0x20,0x0,0x36,0x0,0x1c,0x0,0x2f,0x0,0x1a,0x0,0x2f,0x0,0x19,0x0,0x2f,
0x0,0x16,0x0,0x28,0x0,0x10,0x0,0x19,0x0,0x9,0x0,0xb,0x0,0xa,0x0,0x7,
0x0,0x17,0x0,0x11,0x0,0x26,0x0,0x20,0x0,0x32,0x0,0x27,0x0,0x38,0x0,0x26,
0x0,0x38,0x0,0x21,0x0,0x36,0x0,0x1d,0x0,0x36,0x0,0x1a,0x0,0x37,0x0,0x1b,
0x0,0x33,0x0,0x1d,0x0,0x2f,0x0,0x1e,0x0,0x2c,0x0,0x18,0x0,0x27,0x0,0x10,
0x0,0x24,0x0,0xc,0x0,0x22,0x0,0x11,0x0,0x25,0x0,0x1f,0x0,0x2c,0x0,0x2d,
0x0,0x34,0x0,0x37,0x0,0x3c,0x0,0x3f,0x0,0x42,0x0,0x47,0x0,0x40,0x0,0x50,
0x0,0x3b,0x0,0x59,0x0,0x3d,0x0,0x5e,0x0,0x45,0x0,0x60,0x0,0x4c,0x0,0x61,
0x0,0x4c,0x0,0x5a,0x0,0x46,0x0,0x4e,0x0,0x44,0x0,0x4b,0x0,0x4e,0x0,0x52,
0x0,0x5c,0x0,0x5b,0x0,0x62,0x0,0x5f,0x0,0x5e,0x0,0x58,0x0,0x55,0x0,0x4c,
0x0,0x4c,0x0,0x43,0x0,0x48,0x0,0x3b,0x0,0x47,0x0,0x32,0x0,0x46,0x0,0x2c,
0x0,0x45,0x0,0x28,0x0,0x42,0x0,0x29,0x0,0x3b,0x0,0x29,0x0,0x2f,0x0,0x1f,
0x0,0x25,0x0,0x11,0x0,0x20,0x0,0xb,0x0,0x19,0x0,0xc,0x0,0xc,0x0,0x10,
0x0,0xff,0xff,0xf,0x0,0xfc,0xff,0x6,0x0,0x7,0x0,0x3,0x0,0x13,0x0,0xc,
0x0,0x18,0x0,0x1d,0x0,0x1c,0x0,0x33,0x0,0x24,0x0,0x46,0x0,0x30,0x0,0x50,
0x0,0x43,0x0,0x54,0x0,0x55,0x0,0x57,0x0,0x5f,0x0,0x5f,0x0,0x66,0x0,0x6f,
0x0,0x6f,0x0,0x7d,0x0,0x74,0x0,0x81,0x0,0x75,0x0,0x7b,0x0,0x77,0x0,0x71,
0x0,0x78,0x0,0x6c,0x0,0x76,0x0,0x6c,0x0,0x6c,0x0,0x6a,0x0,0x60,0x0,0x61,
0x0,0x5b,0x0,0x54,0x0,0x5c,0x0,0x4b,0x0,0x5f,0x0,0x4c,0x0,0x60,0x0,0x4b,
0x0,0x55,0x0,0x44,0x0,0x3d,0x0,0x3b,0x0,0x26,0x0,0x2e,0x0,0x18,0x0,0x1e,
0x0,0x10,0x0,0x13,0x0,0xa,0x0,0xd,0x0,0x6,0x0,0xe,0x0,0x2,0x0,0x12,
0x0,0x3,0x0,0x11,0x0,0xc,0x0,0xf,0x0,0x16,0x0,0x11,0x0,0x19,0x0,0x18,
0x0,0x17,0x0,0x26,0x0,0x1b,0x0,0x2f,0x0,0x21,0x0,0x2b,0x0,0x26,0x0,0x27,
0x0,0x2c,0x0,0x31,0x0,0x38,0x0,0x48,0x0,0x53,0x0,0x63,0x0,0x73,0x0,0x74,
0x0,0x81,0x0,0x75,0x0,0x7a,0x0,0x73,0x0,0x74,0x0,0x77,0x0,0x78,0x0,0x7d,
0x0,0x81,0x0,0x7d,0x0,0x81,0x0,0x6f,0x0,0x6e,0x0,0x5d,0x0,0x57,0x0,0x51,
0x0,0x51,0x0,0x49,0x0,0x53,0x0,0x44,0x0,0x4e,0x0,0x41,0x0,0x3b,0x0,0x39,
0x0,0x28,0x0,0x31,0x0,0x27,0x0,0x30,0x0,0x35,0x0,0x30,0x0,0x3f,0x0,0x31,
0x0,0x3b,0x0,0x31,0x0,0x2d,0x0,0x2c,0x0,0x25,0x0,0x25,0x0,0x2c,0x0,0x23,
0x0,0x32,0x0,0x23,0x0,0x2d,0x0,0x26,0x0,0x25,0x0,0x2b,0x0,0x1d,0x0,0x2c,
0x0,0x18,0x0,0x29,0x0,0x1b,0x0,0x2e,0x0,0x24,0x0,0x3a,0x0,0x35,0x0,0x44,
0x0,0x49,0x0,0x49,0x0,0x51,0x0,0x49,0x0,0x4d,0x0,0x49,0x0,0x4c,0x0,0x4e,
0x0,0x50,0x0,0x51,0x0,0x59,0x0,0x52,0x0,0x65,0x0,0x53,0x0,0x64,0x0,0x54,
0x0,0x54,0x0,0x50,0x0,0x43,0x0,0x48,0x0,0x3e,0x0,0x3f,0x0,0x42,0x0,0x39,
0x0,0x47,0x0,0x3b,0x0,0x47,0x0,0x40,0x0,0x3e,0x0,0x43,0x0,0x35,0x0,0x3d,
0x0,0x32,0x0,0x33,0x0,0x34,0x0,0x30,0x0,0x3a,0x0,0x35,0x0,0x3e,0x0,0x3b,
0x0,0x3c,0x0,0x3f,0x0,0x3c,0x0,0x41,0x0,0x40,0x0,0x45,0x0,0x43,0x0,0x4e,
0x0,0x49,0x0,0x57,0x0,0x50,0x0,0x58,0x0,0x4f,0x0,0x56,0x0,0x49,0x0,0x51,
0x0,0x44,0x0,0x4a,0x0,0x41,0x0,0x46,0x0,0x42,0x0,0x44,0x0,0x40,0x0,0x40,
0x0,0x38,0x0,0x3d,0x0,0x32,0x0,0x3a,0x0,0x2e,0x0,0x37,0x0,0x2e,0x0,0x2c,
0x0,0x2f,0x0,0x1a,0x0,0x26,0x0,0xd,0x0,0x1a,0x0,0xd,0x0,0x1b,0x0,0x14,
0x0,0x28,0x0,0x1e,0x0,0x38,0x0,0x2a,0x0,0x45,0x0,0x33,0x0,0x4b,0x0,0x3e,
0x0,0x4e,0x0,0x4b,0x0,0x54,0x0,0x51,0x0,0x56,0x0,0x4f,0x0,0x51,0x0,0x4c,
0x0,0x4c,0x0,0x4b,0x0,0x45,0x0,0x46,0x0,0x3a,0x0,0x3d,0x0,0x31,0x0,0x39,
0x0,0x30,0x0,0x3e,0x0,0x34,0x0,0x4a,0x0,0x39,0x0,0x54,0x0,0x39,0x0,0x52,
0x0,0x3b,0x0,0x4c,0x0,0x44,0x0,0x51,0x0,0x49,0x0,0x59,0x0,0x44,0x0,0x5a,
0x0,0x3b,0x0,0x50,0x0,0x2f,0x0,0x3e,0x0,0x2b,0x0,0x31,0x0,0x2e,0x0,0x31,
0x0,0x2c,0x0,0x2d,0x0,0x21,0x0,0x22,0x0,0x1e,0x0,0x1c,0x0,0x26,0x0,0x22,
0x0,0x38,0x0,0x30,0x0,0x49,0x0,0x3a,0x0,0x4a,0x0,0x38,0x0,0x44,0x0,0x32,
0x0,0x44,0x0,0x38,0x0,0x46,0x0,0x45,0x0,0x43,0x0,0x49,0x0,0x3a,0x0,0x40,
0x0,0x2f,0x0,0x31,0x0,0x2b,0x0,0x28,0x0,0x2d,0x0,0x2a,0x0,0x30,0x0,0x35,
0x0,0x35,0x0,0x3d,0x0,0x31,0x0,0x3a,0x0,0x22,0x0,0x2a,0x0,0x12,0x0,0x15,
0x0,0x6,0x0,0x7,0x0,0xfd,0xff,0x6,0x0,0xfa,0xff,0xd,0x0,0xfb,0xff,0x17,
0x0,0x3,0x0,0x1d,0x0,0x14,0x0,0x1f,0x0,0x2b,0x0,0x2d,0x0,0x40,0x0,0x48,
0x0,0x49,0x0,0x60,0x0,0x49,0x0,0x67,0x0,0x4a,0x0,0x5b,0x0,0x4e,0x0,0x4b,
0x0,0x50,0x0,0x4a,0x0,0x4f,0x0,0x50,0x0,0x4b,0x0,0x55,0x0,0x4d,0x0,0x56,
0x0,0x55,0x0,0x52,0x0,0x5c,0x0,0x52,0x0,0x60,0x0,0x57,0x0,0x5f,0x0,0x55,
0x0,0x54,0x0,0x4a,0x0,0x43,0x0,0x3d,0x0,0x33,0x0,0x2d,0x0,0x28,0x0,0x1f,
0x0,0x22,0x0,0x14,0x0,0x17,0x0,0x8,0x0,0x7,0x0,0x0,0x0,0xf8,0xff,0x0,
0x0,0xf4,0xff,0x1,0x0,0xfa,0xff,0xf8,0xff,0xfe,0xff,0xeb,0xff,0xfc,0xff,0xeb,
0xff,0xf6,0xff,0xf6,0xff,0xf3,0xff,0x1,0x0,0xf9,0xff,0x8,0x0,0x6,0x0,0xb,
0x0,0x13,0x0,0x12,0x0,0x20,0x0,0x2c,0x0,0x33,0x0,0x4c,0x0,0x47,0x0,0x60,
0x0,0x58,0x0,0x69,0x0,0x65,0x0,0x6b,0x0,0x71,0x0,0x6e,0x0,0x7d,0x0,0x74,
0x0,0x7a,0x0,0x6e,0x0,0x67,0x0,0x62,0x0,0x58,0x0,0x5c,0x0,0x58,0x0,0x5b,
0x0,0x59,0x0,0x5a,0x0,0x53,0x0,0x53,0x0,0x43,0x0,0x43,0x0,0x2b,0x0,0x31,
0x0,0x18,0x0,0x1f,0x0,0xf,0x0,0x10,0x0,0x7,0x0,0x5,0x0,0x1,0x0,0xfc,
0xff,0xfd,0xff,0xf5,0xff,0xf9,0xff,0xee,0xff,0xf3,0xff,0xe7,0xff,0xf1,0xff,0xe9,
0xff,0xfa,0xff,0xf9,0xff,0x9,0x0,0xc,0x0,0x17,0x0,0x1d,0x0,0x15,0x0,0x21,
0x0,0x6,0x0,0x16,0x0,0x4,0x0,0x12,0x0,0x19,0x0,0x23,0x0,0x32,0x0,0x37,
0x0,0x3d,0x0,0x3f,0x0,0x3b,0x0,0x3b,0x0,0x3a,0x0,0x3a,0x0,0x43,0x0,0x40,
0x0,0x4b,0x0,0x46,0x0,0x48,0x0,0x44,0x0,0x40,0x0,0x3f,0x0,0x3c,0x0,0x3f,
0x0,0x43,0x0,0x44,0x0,0x4c,0x0,0x4a,0x0,0x49,0x0,0x4a,0x0,0x3c,0x0,0x41,
0x0,0x2f,0x0,0x30,0x0,0x24,0x0,0x1f,0x0,0x18,0x0,0x13,0x0,0xd,0x0,0xf,
0x0,0x6,0x0,0xc,0x0,0x3,0x0,0x5,0x0,0x0,0x0,0xfd,0xff,0xfb,0xff,0xf9,
0xff,0xf8,0xff,0xfc,0xff,0xfe,0xff,0x6,0x0,0xa,0x0,0xc,0x0,0x10,0x0,0x8,
0x0,0xa,0x0,0x1,0x0,0x6,0x0,0x0,0x0,0xe,0x0,0x4,0x0,0x1e,0x0,0x12,
0x0,0x27,0x0,0x1f,0x0,0x20,0x0,0x21,0x0,0x17,0x0,0x22,0x0,0x17,0x0,0x25,
0x0,0x1b,0x0,0x24,0x0,0x19,0x0,0x1a,0x0,0xa,0x0,0xd,0x0,0xfe,0xff,0x6,
0x0,0x4,0x0,0xa,0x0,0x10,0x0,0x10,0x0,0x18,0x0,0x15,0x0,0x18,0x0,0x14,
0x0,0x12,0x0,0x11,0x0,0x11,0x0,0x13,0x0,0x14,0x0,0x16,0x0,0x10,0x0,0x17,
0x0,0x6,0x0,0x15,0x0,0xfe,0xff,0xe,0x0,0xfe,0xff,0x5,0x0,0x4,0x0,0x2,
0x0,0x8,0x0,0x4,0x0,0x8,0x0,0x5,0x0,0xb,0x0,0x4,0x0,0xd,0x0,0x1,
0x0,0xb,0x0,0x1,0x0,0xb,0x0,0x4,0x0,0xa,0x0,0x8,0x0,0xd,0x0,0xc,
0x0,0x12,0x0,0xc,0x0,0x12,0x0,0xd,0x0,0xe,0x0,0xf,0x0,0xe,0x0,0xd,
0x0,0xe,0x0,0x7,0x0,0xa,0x0,0x1,0x0,0x5,0x0,0x0,0x0,0x2,0x0,0x8,
0x0,0x3,0x0,0x11,0x0,0x2,0x0,0x10,0x0,0xfc,0xff,0x3,0x0,0xf6,0xff,0xf6,
0xff,0xf8,0xff,0xf4,0xff,0xff,0xff,0xfa,0xff,0x2,0x0,0xf9,0xff,0xfb,0xff,0xef,
0xff,0xe9,0xff,0xe0,0xff,0xdc,0xff,0xd6,0xff,0xdc,0xff,0xda,0xff,0xe6,0xff,0xe6,
0xff,0xed,0xff,0xea,0xff,0xe7,0xff,0xea,0xff,0xdd,0xff,0xe7,0xff,0xe1,0xff,0xe8,
0xff,0xf5,0xff,0xf6,0xff,0x7,0x0,0x8,0x0,0x9,0x0,0x11,0x0,0x3,0x0,0xe,
0x0,0x4,0x0,0x9,0x0,0x12,0x0,0xe,0x0,0x23,0x0,0x1a,0x0,0x29,0x0,0x25,
0x0,0x20,0x0,0x27,0x0,0x17,0x0,0x20,0x0,0x18,0x0,0x1a,0x0,0x20,0x0,0x1a,
0x0,0x22,0x0,0x19,0x0,0x1b,0x0,0x14,0x0,0x15,0x0,0x12,0x0,0x13,0x0,0x10,
0x0,0x15,0x0,0xd,0x0,0x15,0x0,0x6,0x0,0xb,0x0,0xfb,0xff,0xfd,0xff,0xf4,
0xff,0xf6,0xff,0xf6,0xff,0xf3,0xff,0xfb,0xff,0xee,0xff,0xf8,0xff,0xe5,0xff,0xe8,
0xff,0xd5,0xff,0xcf,0xff,0xc1,0xff,0xbf,0xff,0xb5,0xff,0xbc,0xff,0xb8,0xff,0xc3,
0xff,0xc2,0xff,0xcc,0xff,0xcc,0xff,0xd1,0xff,0xd0,0xff,0xd4,0xff,0xd0,0xff,0xd9,
0xff,0xd6,0xff,0xe2,0xff,0xe7,0xff,0xf0,0xff,0xfe,0xff,0xfd,0xff,0xb,0x0,0x8,
0x0,0x8,0x0,0xc,0x0,0x0,0x0,0x5,0x0,0xff,0xff,0xfc,0xff,0x6,0x0,0xfb,
0xff,0x15,0x0,0x5,0x0,0x26,0x0,0x17,0x0,0x2f,0x0,0x23,0x0,0x29,0x0,0x1e,
0x0,0x19,0x0,0xc,0x0,0xd,0x0,0x1,0x0,0xf,0x0,0x9,0x0,0x18,0x0,0x17,
0x0,0x14,0x0,0x15,0x0,0xfe,0xff,0x1,0x0,0xe3,0xff,0xe8,0xff,0xd9,0xff,0xdd,
0xff,0xe7,0xff,0xe7,0xff,0xf1,0xff,0xed,0xff,0xdf,0xff,0xdf,0xff,0xbb,0xff,0xc8,
0xff,0xa8,0xff,0xba,0xff,0xb0,0xff,0xbc,0xff,0xbb,0xff,0xc4,0xff,0xb5,0xff,0xba,
0xff,0xa4,0xff,0xab,0xff,0xa2,0xff,0xae,0xff,0xb2,0xff,0xbd,0xff,0xc4,0xff,0xc3,
0xff,0xc0,0xff,0xb8,0xff,0xb0,0xff,0xa7,0xff,0xb4,0xff,0xaf,0xff,0xd1,0xff,0xce,
0xff,0xe8,0xff,0xe1,0xff,0xe5,0xff,0xd4,0xff,0xd5,0xff,0xc0,0xff,0xd9,0xff,0xcc,
0xff,0xfa,0xff,0xf9,0xff,0x16,0x0,0x19,0x0,0x12,0x0,0x11,0x0,0xf9,0xff,0xf4,
0xff,0xeb,0xff,0xe9,0xff,0xf9,0xff,0x4,0x0,0xf,0x0,0x22,0x0,0xc,0x0,0x1a,
0x0,0xf3,0xff,0xfa,0xff,0xea,0xff,0xec,0xff,0xf8,0xff,0xfb,0xff,0x5,0x0,0xf,
0x0,0xfe,0xff,0xc,0x0,0xe6,0xff,0xf3,0xff,0xd3,0xff,0xe2,0xff,0xd5,0xff,0xe2,
0xff,0xdd,0xff,0xe7,0xff,0xd4,0xff,0xdb,0xff,0xbb,0xff,0xbe,0xff,0xa2,0xff,0xa2,
0xff,0x95,0xff,0x94,0xff,0x90,0xff,0x90,0xff,0x90,0xff,0x8d,0xff,0x92,0xff,0x8a,
0xff,0x97,0xff,0x8d,0xff,0x9e,0xff,0x99,0xff,0xa6,0xff,0xa4,0xff,0xb2,0xff,0xaf,
0xff,0xc4,0xff,0xbb,0xff,0xd5,0xff,0xc5,0xff,0xdf,0xff,0xce,0xff,0xe4,0xff,0xd8,
0xff,0xef,0xff,0xe1,0xff,0xff,0xff,0xf1,0xff,0xd,0x0,0xa,0x0,0x13,0x0,0x1b,
0x0,0x11,0x0,0x1d,0x0,0xe,0x0,0x16,0x0,0x13,0x0,0x17,0x0,0x1e,0x0,0x26,
0x0,0x22,0x0,0x33,0x0,0x17,0x0,0x2b,0x0,0x7,0x0,0x14,0x0,0x3,0x0,0x4,
0x0,0x8,0x0,0x5,0x0,0x4,0x0,0x6,0x0,0xeb,0xff,0xf6,0xff,0xc8,0xff,0xd8,
0xff,0xb1,0xff,0xbc,0xff,0xb3,0xff,0xb8,0xff,0xb9,0xff,0xc1,0xff,0xae,0xff,0xbb,
0xff,0x95,0xff,0x9e,0xff,0x87,0xff,0x88,0xff,0x93,0xff,0x90,0xff,0xaa,0xff,0xa8,
0xff,0xac,0xff,0xab,0xff,0x9b,0xff,0x97,0xff,0x97,0xff,0x89,0xff,0xac,0xff,0x98,
0xff,0xcd,0xff,0xc0,0xff,0xe1,0xff,0xde,0xff,0xdd,0xff,0xdb,0xff,0xd6,0xff,0xd0,
0xff,0xe3,0xff,0xde,0xff,0x1,0x0,0xfe,0xff,0x16,0x0,0x14,0x0,0x11,0x0,0xf,
0x0,0xff,0xff,0x1,0x0,0xff,0xff,0x4,0x0,0x15,0x0,0x16,0x0,0x27,0x0,0x21,
0x0,0x21,0x0,0x1a,0x0,0x6,0x0,0x8,0x0,0xeb,0xff,0xf8,0xff,0xde,0xff,0xf1,
0xff,0xdc,0xff,0xeb,0xff,0xd7,0xff,0xdf,0xff,0xcc,0xff,0xd1,0xff,0xc3,0xff,0xcd,
0xff,0xc1,0xff,0xcc,0xff,0xc1,0xff,0xc5,0xff,0xbb,0xff,0xb9,0xff,0xb0,0xff,0xa9,
0xff,0xa4,0xff,0x9a,0xff,0x9b,0xff,0x94,0xff,0x96,0xff,0x95,0xff,0x93,0xff,0x98,
0xff,0x93,0xff,0x9b,0xff,0x96,0xff,0x9b,0xff,0x99,0xff,0x9a,0xff,0xa5,0xff,0xa1,
0xff,0xb9,0xff,0xb1,0xff,0xc5,0xff,0xc1,0xff,0xc6,0xff,0xc2,0xff,0xc4,0xff,0xb7,
0xff,0xc0,0xff,0xaf,0xff,0xc4,0xff,0xb9,0xff,0xdb,0xff,0xd6,0xff,0xf3,0xff,0xed,
0xff,0xfa,0xff,0xf0,0xff,0xf3,0xff,0xec,0xff,0xec,0xff,0xf2,0xff,0xef,0xff,0xfc,
0xff,0xf7,0xff,0x2,0x0,0xf5,0xff,0xfa,0xff,0xea,0xff,0xe8,0xff,0xe4,0xff,0xe0,
0xff,0xe6,0xff,0xe5,0xff,0xe9,0xff,0xea,0xff,0xe1,0xff,0xe6,0xff,0xd1,0xff,0xd6,
0xff,0xcb,0xff,0xc9,0xff,0xd3,0xff,0xcd,0xff,0xd9,0xff,0xd5,0xff,0xcd,0xff,0xcd,
0xff,0xaf,0xff,0xb8,0xff,0x97,0xff,0xa2,0xff,0x9c,0xff,0x9c,0xff,0xb4,0xff,0xab,
0xff,0xc3,0xff,0xbc,0xff,0xbc,0xff,0xc0,0xff,0xa9,0xff,0xb6,0xff,0xa1,0xff,0xad,
0xff,0xaf,0xff,0xb1,0xff,0xc4,0xff,0xbe,0xff,0xd1,0xff,0xca,0xff,0xd5,0xff,0xd0,
0xff,0xd6,0xff,0xcf,0xff,0xda,0xff,0xca,0xff,0xdf,0xff,0xce,0xff,0xe3,0xff,0xd9,
0xff,0xe9,0xff,0xe6,0xff,0xf0,0xff,0xf0,0xff,0xef,0xff,0xef,0xff,0xe8,0xff,0xe5,
0xff,0xe1,0xff,0xdc,0xff,0xdc,0xff,0xdb,0xff,0xda,0xff,0xdd,0xff,0xdb,0xff,0xdc,
0xff,0xd9,0xff,0xd4,0xff,0xd5,0xff,0xcc,0xff,0xd3,0xff,0xcb,0xff,0xd3,0xff,0xd1,
0xff,0xd2,0xff,0xd7,0xff,0xce,0xff,0xdd,0xff,0xcf,0xff,0xe1,0xff,0xd3,0xff,0xe4,
0xff,0xd6,0xff,0xe3,0xff,0xd9,0xff,0xe1,0xff,0xdd,0xff,0xe0,0xff,0xe3,0xff,0xe5,
0xff,0xeb,0xff,0xed,0xff,0xef,0xff,0xee,0xff,0xeb,0xff,0xe2,0xff,0xe3,0xff,0xd4,
0xff,0xe0,0xff,0xd2,0xff,0xe0,0xff,0xd9,0xff,0xdc,0xff,0xdc,0xff,0xd1,0xff,0xd6,
0xff,0xc9,0xff,0xd0,0xff,0xcc,0xff,0xcf,0xff,0xd3,0xff,0xd3,0xff,0xd8,0xff,0xd2,
0xff,0xd7,0xff,0xcd,0xff,0xd0,0xff,0xcc,0xff,0xce,0xff,0xce,0xff,0xd3,0xff,0xd0,
0xff,0xd3,0xff,0xd2,0xff,0xcf,0xff,0xce,0xff,0xcf,0xff,0xcc,0xff,0xd4,0xff,0xd5,
0xff,0xd7,0xff,0xdf,0xff,0xd5,0xff,0xe2,0xff,0xd0,0xff,0xe3,0xff,0xcf,0xff,0xe2,
0xff,0xd7,0xff,0xe5,0xff,0xe8,0xff,0xeb,0xff,0xf5,0xff,0xef,0xff,0xf4,0xff,0xed,
0xff,0xf2,0xff,0xef,0xff,0xf7,0xff,0xf7,0xff,0x2,0x0,0x1,0x0,0x7,0x0,0x2,
0x0,0x2,0x0,0xfb,0xff,0xf6,0xff,0xf1,0xff,0xeb,0xff,0xea,0xff,0xe3,0xff,0xe7,
0xff,0xdf,0xff,0xe4,0xff,0xda,0xff,0xdd,0xff,0xd4,0xff,0xd7,0xff,0xd3,0xff,0xd4,
0xff,0xd3,0xff,0xd4,0xff,0xcd,0xff,0xd5,0xff,0xc2,0xff,0xd5,0xff,0xb9,0xff,0xd1,
0xff,0xb7,0xff,0xc8,0xff,0xbd,0xff,0xc4,0xff,0xc5,0xff,0xc7,0xff,0xc9,0xff,0xcb,
0xff,0xcd,0xff,0xcd,0xff,0xd2,0xff,0xd5,0xff,0xdb,0xff,0xe0,0xff,0xe5,0xff,0xea,
0xff,0xee,0xff,0xf2,0xff,0xf8,0xff,0xf6,0xff,0x2,0x0,0xfa,0xff,0x6,0x0,0xfe,
0xff,0x2,0x0,0xfd,0xff,0x0,0x0,0xfe,0xff,0x8,0x0,0x6,0x0,0x15,0x0,0xc,
0x0,0x1b,0x0,0xe,0x0,0x13,0x0,0x6,0x0,0x3,0x0,0xf9,0xff,0xf5,0xff,0xf2,
0xff,0xf4,0xff,0xf6,0xff,0xfd,0xff,0xfb,0xff,0x1,0x0,0xfc,0xff,0xfa,0xff,0xf6,
0xff,0xf4,0xff,0xf1,0xff,0xf2,0xff,0xf0,0xff,0xef,0xff,0xf1,0xff,0xeb,0xff,0xf0,
0xff,0xe5,0xff,0xeb,0xff,0xe1,0xff,0xe2,0xff,0xde,0xff,0xde,0xff,0xd9,0xff,0xdc,
0xff,0xd4,0xff,0xd8,0xff,0xd4,0xff,0xd4,0xff,0xda,0xff,0xda,0xff,0xe3,0xff,0xe7,
0xff,0xe6,0xff,0xec,0xff,0xe2,0xff,0xe4,0xff,0xdd,0xff,0xd6,0xff,0xdd,0xff,0xd3,
0xff,0xe7,0xff,0xe0,0xff,0xfa,0xff,0xf6,0xff,0xa,0x0,0xc,0x0,0x14,0x0,0x19,
0x0,0x1b,0x0,0x1b,0x0,0x22,0x0,0x20,0x0,0x2a,0x0,0x2d,0x0,0x30,0x0,0x39,
0x0,0x2b,0x0,0x39,0x0,0x23,0x0,0x2e,0x0,0x20,0x0,0x23,0x0,0x22,0x0,0x1d,
0x0,0x23,0x0,0x1f,0x0,0x21,0x0,0x1f,0x0,0x1d,0x0,0x1d,0x0,0x20,0x0,0x1d,
0x0,0x27,0x0,0x21,0x0,0x24,0x0,0x20,0x0,0x12,0x0,0x14,0x0,0xff,0xff,0x2,
0x0,0xf4,0xff,0xf5,0xff,0xf5,0xff,0xf0,0xff,0xf9,0xff,0xf1,0xff,0xfb,0xff,0xf4,
0xff,0xf4,0xff,0xf0,0xff,0xeb,0xff,0xec,0xff,0xea,0xff,0xed,0xff,0xf2,0xff,0xf0,
0xff,0xf9,0xff,0xf3,0xff,0xf9,0xff,0xf4,0xff,0xf3,0xff,0xf0,0xff,0xeb,0xff,0xeb,
0xff,0xed,0xff,0xed,0xff,0xfa,0xff,0xf8,0xff,0xa,0x0,0xb,0x0,0x19,0x0,0x1b,
0x0,0x22,0x0,0x23,0x0,0x26,0x0,0x28,0x0,0x2b,0x0,0x2c,0x0,0x2f,0x0,0x2f,
0x0,0x2e,0x0,0x30,0x0,0x2b,0x0,0x2c,0x0,0x28,0x0,0x27,0x0,0x29,0x0,0x27,
0x0,0x28,0x0,0x2a,0x0,0x1f,0x0,0x25,0x0,0x13,0x0,0x1a,0x0,0xc,0x0,0x12,
0x0,0xe,0x0,0x13,0x0,0x14,0x0,0x16,0x0,0x14,0x0,0x13,0x0,0xb,0x0,0x9,
0x0,0xff,0xff,0x2,0x0,0xfc,0xff,0x7,0x0,0x9,0x0,0x14,0x0,0x1b,0x0,0x1e,
0x0,0x22,0x0,0x21,0x0,0x19,0x0,0x17,0x0,0x4,0x0,0x8,0x0,0xf0,0xff,0x0,
0x0,0xfa,0xff,0x8,0x0,0x1c,0x0,0x20,0x0,0x34,0x0,0x37,0x0,0x2d,0x0,0x30,
0x0,0x11,0x0,0x16,0x0,0x3,0x0,0xa,0x0,0x1b,0x0,0x19,0x0,0x3f,0x0,0x35,
0x0,0x40,0x0,0x3c,0x0,0x14,0x0,0x17,0x0,0xe6,0xff,0xe9,0xff,0xe3,0xff,0xe2,
0xff,0xb,0x0,0x7,0x0,0x30,0x0,0x2e,0x0,0x32,0x0,0x2f,0x0,0x17,0x0,0x15,
0x0,0x1,0x0,0x4,0x0,0xa,0x0,0xe,0x0,0x23,0x0,0x26,0x0,0x2b,0x0,0x30,
0x0,0x1c,0x0,0x21,0x0,0x6,0x0,0xa,0x0,0x0,0x0,0x7,0x0,0xf,0x0,0x15,
0x0,0x24,0x0,0x29,0x0,0x2f,0x0,0x37,0x0,0x31,0x0,0x39,0x0,0x2f,0x0,0x33,
0x0,0x2f,0x0,0x2c,0x0,0x34,0x0,0x2d,0x0,0x36,0x0,0x39,0x0,0x3e,0x0,0x46,
0x0,0x4d,0x0,0x4a,0x0,0x55,0x0,0x44,0x0,0x53,0x0,0x3a,0x0,0x44,0x0,0x33,
0x0,0x2c,0x0,0x2c,0x0,0x1b,0x0,0x1f,0x0,0x15,0x0,0x13,0x0,0x13,0x0,0xe,
0x0,0x10,0x0,0xa,0x0,0x8,0x0,0x6,0x0,0x5,0x0,0x6,0x0,0x10,0x0,0xf,
0x0,0x21,0x0,0x20,0x0,0x29,0x0,0x2b,0x0,0x24,0x0,0x23,0x0,0x18,0x0,0x14,
0x0,0x18,0x0,0x15,0x0,0x24,0x0,0x25,0x0,0x25,0x0,0x31,0x0,0x16,0x0,0x2a,
0x0,0x10,0x0,0x1c,0x0,0x28,0x0,0x28,0x0,0x5b,0x0,0x57,0x0,0x84,0x0,0x81,
0x0,0x7d,0x0,0x7d,0x0,0x4e,0x0,0x50,0x0,0x2b,0x0,0x2b,0x0,0x39,0x0,0x38,
0x0,0x66,0x0,0x69,0x0,0x7d,0x0,0x7e,0x0,0x5a,0x0,0x53,0x0,0x18,0x0,0xf,
0x0,0xf9,0xff,0xf5,0xff,0x1f,0x0,0x1d,0x0,0x60,0x0,0x5a,0x0,0x77,0x0,0x6d,
0x0,0x4e,0x0,0x49,0x0,0x14,0x0,0x17,0x0,0x0,0x0,0xa,0x0,0x23,0x0,0x2a,
0x0,0x53,0x0,0x52,0x0,0x5c,0x0,0x5c,0x0,0x3a,0x0,0x42,0x0,0x1a,0x0,0x24,
0x0,0x1d,0x0,0x1f,0x0,0x3d,0x0,0x35,0x0,0x58,0x0,0x4f,0x0,0x5d,0x0,0x5e,
0x0,0x50,0x0,0x5b,0x0,0x46,0x0,0x4e,0x0,0x4c,0x0,0x46,0x0,0x5f,0x0,0x4e,
0x0,0x6d,0x0,0x62,0x0,0x6a,0x0,0x70,0x0,0x5b,0x0,0x6b,0x0,0x50,0x0,0x5a,
0x0,0x58,0x0,0x55,0x0,0x6e,0x0,0x60,0x0,0x72,0x0,0x68,0x0,0x56,0x0,0x56,
0x0,0x33,0x0,0x36,0x0,0x2b,0x0,0x2c,0x0,0x43,0x0,0x40,0x0,0x5f,0x0,0x56,
0x0,0x59,0x0,0x4e,0x0,0x33,0x0,0x2c,0x0,0x16,0x0,0x15,0x0,0x1e,0x0,0x21,
0x0,0x42,0x0,0x44,0x0,0x5e,0x0,0x5a,0x0,0x5b,0x0,0x53,0x0,0x4e,0x0,0x46,
0x0,0x4d,0x0,0x48,0x0,0x56,0x0,0x55,0x0,0x62,0x0,0x64,0x0,0x6b,0x0,0x6f,
0x0,0x6e,0x0,0x73,0x0,0x6d,0x0,0x71,0x0,0x66,0x0,0x62,0x0,0x53,0x0,0x4b,
0x0,0x47,0x0,0x47,0x0,0x54,0x0,0x5f,0x0,0x6e,0x0,0x7a,0x0,0x79,0x0,0x7f,
0x0,0x67,0x0,0x6a,0x0,0x47,0x0,0x4d,0x0,0x38,0x0,0x41,0x0,0x49,0x0,0x4f,
0x0,0x64,0x0,0x65,0x0,0x6b,0x0,0x6c,0x0,0x56,0x0,0x5a,0x0,0x3e,0x0,0x43,
0x0,0x3a,0x0,0x3c,0x0,0x51,0x0,0x4d,0x0,0x67,0x0,0x66,0x0,0x60,0x0,0x68,
0x0,0x49,0x0,0x50,0x0,0x3f,0x0,0x39,0x0,0x50,0x0,0x3c,0x0,0x6b,0x0,0x56,
0x0,0x75,0x0,0x70,0x0,0x64,0x0,0x6e,0x0,0x53,0x0,0x56,0x0,0x58,0x0,0x4f,
0x0,0x6a,0x0,0x64,0x0,0x72,0x0,0x7a,0x0,0x63,0x0,0x77,0x0,0x50,0x0,0x5d,
0x0,0x51,0x0,0x51,0x0,0x6c,0x0,0x67,0x0,0x88,0x0,0x88,0x0,0x8a,0x0,0x8f,
0x0,0x73,0x0,0x74,0x0,0x59,0x0,0x53,0x0,0x50,0x0,0x4c,0x0,0x5d,0x0,0x61,
0x0,0x6c,0x0,0x70,0x0,0x68,0x0,0x63,0x0,0x52,0x0,0x48,0x0,0x41,0x0,0x3a,
0x0,0x48,0x0,0x4b,0x0,0x65,0x0,0x6d,0x0,0x7d,0x0,0x80,0x0,0x79,0x0,0x74,
0x0,0x5c,0x0,0x56,0x0,0x44,0x0,0x42,0x0,0x4d,0x0,0x4d,0x0,0x70,0x0,0x70,
0x0,0x8a,0x0,0x86,0x0,0x81,0x0,0x79,0x0,0x63,0x0,0x5c,0x0,0x55,0x0,0x52,
0x0,0x69,0x0,0x69,0x0,0x83,0x0,0x87,0x0,0x7f,0x0,0x86,0x0,0x61,0x0,0x67,
0x0,0x47,0x0,0x4c,0x0,0x48,0x0,0x4e,0x0,0x64,0x0,0x66,0x0,0x7b,0x0,0x78,
0x0,0x78,0x0,0x73,0x0,0x6f,0x0,0x68,0x0,0x73,0x0,0x6c,0x0,0x82,0x0,0x7e,
0x0,0x8f,0x0,0x8a,0x0,0x8e,0x0,0x89,0x0,0x7f,0x0,0x82,0x0,0x74,0x0,0x79,
0x0,0x76,0x0,0x70,0x0,0x7c,0x0,0x6e,0x0,0x7b,0x0,0x6f,0x0,0x73,0x0,0x6f,
0x0,0x6c,0x0,0x70,0x0,0x6f,0x0,0x71,0x0,0x77,0x0,0x70,0x0,0x7a,0x0,0x6f,
0x0,0x72,0x0,0x6f,0x0,0x6a,0x0,0x71,0x0,0x6a,0x0,0x73,0x0,0x6e,0x0,0x72,
0x0,0x70,0x0,0x70,0x0,0x6e,0x0,0x6f,0x0,0x6a,0x0,0x6f,0x0,0x6c,0x0,0x6e,
0x0,0x6a,0x0,0x6b,0x0,0x5d,0x0,0x62,0x0,0x50,0x0,0x57,0x0,0x4e,0x0,0x4d,
0x0,0x54,0x0,0x4c,0x0,0x5d,0x0,0x52,0x0,0x5f,0x0,0x5a,0x0,0x5d,0x0,0x61,
0x0,0x60,0x0,0x67,0x0,0x66,0x0,0x68,0x0,0x6f,0x0,0x6f,0x0,0x7b,0x0,0x7d,
0x0,0x7e,0x0,0x83,0x0,0x76,0x0,0x7a,0x0,0x70,0x0,0x6c,0x0,0x71,0x0,0x6a,
0x0,0x7b,0x0,0x7e,0x0,0x8c,0x0,0x96,0x0,0x92,0x0,0x96,0x0,0x83,0x0,0x7b,
0x0,0x6a,0x0,0x5f,0x0,0x5c,0x0,0x5d,0x0,0x65,0x0,0x71,0x0,0x72,0x0,0x7a,
0x0,0x65,0x0,0x65,0x0,0x46,0x0,0x43,0x0,0x36,0x0,0x35,0x0,0x44,0x0,0x48,
0x0,0x5e,0x0,0x64,0x0,0x63,0x0,0x65,0x0,0x48,0x0,0x4b,0x0,0x2f,0x0,0x35,
0x0,0x33,0x0,0x36,0x0,0x49,0x0,0x46,0x0,0x55,0x0,0x51,0x0,0x47,0x0,0x49,
0x0,0x32,0x0,0x3c,0x0,0x39,0x0,0x42,0x0,0x54,0x0,0x51,0x0,0x60,0x0,0x57,
0x0,0x5b,0x0,0x59,0x0,0x55,0x0,0x5e,0x0,0x52,0x0,0x5c,0x0,0x53,0x0,0x53,
0x0,0x58,0x0,0x4e,0x0,0x66,0x0,0x5c,0x0,0x79,0x0,0x77,0x0,0x7e,0x0,0x82,
0x0,0x73,0x0,0x72,0x0,0x63,0x0,0x5e,0x0,0x5c,0x0,0x5a,0x0,0x67,0x0,0x69,
0x0,0x79,0x0,0x7b,0x0,0x77,0x0,0x77,0x0,0x5f,0x0,0x61,0x0,0x4d,0x0,0x54,
0x0,0x50,0x0,0x5c,0x0,0x63,0x0,0x6b,0x0,0x74,0x0,0x73,0x0,0x71,0x0,0x6e,
0x0,0x64,0x0,0x6a,0x0,0x5b,0x0,0x6c,0x0,0x57,0x0,0x66,0x0,0x59,0x0,0x5b,
0x0,0x5e,0x0,0x5c,0x0,0x5f,0x0,0x67,0x0,0x5f,0x0,0x6e,0x0,0x5d,0x0,0x67,
0x0,0x59,0x0,0x59,0x0,0x5c,0x0,0x53,0x0,0x62,0x0,0x5b,0x0,0x61,0x0,0x60,
0x0,0x5b,0x0,0x53,0x0,0x4f,0x0,0x3f,0x0,0x48,0x0,0x39,0x0,0x50,0x0,0x4a,
0x0,0x5c,0x0,0x5d,0x0,0x5d,0x0,0x5c,0x0,0x54,0x0,0x4b,0x0,0x4d,0x0,0x46,
0x0,0x55,0x0,0x55,0x0,0x66,0x0,0x6a,0x0,0x6e,0x0,0x70,0x0,0x66,0x0,0x65,
0x0,0x5b,0x0,0x5a,0x0,0x5b,0x0,0x5f,0x0,0x68,0x0,0x70,0x0,0x76,0x0,0x7e,
0x0,0x7b,0x0,0x81,0x0,0x7d,0x0,0x82,0x0,0x7d,0x0,0x82,0x0,0x7a,0x0,0x80,
0x0,0x79,0x0,0x7e,0x0,0x7d,0x0,0x80,0x0,0x7e,0x0,0x81,0x0,0x7d,0x0,0x82,
0x0,0x7d,0x0,0x7f,0x0,0x77,0x0,0x72,0x0,0x6b,0x0,0x62,0x0,0x67,0x0,0x5f,
0x0,0x6a,0x0,0x67,0x0,0x6d,0x0,0x6a,0x0,0x66,0x0,0x5f,0x0,0x56,0x0,0x4e,
0x0,0x49,0x0,0x43,0x0,0x45,0x0,0x45,0x0,0x47,0x0,0x4a,0x0,0x47,0x0,0x49,
0x0,0x46,0x0,0x41,0x0,0x43,0x0,0x3a,0x0,0x40,0x0,0x3a,0x0,0x3f,0x0,0x3d,
0x0,0x45,0x0,0x43,0x0,0x4f,0x0,0x4a,0x0,0x55,0x0,0x4e,0x0,0x5b,0x0,0x56,
0x0,0x5e,0x0,0x5e,0x0,0x5d,0x0,0x60,0x0,0x62,0x0,0x66,0x0,0x6e,0x0,0x6e,
0x0,0x78,0x0,0x74,0x0,0x7d,0x0,0x7b,0x0,0x79,0x0,0x80,0x0,0x71,0x0,0x7b,
0x0,0x71,0x0,0x74,0x0,0x72,0x0,0x6e,0x0,0x72,0x0,0x6c,0x0,0x72,0x0,0x70,
0x0,0x70,0x0,0x72,0x0,0x6e,0x0,0x6d,0x0,0x6d,0x0,0x66,0x0,0x68,0x0,0x5f,
0x0,0x63,0x0,0x5d,0x0,0x62,0x0,0x62,0x0,0x61,0x0,0x65,0x0,0x5a,0x0,0x61,
0x0,0x51,0x0,0x56,0x0,0x44,0x0,0x49,0x0,0x3e,0x0,0x42,0x0,0x42,0x0,0x45,
0x0,0x48,0x0,0x49,0x0,0x46,0x0,0x46,0x0,0x3f,0x0,0x3e,0x0,0x3b,0x0,0x36,
0x0,0x3d,0x0,0x37,0x0,0x44,0x0,0x42,0x0,0x53,0x0,0x54,0x0,0x5d,0x0,0x60,
0x0,0x5c,0x0,0x5d,0x0,0x59,0x0,0x55,0x0,0x5a,0x0,0x54,0x0,0x5e,0x0,0x59,
0x0,0x64,0x0,0x5e,0x0,0x66,0x0,0x5f,0x0,0x65,0x0,0x5e,0x0,0x63,0x0,0x5e,
0x0,0x64,0x0,0x61,0x0,0x68,0x0,0x63,0x0,0x68,0x0,0x63,0x0,0x62,0x0,0x62,
0x0,0x63,0x0,0x65,0x0,0x68,0x0,0x68,0x0,0x65,0x0,0x61,0x0,0x59,0x0,0x53,
0x0,0x4a,0x0,0x47,0x0,0x42,0x0,0x45,0x0,0x4a,0x0,0x4a,0x0,0x54,0x0,0x50,
0x0,0x52,0x0,0x4f,0x0,0x48,0x0,0x47,0x0,0x3c,0x0,0x3b,0x0,0x3a,0x0,0x36,
0x0,0x42,0x0,0x38,0x0,0x48,0x0,0x3f,0x0,0x45,0x0,0x46,0x0,0x40,0x0,0x45,
0x0,0x3a,0x0,0x3a,0x0,0x38,0x0,0x37,0x0,0x41,0x0,0x3e,0x0,0x4c,0x0,0x46,
0x0,0x4e,0x0,0x4e,0x0,0x4c,0x0,0x4f,0x0,0x4f,0x0,0x4b,0x0,0x54,0x0,0x4d,
0x0,0x5a,0x0,0x53,0x0,0x5e,0x0,0x56,0x0,0x5a,0x0,0x52,0x0,0x53,0x0,0x4b,
0x0,0x53,0x0,0x4d,0x0,0x58,0x0,0x58,0x0,0x55,0x0,0x54,0x0,0x47,0x0,0x43,
0x0,0x3b,0x0,0x36,0x0,0x3b,0x0,0x39,0x0,0x48,0x0,0x4d,0x0,0x57,0x0,0x5f,
0x0,0x60,0x0,0x5c,0x0,0x5c,0x0,0x4d,0x0,0x54,0x0,0x47,0x0,0x54,0x0,0x50,
0x0,0x56,0x0,0x5c,0x0,0x55,0x0,0x5a,0x0,0x54,0x0,0x4c,0x0,0x51,0x0,0x41,
0x0,0x4d,0x0,0x43,0x0,0x46,0x0,0x46,0x0,0x3c,0x0,0x41,0x0,0x3c,0x0,0x37,
0x0,0x46,0x0,0x33,0x0,0x4d,0x0,0x39,0x0,0x49,0x0,0x3e,0x0,0x3a,0x0,0x37,
0x0,0x2c,0x0,0x2b,0x0,0x2e,0x0,0x28,0x0,0x35,0x0,0x31,0x0,0x37,0x0,0x38,
0x0,0x35,0x0,0x35,0x0,0x2f,0x0,0x2a,0x0,0x2b,0x0,0x24,0x0,0x2e,0x0,0x28,
0x0,0x2e,0x0,0x2d,0x0,0x2b,0x0,0x2b,0x0,0x2f,0x0,0x29,0x0,0x36,0x0,0x32,
0x0,0x3b,0x0,0x3f,0x0,0x3a,0x0,0x44,0x0,0x36,0x0,0x41,0x0,0x3b,0x0,0x3e,
0x0,0x47,0x0,0x47,0x0,0x51,0x0,0x54,0x0,0x54,0x0,0x5a,0x0,0x50,0x0,0x55,
0x0,0x4d,0x0,0x4e,0x0,0x53,0x0,0x4f,0x0,0x59,0x0,0x57,0x0,0x59,0x0,0x5c,
0x0,0x54,0x0,0x57,0x0,0x4f,0x0,0x4d,0x0,0x50,0x0,0x46,0x0,0x52,0x0,0x44,
0x0,0x49,0x0,0x3d,0x0,0x38,0x0,0x2a,0x0,0x29,0x0,0x19,0x0,0x26,0x0,0x17,
0x0,0x29,0x0,0x1c,0x0,0x25,0x0,0x1b,0x0,0x1a,0x0,0x13,0x0,0x11,0x0,0xb,
0x0,0xf,0x0,0xb,0x0,0x16,0x0,0x17,0x0,0x1d,0x0,0x20,0x0,0x1d,0x0,0x21,
0x0,0x18,0x0,0x1d,0x0,0x17,0x0,0x18,0x0,0x1c,0x0,0x1a,0x0,0x21,0x0,0x26,
0x0,0x22,0x0,0x30,0x0,0x25,0x0,0x34,0x0,0x2d,0x0,0x34,0x0,0x33,0x0,0x34,
0x0,0x35,0x0,0x37,0x0,0x35,0x0,0x3b,0x0,0x35,0x0,0x3b,0x0,0x38,0x0,0x3b,
0x0,0x3d,0x0,0x3d,0x0,0x3f,0x0,0x3e,0x0,0x40,0x0,0x40,0x0,0x41,0x0,0x3f,
0x0,0x44,0x0,0x3c,0x0,0x47,0x0,0x3f,0x0,0x46,0x0,0x46,0x0,0x40,0x0,0x47,
0x0,0x3b,0x0,0x41,0x0,0x39,0x0,0x35,0x0,0x3a,0x0,0x29,0x0,0x35,0x0,0x26,
0x0,0x2a,0x0,0x26,0x0,0x24,0x0,0x25,0x0,0x24,0x0,0x20,0x0,0x24,0x0,0x18,
0x0,0x22,0x0,0x15,0x0,0x1f,0x0,0x1a,0x0,0x1d,0x0,0x1e,0x0,0x1c,0x0,0x1d,
0x0,0x1a,0x0,0x1b,0x0,0x17,0x0,0x1a,0x0,0x15,0x0,0x1c,0x0,0x17,0x0,0x1e,
0x0,0x19,0x0,0x1b,0x0,0x19,0x0,0x17,0x0,0x15,0x0,0x1b,0x0,0x15,0x0,0x26,
0x0,0x1d,0x0,0x2d,0x0,0x27,0x0,0x29,0x0,0x24,0x0,0x1c,0x0,0x18,0x0,0x14,
0x0,0x12,0x0,0x1c,0x0,0x1b,0x0,0x2d,0x0,0x2a,0x0,0x34,0x0,0x2e,0x0,0x29,
0x0,0x27,0x0,0x1d,0x0,0x25,0x0,0x21,0x0,0x31,0x0,0x35,0x0,0x41,0x0,0x46,
0x0,0x45,0x0,0x43,0x0,0x38,0x0,0x2e,0x0,0x28,0x0,0x1d,0x0,0x25,0x0,0x1d,
0x0,0x2c,0x0,0x28,0x0,0x31,0x0,0x2e,0x0,0x2e,0x0,0x28,0x0,0x22,0x0,0x1c,
0x0,0x1b,0x0,0x17,0x0,0x1e,0x0,0x1a,0x0,0x21,0x0,0x1e,0x0,0x1e,0x0,0x20,
0x0,0x1b,0x0,0x1c,0x0,0x16,0x0,0x11,0x0,0xd,0x0,0x8,0x0,0x4,0x0,0x3,
0x0,0xff,0xff,0x1,0x0,0xfc,0xff,0x4,0x0,0xfb,0xff,0x5,0x0,0xf8,0xff,0x0,
0x0,0xf0,0xff,0xfa,0xff,0xe9,0xff,0xfa,0xff,0xef,0xff,0x0,0x0,0xf8,0xff,0x5,
0x0,0xfa,0xff,0x1,0x0,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0x3,0x0,0x3,
0x0,0xd,0x0,0x7,0x0,0xf,0x0,0x5,0x0,0x9,0x0,0x1,0x0,0x8,0x0,0x2,
0x0,0x14,0x0,0xc,0x0,0x23,0x0,0x18,0x0,0x2a,0x0,0x1e,0x0,0x27,0x0,0x1a,
0x0,0x1f,0x0,0x11,0x0,0x1a,0x0,0xd,0x0,0x18,0x0,0xd,0x0,0x18,0x0,0x11,
0x0,0x15,0x0,0x13,0x0,0x10,0x0,0xe,0x0,0xc,0x0,0x6,0x0,0x8,0x0,0x2,
0x0,0x2,0x0,0x4,0x0,0xfe,0xff,0x3,0x0,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xf8,
0xff,0xf7,0xff,0xf5,0xff,0xed,0xff,0xf1,0xff,0xe6,0xff,0xed,0xff,0xe9,0xff,0xee,
0xff,0xef,0xff,0xf0,0xff,0xf1,0xff,0xf5,0xff,0xef,0xff,0xfa,0xff,0xf0,0xff,0xf4,
0xff,0xf1,0xff,0xe8,0xff,0xf0,0xff,0xe4,0xff,0xf1,0xff,0xe9,0xff,0xf6,0xff,0xf4,
0xff,0xfb,0xff,0xfc,0xff,0x1,0x0,0xfa,0xff,0x6,0x0,0xf7,0xff,0x7,0x0,0xfb,
0xff,0x6,0x0,0x2,0x0,0xa,0x0,0x7,0x0,0x13,0x0,0xb,0x0,0x14,0x0,0x10,
0x0,0x14,0x0,0x16,0x0,0x17,0x0,0x15,0x0,0x17,0x0,0xc,0x0,0x11,0x0,0x6,
0x0,0xf,0x0,0x9,0x0,0x10,0x0,0xf,0x0,0x13,0x0,0x10,0x0,0x13,0x0,0xb,
0x0,0x6,0x0,0x0,0x0,0xf4,0xff,0xf7,0xff,0xed,0xff,0xf5,0xff,0xf1,0xff,0xf9,
0xff,0xf8,0xff,0xfa,0xff,0xf8,0xff,0xf8,0xff,0xf1,0xff,0xf4,0xff,0xed,0xff,0xec,
0xff,0xf0,0xff,0xe7,0xff,0xf6,0xff,0xeb,0xff,0xf7,0xff,0xf4,0xff,0xf6,0xff,0xfc,
0xff,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xed,0xff,0xf2,0xff,0xe1,0xff,0xef,0xff,0xe5,
0xff,0xf2,0xff,0xf6,0xff,0xfd,0xff,0x4,0x0,0x7,0x0,0x4,0x0,0x3,0x0,0xfa,
0xff,0xfc,0xff,0xf3,0xff,0xff,0xff,0xf9,0xff,0x8,0x0,0x5,0x0,0xd,0x0,0xa,
0x0,0x6,0x0,0x4,0x0,0xfb,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0x9,0x0,0x5,
0x0,0x15,0x0,0xd,0x0,0x14,0x0,0xb,0x0,0xb,0x0,0x1,0x0,0x7,0x0,0xfd,
0xff,0xd,0x0,0x1,0x0,0x10,0x0,0x3,0x0,0x6,0x0,0xfc,0xff,0xfb,0xff,0xf3,
0xff,0xf6,0xff,0xef,0xff,0xfb,0xff,0xf3,0xff,0x0,0x0,0xfa,0xff,0xfb,0xff,0xfb,
0xff,0xf5,0xff,0xf5,0xff,0xf6,0xff,0xef,0xff,0xfa,0xff,0xf0,0xff,0xfb,0xff,0xf7,
0xff,0xf8,0xff,0xfb,0xff,0xf5,0xff,0xf8,0xff,0xf2,0xff,0xf3,0xff,0xf2,0xff,0xf2,
0xff,0xf5,0xff,0xf5,0xff,0xf8,0xff,0xf9,0xff,0xf9,0xff,0xf8,0xff,0xfa,0xff,0xf5,
0xff,0xf8,0xff,0xf3,0xff,0xf3,0xff,0xf1,0xff,0xf2,0xff,0xeb,0xff,0xf5,0xff,0xe6,
0xff,0xf9,0xff,0xe9,0xff,0xf9,0xff,0xee,0xff,0xf1,0xff,0xee,0xff,0xed,0xff,0xed,
0xff,0xf1,0xff,0xef,0xff,0xf7,0xff,0xf2,0xff,0xf7,0xff,0xf3,0xff,0xf7,0xff,0xf5,
0xff,0xf8,0xff,0xf8,0xff,0xfc,0xff,0xf8,0xff,0xfc,0xff,0xf9,0xff,0xf8,0xff,0xf8,
0xff,0xf6,0xff,0xf2,0xff,0xfa,0xff,0xf1,0xff,0x0,0x0,0xfa,0xff,0x4,0x0,0x2,
0x0,0x0,0x0,0x4,0x0,0xf6,0xff,0xff,0xff,0xf3,0xff,0xfa,0xff,0xf9,0xff,0xfc,
0xff,0x0,0x0,0x3,0x0,0x3,0x0,0x3,0x0,0xfd,0xff,0xfc,0xff,0xf1,0xff,0xf1,
0xff,0xed,0xff,0xef,0xff,0xf3,0xff,0xf4,0xff,0xf7,0xff,0xf8,0xff,0xf3,0xff,0xf5,
0xff,0xec,0xff,0xec,0xff,0xe2,0xff,0xe5,0xff,0xdd,0xff,0xe8,0xff,0xe2,0xff,0xec,
0xff,0xe7,0xff,0xeb,0xff,0xe4,0xff,0xe5,0xff,0xde,0xff,0xdb,0xff,0xdc,0xff,0xd9,
0xff,0xe4,0xff,0xe3,0xff,0xeb,0xff,0xee,0xff,0xeb,0xff,0xf1,0xff,0xea,0xff,0xed,
0xff,0xec,0xff,0xe7,0xff,0xf3,0xff,0xe9,0xff,0xf7,0xff,0xf2,0xff,0xf2,0xff,0xf4,
0xff,0xe8,0xff,0xf0,0xff,0xe2,0xff,0xe6,0xff,0xe4,0xff,0xde,0xff,0xeb,0xff,0xe5,
0xff,0xec,0xff,0xf0,0xff,0xe6,0xff,0xee,0xff,0xe1,0xff,0xe8,0xff,0xe3,0xff,0xe5,
0xff,0xea,0xff,0xe8,0xff,0xef,0xff,0xf0,0xff,0xeb,0xff,0xef,0xff,0xe3,0xff,0xe5,
0xff,0xe0,0xff,0xdf,0xff,0xe5,0xff,0xe5,0xff,0xf1,0xff,0xf1,0xff,0xfb,0xff,0xfa,
0xff,0xf9,0xff,0xf7,0xff,0xf1,0xff,0xef,0xff,0xec,0xff,0xeb,0xff,0xf1,0xff,0xf0,
0xff,0xf8,0xff,0xf6,0xff,0xf8,0xff,0xf8,0xff,0xf1,0xff,0xf4,0xff,0xec,0xff,0xef,
0xff,0xef,0xff,0xec,0xff,0xf9,0xff,0xf0,0xff,0xfe,0xff,0xf6,0xff,0xf9,0xff,0xf7,
0xff,0xf6,0xff,0xf5,0xff,0xf9,0xff,0xf5,0xff,0xfe,0xff,0xf2,0xff,0xfc,0xff,0xef,
0xff,0xf2,0xff,0xed,0xff,0xec,0xff,0xed,0xff,0xf2,0xff,0xee,0xff,0xfc,0xff,0xf1,
0xff,0xff,0xff,0xf1,0xff,0xf8,0xff,0xec,0xff,0xec,0xff,0xe6,0xff,0xe7,0xff,0xe6,
0xff,0xeb,0xff,0xea,0xff,0xf2,0xff,0xeb,0xff,0xf9,0xff,0xeb,0xff,0xfb,0xff,0xee,
0xff,0xfa,0xff,0xf7,0xff,0xfd,0xff,0x1,0x0,0x0,0x0,0x4,0x0,0x4,0x0,0x3,
0x0,0xb,0x0,0x5,0x0,0xf,0x0,0xb,0x0,0x8,0x0,0x11,0x0,0x3,0x0,0x11,
0x0,0x7,0x0,0xb,0x0,0x13,0x0,0x9,0x0,0x19,0x0,0xe,0x0,0x11,0x0,0xd,
0x0,0x5,0x0,0x4,0x0,0x1,0x0,0xfe,0xff,0x4,0x0,0xfe,0xff,0x5,0x0,0x4,
0x0,0xff,0xff,0x4,0x0,0xf3,0xff,0xf7,0xff,0xec,0xff,0xe9,0xff,0xee,0xff,0xe9,
0xff,0xf1,0xff,0xf0,0xff,0xf0,0xff,0xf4,0xff,0xec,0xff,0xef,0xff,0xe9,0xff,0xe2,
0xff,0xe6,0xff,0xdb,0xff,0xe4,0xff,0xde,0xff,0xe2,0xff,0xe3,0xff,0xe4,0xff,0xe4,
0xff,0xea,0xff,0xe5,0xff,0xee,0xff,0xe8,0xff,0xeb,0xff,0xeb,0xff,0xe8,0xff,0xeb,
0xff,0xec,0xff,0xec,0xff,0xf4,0xff,0xf1,0xff,0xfa,0xff,0xfa,0xff,0xfd,0xff,0x3,
0x0,0xff,0xff,0x9,0x0,0x5,0x0,0x9,0x0,0x8,0x0,0x8,0x0,0x5,0x0,0x8,
0x0,0x0,0x0,0x8,0x0,0x4,0x0,0xb,0x0,0xf,0x0,0xe,0x0,0x10,0x0,0xb,
0x0,0x6,0x0,0x2,0x0,0xfd,0xff,0xf8,0xff,0xfe,0xff,0xf1,0xff,0x1,0x0,0xef,
0xff,0xfd,0xff,0xf1,0xff,0xf0,0xff,0xef,0xff,0xe5,0xff,0xec,0xff,0xe8,0xff,0xea,
0xff,0xf0,0xff,0xe6,0xff,0xed,0xff,0xe1,0xff,0xe0,0xff,0xdd,0xff,0xdb,0xff,0xdf,
0xff,0xe4,0xff,0xe5,0xff,0xef,0xff,0xea,0xff,0xec,0xff,0xe5,0xff,0xdf,0xff,0xdc,
0xff,0xda,0xff,0xdc,0xff,0xe3,0xff,0xe6,0xff,0xf0,0xff,0xf2,0xff,0xf8,0xff,0xf8,
0xff,0xf8,0xff,0xf7,0xff,0xf9,0xff,0xf8,0xff,0xfe,0xff,0x1,0x0,0x5,0x0,0x8,
0x0,0x3,0x0,0x6,0x0,0xff,0xff,0x1,0x0,0x1,0x0,0x1,0x0,0x5,0x0,0x4,
0x0,0x6,0x0,0x6,0x0,0x3,0x0,0x3,0x0,0x1,0x0,0xff,0xff,0x2,0x0,0xfe,
0xff,0x6,0x0,0xfe,0xff,0x7,0x0,0xfc,0xff,0x1,0x0,0xfa,0xff,0xfa,0xff,0xf6,
0xff,0xf6,0xff,0xf2,0xff,0xf2,0xff,0xf0,0xff,0xea,0xff,0xec,0xff,0xe4,0xff,0xe6,
0xff,0xe7,0xff,0xe5,0xff,0xec,0xff,0xe9,0xff,0xe6,0xff,0xea,0xff,0xdd,0xff,0xe5,
0xff,0xdc,0xff,0xe1,0xff,0xe4,0xff,0xe3,0xff,0xef,0xff,0xe8,0xff,0xf5,0xff,0xed,
0xff,0xf4,0xff,0xf1,0xff,0xef,0xff,0xf1,0xff,0xec,0xff,0xf0,0xff,0xf1,0xff,0xf1,
0xff,0xfa,0xff,0xf7,0xff,0x1,0x0,0xfe,0xff,0x5,0x0,0x2,0x0,0x1,0x0,0x0,
0x0,0xfa,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0x4,0x0,0x2,0x0,0xe,0x0,0x8,
0x0,0x10,0x0,0x6,0x0,0x8,0x0,0x1,0x0,0x0,0x0,0xfe,0xff,0x3,0x0,0xff,
0xff,0xb,0x0,0x6,0x0,0xe,0x0,0xa,0x0,0xb,0x0,0x3,0x0,0x6,0x0,0xff,
0xff,0x8,0x0,0x3,0x0,0xf,0x0,0x5,0x0,0xf,0x0,0x7,0x0,0x9,0x0,0x7,
0x0,0x4,0x0,0x3,0x0,0x3,0x0,0x2,0x0,0x9,0x0,0x5,0x0,0x11,0x0,0x8,
0x0,0xf,0x0,0xa,0x0,0x5,0x0,0x9,0x0,0xfd,0xff,0x3,0x0,0xfb,0xff,0xff,
0xff,0x1,0x0,0xfd,0xff,0x7,0x0,0xfe,0xff,0x7,0x0,0x1,0x0,0x4,0x0,0xff,
0xff,0x1,0x0,0xfd,0xff,0x2,0x0,0x1,0x0,0x7,0x0,0x4,0x0,0x8,0x0,0x4,
0x0,0x8,0x0,0x4,0x0,0xa,0x0,0x3,0x0,0xa,0x0,0x2,0x0,0x6,0x0,0x2,
0x0,0x1,0x0,0x0,0x0,0xff,0xff,0x0,0x0,0x7,0x0,0x5,0x0,0x12,0x0,0x6,
0x0,0x14,0x0,0x3,0x0,0xb,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x6,0x0,0xb,
0x0,0x16,0x0,0x17,0x0,0x1d,0x0,0x19,0x0,0x11,0x0,0x10,0x0,0x7,0x0,0xb,
0x0,0xd,0x0,0x11,0x0,0x18,0x0,0x1a,0x0,0x1c,0x0,0x1c,0x0,0x14,0x0,0x15,
0x0,0x9,0x0,0xb,0x0,0x9,0x0,0xa,0x0,0x11,0x0,0x11,0x0,0x15,0x0,0x15,
0x0,0xf,0x0,0x14,0x0,0x5,0x0,0xf,0x0,0x4,0x0,0x9,0x0,0x9,0x0,0x3,
0x0,0xa,0x0,0x1,0x0,0x9,0x0,0x7,0x0,0x7,0x0,0xe,0x0,0x6,0x0,0xc,
0x0,0x2,0x0,0x2,0x0,0xfd,0xff,0xfa,0xff,0xfe,0xff,0xfa,0xff,0x6,0x0,0x1,
0x0,0xa,0x0,0x5,0x0,0x5,0x0,0xfd,0xff,0xfd,0xff,0xf4,0xff,0xf9,0xff,0xf2,
0xff,0xff,0xff,0xf8,0xff,0xd,0x0,0x3,0x0,0x14,0x0,0xa,0x0,0xd,0x0,0x8,
0x0,0x8,0x0,0x9,0x0,0xe,0x0,0xb,0x0,0x19,0x0,0xc,0x0,0x20,0x0,0x11,
0x0,0x21,0x0,0x15,0x0,0x1b,0x0,0x18,0x0,0x16,0x0,0x18,0x0,0x19,0x0,0x12,
0x0,0x1e,0x0,0xf,0x0,0x20,0x0,0x19,0x0,0x1f,0x0,0x22,0x0,0x1b,0x0,0x20,
0x0,0x14,0x0,0x17,0x0,0xb,0x0,0xe,0x0,0x8,0x0,0xf,0x0,0xc,0x0,0x15,
0x0,0x11,0x0,0x15,0x0,0x12,0x0,0xf,0x0,0xd,0x0,0xc,0x0,0x5,0x0,0xe,
0x0,0x6,0x0,0x12,0x0,0xe,0x0,0x13,0x0,0x17,0x0,0x12,0x0,0x1d,0x0,0x14,
0x0,0x18,0x0,0x19,0x0,0xf,0x0,0x1d,0x0,0x11,0x0,0x1a,0x0,0x1c,0x0,0x17,
0x0,0x21,0x0,0x18,0x0,0x1c,0x0,0x19,0x0,0x15,0x0,0x15,0x0,0x1a,0x0,0x15,
0x0,0x26,0x0,0x1d,0x0,0x2c,0x0,0x25,0x0,0x2a,0x0,0x26,0x0,0x25,0x0,0x20,
0x0,0x22,0x0,0x1c,0x0,0x28,0x0,0x21,0x0,0x2d,0x0,0x2b,0x0,0x27,0x0,0x29,
0x0,0x1c,0x0,0x1c,0x0,0x16,0x0,0x11,0x0,0x18,0x0,0x14,0x0,0x1d,0x0,0x1d,
0x0,0x1f,0x0,0x22,0x0,0x1d,0x0,0x20,0x0,0x1d,0x0,0x19,0x0,0x1e,0x0,0x1a,
0x0,0x1d,0x0,0x21,0x0,0x1d,0x0,0x26,0x0,0x21,0x0,0x27,0x0,0x26,0x0,0x2b,
0x0,0x2b,0x0,0x2f,0x0,0x2d,0x0,0x30,0x0,0x2c,0x0,0x2e,0x0,0x2b,0x0,0x2e,
0x0,0x30,0x0,0x31,0x0,0x33,0x0,0x36,0x0,0x33,0x0,0x37,0x0,0x32,0x0,0x31,
0x0,0x2f,0x0,0x2b,0x0,0x29,0x0,0x2a,0x0,0x26,0x0,0x2c,0x0,0x26,0x0,0x2b,
0x0,0x29,0x0,0x26,0x0,0x2a,0x0,0x21,0x0,0x22,0x0,0x20,0x0,0x19,0x0,0x1f,
0x0,0x17,0x0,0x1c,0x0,0x1a,0x0,0x1a,0x0,0x1c,0x0,0x19,0x0,0x19,0x0,0x17,
0x0,0x14,0x0,0x17,0x0,0x12,0x0,0x18,0x0,0x13,0x0,0x14,0x0,0x16,0x0,0x13,
0x0,0x1c,0x0,0x18,0x0,0x1e,0x0,0x1f,0x0,0x1f,0x0,0x25,0x0,0x26,0x0,0x28,
0x0,0x2b,0x0,0x27,0x0,0x2c,0x0,0x29,0x0,0x2e,0x0,0x2d,0x0,0x30,0x0,0x2e,
0x0,0x31,0x0,0x2e,0x0,0x31,0x0,0x2f,0x0,0x2f,0x0,0x31,0x0,0x2f,0x0,0x33,
0x0,0x2f,0x0,0x33,0x0,0x2a,0x0,0x33,0x0,0x29,0x0,0x33,0x0,0x2f,0x0,0x32,
0x0,0x31,0x0,0x31,0x0,0x2a,0x0,0x2f,0x0,0x21,0x0,0x29,0x0,0x1c,0x0,0x26,
0x0,0x1e,0x0,0x26,0x0,0x23,0x0,0x25,0x0,0x23,0x0,0x21,0x0,0x1e,0x0,0x1c,
0x0,0x1a,0x0,0x1a,0x0,0x1b,0x0,0x1b,0x0,0x20,0x0,0x1d,0x0,0x26,0x0,0x1e,
0x0,0x26,0x0,0x1c,0x0,0x21,0x0,0x19,0x0,0x1e,0x0,0x18,0x0,0x1d,0x0,0x1b,
0x0,0x21,0x0,0x21,0x0,0x29,0x0,0x26,0x0,0x2c,0x0,0x26,0x0,0x2b,0x0,0x24,
0x0,0x28,0x0,0x22,0x0,0x22,0x0,0x24,0x0,0x23,0x0,0x2b,0x0,0x2d,0x0,0x31,
0x0,0x31,0x0,0x2e,0x0,0x2b,0x0,0x27,0x0,0x27,0x0,0x27,0x0,0x29,0x0,0x2e,
0x0,0x2e,0x0,0x35,0x0,0x2f,0x0,0x35,0x0,0x29,0x0,0x2e,0x0,0x21,0x0,0x26,
0x0,0x1f,0x0,0x23,0x0,0x22,0x0,0x24,0x0,0x21,0x0,0x26,0x0,0x1c,0x0,0x23,
0x0,0x17,0x0,0x1e,0x0,0x18,0x0,0x19,0x0,0x1e,0x0,0x16,0x0,0x20,0x0,0x16,
0x0,0x1c,0x0,0x16,0x0,0x1d,0x0,0x14,0x0,0x20,0x0,0x14,0x0,0x1e,0x0,0x12,
0x0,0x1a,0x0,0xf,0x0,0x19,0x0,0x11,0x0,0x1b,0x0,0x14,0x0,0x1f,0x0,0x18,
0x0,0x1f,0x0,0x1d,0x0,0x1b,0x0,0x20,0x0,0x1c,0x0,0x1f,0x0,0x24,0x0,0x20,
0x0,0x2b,0x0,0x26,0x0,0x30,0x0,0x2e,0x0,0x2d,0x0,0x30,0x0,0x26,0x0,0x2c,
0x0,0x24,0x0,0x29,0x0,0x25,0x0,0x28,0x0,0x27,0x0,0x2b,0x0,0x28,0x0,0x2f,
0x0,0x29,0x0,0x2e,0x0,0x2b,0x0,0x27,0x0,0x2c,0x0,0x24,0x0,0x28,0x0,0x26,
0x0,0x26,0x0,0x28,0x0,0x25,0x0,0x23,0x0,0x23,0x0,0x19,0x0,0x23,0x0,0x11,
0x0,0x22,0x0,0xf,0x0,0x1d,0x0,0x14,0x0,0x18,0x0,0x1a,0x0,0x16,0x0,0x1a,
0x0,0x17,0x0,0x1b,0x0,0x20,0x0,0x1e,0x0,0x26,0x0,0x1e,0x0,0x21,0x0,0x1e,
0x0,0x1b,0x0,0x1e,0x0,0x1a,0x0,0x1e,0x0,0x1c,0x0,0x20,0x0,0x22,0x0,0x21,
0x0,0x29,0x0,0x21,0x0,0x28,0x0,0x20,0x0,0x26,0x0,0x20,0x0,0x22,0x0,0x1e,
0x0,0x1b,0x0,0x1c,0x0,0x15,0x0,0x19,0x0,0x14,0x0,0x17,0x0,0x18,0x0,0x19,
0x0,0x1e,0x0,0x1b,0x0,0x1d,0x0,0x1c,0x0,0x13,0x0,0x1a,0x0,0xf,0x0,0x18,
0x0,0x17,0x0,0x1a,0x0,0x24,0x0,0x1f,0x0,0x29,0x0,0x1f,0x0,0x22,0x0,0x1b,
0x0,0x17,0x0,0x15,0x0,0x13,0x0,0x11,0x0,0x1a,0x0,0x13,0x0,0x22,0x0,0x18,
0x0,0x24,0x0,0x1c,0x0,0x1e,0x0,0x1b,0x0,0x18,0x0,0x17,0x0,0x15,0x0,0x16,
0x0,0x17,0x0,0x18,0x0,0x19,0x0,0x1a,0x0,0x17,0x0,0x1c,0x0,0x17,0x0,0x1c,
0x0,0x19,0x0,0x1b,0x0,0x1a,0x0,0x1a,0x0,0x1d,0x0,0x16,0x0,0x1d,0x0,0x14,
0x0,0x16,0x0,0x13,0x0,0x12,0x0,0x10,0x0,0x14,0x0,0x11,0x0,0x16,0x0,0x12,
0x0,0x14,0x0,0xf,0x0,0xe,0x0,0xe,0x0,0x8,0x0,0x10,0x0,0xc,0x0,0xe,
0x0,0x13,0x0,0xd,0x0,0x12,0x0,0xf,0x0,0x11,0x0,0x11,0x0,0x11,0x0,0x13,
0x0,0xf,0x0,0x12,0x0,0xf,0x0,0xf,0x0,0x11,0x0,0xd,0x0,0x10,0x0,0xe,
0x0,0x10,0x0,0x12,0x0,0x12,0x0,0x15,0x0,0x13,0x0,0x10,0x0,0x13,0x0,0xd,
0x0,0xf,0x0,0xc,0x0,0xe,0x0,0xc,0x0,0x11,0x0,0x10,0x0,0x14,0x0,0x14,
0x0,0x11,0x0,0x14,0x0,0xe,0x0,0x12,0x0,0xc,0x0,0x10,0x0,0xf,0x0,0xd,
0x0,0x13,0x0,0xc,0x0,0x14,0x0,0x10,0x0,0x12,0x0,0x16,0x0,0x14,0x0,0x19,
0x0,0x18,0x0,0x18,0x0,0x1e,0x0,0x1b,0x0,0x20,0x0,0x1e,0x0,0x1f,0x0,0x1e,
0x0,0x20,0x0,0x1e,0x0,0x1e,0x0,0x1f,0x0,0x18,0x0,0x1a,0x0,0x15,0x0,0x16,
0x0,0x14,0x0,0x12,0x0,0x15,0x0,0x10,0x0,0x1a,0x0,0x15,0x0,0x1b,0x0,0x1a,
0x0,0x17,0x0,0x19,0x0,0x16,0x0,0x15,0x0,0x17,0x0,0x12,0x0,0x19,0x0,0x11,
0x0,0x1b,0x0,0x15,0x0,0x1b,0x0,0x16,0x0,0x1a,0x0,0x13,0x0,0x1a,0x0,0x13,
0x0,0x1a,0x0,0x16,0x0,0x19,0x0,0x15,0x0,0x1a,0x0,0x13,0x0,0x1b,0x0,0x11,
0x0,0x1f,0x0,0x12,0x0,0x22,0x0,0x18,0x0,0x20,0x0,0x19,0x0,0x1a,0x0,0x13,
0x0,0x17,0x0,0x12,0x0,0x1b,0x0,0x19,0x0,0x21,0x0,0x1f,0x0,0x1e,0x0,0x1f,
0x0,0x12,0x0,0x1a,0x0,0xa,0x0,0x12,0x0,0xa,0x0,0xf,0x0,0xf,0x0,0x11,
0x0,0x11,0x0,0x10,0x0,0xc,0x0,0x9,0x0,0x8,0x0,0x4,0x0,0x9,0x0,0x6,
0x0,0xc,0x0,0xa,0x0,0xf,0x0,0xc,0x0,0xe,0x0,0xb,0x0,0xb,0x0,0xa,
0x0,0xd,0x0,0x8,0x0,0xe,0x0,0x7,0x0,0x8,0x0,0x8,0x0,0x3,0x0,0xb,
0x0,0x5,0x0,0xd,0x0,0xa,0x0,0x9,0x0,0xe,0x0,0x2,0x0,0xc,0x0,0x2,
0x0,0xa,0x0,0x9,0x0,0xc,0x0,0xe,0x0,0x12,0x0,0xf,0x0,0x10,0x0,0xd,
0x0,0xb,0x0,0xb,0x0,0xc,0x0,0xd,0x0,0x13,0x0,0x12,0x0,0x19,0x0,0x16,
0x0,0x17,0x0,0x14,0x0,0xc,0x0,0x10,0x0,0x6,0x0,0xe,0x0,0xd,0x0,0xe,
0x0,0x18,0x0,0x10,0x0,0x19,0x0,0x11,0x0,0x11,0x0,0x12,0x0,0x8,0x0,0x11,
0x0,0x6,0x0,0xb,0x0,0x7,0x0,0x3,0x0,0x6,0x0,0x4,0x0,0x5,0x0,0x7,
0x0,0x4,0x0,0xb,0x0,0x6,0x0,0xc,0x0,0x8,0x0,0xa,0x0,0x7,0x0,0x7,
0x0,0x4,0x0,0xb,0x0,0x6,0x0,0xf,0x0,0xc,0x0,0xf,0x0,0xe,0x0,0xd,
0x0,0xc,0x0,0xd,0x0,0xb,0x0,0x10,0x0,0xe,0x0,0x10,0x0,0x12,0x0,0xd,
0x0,0x10,0x0,0xd,0x0,0xc,0x0,0xf,0x0,0xc,0x0,0x10,0x0,0xf,0x0,0x12,
0x0,0x12,0x0,0x10,0x0,0x13,0x0,0x10,0x0,0x10,0x0,0x12,0x0,0xe,0x0,0x11,
0x0,0xe,0x0,0x10,0x0,0x10,0x0,0x11,0x0,0x10,0x0,0x10,0x0,0x11,0x0,0x12,
0x0,0x13,0x0,0x13,0x0,0xe,0x0,0xc,0x0,0x6,0x0,0x7,0x0,0x2,0x0,0x8,
0x0,0x6,0x0,0xa,0x0,0xc,0x0,0xc,0x0,0xd,0x0,0xb,0x0,0x7,0x0,0x7,
0x0,0x3,0x0,0x9,0x0,0x5,0x0,0xc,0x0,0xc,0x0,0xe,0x0,0x12,0x0,0x10,
0x0,0x10,0x0,0xe,0x0,0x8,0x0,0x8,0x0,0x6,0x0,0x9,0x0,0x9,0x0,0xe,
0x0,0xc,0x0,0xf,0x0,0xc,0x0,0xd,0x0,0xa,0x0,0xc,0x0,0xa,0x0,0xe,
0x0,0xd,0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x16,0x0,0x12,0x0,0x13,0x0,0xc,
0x0,0xe,0x0,0x8,0x0,0xd,0x0,0xa,0x0,0xf,0x0,0xf,0x0,0x12,0x0,0x10,
0x0,0x16,0x0,0xe,0x0,0x16,0x0,0xc,0x0,0x12,0x0,0xc,0x0,0xe,0x0,0xd,
0x0,0xd,0x0,0xc,0x0,0xf,0x0,0xb,0x0,0x10,0x0,0xb,0x0,0xb,0x0,0xc,
0x0,0x7,0x0,0x9,0x0,0x7,0x0,0x3,0x0,0x4,0x0,0x2,0x0,0x1,0x0,0x5,
0x0,0x3,0x0,0x6,0x0,0x7,0x0,0x4,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0xfd,
0xff,0x2,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x3,0x0,0x6,0x0,0x8,0x0,0x5,
0x0,0x8,0x0,0x2,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x0,0x4,
0x0,0x7,0x0,0x7,0x0,0x7,0x0,0x6,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0xfc,
0xff,0x5,0x0,0xfd,0xff,0x5,0x0,0x0,0x0,0x3,0x0,0x2,0x0,0x1,0x0,0xfe,
0xff,0x1,0x0,0xf9,0xff,0x5,0x0,0xf8,0xff,0x8,0x0,0xfc,0xff,0x6,0x0,0x2,
0x0,0x0,0x0,0x4,0x0,0xfc,0xff,0xfe,0xff,0xfe,0xff,0xf8,0xff,0xfe,0xff,0xf7,
0xff,0xfa,0xff,0xf6,0xff,0xf7,0xff,0xf7,0xff,0xf7,0xff,0xf8,0xff,0xf7,0xff,0xf9,
0xff,0xfb,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0x1,0x0,0x0,
0x0,0x1,0x0,0x1,0x0,0xfc,0xff,0xff,0xff,0xf8,0xff,0xfb,0xff,0xf5,0xff,0xf4,
0xff,0xf3,0xff,0xf3,0xff,0xf3,0xff,0xf9,0xff,0xf4,0xff,0xfb,0xff,0xf6,0xff,0xfa,
0xff,0xf7,0xff,0xf7,0xff,0xf4,0xff,0xf4,0xff,0xf0,0xff,0xf7,0xff,0xf2,0xff,0xfd,
0xff,0xf9,0xff,0xfc,0xff,0xff,0xff,0xf8,0xff,0x0,0x0,0xf3,0xff,0xfd,0xff,0xf1,
0xff,0xfa,0xff,0xf5,0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xf2,0xff,0xfb,0xff,0xef,
0xff,0xfd,0xff,0xf2,0xff,0xfe,0xff,0xf7,0xff,0xfd,0xff,0xf9,0xff,0xf8,0xff,0xf4,
0xff,0xf1,0xff,0xf0,0xff,0xef,0xff,0xf1,0xff,0xf4,0xff,0xf4,0xff,0xf8,0xff,0xf5,
0xff,0xf4,0xff,0xee,0xff,0xea,0xff,0xe8,0xff,0xe5,0xff,0xe8,0xff,0xeb,0xff,0xec,
0xff,0xf4,0xff,0xee,0xff,0xf4,0xff,0xee,0xff,0xed,0xff,0xef,0xff,0xe7,0xff,0xf2,
0xff,0xe8,0xff,0xf4,0xff,0xed,0xff,0xf0,0xff,0xf2,0xff,0xee,0xff,0xf2,0xff,0xef,
0xff,0xee,0xff,0xf1,0xff,0xe9,0xff,0xee,0xff,0xe7,0xff,0xe9,0xff,0xe6,0xff,0xea,
0xff,0xe7,0xff,0xed,0xff,0xea,0xff,0xee,0xff,0xee,0xff,0xef,0xff,0xee,0xff,0xeb,
0xff,0xeb,0xff,0xe7,0xff,0xe9,0xff,0xeb,0xff,0xed,0xff,0xf3,0xff,0xf8,0xff,0xf4,
0xff,0xff,0xff,0xf2,0xff,0xfe,0xff,0xf3,0xff,0xfa,0xff,0xf6,0xff,0xf6,0xff,0xf7,
0xff,0xf6,0xff,0xf3,0xff,0xfb,0xff,0xf1,0xff,0xfe,0xff,0xf4,0xff,0xfe,0xff,0xf7,
0xff,0xfa,0xff,0xf5,0xff,0xf6,0xff,0xf0,0xff,0xf5,0xff,0xec,0xff,0xf6,0xff,0xee,
0xff,0xf7,0xff,0xf2,0xff,0xf6,0xff,0xf1,0xff,0xf4,0xff,0xed,0xff,0xf2,0xff,0xee,
0xff,0xf2,0xff,0xf3,0xff,0xf1,0xff,0xf8,0xff,0xf0,0xff,0xf8,0xff,0xf0,0xff,0xf5,
0xff,0xed,0xff,0xf1,0xff,0xea,0xff,0xf0,0xff,0xec,0xff,0xf3,0xff,0xed,0xff,0xf3,
0xff,0xee,0xff,0xef,0xff,0xee,0xff,0xec,0xff,0xef,0xff,0xec,0xff,0xf1,0xff,0xeb,
0xff,0xf4,0xff,0xee,0xff,0xf2,0xff,0xf0,0xff,0xf0,0xff,0xf1,0xff,0xf0,0xff,0xf0,
0xff,0xef,0xff,0xe9,0xff,0xf1,0xff,0xe6,0xff,0xf5,0xff,0xec,0xff,0xfa,0xff,0xf3,
0xff,0xfb,0xff,0xf5,0xff,0xf5,0xff,0xf5,0xff,0xf3,0xff,0xf1,0xff,0xf8,0xff,0xf0,
0xff,0xfd,0xff,0xf6,0xff,0xff,0xff,0xf9,0xff,0xfc,0xff,0xf6,0xff,0xf7,0xff,0xf6,
0xff,0xf6,0xff,0xf6,0xff,0xfa,0xff,0xf6,0xff,0xfb,0xff,0xf9,0xff,0xfd,0xff,0xf9,
0xff,0xfa,0xff,0xf5,0xff,0xf6,0xff,0xf2,0xff,0xfa,0xff,0xf5,0xff,0xfb,0xff,0xf8,
0xff,0xf4,0xff,0xf7,0xff,0xee,0xff,0xef,0xff,0xec,0xff,0xe8,0xff,0xee,0xff,0xe7,
0xff,0xf1,0xff,0xeb,0xff,0xee,0xff,0xef,0xff,0xe6,0xff,0xec,0xff,0xe4,0xff,0xe6,
0xff,0xe9,0xff,0xe3,0xff,0xed,0xff,0xe5,0xff,0xee,0xff,0xe8,0xff,0xec,0xff,0xe9,
0xff,0xea,0xff,0xea,0xff,0xed,0xff,0xea,0xff,0xef,0xff,0xeb,0xff,0xef,0xff,0xe9,
0xff,0xee,0xff,0xe3,0xff,0xee,0xff,0xe0,0xff,0xed,0xff,0xe6,0xff,0xef,0xff,0xed,
0xff,0xf2,0xff,0xec,0xff,0xef,0xff,0xe7,0xff,0xea,0xff,0xe6,0xff,0xed,0xff,0xea,
0xff,0xf3,0xff,0xf1,0xff,0xf4,0xff,0xf5,0xff,0xf3,0xff,0xf6,0xff,0xf0,0xff,0xf5,
0xff,0xeb,0xff,0xf3,0xff,0xed,0xff,0xf3,0xff,0xf3,0xff,0xf5,0xff,0xf9,0xff,0xf8,
0xff,0xf8,0xff,0xfb,0xff,0xf0,0xff,0xf8,0xff,0xe9,0xff,0xf0,0xff,0xec,0xff,0xec,
0xff,0xf3,0xff,0xef,0xff,0xf5,0xff,0xf3,0xff,0xf1,0xff,0xf1,0xff,0xeb,0xff,0xed,
0xff,0xea,0xff,0xed,0xff,0xf0,0xff,0xf0,0xff,0xf5,0xff,0xf4,0xff,0xf4,0xff,0xf4,
0xff,0xf1,0xff,0xf0,0xff,0xf1,0xff,0xee,0xff,0xf2,0xff,0xf1,0xff,0xf0,0xff,0xf1,
0xff,0xee,0xff,0xf0,0xff,0xef,0xff,0xee,0xff,0xf2,0xff,0xec,0xff,0xf4,0xff,0xef,
0xff,0xf3,0xff,0xf3,0xff,0xee,0xff,0xf1,0xff,0xed,0xff,0xf2,0xff,0xf2,0xff,0xf8,
0xff,0xf5,0xff,0xfb,0xff,0xf2,0xff,0xf8,0xff,0xf0,0xff,0xf6,0xff,0xee,0xff,0xf6,
0xff,0xef,0xff,0xfa,0xff,0xf3,0xff,0xfb,0xff,0xf4,0xff,0xf7,0xff,0xf4,0xff,0xf5,
0xff,0xf5,0xff,0xf6,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0xfc,0xff,0xfa,0xff,0xfa,
0xff,0xfc,0xff,0xf7,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0xfc,0xff,0xfa,0xff,0xfc,
0xff,0xf8,0xff,0xf9,0xff,0xfd,0xff,0xf6,0xff,0x1,0x0,0xf5,0xff,0x0,0x0,0xf9,
0xff,0xfc,0xff,0xfb,0xff,0xf8,0xff,0xf9,0xff,0xf8,0xff,0xfa,0xff,0xfb,0xff,0xfc,
0xff,0xff,0xff,0xfb,0xff,0x0,0x0,0xfc,0xff,0xfc,0xff,0x0,0x0,0xfb,0xff,0x0,
0x0,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xf9,
0xff,0xf8,0xff,0xfc,0xff,0xf7,0xff,0xff,0xff,0xfa,0xff,0xfe,0xff,0xfe,0xff,0xfd,
0xff,0x1,0x0,0xfe,0xff,0x1,0x0,0xfd,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0xfa,
0xff,0xfe,0xff,0xfb,0xff,0x0,0x0,0xfb,0xff,0x2,0x0,0xfa,0xff,0xff,0xff,0xf8,
0xff,0xfa,0xff,0xf5,0xff,0xfa,0xff,0xf5,0xff,0xfe,0xff,0xf7,0xff,0x0,0x0,0xf9,
0xff,0x1,0x0,0xfc,0xff,0x0,0x0,0x0,0x0,0xfd,0xff,0xff,0xff,0xf9,0xff,0xfa,
0xff,0xf7,0xff,0xf5,0xff,0xf7,0xff,0xf9,0xff,0xf8,0xff,0x3,0x0,0xf8,0xff,0x5,
0x0,0xf8,0xff,0xfe,0xff,0xf4,0xff,0xf8,0xff,0xf2,0xff,0xf9,0xff,0xf6,0xff,0x1,
0x0,0xfd,0xff,0x4,0x0,0xff,0xff,0xfe,0xff,0xfc,0xff,0xf7,0xff,0xf7,0xff,0xf6,
0xff,0xf6,0xff,0xf5,0xff,0xf9,0xff,0xf5,0xff,0x0,0x0,0xf9,0xff,0x7,0x0,0xff,
0xff,0x8,0x0,0x2,0x0,0x2,0x0,0x2,0x0,0xfe,0xff,0xfe,0xff,0x2,0x0,0xfa,
0xff,0x8,0x0,0xfe,0xff,0xb,0x0,0x3,0x0,0xb,0x0,0x5,0x0,0x7,0x0,0x6,
0x0,0x3,0x0,0x6,0x0,0x2,0x0,0x6,0x0,0x5,0x0,0x7,0x0,0x9,0x0,0x7,
0x0,0x8,0x0,0x7,0x0,0x4,0x0,0xb,0x0,0x0,0x0,0xd,0x0,0xfd,0xff,0xa,
0x0,0xff,0xff,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x5,
0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xfa,0xff,0xfd,0xff,0xf5,
0xff,0xf4,0xff,0xf4,0xff,0xef,0xff,0xf5,0xff,0xf2,0xff,0xf8,0xff,0xfb,0xff,0xfa,
0xff,0xfe,0xff,0xfa,0xff,0xf6,0xff,0xf7,0xff,0xed,0xff,0xf4,0xff,0xf0,0xff,0xf6,
0xff,0xfd,0xff,0xfd,0xff,0x7,0x0,0x2,0x0,0x7,0x0,0x1,0x0,0x0,0x0,0xff,
0xff,0xfa,0xff,0xfd,0xff,0xfc,0xff,0xfe,0xff,0x4,0x0,0x1,0x0,0x4,0x0,0xff,
0xff,0xfe,0xff,0xfd,0xff,0xfa,0xff,0xfd,0xff,0xf8,0xff,0xfe,0xff,0xf9,0xff,0xfa,
0xff,0xfb,0xff,0xf8,0xff,0xfc,0xff,0xfa,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0xf8,
0xff,0xf8,0xff,0xf6,0xff,0xf6,0xff,0xf6,0xff,0xfa,0xff,0xfa,0xff,0xfe,0xff,0xfe,
0xff,0x0,0x0,0xfe,0xff,0xfe,0xff,0xf9,0xff,0xf9,0xff,0xf7,0xff,0xfa,0xff,0xfc,
0xff,0x2,0x0,0x2,0x0,0x5,0x0,0x4,0x0,0x2,0x0,0x1,0x0,0xfd,0xff,0xfe,
0xff,0xfa,0xff,0xfe,0xff,0xf9,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xf9,0xff,0xf8,
0xff,0xf8,0xff,0xf5,0xff,0xf4,0xff,0xf4,0xff,0xef,0xff,0xf4,0xff,0xec,0xff,0xf4,
0xff,0xed,0xff,0xf4,0xff,0xf2,0xff,0xf7,0xff,0xf5,0xff,0xf9,0xff,0xf3,0xff,0xf6,
0xff,0xf1,0xff,0xf2,0xff,0xf0,0xff,0xf2,0xff,0xf1,0xff,0xf4,0xff,0xf3,0xff,0xf3,
0xff,0xf3,0xff,0xf1,0xff,0xf3,0xff,0xf1,0xff,0xf3,0xff,0xf3,0xff,0xf2,0xff,0xf6,
0xff,0xf4,0xff,0xf8,0xff,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xfb,0xff,0xf6,0xff,0xfc,
0xff,0xf6,0xff,0xfc,0xff,0xf5,0xff,0xfa,0xff,0xf6,0xff,0xf7,0xff,0xf9,0xff,0xf9,
0xff,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xfe,0xff,0xf5,0xff,0xfa,0xff,0xf2,0xff,0xf7,
0xff,0xf5,0xff,0xf7,0xff,0xf9,0xff,0xf9,0xff,0xfc,0xff,0xfe,0xff,0xfb,0xff,0xfd,
0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xf7,0xff,0xfa,0xff,0xf7,0xff,0xfa,0xff,0xf6,
0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xfc,0xff,0xf8,0xff,0xfb,0xff,0xf4,0xff,0xf5,
0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xee,0xff,0xf3,0xff,0xf4,0xff,0xf3,0xff,0xf9,
0xff,0xef,0xff,0xf4,0xff,0xea,0xff,0xeb,0xff,0xe9,0xff,0xe7,0xff,0xed,0xff,0xeb,
0xff,0xef,0xff,0xf2,0xff,0xef,0xff,0xf6,0xff,0xed,0xff,0xf3,0xff,0xee,0xff,0xf0,
0xff,0xf1,0xff,0xf1,0xff,0xf4,0xff,0xf3,0xff,0xf3,0xff,0xf5,0xff,0xf3,0xff,0xf6,
0xff,0xf6,0xff,0xf4,0xff,0xf7,0xff,0xf3,0xff,0xf4,0xff,0xf6,0xff,0xf3,0xff,0xf6,
0xff,0xf4,0xff,0xf6,0xff,0xf9,0xff,0xfc,0xff,0xfd,0xff,0x0,0x0,0xff,0xff,0x1,
0x0,0xfe,0xff,0x4,0x0,0xfd,0xff,0x5,0x0,0x1,0x0,0x5,0x0,0x4,0x0,0x5,
0x0,0x5,0x0,0x6,0x0,0x5,0x0,0x8,0x0,0x3,0x0,0x6,0x0,0x0,0x0,0xff,
0xff,0x0,0x0,0xfd,0xff,0x1,0x0,0xff,0xff,0x3,0x0,0xfe,0xff,0x1,0x0,0xfb,
0xff,0xf9,0xff,0xfa,0xff,0xf3,0xff,0xf9,0xff,0xf1,0xff,0xf9,0xff,0xf2,0xff,0xf8,
0xff,0xf2,0xff,0xf6,0xff,0xf0,0xff,0xf4,0xff,0xeb,0xff,0xf4,0xff,0xe8,0xff,0xf3,
0xff,0xeb,0xff,0xf3,0xff,0xf2,0xff,0xf6,0xff,0xf4,0xff,0xf7,0xff,0xf0,0xff,0xf3,
0xff,0xef,0xff,0xef,0xff,0xf2,0xff,0xee,0xff,0xf2,0xff,0xf2,0xff,0xf0,0xff,0xf7,
0xff,0xee,0xff,0xf8,0xff,0xf0,0xff,0xf6,0xff,0xf5,0xff,0xf5,0xff,0xfa,0xff,0xf8,
0xff,0xfa,0xff,0xfc,0xff,0xfa,0xff,0x1,0x0,0xf9,0xff,0xfe,0xff,0xfa,0xff,0xf9,
0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xfd,0xff,0xf9,0xff,0xfc,0xff,0xf5,0xff,0xfb,
0xff,0xf7,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0x0,
0x0,0xf7,0xff,0xfc,0xff,0xf2,0xff,0xf8,0xff,0xf2,0xff,0xf9,0xff,0xf4,0xff,0xfc,
0xff,0xf5,0xff,0xfc,0xff,0xf4,0xff,0xfa,0xff,0xf1,0xff,0xf7,0xff,0xf0,0xff,0xf6,
0xff,0xf1,0xff,0xf3,0xff,0xf2,0xff,0xf2,0xff,0xf3,0xff,0xf6,0xff,0xf5,0xff,0xf9,
0xff,0xf7,0xff,0xf8,0xff,0xf7,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xf3,0xff,0xf4,
0xff,0xf2,0xff,0xf4,0xff,0xf3,0xff,0xf5,0xff,0xf1,0xff,0xf3,0xff,0xf1,0xff,0xef,
0xff,0xef,0xff,0xef,0xff,0xed,0xff,0xf1,0xff,0xed,0xff,0xf0,0xff,0xea,0xff,0xee,
0xff,0xe7,0xff,0xed,0xff,0xea,0xff,0xed,0xff,0xed,0xff,0xed,0xff,0xef,0xff,0xec,
0xff,0xef,0xff,0xed,0xff,0xeb,0xff,0xee,0xff,0xe9,0xff,0xed,0xff,0xed,0xff,0xee,
0xff,0xf0,0xff,0xef,0xff,0xf1,0xff,0xee,0xff,0xf0,0xff,0xf0,0xff,0xed,0xff,0xf1,
0xff,0xef,0xff,0xef,0xff,0xf0,0xff,0xed,0xff,0xec,0xff,0xee,0xff,0xeb,0xff,0xf0,
0xff,0xed,0xff,0xee,0xff,0xee,0xff,0xea,0xff,0xef,0xff,0xec,0xff,0xef,0xff,0xf0,
0xff,0xf0,0xff,0xef,0xff,0xef,0xff,0xea,0xff,0xee,0xff,0xe4,0xff,0xee,0xff,0xe4,
0xff,0xeb,0xff,0xe8,0xff,0xe5,0xff,0xe6,0xff,0xe3,0xff,0xdf,0xff,0xe2,0xff,0xdb,
0xff,0xe0,0xff,0xde,0xff,0xe2,0xff,0xe1,0xff,0xe4,0xff,0xe4,0xff,0xe4,0xff,0xe5,
0xff,0xe7,0xff,0xe6,0xff,0xe8,0xff,0xeb,0xff,0xeb,0xff,0xec,0xff,0xed,0xff,0xea,
0xff,0xe9,0xff,0xe8,0xff,0xe7,0xff,0xe8,0xff,0xea,0xff,0xec,0xff,0xee,0xff,0xf2,
0xff,0xf1,0xff,0xf2,0xff,0xf0,0xff,0xef,0xff,0xec,0xff,0xee,0xff,0xec,0xff,0xf0,
0xff,0xf0,0xff,0xf1,0xff,0xf5,0xff,0xf1,0xff,0xf7,0xff,0xf1,0xff,0xf3,0xff,0xf1,
0xff,0xec,0xff,0xf0,0xff,0xe9,0xff,0xed,0xff,0xe9,0xff,0xed,0xff,0xed,0xff,0xef,
0xff,0xef,0xff,0xf1,0xff,0xed,0xff,0xf2,0xff,0xeb,0xff,0xef,0xff,0xea,0xff,0xec,
0xff,0xea,0xff,0xec,0xff,0xeb,0xff,0xec,0xff,0xec,0xff,0xe8,0xff,0xed,0xff,0xe1,
0xff,0xef,0xff,0xe0,0xff,0xeb,0xff,0xe4,0xff,0xe8,0xff,0xe7,0xff,0xeb,0xff,0xe9,
0xff,0xef,0xff,0xe8,0xff,0xef,0xff,0xe6,0xff,0xf0,0xff,0xe7,0xff,0xf1,0xff,0xea,
0xff,0xf1,0xff,0xec,0xff,0xf1,0xff,0xeb,0xff,0xf0,0xff,0xe9,0xff,0xf0,0xff,0xe5,
0xff,0xf2,0xff,0xe5,0xff,0xf4,0xff,0xea,0xff,0xf7,0xff,0xef,0xff,0xf8,0xff,0xf3,
0xff,0xf6,0xff,0xf0,0xff,0xf3,0xff,0xea,0xff,0xf2,0xff,0xeb,0xff,0xf3,0xff,0xee,
0xff,0xf5,0xff,0xef,0xff,0xf4,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xf2,0xff,0xef,
0xff,0xf4,0xff,0xf1,0xff,0xf6,0xff,0xf4,0xff,0xf8,0xff,0xf5,0xff,0xfa,0xff,0xf8,
0xff,0xf9,0xff,0xf9,0xff,0xf7,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf7,0xff,0xf8,
0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xf4,0xff,0xfb,0xff,0xf3,0xff,0xfc,0xff,0xf3,
0xff,0xf9,0xff,0xf4,0xff,0xf4,0xff,0xf1,0xff,0xf2,0xff,0xed,0xff,0xef,0xff,0xeb,
0xff,0xec,0xff,0xe9,0xff,0xed,0xff,0xe9,0xff,0xec,0xff,0xea,0xff,0xea,0xff,0xea,
0xff,0xe9,0xff,0xe6,0xff,0xe7,0xff,0xe4,0xff,0xe5,0xff,0xe6,0xff,0xe7,0xff,0xea,
0xff,0xe9,0xff,0xed,0xff,0xee,0xff,0xf0,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xf2,
0xff,0xf2,0xff,0xf3,0xff,0xf3,0xff,0xf4,0xff,0xf4,0xff,0xf6,0xff,0xf8,0xff,0xfa,
0xff,0xfa,0xff,0xfb,0xff,0xf7,0xff,0xf8,0xff,0xf5,0xff,0xf8,0xff,0xf5,0xff,0xfb,
0xff,0xf7,0xff,0xfc,0xff,0xf9,0xff,0xfa,0xff,0xfb,0xff,0xf7,0xff,0xfc,0xff,0xf6,
0xff,0xf9,0xff,0xf5,0xff,0xf5,0xff,0xf3,0xff,0xf0,0xff,0xee,0xff,0xed,0xff,0xec,
0xff,0xed,0xff,0xec,0xff,0xed,0xff,0xec,0xff,0xe9,0xff,0xeb,0xff,0xe7,0xff,0xe7,
0xff,0xe7,0xff,0xe4,0xff,0xe7,0xff,0xe6,0xff,0xe7,0xff,0xea,0xff,0xe5,0xff,0xe8,
0xff,0xe0,0xff,0xe4,0xff,0xdd,0xff,0xe1,0xff,0xde,0xff,0xe0,0xff,0xdf,0xff,0xe1,
0xff,0xe2,0xff,0xe0,0xff,0xe3,0xff,0xdd,0xff,0xe0,0xff,0xdf,0xff,0xe2,0xff,0xe5,
0xff,0xe7,0xff,0xe7,0xff,0xeb,0xff,0xe5,0xff,0xeb,0xff,0xe7,0xff,0xe9,0xff,0xee,
0xff,0xeb,0xff,0xf2,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xef,0xff,0xf0,0xff,0xed,
0xff,0xf1,0xff,0xec,0xff,0xf2,0xff,0xec,0xff,0xf2,0xff,0xef,0xff,0xf0,0xff,0xf0,
0xff,0xef,0xff,0xef,0xff,0xef,0xff,0xee,0xff,0xed,0xff,0xee,0xff,0xec,0xff,0xec,
0xff,0xef,0xff,0xea,0xff,0xed,0xff,0xee,0xff,0xea,0xff,0xf0,0xff,0xeb,0xff,0xee,
0xff,0xea,0xff,0xe8,0xff,0xe8,0xff,0xe5,0xff,0xea,0xff,0xe8,0xff,0xea,0xff,0xeb,
0xff,0xe9,0xff,0xe8,0xff,0xe9,0xff,0xe6,0xff,0xe8,0xff,0xe5,0xff,0xe7,0xff,0xe5,
0xff,0xe8,0xff,0xe7,0xff,0xea,0xff,0xe6,0xff,0xee,0xff,0xe1,0xff,0xed,0xff,0xe3,
0xff,0xeb,0xff,0xe6,0xff,0xec,0xff,0xe6,0xff,0xec,0xff,0xe7,0xff,0xea,0xff,0xe8,
0xff,0xea,0xff,0xe7,0xff,0xe8,0xff,0xe8,0xff,0xe6,0xff,0xe9,0xff,0xe7,0xff,0xe8,
0xff,0xe8,0xff,0xe7,0xff,0xe8,0xff,0xe5,0xff,0xea,0xff,0xe2,0xff,0xeb,0xff,0xe2,
0xff,0xec,0xff,0xe6,0xff,0xed,0xff,0xec,0xff,0xee,0xff,0xef,0xff,0xf1,0xff,0xed,
0xff,0xf2,0xff,0xeb,0xff,0xf0,0xff,0xed,0xff,0xee,0xff,0xf0,0xff,0xef,0xff,0xf1,
0xff,0xf0,0xff,0xf1,0xff,0xf0,0xff,0xf0,0xff,0xf0,0xff,0xee,0xff,0xf0,0xff,0xee,
0xff,0xed,0xff,0xee,0xff,0xed,0xff,0xec,0xff,0xee,0xff,0xea,0xff,0xef,0xff,0xe9,
0xff,0xf1,0xff,0xe7,0xff,0xf0,0xff,0xe5,0xff,0xea,0xff,0xe4,0xff,0xe4,0xff,0xe4,
0xff,0xe0,0xff,0xe4,0xff,0xe0,0xff,0xe3,0xff,0xe4,0xff,0xe3,0xff,0xe4,0xff,0xe2,
0xff,0xe1,0xff,0xe1,0xff,0xe2,0xff,0xe1,0xff,0xe6,0xff,0xe3,0xff,0xea,0xff,0xe3,
0xff,0xee,0xff,0xe5,0xff,0xef,0xff,0xe9,0xff,0xed,0xff,0xea,0xff,0xec,0xff,0xeb,
0xff,0xeb,0xff,0xeb,0xff,0xea,0xff,0xeb,0xff,0xeb,0xff,0xec,0xff,0xee,0xff,0xed,
0xff,0xf2,0xff,0xf1,0xff,0xf2,0xff,0xf6,0xff,0xf0,0xff,0xf5,0xff,0xee,0xff,0xf3,
0xff,0xf1,0xff,0xf5,0xff,0xf5,0xff,0xf8,0xff,0xf8,0xff,0xfa,0xff,0xfa,0xff,0xf8,
0xff,0xf9,0xff,0xf5,0xff,0xf5,0xff,0xf3,0xff,0xf5,0xff,0xf1,0xff,0xf8,0xff,0xf0,
0xff,0xf8,0xff,0xef,0xff,0xf7,0xff,0xf0,0xff,0xf6,0xff,0xf2,0xff,0xf3,0xff,0xf0,
0xff,0xf0,0xff,0xed,0xff,0xef,0xff,0xeb,0xff,0xee,0xff,0xea,0xff,0xee,0xff,0xeb,
0xff,0xee,0xff,0xeb,0xff,0xee,0xff,0xea,0xff,0xf1,0xff,0xea,0xff,0xf2,0xff,0xed,
0xff,0xf3,0xff,0xf0,0xff,0xf4,0xff,0xf4,0xff,0xf3,0xff,0xf7,0xff,0xf4,0xff,0xf5,
0xff,0xf8,0xff,0xf4,0xff,0xf5,0xff,0xf5,0xff,0xf4,0xff,0xf7,0xff,0xf7,0xff,0xf7,
0xff,0xfb,0xff,0xf4,0xff,0xfe,0xff,0xf4,0xff,0xfd,0xff,0xf8,0xff,0xfc,0xff,0xfe,
0xff,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0xfb,0xff,0xfd,0xff,0xf9,0xff,0xfd,
0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xfe,0xff,0xfb,0xff,0xfb,0xff,0xf8,0xff,0xf7,
0xff,0xf5,0xff,0xf2,0xff,0xf5,0xff,0xf0,0xff,0xf8,0xff,0xf0,0xff,0xfa,0xff,0xf0,
0xff,0xf8,0xff,0xf0,0xff,0xf2,0xff,0xee,0xff,0xf2,0xff,0xf0,0xff,0xf4,0xff,0xf3,
0xff,0xf3,0xff,0xf4,0xff,0xf2,0xff,0xf4,0xff,0xf1,0xff,0xf3,0xff,0xf2,0xff,0xf2,
0xff,0xf6,0xff,0xf1,0xff,0xf6,0xff,0xf3,0xff,0xf2,0xff,0xf6,0xff,0xf0,0xff,0xf5,
0xff,0xf0,0xff,0xf2,0xff,0xf1,0xff,0xf0,0xff,0xf1,0xff,0xed,0xff,0xf2,0xff,0xec,
0xff,0xf2,0xff,0xef,0xff,0xf1,0xff,0xee,0xff,0xf0,0xff,0xea,0xff,0xee,0xff,0xeb,
0xff,0xf1,0xff,0xed,0xff,0xf6,0xff,0xf1,0xff,0xf8,0xff,0xf4,0xff,0xf7,0xff,0xf2,
0xff,0xf6,0xff,0xf2,0xff,0xf5,0xff,0xf3,0xff,0xf6,0xff,0xf2,0xff,0xf6,0xff,0xf2,
0xff,0xf4,0xff,0xf0,0xff,0xf4,0xff,0xef,0xff,0xf6,0xff,0xf3,0xff,0xf8,0xff,0xf7,
0xff,0xfa,0xff,0xf7,0xff,0xfa,0xff,0xf6,0xff,0xf8,0xff,0xf4,0xff,0xf6,0xff,0xf1,
0xff,0xf4,0xff,0xf1,0xff,0xf3,0xff,0xf1,0xff,0xf4,0xff,0xf2,0xff,0xf3,0xff,0xf1,
0xff,0xf0,0xff,0xed,0xff,0xed,0xff,0xeb,0xff,0xe9,0xff,0xeb,0xff,0xea,0xff,0xea,
0xff,0xef,0xff,0xed,0xff,0xf3,0xff,0xee,0xff,0xf4,0xff,0xef,0xff,0xf1,0xff,0xee,
0xff,0xeb,0xff,0xea,0xff,0xeb,0xff,0xe8,0xff,0xee,0xff,0xeb,0xff,0xf0,0xff,0xed,
0xff,0xf1,0xff,0xed,0xff,0xf2,0xff,0xee,0xff,0xf0,0xff,0xec,0xff,0xf0,0xff,0xed,
0xff,0xf4,0xff,0xf0,0xff,0xf9,0xff,0xf4,0xff,0xfa,0xff,0xf5,0xff,0xfa,0xff,0xf4,
0xff,0xfc,0xff,0xf4,0xff,0xfa,0xff,0xf6,0xff,0xfa,0xff,0xf5,0xff,0xfa,0xff,0xf4,
0xff,0xf7,0xff,0xf4,0xff,0xf6,0xff,0xf5,0xff,0xf9,0xff,0xf7,0xff,0xfa,0xff,0xf8,
0xff,0xf8,0xff,0xf8,0xff,0xf8,0xff,0xf9,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0xfb,
0xff,0xfd,0xff,0xfc,0xff,0xff,0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfa,0xff,0xfc,
0xff,0xfa,0xff,0xf9,0xff,0xfa,0xff,0xf6,0xff,0xfb,0xff,0xf7,0xff,0xfd,0xff,0xf9,
0xff,0xfc,0xff,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xf9,0xff,0xf7,0xff,0xf6,0xff,0xf2,
0xff,0xf5,0xff,0xf0,0xff,0xf9,0xff,0xf4,0xff,0xfb,0xff,0xf7,0xff,0xf8,0xff,0xf7,
0xff,0xf6,0xff,0xf3,0xff,0xf5,0xff,0xef,0xff,0xf3,0xff,0xef,0xff,0xf5,0xff,0xf1,
0xff,0xf5,0xff,0xf0,0xff,0xf3,0xff,0xf0,0xff,0xf2,0xff,0xf0,0xff,0xf2,0xff,0xf0,
0xff,0xf1,0xff,0xf0,0xff,0xf0,0xff,0xef,0xff,0xf1,0xff,0xf0,0xff,0xf2,0xff,0xf2,
0xff,0xf3,0xff,0xf3,0xff,0xf5,0xff,0xf3,0xff,0xf6,0xff,0xf4,0xff,0xf7,0xff,0xf4,
0xff,0xfb,0xff,0xf6,0xff,0xfd,0xff,0xf8,0xff,0xfe,0xff,0xf8,0xff,0x0,0x0,0xf9,
0xff,0x1,0x0,0xfb,0xff,0xfe,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0xfd,0xff,0xfc,
0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfe,0xff,0xfb,0xff,0xfd,0xff,0xfb,0xff,0xfa,
0xff,0xfa,0xff,0xf8,0xff,0xf9,0xff,0xf4,0xff,0xf7,0xff,0xf3,0xff,0xf5,0xff,0xf5,
0xff,0xf5,0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf2,0xff,0xf3,0xff,0xf0,0xff,0xf1,
0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xf1,0xff,0xf0,0xff,0xf0,0xff,0xee,0xff,0xef,
0xff,0xeb,0xff,0xeb,0xff,0xeb,0xff,0xe9,0xff,0xed,0xff,0xeb,0xff,0xec,0xff,0xeb,
0xff,0xed,0xff,0xeb,0xff,0xf0,0xff,0xea,0xff,0xf2,0xff,0xea,0xff,0xf5,0xff,0xee,
0xff,0xf4,0xff,0xee,0xff,0xef,0xff,0xeb,0xff,0xec,0xff,0xeb,0xff,0xee,0xff,0xeb,
0xff,0xf2,0xff,0xec,0xff,0xf4,0xff,0xf1,0xff,0xf4,0xff,0xf4,0xff,0xf5,0xff,0xf4,
0xff,0xf8,0xff,0xf3,0xff,0xfa,0xff,0xf3,0xff,0xf9,0xff,0xf6,0xff,0xfa,0xff,0xf7,
0xff,0xfb,0xff,0xf6,0xff,0xf9,0xff,0xf6,0xff,0xf7,0xff,0xf5,0xff,0xf4,0xff,0xf4,
0xff,0xf2,0xff,0xf6,0xff,0xf4,0xff,0xf7,0xff,0xf8,0xff,0xf8,0xff,0xfa,0xff,0xfa,
0xff,0xfa,0xff,0xfa,0xff,0xf6,0xff,0xf9,0xff,0xf3,0xff,0xf9,0xff,0xf4,0xff,0xf9,
0xff,0xf6,0xff,0xf8,0xff,0xf5,0xff,0xf5,0xff,0xf5,0xff,0xf2,0xff,0xf7,0xff,0xf2,
0xff,0xf5,0xff,0xf2,0xff,0xf2,0xff,0xef,0xff,0xef,0xff,0xee,0xff,0xf0,0xff,0xef,
0xff,0xef,0xff,0xee,0xff,0xee,0xff,0xef,0xff,0xef,0xff,0xf3,0xff,0xf0,0xff,0xf5,
0xff,0xf0,0xff,0xf5,0xff,0xf2,0xff,0xf5,0xff,0xf1,0xff,0xf5,0xff,0xed,0xff,0xf4,
0xff,0xef,0xff,0xf4,0xff,0xf1,0xff,0xf5,0xff,0xf1,0xff,0xf4,0xff,0xf2,0xff,0xf3,
0xff,0xf1,0xff,0xf0,0xff,0xf0,0xff,0xef,0xff,0xf4,0xff,0xf3,0xff,0xf7,0xff,0xf7,
0xff,0xf6,0xff,0xf6,0xff,0xf4,0xff,0xf6,0xff,0xf4,0xff,0xf3,0xff,0xf6,0xff,0xf1,
0xff,0xf7,0xff,0xf0,0xff,0xf4,0xff,0xf0,0xff,0xf1,0xff,0xef,0xff,0xef,0xff,0xed,
0xff,0xef,0xff,0xea,0xff,0xf0,0xff,0xe9,0xff,0xef,0xff,0xea,0xff,0xeb,0xff,0xeb,
0xff,0xea,0xff,0xec,0xff,0xe9,0xff,0xed,0xff,0xe9,0xff,0xe9,0xff,0xe8,0xff,0xe7,
0xff,0xe9,0xff,0xe9,0xff,0xee,0xff,0xec,0xff,0xf0,0xff,0xee,0xff,0xf0,0xff,0xec,
0xff,0xf0,0xff,0xec,0xff,0xf3,0xff,0xee,0xff,0xf3,0xff,0xf1,0xff,0xf5,0xff,0xf5,
0xff,0xf7,0xff,0xf5,0xff,0xf5,0xff,0xf2,0xff,0xf3,0xff,0xf1,0xff,0xf3,0xff,0xf2,
0xff,0xf3,0xff,0xf2,0xff,0xf2,0xff,0xf3,0xff,0xf5,0xff,0xf5,0xff,0xf8,0xff,0xf5,
0xff,0xf8,0xff,0xf7,0xff,0xf7,0xff,0xf7,0xff,0xf5,0xff,0xf8,0xff,0xf3,0xff,0xf5,
0xff,0xf2,0xff,0xf1,0xff,0xf1,0xff,0xec,0xff,0xf0,0xff,0xe8,0xff,0xf1,0xff,0xe6,
0xff,0xf0,0xff,0xe7,0xff,0xed,0xff,0xe8,0xff,0xe9,0xff,0xe5,0xff,0xe8,0xff,0xe2,
0xff,0xe8,0xff,0xe3,0xff,0xe9,0xff,0xe9,0xff,0xeb,0xff,0xed,0xff,0xea,0xff,0xee,
0xff,0xe9,0xff,0xec,0xff,0xe7,0xff,0xe9,0xff,0xe7,0xff,0xec,0xff,0xea,0xff,0xf0,
0xff,0xf1,0xff,0xf2,0xff,0xf4,0xff,0xf5,0xff,0xf3,0xff,0xf5,0xff,0xf2,0xff,0xf2,
0xff,0xf0,0xff,0xf2,0xff,0xf1,0xff,0xf5,0xff,0xf9,0xff,0xf7,0xff,0xfc,0xff,0xf8,
0xff,0xfe,0xff,0xf8,0xff,0x2,0x0,0xfa,0xff,0x0,0x0,0xfe,0xff,0xff,0xff,0xff,
0xff,0x2,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xfd,0xff,0xff,0xff,0xfd,0xff,0xfe,
0xff,0xfb,0xff,0xfe,0xff,0xf5,0xff,0xfc,0xff,0xf3,0xff,0xf8,0xff,0xf4,0xff,0xf8,
0xff,0xf7,0xff,0xf9,0xff,0xf9,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xf7,
0xff,0xf7,0xff,0xf4,0xff,0xf6,0xff,0xf3,0xff,0xf6,0xff,0xf4,0xff,0xf4,0xff,0xf2,
0xff,0xf4,0xff,0xef,0xff,0xf3,0xff,0xed,0xff,0xf2,0xff,0xee,0xff,0xf3,0xff,0xed,
0xff,0xf5,0xff,0xeb,0xff,0xf4,0xff,0xea,0xff,0xf7,0xff,0xeb,0xff,0xfb,0xff,0xed,
0xff,0xfb,0xff,0xee,0xff,0xfc,0xff,0xf2,0xff,0xfd,0xff,0xf6,0xff,0xfc,0xff,0xf7,
0xff,0xfe,0xff,0xfc,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0x0,0x0,0xfe,0xff,0x1,
0x0,0xfc,0xff,0x1,0x0,0xfe,0xff,0x1,0x0,0x3,0x0,0x4,0x0,0x8,0x0,0x5,
0x0,0xa,0x0,0x4,0x0,0x6,0x0,0x6,0x0,0x4,0x0,0x8,0x0,0x4,0x0,0x8,
0x0,0x3,0x0,0x8,0x0,0x2,0x0,0x7,0x0,0xff,0xff,0x6,0x0,0xfe,0xff,0x4,
0x0,0x0,0x0,0x3,0x0,0xff,0xff,0x2,0x0,0xfc,0xff,0x0,0x0,0xfa,0xff,0xfe,
0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0x0,0x0,0xfd,0xff,0x2,0x0,0xfd,
0xff,0x1,0x0,0xfc,0xff,0xff,0xff,0xfb,0xff,0x0,0x0,0xfd,0xff,0x4,0x0,0xff,
0xff,0x5,0x0,0x1,0x0,0x5,0x0,0x1,0x0,0x4,0x0,0xfe,0xff,0x2,0x0,0xfc,
0xff,0x0,0x0,0xfd,0xff,0x1,0x0,0xfc,0xff,0x2,0x0,0xfe,0xff,0x1,0x0,0x0,
0x0,0x1,0x0,0x0,0x0,0x3,0x0,0xff,0xff,0x4,0x0,0xfd,0xff,0x4,0x0,0xfe,
0xff,0x3,0x0,0x4,0x0,0x4,0x0,0x9,0x0,0x1,0x0,0x7,0x0,0xfe,0xff,0x2,
0x0,0xfd,0xff,0xfe,0xff,0xfd,0xff,0xfe,0xff,0x1,0x0,0x4,0x0,0x3,0x0,0x6,
0x0,0x0,0x0,0x2,0x0,0xff,0xff,0xfd,0xff,0x0,0x0,0xfc,0xff,0x0,0x0,0xfd,
0xff,0x3,0x0,0xfe,0xff,0x3,0x0,0xfe,0xff,0x1,0x0,0xfa,0xff,0x1,0x0,0xf9,
0xff,0x2,0x0,0xfb,0xff,0x3,0x0,0xfd,0xff,0x3,0x0,0xfe,0xff,0x1,0x0,0xff,
0xff,0x1,0x0,0x1,0x0,0x4,0x0,0x3,0x0,0x5,0x0,0x1,0x0,0x5,0x0,0xfe,
0xff,0x3,0x0,0xff,0xff,0x0,0x0,0xfb,0xff,0x1,0x0,0xf7,0xff,0x2,0x0,0xf8,
0xff,0x1,0x0,0xf9,0xff,0x1,0x0,0xfa,0xff,0x0,0x0,0xfb,0xff,0xff,0xff,0xfd,
0xff,0x2,0x0,0xfd,0xff,0x1,0x0,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfd,0xff,0xff,
0xff,0xff,0xff,0x0,0x0,0x1,0x0,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0x0,
0x0,0xfd,0xff,0x1,0x0,0x0,0x0,0x2,0x0,0x1,0x0,0x4,0x0,0xff,0xff,0x4,
0x0,0xfe,0xff,0x1,0x0,0xff,0xff,0x0,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x1,
0x0,0x3,0x0,0x3,0x0,0x1,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0xfe,0xff,0x2,
0x0,0x0,0x0,0x4,0x0,0x2,0x0,0x4,0x0,0x4,0x0,0x5,0x0,0x4,0x0,0x4,
0x0,0x4,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x2,0x0,0xfe,0xff,0x3,0x0,0xfe,
0xff,0x4,0x0,0xfe,0xff,0x0,0x0,0xff,0xff,0x0,0x0,0xfe,0xff,0x0,0x0,0xfe,
0xff,0x2,0x0,0xff,0xff,0x3,0x0,0xfe,0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0xfe,
0xff,0xff,0xff,0xff,0xff,0x2,0x0,0x0,0x0,0x6,0x0,0xff,0xff,0x6,0x0,0xff,
0xff,0x6,0x0,0xff,0xff,0x4,0x0,0xff,0xff,0x1,0x0,0xfe,0xff,0x2,0x0,0xfe,
0xff,0x2,0x0,0xff,0xff,0x1,0x0,0x2,0x0,0x2,0x0,0x5,0x0,0x2,0x0,0x7,
0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x1,0x0,0x5,0x0,0x5,0x0,0x3,
0x0,0x3,0x0,0xff,0xff,0xfe,0xff,0xfa,0xff,0xfb,0xff,0xf8,0xff,0xfc,0xff,0xfb,
0xff,0xff,0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfa,0xff,0xf8,0xff,0xfa,0xff,0xf7,
0xff,0xf9,0xff,0xfb,0xff,0xf9,0xff,0xff,0xff,0xf8,0xff,0x1,0x0,0xf9,0xff,0xff,
0xff,0xfb,0xff,0xfd,0xff,0xfb,0xff,0xff,0xff,0xfd,0xff,0x5,0x0,0x0,0x0,0x4,
0x0,0x2,0x0,0x2,0x0,0x3,0x0,0x2,0x0,0x6,0x0,0x0,0x0,0x8,0x0,0x0,
0x0,0x8,0x0,0xff,0xff,0x4,0x0,0xfc,0xff,0x4,0x0,0xfb,0xff,0x2,0x0,0xfe,
0xff,0x2,0x0,0x0,0x0,0x3,0x0,0xff,0xff,0x2,0x0,0x1,0x0,0x1,0x0,0x0,
0x0,0x0,0x0,0x1,0x0,0xfd,0xff,0x2,0x0,0xfb,0xff,0x0,0x0,0xfb,0xff,0xff,
0xff,0xfa,0xff,0x1,0x0,0xfb,0xff,0x1,0x0,0xfa,0xff,0xfd,0xff,0xf9,0xff,0xfc,
0xff,0xf8,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0xfe,0xff,0xfe,
0xff,0xff,0xff,0xfc,0xff,0xfd,0xff,0xf8,0xff,0xfa,0xff,0xf7,0xff,0xf7,0xff,0xf6,
0xff,0xf6,0xff,0xf6,0xff,0xf7,0xff,0xf4,0xff,0xf9,0xff,0xf3,0xff,0xfa,0xff,0xf5,
0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xf7,0xff,0xfa,0xff,0xf7,0xff,0xfd,0xff,0xf8,
0xff,0xfd,0xff,0xf9,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0xfd,
0xff,0xff,0xff,0xfc,0xff,0xfc,0xff,0xf9,0xff,0xfa,0xff,0xf9,0xff,0xf8,0xff,0xf9,
0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xf7,0xff,0xf8,0xff,0xf9,
0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfe,0xff,0xfb,0xff,0xfe,0xff,0xfb,0xff,0xfc,
0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfc,0xff,0xf8,0xff,0xfc,
0xff,0xf6,0xff,0xfc,0xff,0xf5,0xff,0xfa,0xff,0xf6,0xff,0xf9,0xff,0xf8,0xff,0xfb,
0xff,0xf9,0xff,0xfe,0xff,0xf9,0xff,0xff,0xff,0xfb,0xff,0xfd,0xff,0xfe,0xff,0xfd,
0xff,0x2,0x0,0x1,0x0,0x1,0x0,0x2,0x0,0xff,0xff,0xfd,0xff,0xfd,0xff,0xfb,
0xff,0xfb,0xff,0xfd,0xff,0xfb,0xff,0xfe,0xff,0xfa,0xff,0xff,0xff,0xf8,0xff,0xfc,
0xff,0xf3,0xff,0xf9,0xff,0xf4,0xff,0xf7,0xff,0xf4,0xff,0xf9,0xff,0xf3,0xff,0xfb,
0xff,0xf5,0xff,0xf9,0xff,0xf9,0xff,0xf8,0xff,0xf9,0xff,0xfb,0xff,0xf9,0xff,0xfd,
0xff,0xf7,0xff,0xfb,0xff,0xf6,0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfc,0xff,0xfc,
0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xfb,0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xf9,
0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xfb,0xff,0xf8,0xff,0xfb,0xff,0xf6,
0xff,0xf9,0xff,0xf5,0xff,0xf9,0xff,0xf5,0xff,0xf8,0xff,0xf5,0xff,0xf7,0xff,0xf8,
0xff,0xf8,0xff,0xf9,0xff,0xf9,0xff,0xfb,0xff,0xfa,0xff,0xfc,0xff,0xf9,0xff,0xfa,
0xff,0xf6,0xff,0xf9,0xff,0xf1,0xff,0xf8,0xff,0xf2,0xff,0xf4,0xff,0xf3,0xff,0xf1,
0xff,0xf6,0xff,0xf3,0xff,0xf5,0xff,0xf2,0xff,0xf3,0xff,0xf0,0xff,0xf3,0xff,0xf1,
0xff,0xf5,0xff,0xf2,0xff,0xf5,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xf7,0xff,0xf4,
0xff,0xf8,0xff,0xf4,0xff,0xf7,0xff,0xf3,0xff,0xf5,0xff,0xf4,0xff,0xf3,0xff,0xf8,
0xff,0xf4,0xff,0xfa,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0xfb,0xff,0xfb,0xff,0xfc,
0xff,0xfb,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfb,
0xff,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfe,0xff,0xf8,0xff,0xfc,0xff,0xf9,0xff,0xf9,
0xff,0xf6,0xff,0xf8,0xff,0xf9,0xff,0xfa,0xff,0xfb,0xff,0xfd,0xff,0xf9,0xff,0xfc,
0xff,0xf7,0xff,0xf8,0xff,0xf7,0xff,0xf6,0xff,0xf7,0xff,0xf5,0xff,0xfa,0xff,0xf5,
0xff,0xfb,0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xf4,0xff,0xf5,0xff,0xf4,0xff,0xf6,
0xff,0xf8,0xff,0xf7,0xff,0xfa,0xff,0xf9,0xff,0x0,0x0,0xfd,0xff,0xfd,0xff,0xfd,
0xff,0xfc,0xff,0xfb,0xff,0xff,0xff,0xfb,0xff,0xfd,0xff,0xfd,0xff,0xfe,0xff,0xfd,
0xff,0x1,0x0,0xfc,0xff,0x1,0x0,0xfb,0xff,0x4,0x0,0xfa,0xff,0x2,0x0,0xfb,
0xff,0xff,0xff,0xfc,0xff,0xfe,0xff,0xfc,0xff,0xfd,0xff,0xfb,0xff,0xfd,0xff,0xfb,
0xff,0xfb,0xff,0xfb,0xff,0xf8,0xff,0xfd,0xff,0xfa,0xff,0x0,0x0,0xf9,0xff,0xfe,
0xff,0xf9,0xff,0xfd,0xff,0xf6,0xff,0xfd,0xff,0xf3,0xff,0xfc,0xff,0xf5,0xff,0xfb,
0xff,0xf7,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0xf9,0xff,0xfe,0xff,0xf9,0xff,0x0,
0x0,0xfc,0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0x0,0x0,0x3,0x0,0x3,0x0,0x5,
0x0,0x3,0x0,0x6,0x0,0x7,0x0,0x9,0x0,0x7,0x0,0xa,0x0,0x8,0x0,0x7,
0x0,0xb,0x0,0x7,0x0,0x9,0x0,0x7,0x0,0xb,0x0,0xa,0x0,0xd,0x0,0xc,
0x0,0xc,0x0,0xe,0x0,0xc,0x0,0xf,0x0,0xc,0x0,0xd,0x0,0xe,0x0,0xe,
0x0,0x10,0x0,0x12,0x0,0x11,0x0,0x14,0x0,0x14,0x0,0x12,0x0,0x12,0x0,0x13,
0x0,0x10,0x0,0x12,0x0,0xe,0x0,0xe,0x0,0xa,0x0,0xb,0x0,0x9,0x0,0xa,
0x0,0x8,0x0,0xb,0x0,0x4,0x0,0x9,0x0,0x3,0x0,0x7,0x0,0x2,0x0,0x3,
0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x3,0x0,0x4,0x0,0x6,
0x0,0x7,0x0,0x8,0x0,0xa,0x0,0x9,0x0,0xa,0x0,0x7,0x0,0x8,0x0,0x5,
0x0,0x6,0x0,0x5,0x0,0x2,0x0,0x5,0x0,0x1,0x0,0x6,0x0,0x2,0x0,0x3,
0x0,0xfe,0xff,0x2,0x0,0xfd,0xff,0xff,0xff,0xff,0xff,0xfe,0xff,0x3,0x0,0x1,
0x0,0x6,0x0,0x4,0x0,0x7,0x0,0x3,0x0,0x8,0x0,0x0,0x0,0x9,0x0,0x2,
0x0,0xb,0x0,0x7,0x0,0x10,0x0,0xc,0x0,0x11,0x0,0xc,0x0,0xc,0x0,0xc,
0x0,0x7,0x0,0xd,0x0,0x6,0x0,0xb,0x0,0x6,0x0,0xb,0x0,0x8,0x0,0xa,
0x0,0x9,0x0,0x8,0x0,0x6,0x0,0x6,0x0,0x3,0x0,0x6,0x0,0x3,0x0,0x9,
0x0,0x3,0x0,0xa,0x0,0x6,0x0,0xc,0x0,0x9,0x0,0xc,0x0,0xb,0x0,0xd,
0x0,0xe,0x0,0xf,0x0,0xf,0x0,0x10,0x0,0x10,0x0,0x10,0x0,0xd,0x0,0x11,
0x0,0xb,0x0,0x10,0x0,0xa,0x0,0x9,0x0,0x9,0x0,0x6,0x0,0x6,0x0,0x7,
0x0,0x2,0x0,0x5,0x0,0x1,0x0,0x4,0x0,0x1,0x0,0x3,0x0,0x1,0x0,0x2,
0x0,0x4,0x0,0x3,0x0,0x7,0x0,0x6,0x0,0x8,0x0,0x6,0x0,0xc,0x0,0x9,
0x0,0xe,0x0,0xc,0x0,0xd,0x0,0xc,0x0,0xb,0x0,0xb,0x0,0x9,0x0,0xa,
0x0,0xa,0x0,0xd,0x0,0xa,0x0,0xc,0x0,0xb,0x0,0xb,0x0,0x9,0x0,0xc,
0x0,0x5,0x0,0xc,0x0,0x6,0x0,0xb,0x0,0x7,0x0,0xb,0x0,0x6,0x0,0xb,
0x0,0x7,0x0,0xb,0x0,0xa,0x0,0xe,0x0,0xf,0x0,0xf,0x0,0x14,0x0,0xf,
0x0,0x12,0x0,0x13,0x0,0x10,0x0,0x13,0x0,0xd,0x0,0x10,0x0,0xf,0x0,0xf,
0x0,0x10,0x0,0x11,0x0,0xe,0x0,0x11,0x0,0xe,0x0,0xf,0x0,0xc,0x0,0xd,
0x0,0xd,0x0,0xc,0x0,0xd,0x0,0xc,0x0,0x9,0x0,0xa,0x0,0x6,0x0,0xa,
0x0,0x6,0x0,0xb,0x0,0x8,0x0,0xb,0x0,0x8,0x0,0xb,0x0,0x5,0x0,0x7,
0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x3,0x0,0x4,
0x0,0x2,0x0,0x4,0x0,0x3,0x0,0x6,0x0,0x7,0x0,0x7,0x0,0x8,0x0,0x8,
0x0,0xa,0x0,0x8,0x0,0x7,0x0,0x8,0x0,0x7,0x0,0x7,0x0,0x8,0x0,0x8,
0x0,0x9,0x0,0x8,0x0,0x7,0x0,0xb,0x0,0x6,0x0,0xd,0x0,0x6,0x0,0xb,
0x0,0x8,0x0,0xa,0x0,0x8,0x0,0xa,0x0,0x8,0x0,0xa,0x0,0xb,0x0,0x9,
0x0,0xa,0x0,0x9,0x0,0x8,0x0,0x6,0x0,0x6,0x0,0x4,0x0,0x6,0x0,0x5,
0x0,0x4,0x0,0x6,0x0,0x3,0x0,0x6,0x0,0x1,0x0,0x4,0x0,0xfd,0xff,0x2,
0x0,0xfb,0xff,0x4,0x0,0xfb,0xff,0x5,0x0,0xfa,0xff,0x4,0x0,0xfb,0xff,0x1,
0x0,0xfb,0xff,0x1,0x0,0xfb,0xff,0x0,0x0,0xfe,0xff,0xff,0xff,0x0,0x0,0x1,
0x0,0x0,0x0,0x3,0x0,0x2,0x0,0x4,0x0,0x2,0x0,0x1,0x0,0x4,0x0,0x0,
0x0,0x7,0x0,0xff,0xff,0x8,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,
0x0,0x4,0x0,0x0,0x0,0x2,0x0,0xfe,0xff,0x1,0x0,0xfe,0xff,0xfd,0xff,0xfc,
0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xfa,0xff,0xfd,0xff,0xfb,0xff,0xfb,0xff,0xf9,
0xff,0xfa,0xff,0xf6,0xff,0xf9,0xff,0xf7,0xff,0xf6,0xff,0xf5,0xff,0xf4,0xff,0xf1,
0xff,0xf3,0xff,0xee,0xff,0xf4,0xff,0xee,0xff,0xf4,0xff,0xf0,0xff,0xf5,0xff,0xf0,
0xff,0xf6,0xff,0xef,0xff,0xf5,0xff,0xee,0xff,0xf4,0xff,0xf0,0xff,0xf8,0xff,0xf2,
0xff,0xfa,0xff,0xf4,0xff,0xfb,0xff,0xf6,0xff,0xfd,0xff,0xf7,0xff,0xfb,0xff,0xf6,
0xff,0xf9,0xff,0xf6,0xff,0xfb,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0x2,0x0,0xfc,
0xff,0x2,0x0,0xff,0xff,0x1,0x0,0x0,0x0,0xfb,0xff,0x0,0x0,0xf9,0xff,0xff,
0xff,0xf9,0xff,0xff,0xff,0xf8,0xff,0xfe,0xff,0xf8,0xff,0xfe,0xff,0xfc,0xff,0xfe,
0xff,0xfc,0xff,0xfd,0xff,0xfd,0xff,0xfc,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0xfc,
0xff,0xff,0xff,0xfe,0xff,0x2,0x0,0xff,0xff,0x2,0x0,0xfe,0xff,0x2,0x0,0xff,
0xff,0x2,0x0,0x3,0x0,0xff,0xff,0x2,0x0,0xfc,0xff,0xff,0xff,0xfa,0xff,0xfc,
0xff,0xfa,0xff,0xfc,0xff,0xfb,0xff,0xfc,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,0xff,
0xff,0xfb,0xff,0xfb,0xff,0xfb,0xff,0xf8,0xff,0xfc,0xff,0xf8,0xff,0xff,0xff,0xfb,
0xff,0xff,0xff,0xfb,0xff,0x0,0x0,0xfd,0xff,0x1,0x0,0xfd,0xff,0xfc,0xff,0xfc,
0xff,0xfa,0xff,0xfd,0xff,0xf9,0xff,0x0,0x0,0xf8,0xff,0x0,0x0,0xf9,0xff,0xff,
0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xfe,0xff,0xfc,0xff,0xfc,0xff,0xfe,
0xff,0xfb,0xff,0x0,0x0,0xfe,0xff,0x1,0x0,0x1,0x0,0x0,0x0,0x3,0x0,0x3,
0x0,0x0,0x0,0x6,0x0,0xff,0xff,0x4,0x0,0x0,0x0,0x3,0x0,0x4,0x0,0x5,
0x0,0x4,0x0,0x8,0x0,0x6,0x0,0x8,0x0,0x8,0x0,0x8,0x0,0x7,0x0,0x7,
0x0,0xa,0x0,0x6,0x0,0xd,0x0,0x4,0x0,0xa,0x0,0x3,0x0,0x7,0x0,0x6,
0x0,0x8,0x0,0x6,0x0,0x7,0x0,0x6,0x0,0x4,0x0,0x4,0x0,0x3,0x0,0x2,
0x0,0x0,0x0,0x2,0x0,0xfd,0xff,0x0,0x0,0xfe,0xff,0xff,0xff,0xfe,0xff,0xff,
0xff,0xfe,0xff,0xfd,0xff,0x0,0x0,0xfb,0xff,0x0,0x0,0xfd,0xff,0x2,0x0,0xfe,
0xff,0x4,0x0,0x0,0x0,0x5,0x0,0x4,0x0,0x8,0x0,0x3,0x0,0x9,0x0,0x3,
0x0,0x8,0x0,0x5,0x0,0x3,0x0,0x4,0x0,0x1,0x0,0x4,0x0,0x3,0x0,0x5,
0x0,0x2,0x0,0x5,0x0,0x0,0x0,0x6,0x0,0x1,0x0,0x9,0x0,0x1,0x0,0x8,
0x0,0x4,0x0,0x8,0x0,0xa,0x0,0x9,0x0,0xf,0x0,0x8,0x0,0xf,0x0,0x9,
0x0,0xb,0x0,0xa,0x0,0xa,0x0,0x8,0x0,0xb,0x0,0x8,0x0,0xd,0x0,0xa,
0x0,0xd,0x0,0xb,0x0,0x8,0x0,0xb,0x0,0x8,0x0,0xb,0x0,0x7,0x0,0x8,
0x0,0x6,0x0,0x8,0x0,0x8,0x0,0xb,0x0,0x8,0x0,0xc,0x0,0x8,0x0,0xc,
0x0,0x9,0x0,0xb,0x0,0xa,0x0,0x7,0x0,0xc,0x0,0x8,0x0,0xb,0x0,0xa,
0x0,0x8,0x0,0x8,0x0,0x8,0x0,0x5,0x0,0x6,0x0,0x4,0x0,0x7,0x0,0x5,
0x0,0x6,0x0,0x5,0x0,0x5,0x0,0x5,0x0,0x5,0x0,0x3,0x0,0x4,0x0,0x4,
0x0,0x8,0x0,0x6,0x0,0xa,0x0,0x7,0x0,0xa,0x0,0x7,0x0,0x9,0x0,0x4,
0x0,0x8,0x0,0x0,0x0,0x8,0x0,0xfd,0xff,0x7,0x0,0xfc,0xff,0x4,0x0,0xfc,
0xff,0x5,0x0,0xfc,0xff,0x5,0x0,0xfd,0xff,0x5,0x0,0xfd,0xff,0x6,0x0,0xff,
0xff,0x4,0x0,0x2,0x0,0x3,0x0,0x4,0x0,0x1,0x0,0x3,0x0,0x0,0x0,0x1,
0x0,0x3,0x0,0x3,0x0,0x6,0x0,0x4,0x0,0x7,0x0,0x5,0x0,0x6,0x0,0x2,
0x0,0x6,0x0,0xfe,0xff,0x6,0x0,0xff,0xff,0x7,0x0,0x0,0x0,0x9,0x0,0x0,
0x0,0x7,0x0,0x1,0x0,0x3,0x0,0x0,0x0,0xff,0xff,0xfe,0xff,0xfc,0xff,0xff,
0xff,0xfc,0xff,0x2,0x0,0xfc,0xff,0x3,0x0,0xfb,0xff,0x3,0x0,0xfd,0xff,0x1,
0x0,0xfe,0xff,0x1,0x0,0x3,0x0,0x2,0x0,0x6,0x0,0x1,0x0,0x4,0x0,0x0,
0x0,0x3,0x0,0xff,0xff,0x5,0x0,0xfe,0xff,0x5,0x0,0xff,0xff,0x4,0x0,0x3,
0x0,0x3,0x0,0x4,0x0,0x3,0x0,0x2,0x0,0x2,0x0,0x2,0x0,0x0,0x0,0x2,
0x0,0x1,0x0,0x5,0x0,0x4,0x0,0xa,0x0,0x4,0x0,0xb,0x0,0x4,0x0,0x8,
0x0,0x6,0x0,0x9,0x0,0x9,0x0,0xb,0x0,0xd,0x0,0xc,0x0,0x12,0x0,0x10,
0x0,0x11,0x0,0x13,0x0,0x10,0x0,0x12,0x0,0x11,0x0,0x11,0x0,0x12,0x0,0x14,
0x0,0x15,0x0,0x15,0x0,0x16,0x0,0x13,0x0,0x16,0x0,0x14,0x0,0x15,0x0,0x14,
0x0,0x14,0x0,0x14,0x0,0x12,0x0,0x13,0x0,0x13,0x0,0x13,0x0,0x11,0x0,0x14,
0x0,0x11,0x0,0x16,0x0,0x15,0x0,0x17,0x0,0x1a,0x0,0x18,0x0,0x1d,0x0,0x19,
0x0,0x1e,0x0,0x1a,0x0,0x1e,0x0,0x1c,0x0,0x1c,0x0,0x1c,0x0,0x1a,0x0,0x1c,
0x0,0x18,0x0,0x1e,0x0,0x16,0x0,0x1e,0x0,0x15,0x0,0x1b,0x0,0x12,0x0,0x16,
0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x13,0x0,0x12,0x0,0x11,
0x0,0x12,0x0,0x11,0x0,0x12,0x0,0x14,0x0,0x15,0x0,0x17,0x0,0x1a,0x0,0x1a,
0x0,0x1f,0x0,0x1d,0x0,0x23,0x0,0x20,0x0,0x22,0x0,0x24,0x0,0x22,0x0,0x25,
0x0,0x22,0x0,0x24,0x0,0x21,0x0,0x21,0x0,0x1e,0x0,0x1f,0x0,0x19,0x0,0x19,
0x0,0x16,0x0,0x17,0x0,0x17,0x0,0x1a,0x0,0x1b,0x0,0x1a,0x0,0x19,0x0,0x19,
0x0,0x16,0x0,0x17,0x0,0x17,0x0,0x16,0x0,0x18,0x0,0x17,0x0,0x1b,0x0,0x1c,
0x0,0x1d,0x0,0x1d,0x0,0x1b,0x0,0x1b,0x0,0x1c,0x0,0x19,0x0,0x1d,0x0,0x1a,
0x0,0x1b,0x0,0x1a,0x0,0x1a,0x0,0x17,0x0,0x19,0x0,0x13,0x0,0x18,0x0,0x10,
0x0,0x17,0x0,0xe,0x0,0x15,0x0,0xf,0x0,0x14,0x0,0x10,0x0,0x15,0x0,0x10,
0x0,0x17,0x0,0x12,0x0,0x1a,0x0,0x15,0x0,0x1d,0x0,0x17,0x0,0x20,0x0,0x1b,
0x0,0x22,0x0,0x1e,0x0,0x23,0x0,0x20,0x0,0x23,0x0,0x24,0x0,0x20,0x0,0x24,
0x0,0x1e,0x0,0x21,0x0,0x1f,0x0,0x1f,0x0,0x1d,0x0,0x1c,0x0,0x19,0x0,0x1a,
0x0,0x18,0x0,0x19,0x0,0x19,0x0,0x17,0x0,0x19,0x0,0x16,0x0,0x19,0x0,0x18,
0x0,0x19,0x0,0x19,0x0,0x1a,0x0,0x1b,0x0,0x1c,0x0,0x1b,0x0,0x1c,0x0,0x19,
0x0,0x1c,0x0,0x1a,0x0,0x1c,0x0,0x1c,0x0,0x18,0x0,0x1a,0x0,0x14,0x0,0x18,
0x0,0x15,0x0,0x14,0x0,0x16,0x0,0x11,0x0,0x14,0x0,0x12,0x0,0x14,0x0,0x11,
0x0,0x13,0x0,0xe,0x0,0x14,0x0,0xe,0x0,0x17,0x0,0xf,0x0,0x19,0x0,0x13,
0x0,0x19,0x0,0x16,0x0,0x19,0x0,0x16,0x0,0x19,0x0,0x17,0x0,0x19,0x0,0x19,
0x0,0x18,0x0,0x19,0x0,0x17,0x0,0x1a,0x0,0x19,0x0,0x1c,0x0,0x1c,0x0,0x1c,
0x0,0x1f,0x0,0x1c,0x0,0x22,0x0,0x1c,0x0,0x27,0x0,0x1f,0x0,0x2a,0x0,0x23,
0x0,0x28,0x0,0x24,0x0,0x28,0x0,0x24,0x0,0x2a,0x0,0x25,0x0,0x28,0x0,0x25,
0x0,0x27,0x0,0x26,0x0,0x25,0x0,0x26,0x0,0x22,0x0,0x25,0x0,0x20,0x0,0x26,
0x0,0x21,0x0,0x27,0x0,0x23,0x0,0x25,0x0,0x25,0x0,0x25,0x0,0x24,0x0,0x26,
0x0,0x22,0x0,0x26,0x0,0x21,0x0,0x24,0x0,0x21,0x0,0x23,0x0,0x21,0x0,0x24,
0x0,0x24,0x0,0x25,0x0,0x23,0x0,0x25,0x0,0x1f,0x0,0x21,0x0,0x1e,0x0,0x1f,
0x0,0x1e,0x0,0x1f,0x0,0x1f,0x0,0x20,0x0,0x20,0x0,0x1f,0x0,0x1f,0x0,0x1e,
0x0,0x21,0x0,0x20,0x0,0x24,0x0,0x21,0x0,0x23,0x0,0x22,0x0,0x23,0x0,0x23,
0x0,0x25,0x0,0x24,0x0,0x29,0x0,0x28,0x0,0x2e,0x0,0x2e,0x0,0x30,0x0,0x30,
0x0,0x2c,0x0,0x2b,0x0,0x27,0x0,0x25,0x0,0x26,0x0,0x24,0x0,0x29,0x0,0x28,
0x0,0x30,0x0,0x2e,0x0,0x34,0x0,0x30,0x0,0x31,0x0,0x31,0x0,0x2d,0x0,0x2e,
0x0,0x2b,0x0,0x2d,0x0,0x2b,0x0,0x31,0x0,0x2f,0x0,0x36,0x0,0x33,0x0,0x36,
0x0,0x33,0x0,0x33,0x0,0x32,0x0,0x31,0x0,0x30,0x0,0x31,0x0,0x30,0x0,0x2f,
0x0,0x2d,0x0,0x2c,0x0,0x29,0x0,0x28,0x0,0x27,0x0,0x27,0x0,0x25,0x0,0x27,
0x0,0x23,0x0,0x26,0x0,0x23,0x0,0x24,0x0,0x23,0x0,0x20,0x0,0x22,0x0,0x1f,
0x0,0x23,0x0,0x22,0x0,0x26,0x0,0x28,0x0,0x28,0x0,0x2c,0x0,0x28,0x0,0x2b,
0x0,0x28,0x0,0x27,0x0,0x26,0x0,0x25,0x0,0x27,0x0,0x26,0x0,0x28,0x0,0x27,
0x0,0x28,0x0,0x29,0x0,0x27,0x0,0x2a,0x0,0x25,0x0,0x2a,0x0,0x23,0x0,0x29,
0x0,0x22,0x0,0x2a,0x0,0x23,0x0,0x29,0x0,0x25,0x0,0x2a,0x0,0x29,0x0,0x2c,
0x0,0x2a,0x0,0x2c,0x0,0x2a,0x0,0x2b,0x0,0x2a,0x0,0x2b,0x0,0x2b,0x0,0x2c,
0x0,0x2e,0x0,0x30,0x0,0x2f,0x0,0x34,0x0,0x2f,0x0,0x34,0x0,0x2e,0x0,0x33,
0x0,0x2e,0x0,0x32,0x0,0x2c,0x0,0x31,0x0,0x29,0x0,0x31,0x0,0x2a,0x0,0x31,
0x0,0x28,0x0,0x2f,0x0,0x27,0x0,0x2f,0x0,0x28,0x0,0x2e,0x0,0x27,0x0,0x28,
0x0,0x25,0x0,0x25,0x0,0x24,0x0,0x23,0x0,0x25,0x0,0x24,0x0,0x27,0x0,0x26,
0x0,0x2a,0x0,0x27,0x0,0x29,0x0,0x28,0x0,0x27,0x0,0x2a,0x0,0x26,0x0,0x2b,
0x0,0x26,0x0,0x2d,0x0,0x2a,0x0,0x2e,0x0,0x2c,0x0,0x2d,0x0,0x2c,0x0,0x2d,
0x0,0x2f,0x0,0x2f,0x0,0x34,0x0,0x30,0x0,0x39,0x0,0x33,0x0,0x3d,0x0,0x35,
0x0,0x3f,0x0,0x37,0x0,0x3e,0x0,0x3a,0x0,0x41,0x0,0x40,0x0,0x42,0x0,0x43,
0x0,0x40,0x0,0x41,0x0,0x3b,0x0,0x3e,0x0,0x36,0x0,0x3d,0x0,0x37,0x0,0x3d,
0x0,0x3b,0x0,0x3e,0x0,0x3c,0x0,0x3d,0x0,0x3a,0x0,0x3a,0x0,0x39,0x0,0x3a,
0x0,0x39,0x0,0x39,0x0,0x39,0x0,0x39,0x0,0x3b,0x0,0x3b,0x0,0x3e,0x0,0x3b,
0x0,0x3d,0x0,0x37,0x0,0x3c,0x0,0x37,0x0,0x3d,0x0,0x38,0x0,0x3b,0x0,0x39,
0x0,0x35,0x0,0x39,0x0,0x31,0x0,0x39,0x0,0x2f,0x0,0x39,0x0,0x2c,0x0,0x3b,
0x0,0x2e,0x0,0x39,0x0,0x30,0x0,0x36,0x0,0x32,0x0,0x34,0x0,0x38,0x0,0x34,
0x0,0x3d,0x0,0x39,0x0,0x3d,0x0,0x3d,0x0,0x3f,0x0,0x3c,0x0,0x40,0x0,0x3c,
0x0,0x3e,0x0,0x3d,0x0,0x3d,0x0,0x3a,0x0,0x3c,0x0,0x3c,0x0,0x3b,0x0,0x3f,
0x0,0x3c,0x0,0x3d,0x0,0x3a,0x0,0x3a,0x0,0x37,0x0,0x35,0x0,0x36,0x0,0x33,
0x0,0x34,0x0,0x36,0x0,0x34,0x0,0x39,0x0,0x37,0x0,0x38,0x0,0x37,0x0,0x3a,
0x0,0x34,0x0,0x39,0x0,0x33,0x0,0x37,0x0,0x31,0x0,0x34,0x0,0x31,0x0,0x30,
0x0,0x33,0x0,0x2e,0x0,0x32,0x0,0x2e,0x0,0x2f,0x0,0x2f,0x0,0x2e,0x0,0x31,
0x0,0x2d,0x0,0x31,0x0,0x2d,0x0,0x30,0x0,0x2c,0x0,0x30,0x0,0x2b,0x0,0x30,
0x0,0x2c,0x0,0x2e,0x0,0x2b,0x0,0x2e,0x0,0x2c,0x0,0x2d,0x0,0x2c,0x0,0x2c,
0x0,0x2b,0x0,0x29,0x0,0x2b,0x0,0x24,0x0,0x2d,0x0,0x24,0x0,0x30,0x0,0x27,
0x0,0x33,0x0,0x2a,0x0,0x31,0x0,0x2c,0x0,0x2e,0x0,0x2d,0x0,0x2f,0x0,0x2e,
0x0,0x30,0x0,0x32,0x0,0x2e,0x0,0x34,0x0,0x2c,0x0,0x34,0x0,0x29,0x0,0x32,
0x0,0x26,0x0,0x2f,0x0,0x26,0x0,0x2c,0x0,0x27,0x0,0x2b,0x0,0x27,0x0,0x2b,
0x0,0x28,0x0,0x2c,0x0,0x29,0x0,0x2c,0x0,0x2d,0x0,0x2d,0x0,0x32,0x0,0x31,
0x0,0x30,0x0,0x31,0x0,0x2d,0x0,0x2e,0x0,0x2d,0x0,0x2f,0x0,0x2d,0x0,0x32,
0x0,0x2d,0x0,0x32,0x0,0x2b,0x0,0x30,0x0,0x28,0x0,0x2c,0x0,0x27,0x0,0x28,
0x0,0x25,0x0,0x27,0x0,0x25,0x0,0x26,0x0,0x25,0x0,0x25,0x0,0x24,0x0,0x23,
0x0,0x23,0x0,0x23,0x0,0x25,0x0,0x24,0x0,0x27,0x0,0x26,0x0,0x2c,0x0,0x28,
0x0,0x2e,0x0,0x29,0x0,0x2c,0x0,0x28,0x0,0x2d,0x0,0x27,0x0,0x2f,0x0,0x27,
0x0,0x2e,0x0,0x28,0x0,0x2d,0x0,0x28,0x0,0x2c,0x0,0x27,0x0,0x2b,0x0,0x26,
0x0,0x2d,0x0,0x28,0x0,0x2e,0x0,0x2c,0x0,0x2c,0x0,0x2f,0x0,0x2c,0x0,0x2f,
0x0,0x2c,0x0,0x2c,0x0,0x29,0x0,0x2d,0x0,0x26,0x0,0x2e,0x0,0x22,0x0,0x2c,
0x0,0x20,0x0,0x2a,0x0,0x21,0x0,0x27,0x0,0x20,0x0,0x22,0x0,0x1c,0x0,0x20,
0x0,0x1c,0x0,0x20,0x0,0x1d,0x0,0x1e,0x0,0x1f,0x0,0x1c,0x0,0x21,0x0,0x1d,
0x0,0x20,0x0,0x1f,0x0,0x1e,0x0,0x20,0x0,0x1c,0x0,0x1e,0x0,0x1d,0x0,0x1d,
0x0,0x20,0x0,0x1d,0x0,0x20,0x0,0x1c,0x0,0x1c,0x0,0x1b,0x0,0x1a,0x0,0x19,
0x0,0x1a,0x0,0x14,0x0,0x19,0x0,0x14,0x0,0x1b,0x0,0x17,0x0,0x1f,0x0,0x17,
0x0,0x1f,0x0,0x19,0x0,0x1f,0x0,0x1b,0x0,0x1f,0x0,0x1c,0x0,0x1f,0x0,0x1e,
0x0,0x1f,0x0,0x20,0x0,0x22,0x0,0x21,0x0,0x23,0x0,0x23,0x0,0x22,0x0,0x25,
0x0,0x21,0x0,0x24,0x0,0x20,0x0,0x25,0x0,0x1f,0x0,0x28,0x0,0x1e,0x0,0x27,
0x0,0x1d,0x0,0x25,0x0,0x1d,0x0,0x24,0x0,0x1d,0x0,0x20,0x0,0x1f,0x0,0x1f,
0x0,0x20,0x0,0x22,0x0,0x1f,0x0,0x23,0x0,0x1e,0x0,0x21,0x0,0x20,0x0,0x1e,
0x0,0x20,0x0,0x1a,0x0,0x1f,0x0,0x1b,0x0,0x1e,0x0,0x1d,0x0,0x1a,0x0,0x1c,
0x0,0x16,0x0,0x1b,0x0,0x13,0x0,0x1a,0x0,0x12,0x0,0x18,0x0,0x12,0x0,0x17,
0x0,0x11,0x0,0x16,0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x13,
0x0,0x12,0x0,0x11,0x0,0x15,0x0,0x13,0x0,0x16,0x0,0x14,0x0,0x15,0x0,0x15,
0x0,0x16,0x0,0x18,0x0,0x17,0x0,0x18,0x0,0x16,0x0,0x16,0x0,0x14,0x0,0x13,
0x0,0x13,0x0,0x10,0x0,0x13,0x0,0xf,0x0,0x12,0x0,0x10,0x0,0x11,0x0,0xd,
0x0,0x11,0x0,0xc,0x0,0x11,0x0,0xd,0x0,0xf,0x0,0xb,0x0,0xf,0x0,0xc,
0x0,0xe,0x0,0x11,0x0,0xe,0x0,0x13,0x0,0x10,0x0,0x13,0x0,0x11,0x0,0x14,
0x0,0x11,0x0,0x15,0x0,0x12,0x0,0x15,0x0,0x12,0x0,0x16,0x0,0x12,0x0,0x16,
0x0,0x12,0x0,0x15,0x0,0x11,0x0,0x14,0x0,0xf,0x0,0x12,0x0,0xe,0x0,0x10,
0x0,0xe,0x0,0xb,0x0,0xd,0x0,0xa,0x0,0x9,0x0,0x9,0x0,0x8,0x0,0xa,
0x0,0xa,0x0,0xc,0x0,0xc,0x0,0xe,0x0,0xc,0x0,0xe,0x0,0xc,0x0,0xc,
0x0,0xb,0x0,0xb,0x0,0xb,0x0,0x9,0x0,0xd,0x0,0xb,0x0,0xe,0x0,0xd,
0x0,0xd,0x0,0xb,0x0,0xd,0x0,0x9,0x0,0xe,0x0,0xa,0x0,0xf,0x0,0xd,
0x0,0xf,0x0,0xe,0x0,0xc,0x0,0xe,0x0,0xc,0x0,0xe,0x0,0xf,0x0,0xd,
0x0,0x11,0x0,0x10,0x0,0x13,0x0,0x13,0x0,0x14,0x0,0x11,0x0,0x12,0x0,0x10,
0x0,0x13,0x0,0x11,0x0,0x17,0x0,0x12,0x0,0x1a,0x0,0x14,0x0,0x19,0x0,0x15,
0x0,0x18,0x0,0x13,0x0,0x15,0x0,0x13,0x0,0x12,0x0,0x13,0x0,0x12,0x0,0x12,
0x0,0x11,0x0,0x12,0x0,0x10,0x0,0x10,0x0,0xe,0x0,0xc,0x0,0xd,0x0,0xa,
0x0,0xc,0x0,0xb,0x0,0xb,0x0,0xb,0x0,0x9,0x0,0xb,0x0,0x9,0x0,0x9,
0x0,0xa,0x0,0x8,0x0,0xd,0x0,0x9,0x0,0xf,0x0,0xa,0x0,0xf,0x0,0xd,
0x0,0xe,0x0,0x11,0x0,0xd,0x0,0x11,0x0,0xd,0x0,0x11,0x0,0xd,0x0,0x14,
0x0,0xf,0x0,0x18,0x0,0x11,0x0,0x19,0x0,0x12,0x0,0x17,0x0,0x11,0x0,0x13,
0x0,0x12,0x0,0xe,0x0,0x16,0x0,0xb,0x0,0x17,0x0,0xa,0x0,0x13,0x0,0x9,
0x0,0xe,0x0,0x8,0x0,0xd,0x0,0x7,0x0,0x10,0x0,0x9,0x0,0x10,0x0,0xc,
0x0,0x11,0x0,0xf,0x0,0x13,0x0,0x12,0x0,0x13,0x0,0x11,0x0,0x14,0x0,0x11,
0x0,0x18,0x0,0x11,0x0,0x19,0x0,0x12,0x0,0x18,0x0,0x13,0x0,0x16,0x0,0x11,
0x0,0x14,0x0,0x10,0x0,0x13,0x0,0xf,0x0,0x12,0x0,0xc,0x0,0x10,0x0,0xa,
0x0,0xf,0x0,0xa,0x0,0xe,0x0,0x9,0x0,0xc,0x0,0x9,0x0,0xc,0x0,0x9,
0x0,0x9,0x0,0x8,0x0,0x3,0x0,0x8,0x0,0x4,0x0,0xa,0x0,0x9,0x0,0xd,
0x0,0xd,0x0,0x12,0x0,0x11,0x0,0x12,0x0,0x11,0x0,0xe,0x0,0xf,0x0,0xa,
0x0,0xd,0x0,0x8,0x0,0xa,0x0,0x9,0x0,0x9,0x0,0xc,0x0,0x9,0x0,0x8,
0x0,0x5,0x0,0x1,0x0,0x1,0x0,0xff,0xff,0x2,0x0,0xff,0xff,0x1,0x0,0x0,
0x0,0x0,0x0,0x4,0x0,0x3,0x0,0x7,0x0,0x5,0x0,0x9,0x0,0x5,0x0,0xc,
0x0,0xa,0x0,0xf,0x0,0xf,0x0,0x11,0x0,0xe,0x0,0x10,0x0,0x9,0x0,0xd,
0x0,0x8,0x0,0xa,0x0,0xa,0x0,0x9,0x0,0xb,0x0,0x9,0x0,0xa,0x0,0x9,
0x0,0x7,0x0,0x7,0x0,0x5,0x0,0x5,0x0,0x2,0x0,0x5,0x0,0x1,0x0,0x4,
0x0,0x1,0x0,0x3,0x0,0x3,0x0,0x4,0x0,0x3,0x0,0x3,0x0,0x1,0x0,0x0,
0x0,0x0,0x0,0x1,0x0,0x1,0x0,0x5,0x0,0x3,0x0,0x7,0x0,0x5,0x0,0x5,
0x0,0x5,0x0,0x1,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x1,0x0,0x3,0x0,0x2,
0x0,0x0,0x0,0x3,0x0,0xff,0xff,0x1,0x0,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xfc,
0xff,0xff,0xff,0xfd,0xff,0x0,0x0,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfe,0xff,0xfb,
0xff,0xfd,0xff,0xf8,0xff,0xfb,0xff,0xf9,0xff,0xfc,0xff,0xfc,0xff,0xfc,0xff,0xfe,
0xff,0xf9,0xff,0xfe,0xff,0xfa,0xff,0x0,0x0,0xfd,0xff,0x3,0x0,0x2,0x0,0x4,
0x0,0x6,0x0,0x4,0x0,0x6,0x0,0x5,0x0,0x3,0x0,0x7,0x0,0x3,0x0,0x5,
0x0,0x7,0x0,0x3,0x0,0x7,0x0,0x2,0x0,0x5,0x0,0x3,0x0,0x3,0x0,0x3,
0x0,0x1,0x0,0xff,0xff,0x2,0x0,0xfe,0xff,0x4,0x0,0xff,0xff,0x2,0x0,0xfe,
0xff,0xfe,0xff,0xfc,0xff,0xfb,0xff,0xfb,0xff,0xfa,0xff,0xfa,0xff,0xfc,0xff,0xfa,
0xff,0xfe,0xff,0xfa,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xf9,0xff,0xfe,0xff,0xfa,
0xff,0xff,0xff,0xfc,0xff,0x2,0x0,0xfe,0xff,0x0,0x0,0xfc,0xff,0xff,0xff,0xfb,
0xff,0x0,0x0,0xfd,0xff,0x1,0x0,0xfe,0xff,0x2,0x0,0x0,0x0,0x2,0x0,0x2,
0x0,0xff,0xff,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0x3,0x0,0x3,0x0,0x5,
0x0,0x3,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0xfe,
0xff,0x2,0x0,0xff,0xff,0x3,0x0,0x1,0x0,0x6,0x0,0x3,0x0,0x7,0x0,0x1,
0x0,0x8,0x0,0x1,0x0,0xa,0x0,0x2,0x0,0x9,0x0,0x3,0x0,0x6,0x0,0x5,
0x0,0x3,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x8,0x0,0x1,0x0,0x9,
0x0,0x2,0x0,0xa,0x0,0x4,0x0,0xa,0x0,0x4,0x0,0x9,0x0,0x2,0x0,0x9,
0x0,0x4,0x0,0x7,0x0,0x6,0x0,0x3,0x0,0x5,0x0,0xff,0xff,0x4,0x0,0xfd,
0xff,0x1,0x0,0xf9,0xff,0xff,0xff,0xf5,0xff,0xfd,0xff,0xf7,0xff,0xfe,0xff,0xfa,
0xff,0x1,0x0,0xfe,0xff,0x2,0x0,0x1,0x0,0x1,0x0,0x3,0x0,0x3,0x0,0x4,
0x0,0x4,0x0,0x5,0x0,0x5,0x0,0x6,0x0,0x7,0x0,0x7,0x0,0x8,0x0,0x8,
0x0,0xa,0x0,0x7,0x0,0xc,0x0,0x5,0x0,0xd,0x0,0x3,0x0,0xe,0x0,0x4,
0x0,0xd,0x0,0x4,0x0,0x7,0x0,0x3,0x0,0x2,0x0,0x1,0x0,0x3,0x0,0x0,
0x0,0x5,0x0,0x1,0x0,0x4,0x0,0x2,0x0,0x2,0x0,0x2,0x0,0x3,0x0,0x6,
0x0,0x5,0x0,0xb,0x0,0x7,0x0,0xe,0x0,0x8,0x0,0xf,0x0,0xa,0x0,0xf,
0x0,0xc,0x0,0xc,0x0,0xb,0x0,0x9,0x0,0x9,0x0,0x7,0x0,0xa,0x0,0x4,
0x0,0x8,0x0,0x1,0x0,0x5,0x0,0xfe,0xff,0x5,0x0,0xfe,0xff,0x5,0x0,0x0,
0x0,0x3,0x0,0x0,0x0,0x1,0x0,0xff,0xff,0x1,0x0,0xff,0xff,0x2,0x0,0x2,
0x0,0x4,0x0,0x7,0x0,0x6,0x0,0xa,0x0,0x7,0x0,0xa,0x0,0x6,0x0,0x8,
0x0,0x7,0x0,0x5,0x0,0xa,0x0,0x5,0x0,0xa,0x0,0x7,0x0,0x8,0x0,0x6,
0x0,0x9,0x0,0x7,0x0,0xb,0x0,0x7,0x0,0xb,0x0,0x7,0x0,0xb,0x0,0x8,
0x0,0xc,0x0,0x9,0x0,0xe,0x0,0x8,0x0,0xf,0x0,0xa,0x0,0xf,0x0,0xb,
0x0,0x12,0x0,0xd,0x0,0x14,0x0,0xe,0x0,0x11,0x0,0xe,0x0,0x10,0x0,0xc,
0x0,0x10,0x0,0xb,0x0,0x11,0x0,0xc,0x0,0x11,0x0,0xa,0x0,0x11,0x0,0x8,
0x0,0x10,0x0,0xd,0x0,0x12,0x0,0x14,0x0,0x12,0x0,0x15,0x0,0x12,0x0,0x14,
0x0,0x12,0x0,0x12,0x0,0x11,0x0,0xf,0x0,0xf,0x0,0xe,0x0,0xd,0x0,0xc,
0x0,0xa,0x0,0x9,0x0,0x9,0x0,0x8,0x0,0x9,0x0,0xb,0x0,0xb,0x0,0xe,
0x0,0xd,0x0,0x12,0x0,0xb,0x0,0x11,0x0,0x8,0x0,0x11,0x0,0xc,0x0,0x14,
0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x13,0x0,0x12,0x0,0x12,0x0,0x14,0x0,0xd,
0x0,0x14,0x0,0xa,0x0,0x15,0x0,0xc,0x0,0x17,0x0,0xf,0x0,0x18,0x0,0x11,
0x0,0x18,0x0,0x13,0x0,0x17,0x0,0x14,0x0,0x17,0x0,0x16,0x0,0x15,0x0,0x13,
0x0,0x17,0x0,0xf,0x0,0x1a,0x0,0x11,0x0,0x1b,0x0,0x14,0x0,0x1b,0x0,0x16,
0x0,0x1a,0x0,0x16,0x0,0x16,0x0,0x13,0x0,0x14,0x0,0x13,0x0,0x15,0x0,0x14,
0x0,0x16,0x0,0x13,0x0,0x14,0x0,0x13,0x0,0x13,0x0,0x13,0x0,0x14,0x0,0x13,
0x0,0x16,0x0,0x13,0x0,0x18,0x0,0x16,0x0,0x18,0x0,0x18,0x0,0x17,0x0,0x18,
0x0,0x15,0x0,0x15,0x0,0x13,0x0,0x12,0x0,0x13,0x0,0x10,0x0,0x12,0x0,0x11,
0x0,0x10,0x0,0x12,0x0,0xe,0x0,0x11,0x0,0xb,0x0,0x10,0x0,0xa,0x0,0x11,
0x0,0xb,0x0,0xf,0x0,0xb,0x0,0xb,0x0,0xb,0x0,0x7,0x0,0xd,0x0,0x5,
0x0,0xd,0x0,0x5,0x0,0xa,0x0,0x7,0x0,0x7,0x0,0x6,0x0,0x6,0x0,0x5,
0x0,0x7,0x0,0x7,0x0,0x8,0x0,0xa,0x0,0xa,0x0,0xa,0x0,0xb,0x0,0xa,
0x0,0xa,0x0,0xb,0x0,0xb,0x0,0xc,0x0,0x10,0x0,0xc,0x0,0x13,0x0,0xc,
0x0,0x15,0x0,0xb,0x0,0x15,0x0,0x9,0x0,0x11,0x0,0x8,0x0,0x11,0x0,0xa,
0x0,0x15,0x0,0xb,0x0,0x16,0x0,0xe,0x0,0x15,0x0,0x11,0x0,0x17,0x0,0x12,
0x0,0x15,0x0,0x13,0x0,0x15,0x0,0x14,0x0,0x19,0x0,0x14,0x0,0x19,0x0,0x12,
0x0,0x19,0x0,0x11,0x0,0x1a,0x0,0x11,0x0,0x16,0x0,0x10,0x0,0x13,0x0,0xc,
0x0,0x13,0x0,0x7,0x0,0xd,0x0,0x4,0x0,0x6,0x0,0x5,0x0,0x4,0x0,0x5,
0x0,0x1,0x0,0x3,0x0,0x1,0x0,0x2,0x0,0x3,0x0,0x3,0x0,0x4,0x0,0x6,
0x0,0x5,0x0,0xc,0x0,0x9,0x0,0xd,0x0,0xa,0x0,0xc,0x0,0x9,0x0,0xb,
0x0,0x9,0x0,0xc,0x0,0xa,0x0,0xd,0x0,0xa,0x0,0xd,0x0,0xc,0x0,0xc,
0x0,0x10,0x0,0xb,0x0,0x12,0x0,0xc,0x0,0x12,0x0,0xd,0x0,0x17,0x0,0x10,
0x0,0x1d,0x0,0x13,0x0,0x1c,0x0,0x14,0x0,0x18,0x0,0x16,0x0,0x16,0x0,0x16,
0x0,0x13,0x0,0x14,0x0,0x11,0x0,0x13,0x0,0x12,0x0,0x12,0x0,0x14,0x0,0x12,
0x0,0x16,0x0,0x14,0x0,0x1b,0x0,0x18,0x0,0x1c,0x0,0x17,0x0,0x1a,0x0,0x14,
0x0,0x18,0x0,0x13,0x0,0x17,0x0,0x15,0x0,0x1a,0x0,0x16,0x0,0x1c,0x0,0x14,
0x0,0x1a,0x0,0x12,0x0,0x16,0x0,0x12,0x0,0x17,0x0,0x15,0x0,0x1c,0x0,0x1a,
0x0,0x1d,0x0,0x1a,0x0,0x18,0x0,0x18,0x0,0x13,0x0,0x15,0x0,0x15,0x0,0x16,
0x0,0x1a,0x0,0x1c,0x0,0x1d,0x0,0x1f,0x0,0x1d,0x0,0x1d,0x0,0x19,0x0,0x17,
0x0,0x19,0x0,0x15,0x0,0x20,0x0,0x1b,0x0,0x26,0x0,0x24,0x0,0x24,0x0,0x23,
0x0,0x1d,0x0,0x1c,0x0,0x1a,0x0,0x18,0x0,0x1f,0x0,0x1b,0x0,0x26,0x0,0x23,
0x0,0x28,0x0,0x25,0x0,0x25,0x0,0x1e,0x0,0x21,0x0,0x1b,0x0,0x24,0x0,0x1d,
0x0,0x2c,0x0,0x22,0x0,0x2e,0x0,0x27,0x0,0x29,0x0,0x24,0x0,0x21,0x0,0x1e,
0x0,0x1f,0x0,0x20,0x0,0x24,0x0,0x26,0x0,0x27,0x0,0x2a,0x0,0x23,0x0,0x27,
0x0,0x20,0x0,0x20,0x0,0x21,0x0,0x1c,0x0,0x26,0x0,0x1e,0x0,0x2b,0x0,0x1e,
0x0,0x2a,0x0,0x18,0x0,0x23,0x0,0x14,0x0,0x21,0x0,0x14,0x0,0x23,0x0,0x17,
0x0,0x24,0x0,0x19,0x0,0x20,0x0,0x18,0x0,0x1c,0x0,0x18,0x0,0x1c,0x0,0x16,
0x0,0x1e,0x0,0x17,0x0,0x1f,0x0,0x17,0x0,0x1f,0x0,0x16,0x0,0x1d,0x0,0x17,
0x0,0x1e,0x0,0x1b,0x0,0x22,0x0,0x1f,0x0,0x24,0x0,0x22,0x0,0x26,0x0,0x26,
0x0,0x28,0x0,0x28,0x0,0x2a,0x0,0x28,0x0,0x30,0x0,0x2b,0x0,0x34,0x0,0x2d,
0x0,0x34,0x0,0x2d,0x0,0x32,0x0,0x2c,0x0,0x2f,0x0,0x2e,0x0,0x2f,0x0,0x2e,
0x0,0x2d,0x0,0x2d,0x0,0x27,0x0,0x2b,0x0,0x23,0x0,0x28,0x0,0x26,0x0,0x27,
0x0,0x27,0x0,0x28,0x0,0x27,0x0,0x26,0x0,0x26,0x0,0x22,0x0,0x24,0x0,0x21,
0x0,0x27,0x0,0x23,0x0,0x2b,0x0,0x26,0x0,0x2b,0x0,0x25,0x0,0x28,0x0,0x20,
0x0,0x25,0x0,0x1e,0x0,0x26,0x0,0x1f,0x0,0x28,0x0,0x21,0x0,0x28,0x0,0x22,
0x0,0x26,0x0,0x1f,0x0,0x23,0x0,0x1a,0x0,0x21,0x0,0x1f,0x0,0x22,0x0,0x24,
0x0,0x24,0x0,0x22,0x0,0x20,0x0,0x20,0x0,0x1b,0x0,0x1f,0x0,0x1d,0x0,0x22,
0x0,0x23,0x0,0x27,0x0,0x28,0x0,0x28,0x0,0x28,0x0,0x27,0x0,0x26,0x0,0x26,
0x0,0x24,0x0,0x27,0x0,0x27,0x0,0x2c,0x0,0x2c,0x0,0x2f,0x0,0x2f,0x0,0x2b,
0x0,0x2c,0x0,0x26,0x0,0x29,0x0,0x26,0x0,0x2a,0x0,0x2c,0x0,0x2f,0x0,0x32,
0x0,0x30,0x0,0x34,0x0,0x2d,0x0,0x32,0x0,0x2c,0x0,0x2f,0x0,0x2c,0x0,0x2c,
0x0,0x2d,0x0,0x2e,0x0,0x2e,0x0,0x30,0x0,0x2e,0x0,0x2e,0x0,0x2d,0x0,0x2b,
0x0,0x2e,0x0,0x2b,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x2e,0x0,0x2e,0x0,0x2e,
0x0,0x2c,0x0,0x2d,0x0,0x2c,0x0,0x2c,0x0,0x29,0x0,0x2b,0x0,0x26,0x0,0x2c,
0x0,0x26,0x0,0x2a,0x0,0x22,0x0,0x25,0x0,0x1c,0x0,0x22,0x0,0x1d,0x0,0x20,
0x0,0x21,0x0,0x1f,0x0,0x22,0x0,0x1d,0x0,0x22,0x0,0x19,0x0,0x20,0x0,0x16,
0x0,0x1f,0x0,0x17,0x0,0x23,0x0,0x1a,0x0,0x28,0x0,0x20,0x0,0x2b,0x0,0x25,
0x0,0x2a,0x0,0x27,0x0,0x2a,0x0,0x29,0x0,0x29,0x0,0x2a,0x0,0x27,0x0,0x2b,
0x0,0x27,0x0,0x2b,0x0,0x2a,0x0,0x2b,0x0,0x2b,0x0,0x29,0x0,0x2b,0x0,0x28,
0x0,0x2c,0x0,0x23,0x0,0x2c,0x0,0x1e,0x0,0x2d,0x0,0x21,0x0,0x2d,0x0,0x27,
0x0,0x2e,0x0,0x2b,0x0,0x31,0x0,0x2d,0x0,0x32,0x0,0x2e,0x0,0x30,0x0,0x2e,
0x0,0x2f,0x0,0x2e,0x0,0x30,0x0,0x30,0x0,0x2f,0x0,0x33,0x0,0x30,0x0,0x35,
0x0,0x32,0x0,0x33,0x0,0x32,0x0,0x31,0x0,0x30,0x0,0x2d,0x0,0x2e,0x0,0x27,
0x0,0x29,0x0,0x23,0x0,0x25,0x0,0x20,0x0,0x24,0x0,0x1c,0x0,0x22,0x0,0x1e,
0x0,0x21,0x0,0x21,0x0,0x23,0x0,0x21,0x0,0x27,0x0,0x23,0x0,0x2a,0x0,0x26,
0x0,0x2b,0x0,0x27,0x0,0x2a,0x0,0x29,0x0,0x28,0x0,0x2b,0x0,0x2a,0x0,0x2c,
0x0,0x2c,0x0,0x2b,0x0,0x2c,0x0,0x29,0x0,0x2b,0x0,0x26,0x0,0x29,0x0,0x23,
0x0,0x27,0x0,0x20,0x0,0x28,0x0,0x1f,0x0,0x2c,0x0,0x21,0x0,0x30,0x0,0x24,
0x0,0x2e,0x0,0x27,0x0,0x29,0x0,0x26,0x0,0x27,0x0,0x25,0x0,0x26,0x0,0x26,
0x0,0x27,0x0,0x26,0x0,0x2c,0x0,0x26,0x0,0x2e,0x0,0x28,0x0,0x2d,0x0,0x28,
0x0,0x30,0x0,0x29,0x0,0x34,0x0,0x2e,0x0,0x35,0x0,0x30,0x0,0x35,0x0,0x2e,
0x0,0x34,0x0,0x30,0x0,0x34,0x0,0x33,0x0,0x36,0x0,0x34,0x0,0x38,0x0,0x37,
0x0,0x38,0x0,0x39,0x0,0x37,0x0,0x38,0x0,0x33,0x0,0x38,0x0,0x2f,0x0,0x37,
0x0,0x2e,0x0,0x33,0x0,0x2d,0x0,0x31,0x0,0x2c,0x0,0x30,0x0,0x2d,0x0,0x2f,
0x0,0x2e,0x0,0x2f,0x0,0x30,0x0,0x2e,0x0,0x35,0x0,0x2e,0x0,0x36,0x0,0x2e,
0x0,0x36,0x0,0x2e,0x0,0x39,0x0,0x2f,0x0,0x3a,0x0,0x33,0x0,0x39,0x0,0x37,
0x0,0x3a,0x0,0x37,0x0,0x37,0x0,0x33,0x0,0x32,0x0,0x2f,0x0,0x31,0x0,0x2d,
0x0,0x31,0x0,0x2c,0x0,0x31,0x0,0x2e,0x0,0x2f,0x0,0x2e,0x0,0x2a,0x0,0x2a,
0x0,0x26,0x0,0x28,0x0,0x27,0x0,0x27,0x0,0x2b,0x0,0x27,0x0,0x2f,0x0,0x2a,
0x0,0x31,0x0,0x2e,0x0,0x34,0x0,0x32,0x0,0x38,0x0,0x37,0x0,0x3a,0x0,0x3b,
0x0,0x39,0x0,0x3d,0x0,0x39,0x0,0x3c,0x0,0x3a,0x0,0x39,0x0,0x3c,0x0,0x38,
0x0,0x3c,0x0,0x38,0x0,0x38,0x0,0x38,0x0,0x35,0x0,0x36,0x0,0x34,0x0,0x34,
0x0,0x35,0x0,0x34,0x0,0x3a,0x0,0x37,0x0,0x3f,0x0,0x3c,0x0,0x41,0x0,0x3d,
0x0,0x42,0x0,0x3b,0x0,0x43,0x0,0x3c,0x0,0x46,0x0,0x40,0x0,0x4a,0x0,0x42,
0x0,0x4b,0x0,0x43,0x0,0x48,0x0,0x44,0x0,0x45,0x0,0x41,0x0,0x43,0x0,0x40,
0x0,0x3f,0x0,0x41,0x0,0x3d,0x0,0x40,0x0,0x3e,0x0,0x3e,0x0,0x3f,0x0,0x3d,
0x0,0x3c,0x0,0x3a,0x0,0x39,0x0,0x38,0x0,0x38,0x0,0x39,0x0,0x35,0x0,0x38,
0x0,0x35,0x0,0x34,0x0,0x35,0x0,0x30,0x0,0x34,0x0,0x30,0x0,0x35,0x0,0x35,
0x0,0x36,0x0,0x37,0x0,0x33,0x0,0x33,0x0,0x31,0x0,0x30,0x0,0x31,0x0,0x31,
0x0,0x32,0x0,0x32,0x0,0x32,0x0,0x30,0x0,0x31,0x0,0x2f,0x0,0x32,0x0,0x2e,
0x0,0x35,0x0,0x2d,0x0,0x36,0x0,0x2c,0x0,0x38,0x0,0x2c,0x0,0x38,0x0,0x2e,
0x0,0x36,0x0,0x31,0x0,0x35,0x0,0x33,0x0,0x31,0x0,0x32,0x0,0x2d,0x0,0x30,
0x0,0x2d,0x0,0x2f,0x0,0x30,0x0,0x2f,0x0,0x33,0x0,0x31,0x0,0x36,0x0,0x33,
0x0,0x36,0x0,0x34,0x0,0x33,0x0,0x36,0x0,0x32,0x0,0x37,0x0,0x32,0x0,0x38,
0x0,0x32,0x0,0x38,0x0,0x33,0x0,0x37,0x0,0x32,0x0,0x36,0x0,0x33,0x0,0x36,
0x0,0x35,0x0,0x34,0x0,0x36,0x0,0x32,0x0,0x35,0x0,0x30,0x0,0x30,0x0,0x2f,
0x0,0x2b,0x0,0x30,0x0,0x27,0x0,0x2e,0x0,0x27,0x0,0x29,0x0,0x2a,0x0,0x28,
0x0,0x2f,0x0,0x2d,0x0,0x35,0x0,0x30,0x0,0x3a,0x0,0x31,0x0,0x3c,0x0,0x32,
0x0,0x3e,0x0,0x32,0x0,0x3e,0x0,0x32,0x0,0x3b,0x0,0x33,0x0,0x3a,0x0,0x32,
0x0,0x39,0x0,0x2f,0x0,0x37,0x0,0x2c,0x0,0x35,0x0,0x2a,0x0,0x31,0x0,0x29,
0x0,0x2f,0x0,0x29,0x0,0x31,0x0,0x27,0x0,0x32,0x0,0x27,0x0,0x31,0x0,0x29,
0x0,0x2f,0x0,0x2c,0x0,0x2a,0x0,0x2f,0x0,0x2b,0x0,0x30,0x0,0x30,0x0,0x30,
0x0,0x33,0x0,0x32,0x0,0x35,0x0,0x31,0x0,0x34,0x0,0x2e,0x0,0x30,0x0,0x30,
0x0,0x2e,0x0,0x30,0x0,0x2a,0x0,0x29,0x0,0x27,0x0,0x24,0x0,0x25,0x0,0x23,
0x0,0x23,0x0,0x23,0x0,0x26,0x0,0x27,0x0,0x2c,0x0,0x2c,0x0,0x2d,0x0,0x2d,
0x0,0x2d,0x0,0x2c,0x0,0x2f,0x0,0x2d,0x0,0x31,0x0,0x33,0x0,0x33,0x0,0x39,
0x0,0x36,0x0,0x3b,0x0,0x37,0x0,0x39,0x0,0x38,0x0,0x38,0x0,0x38,0x0,0x36,
0x0,0x39,0x0,0x35,0x0,0x3a,0x0,0x34,0x0,0x39,0x0,0x33,0x0,0x39,0x0,0x2f,
0x0,0x3a,0x0,0x2d,0x0,0x3a,0x0,0x2f,0x0,0x3a,0x0,0x32,0x0,0x39,0x0,0x33,
0x0,0x37,0x0,0x36,0x0,0x33,0x0,0x3a,0x0,0x2e,0x0,0x39,0x0,0x2c,0x0,0x36,
0x0,0x2a,0x0,0x33,0x0,0x27,0x0,0x2e,0x0,0x25,0x0,0x28,0x0,0x25,0x0,0x25,
0x0,0x24,0x0,0x25,0x0,0x25,0x0,0x24,0x0,0x26,0x0,0x23,0x0,0x26,0x0,0x23,
0x0,0x25,0x0,0x22,0x0,0x20,0x0,0x21,0x0,0x1e,0x0,0x21,0x0,0x20,0x0,0x21,
0x0,0x1e,0x0,0x1e,0x0,0x1b,0x0,0x1b,0x0,0x1a,0x0,0x19,0x0,0x15,0x0,0x14,
0x0,0x12,0x0,0x11,0x0,0x15,0x0,0x12,0x0,0x18,0x0,0x14,0x0,0x1a,0x0,0x16,
0x0,0x1b,0x0,0x1b,0x0,0x1f,0x0,0x22,0x0,0x2a,0x0,0x2b,0x0,0x33,0x0,0x34,
0x0,0x38,0x0,0x3c,0x0,0x3c,0x0,0x40,0x0,0x3b,0x0,0x3e,0x0,0x39,0x0,0x37,
0x0,0x35,0x0,0x2e,0x0,0x2c,0x0,0x24,0x0,0x1f,0x0,0x1a,0x0,0x16,0x0,0x13,
0x0,0x11,0x0,0xe,0x0,0xe,0x0,0xb,0x0,0xc,0x0,0xb,0x0,0x9,0x0,0xf,
0x0,0xa,0x0,0x15,0x0,0x10,0x0,0x1c,0x0,0x19,0x0,0x25,0x0,0x24,0x0,0x2c,
0x0,0x2b,0x0,0x2f,0x0,0x2d,0x0,0x2e,0x0,0x30,0x0,0x2e,0x0,0x30,0x0,0x2d,
0x0,0x27,0x0,0x25,0x0,0x16,0x0,0x14,0x0,0xfe,0xff,0xfb,0xff,0xe4,0xff,0xe0,
0xff,0xce,0xff,0xcc,0xff,0xbe,0xff,0xbe,0xff,0xb3,0xff,0xb4,0xff,0xb6,0xff,0xba,
0xff,0xca,0xff,0xd1,0xff,0xeb,0xff,0xf1,0xff,0x10,0x0,0x18,0x0,0x34,0x0,0x40,
0x0,0x55,0x0,0x5d,0x0,0x70,0x0,0x71,0x0,0x7d,0x0,0x7f,0x0,0x7b,0x0,0x7c,
0x0,0x68,0x0,0x64,0x0,0x47,0x0,0x3e,0x0,0x25,0x0,0x16,0x0,0x4,0x0,0xf4,
0xff,0xe3,0xff,0xdb,0xff,0xcc,0xff,0xcb,0xff,0xc8,0xff,0xc9,0xff,0xd8,0xff,0xdc,
0xff,0xfd,0xff,0x0,0x0,0x2a,0x0,0x2d,0x0,0x54,0x0,0x59,0x0,0x77,0x0,0x7b,
0x0,0x8f,0x0,0x8f,0x0,0x95,0x0,0x94,0x0,0x8a,0x0,0x87,0x0,0x6b,0x0,0x64,
0x0,0x3d,0x0,0x33,0x0,0x9,0x0,0xff,0xff,0xd8,0xff,0xcb,0xff,0xac,0xff,0xa1,
0xff,0x8d,0xff,0x8b,0xff,0x82,0xff,0x88,0xff,0x8b,0xff,0x95,0xff,0xa6,0xff,0xb5,
0xff,0xd2,0xff,0xe1,0xff,0x2,0x0,0xe,0x0,0x2c,0x0,0x36,0x0,0x4d,0x0,0x55,
0x0,0x64,0x0,0x64,0x0,0x68,0x0,0x64,0x0,0x5a,0x0,0x54,0x0,0x39,0x0,0x33,
0x0,0xc,0x0,0x9,0x0,0xdf,0xff,0xe1,0xff,0xc0,0xff,0xc0,0xff,0xb2,0xff,0xb1,
0xff,0xb8,0xff,0xb8,0xff,0xce,0xff,0xcf,0xff,0xef,0xff,0xf2,0xff,0x17,0x0,0x1b,
0x0,0x40,0x0,0x3f,0x0,0x5c,0x0,0x5a,0x0,0x67,0x0,0x6e,0x0,0x6a,0x0,0x74,
0x0,0x65,0x0,0x6c,0x0,0x59,0x0,0x59,0x0,0x48,0x0,0x41,0x0,0x33,0x0,0x2a,
0x0,0x1d,0x0,0x14,0x0,0xa,0x0,0x1,0x0,0xff,0xff,0xf6,0xff,0xfb,0xff,0xf3,
0xff,0xfc,0xff,0xf7,0xff,0x0,0x0,0x2,0x0,0xa,0x0,0xd,0x0,0x19,0x0,0x1a,
0x0,0x27,0x0,0x29,0x0,0x32,0x0,0x37,0x0,0x3a,0x0,0x3e,0x0,0x3a,0x0,0x3e,
0x0,0x31,0x0,0x36,0x0,0x1f,0x0,0x24,0x0,0x8,0x0,0xb,0x0,0xf2,0xff,0xf4,
0xff,0xe3,0xff,0xe4,0xff,0xe0,0xff,0xdc,0xff,0xe7,0xff,0xdd,0xff,0xea,0xff,0xe7,
0xff,0xef,0xff,0xf5,0xff,0xfa,0xff,0x2,0x0,0x5,0x0,0xf,0x0,0x11,0x0,0x1a,
0x0,0x1c,0x0,0x25,0x0,0x1e,0x0,0x28,0x0,0x18,0x0,0x20,0x0,0x15,0x0,0x17,
0x0,0x14,0x0,0xe,0x0,0x16,0x0,0x6,0x0,0x13,0x0,0xff,0xff,0x9,0x0,0xf8,
0xff,0x3,0x0,0xf1,0xff,0x2,0x0,0xf2,0xff,0x8,0x0,0xfd,0xff,0x13,0x0,0xd,
0x0,0x1f,0x0,0x1d,0x0,0x2c,0x0,0x2c,0x0,0x38,0x0,0x39,0x0,0x40,0x0,0x40,
0x0,0x43,0x0,0x43,0x0,0x3e,0x0,0x3c,0x0,0x30,0x0,0x2a,0x0,0x22,0x0,0x17,
0x0,0x15,0x0,0x8,0x0,0xa,0x0,0xfe,0xff,0x4,0x0,0xfa,0xff,0x1,0x0,0xfc,
0xff,0x3,0x0,0x0,0x0,0xd,0x0,0xa,0x0,0x17,0x0,0x19,0x0,0x23,0x0,0x28,
0x0,0x2f,0x0,0x33,0x0,0x32,0x0,0x35,0x0,0x30,0x0,0x32,0x0,0x2c,0x0,0x2c,
0x0,0x20,0x0,0x23,0x0,0xf,0x0,0x15,0x0,0xff,0xff,0x6,0x0,0xf2,0xff,0xf6,
0xff,0xee,0xff,0xe9,0xff,0xef,0xff,0xe5,0xff,0xf4,0xff,0xe8,0xff,0xfd,0xff,0xf0,
0xff,0x8,0x0,0xfc,0xff,0x15,0x0,0xe,0x0,0x27,0x0,0x21,0x0,0x34,0x0,0x2f,
0x0,0x37,0x0,0x32,0x0,0x32,0x0,0x2e,0x0,0x26,0x0,0x26,0x0,0x19,0x0,0x1a,
0x0,0xc,0x0,0xa,0x0,0x0,0x0,0xfc,0xff,0xfa,0xff,0xf1,0xff,0xf4,0xff,0xe9,
0xff,0xf5,0xff,0xed,0xff,0x3,0x0,0xfb,0xff,0x14,0x0,0xa,0x0,0x1f,0x0,0x1a,
0x0,0x2e,0x0,0x2c,0x0,0x3d,0x0,0x3b,0x0,0x47,0x0,0x45,0x0,0x4a,0x0,0x44,
0x0,0x44,0x0,0x3c,0x0,0x33,0x0,0x30,0x0,0x1c,0x0,0x21,0x0,0x9,0x0,0xe,
0x0,0xff,0xff,0x0,0x0,0xfa,0xff,0xf8,0xff,0xf8,0xff,0xf5,0xff,0xfb,0xff,0xf7,
0xff,0x1,0x0,0x1,0x0,0xc,0x0,0x10,0x0,0x1d,0x0,0x1f,0x0,0x2c,0x0,0x2b,
0x0,0x34,0x0,0x2f,0x0,0x33,0x0,0x2c,0x0,0x2b,0x0,0x28,0x0,0x21,0x0,0x23,
0x0,0x19,0x0,0x1c,0x0,0x11,0x0,0x12,0x0,0x9,0x0,0x9,0x0,0x5,0x0,0x3,
0x0,0x4,0x0,0x2,0x0,0x6,0x0,0x4,0x0,0x8,0x0,0x5,0x0,0x9,0x0,0x5,
0x0,0xc,0x0,0x5,0x0,0x12,0x0,0x8,0x0,0x18,0x0,0xc,0x0,0x19,0x0,0xe,
0x0,0x16,0x0,0xd,0x0,0x10,0x0,0x8,0x0,0x7,0x0,0x2,0x0,0x2,0x0,0x0,
0x0,0x3,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x9,0x0,0x1,0x0,0x10,0x0,0x1,
0x0,0x12,0x0,0x4,0x0,0x14,0x0,0xd,0x0,0x1a,0x0,0x15,0x0,0x1d,0x0,0x17,
0x0,0x19,0x0,0x18,0x0,0x16,0x0,0x16,0x0,0x13,0x0,0x12,0x0,0xa,0x0,0xd,
0x0,0x2,0x0,0x7,0x0,0x2,0x0,0x1,0x0,0x4,0x0,0xff,0xff,0x8,0x0,0x4,
0x0,0xf,0x0,0xd,0x0,0x16,0x0,0x15,0x0,0x1a,0x0,0x1b,0x0,0x1e,0x0,0x22,
0x0,0x20,0x0,0x24,0x0,0x1d,0x0,0x22,0x0,0x19,0x0,0x1b,0x0,0x16,0x0,0xf,
0x0,0x10,0x0,0x4,0x0,0x7,0x0,0xfd,0xff,0xfe,0xff,0xf8,0xff,0xf5,0xff,0xf6,
0xff,0xf1,0xff,0xf3,0xff,0xf3,0xff,0xee,0xff,0xf1,0xff,0xed,0xff,0xee,0xff,0xef,
0xff,0xed,0xff,0xef,0xff,0xf0,0xff,0xf0,0xff,0xf9,0xff,0xf1,0xff,0x3,0x0,0xf4,
0xff,0x6,0x0,0xfa,0xff,0x7,0x0,0x1,0x0,0x8,0x0,0x5,0x0,0x9,0x0,0x5,
0x0,0xa,0x0,0x2,0x0,0x5,0x0,0x0,0x0,0xfc,0xff,0x0,0x0,0xf7,0xff,0xfe,
0xff,0xf2,0xff,0xf8,0xff,0xee,0xff,0xf3,0xff,0xed,0xff,0xf1,0xff,0xef,0xff,0xf4,
0xff,0xf4,0xff,0xf8,0xff,0xfe,0xff,0xf9,0xff,0x8,0x0,0xfb,0xff,0x11,0x0,0x0,
0x0,0x13,0x0,0x7,0x0,0x13,0x0,0x10,0x0,0x18,0x0,0x14,0x0,0x1a,0x0,0x11,
0x0,0x10,0x0,0xb,0x0,0x4,0x0,0x6,0x0,0xfb,0xff,0x3,0x0,0xf1,0xff,0xfe,
0xff,0xec,0xff,0xf8,0xff,0xea,0xff,0xf1,0xff,0xe4,0xff,0xea,0xff,0xe4,0xff,0xe7,
0xff,0xeb,0xff,0xea,0xff,0xf1,0xff,0xed,0xff,0xf5,0xff,0xf1,0xff,0xf9,0xff,0xf6,
0xff,0xfd,0xff,0xf8,0xff,0x0,0x0,0xf7,0xff,0x1,0x0,0xf7,0xff,0xfd,0xff,0xf4,
0xff,0xf5,0xff,0xf0,0xff,0xeb,0xff,0xea,0xff,0xe1,0xff,0xe4,0xff,0xd8,0xff,0xdf,
0xff,0xd3,0xff,0xdd,0xff,0xd2,0xff,0xdc,0xff,0xd2,0xff,0xdd,0xff,0xd4,0xff,0xe0,
0xff,0xda,0xff,0xe3,0xff,0xe5,0xff,0xe7,0xff,0xf2,0xff,0xeb,0xff,0xfd,0xff,0xec,
0xff,0x3,0x0,0xea,0xff,0xff,0xff,0xea,0xff,0xf8,0xff,0xea,0xff,0xf2,0xff,0xe7,
0xff,0xec,0xff,0xe4,0xff,0xe6,0xff,0xe6,0xff,0xe2,0xff,0xea,0xff,0xe0,0xff,0xeb,
0xff,0xe1,0xff,0xed,0xff,0xe5,0xff,0xf3,0xff,0xee,0xff,0xf6,0xff,0xf3,0xff,0xf5,
0xff,0xf3,0xff,0xf5,0xff,0xf1,0xff,0xf3,0xff,0xee,0xff,0xee,0xff,0xeb,0xff,0xeb,
0xff,0xeb,0xff,0xe6,0xff,0xe8,0xff,0xe1,0xff,0xe7,0xff,0xe0,0xff,0xe8,0xff,0xe1,
0xff,0xea,0xff,0xe6,0xff,0xee,0xff,0xec,0xff,0xf4,0xff,0xeb,0xff,0xf2,0xff,0xea,
0xff,0xeb,0xff,0xed,0xff,0xe6,0xff,0xed,0xff,0xe0,0xff,0xe8,0xff,0xd8,0xff,0xe4,
0xff,0xd5,0xff,0xe2,0xff,0xd6,0xff,0xe0,0xff,0xd9,0xff,0xe0,0xff,0xdb,0xff,0xdc,
0xff,0xdc,0xff,0xd8,0xff,0xde,0xff,0xda,0xff,0xe0,0xff,0xde,0xff,0xe4,0xff,0xe3,
0xff,0xea,0xff,0xe6,0xff,0xec,0xff,0xe7,0xff,0xed,0xff,0xe8,0xff,0xec,0xff,0xea,
0xff,0xe6,0xff,0xea,0xff,0xdf,0xff,0xe8,0xff,0xdb,0xff,0xe4,0xff,0xd8,0xff,0xde,
0xff,0xd6,0xff,0xd9,0xff,0xd2,0xff,0xd6,0xff,0xd2,0xff,0xd6,0xff,0xd8,0xff,0xdb,
0xff,0xe1,0xff,0xe5,0xff,0xeb,0xff,0xee,0xff,0xf4,0xff,0xf2,0xff,0xfb,0xff,0xf7,
0xff,0xff,0xff,0xfd,0xff,0x0,0x0,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xef,0xff,0xf5,
0xff,0xe8,0xff,0xee,0xff,0xe5,0xff,0xe9,0xff,0xe3,0xff,0xe5,0xff,0xe1,0xff,0xe1,
0xff,0xde,0xff,0xdf,0xff,0xdc,0xff,0xdf,0xff,0xdd,0xff,0xe1,0xff,0xe4,0xff,0xe6,
0xff,0xed,0xff,0xed,0xff,0xef,0xff,0xf5,0xff,0xf0,0xff,0xfb,0xff,0xf1,0xff,0xfd,
0xff,0xed,0xff,0xfb,0xff,0xe8,0xff,0xf6,0xff,0xe8,0xff,0xee,0xff,0xea,0xff,0xe6,
0xff,0xe8,0xff,0xdd,0xff,0xe4,0xff,0xd6,0xff,0xdf,0xff,0xd2,0xff,0xdb,0xff,0xd3,
0xff,0xdb,0xff,0xd8,0xff,0xde,0xff,0xe0,0xff,0xe3,0xff,0xe7,0xff,0xe7,0xff,0xed,
0xff,0xeb,0xff,0xf2,0xff,0xed,0xff,0xf2,0xff,0xed,0xff,0xf0,0xff,0xec,0xff,0xeb,
0xff,0xec,0xff,0xe7,0xff,0xee,0xff,0xe6,0xff,0xed,0xff,0xe6,0xff,0xe9,0xff,0xe5,
0xff,0xe6,0xff,0xe4,0xff,0xe7,0xff,0xe1,0xff,0xeb,0xff,0xdf,0xff,0xf0,0xff,0xe3,
0xff,0xf4,0xff,0xe9,0xff,0xf3,0xff,0xf0,0xff,0xf4,0xff,0xf8,0xff,0xf4,0xff,0xfc,
0xff,0xf1,0xff,0xff,0xff,0xed,0xff,0x1,0x0,0xec,0xff,0xfe,0xff,0xeb,0xff,0xf8,
0xff,0xeb,0xff,0xf1,0xff,0xe9,0xff,0xea,0xff,0xe7,0xff,0xe5,0xff,0xe8,0xff,0xe1,
0xff,0xec,0xff,0xdf,0xff,0xf0,0xff,0xe4,0xff,0xf4,0xff,0xed,0xff,0xf7,0xff,0xf4,
0xff,0xfa,0xff,0xfb,0xff,0xff,0xff,0x1,0x0,0x3,0x0,0x2,0x0,0x4,0x0,0x1,
0x0,0x0,0x0,0x1,0x0,0xfa,0xff,0xfd,0xff,0xf7,0xff,0xf8,0xff,0xf5,0xff,0xf4,
0xff,0xf0,0xff,0xef,0xff,0xe8,0xff,0xea,0xff,0xe2,0xff,0xe7,0xff,0xdf,0xff,0xe4,
0xff,0xdf,0xff,0xe2,0xff,0xe0,0xff,0xdf,0xff,0xe0,0xff,0xdd,0xff,0xe1,0xff,0xde,
0xff,0xe5,0xff,0xe0,0xff,0xea,0xff,0xe5,0xff,0xef,0xff,0xec,0xff,0xf3,0xff,0xf2,
0xff,0xf5,0xff,0xf8,0xff,0xf5,0xff,0xfc,0xff,0xf5,0xff,0xfc,0xff,0xf2,0xff,0xfb,
0xff,0xee,0xff,0xf6,0xff,0xea,0xff,0xec,0xff,0xe5,0xff,0xe5,0xff,0xe4,0xff,0xe2,
0xff,0xe7,0xff,0xe1,0xff,0xed,0xff,0xe5,0xff,0xf5,0xff,0xe9,0xff,0xfd,0xff,0xed,
0xff,0x3,0x0,0xf5,0xff,0x6,0x0,0xfc,0xff,0x4,0x0,0x1,0x0,0x3,0x0,0x4,
0x0,0x8,0x0,0x7,0x0,0xd,0x0,0xd,0x0,0x10,0x0,0x11,0x0,0x14,0x0,0x12,
0x0,0x14,0x0,0x13,0x0,0xe,0x0,0x11,0x0,0x5,0x0,0xa,0x0,0xff,0xff,0x3,
0x0,0xfb,0xff,0xfe,0xff,0xf7,0xff,0xf9,0xff,0xf2,0xff,0xf5,0xff,0xf0,0xff,0xf3,
0xff,0xf4,0xff,0xf6,0xff,0xfb,0xff,0xfe,0xff,0x3,0x0,0x3,0x0,0xc,0x0,0x8,
0x0,0x10,0x0,0xa,0x0,0x11,0x0,0x8,0x0,0x13,0x0,0x8,0x0,0x12,0x0,0x7,
0x0,0xc,0x0,0x1,0x0,0x5,0x0,0xfd,0xff,0xfe,0xff,0xfa,0xff,0xf8,0xff,0xf5,
0xff,0xf7,0xff,0xf4,0xff,0xf4,0xff,0xf4,0xff,0xeb,0xff,0xef,0xff,0xe5,0xff,0xec,
0xff,0xe7,0xff,0xee,0xff,0xf2,0xff,0xf3,0xff,0x1,0x0,0xf9,0xff,0xf,0x0,0x0,
0x0,0x18,0x0,0x8,0x0,0x20,0x0,0x12,0x0,0x26,0x0,0x19,0x0,0x29,0x0,0x20,
0x0,0x29,0x0,0x26,0x0,0x25,0x0,0x25,0x0,0x1b,0x0,0x1b,0x0,0xf,0x0,0x11,
0x0,0x8,0x0,0xb,0x0,0x3,0x0,0x8,0x0,0x1,0x0,0x6,0x0,0x1,0x0,0x6,
0x0,0x3,0x0,0x7,0x0,0x8,0x0,0xa,0x0,0x10,0x0,0x11,0x0,0x1c,0x0,0x1e,
0x0,0x2d,0x0,0x2c,0x0,0x39,0x0,0x34,0x0,0x3e,0x0,0x34,0x0,0x3f,0x0,0x32,
0x0,0x3c,0x0,0x32,0x0,0x36,0x0,0x31,0x0,0x2c,0x0,0x2a,0x0,0x21,0x0,0x22,
0x0,0x16,0x0,0x1b,0x0,0xc,0x0,0x14,0x0,0x6,0x0,0xd,0x0,0x4,0x0,0xc,
0x0,0x4,0x0,0xf,0x0,0x8,0x0,0x14,0x0,0xe,0x0,0x19,0x0,0x15,0x0,0x1c,
0x0,0x1f,0x0,0x1e,0x0,0x2a,0x0,0x21,0x0,0x31,0x0,0x27,0x0,0x34,0x0,0x2e,
0x0,0x32,0x0,0x2f,0x0,0x2a,0x0,0x28,0x0,0x21,0x0,0x1d,0x0,0x18,0x0,0x11,
0x0,0xc,0x0,0x7,0x0,0x5,0x0,0xff,0xff,0x3,0x0,0xf8,0xff,0x1,0x0,0xf8,
0xff,0x0,0x0,0xff,0xff,0x1,0x0,0x6,0x0,0x4,0x0,0xa,0x0,0x9,0x0,0xd,
0x0,0xb,0x0,0x10,0x0,0xd,0x0,0x16,0x0,0x12,0x0,0x1a,0x0,0x14,0x0,0x16,
0x0,0x16,0x0,0x13,0x0,0x1a,0x0,0x14,0x0,0x1b,0x0,0x11,0x0,0x19,0x0,0xe,
0x0,0x16,0x0,0xc,0x0,0x15,0x0,0xa,0x0,0x1a,0x0,0xd,0x0,0x1d,0x0,0x13,
0x0,0x1d,0x0,0x18,0x0,0x1d,0x0,0x1a,0x0,0x1c,0x0,0x19,0x0,0x1b,0x0,0x18,
0x0,0x1a,0x0,0x1e,0x0,0x19,0x0,0x21,0x0,0x18,0x0,0x1e,0x0,0x19,0x0,0x1d,
0x0,0x1e,0x0,0x1d,0x0,0x25,0x0,0x20,0x0,0x28,0x0,0x26,0x0,0x2a,0x0,0x26,
0x0,0x2e,0x0,0x23,0x0,0x31,0x0,0x21,0x0,0x34,0x0,0x1e,0x0,0x37,0x0,0x1f,
0x0,0x30,0x0,0x20,0x0,0x23,0x0,0x1a,0x0,0x17,0x0,0x13,0x0,0xd,0x0,0xf,
0x0,0xb,0x0,0xb,0x0,0x7,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf7,
0xff,0x5,0x0,0xf5,0xff,0xf,0x0,0x0,0x0,0x20,0x0,0x11,0x0,0x2f,0x0,0x23,
0x0,0x3d,0x0,0x32,0x0,0x48,0x0,0x39,0x0,0x48,0x0,0x37,0x0,0x3d,0x0,0x32,
0x0,0x2d,0x0,0x28,0x0,0x1a,0x0,0x16,0x0,0x7,0x0,0x3,0x0,0xf9,0xff,0xf4,
0xff,0xf5,0xff,0xef,0xff,0xfc,0xff,0xf9,0xff,0x5,0x0,0x7,0x0,0xd,0x0,0xf,
0x0,0x1a,0x0,0x17,0x0,0x27,0x0,0x24,0x0,0x35,0x0,0x30,0x0,0x43,0x0,0x3b,
0x0,0x48,0x0,0x42,0x0,0x42,0x0,0x3e,0x0,0x35,0x0,0x34,0x0,0x26,0x0,0x2b,
0x0,0x17,0x0,0x21,0x0,0x9,0x0,0x13,0x0,0xfe,0xff,0x2,0x0,0xf7,0xff,0xf2,
0xff,0xf2,0xff,0xeb,0xff,0xf0,0xff,0xea,0xff,0xf0,0xff,0xea,0xff,0xf1,0xff,0xec,
0xff,0xf9,0xff,0xf2,0xff,0x7,0x0,0xfe,0xff,0x15,0x0,0xd,0x0,0x20,0x0,0x1b,
0x0,0x28,0x0,0x25,0x0,0x2f,0x0,0x29,0x0,0x37,0x0,0x30,0x0,0x38,0x0,0x37,
0x0,0x32,0x0,0x38,0x0,0x28,0x0,0x2e,0x0,0x1c,0x0,0x1d,0x0,0x12,0x0,0xb,
0x0,0x9,0x0,0xfd,0xff,0x4,0x0,0xf7,0xff,0x7,0x0,0xf5,0xff,0xd,0x0,0xfc,
0xff,0x17,0x0,0xf,0x0,0x2c,0x0,0x24,0x0,0x41,0x0,0x39,0x0,0x4c,0x0,0x4c,
0x0,0x4f,0x0,0x55,0x0,0x4b,0x0,0x50,0x0,0x43,0x0,0x42,0x0,0x3b,0x0,0x35,
0x0,0x30,0x0,0x28,0x0,0x1f,0x0,0x17,0x0,0xc,0x0,0xa,0x0,0xfb,0xff,0x0,
0x0,0xf5,0xff,0xf9,0xff,0xf4,0xff,0xf9,0xff,0xf2,0xff,0xfd,0xff,0xf0,0xff,0xff,
0xff,0xf4,0xff,0x1,0x0,0x0,0x0,0x6,0x0,0x13,0x0,0x12,0x0,0x25,0x0,0x27,
0x0,0x34,0x0,0x3b,0x0,0x3f,0x0,0x45,0x0,0x41,0x0,0x47,0x0,0x38,0x0,0x3e,
0x0,0x25,0x0,0x2e,0x0,0xa,0x0,0x19,0x0,0xf0,0xff,0xfe,0xff,0xe1,0xff,0xe9,
0xff,0xe2,0xff,0xe4,0xff,0xf0,0xff,0xed,0xff,0x0,0x0,0xfb,0xff,0x13,0x0,0xc,
0x0,0x25,0x0,0x1b,0x0,0x33,0x0,0x25,0x0,0x41,0x0,0x2d,0x0,0x49,0x0,0x35,
0x0,0x49,0x0,0x3a,0x0,0x45,0x0,0x3b,0x0,0x3a,0x0,0x39,0x0,0x2f,0x0,0x34,
0x0,0x28,0x0,0x2a,0x0,0x1d,0x0,0x17,0x0,0xb,0x0,0x0,0x0,0xfa,0xff,0xec,
0xff,0xee,0xff,0xe3,0xff,0xe8,0xff,0xe2,0xff,0xf0,0xff,0xeb,0xff,0x2,0x0,0xff,
0xff,0x1a,0x0,0x1b,0x0,0x36,0x0,0x3b,0x0,0x51,0x0,0x55,0x0,0x66,0x0,0x61,
0x0,0x6d,0x0,0x62,0x0,0x63,0x0,0x57,0x0,0x4c,0x0,0x42,0x0,0x27,0x0,0x26,
0x0,0x0,0x0,0x9,0x0,0xe2,0xff,0xef,0xff,0xce,0xff,0xdd,0xff,0xc6,0xff,0xd3,
0xff,0xcb,0xff,0xd5,0xff,0xdc,0xff,0xe2,0xff,0xf1,0xff,0xf3,0xff,0x3,0x0,0x0,
0x0,0xe,0x0,0x9,0x0,0x17,0x0,0x13,0x0,0x22,0x0,0x22,0x0,0x31,0x0,0x34,
0x0,0x45,0x0,0x45,0x0,0x53,0x0,0x51,0x0,0x54,0x0,0x51,0x0,0x48,0x0,0x42,
0x0,0x30,0x0,0x28,0x0,0xe,0x0,0x3,0x0,0xe8,0xff,0xdf,0xff,0xca,0xff,0xc5,
0xff,0xbc,0xff,0xbe,0xff,0xc4,0xff,0xcb,0xff,0xe0,0xff,0xe3,0xff,0x5,0x0,0x1,
0x0,0x29,0x0,0x25,0x0,0x4e,0x0,0x4a,0x0,0x72,0x0,0x6a,0x0,0x87,0x0,0x7f,
0x0,0x85,0x0,0x7d,0x0,0x65,0x0,0x5f,0x0,0x2e,0x0,0x2d,0x0,0xf7,0xff,0xfa,
0xff,0xcc,0xff,0xd2,0xff,0xaf,0xff,0xb5,0xff,0xa2,0xff,0xa5,0xff,0xa8,0xff,0xad,
0xff,0xbc,0xff,0xc6,0xff,0xd6,0xff,0xe0,0xff,0xea,0xff,0xf2,0xff,0xf6,0xff,0xfc,
0xff,0x4,0x0,0x8,0x0,0x1a,0x0,0x1f,0x0,0x34,0x0,0x3c,0x0,0x4d,0x0,0x53,
0x0,0x5d,0x0,0x5e,0x0,0x5f,0x0,0x5f,0x0,0x54,0x0,0x59,0x0,0x3d,0x0,0x45,
0x0,0x1c,0x0,0x20,0x0,0xf6,0xff,0xf1,0xff,0xd9,0xff,0xcc,0xff,0xcd,0xff,0xbd,
0xff,0xd1,0xff,0xc4,0xff,0xdf,0xff,0xdb,0xff,0xf8,0xff,0xfb,0xff,0x1b,0x0,0x1e,
0x0,0x44,0x0,0x44,0x0,0x69,0x0,0x66,0x0,0x7e,0x0,0x77,0x0,0x7a,0x0,0x72,
0x0,0x62,0x0,0x5c,0x0,0x3e,0x0,0x38,0x0,0x1d,0x0,0x13,0x0,0x1,0x0,0xfa,
0xff,0xea,0xff,0xea,0xff,0xdd,0xff,0xe2,0xff,0xde,0xff,0xe5,0xff,0xe7,0xff,0xec,
0xff,0xed,0xff,0xef,0xff,0xe8,0xff,0xea,0xff,0xdc,0xff,0xde,0xff,0xdc,0xff,0xd9,
0xff,0xef,0xff,0xe8,0xff,0xd,0x0,0x7,0x0,0x2d,0x0,0x30,0x0,0x47,0x0,0x52,
0x0,0x51,0x0,0x5a,0x0,0x4a,0x0,0x4f,0x0,0x37,0x0,0x3c,0x0,0x1d,0x0,0x26,
0x0,0x0,0x0,0x9,0x0,0xe5,0xff,0xeb,0xff,0xd2,0xff,0xd7,0xff,0xc9,0xff,0xd3,
0xff,0xd0,0xff,0xde,0xff,0xe9,0xff,0xf6,0xff,0xe,0x0,0x15,0x0,0x37,0x0,0x33,
0x0,0x56,0x0,0x4e,0x0,0x61,0x0,0x5d,0x0,0x60,0x0,0x5b,0x0,0x57,0x0,0x50,
0x0,0x45,0x0,0x42,0x0,0x35,0x0,0x33,0x0,0x27,0x0,0x29,0x0,0x1a,0x0,0x21,
0x0,0x11,0x0,0x17,0x0,0xc,0x0,0x10,0x0,0x8,0x0,0x9,0x0,0x8,0x0,0x2,
0x0,0xf,0x0,0x4,0x0,0x1f,0x0,0x12,0x0,0x33,0x0,0x26,0x0,0x3d,0x0,0x35,
0x0,0x3d,0x0,0x36,0x0,0x36,0x0,0x2c,0x0,0x21,0x0,0x1c,0x0,0x8,0x0,0x8,
0x0,0xf9,0xff,0xf8,0xff,0xf7,0xff,0xf5,0xff,0xff,0xff,0xfd,0xff,0xb,0x0,0xd,
0x0,0x11,0x0,0x16,0x0,0xb,0x0,0x14,0x0,0x2,0x0,0xf,0x0,0x1,0x0,0xc,
0x0,0xa,0x0,0x12,0x0,0x1a,0x0,0x23,0x0,0x2b,0x0,0x31,0x0,0x34,0x0,0x33,
0x0,0x32,0x0,0x2f,0x0,0x2c,0x0,0x29,0x0,0x29,0x0,0x27,0x0,0x29,0x0,0x2b,
0x0,0x27,0x0,0x2a,0x0,0x1e,0x0,0x22,0x0,0xf,0x0,0x14,0x0,0x5,0x0,0x6,
0x0,0xa,0x0,0x8,0x0,0x20,0x0,0x1a,0x0,0x40,0x0,0x33,0x0,0x5e,0x0,0x4f,
0x0,0x6b,0x0,0x66,0x0,0x5c,0x0,0x61,0x0,0x35,0x0,0x41,0x0,0x8,0x0,0x19,
0x0,0xe7,0xff,0xf6,0xff,0xe1,0xff,0xe7,0xff,0xf7,0xff,0xf3,0xff,0x1a,0x0,0xe,
0x0,0x3b,0x0,0x29,0x0,0x4d,0x0,0x38,0x0,0x48,0x0,0x38,0x0,0x36,0x0,0x2c,
0x0,0x1e,0x0,0x19,0x0,0x6,0x0,0x7,0x0,0xfa,0xff,0x1,0x0,0xfe,0xff,0x4,
0x0,0x8,0x0,0xd,0x0,0x14,0x0,0x1a,0x0,0x27,0x0,0x29,0x0,0x37,0x0,0x31,
0x0,0x3a,0x0,0x2f,0x0,0x31,0x0,0x25,0x0,0x20,0x0,0x13,0x0,0xe,0x0,0x2,
0x0,0x5,0x0,0xfd,0xff,0xb,0x0,0x7,0x0,0x1a,0x0,0x1c,0x0,0x2c,0x0,0x32,
0x0,0x3d,0x0,0x42,0x0,0x44,0x0,0x46,0x0,0x3e,0x0,0x3c,0x0,0x2b,0x0,0x2b,
0x0,0xf,0x0,0x18,0x0,0xf8,0xff,0x4,0x0,0xf2,0xff,0xf8,0xff,0xfb,0xff,0xfe,
0xff,0x14,0x0,0xf,0x0,0x35,0x0,0x25,0x0,0x4b,0x0,0x3a,0x0,0x4e,0x0,0x41,
0x0,0x41,0x0,0x31,0x0,0x29,0x0,0x15,0x0,0x10,0x0,0x1,0x0,0xc,0x0,0x5,
0x0,0x19,0x0,0x1a,0x0,0x29,0x0,0x33,0x0,0x40,0x0,0x47,0x0,0x51,0x0,0x50,
0x0,0x4c,0x0,0x4a,0x0,0x35,0x0,0x37,0x0,0x16,0x0,0x1b,0x0,0xfa,0xff,0xfd,
0xff,0xee,0xff,0xea,0xff,0xf5,0xff,0xeb,0xff,0x8,0x0,0xfe,0xff,0x21,0x0,0x15,
0x0,0x37,0x0,0x27,0x0,0x47,0x0,0x32,0x0,0x51,0x0,0x3c,0x0,0x51,0x0,0x3f,
0x0,0x49,0x0,0x38,0x0,0x38,0x0,0x2c,0x0,0x1d,0x0,0x1d,0x0,0xb,0x0,0x13,
0x0,0xf,0x0,0x19,0x0,0x21,0x0,0x2d,0x0,0x32,0x0,0x40,0x0,0x3a,0x0,0x48,
0x0,0x39,0x0,0x3e,0x0,0x2e,0x0,0x23,0x0,0x1a,0x0,0xa,0x0,0x7,0x0,0xf9,
0xff,0xfc,0xff,0xf2,0xff,0x1,0x0,0xfa,0xff,0x17,0x0,0xd,0x0,0x33,0x0,0x24,
0x0,0x40,0x0,0x3b,0x0,0x40,0x0,0x46,0x0,0x37,0x0,0x43,0x0,0x2e,0x0,0x3a,
0x0,0x2c,0x0,0x32,0x0,0x28,0x0,0x2b,0x0,0x1f,0x0,0x24,0x0,0x1a,0x0,0x19,
0x0,0x1e,0x0,0x12,0x0,0x26,0x0,0x17,0x0,0x2c,0x0,0x19,0x0,0x2b,0x0,0x18,
0x0,0x24,0x0,0x17,0x0,0x1a,0x0,0xf,0x0,0x9,0x0,0xff,0xff,0xf2,0xff,0xf1,
0xff,0xde,0xff,0xe1,0xff,0xdb,0xff,0xde,0xff,0xef,0xff,0xf5,0xff,0x14,0x0,0x1c,
0x0,0x44,0x0,0x49,0x0,0x6a,0x0,0x6f,0x0,0x76,0x0,0x7a,0x0,0x6a,0x0,0x6b,
0x0,0x4d,0x0,0x4e,0x0,0x33,0x0,0x2d,0x0,0x25,0x0,0x19,0x0,0x1b,0x0,0xe,
0x0,0xd,0x0,0xf9,0xff,0x0,0x0,0xe5,0xff,0xfa,0xff,0xe7,0xff,0x4,0x0,0xf8,
0xff,0x17,0x0,0x11,0x0,0x21,0x0,0x29,0x0,0x25,0x0,0x34,0x0,0x27,0x0,0x32,
0x0,0x27,0x0,0x2f,0x0,0x2f,0x0,0x33,0x0,0x3f,0x0,0x3e,0x0,0x4d,0x0,0x49,
0x0,0x55,0x0,0x4c,0x0,0x58,0x0,0x48,0x0,0x52,0x0,0x40,0x0,0x37,0x0,0x2d,
0x0,0xb,0x0,0xb,0x0,0xe1,0xff,0xe2,0xff,0xc5,0xff,0xc2,0xff,0xc2,0xff,0xba,
0xff,0xda,0xff,0xce,0xff,0x1,0x0,0xf6,0xff,0x26,0x0,0x1c,0x0,0x39,0x0,0x2d,
0x0,0x33,0x0,0x2d,0x0,0x22,0x0,0x26,0x0,0x13,0x0,0x1e,0x0,0xd,0x0,0x1c,
0x0,0x1a,0x0,0x23,0x0,0x2e,0x0,0x2b,0x0,0x3c,0x0,0x33,0x0,0x4a,0x0,0x40,
0x0,0x53,0x0,0x48,0x0,0x4a,0x0,0x40,0x0,0x2f,0x0,0x25,0x0,0xff,0xff,0xf8,
0xff,0xd2,0xff,0xd1,0xff,0xc6,0xff,0xcb,0xff,0xd8,0xff,0xdf,0xff,0xf8,0xff,0xf8,
0xff,0x1c,0x0,0x14,0x0,0x39,0x0,0x2d,0x0,0x4c,0x0,0x3d,0x0,0x5b,0x0,0x4e,
0x0,0x5d,0x0,0x55,0x0,0x45,0x0,0x3d,0x0,0x19,0x0,0x14,0x0,0xf1,0xff,0xef,
0xff,0xde,0xff,0xd5,0xff,0xde,0xff,0xcc,0xff,0xe6,0xff,0xcf,0xff,0xe8,0xff,0xcd,
0xff,0xe9,0xff,0xd1,0xff,0xed,0xff,0xe2,0xff,0xec,0xff,0xee,0xff,0xeb,0xff,0xf2,
0xff,0xf9,0xff,0x3,0x0,0x1a,0x0,0x27,0x0,0x4d,0x0,0x59,0x0,0x80,0x0,0x87,
0x0,0x94,0x0,0x93,0x0,0x7c,0x0,0x73,0x0,0x48,0x0,0x3c,0x0,0xe,0x0,0x9,
0x0,0xde,0xff,0xe0,0xff,0xb7,0xff,0xbf,0xff,0xa0,0xff,0xa9,0xff,0xa7,0xff,0xac,
0xff,0xc3,0xff,0xc8,0xff,0xe6,0xff,0xee,0xff,0xa,0x0,0x10,0x0,0x20,0x0,0x27,
0x0,0x2c,0x0,0x32,0x0,0x39,0x0,0x3b,0x0,0x3e,0x0,0x40,0x0,0x3b,0x0,0x3b,
0x0,0x2d,0x0,0x2a,0x0,0x14,0x0,0xc,0x0,0xfe,0xff,0xef,0xff,0xfb,0xff,0xec,
0xff,0xe,0x0,0x3,0x0,0x2b,0x0,0x1c,0x0,0x34,0x0,0x24,0x0,0x26,0x0,0x1b,
0x0,0x17,0x0,0x11,0x0,0x16,0x0,0x1c,0x0,0x22,0x0,0x32,0x0,0x32,0x0,0x41,
0x0,0x3d,0x0,0x47,0x0,0x42,0x0,0x44,0x0,0x3e,0x0,0x39,0x0,0x33,0x0,0x2d,
0x0,0x21,0x0,0x1a,0x0,0x8,0x0,0x1,0x0,0xf0,0xff,0xf1,0xff,0xee,0xff,0xf4,
0xff,0xfd,0xff,0xfe,0xff,0x0,0x0,0xf9,0xff,0xec,0xff,0xda,0xff,0xcb,0xff,0xb2,
0xff,0xb0,0xff,0x9e,0xff,0xb3,0xff,0xb0,0xff,0xdc,0xff,0xe4,0xff,0xd,0x0,0x1d,
0x0,0x24,0x0,0x3d,0x0,0x27,0x0,0x3f,0x0,0x1c,0x0,0x2d,0x0,0x4,0x0,0xf,
0x0,0xec,0xff,0xef,0xff,0xdf,0xff,0xd2,0xff,0xd5,0xff,0xc1,0xff,0xd4,0xff,0xc2,
0xff,0xe3,0xff,0xda,0xff,0x4,0x0,0x6,0x0,0x29,0x0,0x33,0x0,0x3e,0x0,0x4d,
0x0,0x3d,0x0,0x52,0x0,0x37,0x0,0x43,0x0,0x33,0x0,0x30,0x0,0x2e,0x0,0x26,
0x0,0x25,0x0,0x24,0x0,0x1b,0x0,0x22,0x0,0x15,0x0,0x25,0x0,0x1a,0x0,0x30,
0x0,0x2d,0x0,0x3d,0x0,0x35,0x0,0x37,0x0,0x16,0x0,0xc,0x0,0xd7,0xff,0xc9,
0xff,0x9c,0xff,0x90,0xff,0x87,0xff,0x80,0xff,0xa7,0xff,0xa1,0xff,0xec,0xff,0xe3,
0xff,0x2f,0x0,0x2d,0x0,0x59,0x0,0x62,0x0,0x62,0x0,0x6f,0x0,0x53,0x0,0x5c,
0x0,0x3a,0x0,0x3a,0x0,0x10,0x0,0x8,0x0,0xdd,0xff,0xce,0xff,0xc3,0xff,0xb0,
0xff,0xcb,0xff,0xbc,0xff,0xe5,0xff,0xdd,0xff,0x1,0x0,0xfb,0xff,0xe,0x0,0xc,
0x0,0x3,0x0,0x3,0x0,0xe6,0xff,0xe3,0xff,0xca,0xff,0xc2,0xff,0xb7,0xff,0xaa,
0xff,0xa9,0xff,0x9e,0xff,0xb0,0xff,0xb3,0xff,0xe1,0xff,0xeb,0xff,0x23,0x0,0x2c,
0x0,0x4c,0x0,0x5a,0x0,0x50,0x0,0x5e,0x0,0x32,0x0,0x3a,0x0,0x3,0x0,0xe,
0x0,0xde,0xff,0xe3,0xff,0xc2,0xff,0xc1,0xff,0xb0,0xff,0xb3,0xff,0xbb,0xff,0xbc,
0xff,0xe3,0xff,0xe3,0xff,0x11,0x0,0x1b,0x0,0x2f,0x0,0x3a,0x0,0x2c,0x0,0x2f,
0x0,0xfd,0xff,0xfe,0xff,0xb4,0xff,0xb3,0xff,0x81,0xff,0x7c,0xff,0x7e,0xff,0x78,
0xff,0xad,0xff,0xa0,0xff,0xfe,0xff,0xf2,0xff,0x59,0x0,0x57,0x0,0xaa,0x0,0xab,
0x0,0xd9,0x0,0xd9,0x0,0xcf,0x0,0xcf,0x0,0x8c,0x0,0x82,0x0,0x24,0x0,0x10,
0x0,0xb7,0xff,0xa4,0xff,0x76,0xff,0x61,0xff,0x75,0xff,0x5d,0xff,0x9f,0xff,0x8b,
0xff,0xd2,0xff,0xc5,0xff,0xf3,0xff,0xeb,0xff,0xf5,0xff,0xf3,0xff,0xe5,0xff,0xe8,
0xff,0xd4,0xff,0xd5,0xff,0xc9,0xff,0xc7,0xff,0xc8,0xff,0xcc,0xff,0xde,0xff,0xea,
0xff,0x11,0x0,0x1e,0x0,0x49,0x0,0x50,0x0,0x6b,0x0,0x6c,0x0,0x6e,0x0,0x6b,
0x0,0x41,0x0,0x40,0x0,0xda,0xff,0xe0,0xff,0x64,0xff,0x6f,0xff,0xd,0xff,0x1b,
0xff,0xe6,0xfe,0xf6,0xfe,0xf1,0xfe,0x1,0xff,0x25,0xff,0x36,0xff,0x7a,0xff,0x8c,
0xff,0xe3,0xff,0xf2,0xff,0x44,0x0,0x4a,0x0,0x74,0x0,0x78,0x0,0x64,0x0,0x68,
0x0,0x24,0x0,0x2b,0x0,0xec,0xff,0xfa,0xff,0xe9,0xff,0xf4,0xff,0xd,0x0,0xc,
0x0,0x31,0x0,0x29,0x0,0x43,0x0,0x32,0x0,0x3c,0x0,0x23,0x0,0x29,0x0,0xc,
0x0,0x1e,0x0,0xfb,0xff,0x11,0x0,0xf0,0xff,0xf6,0xff,0xe7,0xff,0xe6,0xff,0xe5,
0xff,0xf1,0xff,0xfa,0xff,0x14,0x0,0x1f,0x0,0x40,0x0,0x40,0x0,0x5a,0x0,0x52,
0x0,0x57,0x0,0x50,0x0,0x52,0x0,0x49,0x0,0x50,0x0,0x49,0x0,0x3e,0x0,0x3b,
0x0,0x20,0x0,0x18,0x0,0xfb,0xff,0xf6,0xff,0xd6,0xff,0xdd,0xff,0xc3,0xff,0xcf,
0xff,0xc0,0xff,0xc9,0xff,0xb0,0xff,0xb2,0xff,0x8a,0xff,0x89,0xff,0x5f,0xff,0x62,
0xff,0x4c,0xff,0x54,0xff,0x5c,0xff,0x68,0xff,0x7b,0xff,0x89,0xff,0x8f,0xff,0xa1,
0xff,0x88,0xff,0xa6,0xff,0x74,0xff,0x96,0xff,0x74,0xff,0x88,0xff,0x8f,0xff,0x95,
0xff,0xb3,0xff,0xb0,0xff,0xd4,0xff,0xce,0xff,0xef,0xff,0xf1,0xff,0xc,0x0,0x11,
0x0,0x26,0x0,0x26,0x0,0x29,0x0,0x26,0x0,0xf,0x0,0xb,0x0,0xea,0xff,0xe5,
0xff,0xc6,0xff,0xc4,0xff,0xb1,0xff,0xb1,0xff,0xb3,0xff,0xaf,0xff,0xc5,0xff,0xbc,
0xff,0xe9,0xff,0xdd,0xff,0x25,0x0,0x1a,0x0,0x6a,0x0,0x5f,0x0,0x9b,0x0,0x8c,
0x0,0x98,0x0,0x85,0x0,0x5c,0x0,0x45,0x0,0x14,0x0,0xfc,0xff,0xf4,0xff,0xdb,
0xff,0xd,0x0,0xf3,0xff,0x4d,0x0,0x3a,0x0,0x8a,0x0,0x81,0x0,0x96,0x0,0x95,
0x0,0x62,0x0,0x6a,0x0,0x4,0x0,0x12,0x0,0x99,0xff,0xa5,0xff,0x3a,0xff,0x45,
0xff,0xf6,0xfe,0x3,0xff,0xd9,0xfe,0xe9,0xfe,0xfa,0xfe,0xc,0xff,0x60,0xff,0x73,
0xff,0xec,0xff,0xfe,0xff,0x60,0x0,0x6c,0x0,0x86,0x0,0x8e,0x0,0x56,0x0,0x5e,
0x0,0xfe,0xff,0x1,0x0,0xb1,0xff,0xaa,0xff,0x79,0xff,0x71,0xff,0x50,0xff,0x4c,
0xff,0x46,0xff,0x4c,0xff,0x68,0xff,0x7e,0xff,0xb0,0xff,0xcc,0xff,0xf9,0xff,0xc,
0x0,0xd,0x0,0x16,0x0,0xd9,0xff,0xd8,0xff,0x88,0xff,0x78,0xff,0x52,0xff,0x36,
0xff,0x59,0xff,0x37,0xff,0xa3,0xff,0x83,0xff,0x17,0x0,0x5,0x0,0x92,0x0,0x8c,
0x0,0xf5,0x0,0xed,0x0,0x19,0x1,0xc,0x1,0xe5,0x0,0xdd,0x0,0x6b,0x0,0x6d,
0x0,0xdc,0xff,0xe6,0xff,0x69,0xff,0x74,0xff,0x32,0xff,0x3a,0xff,0x44,0xff,0x43,
0xff,0x90,0xff,0x88,0xff,0xf4,0xff,0xea,0xff,0x4b,0x0,0x48,0x0,0x79,0x0,0x80,
0x0,0x73,0x0,0x7d,0x0,0x42,0x0,0x4b,0x0,0x1,0x0,0x8,0x0,0xcd,0xff,0xcf,
0xff,0xbf,0xff,0xbf,0xff,0xdc,0xff,0xde,0xff,0xe,0x0,0x14,0x0,0x39,0x0,0x48,
0x0,0x55,0x0,0x64,0x0,0x54,0x0,0x5c,0x0,0x2c,0x0,0x31,0x0,0xde,0xff,0xe3,
0xff,0x84,0xff,0x8a,0xff,0x48,0xff,0x55,0xff,0x42,0xff,0x4f,0xff,0x6c,0xff,0x75,
0xff,0xb0,0xff,0xb6,0xff,0xe8,0xff,0xec,0xff,0xfd,0xff,0x0,0x0,0xf4,0xff,0xfb,
0xff,0xdb,0xff,0xe5,0xff,0xc2,0xff,0xc6,0xff,0xb8,0xff,0xb6,0xff,0xc4,0xff,0xc3,
0xff,0xea,0xff,0xe8,0xff,0x1e,0x0,0x18,0x0,0x4a,0x0,0x45,0x0,0x67,0x0,0x69,
0x0,0x6c,0x0,0x75,0x0,0x40,0x0,0x4d,0x0,0xea,0xff,0xee,0xff,0x8c,0xff,0x87,
0xff,0x55,0xff,0x54,0xff,0x6a,0xff,0x69,0xff,0xb0,0xff,0xa8,0xff,0xea,0xff,0xe3,
0xff,0x8,0x0,0x9,0x0,0x24,0x0,0x2c,0x0,0x52,0x0,0x57,0x0,0x86,0x0,0x7f,
0x0,0x9e,0x0,0x8b,0x0,0x83,0x0,0x6d,0x0,0x3e,0x0,0x34,0x0,0xf1,0xff,0xfd,
0xff,0xc8,0xff,0xdd,0xff,0xc4,0xff,0xd5,0xff,0xc9,0xff,0xd5,0xff,0xc9,0xff,0xd0,
0xff,0xc3,0xff,0xc8,0xff,0xc2,0xff,0xc2,0xff,0xcf,0xff,0xc4,0xff,0xdb,0xff,0xcb,
0xff,0xdc,0xff,0xd0,0xff,0xdc,0xff,0xd3,0xff,0xe6,0xff,0xdf,0xff,0x8,0x0,0x0,
0x0,0x36,0x0,0x2d,0x0,0x55,0x0,0x50,0x0,0x61,0x0,0x61,0x0,0x62,0x0,0x60,
0x0,0x59,0x0,0x50,0x0,0x4b,0x0,0x3f,0x0,0x2e,0x0,0x2f,0x0,0xf2,0xff,0x1,
0x0,0xa8,0xff,0xb9,0xff,0x76,0xff,0x85,0xff,0x6a,0xff,0x75,0xff,0x7a,0xff,0x7b,
0xff,0x91,0xff,0x94,0xff,0xa9,0xff,0xb4,0xff,0xc8,0xff,0xce,0xff,0xe9,0xff,0xe8,
0xff,0xfd,0xff,0xfb,0xff,0xf7,0xff,0xf8,0xff,0xe1,0xff,0xe8,0xff,0xdd,0xff,0xe2,
0xff,0xf6,0xff,0xf0,0xff,0x15,0x0,0x8,0x0,0x24,0x0,0x16,0x0,0x26,0x0,0x1e,
0x0,0x25,0x0,0x22,0x0,0x23,0x0,0x1a,0x0,0xa,0x0,0xff,0xff,0xd9,0xff,0xd7,
0xff,0xb3,0xff,0xb5,0xff,0xb4,0xff,0xb1,0xff,0xdd,0xff,0xcf,0xff,0xd,0x0,0xf8,
0xff,0x2c,0x0,0x1d,0x0,0x4a,0x0,0x4d,0x0,0x82,0x0,0x8c,0x0,0xbe,0x0,0xc1,
0x0,0xce,0x0,0xc9,0x0,0x9e,0x0,0x9c,0x0,0x52,0x0,0x55,0x0,0x18,0x0,0x1a,
0x0,0xf6,0xff,0xf3,0xff,0xe3,0xff,0xe0,0xff,0xd5,0xff,0xd8,0xff,0xb6,0xff,0xc3,
0xff,0x85,0xff,0x99,0xff,0x61,0xff,0x6e,0xff,0x51,0xff,0x58,0xff,0x4e,0xff,0x5b,
0xff,0x59,0xff,0x69,0xff,0x6c,0xff,0x71,0xff,0x85,0xff,0x79,0xff,0xb0,0xff,0x95,
0xff,0xe6,0xff,0xca,0xff,0x1f,0x0,0xb,0x0,0x42,0x0,0x36,0x0,0x35,0x0,0x33,
0x0,0xfc,0xff,0x9,0x0,0xbb,0xff,0xcf,0xff,0x97,0xff,0xa3,0xff,0xa0,0xff,0x9f,
0xff,0xc6,0xff,0xb8,0xff,0xee,0xff,0xd7,0xff,0xf,0x0,0xf8,0xff,0x24,0x0,0x10,
0x0,0x38,0x0,0x26,0x0,0x59,0x0,0x4f,0x0,0x77,0x0,0x79,0x0,0x7e,0x0,0x7f,
0x0,0x6f,0x0,0x68,0x0,0x5f,0x0,0x57,0x0,0x63,0x0,0x5f,0x0,0x6e,0x0,0x71,
0x0,0x6d,0x0,0x76,0x0,0x58,0x0,0x5f,0x0,0x29,0x0,0x2f,0x0,0xfa,0xff,0x7,
0x0,0xe6,0xff,0xfa,0xff,0xda,0xff,0xe6,0xff,0xbb,0xff,0xb7,0xff,0x96,0xff,0x88,
0xff,0x81,0xff,0x76,0xff,0x92,0xff,0x8a,0xff,0xb8,0xff,0xae,0xff,0xc9,0xff,0xcb,
0xff,0xc2,0xff,0xd9,0xff,0xbf,0xff,0xd9,0xff,0xcd,0xff,0xd7,0xff,0xed,0xff,0xe3,
0xff,0xc,0x0,0xfa,0xff,0x1d,0x0,0x12,0x0,0xf,0x0,0x10,0x0,0xda,0xff,0xdd,
0xff,0x9b,0xff,0x91,0xff,0x6e,0xff,0x5b,0xff,0x5d,0xff,0x50,0xff,0x75,0xff,0x7a,
0xff,0xa3,0xff,0xb5,0xff,0xc3,0xff,0xd4,0xff,0xe0,0xff,0xe2,0xff,0x6,0x0,0xfa,
0xff,0x32,0x0,0x26,0x0,0x69,0x0,0x65,0x0,0x87,0x0,0x8d,0x0,0x78,0x0,0x83,
0x0,0x62,0x0,0x68,0x0,0x55,0x0,0x55,0x0,0x4f,0x0,0x48,0x0,0x50,0x0,0x46,
0x0,0x41,0x0,0x3d,0x0,0x19,0x0,0x1d,0x0,0xf3,0xff,0xfa,0xff,0xd8,0xff,0xe3,
0xff,0xcc,0xff,0xd5,0xff,0xc2,0xff,0xcb,0xff,0xc2,0xff,0xce,0xff,0xeb,0xff,0xf2,
0xff,0x38,0x0,0x39,0x0,0x7f,0x0,0x7b,0x0,0x9a,0x0,0x85,0x0,0x6f,0x0,0x51,
0x0,0x13,0x0,0x1,0x0,0xcc,0xff,0xca,0xff,0xb1,0xff,0xc0,0xff,0xa8,0xff,0xc1,
0xff,0x8f,0xff,0xa6,0xff,0x66,0xff,0x73,0xff,0x4d,0xff,0x50,0xff,0x62,0xff,0x5b,
0xff,0x8e,0xff,0x84,0xff,0xa8,0xff,0x98,0xff,0xa0,0xff,0x8b,0xff,0x8a,0xff,0x82,
0xff,0x7f,0xff,0x87,0xff,0x8e,0xff,0x94,0xff,0xc2,0xff,0xbe,0xff,0x3,0x0,0xfd,
0xff,0x29,0x0,0x30,0x0,0x3c,0x0,0x50,0x0,0x4a,0x0,0x59,0x0,0x3f,0x0,0x49,
0x0,0x1f,0x0,0x2b,0x0,0x9,0x0,0xd,0x0,0x7,0x0,0x1,0x0,0x11,0x0,0xa,
0x0,0x26,0x0,0x19,0x0,0x3c,0x0,0x27,0x0,0x3b,0x0,0x32,0x0,0x21,0x0,0x2c,
0x0,0xe,0x0,0x1d,0x0,0x4,0x0,0x10,0x0,0xfa,0xff,0x4,0x0,0xfe,0xff,0xff,
0xff,0x16,0x0,0xe,0x0,0x37,0x0,0x30,0x0,0x60,0x0,0x57,0x0,0x75,0x0,0x67,
0x0,0x53,0x0,0x48,0x0,0x4,0x0,0x0,0x0,0xb6,0xff,0xad,0xff,0x8f,0xff,0x82,
0xff,0x8d,0xff,0x8d,0xff,0x8f,0xff,0x9d,0xff,0x8c,0xff,0x9d,0xff,0xa0,0xff,0xae,
0xff,0xd1,0xff,0xd9,0xff,0x2,0x0,0x2,0x0,0xe,0x0,0x7,0x0,0xea,0xff,0xde,
0xff,0xaf,0xff,0xa3,0xff,0x81,0xff,0x77,0xff,0x76,0xff,0x68,0xff,0x8e,0xff,0x72,
0xff,0xb5,0xff,0x96,0xff,0xe0,0xff,0xcf,0xff,0x11,0x0,0xa,0x0,0x38,0x0,0x34,
0x0,0x44,0x0,0x48,0x0,0x36,0x0,0x3f,0x0,0x15,0x0,0x1f,0x0,0xe9,0xff,0xfa,
0xff,0xc8,0xff,0xda,0xff,0xbf,0xff,0xcb,0xff,0xca,0xff,0xda,0xff,0xde,0xff,0xef,
0xff,0xe6,0xff,0xeb,0xff,0xd8,0xff,0xd7,0xff,0xd5,0xff,0xd8,0xff,0x3,0x0,0x8,
0x0,0x4f,0x0,0x4f,0x0,0x85,0x0,0x78,0x0,0x89,0x0,0x76,0x0,0x7b,0x0,0x6f,
0x0,0x86,0x0,0x87,0x0,0x9b,0x0,0xae,0x0,0x92,0x0,0xa9,0x0,0x4e,0x0,0x56,
0x0,0xd2,0xff,0xd4,0xff,0x63,0xff,0x65,0xff,0x48,0xff,0x41,0xff,0x6d,0xff,0x68,
0xff,0xac,0xff,0xa6,0xff,0xe9,0xff,0xd3,0xff,0xff,0xff,0xe4,0xff,0xf8,0xff,0xe0,
0xff,0xfa,0xff,0xdf,0xff,0x2,0x0,0xec,0xff,0x5,0x0,0xf4,0xff,0xfe,0xff,0xf2,
0xff,0xe3,0xff,0xe8,0xff,0xc4,0xff,0xd8,0xff,0xb9,0xff,0xd0,0xff,0xc0,0xff,0xdd,
0xff,0xd6,0xff,0xf4,0xff,0xe5,0xff,0xfd,0xff,0xca,0xff,0xe2,0xff,0x96,0xff,0xaa,
0xff,0x66,0xff,0x73,0xff,0x4b,0xff,0x55,0xff,0x5f,0xff,0x66,0xff,0xa4,0xff,0xa8,
0xff,0xf3,0xff,0xfb,0xff,0x2d,0x0,0x31,0x0,0x40,0x0,0x3c,0x0,0x34,0x0,0x34,
0x0,0x2c,0x0,0x37,0x0,0x3d,0x0,0x4c,0x0,0x5d,0x0,0x65,0x0,0x77,0x0,0x76,
0x0,0x74,0x0,0x72,0x0,0x5a,0x0,0x5b,0x0,0x49,0x0,0x49,0x0,0x52,0x0,0x51,
0x0,0x65,0x0,0x5e,0x0,0x60,0x0,0x4a,0x0,0x2d,0x0,0xd,0x0,0xe7,0xff,0xcf,
0xff,0xc6,0xff,0xbe,0xff,0xec,0xff,0xf4,0xff,0x4a,0x0,0x57,0x0,0x96,0x0,0x9f,
0x0,0x9c,0x0,0xa4,0x0,0x77,0x0,0x7d,0x0,0x4b,0x0,0x4b,0x0,0x11,0x0,0xe,
0x0,0xc3,0xff,0xb9,0xff,0x67,0xff,0x55,0xff,0x17,0xff,0xd,0xff,0xf8,0xfe,0xfc,
0xfe,0x5,0xff,0x12,0xff,0x15,0xff,0x2b,0xff,0x17,0xff,0x30,0xff,0x29,0xff,0x38,
0xff,0x62,0xff,0x6b,0xff,0xa6,0xff,0xac,0xff,0xc0,0xff,0xc0,0xff,0xa5,0xff,0xa3,
0xff,0x80,0xff,0x81,0xff,0x87,0xff,0x8b,0xff,0xd0,0xff,0xcf,0xff,0x1d,0x0,0x17,
0x0,0x26,0x0,0x28,0x0,0xf7,0xff,0x2,0x0,0xcc,0xff,0xd1,0xff,0xc5,0xff,0xc0,
0xff,0xdc,0xff,0xcf,0xff,0xf9,0xff,0xeb,0xff,0x1f,0x0,0x19,0x0,0x69,0x0,0x6b,
0x0,0xc1,0x0,0xc8,0x0,0x0,0x1,0x8,0x1,0x26,0x1,0x1e,0x1,0x3a,0x1,0x24,
0x1,0x39,0x1,0x2c,0x1,0x19,0x1,0x18,0x1,0xcd,0x0,0xcc,0x0,0x62,0x0,0x5f,
0x0,0x5,0x0,0xfd,0xff,0xd6,0xff,0xcb,0xff,0xc7,0xff,0xc2,0xff,0xb4,0xff,0xb8,
0xff,0x93,0xff,0x9c,0xff,0x74,0xff,0x83,0xff,0x68,0xff,0x78,0xff,0x6a,0xff,0x7e,
0xff,0x6f,0xff,0x8b,0xff,0x76,0xff,0x8f,0xff,0x82,0xff,0x8c,0xff,0x8f,0xff,0x8b,
0xff,0x96,0xff,0x8a,0xff,0x94,0xff,0x87,0xff,0x8e,0xff,0x7e,0xff,0x84,0xff,0x73,
0xff,0x75,0xff,0x71,0xff,0x6b,0xff,0x77,0xff,0x71,0xff,0x7d,0xff,0x7c,0xff,0x85,
0xff,0x8d,0xff,0x98,0xff,0xad,0xff,0xb8,0xff,0xce,0xff,0xd2,0xff,0xdf,0xff,0xd8,
0xff,0xe5,0xff,0xd1,0xff,0xee,0xff,0xda,0xff,0x10,0x0,0x9,0x0,0x4b,0x0,0x54,
0x0,0x85,0x0,0x98,0x0,0xb8,0x0,0xc3,0x0,0xd8,0x0,0xd4,0x0,0xd6,0x0,0xcf,
0x0,0xc4,0x0,0xc0,0x0,0xad,0x0,0xa5,0x0,0x75,0x0,0x62,0x0,0x18,0x0,0x0,
0x0,0xb8,0xff,0xb0,0xff,0x7a,0xff,0x8a,0xff,0x66,0xff,0x83,0xff,0x6b,0xff,0x88,
0xff,0x7d,0xff,0x98,0xff,0x9a,0xff,0xba,0xff,0xc4,0xff,0xe2,0xff,0xfa,0xff,0x7,
0x0,0x24,0x0,0x1f,0x0,0x29,0x0,0x1e,0x0,0x1b,0x0,0x10,0x0,0x1b,0x0,0x12,
0x0,0x26,0x0,0x1f,0x0,0x1f,0x0,0x15,0x0,0xf8,0xff,0xea,0xff,0xcc,0xff,0xbd,
0xff,0xc6,0xff,0xb8,0xff,0xdf,0xff,0xd5,0xff,0xf0,0xff,0xed,0xff,0xea,0xff,0xf0,
0xff,0xde,0xff,0xe8,0xff,0xe6,0xff,0xee,0xff,0x7,0x0,0x8,0x0,0x11,0x0,0x11,
0x0,0xe6,0xff,0xec,0xff,0xb6,0xff,0xbd,0xff,0xb9,0xff,0xb6,0xff,0xec,0xff,0xdf,
0xff,0x25,0x0,0x1d,0x0,0x4c,0x0,0x4a,0x0,0x5e,0x0,0x5c,0x0,0x53,0x0,0x5a,
0x0,0x2e,0x0,0x42,0x0,0xf8,0xff,0xd,0x0,0xb9,0xff,0xc5,0xff,0x85,0xff,0x83,
0xff,0x62,0xff,0x55,0xff,0x48,0xff,0x3d,0xff,0x36,0xff,0x3b,0xff,0x40,0xff,0x52,
0xff,0x74,0xff,0x84,0xff,0xcd,0xff,0xc7,0xff,0x27,0x0,0x13,0x0,0x62,0x0,0x53,
0x0,0x73,0x0,0x64,0x0,0x58,0x0,0x45,0x0,0x2c,0x0,0x1f,0x0,0x1e,0x0,0x16,
0x0,0x34,0x0,0x31,0x0,0x45,0x0,0x4a,0x0,0x22,0x0,0x28,0x0,0xdc,0xff,0xdf,
0xff,0xbd,0xff,0xc1,0xff,0xe7,0xff,0xe6,0xff,0x30,0x0,0x2b,0x0,0x5e,0x0,0x5b,
0x0,0x57,0x0,0x50,0x0,0x3b,0x0,0x2f,0x0,0x47,0x0,0x3e,0x0,0x6d,0x0,0x6f,
0x0,0x6f,0x0,0x7b,0x0,0x36,0x0,0x42,0x0,0xea,0xff,0xf0,0xff,0xcf,0xff,0xce,
0xff,0xe3,0xff,0xe1,0xff,0xe9,0xff,0xeb,0xff,0xd2,0xff,0xd3,0xff,0xb7,0xff,0xb4,
0xff,0xb0,0xff,0xaf,0xff,0xc7,0xff,0xc9,0xff,0xcd,0xff,0xcf,0xff,0x9d,0xff,0xa3,
0xff,0x65,0xff,0x6e,0xff,0x4e,0xff,0x55,0xff,0x61,0xff,0x6a,0xff,0x9b,0xff,0xa6,
0xff,0xbe,0xff,0xc4,0xff,0xaa,0xff,0xa6,0xff,0x9c,0xff,0x9b,0xff,0xba,0xff,0xc7,
0xff,0xe9,0xff,0xf5,0xff,0x12,0x0,0xc,0x0,0x2a,0x0,0x1d,0x0,0x43,0x0,0x36,
0x0,0x71,0x0,0x69,0x0,0xac,0x0,0xad,0x0,0xd0,0x0,0xce,0x0,0xb0,0x0,0xa3,
0x0,0x55,0x0,0x40,0x0,0x7,0x0,0xeb,0xff,0xef,0xff,0xd6,0xff,0xf8,0xff,0xe8,
0xff,0xfe,0xff,0xf2,0xff,0x8,0x0,0xff,0xff,0x37,0x0,0x39,0x0,0x84,0x0,0x8b,
0x0,0xbe,0x0,0xbd,0x0,0xc8,0x0,0xb6,0x0,0x99,0x0,0x83,0x0,0x47,0x0,0x3f,
0x0,0xff,0xff,0xfb,0xff,0xbb,0xff,0xb1,0xff,0x6a,0xff,0x61,0xff,0x1f,0xff,0x1e,
0xff,0xff,0xfe,0xb,0xff,0x21,0xff,0x3d,0xff,0x6d,0xff,0x8f,0xff,0xa7,0xff,0xc7,
0xff,0xb2,0xff,0xca,0xff,0x9e,0xff,0xa7,0xff,0x86,0xff,0x89,0xff,0x8f,0xff,0x9d,
0xff,0xbb,0xff,0xd2,0xff,0xf1,0xff,0x0,0x0,0x15,0x0,0x1b,0x0,0x5,0x0,0xa,
0x0,0xd0,0xff,0xcf,0xff,0xbe,0xff,0xb3,0xff,0xeb,0xff,0xe3,0xff,0x2c,0x0,0x2e,
0x0,0x4e,0x0,0x51,0x0,0x4e,0x0,0x51,0x0,0x69,0x0,0x6b,0x0,0xb1,0x0,0xb2,
0x0,0xe9,0x0,0xe7,0x0,0xdb,0x0,0xd7,0x0,0x96,0x0,0x99,0x0,0x5a,0x0,0x5c,
0x0,0x4a,0x0,0x3f,0x0,0x4b,0x0,0x3d,0x0,0x3d,0x0,0x3d,0x0,0x32,0x0,0x39,
0x0,0x4f,0x0,0x50,0x0,0x90,0x0,0x8a,0x0,0xca,0x0,0xc1,0x0,0xce,0x0,0xc0,
0x0,0x92,0x0,0x7c,0x0,0x2c,0x0,0x18,0x0,0xc9,0xff,0xbc,0xff,0x89,0xff,0x7a,
0xff,0x6f,0xff,0x5d,0xff,0x87,0xff,0x70,0xff,0xb4,0xff,0x9d,0xff,0xc1,0xff,0xba,
0xff,0xae,0xff,0xb8,0xff,0x8d,0xff,0xa1,0xff,0x73,0xff,0x89,0xff,0x7d,0xff,0x89,
0xff,0x8f,0xff,0x93,0xff,0x7e,0xff,0x8a,0xff,0x67,0xff,0x79,0xff,0x5e,0xff,0x74,
0xff,0x60,0xff,0x73,0xff,0x84,0xff,0x86,0xff,0xb7,0xff,0xb5,0xff,0xcf,0xff,0xd9,
0xff,0xcb,0xff,0xde,0xff,0xba,0xff,0xcc,0xff,0xa5,0xff,0xaf,0xff,0xa8,0xff,0xa4,
0xff,0xd6,0xff,0xd1,0xff,0x27,0x0,0x2c,0x0,0x7b,0x0,0x88,0x0,0xa9,0x0,0xbe,
0x0,0xac,0x0,0xc4,0x0,0xa5,0x0,0xb8,0x0,0xa8,0x0,0xb8,0x0,0xad,0x0,0xbc,
0x0,0xb2,0x0,0xb4,0x0,0xbe,0x0,0xb1,0x0,0xcf,0x0,0xc4,0x0,0xe5,0x0,0xe4,
0x0,0x2,0x1,0xf8,0x0,0x3,0x1,0xeb,0x0,0xd5,0x0,0xbf,0x0,0x91,0x0,0x85,
0x0,0x56,0x0,0x49,0x0,0x36,0x0,0x22,0x0,0x33,0x0,0x1d,0x0,0x32,0x0,0x1e,
0x0,0x22,0x0,0x13,0x0,0xb,0x0,0x8,0x0,0xf7,0xff,0x0,0x0,0xf0,0xff,0xf9,
0xff,0xe6,0xff,0xeb,0xff,0xbd,0xff,0xc3,0xff,0x78,0xff,0x81,0xff,0x39,0xff,0x3d,
0xff,0x11,0xff,0xf,0xff,0x8,0xff,0xf,0xff,0x1a,0xff,0x34,0xff,0x36,0xff,0x53,
0xff,0x4e,0xff,0x61,0xff,0x5e,0xff,0x6f,0xff,0x60,0xff,0x6c,0xff,0x5d,0xff,0x5b,
0xff,0x69,0xff,0x63,0xff,0x94,0xff,0x8c,0xff,0xca,0xff,0xc6,0xff,0xe7,0xff,0xee,
0xff,0xd0,0xff,0xe0,0xff,0xa3,0xff,0xb8,0xff,0x90,0xff,0x9d,0xff,0x9d,0xff,0x94,
0xff,0xc4,0xff,0xaf,0xff,0x12,0x0,0xfc,0xff,0x7b,0x0,0x63,0x0,0xf4,0x0,0xdc,
0x0,0x68,0x1,0x58,0x1,0xa9,0x1,0x9e,0x1,0xb1,0x1,0xae,0x1,0x9e,0x1,0x9a,
0x1,0x5c,0x1,0x59,0x1,0xec,0x0,0xf8,0x0,0x7e,0x0,0x96,0x0,0x37,0x0,0x48,
0x0,0x2b,0x0,0x29,0x0,0x40,0x0,0x2d,0x0,0x39,0x0,0x26,0x0,0x10,0x0,0xf,
0x0,0xf9,0xff,0x4,0x0,0x10,0x0,0x19,0x0,0x41,0x0,0x44,0x0,0x51,0x0,0x51,
0x0,0x1d,0x0,0x20,0x0,0xd6,0xff,0xe1,0xff,0xb1,0xff,0xc5,0xff,0xaa,0xff,0xc3,
0xff,0xa7,0xff,0xbf,0xff,0x99,0xff,0xa6,0xff,0x70,0xff,0x73,0xff,0x2e,0xff,0x31,
0xff,0xec,0xfe,0xfb,0xfe,0xca,0xfe,0xe3,0xfe,0xdd,0xfe,0xf3,0xfe,0x2f,0xff,0x38,
0xff,0xa0,0xff,0xa2,0xff,0xf0,0xff,0xf9,0xff,0xd,0x0,0x29,0x0,0x16,0x0,0x3d,
0x0,0x21,0x0,0x3d,0x0,0x31,0x0,0x37,0x0,0x36,0x0,0x36,0x0,0x21,0x0,0x26,
0x0,0x1,0x0,0x5,0x0,0x0,0x0,0xf1,0xff,0x27,0x0,0xfd,0xff,0x50,0x0,0x1a,
0x0,0x5f,0x0,0x33,0x0,0x5a,0x0,0x3f,0x0,0x4c,0x0,0x36,0x0,0x37,0x0,0x1d,
0x0,0x28,0x0,0x9,0x0,0x29,0x0,0x7,0x0,0x3e,0x0,0x22,0x0,0x72,0x0,0x5e,
0x0,0xc4,0x0,0xaf,0x0,0x22,0x1,0x3,0x1,0x61,0x1,0x42,0x1,0x51,0x1,0x3c,
0x1,0xf7,0x0,0xf0,0x0,0x8b,0x0,0x8e,0x0,0x32,0x0,0x3c,0x0,0xfa,0xff,0xb,
0x0,0xe5,0xff,0xfc,0xff,0xd1,0xff,0xf0,0xff,0xad,0xff,0xd3,0xff,0xa4,0xff,0xbe,
0xff,0xc0,0xff,0xc8,0xff,0xc9,0xff,0xdc,0xff,0xc2,0xff,0xea,0xff,0xd1,0xff,0xfc,
0xff,0xd9,0xff,0xff,0xff,0xc6,0xff,0xe1,0xff,0xa6,0xff,0xb5,0xff,0x75,0xff,0x83,
0xff,0x44,0xff,0x49,0xff,0x22,0xff,0x14,0xff,0xf8,0xfe,0xe3,0xfe,0xcd,0xfe,0xc4,
0xfe,0xd2,0xfe,0xd8,0xfe,0x16,0xff,0x19,0xff,0x7d,0xff,0x6e,0xff,0xdd,0xff,0xce,
0xff,0x1c,0x0,0x1d,0x0,0x4e,0x0,0x50,0x0,0x86,0x0,0x76,0x0,0xb8,0x0,0x92,
0x0,0xcc,0x0,0xa9,0x0,0xb3,0x0,0xae,0x0,0x82,0x0,0x8d,0x0,0x65,0x0,0x65,
0x0,0x64,0x0,0x5d,0x0,0x6d,0x0,0x75,0x0,0x82,0x0,0x99,0x0,0x99,0x0,0x9f,
0x0,0x8d,0x0,0x75,0x0,0x5c,0x0,0x44,0x0,0x44,0x0,0x39,0x0,0x5d,0x0,0x55,
0x0,0x86,0x0,0x80,0x0,0x99,0x0,0x8e,0x0,0x79,0x0,0x65,0x0,0x2d,0x0,0x26,
0x0,0xf4,0xff,0x1,0x0,0xed,0xff,0xf8,0xff,0xea,0xff,0xee,0xff,0xc9,0xff,0xd2,
0xff,0x9b,0xff,0xb0,0xff,0x85,0xff,0x9e,0xff,0xa5,0xff,0xb2,0xff,0xe3,0xff,0xe5,
0xff,0x13,0x0,0xe,0x0,0x2c,0x0,0x25,0x0,0x3c,0x0,0x3c,0x0,0x37,0x0,0x3c,
0x0,0x11,0x0,0x1b,0x0,0xe5,0xff,0xf3,0xff,0xd4,0xff,0xd0,0xff,0xd3,0xff,0xbb,
0xff,0xce,0xff,0xc0,0xff,0xc5,0xff,0xcc,0xff,0xba,0xff,0xce,0xff,0xb4,0xff,0xcb,
0xff,0xbd,0xff,0xcb,0xff,0xc7,0xff,0xcf,0xff,0xb8,0xff,0xcd,0xff,0x94,0xff,0xb5,
0xff,0x7d,0xff,0x93,0xff,0x8e,0xff,0x95,0xff,0xb9,0xff,0xb4,0xff,0xe1,0xff,0xc3,
0xff,0xe7,0xff,0xbc,0xff,0xc6,0xff,0xaf,0xff,0xa1,0xff,0x98,0xff,0x99,0xff,0x8f,
0xff,0xa6,0xff,0xa3,0xff,0xbd,0xff,0xb4,0xff,0xd5,0xff,0xc2,0xff,0xeb,0xff,0xe9,
0xff,0x19,0x0,0x24,0x0,0x5c,0x0,0x61,0x0,0x8e,0x0,0x96,0x0,0x9d,0x0,0xa9,
0x0,0x97,0x0,0x9e,0x0,0xa3,0x0,0x9c,0x0,0xd7,0x0,0xb1,0x0,0x6,0x1,0xcb,
0x0,0x0,0x1,0xc9,0x0,0xd2,0x0,0xa6,0x0,0xb0,0x0,0x8e,0x0,0xba,0x0,0xa6,
0x0,0xc9,0x0,0xc4,0x0,0xa2,0x0,0xb0,0x0,0x56,0x0,0x69,0x0,0x1e,0x0,0x28,
0x0,0x23,0x0,0x29,0x0,0x5f,0x0,0x72,0x0,0x87,0x0,0xb2,0x0,0x68,0x0,0xa3,
0x0,0x25,0x0,0x4c,0x0,0xdd,0xff,0xe5,0xff,0x91,0xff,0x8e,0xff,0x3f,0xff,0x3c,
0xff,0xe0,0xfe,0xd7,0xfe,0x83,0xfe,0x77,0xfe,0x48,0xfe,0x43,0xfe,0x38,0xfe,0x3f,
0xfe,0x46,0xfe,0x5d,0xfe,0x64,0xfe,0x89,0xfe,0x98,0xfe,0xc3,0xfe,0xe2,0xfe,0xd,
0xff,0x22,0xff,0x49,0xff,0x51,0xff,0x69,0xff,0x84,0xff,0x86,0xff,0xab,0xff,0xa1,
0xff,0xbb,0xff,0xb3,0xff,0xcb,0xff,0xc0,0xff,0xdf,0xff,0xc4,0xff,0xf0,0xff,0xc8,
0xff,0x4,0x0,0xe3,0xff,0x1a,0x0,0xa,0x0,0x2f,0x0,0x2f,0x0,0x55,0x0,0x61,
0x0,0xa1,0x0,0x9e,0x0,0xd,0x1,0xeb,0x0,0x72,0x1,0x45,0x1,0xb6,0x1,0x8a,
0x1,0xc9,0x1,0xa1,0x1,0xa3,0x1,0x8b,0x1,0x61,0x1,0x5c,0x1,0x21,0x1,0x27,
0x1,0xdb,0x0,0xe5,0x0,0x8c,0x0,0x8f,0x0,0x39,0x0,0x3a,0x0,0xed,0xff,0xff,
0xff,0xcd,0xff,0xf1,0xff,0xf2,0xff,0x14,0x0,0x48,0x0,0x50,0x0,0x8e,0x0,0x89,
0x0,0x8e,0x0,0x95,0x0,0x4d,0x0,0x5a,0x0,0xf0,0xff,0xef,0xff,0x8b,0xff,0x7c,
0xff,0x37,0xff,0x22,0xff,0xfb,0xfe,0xec,0xfe,0xbd,0xfe,0xbf,0xfe,0x90,0xfe,0xa0,
0xfe,0x9f,0xfe,0xb5,0xfe,0xe5,0xfe,0x0,0xff,0x4b,0xff,0x6a,0xff,0xad,0xff,0xd0,
0xff,0xdf,0xff,0xfe,0xff,0xdd,0xff,0xf5,0xff,0xc0,0xff,0xd8,0xff,0x93,0xff,0xad,
0xff,0x69,0xff,0x82,0xff,0x3f,0xff,0x50,0xff,0xc,0xff,0x11,0xff,0xed,0xfe,0xe1,
0xfe,0xeb,0xfe,0xcf,0xfe,0xfa,0xfe,0xdd,0xfe,0x33,0xff,0x1c,0xff,0x88,0xff,0x76,
0xff,0xc4,0xff,0xc0,0xff,0xdc,0xff,0xe8,0xff,0xe3,0xff,0xef,0xff,0xf6,0xff,0xfe,
0xff,0x32,0x0,0x3a,0x0,0x73,0x0,0x7a,0x0,0x99,0x0,0x9c,0x0,0xbf,0x0,0xb2,
0x0,0xe9,0x0,0xc7,0x0,0x5,0x1,0xdd,0x0,0x11,0x1,0xeb,0x0,0x3,0x1,0xdf,
0x0,0xec,0x0,0xcb,0x0,0xf3,0x0,0xd2,0x0,0xa,0x1,0xf0,0x0,0x1a,0x1,0xe,
0x1,0x28,0x1,0x28,0x1,0x30,0x1,0x41,0x1,0x44,0x1,0x66,0x1,0x70,0x1,0x98,
0x1,0x90,0x1,0xb6,0x1,0x7f,0x1,0x97,0x1,0x3d,0x1,0x3b,0x1,0xdb,0x0,0xc7,
0x0,0x7b,0x0,0x67,0x0,0x2f,0x0,0x28,0x0,0xe2,0xff,0xed,0xff,0x8b,0xff,0x99,
0xff,0x38,0xff,0x40,0xff,0xe3,0xfe,0xf7,0xfe,0x87,0xfe,0xb4,0xfe,0x3c,0xfe,0x70,
0xfe,0x16,0xfe,0x3a,0xfe,0x3,0xfe,0x13,0xfe,0xf7,0xfd,0x4,0xfe,0xfb,0xfd,0x17,
0xfe,0xe,0xfe,0x2c,0xfe,0x29,0xfe,0x30,0xfe,0x4f,0xfe,0x47,0xfe,0x7c,0xfe,0x78,
0xfe,0x92,0xfe,0x8c,0xfe,0x79,0xfe,0x70,0xfe,0x4c,0xfe,0x42,0xfe,0x4a,0xfe,0x2f,
0xfe,0x94,0xfe,0x76,0xfe,0x12,0xff,0x11,0xff,0x9a,0xff,0xb3,0xff,0x1f,0x0,0x36,
0x0,0xac,0x0,0xb2,0x0,0x4a,0x1,0x36,0x1,0xe4,0x1,0xc2,0x1,0x47,0x2,0x25,
0x2,0x50,0x2,0x33,0x2,0x2d,0x2,0x14,0x2,0x29,0x2,0x9,0x2,0x59,0x2,0x2d,
0x2,0xa2,0x2,0x7c,0x2,0xde,0x2,0xc4,0x2,0xf7,0x2,0xdf,0x2,0xff,0x2,0xe9,
0x2,0xfb,0x2,0xeb,0x2,0xce,0x2,0xc0,0x2,0x78,0x2,0x67,0x2,0x6,0x2,0xf8,
0x1,0x7d,0x1,0x7e,0x1,0xf8,0x0,0xf,0x1,0x92,0x0,0xab,0x0,0x28,0x0,0x34,
0x0,0x88,0xff,0x94,0xff,0xb1,0xfe,0xc5,0xfe,0xcb,0xfd,0xe0,0xfd,0x11,0xfd,0x25,
0xfd,0xa4,0xfc,0xbb,0xfc,0x70,0xfc,0x87,0xfc,0x5c,0xfc,0x6c,0xfc,0x5f,0xfc,0x6c,
0xfc,0x73,0xfc,0x8c,0xfc,0x8d,0xfc,0xb5,0xfc,0xb4,0xfc,0xdb,0xfc,0xe2,0xfc,0xf8,
0xfc,0xfe,0xfc,0x0,0xfd,0x2,0xfd,0xff,0xfc,0xb,0xfd,0x18,0xfd,0x49,0xfd,0x62,
0xfd,0xd4,0xfd,0xe9,0xfd,0xa2,0xfe,0xab,0xfe,0x9f,0xff,0x9a,0xff,0x9d,0x0,0x94,
0x0,0x5f,0x1,0x60,0x1,0xe4,0x1,0xe1,0x1,0x5e,0x2,0x45,0x2,0xe5,0x2,0xc3,
0x2,0x7c,0x3,0x57,0x3,0xf,0x4,0xe9,0x3,0x80,0x4,0x6d,0x4,0xc6,0x4,0xc4,
0x4,0xe1,0x4,0xdb,0x4,0xc6,0x4,0xc2,0x4,0x76,0x4,0x7b,0x4,0x1,0x4,0xfe,
0x3,0x7d,0x3,0x68,0x3,0xf9,0x2,0xd4,0x2,0x6e,0x2,0x46,0x2,0xe6,0x1,0xd9,
0x1,0x82,0x1,0x9b,0x1,0x37,0x1,0x5b,0x1,0xc6,0x0,0xe3,0x0,0x5,0x0,0x1f,
0x0,0xf6,0xfe,0xe,0xff,0xcc,0xfd,0xe0,0xfd,0xc9,0xfc,0xd9,0xfc,0x2,0xfc,0x7,
0xfc,0x68,0xfb,0x6b,0xfb,0x1a,0xfb,0x26,0xfb,0x38,0xfb,0x3f,0xfb,0x7e,0xfb,0x81,
0xfb,0x94,0xfb,0xa1,0xfb,0x75,0xfb,0x7c,0xfb,0x48,0xfb,0x3a,0xfb,0x32,0xfb,0x1d,
0xfb,0x5b,0xfb,0x45,0xfb,0xc5,0xfb,0xbe,0xfb,0x74,0xfc,0x85,0xfc,0x74,0xfd,0x89,
0xfd,0xa4,0xfe,0xae,0xfe,0xd0,0xff,0xd1,0xff,0xca,0x0,0xca,0x0,0x72,0x1,0x76,
0x1,0xcf,0x1,0xd4,0x1,0x14,0x2,0xa,0x2,0x6f,0x2,0x4f,0x2,0x3,0x3,0xd6,
0x2,0xd6,0x3,0xb2,0x3,0xc0,0x4,0xb6,0x4,0x85,0x5,0x8c,0x5,0xf5,0x5,0x1,
0x6,0x7,0x6,0x17,0x6,0xd3,0x5,0xd9,0x5,0x6d,0x5,0x5b,0x5,0xdb,0x4,0xc2,
0x4,0x3b,0x4,0x3b,0x4,0xb5,0x3,0xcf,0x3,0x3d,0x3,0x5c,0x3,0xac,0x2,0xbb,
0x2,0xef,0x1,0xe3,0x1,0x3,0x1,0xe7,0x0,0x19,0x0,0x6,0x0,0x69,0xff,0x63,
0xff,0xaf,0xfe,0xac,0xfe,0x9a,0xfd,0x94,0xfd,0x69,0xfc,0x5a,0xfc,0x7b,0xfb,0x6d,
0xfb,0xfe,0xfa,0xfd,0xfa,0x6,0xfb,0xa,0xfb,0x4b,0xfb,0x59,0xfb,0x66,0xfb,0x80,
0xfb,0x4a,0xfb,0x57,0xfb,0x8,0xfb,0x4,0xfb,0xb8,0xfa,0xbc,0xfa,0x9c,0xfa,0xb0,
0xfa,0xe9,0xfa,0xff,0xfa,0x9e,0xfb,0xae,0xfb,0x85,0xfc,0xa4,0xfc,0x5f,0xfd,0x9f,
0xfd,0x33,0xfe,0x75,0xfe,0x24,0xff,0x4a,0xff,0x2d,0x0,0x3b,0x0,0x32,0x1,0x3a,
0x1,0xd,0x2,0x28,0x2,0x9f,0x2,0xcf,0x2,0xed,0x2,0x13,0x3,0x1c,0x3,0x2e,
0x3,0x5b,0x3,0x5c,0x3,0xc1,0x3,0xb9,0x3,0x46,0x4,0x50,0x4,0xda,0x4,0xe7,
0x4,0x3d,0x5,0x20,0x5,0x11,0x5,0xd7,0x4,0x68,0x4,0x35,0x4,0xb4,0x3,0x8b,
0x3,0x3e,0x3,0x10,0x3,0xa,0x3,0xc8,0x2,0xf5,0x2,0xa5,0x2,0xbb,0x2,0x6e,
0x2,0x33,0x2,0xf1,0x1,0x79,0x1,0x4e,0x1,0xcc,0x0,0xb1,0x0,0x26,0x0,0x10,
0x0,0x51,0xff,0x56,0xff,0x5b,0xfe,0x7a,0xfe,0x7c,0xfd,0x9b,0xfd,0xca,0xfc,0xee,
0xfc,0x5d,0xfc,0x7b,0xfc,0x3e,0xfc,0x38,0xfc,0x4b,0xfc,0x2c,0xfc,0x71,0xfc,0x5d,
0xfc,0xb4,0xfc,0xc1,0xfc,0xf2,0xfc,0x20,0xfd,0xef,0xfc,0x26,0xfd,0xa7,0xfc,0xd3,
0xfc,0x6b,0xfc,0x87,0xfc,0x9f,0xfc,0xae,0xfc,0x55,0xfd,0x60,0xfd,0x32,0xfe,0x46,
0xfe,0xee,0xfe,0x11,0xff,0x8e,0xff,0xb1,0xff,0x7,0x0,0x13,0x0,0x4a,0x0,0x40,
0x0,0x73,0x0,0x6b,0x0,0x95,0x0,0x93,0x0,0xad,0x0,0xab,0x0,0xd2,0x0,0xcc,
0x0,0x17,0x1,0xfd,0x0,0x64,0x1,0x39,0x1,0xb4,0x1,0x90,0x1,0x15,0x2,0x7,
0x2,0x8a,0x2,0x90,0x2,0xe7,0x2,0xfe,0x2,0xe5,0x2,0x5,0x3,0x6e,0x2,0x82,
0x2,0xb5,0x1,0xb3,0x1,0x12,0x1,0x9,0x1,0xd2,0x0,0xd0,0x0,0xf1,0x0,0xfa,
0x0,0x36,0x1,0x4f,0x1,0x77,0x1,0x97,0x1,0x8b,0x1,0xab,0x1,0x58,0x1,0x80,
0x1,0x3,0x1,0x26,0x1,0xa3,0x0,0xb1,0x0,0x33,0x0,0x34,0x0,0xd8,0xff,0xce,
0xff,0xa1,0xff,0x90,0xff,0x6f,0xff,0x5e,0xff,0x4e,0xff,0x2c,0xff,0x43,0xff,0xd,
0xff,0x2a,0xff,0xf8,0xfe,0x10,0xff,0xf4,0xfe,0xf6,0xfe,0xfb,0xfe,0xa5,0xfe,0xc9,
0xfe,0x33,0xfe,0x50,0xfe,0xce,0xfd,0xd1,0xfd,0x72,0xfd,0x6b,0xfd,0x5b,0xfd,0x52,
0xfd,0xb7,0xfd,0xab,0xfd,0x33,0xfe,0x36,0xfe,0x8f,0xfe,0xa7,0xfe,0xaf,0xfe,0xcc,
0xfe,0x84,0xfe,0x90,0xfe,0x58,0xfe,0x4e,0xfe,0x61,0xfe,0x50,0xfe,0x87,0xfe,0x77,
0xfe,0xd8,0xfe,0xca,0xfe,0x4c,0xff,0x4b,0xff,0xb7,0xff,0xcb,0xff,0x31,0x0,0x52,
0x0,0xc7,0x0,0xea,0x0,0x49,0x1,0x6c,0x1,0xa0,0x1,0xc2,0x1,0xc4,0x1,0xdc,
0x1,0xbb,0x1,0xcb,0x1,0x98,0x1,0xb9,0x1,0x6d,0x1,0x9b,0x1,0x6b,0x1,0x85,
0x1,0xbe,0x1,0xc2,0x1,0x4e,0x2,0x4c,0x2,0xed,0x2,0xe5,0x2,0x5f,0x3,0x5b,
0x3,0x66,0x3,0x64,0x3,0x6,0x3,0xf4,0x2,0x6c,0x2,0x55,0x2,0xb2,0x1,0xa4,
0x1,0xed,0x0,0xe4,0x0,0x44,0x0,0x3e,0x0,0xdf,0xff,0xd6,0xff,0xb7,0xff,0xa7,
0xff,0xaa,0xff,0x97,0xff,0x92,0xff,0x75,0xff,0x3e,0xff,0x15,0xff,0xa6,0xfe,0x87,
0xfe,0xfd,0xfd,0xf3,0xfd,0x57,0xfd,0x64,0xfd,0xc6,0xfc,0xe7,0xfc,0x6d,0xfc,0x8d,
0xfc,0x45,0xfc,0x5c,0xfc,0x5b,0xfc,0x76,0xfc,0xd6,0xfc,0xf7,0xfc,0x79,0xfd,0x95,
0xfd,0xdb,0xfd,0xf2,0xfd,0xeb,0xfd,0xff,0xfd,0xd7,0xfd,0xe5,0xfd,0xd8,0xfd,0xe6,
0xfd,0x12,0xfe,0x30,0xfe,0x7a,0xfe,0x9e,0xfe,0xf1,0xfe,0x6,0xff,0x5c,0xff,0x70,
0xff,0xd2,0xff,0xf3,0xff,0x7b,0x0,0x99,0x0,0x30,0x1,0x36,0x1,0xa7,0x1,0x94,
0x1,0xe0,0x1,0xc0,0x1,0xfe,0x1,0xe2,0x1,0x13,0x2,0x2,0x2,0x52,0x2,0x46,
0x2,0xec,0x2,0xd8,0x2,0xa6,0x3,0x8a,0x3,0x14,0x4,0x4,0x4,0x29,0x4,0x22,
0x4,0x7,0x4,0xf1,0x3,0x92,0x3,0x60,0x3,0xae,0x2,0x77,0x2,0xc2,0x1,0xa5,
0x1,0x45,0x1,0x44,0x1,0x21,0x1,0x24,0x1,0x15,0x1,0x18,0x1,0x1d,0x1,0x18,
0x1,0xfc,0x0,0xef,0x0,0x84,0x0,0x8a,0x0,0xf0,0xff,0xb,0x0,0x42,0xff,0x5a,
0xff,0x5c,0xfe,0x74,0xfe,0x6c,0xfd,0x93,0xfd,0x81,0xfc,0xb6,0xfc,0xbb,0xfb,0xf7,
0xfb,0x90,0xfb,0xcb,0xfb,0x3,0xfc,0x3d,0xfc,0xbe,0xfc,0xef,0xfc,0x7d,0xfd,0x96,
0xfd,0xcf,0xfd,0xe1,0xfd,0x92,0xfd,0xad,0xfd,0x2a,0xfd,0x3b,0xfd,0xe1,0xfc,0xe9,
0xfc,0xe3,0xfc,0xee,0xfc,0x2d,0xfd,0x2d,0xfd,0x83,0xfd,0x6b,0xfd,0xee,0xfd,0xc5,
0xfd,0x80,0xfe,0x56,0xfe,0x11,0xff,0xeb,0xfe,0xa0,0xff,0x79,0xff,0x1b,0x0,0x0,
0x0,0x67,0x0,0x69,0x0,0xd7,0x0,0xe7,0x0,0x9a,0x1,0xa7,0x1,0x6d,0x2,0x78,
0x2,0x1f,0x3,0x2b,0x3,0x94,0x3,0x9c,0x3,0xbe,0x3,0xbe,0x3,0xc2,0x3,0xb8,
0x3,0xa7,0x3,0x9a,0x3,0x4f,0x3,0x43,0x3,0xc6,0x2,0xc3,0x2,0x4f,0x2,0x58,
0x2,0x29,0x2,0x32,0x2,0x3c,0x2,0x3c,0x2,0x50,0x2,0x55,0x2,0x66,0x2,0x7d,
0x2,0x5b,0x2,0x7a,0x2,0xdc,0x1,0xf0,0x1,0xf6,0x0,0xfe,0x0,0xed,0xff,0xee,
0xff,0xe7,0xfe,0xda,0xfe,0x13,0xfe,0xf7,0xfd,0xa6,0xfd,0x7d,0xfd,0x9f,0xfd,0x6d,
0xfd,0xc3,0xfd,0x9f,0xfd,0xc5,0xfd,0xb8,0xfd,0x8f,0xfd,0x8d,0xfd,0x5c,0xfd,0x5f,
0xfd,0x4a,0xfd,0x54,0xfd,0x4c,0xfd,0x4d,0xfd,0x58,0xfd,0x49,0xfd,0x4f,0xfd,0x40,
0xfd,0x2f,0xfd,0x2d,0xfd,0x50,0xfd,0x4e,0xfd,0xd5,0xfd,0xd2,0xfd,0x8b,0xfe,0x98,
0xfe,0x3d,0xff,0x59,0xff,0xa4,0xff,0xbe,0xff,0xb3,0xff,0xc9,0xff,0xce,0xff,0xdf,
0xff,0x22,0x0,0x1f,0x0,0x8c,0x0,0x75,0x0,0x4,0x1,0xf7,0x0,0x56,0x1,0x65,
0x1,0x47,0x1,0x60,0x1,0xd,0x1,0x16,0x1,0xea,0x0,0xe9,0x0,0xe4,0x0,0xe9,
0x0,0xfa,0x0,0x3,0x1,0x17,0x1,0x1f,0x1,0x3a,0x1,0x3f,0x1,0x69,0x1,0x63,
0x1,0x73,0x1,0x60,0x1,0x56,0x1,0x40,0x1,0x38,0x1,0x1f,0x1,0x7,0x1,0xe5,
0x0,0xc0,0x0,0xa2,0x0,0x79,0x0,0x68,0x0,0xe,0x0,0xfd,0xff,0x70,0xff,0x5d,
0xff,0xda,0xfe,0xcd,0xfe,0x8d,0xfe,0x83,0xfe,0xd2,0xfe,0xc8,0xfe,0x9c,0xff,0x91,
0xff,0x46,0x0,0x43,0x0,0x5c,0x0,0x6e,0x0,0x1e,0x0,0x34,0x0,0xfd,0xff,0xfe,
0xff,0x1d,0x0,0x14,0x0,0x52,0x0,0x52,0x0,0x4b,0x0,0x61,0x0,0x7,0x0,0x2f,
0x0,0xd2,0xff,0xed,0xff,0xc1,0xff,0xcc,0xff,0xc0,0xff,0xc2,0xff,0xc7,0xff,0xba,
0xff,0xc1,0xff,0xb6,0xff,0xc4,0xff,0xbf,0xff,0x2,0x0,0xec,0xff,0x44,0x0,0x31,
0x0,0x2a,0x0,0x1e,0x0,0x9d,0xff,0x81,0xff,0xd4,0xfe,0xbd,0xfe,0x63,0xfe,0x5d,
0xfe,0xab,0xfe,0xaa,0xfe,0x50,0xff,0x5d,0xff,0xe1,0xff,0xeb,0xff,0x3c,0x0,0x37,
0x0,0x41,0x0,0x3f,0x0,0x17,0x0,0x5,0x0,0x20,0x0,0xfe,0xff,0x5d,0x0,0x3e,
0x0,0x6d,0x0,0x42,0x0,0x17,0x0,0xf9,0xff,0x89,0xff,0x97,0xff,0x18,0xff,0x29,
0xff,0xfa,0xfe,0x0,0xff,0x49,0xff,0x48,0xff,0xde,0xff,0xc1,0xff,0x6b,0x0,0x53,
0x0,0xcc,0x0,0xda,0x0,0xf4,0x0,0xfb,0x0,0xce,0x0,0xbd,0x0,0x7d,0x0,0x6e,
0x0,0x46,0x0,0x41,0x0,0x59,0x0,0x64,0x0,0xb0,0x0,0xbf,0x0,0xd5,0x0,0xd3,
0x0,0x6f,0x0,0x63,0x0,0xc9,0xff,0xc1,0xff,0x52,0xff,0x4a,0xff,0x39,0xff,0x2b,
0xff,0x66,0xff,0x5c,0xff,0x9b,0xff,0xa1,0xff,0xc5,0xff,0xd2,0xff,0xf2,0xff,0xf8,
0xff,0x1,0x0,0xfd,0xff,0xd3,0xff,0xc8,0xff,0x73,0xff,0x6a,0xff,0x1,0xff,0x6,
0xff,0xb2,0xfe,0xba,0xfe,0x99,0xfe,0x9e,0xfe,0xa2,0xfe,0xad,0xfe,0xc2,0xfe,0xd4,
0xfe,0xf2,0xfe,0x2,0xff,0x35,0xff,0x42,0xff,0xa4,0xff,0xb1,0xff,0x2e,0x0,0x37,
0x0,0x95,0x0,0x9e,0x0,0xb6,0x0,0xcd,0x0,0xa1,0x0,0xc9,0x0,0x96,0x0,0xbe,
0x0,0xc7,0x0,0xe0,0x0,0x32,0x1,0x30,0x1,0xbd,0x1,0x9d,0x1,0x2e,0x2,0xfe,
0x1,0x43,0x2,0xd,0x2,0x16,0x2,0xde,0x1,0xfb,0x1,0xc5,0x1,0x5,0x2,0xc6,
0x1,0xf1,0x1,0xac,0x1,0x9e,0x1,0x6f,0x1,0x36,0x1,0x32,0x1,0xe0,0x0,0xf7,
0x0,0xa8,0x0,0xc2,0x0,0xad,0x0,0xbc,0x0,0xc3,0x0,0xbe,0x0,0x75,0x0,0x62,
0x0,0xd1,0xff,0xc3,0xff,0x3a,0xff,0x2e,0xff,0xa9,0xfe,0x95,0xfe,0x9,0xfe,0xf6,
0xfd,0x76,0xfd,0x71,0xfd,0xe8,0xfc,0xf3,0xfc,0x67,0xfc,0x82,0xfc,0x23,0xfc,0x48,
0xfc,0x35,0xfc,0x5a,0xfc,0x8d,0xfc,0xb1,0xfc,0xe1,0xfc,0xfb,0xfc,0xed,0xfc,0x1,
0xfd,0xe0,0xfc,0xf8,0xfc,0x3,0xfd,0xf,0xfd,0x74,0xfd,0x6d,0xfd,0x47,0xfe,0x40,
0xfe,0x3d,0xff,0x41,0xff,0xf4,0xff,0x9,0x0,0x79,0x0,0x9c,0x0,0xd5,0x0,0xf5,
0x0,0xfa,0x0,0x1e,0x1,0x37,0x1,0x6b,0x1,0xa8,0x1,0xdc,0x1,0x10,0x2,0x26,
0x2,0x60,0x2,0x47,0x2,0x9d,0x2,0x6c,0x2,0xed,0x2,0xc1,0x2,0x9a,0x3,0x72,
0x3,0x5f,0x4,0x3e,0x4,0xad,0x4,0x9c,0x4,0x7f,0x4,0x65,0x4,0xef,0x3,0xc3,
0x3,0xff,0x2,0xde,0x2,0xfc,0x1,0xe2,0x1,0x2e,0x1,0xb,0x1,0xad,0x0,0x92,
0x0,0x83,0x0,0x7d,0x0,0x8d,0x0,0x92,0x0,0x96,0x0,0x9d,0x0,0x74,0x0,0x6e,
0x0,0x8,0x0,0xf4,0xff,0x98,0xff,0x89,0xff,0x6a,0xff,0x5e,0xff,0x19,0xff,0x5,
0xff,0x53,0xfe,0x41,0xfe,0x5c,0xfd,0x55,0xfd,0x7c,0xfc,0x80,0xfc,0xf1,0xfb,0x11,
0xfc,0xfb,0xfb,0x36,0xfc,0x61,0xfc,0x8e,0xfc,0xb5,0xfc,0xbd,0xfc,0xdf,0xfc,0xd1,
0xfc,0xfe,0xfc,0xf4,0xfc,0x1e,0xfd,0x27,0xfd,0x17,0xfd,0x30,0xfd,0x2,0xfd,0x2a,
0xfd,0x75,0xfd,0xa7,0xfd,0x83,0xfe,0xa5,0xfe,0x6c,0xff,0x7c,0xff,0xd1,0xff,0xe7,
0xff,0x5,0x0,0xe,0x0,0x40,0x0,0x31,0x0,0x9f,0x0,0x94,0x0,0x39,0x1,0x28,
0x1,0xbd,0x1,0x96,0x1,0xb0,0x1,0x9b,0x1,0x23,0x1,0x37,0x1,0xc0,0x0,0xda,
0x0,0x1a,0x1,0x16,0x1,0xeb,0x1,0xd0,0x1,0x87,0x2,0x6b,0x2,0xd0,0x2,0xab,
0x2,0xfa,0x2,0xc4,0x2,0xed,0x2,0xcc,0x2,0xa7,0x2,0x9c,0x2,0x56,0x2,0x3b,
0x2,0xf3,0x1,0xd1,0x1,0x77,0x1,0x5b,0x1,0x25,0x1,0xfc,0x0,0x1d,0x1,0xfe,
0x0,0x2a,0x1,0x35,0x1,0x29,0x1,0x4b,0x1,0x1a,0x1,0x39,0x1,0xd5,0x0,0xf4,
0x0,0x46,0x0,0x6c,0x0,0xb5,0xff,0xcf,0xff,0x47,0xff,0x46,0xff,0xe0,0xfe,0xde,
0xfe,0x8f,0xfe,0xa0,0xfe,0x68,0xfe,0x7c,0xfe,0x64,0xfe,0x7f,0xfe,0x7e,0xfe,0xa7,
0xfe,0x93,0xfe,0xaf,0xfe,0x90,0xfe,0x99,0xfe,0x7d,0xfe,0x82,0xfe,0x36,0xfe,0x34,
0xfe,0xc5,0xfd,0xba,0xfd,0x67,0xfd,0x52,0xfd,0x13,0xfd,0xf8,0xfc,0xd,0xfd,0xf4,
0xfc,0xba,0xfd,0x9b,0xfd,0xb3,0xfe,0x8b,0xfe,0x57,0xff,0x3f,0xff,0x6a,0xff,0x72,
0xff,0xfe,0xfe,0x1c,0xff,0x97,0xfe,0xad,0xfe,0x85,0xfe,0x84,0xfe,0xb4,0xfe,0xa9,
0xfe,0x32,0xff,0x1f,0xff,0xac,0xff,0x8f,0xff,0xc4,0xff,0xab,0xff,0xe0,0xff,0xd5,
0xff,0x39,0x0,0x42,0x0,0xa6,0x0,0xcf,0x0,0x36,0x1,0x75,0x1,0xa1,0x1,0xe7,
0x1,0xb7,0x1,0xf6,0x1,0xb8,0x1,0xdd,0x1,0xbb,0x1,0xc2,0x1,0x1f,0x2,0x9,
0x2,0x8,0x3,0xe4,0x2,0x9f,0x3,0x8b,0x3,0x92,0x3,0x89,0x3,0x3e,0x3,0x27,
0x3,0x81,0x2,0x6b,0x2,0x87,0x1,0x81,0x1,0xcb,0x0,0xce,0x0,0x60,0x0,0x68,
0x0,0x86,0x0,0x80,0x0,0x34,0x1,0xf,0x1,0xb3,0x1,0x7c,0x1,0x9f,0x1,0x72,
0x1,0xfe,0x0,0xeb,0x0,0x0,0x0,0xfa,0xff,0x14,0xff,0xb,0xff,0x5c,0xfe,0x4e,
0xfe,0xb9,0xfd,0x9a,0xfd,0x41,0xfd,0xf,0xfd,0xfb,0xfc,0xd6,0xfc,0xd7,0xfc,0xcc,
0xfc,0xdd,0xfc,0xee,0xfc,0x2c,0xfd,0x5b,0xfd,0xcc,0xfd,0xf8,0xfd,0x5b,0xfe,0x76,
0xfe,0x7f,0xfe,0x9b,0xfe,0x51,0xfe,0x58,0xfe,0xf3,0xfd,0xdd,0xfd,0xbf,0xfd,0xaf,
0xfd,0x27,0xfe,0x2e,0xfe,0xfd,0xfe,0x1d,0xff,0xc0,0xff,0xf6,0xff,0x1b,0x0,0x51,
0x0,0xef,0xff,0x1c,0x0,0x8e,0xff,0xa9,0xff,0x55,0xff,0x62,0xff,0x75,0xff,0x8d,
0xff,0x1e,0x0,0x36,0x0,0x19,0x1,0xc,0x1,0xdc,0x1,0xc0,0x1,0x4f,0x2,0x3b,
0x2,0x83,0x2,0x70,0x2,0x77,0x2,0x69,0x2,0x63,0x2,0x59,0x2,0x71,0x2,0x5b,
0x2,0x63,0x2,0x40,0x2,0xe3,0x1,0xb0,0x1,0x7,0x1,0xd0,0x0,0x5a,0x0,0x35,
0x0,0x34,0x0,0x1b,0x0,0x75,0x0,0x63,0x0,0xcb,0x0,0xb9,0x0,0xe2,0x0,0xba,
0x0,0x9e,0x0,0x75,0x0,0x26,0x0,0x1f,0x0,0xc7,0xff,0xd1,0xff,0xca,0xff,0xd3,
0xff,0xf2,0xff,0x0,0x0,0xc1,0xff,0xc4,0xff,0x41,0xff,0x3c,0xff,0xa7,0xfe,0xae,
0xfe,0x8,0xfe,0x17,0xfe,0xad,0xfd,0xba,0xfd,0x9e,0xfd,0xaf,0xfd,0xb5,0xfd,0xdb,
0xfd,0x18,0xfe,0x5f,0xfe,0xae,0xfe,0xfb,0xfe,0xc,0xff,0x4b,0xff,0x1c,0xff,0x4f,
0xff,0x5,0xff,0x18,0xff,0xf7,0xfe,0xed,0xfe,0x22,0xff,0x21,0xff,0x8d,0xff,0x90,
0xff,0x13,0x0,0xd,0x0,0x75,0x0,0x6d,0x0,0x9c,0x0,0x92,0x0,0xc4,0x0,0xc5,
0x0,0xe5,0x0,0xf6,0x0,0xc0,0x0,0xc8,0x0,0x7f,0x0,0x7a,0x0,0x56,0x0,0x4a,
0x0,0x4d,0x0,0x2d,0x0,0xa4,0x0,0x6f,0x0,0x64,0x1,0x28,0x1,0x26,0x2,0xfa,
0x1,0xa3,0x2,0x92,0x2,0xbc,0x2,0xab,0x2,0x58,0x2,0x3b,0x2,0xa1,0x1,0x83,
0x1,0xb9,0x0,0x91,0x0,0xab,0xff,0x87,0xff,0xd7,0xfe,0xcf,0xfe,0x7e,0xfe,0x6c,
0xfe,0x4c,0xfe,0x20,0xfe,0x41,0xfe,0x1c,0xfe,0xa8,0xfe,0x97,0xfe,0x23,0xff,0x2d,
0xff,0x4f,0xff,0x6c,0xff,0x47,0xff,0x5d,0xff,0x17,0xff,0x2e,0xff,0xdb,0xfe,0x2,
0xff,0xc7,0xfe,0xeb,0xfe,0xd3,0xfe,0xeb,0xfe,0x3,0xff,0x15,0xff,0x3e,0xff,0x50,
0xff,0x46,0xff,0x62,0xff,0x30,0xff,0x59,0xff,0x16,0xff,0x3f,0xff,0xf9,0xfe,0x17,
0xff,0x25,0xff,0x38,0xff,0xab,0xff,0xaf,0xff,0x48,0x0,0x37,0x0,0xdf,0x0,0xd5,
0x0,0x57,0x1,0x6d,0x1,0xba,0x1,0xd1,0x1,0x13,0x2,0x1a,0x2,0x11,0x2,0x17,
0x2,0xa4,0x1,0xa8,0x1,0x26,0x1,0x2f,0x1,0xbe,0x0,0xd0,0x0,0x97,0x0,0x8e,
0x0,0xac,0x0,0x86,0x0,0x8a,0x0,0x6c,0x0,0x38,0x0,0x1b,0x0,0x19,0x0,0xf0,
0xff,0x36,0x0,0x17,0x0,0x79,0x0,0x62,0x0,0x96,0x0,0x76,0x0,0x3b,0x0,0x11,
0x0,0xaf,0xff,0x81,0xff,0x68,0xff,0x4d,0xff,0x83,0xff,0x94,0xff,0xd3,0xff,0xf4,
0xff,0xcb,0xff,0xe6,0xff,0x1f,0xff,0x4e,0xff,0x4f,0xfe,0x8e,0xfe,0xe1,0xfd,0x17,
0xfe,0xf3,0xfd,0x30,0xfe,0x96,0xfe,0xcd,0xfe,0x8e,0xff,0xa2,0xff,0x4a,0x0,0x47,
0x0,0x7f,0x0,0x66,0x0,0x66,0x0,0x44,0x0,0x51,0x0,0x50,0x0,0x47,0x0,0x5b,
0x0,0x4e,0x0,0x4a,0x0,0x8d,0x0,0x6d,0x0,0xec,0x0,0xbf,0x0,0x32,0x1,0x15,
0x1,0x65,0x1,0x6a,0x1,0x79,0x1,0x81,0x1,0x2e,0x1,0x22,0x1,0x89,0x0,0x6c,
0x0,0xd3,0xff,0xb6,0xff,0x52,0xff,0x4e,0xff,0x23,0xff,0x28,0xff,0x36,0xff,0x27,
0xff,0x88,0xff,0x73,0xff,0x16,0x0,0x6,0x0,0x80,0x0,0x89,0x0,0x7d,0x0,0xb5,
0x0,0x33,0x0,0x63,0x0,0x8b,0xff,0x83,0xff,0x5a,0xfe,0x4d,0xfe,0x1c,0xfd,0x2e,
0xfd,0x6f,0xfc,0x91,0xfc,0xb0,0xfc,0xdd,0xfc,0xfe,0xfd,0x2f,0xfe,0xc8,0xff,0xe4,
0xff,0x27,0x1,0x29,0x1,0xbf,0x1,0xb1,0x1,0x91,0x1,0x81,0x1,0x7,0x1,0xf5,
0x0,0xd7,0x0,0xc8,0x0,0x14,0x1,0xe,0x1,0x6f,0x1,0x5b,0x1,0xd9,0x1,0xb5,
0x1,0x11,0x2,0x7,0x2,0xe2,0x1,0xfa,0x1,0x93,0x1,0xae,0x1,0x59,0x1,0x6e,
0x1,0x3e,0x1,0x4b,0x1,0x35,0x1,0x2e,0x1,0xf5,0x0,0xe0,0x0,0x91,0x0,0x7f,
0x0,0x6f,0x0,0x62,0x0,0x9c,0x0,0x93,0x0,0x16,0x1,0x4,0x1,0xa7,0x1,0x76,
0x1,0x90,0x1,0x58,0x1,0x8a,0x0,0x70,0x0,0xf6,0xfe,0xe7,0xfe,0x49,0xfd,0x31,
0xfd,0x46,0xfc,0x39,0xfc,0x73,0xfc,0x7e,0xfc,0x49,0xfd,0x65,0xfd,0x15,0xfe,0x3c,
0xfe,0xb4,0xfe,0xdc,0xfe,0x18,0xff,0x3b,0xff,0x40,0xff,0x5e,0xff,0x56,0xff,0x6e,
0xff,0x6e,0xff,0x79,0xff,0x70,0xff,0x6b,0xff,0x43,0xff,0x3b,0xff,0x4,0xff,0x4,
0xff,0x3,0xff,0x5,0xff,0x6c,0xff,0x72,0xff,0x25,0x0,0x2e,0x0,0xe6,0x0,0xf8,
0x0,0x5e,0x1,0x92,0x1,0x5c,0x1,0xa7,0x1,0xee,0x0,0x29,0x1,0x7d,0x0,0xa6,
0x0,0x8c,0x0,0x98,0x0,0x33,0x1,0x16,0x1,0x14,0x2,0xfa,0x1,0xb8,0x2,0xab,
0x2,0xd8,0x2,0xad,0x2,0x76,0x2,0x35,0x2,0xc4,0x1,0x8d,0x1,0x5,0x1,0xe8,
0x0,0x6c,0x0,0x67,0x0,0xc5,0xff,0xc6,0xff,0x14,0xff,0x18,0xff,0xed,0xfe,0xf6,
0xfe,0x71,0xff,0x66,0xff,0x37,0x0,0x1b,0x0,0xfe,0x0,0xe5,0x0,0x42,0x1,0x1b,
0x1,0xb8,0x0,0x83,0x0,0x4,0x0,0xdd,0xff,0xaa,0xff,0x89,0xff,0x82,0xff,0x61,
0xff,0x58,0xff,0x52,0xff,0xf5,0xfe,0xa,0xff,0x73,0xfe,0x91,0xfe,0x48,0xfe,0x71,
0xfe,0x83,0xfe,0xad,0xfe,0xdc,0xfe,0xf2,0xfe,0x16,0xff,0x28,0xff,0x21,0xff,0x31,
0xff,0x49,0xff,0x4b,0xff,0xc4,0xff,0xd9,0xff,0x62,0x0,0x9e,0x0,0xfc,0x0,0x32,
0x1,0x55,0x1,0x74,0x1,0x4e,0x1,0x6f,0x1,0x45,0x1,0x6e,0x1,0x3f,0x1,0x6b,
0x1,0xd8,0x0,0xf7,0x0,0x14,0x0,0x1a,0x0,0x51,0xff,0x4f,0xff,0x4,0xff,0x0,
0xff,0x79,0xff,0x6e,0xff,0x66,0x0,0x65,0x0,0x4b,0x1,0x59,0x1,0xd8,0x1,0xe3,
0x1,0xe0,0x1,0xd6,0x1,0x84,0x1,0x58,0x1,0x10,0x1,0xd6,0x0,0xa9,0x0,0x7e,
0x0,0x5d,0x0,0x3e,0x0,0x35,0x0,0x1c,0x0,0x2,0x0,0xec,0xff,0x80,0xff,0x52,
0xff,0xf2,0xfe,0xa9,0xfe,0xf7,0xfe,0xb3,0xfe,0x67,0xff,0x42,0xff,0xb9,0xff,0xb3,
0xff,0xd6,0xff,0xde,0xff,0x6e,0xff,0x7c,0xff,0x78,0xfe,0x8b,0xfe,0xdd,0xfd,0xe1,
0xfd,0x8,0xfe,0x5,0xfe,0xd3,0xfe,0xed,0xfe,0x13,0x0,0x3f,0x0,0xd2,0x0,0x1,
0x1,0x83,0x0,0xbe,0x0,0xfc,0xff,0x21,0x0,0x9a,0xff,0xa1,0xff,0x45,0xff,0x5e,
0xff,0x35,0xff,0x56,0xff,0x52,0xff,0x5c,0xff,0xbb,0xff,0xc3,0xff,0xac,0x0,0xb9,
0x0,0x8c,0x1,0x9f,0x1,0xf,0x2,0x2c,0x2,0x6a,0x2,0x75,0x2,0x6e,0x2,0x64,
0x2,0x3f,0x2,0x2e,0x2,0x11,0x2,0xe7,0x1,0x8f,0x1,0x53,0x1,0xbd,0x0,0x8c,
0x0,0xf1,0xff,0xcd,0xff,0x6b,0xff,0x56,0xff,0x9e,0xff,0x93,0xff,0x77,0x0,0x6d,
0x0,0x30,0x1,0x3e,0x1,0x56,0x1,0x78,0x1,0xfc,0x0,0x1e,0x1,0x79,0x0,0x9b,
0x0,0x25,0x0,0x2e,0x0,0x17,0x0,0x3,0x0,0x29,0x0,0x20,0x0,0xe2,0xff,0xf3,
0xff,0x2a,0xff,0x43,0xff,0xb3,0xfe,0xc0,0xfe,0xc6,0xfe,0xb0,0xfe,0xe8,0xfe,0xce,
0xfe,0xe2,0xfe,0xe2,0xfe,0xb1,0xfe,0xaa,0xfe,0x60,0xfe,0x41,0xfe,0x4b,0xfe,0x22,
0xfe,0x9a,0xfe,0x6d,0xfe,0x2,0xff,0xe8,0xfe,0x51,0xff,0x51,0xff,0x8c,0xff,0x98,
0xff,0xda,0xff,0xe8,0xff,0x4d,0x0,0x48,0x0,0x9d,0x0,0x86,0x0,0x7a,0x0,0x6d,
0x0,0xe,0x0,0x1,0x0,0xb8,0xff,0x9c,0xff,0x7a,0xff,0x66,0xff,0x50,0xff,0x47,
0xff,0x91,0xff,0x88,0xff,0x4f,0x0,0x60,0x0,0x2e,0x1,0x67,0x1,0xdf,0x1,0x17,
0x2,0x21,0x2,0x2e,0x2,0xd9,0x1,0xc0,0x1,0x3b,0x1,0x12,0x1,0x80,0x0,0x54,
0x0,0xe8,0xff,0xca,0xff,0xa9,0xff,0x95,0xff,0xaa,0xff,0x9c,0xff,0xc5,0xff,0xdb,
0xff,0xf0,0xff,0x17,0x0,0x21,0x0,0x36,0x0,0x6c,0x0,0x90,0x0,0xd0,0x0,0xff,
0x0,0x2,0x1,0x11,0x1,0xd0,0x0,0xdd,0x0,0x61,0x0,0x7d,0x0,0xfa,0xff,0x7,
0x0,0xbf,0xff,0xe0,0xff,0xfa,0xff,0x3f,0x0,0xf0,0x0,0x1d,0x1,0xe5,0x1,0xed,
0x1,0xef,0x1,0xdf,0x1,0x43,0x1,0x1c,0x1,0x46,0x0,0x31,0x0,0x40,0xff,0x4d,
0xff,0xe0,0xfe,0xdc,0xfe,0x27,0xff,0x9,0xff,0x87,0xff,0x75,0xff,0xe3,0xff,0xdd,
0xff,0xeb,0xff,0xeb,0xff,0xcb,0xff,0xc7,0xff,0x7f,0x0,0x5c,0x0,0xad,0x1,0x7b,
0x1,0x19,0x2,0xfd,0x1,0x8c,0x1,0x73,0x1,0x30,0x0,0x0,0x0,0x88,0xfe,0x55,
0xfe,0x9e,0xfd,0x72,0xfd,0x9e,0xfd,0x67,0xfd,0x1b,0xfe,0xdf,0xfd,0xe6,0xfe,0xc4,
0xfe,0x61,0xff,0x61,0xff,0x18,0xff,0x24,0xff,0x9d,0xfe,0xa1,0xfe,0x87,0xfe,0x78,
0xfe,0xd4,0xfe,0xbf,0xfe,0x65,0xff,0x76,0xff,0xfd,0xff,0x3d,0x0,0x40,0x0,0x8d,
0x0,0x22,0x0,0x6f,0x0,0xfa,0xff,0x3e,0x0,0xf5,0xff,0x24,0x0,0xf4,0xff,0x13,
0x0,0xec,0xff,0xf2,0xff,0xfb,0xff,0xe3,0xff,0x28,0x0,0x12,0x0,0x65,0x0,0x5f,
0x0,0xb8,0x0,0xc7,0x0,0x48,0x1,0x6d,0x1,0xa,0x2,0x2c,0x2,0xbd,0x2,0xde,
0x2,0x26,0x3,0x5d,0x3,0xb,0x3,0x3a,0x3,0x22,0x2,0x3b,0x2,0x7f,0x0,0x99,
0x0,0xec,0xfe,0xf0,0xfe,0x61,0xfe,0x2b,0xfe,0xf9,0xfe,0xa6,0xfe,0x16,0x0,0xdb,
0xff,0x2d,0x1,0x26,0x1,0xc3,0x1,0xde,0x1,0x98,0x1,0xb4,0x1,0xfc,0x0,0x17,
0x1,0x49,0x0,0x51,0x0,0xdd,0xff,0xb7,0xff,0xf9,0xff,0xce,0xff,0xfa,0xff,0xfb,
0xff,0x64,0xff,0x75,0xff,0xc4,0xfe,0xc0,0xfe,0x5d,0xfe,0x45,0xfe,0x39,0xfe,0xfa,
0xfd,0x97,0xfe,0x2f,0xfe,0xe9,0xfe,0x9e,0xfe,0xa3,0xfe,0xae,0xfe,0x3b,0xfe,0x68,
0xfe,0xf2,0xfd,0xf8,0xfd,0xc8,0xfd,0xa9,0xfd,0x7,0xfe,0xe7,0xfd,0x92,0xfe,0x86,
0xfe,0x32,0xff,0x3c,0xff,0xc,0x0,0x22,0x0,0xdc,0x0,0xf0,0x0,0x1f,0x1,0x23,
0x1,0xbb,0x0,0xa6,0x0,0xe9,0xff,0xca,0xff,0x3b,0xff,0x2e,0xff,0x85,0xff,0x95,
0xff,0xcb,0x0,0xfa,0x0,0xfc,0x1,0x4c,0x2,0x62,0x2,0xbd,0x2,0x49,0x2,0x95,
0x2,0xf4,0x1,0x41,0x2,0x8c,0x1,0xe2,0x1,0x73,0x1,0xac,0x1,0xac,0x1,0xaf,
0x1,0x4,0x2,0xd6,0x1,0x3c,0x2,0xf3,0x1,0xbc,0x1,0x87,0x1,0x96,0x0,0x8c,
0x0,0xa0,0xff,0x9f,0xff,0x18,0xff,0xa,0xff,0xfd,0xfe,0xdf,0xfe,0x4d,0xff,0x13,
0xff,0x7f,0xff,0x3d,0xff,0x6f,0xff,0x43,0xff,0x79,0xff,0x5b,0xff,0xa8,0xff,0x9b,
0xff,0x30,0x0,0x31,0x0,0xe4,0x0,0xdd,0x0,0xd6,0x0,0xd6,0x0,0xdd,0xff,0xe9,
0xff,0x7e,0xfe,0x86,0xfe,0xf,0xfd,0x2a,0xfd,0x23,0xfc,0x49,0xfc,0x26,0xfc,0x2c,
0xfc,0xed,0xfc,0xfa,0xfc,0x40,0xfe,0x6b,0xfe,0x99,0xff,0xbb,0xff,0x52,0x0,0x79,
0x0,0x72,0x0,0x9c,0x0,0x5c,0x0,0x52,0x0,0x69,0x0,0x3b,0x0,0xc2,0x0,0x9e,
0x0,0x1b,0x1,0xf,0x1,0x1d,0x1,0x37,0x1,0xcb,0x0,0xf7,0x0,0x6c,0x0,0x87,
0x0,0x86,0x0,0x84,0x0,0x46,0x1,0x27,0x1,0x19,0x2,0xf7,0x1,0x6e,0x2,0x55,
0x2,0x55,0x2,0x22,0x2,0x24,0x2,0xe3,0x1,0xfd,0x1,0xd0,0x1,0xe2,0x1,0xaa,
0x1,0xd8,0x1,0x8d,0x1,0xaa,0x1,0x6e,0x1,0x34,0x1,0xd,0x1,0xb7,0x0,0xae,
0x0,0x37,0x0,0x4f,0x0,0x82,0xff,0xa6,0xff,0xe9,0xfe,0xd,0xff,0xb4,0xfe,0xe9,
0xfe,0xcd,0xfe,0x2a,0xff,0x21,0xff,0x97,0xff,0x64,0xff,0xc0,0xff,0x63,0xff,0x95,
0xff,0x59,0xff,0x83,0xff,0x66,0xff,0x98,0xff,0x77,0xff,0xb0,0xff,0x7c,0xff,0xb4,
0xff,0x29,0xff,0x5a,0xff,0x58,0xfe,0x81,0xfe,0x70,0xfd,0x8b,0xfd,0x1b,0xfd,0x22,
0xfd,0xa4,0xfd,0x9d,0xfd,0xa2,0xfe,0x97,0xfe,0x86,0xff,0x80,0xff,0x14,0x0,0xff,
0xff,0x15,0x0,0xe0,0xff,0xab,0xff,0x67,0xff,0x7f,0xff,0x2f,0xff,0xd6,0xff,0x8d,
0xff,0x86,0x0,0x6b,0x0,0x3c,0x1,0x3e,0x1,0x8b,0x1,0x80,0x1,0x8d,0x1,0x5a,
0x1,0x9a,0x1,0x48,0x1,0xa3,0x1,0x6c,0x1,0xb6,0x1,0x8c,0x1,0xe1,0x1,0x8d,
0x1,0xcf,0x1,0x98,0x1,0x76,0x1,0x8c,0x1,0xb,0x1,0x2e,0x1,0xa0,0x0,0xcd,
0x0,0x75,0x0,0xb5,0x0,0x9c,0x0,0xc2,0x0,0xc7,0x0,0xd6,0x0,0xe5,0x0,0xdf,
0x0,0xe7,0x0,0xd1,0x0,0xaa,0x0,0xaa,0x0,0x60,0x0,0x6c,0x0,0x34,0x0,0x47,
0x0,0xfb,0xff,0x3d,0x0,0x99,0xff,0xe9,0xff,0x17,0xff,0x34,0xff,0x80,0xfe,0x73,
0xfe,0xf2,0xfd,0xe5,0xfd,0xa8,0xfd,0xa0,0xfd,0xe1,0xfd,0xc4,0xfd,0xa9,0xfe,0x8d,
0xfe,0xc5,0xff,0xca,0xff,0xd3,0x0,0xd9,0x0,0x6a,0x1,0x6f,0x1,0x22,0x1,0x3d,
0x1,0xf6,0xff,0xf9,0xff,0x8e,0xfe,0x71,0xfe,0x9f,0xfd,0x94,0xfd,0x62,0xfd,0x65,
0xfd,0xb,0xfe,0x10,0xfe,0x83,0xff,0x93,0xff,0xf3,0x0,0x9,0x1,0xc6,0x1,0xf8,
0x1,0x24,0x2,0x6d,0x2,0x2e,0x2,0x40,0x2,0xd2,0x1,0x97,0x1,0x3d,0x1,0xf1,
0x0,0xb7,0x0,0x82,0x0,0x49,0x0,0x1b,0x0,0xe2,0xff,0xc1,0xff,0xad,0xff,0xbd,
0xff,0x96,0xff,0xc7,0xff,0x59,0xff,0x8a,0xff,0x53,0xff,0x7f,0xff,0xa6,0xff,0xa5,
0xff,0xa0,0xff,0x69,0xff,0x27,0xff,0x6,0xff,0xb2,0xfe,0xb3,0xfe,0x73,0xfe,0x75,
0xfe,0xe2,0xfe,0xe1,0xfe,0x1f,0x0,0xe,0x0,0x61,0x1,0x4a,0x1,0xf7,0x1,0xfe,
0x1,0x93,0x1,0xb4,0x1,0x8e,0x0,0xc0,0x0,0xe3,0xff,0x13,0x0,0xc8,0xff,0xd5,
0xff,0xf7,0xff,0xef,0xff,0x6c,0x0,0x5b,0x0,0xc4,0x0,0x90,0x0,0xd3,0x0,0x8e,
0x0,0x2,0x1,0xd6,0x0,0x52,0x1,0x50,0x1,0xa3,0x1,0xba,0x1,0xa7,0x1,0xb0,
0x1,0xc9,0x0,0xb5,0x0,0x43,0xff,0x2f,0xff,0xd8,0xfd,0xd5,0xfd,0x27,0xfd,0x2d,
0xfd,0xcb,0xfd,0xc3,0xfd,0x49,0xff,0x36,0xff,0x79,0x0,0x76,0x0,0xd,0x1,0x18,
0x1,0xe5,0x0,0xf6,0x0,0x20,0x0,0x38,0x0,0x9e,0xff,0x9c,0xff,0x84,0xff,0x62,
0xff,0x6b,0xff,0x4f,0xff,0x91,0xff,0x8c,0xff,0x1,0x0,0x22,0x0,0x57,0x0,0xa7,
0x0,0x55,0x0,0xae,0x0,0xfb,0xff,0x46,0x0,0xa7,0xff,0xee,0xff,0x75,0xff,0xa3,
0xff,0x34,0xff,0x2b,0xff,0x3f,0xff,0x16,0xff,0x89,0xff,0x75,0xff,0x6d,0xff,0x81,
0xff,0x57,0xff,0x77,0xff,0xf2,0xff,0x2,0x0,0xc2,0x0,0xc1,0x0,0x4b,0x1,0x40,
0x1,0x77,0x1,0x60,0x1,0x1f,0x1,0xed,0x0,0x61,0x0,0x1f,0x0,0x97,0xff,0x5b,
0xff,0x3e,0xff,0xfd,0xfe,0xe3,0xff,0xa7,0xff,0x53,0x1,0x31,0x1,0xb6,0x2,0x8a,
0x2,0x61,0x3,0x21,0x3,0xf5,0x2,0xcd,0x2,0xbf,0x1,0xa3,0x1,0xc6,0x0,0xa8,
0x0,0xa5,0x0,0x9c,0x0,0x8,0x1,0xf5,0x0,0xf9,0x0,0xd2,0x0,0xbd,0xff,0xce,
0xff,0xff,0xfd,0x4b,0xfe,0x2,0xfd,0x48,0xfd,0x2a,0xfd,0x5f,0xfd,0x34,0xfe,0x5f,
0xfe,0x44,0xff,0x70,0xff,0x6f,0xff,0xac,0xff,0x39,0xff,0x5b,0xff,0x3e,0xff,0x1e,
0xff,0xe5,0xfe,0xaa,0xfe,0x38,0xfe,0x6,0xfe,0xcb,0xfd,0x99,0xfd,0x7a,0xfd,0x3f,
0xfd,0x8a,0xfd,0x58,0xfd,0x4b,0xfe,0x55,0xfe,0xf7,0xfe,0x58,0xff,0x36,0xff,0xc5,
0xff,0x91,0xff,0x5,0x0,0xf,0x0,0x3a,0x0,0x71,0x0,0x6d,0x0,0xbb,0x0,0xbb,
0x0,0xd8,0x0,0xd5,0x0,0x8c,0x0,0x93,0x0,0x15,0x0,0x44,0x0,0x35,0x0,0x50,
0x0,0x1b,0x1,0x6,0x1,0x46,0x2,0x43,0x2,0x5b,0x3,0x65,0x3,0xd1,0x3,0xc6,
0x3,0x5a,0x3,0x62,0x3,0xb4,0x2,0xcb,0x2,0x3c,0x2,0x33,0x2,0x95,0x1,0x71,
0x1,0xb,0x1,0xdc,0x0,0xe5,0x0,0xbc,0x0,0xd2,0x0,0xbe,0x0,0xb3,0x0,0x9c,
0x0,0xa6,0x0,0x73,0x0,0xc8,0x0,0x76,0x0,0xcc,0x0,0x62,0x0,0x24,0x0,0xc8,
0xff,0x2e,0xff,0xc,0xff,0x74,0xfe,0x86,0xfe,0xb9,0xfd,0xe1,0xfd,0x37,0xfd,0x66,
0xfd,0x4e,0xfd,0x73,0xfd,0x80,0xfd,0x98,0xfd,0x8f,0xfd,0xb7,0xfd,0xae,0xfd,0xe1,
0xfd,0xc0,0xfd,0xd9,0xfd,0xb0,0xfd,0xb8,0xfd,0xa4,0xfd,0xbb,0xfd,0xf5,0xfd,0x15,
0xfe,0xb9,0xfe,0xd8,0xfe,0x48,0xff,0x66,0xff,0x4b,0xff,0x64,0xff,0x25,0xff,0x40,
0xff,0x33,0xff,0x3a,0xff,0xef,0xff,0xc2,0xff,0x41,0x1,0x1,0x1,0xd5,0x1,0xb0,
0x1,0xfa,0x0,0xde,0x0,0x94,0xff,0x5a,0xff,0xd5,0xfe,0x7d,0xfe,0x80,0xff,0x28,
0xff,0x4a,0x1,0x18,0x1,0x1c,0x3,0x21,0x3,0x40,0x4,0x6d,0x4,0x5c,0x4,0x8b,
0x4,0x54,0x3,0x75,0x3,0xf8,0x1,0xf,0x2,0xfe,0x0,0x9,0x1,0x48,0x0,0x55,
0x0,0xea,0xff,0x18,0x0,0xd1,0xff,0x2b,0x0,0x64,0xff,0xdd,0xff,0x5,0xff,0x70,
0xff,0xb7,0xff,0xe1,0xff,0x5f,0x1,0x55,0x1,0xf3,0x2,0xd4,0x2,0x3f,0x3,0x13,
0x3,0xa4,0x1,0x8e,0x1,0xfa,0xfe,0x12,0xff,0x9f,0xfc,0xbf,0xfc,0x63,0xfb,0x77,
0xfb,0x9f,0xfb,0xb5,0xfb,0xaa,0xfc,0xb9,0xfc,0xb2,0xfd,0xac,0xfd,0x16,0xff,0xf,
0xff,0xc1,0x0,0xb8,0x0,0x90,0x1,0x5c,0x1,0x3a,0x1,0xc6,0x0,0x30,0x0,0x9d,
0xff,0x16,0xff,0x9b,0xfe,0xe7,0xfe,0x97,0xfe,0x91,0xff,0x49,0xff,0xf,0x0,0xc5,
0xff,0xf7,0xff,0xd6,0xff,0x76,0xff,0x7f,0xff,0x5c,0xff,0x66,0xff,0x74,0x0,0x88,
0x0,0xd7,0x1,0x2,0x2,0xf,0x2,0x40,0x2,0x2d,0x1,0x53,0x1,0x27,0x0,0x2e,
0x0,0xd7,0xff,0xbb,0xff,0x85,0x0,0x66,0x0,0xa2,0x1,0xa5,0x1,0x69,0x2,0x95,
0x2,0x49,0x2,0x8b,0x2,0x6,0x1,0x5e,0x1,0x2a,0xff,0x9b,0xff,0x97,0xfd,0xa,
0xfe,0xeb,0xfc,0x5b,0xfd,0x52,0xfd,0xbd,0xfd,0x51,0xfe,0x8d,0xfe,0x36,0xff,0x3c,
0xff,0xc5,0xff,0xb5,0xff,0x9,0x0,0xf3,0xff,0x2e,0x0,0x12,0x0,0x2a,0x0,0xf6,
0xff,0x8b,0xff,0x45,0xff,0x2d,0xfe,0x7,0xfe,0xb7,0xfc,0x9d,0xfc,0xf6,0xfb,0xc9,
0xfb,0x5d,0xfc,0x44,0xfc,0xf8,0xfd,0xe5,0xfd,0x74,0x0,0x4a,0x0,0x1c,0x3,0xf7,
0x2,0xe2,0x4,0xbb,0x4,0xfc,0x4,0xdd,0x4,0xa9,0x3,0xb4,0x3,0xf5,0x1,0x2,
0x2,0xdc,0x0,0xd0,0x0,0x91,0x0,0x84,0x0,0x9c,0x0,0x85,0x0,0xb0,0x0,0xa0,
0x0,0xf0,0x0,0xf,0x1,0x47,0x1,0x80,0x1,0x6f,0x1,0x9d,0x1,0x58,0x1,0x69,
0x1,0xd9,0x0,0xcc,0x0,0xdd,0xff,0xc2,0xff,0xef,0xfe,0xd4,0xfe,0x74,0xfe,0x6c,
0xfe,0x32,0xfe,0x39,0xfe,0x18,0xfe,0x13,0xfe,0x73,0xfe,0x60,0xfe,0x4a,0xff,0x2a,
0xff,0xd,0x0,0xdd,0xff,0xe1,0xff,0xbc,0xff,0xa1,0xfe,0x8c,0xfe,0x26,0xfd,0x16,
0xfd,0x5b,0xfc,0x4f,0xfc,0xcf,0xfc,0xb3,0xfc,0x59,0xfe,0x41,0xfe,0xe5,0xff,0xeb,
0xff,0x84,0x0,0x94,0x0,0x56,0x0,0x7b,0x0,0x13,0x0,0x4b,0x0,0x25,0x0,0x42,
0x0,0x2b,0x0,0x33,0x0,0xd2,0xff,0xc7,0xff,0xa0,0xff,0x80,0xff,0xd4,0xff,0xd1,
0xff,0x6,0x0,0x26,0x0,0x40,0x0,0x63,0x0,0xac,0x0,0xd8,0x0,0x5b,0x1,0x82,
0x1,0x85,0x2,0xab,0x2,0x83,0x3,0xbe,0x3,0x15,0x3,0x3f,0x3,0x25,0x1,0x36,
0x1,0x97,0xfe,0xaa,0xfe,0xb2,0xfc,0xa2,0xfc,0xb7,0xfc,0x79,0xfc,0x70,0xfe,0x38,
0xfe,0x84,0x0,0x73,0x0,0xfe,0x1,0x16,0x2,0x23,0x2,0x52,0x2,0xd2,0x0,0x11,
0x1,0x46,0xff,0x7a,0xff,0x6e,0xfe,0x6f,0xfe,0x44,0xfe,0x2c,0xfe,0xdd,0xfe,0xc8,
0xfe,0xd2,0xff,0xa7,0xff,0x4f,0x0,0x24,0x0,0x6c,0x0,0x57,0x0,0x91,0x0,0x7f,
0x0,0xe8,0x0,0xe6,0x0,0xd6,0x1,0xce,0x1,0xd4,0x2,0xaa,0x2,0xa2,0x2,0x73,
0x2,0x49,0x1,0x8,0x1,0x9b,0xff,0x4c,0xff,0x35,0xfe,0x20,0xfe,0xff,0xfd,0x1a,
0xfe,0x36,0xff,0x5a,0xff,0xc9,0x0,0x1,0x1,0x94,0x1,0xb9,0x1,0xeb,0x0,0xcf,
0x0,0xe2,0xfe,0x99,0xfe,0xeb,0xfc,0x9b,0xfc,0x86,0xfc,0x57,0xfc,0x80,0xfd,0x89,
0xfd,0xba,0xfe,0xe3,0xfe,0x83,0xff,0xb7,0xff,0xa6,0xff,0xe7,0xff,0x41,0xff,0xa4,
0xff,0xda,0xfe,0x55,0xff,0xd5,0xfe,0x34,0xff,0x6,0xff,0x43,0xff,0x2a,0xff,0x44,
0xff,0x24,0xff,0x1,0xff,0xa,0xff,0xdb,0xfe,0x77,0xff,0x6b,0xff,0xae,0x0,0xba,
0x0,0xfc,0x1,0x32,0x2,0xd7,0x2,0x2c,0x3,0x3e,0x3,0x7b,0x3,0x24,0x3,0x44,
0x3,0xa5,0x2,0x8e,0x2,0xec,0x1,0x88,0x1,0xf6,0x0,0x9f,0x0,0x1c,0x0,0xb,
0x0,0xd2,0xff,0xe9,0xff,0xf7,0xff,0x2e,0x0,0x6e,0x0,0x9d,0x0,0x58,0x1,0x4d,
0x1,0x20,0x2,0x3,0x2,0xf7,0x1,0xf3,0x1,0x2e,0x1,0x1b,0x1,0x2d,0x0,0xfb,
0xff,0x9f,0xfe,0x72,0xfe,0xf4,0xfc,0xbe,0xfc,0x2d,0xfc,0xce,0xfb,0x5a,0xfc,0xf6,
0xfb,0x8,0xfd,0xd9,0xfc,0xc5,0xfd,0xdb,0xfd,0x13,0xfe,0x67,0xfe,0xfb,0xfd,0x5c,
0xfe,0xd9,0xfd,0xa,0xfe,0xec,0xfd,0xe5,0xfd,0x75,0xfe,0x36,0xfe,0x41,0xff,0xe3,
0xfe,0xd0,0xff,0xa1,0xff,0x1d,0x0,0x1d,0x0,0x64,0x0,0x58,0x0,0xb8,0x0,0xae,
0x0,0x24,0x1,0x34,0x1,0xaf,0x1,0xd1,0x1,0x4,0x2,0x33,0x2,0x8a,0x1,0xa5,
0x1,0x90,0x0,0x84,0x0,0xeb,0xff,0xdd,0xff,0x93,0xff,0x85,0xff,0xc5,0xff,0xa9,
0xff,0x35,0x1,0x2e,0x1,0xc,0x3,0x2a,0x3,0xdb,0x3,0x2,0x4,0x1f,0x3,0x28,
0x3,0x8,0x1,0xec,0x0,0xf4,0xfe,0xe0,0xfe,0x3b,0xfe,0x4a,0xfe,0xa7,0xfe,0xd8,
0xfe,0xd5,0xff,0x2f,0x0,0x48,0x1,0xaf,0x1,0xfd,0x1,0x52,0x2,0xe1,0x1,0x1b,
0x2,0x4a,0x1,0x48,0x1,0x67,0x0,0x27,0x0,0xaf,0xff,0x57,0xff,0xed,0xfe,0x8b,
0xfe,0x1f,0xfe,0xca,0xfd,0x7,0xfe,0xd8,0xfd,0x5f,0xfe,0x55,0xfe,0xc9,0xfe,0xf1,
0xfe,0x76,0xff,0xb7,0xff,0xe5,0xff,0xfc,0xff,0xf6,0xff,0xf1,0xff,0xe0,0xff,0xe3,
0xff,0x57,0xff,0x61,0xff,0xb6,0xfe,0xd0,0xfe,0x13,0xfe,0x2d,0xfe,0x30,0xfd,0x44,
0xfd,0x4a,0xfd,0x6a,0xfd,0xb6,0xfe,0xbd,0xfe,0x2c,0x0,0x3,0x0,0x6b,0x1,0x43,
0x1,0x23,0x2,0xfb,0x1,0xb6,0x1,0x80,0x1,0xfa,0x0,0xd6,0x0,0x9e,0x0,0x83,
0x0,0x55,0x0,0x2c,0x0,0xe7,0xff,0xc4,0xff,0x5f,0xff,0x53,0xff,0x4e,0xff,0x4c,
0xff,0xbc,0xff,0xbd,0xff,0xd4,0xff,0xdb,0xff,0x9d,0xff,0xa0,0xff,0x5d,0xff,0x55,
0xff,0x11,0xff,0xf,0xff,0x4e,0xff,0x41,0xff,0xe0,0xff,0xb3,0xff,0xf3,0xff,0xc7,
0xff,0xc6,0xff,0xa8,0xff,0xaf,0xff,0x97,0xff,0xd2,0xff,0xdb,0xff,0x60,0x0,0x8a,
0x0,0xe2,0x0,0x1b,0x1,0xe5,0x0,0x30,0x1,0x42,0x0,0x83,0x0,0x26,0xff,0x47,
0xff,0xce,0xfe,0xdf,0xfe,0xaa,0xff,0xbd,0xff,0xe4,0x0,0x5,0x1,0x49,0x2,0x7a,
0x2,0x7b,0x3,0xb6,0x3,0xc0,0x3,0xe,0x4,0x95,0x3,0xd2,0x3,0x63,0x3,0x6a,
0x3,0xe5,0x2,0xd0,0x2,0x16,0x2,0xf0,0x1,0xcc,0x0,0x8d,0x0,0x3c,0xff,0x2,
0xff,0x36,0xfe,0x13,0xfe,0xfd,0xfd,0xeb,0xfd,0x84,0xfe,0x73,0xfe,0x9c,0xff,0x75,
0xff,0x61,0x0,0x2a,0x0,0x9,0x0,0xc5,0xff,0x8a,0xfe,0x33,0xfe,0x88,0xfc,0x4f,
0xfc,0x47,0xfb,0x40,0xfb,0x9a,0xfb,0x96,0xfb,0xe5,0xfc,0xdc,0xfc,0xa2,0xfd,0x9f,
0xfd,0x25,0xfd,0x18,0xfd,0x66,0xfc,0x45,0xfc,0x4f,0xfc,0x24,0xfc,0x13,0xfd,0xf6,
0xfc,0xe3,0xfe,0xd6,0xfe,0x3,0x1,0xe7,0x0,0x18,0x2,0xeb,0x1,0xec,0x1,0xd5,
0x1,0x0,0x1,0x22,0x1,0x34,0x0,0x7c,0x0,0xaa,0x0,0xf4,0x0,0x60,0x2,0xab,
0x2,0x3f,0x4,0x86,0x4,0x20,0x5,0x4d,0x5,0x1b,0x4,0x47,0x4,0xad,0x1,0xec,
0x1,0xc6,0xff,0xf9,0xff,0xb9,0xff,0xd1,0xff,0x5b,0x1,0x46,0x1,0x5c,0x3,0x11,
0x3,0xf2,0x3,0xac,0x3,0x6f,0x2,0x63,0x2,0x2f,0x0,0x47,0x0,0xd,0xff,0x2c,
0xff,0x64,0xff,0x8b,0xff,0x54,0x0,0x7c,0x0,0xbb,0x0,0xb6,0x0,0x89,0xff,0x40,
0xff,0x3d,0xfd,0xe9,0xfc,0xef,0xfb,0xb9,0xfb,0x90,0xfc,0x72,0xfc,0x83,0xfe,0x8c,
0xfe,0xb4,0x0,0xe0,0x0,0x79,0x1,0xa7,0x1,0x31,0x0,0x5e,0x0,0x3e,0xfe,0x5d,
0xfe,0xe4,0xfc,0xdd,0xfc,0x93,0xfc,0x81,0xfc,0x32,0xfd,0x32,0xfd,0xd4,0xfd,0xe7,
0xfd,0x1c,0xfe,0x3b,0xfe,0x97,0xfe,0xb3,0xfe,0x35,0xff,0x43,0xff,0xa4,0xff,0xa6,
0xff,0xd4,0xff,0xd7,0xff,0x89,0xff,0xa1,0xff,0x10,0xff,0x3c,0xff,0x2b,0xff,0x55,
0xff,0xcb,0xff,0xd9,0xff,0x60,0x0,0x4e,0x0,0xfc,0x0,0xd0,0x0,0xd3,0x1,0x8c,
0x1,0x98,0x2,0x57,0x2,0x1d,0x3,0xd,0x3,0x51,0x3,0x60,0x3,0xd2,0x2,0xe2,
0x2,0xde,0x1,0xf7,0x1,0x4a,0x1,0x7a,0x1,0x1c,0x1,0x68,0x1,0x0,0x1,0x48,
0x1,0xf,0x1,0x2d,0x1,0x4e,0x1,0x62,0x1,0xd3,0x1,0xdf,0x1,0x69,0x2,0x4e,
0x2,0x5e,0x2,0x4e,0x2,0xb9,0x1,0xca,0x1,0xa8,0x0,0xb7,0x0,0x2,0xff,0x36,
0xff,0xd0,0xfd,0x2c,0xfe,0x4,0xfe,0x3e,0xfe,0xd2,0xfe,0xf3,0xfe,0x77,0xff,0x9b,
0xff,0xc3,0xff,0xdc,0xff,0x7e,0xff,0x9a,0xff,0xdb,0xfe,0xe8,0xfe,0xd3,0xfd,0xb3,
0xfd,0x49,0xfc,0x33,0xfc,0x15,0xfb,0x1d,0xfb,0xe1,0xfa,0xd5,0xfa,0x62,0xfb,0x44,
0xfb,0x3f,0xfc,0x36,0xfc,0x7c,0xfd,0x86,0xfd,0x2,0xff,0x7,0xff,0x16,0x0,0x0,
0x0,0xf7,0xff,0xbb,0xff,0xf1,0xfe,0xac,0xfe,0x20,0xfe,0xdf,0xfd,0x4d,0xfe,0xf5,
0xfd,0x47,0xff,0xe8,0xfe,0x7b,0x0,0x3d,0x0,0x94,0x1,0x6d,0x1,0x85,0x2,0x6c,
0x2,0xdf,0x3,0xd1,0x3,0xc2,0x5,0xac,0x5,0x1,0x7,0xee,0x6,0xf1,0x6,0xde,
0x6,0xa4,0x5,0x75,0x5,0x6b,0x3,0x3a,0x3,0xf8,0x1,0xcb,0x1,0x52,0x2,0x1,
0x2,0x1b,0x3,0xdd,0x2,0x52,0x3,0x55,0x3,0xd0,0x2,0xd6,0x2,0x5a,0x1,0x62,
0x1,0xbd,0xff,0xe5,0xff,0xdb,0xfe,0x2,0xff,0xaa,0xfe,0xc8,0xfe,0x9,0xff,0x1a,
0xff,0x64,0xff,0x4b,0xff,0x5,0xff,0xf5,0xfe,0x50,0xfe,0x68,0xfe,0xaa,0xfd,0xb8,
0xfd,0xf4,0xfc,0x4,0xfd,0x83,0xfc,0xbd,0xfc,0x45,0xfc,0x97,0xfc,0x83,0xfb,0xe2,
0xfb,0x77,0xfa,0xcd,0xfa,0xb7,0xf9,0xde,0xf9,0x46,0xf9,0x5e,0xf9,0xce,0xf9,0xf7,
0xf9,0x11,0xfc,0x2f,0xfc,0x20,0xff,0x2f,0xff,0x4a,0x1,0x57,0x1,0xdb,0x1,0xef,
0x1,0x24,0x1,0x64,0x1,0xd8,0xff,0x33,0x0,0x14,0xff,0x4c,0xff,0xa3,0xff,0xdc,
0xff,0x3e,0x1,0x92,0x1,0x69,0x3,0x96,0x3,0xf6,0x4,0xf9,0x4,0x9f,0x4,0x9a,
0x4,0x2,0x4,0xef,0x3,0xad,0x4,0xaf,0x4,0x87,0x5,0x9f,0x5,0x5b,0x6,0x4f,
0x6,0x57,0x6,0x57,0x6,0xb0,0x3,0xe1,0x3,0x46,0x0,0x59,0x0,0x4a,0xfe,0x3b,
0xfe,0x67,0xfd,0x56,0xfd,0x20,0xfe,0xeb,0xfd,0xf,0x0,0xcc,0xff,0xe,0x1,0xd7,
0x0,0x6,0x0,0xb9,0xff,0x70,0xfd,0x27,0xfd,0x56,0xfb,0x24,0xfb,0xe0,0xfa,0xae,
0xfa,0x63,0xfb,0x46,0xfb,0xe0,0xfc,0xcc,0xfc,0x79,0xfe,0x44,0xfe,0xe0,0xfe,0xa6,
0xfe,0x45,0xff,0xf,0xff,0xf9,0xff,0xba,0xff,0xa7,0xff,0x6b,0xff,0xb4,0xfe,0x67,
0xfe,0xec,0xfd,0x9d,0xfd,0x96,0xfd,0x7c,0xfd,0x93,0xfe,0x8e,0xfe,0x95,0x0,0x82,
0x0,0x1f,0x2,0x31,0x2,0x6b,0x3,0xa1,0x3,0x39,0x5,0x52,0x5,0x14,0x7,0x8,
0x7,0x8b,0x9,0x70,0x9,0x7,0xc,0xee,0xb,0x83,0xb,0x89,0xb,0x61,0x8,0x82,
0x8,0xf9,0x4,0xf,0x5,0xf0,0x1,0x0,0x2,0x1f,0x1,0x42,0x1,0x11,0x2,0x3a,
0x2,0x2b,0x1,0x53,0x1,0x90,0xfe,0xca,0xfe,0xc3,0xfb,0xf7,0xfb,0xec,0xf8,0xf5,
0xf8,0x3d,0xf7,0x22,0xf7,0x5a,0xf6,0x37,0xf6,0xc9,0xf4,0xcc,0xf4,0xd2,0xf2,0xf9,
0xf2,0xdc,0xf0,0xe5,0xf0,0x74,0xef,0x58,0xef,0xbf,0xef,0xba,0xef,0x21,0xf2,0x45,
0xf2,0x9c,0xf5,0xd8,0xf5,0xa6,0xf8,0xd0,0xf8,0x8,0xfb,0xf5,0xfa,0x38,0xfd,0x7,
0xfd,0xd5,0xff,0xa6,0xff,0xbf,0x3,0x91,0x3,0xf3,0x7,0xe9,0x7,0x43,0xb,0x64,
0xb,0xed,0xd,0x8,0xe,0x89,0xf,0x8c,0xf,0xc2,0x10,0xb1,0x10,0x56,0x12,0x39,
0x12,0xa3,0x12,0x9a,0x12,0x3c,0x11,0x4d,0x11,0xdd,0xe,0xef,0xe,0x9b,0xb,0x94,
0xb,0xb3,0x8,0x73,0x8,0x72,0x7,0x12,0x7,0x57,0x7,0x2d,0x7,0x5c,0x6,0x81,
0x6,0xba,0x3,0xe2,0x3,0xc0,0x0,0xb8,0x0,0xc,0xfd,0xe8,0xfc,0xaf,0xf8,0x94,
0xf8,0xe3,0xf5,0xf5,0xf5,0x2,0xf4,0x3f,0xf4,0x1e,0xf2,0x2e,0xf2,0x3f,0xf1,0xfd,
0xf0,0xb3,0xf0,0x70,0xf0,0x3,0xf0,0xff,0xef,0xa6,0xef,0xd5,0xef,0xb0,0xef,0xfc,
0xef,0xe8,0xf0,0x2d,0xf1,0xb1,0xf2,0xd9,0xf2,0x21,0xf4,0x2f,0xf4,0xf6,0xf5,0xf8,
0xf5,0x4f,0xf8,0x71,0xf8,0x32,0xfb,0x82,0xfb,0xef,0xfe,0x36,0xff,0x8a,0x3,0xae,
0x3,0xd0,0x8,0xd4,0x8,0x9d,0xc,0x86,0xc,0x87,0xd,0x83,0xd,0xc,0xd,0x2c,
0xd,0x9a,0xc,0xce,0xc,0x71,0xd,0xbe,0xd,0xc6,0xf,0xfc,0xf,0xc9,0x11,0xaa,
0x11,0xd,0x12,0xd4,0x11,0x6f,0x10,0x68,0x10,0x64,0xe,0x7b,0xe,0xd3,0xc,0xc2,
0xc,0x24,0xa,0xda,0x9,0x99,0x5,0x56,0x5,0xd8,0xff,0xc3,0xff,0x86,0xfa,0x8e,
0xfa,0xf2,0xf7,0xb,0xf8,0x8c,0xf7,0x89,0xf7,0xdc,0xf7,0xa7,0xf7,0x92,0xf7,0x70,
0xf7,0x85,0xf4,0x80,0xf4,0xd4,0xf0,0xd0,0xf0,0xa4,0xef,0xb5,0xef,0xec,0xef,0xe9,
0xef,0xa0,0xf1,0x6e,0xf1,0xaa,0xf4,0x86,0xf4,0xaf,0xf6,0x9f,0xf6,0x58,0xf7,0x54,
0xf7,0xd8,0xf7,0xf4,0xf7,0x45,0xf9,0x65,0xf9,0xf5,0xfb,0x1e,0xfc,0x17,0xff,0x3a,
0xff,0xea,0x1,0xc1,0x1,0xed,0x2,0xb1,0x2,0xd1,0x1,0xbc,0x1,0x58,0x1,0x2a,
0x1,0x66,0x3,0x35,0x3,0xbf,0x7,0xb4,0x7,0x9b,0xc,0x74,0xc,0x93,0xf,0x53,
0xf,0x22,0x10,0xf3,0xf,0xbf,0xe,0x8d,0xe,0x10,0xd,0xe5,0xc,0xd9,0xc,0xbc,
0xc,0xb9,0xc,0x90,0xc,0xec,0xb,0xbf,0xb,0x3c,0xb,0xfe,0xa,0xf3,0x9,0x90,
0x9,0x5b,0x8,0x0,0x8,0x17,0x7,0xe7,0x6,0x61,0x5,0x44,0x5,0xde,0x2,0xc5,
0x2,0x15,0xff,0x18,0xff,0x19,0xfa,0x4d,0xfa,0x25,0xf5,0x70,0xf5,0x77,0xf1,0xad,
0xf1,0xfd,0xef,0x21,0xf0,0xb6,0xef,0xde,0xef,0x73,0xef,0xa0,0xef,0x5f,0xef,0x86,
0xef,0xbd,0xee,0xf6,0xee,0x56,0xee,0xc1,0xee,0xb9,0xef,0x2a,0xf0,0x8f,0xf1,0xe0,
0xf1,0x3c,0xf3,0xae,0xf3,0x75,0xf5,0x10,0xf6,0x56,0xf8,0xd1,0xf8,0x77,0xfc,0xe7,
0xfc,0x6e,0x1,0xf8,0x1,0x91,0x6,0xfd,0x6,0x5f,0xb,0x85,0xb,0xeb,0xd,0xdd,
0xd,0x1d,0xe,0x1,0xe,0x72,0xd,0x72,0xd,0x6c,0xc,0x84,0xc,0x61,0xc,0x85,
0xc,0xc,0xe,0x38,0xe,0x10,0x10,0xd,0x10,0xe6,0x10,0x9e,0x10,0x0,0x10,0xb9,
0xf,0x31,0xe,0xfb,0xd,0xd5,0xb,0x7a,0xb,0xe3,0x8,0x63,0x8,0x54,0x6,0xdb,
0x5,0xcb,0x3,0x73,0x3,0xc9,0x0,0x84,0x0,0x10,0xfe,0xb2,0xfd,0x2a,0xfb,0xb2,
0xfa,0x1a,0xf8,0xbd,0xf7,0xf7,0xf5,0xcb,0xf5,0xfb,0xf4,0xe2,0xf4,0x25,0xf5,0x24,
0xf5,0x52,0xf5,0x63,0xf5,0xcd,0xf3,0xb9,0xf3,0xdf,0xf0,0xa4,0xf0,0x3d,0xee,0x1e,
0xee,0xb,0xee,0x8,0xee,0xb7,0xf0,0xaf,0xf0,0x7a,0xf4,0x9c,0xf4,0xfa,0xf7,0x68,
0xf8,0x1f,0xfa,0xa4,0xfa,0xc9,0xfa,0x3b,0xfb,0xa9,0xfb,0x6,0xfc,0xa0,0xfd,0xdf,
0xfd,0xcb,0x0,0xf7,0x0,0xa4,0x4,0xe2,0x4,0x7,0x8,0x5d,0x8,0xc,0xb,0x57,
0xb,0x90,0xd,0xa2,0xd,0x68,0xf,0x39,0xf,0x54,0x11,0xd,0x11,0x5f,0x12,0x2b,
0x12,0xa3,0x11,0x90,0x11,0x69,0xf,0x79,0xf,0xe5,0xb,0x7,0xc,0xcf,0x8,0xdb,
0x8,0xc8,0x6,0x9e,0x6,0x21,0x5,0xba,0x4,0x8a,0x4,0x18,0x4,0x62,0x3,0x1d,
0x3,0x83,0x0,0x4a,0x0,0x63,0xfe,0xf,0xfe,0x42,0xfc,0xff,0xfb,0xc2,0xf8,0xa0,
0xf8,0xea,0xf5,0xc5,0xf5,0xcd,0xf3,0xae,0xf3,0x2f,0xf2,0x1f,0xf2,0x41,0xf2,0x30,
0xf2,0x75,0xf3,0x70,0xf3,0x26,0xf5,0x26,0xf5,0xb5,0xf6,0xa8,0xf6,0x13,0xf7,0x1d,
0xf7,0xc2,0xf6,0xfc,0xf6,0x98,0xf6,0xf6,0xf6,0x17,0xf7,0x8c,0xf7,0x90,0xf8,0xeb,
0xf8,0x9c,0xfa,0xdb,0xfa,0xf7,0xfc,0x60,0xfd,0x16,0xff,0xa5,0xff,0x6,0x1,0x8d,
0x1,0x7c,0x3,0xdd,0x3,0xc5,0x5,0xc4,0x5,0x1d,0x8,0xd3,0x7,0xc,0xb,0x0,
0xb,0xdf,0xc,0x27,0xd,0x90,0xd,0xd1,0xd,0x36,0xe,0x30,0xe,0x27,0xe,0xc4,
0xd,0xd0,0xd,0x51,0xd,0x1e,0xe,0xe4,0xd,0xa3,0xe,0xaf,0xe,0x79,0xe,0xb3,
0xe,0xd1,0xc,0xf,0xd,0xc7,0x9,0xad,0x9,0x7f,0x5,0xf0,0x4,0x92,0x0,0xbd,
0xff,0xc4,0xfc,0xe2,0xfb,0xf1,0xf9,0x77,0xf9,0xe0,0xf7,0xfa,0xf7,0xe9,0xf6,0x1a,
0xf7,0xee,0xf4,0xc8,0xf4,0x1,0xf2,0x78,0xf1,0x8,0xf0,0x53,0xef,0x9c,0xee,0x2e,
0xee,0x16,0xef,0x2e,0xef,0x8d,0xf1,0xf6,0xf1,0xf6,0xf2,0x59,0xf3,0x10,0xf4,0x3a,
0xf4,0xdc,0xf5,0xff,0xf5,0x97,0xf7,0xf9,0xf7,0xa7,0xfa,0x2e,0xfb,0x93,0xfe,0x6,
0xff,0xbe,0x1,0xff,0x1,0x6f,0x4,0x91,0x4,0x15,0x6,0x68,0x6,0xf4,0x6,0x7e,
0x7,0xd4,0x7,0x44,0x8,0x58,0x8,0x9b,0x8,0x33,0x9,0x3c,0x9,0x34,0xa,0xfc,
0x9,0xd9,0xa,0xb1,0xa,0xb1,0xb,0xb2,0xb,0x48,0xb,0x50,0xb,0x64,0x9,0x84,
0x9,0xe7,0x7,0x2,0x8,0xb8,0x6,0x9f,0x6,0x38,0x6,0xf,0x6,0x8a,0x6,0x66,
0x6,0x9c,0x5,0x68,0x5,0x6f,0x3,0x27,0x3,0x52,0x1,0xe7,0x0,0x70,0xff,0xec,
0xfe,0xf,0xfe,0x97,0xfd,0xeb,0xfc,0x7a,0xfc,0x48,0xfb,0xcd,0xfa,0xf0,0xf8,0x78,
0xf8,0x88,0xf6,0x24,0xf6,0x38,0xf5,0xf8,0xf4,0xe9,0xf4,0xcd,0xf4,0xfc,0xf4,0x7,
0xf5,0x2a,0xf5,0x66,0xf5,0xf6,0xf4,0x56,0xf5,0xac,0xf5,0xf6,0xf5,0x23,0xf8,0x45,
0xf8,0x64,0xfa,0xb9,0xfa,0x23,0xfc,0xc2,0xfc,0x0,0xfe,0x5a,0xfe,0x8,0xff,0xf5,
0xfe,0x17,0x0,0xfd,0xff,0x60,0x2,0x52,0x2,0xbb,0x4,0xcb,0x4,0x7d,0x6,0xc7,
0x6,0x92,0x8,0xa3,0x8,0x56,0xb,0x5,0xb,0x6a,0xd,0x25,0xd,0xeb,0xd,0xdd,
0xd,0x51,0xd,0x8c,0xd,0x45,0xb,0xbe,0xb,0xa0,0x8,0xdf,0x8,0x24,0x7,0xed,
0x6,0x72,0x5,0xe2,0x4,0x98,0x2,0xee,0x1,0xea,0xff,0x86,0xff,0x92,0xfd,0x7f,
0xfd,0x1d,0xfc,0x28,0xfc,0xca,0xfb,0xd9,0xfb,0xd,0xfb,0xdd,0xfa,0x7,0xfa,0x9a,
0xf9,0xa7,0xf9,0x53,0xf9,0x72,0xf9,0x4a,0xf9,0x5a,0xf9,0x6a,0xf9,0x21,0xf9,0x4b,
0xf9,0x20,0xf8,0xf,0xf8,0x4e,0xf7,0x53,0xf7,0xce,0xf7,0x3e,0xf8,0x10,0xf9,0xa7,
0xf9,0xba,0xfa,0x63,0xfb,0xfd,0xfc,0x67,0xfd,0x82,0xfe,0x57,0xfe,0xab,0xfe,0x72,
0xfe,0x63,0xff,0x4c,0xff,0x1f,0x1,0xd4,0x0,0x80,0x2,0x4e,0x2,0xb1,0x3,0xb5,
0x3,0xfa,0x4,0xea,0x4,0xe0,0x5,0xe8,0x5,0xe7,0x6,0x5,0x7,0x65,0x8,0x59,
0x8,0x9d,0x9,0x68,0x9,0xf6,0x9,0x90,0x9,0xc6,0x9,0x50,0x9,0xab,0x9,0x55,
0x9,0x4,0x9,0xa7,0x8,0x7c,0x7,0x32,0x7,0xa1,0x6,0x98,0x6,0xf4,0x6,0xc,
0x7,0x50,0x7,0x81,0x7,0x74,0x6,0x86,0x6,0x2e,0x3,0xeb,0x2,0x37,0xfe,0xeb,
0xfd,0xeb,0xf9,0xa8,0xf9,0x27,0xf8,0xf7,0xf7,0x20,0xf9,0x6c,0xf9,0x22,0xfa,0xce,
0xfa,0xb2,0xf8,0x40,0xf9,0x86,0xf5,0xc0,0xf5,0x4f,0xf2,0x37,0xf2,0x2f,0xf1,0x31,
0xf1,0x32,0xf3,0xa5,0xf3,0x14,0xf6,0x84,0xf6,0x37,0xf7,0x5d,0xf7,0xce,0xf6,0xe6,
0xf6,0xe7,0xf6,0xbb,0xf6,0x4e,0xf8,0xc6,0xf7,0xe9,0xfa,0x7c,0xfa,0xa2,0xfe,0x7e,
0xfe,0x31,0x1,0x4f,0x1,0xa9,0x1,0xd5,0x1,0x59,0x2,0x6,0x2,0xf6,0x3,0x3c,
0x3,0x65,0x6,0xd2,0x5,0xa,0x9,0xa2,0x8,0x78,0xa,0x3f,0xa,0x52,0xb,0x5f,
0xb,0xc2,0xb,0xcb,0xb,0xf2,0xb,0xf7,0xb,0xb4,0xc,0x1a,0xd,0xad,0xc,0x59,
0xd,0x5,0xc,0x6f,0xc,0x1e,0xb,0x1a,0xb,0xcb,0x8,0x9c,0x8,0x64,0x6,0x37,
0x6,0x8,0x4,0xe5,0x3,0x91,0x1,0x84,0x1,0x8a,0x0,0x8c,0x0,0x14,0xff,0x6,
0xff,0xe3,0xfc,0xb9,0xfc,0x52,0xfb,0x2c,0xfb,0x16,0xf9,0x1,0xf9,0xa3,0xf7,0xb0,
0xf7,0xed,0xf7,0x26,0xf8,0x80,0xf7,0x8f,0xf7,0xb1,0xf5,0xa7,0xf5,0x13,0xf3,0x45,
0xf3,0x7c,0xf1,0x98,0xf1,0x52,0xf2,0x59,0xf2,0x69,0xf4,0xa9,0xf4,0x1a,0xf7,0x2f,
0xf7,0x4d,0xf9,0x2c,0xf9,0x50,0xfa,0x4e,0xfa,0x92,0xfb,0x83,0xfb,0x6f,0xfd,0x3f,
0xfd,0x2,0x0,0xaf,0xff,0xd,0x3,0x9d,0x2,0x76,0x5,0x37,0x5,0x94,0x7,0x65,
0x7,0x28,0x9,0xcc,0x8,0x8e,0x9,0x6b,0x9,0xbb,0x9,0xf5,0x9,0xdf,0x9,0x13,
0xa,0xb6,0x9,0xdd,0x9,0x32,0xa,0x77,0xa,0x57,0xb,0x81,0xb,0x55,0xb,0x3c,
0xb,0x99,0x9,0x45,0x9,0xe9,0x6,0x87,0x6,0xe0,0x3,0xcc,0x3,0x10,0x2,0x3a,
0x2,0xdb,0x1,0x1,0x2,0xb6,0x1,0xec,0x1,0xc3,0x0,0xc7,0x0,0x1,0xfe,0xbf,
0xfd,0x53,0xfa,0x4e,0xfa,0xd2,0xf7,0xa,0xf8,0x52,0xf6,0x71,0xf6,0x53,0xf6,0x42,
0xf6,0x4e,0xf7,0x1e,0xf7,0x94,0xf7,0x78,0xf7,0x5,0xf8,0xc,0xf8,0x41,0xf8,0x6d,
0xf8,0x10,0xf8,0x3c,0xf8,0xd2,0xf8,0xc0,0xf8,0x4f,0xfa,0x47,0xfa,0xc0,0xfc,0xce,
0xfc,0x3,0xff,0xd8,0xfe,0xde,0xff,0xb8,0xff,0x45,0x0,0x4b,0x0,0xf1,0xff,0xfa,
0xff,0xc8,0x0,0x1,0x1,0xec,0x3,0x4d,0x4,0xde,0x6,0x1c,0x7,0xf7,0x9,0x2a,
0xa,0xd8,0xb,0x1e,0xc,0xf4,0xa,0xfe,0xa,0xf5,0x9,0x96,0x9,0x9c,0x8,0xa,
0x8,0xc9,0x7,0x21,0x7,0xf7,0x8,0x69,0x8,0x21,0x9,0xda,0x8,0x14,0x8,0xee,
0x7,0x1,0x6,0xfa,0x5,0xe0,0x1,0xd0,0x1,0xf0,0xfd,0xc2,0xfd,0xa,0xfc,0x1f,
0xfc,0x5,0xfd,0xd,0xfd,0xde,0xfe,0x9f,0xfe,0x75,0xfe,0x96,0xfe,0xdd,0xfc,0x29,
0xfd,0x31,0xfa,0x7,0xfa,0x27,0xf7,0xdb,0xf6,0x3f,0xf6,0x51,0xf6,0x21,0xf6,0x8c,
0xf6,0xf5,0xf5,0x57,0xf6,0xc8,0xf5,0xf2,0xf5,0x36,0xf5,0x41,0xf5,0x9c,0xf5,0x8a,
0xf5,0xea,0xf6,0xc2,0xf6,0xb7,0xf9,0x71,0xf9,0xf3,0xfd,0x95,0xfd,0x12,0x0,0xdf,
0xff,0x56,0x0,0x50,0x0,0x30,0x1,0x58,0x1,0x4f,0x2,0xac,0x2,0x90,0x3,0xd3,
0x3,0x6a,0x5,0x80,0x5,0x3b,0x7,0x57,0x7,0x93,0x7,0xb1,0x7,0x6a,0x7,0x55,
0x7,0x22,0x8,0x12,0x8,0xd7,0x8,0x60,0x9,0x62,0xa,0x39,0xb,0xda,0xb,0x3e,
0xc,0xbf,0xa,0x9a,0xa,0x7d,0x8,0xf6,0x7,0xae,0x5,0x23,0x5,0x77,0x3,0x37,
0x3,0x8a,0x3,0x44,0x3,0x25,0x3,0xd2,0x2,0x7b,0x1,0x41,0x1,0x70,0xff,0x16,
0xff,0xc9,0xfc,0x5d,0xfc,0xd6,0xfa,0x9f,0xfa,0x83,0xf9,0x78,0xf9,0xad,0xf8,0xa8,
0xf8,0xf0,0xf7,0x1f,0xf8,0x81,0xf6,0xf1,0xf6,0xad,0xf6,0x8,0xf7,0xcc,0xf7,0x26,
0xf8,0xd3,0xf7,0x5c,0xf8,0xd7,0xf7,0x78,0xf8,0xab,0xf7,0x68,0xf8,0x46,0xf8,0xf3,
0xf8,0xdd,0xf9,0xa5,0xfa,0xec,0xfa,0x2a,0xfc,0xb3,0xfc,0xe3,0xfd,0x8a,0xfe,0x6f,
0xff,0x2a,0x0,0xaf,0x0,0xb1,0x2,0x68,0x2,0x58,0x4,0xdf,0x3,0xc1,0x5,0x80,
0x5,0xd2,0x6,0x38,0x6,0x2,0x6,0x42,0x5,0x1e,0x6,0x71,0x5,0x55,0x7,0x7d,
0x6,0x1b,0x8,0x6a,0x7,0x66,0x9,0xdb,0x8,0x38,0xa,0x5d,0x9,0x61,0x9,0x66,
0x8,0x50,0x7,0x45,0x6,0xac,0x5,0x8,0x4,0xc4,0x4,0xe0,0x2,0xa0,0x2,0x53,
0x1,0x40,0x0,0x5a,0xff,0xef,0xfe,0x3b,0xfe,0x39,0xfe,0xc,0xfe,0x15,0xfe,0x3b,
0xfe,0x40,0xfd,0x4a,0xfd,0x68,0xfc,0x55,0xfc,0x85,0xfb,0xcc,0xfb,0xf9,0xf8,0xc5,
0xf9,0x7e,0xf7,0x24,0xf8,0x33,0xf7,0xc9,0xf7,0x3c,0xf6,0x7e,0xf7,0x7f,0xf6,0x3e,
0xf8,0xcc,0xf7,0xaf,0xf9,0x52,0xf9,0x4c,0xfb,0x4d,0xfa,0x2d,0xfc,0x21,0xfa,0xb2,
0xfb,0x2a,0xfb,0x3d,0xfc,0xdf,0xfc,0x8d,0xfd,0x7c,0xfe,0xda,0xfe,0xe1,0x0,0xf0,
0x0,0x33,0x2,0x45,0x2,0x1e,0x3,0x27,0x3,0x52,0x4,0x18,0x4,0xea,0x4,0x66,
0x4,0x38,0x6,0x24,0x5,0xc9,0x6,0x64,0x5,0x87,0x6,0x56,0x5,0x6a,0x7,0x65,
0x6,0x45,0x7,0x8a,0x6,0x89,0x6,0x7,0x6,0x36,0x7,0x86,0x6,0x83,0x7,0xc9,
0x6,0x91,0x6,0xfa,0x5,0xb9,0x5,0x2e,0x5,0xba,0x5,0x71,0x5,0x6d,0x4,0x99,
0x4,0x32,0x1,0x5f,0x1,0x69,0xfe,0x24,0xfe,0xf1,0xfb,0x76,0xfb,0x81,0xfa,0x1c,
0xfa,0x66,0xfa,0x56,0xfa,0x7b,0xf9,0xff,0xf9,0xf1,0xf8,0xb6,0xf9,0x83,0xf8,0x28,
0xf9,0x28,0xf7,0x91,0xf7,0xc9,0xf6,0xfa,0xf6,0x48,0xf6,0xa2,0xf6,0x96,0xf5,0x39,
0xf6,0x33,0xf6,0xe1,0xf6,0x96,0xf7,0x2e,0xf8,0x77,0xfa,0xe9,0xfa,0x1e,0xfd,0x8c,
0xfd,0x43,0xfe,0x83,0xfe,0x4b,0x0,0x33,0x0,0xd1,0x2,0xd6,0x2,0x5d,0x5,0x55,
0x5,0x38,0x8,0xbd,0x7,0x41,0xa,0xd0,0x9,0x41,0xb,0xf9,0xa,0x8,0xb,0xb9,
0xa,0x8,0xb,0xe1,0xa,0xd1,0xb,0xd0,0xb,0xd6,0xb,0xb9,0xb,0x1,0xc,0x81,
0xb,0x84,0xb,0xca,0xa,0xf6,0x8,0x80,0x8,0x75,0x5,0x5d,0x5,0x5d,0x1,0xa4,
0x1,0x96,0xfe,0x21,0xff,0x60,0xfd,0xb9,0xfd,0x89,0xfc,0x8b,0xfc,0xbe,0xfd,0xb1,
0xfd,0x45,0xfe,0x39,0xfe,0x2c,0xfb,0xd8,0xfa,0x2e,0xf7,0xa4,0xf6,0x35,0xf4,0xd3,
0xf3,0x9a,0xf3,0x60,0xf3,0x7c,0xf5,0x6c,0xf5,0xc9,0xf7,0xe5,0xf7,0x2f,0xf8,0x40,
0xf8,0x3,0xf5,0x1d,0xf5,0x70,0xf2,0x7c,0xf2,0x60,0xf4,0x51,0xf4,0x7a,0xf8,0xb8,
0xf8,0x1a,0xfd,0x81,0xfd,0xd,0x0,0x5f,0x0,0x86,0xff,0x23,0x0,0xea,0xfd,0xe4,
0xfe,0xc5,0xfd,0x9a,0xfe,0x6f,0x1,0xb1,0x1,0x42,0x8,0x10,0x8,0x3e,0xd,0xee,
0xc,0x35,0xd,0x6,0xd,0x70,0xa,0xa9,0xa,0xfd,0x9,0x38,0xa,0xe3,0xa,0xb5,
0xa,0xf6,0xa,0xce,0xa,0x15,0xd,0xe5,0xc,0xfd,0xd,0x6f,0xd,0x1e,0xb,0x7b,
0xa,0x24,0x9,0x91,0x8,0x41,0x7,0xc3,0x6,0x4e,0x4,0xf8,0x3,0x18,0x2,0xea,
0x1,0x77,0xff,0x6b,0xff,0xa7,0xfc,0x5e,0xfc,0x1f,0xf9,0x72,0xf8,0xa8,0xf4,0xa,
0xf4,0x3f,0xf2,0xf3,0xf1,0x77,0xf1,0x4b,0xf1,0x67,0xf0,0x35,0xf0,0xd7,0xee,0x18,
0xef,0x5e,0xed,0x48,0xee,0xff,0xec,0xcb,0xed,0x6,0xee,0x60,0xee,0xfe,0xf1,0x47,
0xf2,0x53,0xf7,0xa6,0xf7,0xaa,0xf9,0x27,0xfa,0xd9,0xfa,0xb5,0xfb,0xf7,0xfd,0xf7,
0xfe,0xc4,0x2,0x57,0x3,0xd8,0x7,0xee,0x7,0x53,0xb,0x6f,0xb,0xdd,0xd,0x0,
0xe,0x3f,0xf,0x10,0xf,0xbd,0xe,0x33,0xe,0xfb,0xe,0x33,0xe,0x94,0x10,0xc7,
0xf,0x95,0x12,0xf0,0x11,0x44,0x14,0xf5,0x13,0x67,0x14,0x72,0x14,0xd1,0x12,0xe7,
0x12,0x8d,0xe,0xc6,0xe,0x5a,0x9,0x7b,0x9,0xa1,0x5,0xf6,0x4,0x5e,0x1,0x66,
0x0,0xd2,0xfd,0x42,0xfd,0x2a,0xfc,0xb7,0xfb,0x96,0xf9,0x1a,0xf9,0xd9,0xf5,0x6e,
0xf5,0x1a,0xf1,0xbe,0xf0,0xa7,0xed,0x26,0xed,0xbd,0xed,0xc,0xed,0x54,0xee,0xf8,
0xed,0x2c,0xef,0x3b,0xef,0x5f,0xf0,0x8d,0xf0,0x4a,0xf0,0x91,0xf0,0xc5,0xf0,0xf1,
0xf0,0xcf,0xf1,0xf3,0xf1,0xe6,0xf3,0x41,0xf4,0x2a,0xf8,0x8b,0xf8,0x44,0xfb,0xe9,
0xfb,0x41,0xfd,0x5c,0xfe,0x7d,0x0,0x80,0x1,0x30,0x4,0xff,0x4,0xe0,0x7,0xf0,
0x8,0x7c,0xb,0xae,0xc,0xec,0xe,0xc9,0xf,0xce,0x10,0x61,0x11,0x9d,0x10,0x0,
0x11,0x58,0x10,0xa1,0x10,0x35,0xf,0xaa,0xf,0x79,0xd,0xc9,0xd,0xbd,0xd,0x84,
0xd,0x43,0xe,0xb2,0xd,0x84,0xc,0xc3,0xb,0x99,0x8,0x1b,0x8,0xd0,0x3,0x3,
0x4,0x46,0xff,0xa0,0xff,0xd3,0xfb,0xaa,0xfb,0xf6,0xfa,0x39,0xfa,0xef,0xfa,0x34,
0xfa,0x43,0xf9,0x16,0xf9,0xe0,0xf5,0x17,0xf6,0x42,0xf1,0xcb,0xf1,0x57,0xf0,0xbe,
0xf0,0x96,0xf3,0x13,0xf3,0x1,0xf4,0x48,0xf3,0x90,0xf2,0x62,0xf2,0xa,0xf2,0x5,
0xf2,0xef,0xf1,0xf6,0xf1,0x69,0xf5,0x33,0xf5,0x93,0xfb,0xb6,0xfa,0x96,0x0,0x93,
0xff,0x3c,0x3,0x79,0x2,0x3c,0x3,0x9a,0x2,0x49,0x3,0x1d,0x3,0xba,0x4,0x28,
0x5,0xa,0x7,0x53,0x7,0x20,0xa,0xff,0x9,0x56,0xb,0x4b,0xb,0x96,0xa,0xcd,
0xa,0xaf,0x9,0x57,0xa,0x1c,0x9,0xd,0xa,0xca,0x9,0x6f,0xa,0x60,0x9,0xf3,
0x9,0xd1,0x6,0x83,0x7,0xb8,0x4,0x3a,0x5,0x9e,0x2,0x4,0x3,0x8e,0x0,0x8e,
0x0,0xe4,0xff,0x61,0xff,0xfa,0xff,0x77,0xff,0x86,0xff,0xef,0xfe,0xa9,0xfd,0x29,
0xfd,0xb,0xfc,0xf2,0xfb,0x4a,0xfb,0xfb,0xfa,0x1a,0xfa,0x8f,0xf9,0x88,0xf9,0x5e,
0xf9,0x39,0xf9,0x24,0xf9,0x23,0xf8,0xe3,0xf7,0xcd,0xf6,0xfc,0xf6,0x63,0xf5,0xff,
0xf5,0x96,0xf5,0xf3,0xf5,0x9e,0xf7,0xc5,0xf7,0xc0,0xf9,0xf0,0xf9,0xc7,0xfb,0xe2,
0xfb,0xfb,0xfc,0x1d,0xfd,0x36,0xfd,0x68,0xfd,0x2b,0xfd,0x6c,0xfd,0x6b,0xfe,0xb3,
0xfe,0x60,0x2,0x51,0x2,0xc6,0x5,0xad,0x5,0x73,0x7,0xa3,0x7,0x9c,0x9,0x6f,
0x9,0xcb,0xa,0x50,0xa,0xa2,0xa,0x87,0xa,0x43,0xa,0x70,0xa,0x82,0xa,0x70,
0xa,0x35,0xc,0x8d,0xb,0xef,0xc,0x11,0xc,0xba,0xc,0x2f,0xc,0x4a,0xc,0x9,
0xc,0x8e,0x8,0x8a,0x8,0x6d,0x3,0x66,0x3,0x1e,0x0,0x99,0xff,0x3a,0xfe,0x76,
0xfd,0x78,0xfd,0x14,0xfd,0xc9,0xfb,0xd4,0xfb,0xc3,0xf8,0xe6,0xf8,0xd5,0xf5,0x5,
0xf6,0x52,0xf3,0xa0,0xf3,0x43,0xf3,0xcd,0xf3,0xe1,0xf4,0xed,0xf5,0xd,0xf5,0x4,
0xf6,0x85,0xf4,0xac,0xf4,0xfe,0xf4,0xce,0xf4,0x96,0xf6,0x75,0xf6,0x22,0xf8,0x33,
0xf8,0x18,0xfa,0x84,0xfa,0x6f,0xfd,0x94,0xfd,0xf7,0xfe,0xba,0xfe,0xaf,0xfe,0xaf,
0xfe,0xe5,0x0,0xa,0x1,0x24,0x5,0x4c,0x5,0x4c,0x8,0x57,0x8,0x88,0x9,0x16,
0x9,0x2b,0xa,0x7e,0x9,0x7e,0xa,0xe5,0x9,0xc2,0x9,0x27,0x9,0x7d,0x9,0x31,
0x9,0x41,0x9,0x92,0x9,0x39,0x7,0xb4,0x7,0xc9,0x4,0x19,0x5,0x5a,0x3,0x83,
0x3,0x94,0x3,0x46,0x3,0xab,0x4,0xfc,0x3,0xec,0x4,0x6a,0x4,0x26,0x4,0xd3,
0x3,0xb5,0x0,0x9d,0x0,0xc0,0xfb,0xda,0xfb,0x42,0xf9,0x32,0xf9,0x57,0xf8,0x68,
0xf8,0x7e,0xf7,0xec,0xf7,0x1a,0xf7,0xbe,0xf7,0xd4,0xf7,0xd4,0xf8,0xbf,0xf9,0xc9,
0xfa,0xf9,0xf9,0xa4,0xfa,0xf,0xf9,0x9d,0xf9,0xa,0xf9,0xb4,0xf9,0x47,0xf8,0xda,
0xf8,0xae,0xf8,0xcc,0xf8,0x32,0xfb,0xf5,0xfa,0x29,0xfd,0xc8,0xfc,0x37,0xff,0x84,
0xfe,0xe,0x1,0x6f,0x0,0x2c,0x2,0xe9,0x1,0xfe,0x3,0x72,0x3,0xa8,0x5,0xd7,
0x4,0x2b,0x7,0x78,0x6,0xf5,0x8,0x14,0x8,0xed,0x9,0xc7,0x8,0x36,0xa,0x2a,
0x9,0x43,0xa,0x74,0x9,0x40,0xa,0x73,0x9,0xef,0x9,0x35,0x9,0x9,0x9,0xe6,
0x8,0x80,0x7,0x3,0x8,0x69,0x4,0x37,0x5,0x9e,0x0,0x7d,0x1,0xd9,0xfd,0xb8,
0xfe,0x44,0xfc,0x1c,0xfd,0x31,0xfb,0xe1,0xfb,0x6c,0xf9,0xee,0xf9,0xd0,0xf7,0x48,
0xf8,0x21,0xf7,0x86,0xf7,0xb7,0xf6,0x12,0xf7,0xb2,0xf7,0x3c,0xf8,0x99,0xf8,0x72,
0xf9,0x8b,0xf8,0x53,0xf9,0xdb,0xf9,0x20,0xfa,0x5c,0xfa,0x7b,0xfa,0x45,0xfa,0x91,
0xfa,0x24,0xfd,0x58,0xfd,0x6a,0x0,0x6f,0x0,0x21,0x2,0xd9,0x1,0x14,0x3,0x7d,
0x2,0x65,0x3,0xb0,0x2,0x45,0x4,0x64,0x3,0xbf,0x4,0xc7,0x3,0x5b,0x3,0x76,
0x2,0x4f,0x1,0x96,0x0,0xe5,0xff,0x64,0xff,0xe5,0xff,0x2f,0xff,0xff,0x0,0x1b,
0x0,0x9c,0x1,0xea,0x0,0x98,0xff,0xdd,0xfe,0x14,0xfc,0xa0,0xfb,0x77,0xfb,0xcf,
0xfb,0x36,0xfd,0xf2,0xfd,0x4c,0xff,0x2e,0x0,0xa,0x2,0x37,0x3,0xf2,0x2,0x20,
0x4,0x71,0x1,0x24,0x2,0xd4,0xff,0x25,0x0,0x6,0x0,0x68,0x0,0x88,0x3,0xca,
0x3,0x15,0x6,0x16,0x6,0xa4,0x3,0xfe,0x3,0x9f,0xfe,0x5a,0xff,0x52,0xf9,0xe3,
0xf9,0x99,0xf6,0xea,0xf6,0xb0,0xf7,0xc7,0xf7,0xf9,0xf8,0xc7,0xf8,0xb4,0xf8,0x6b,
0xf8,0x94,0xf7,0x81,0xf7,0x7a,0xf7,0x92,0xf7,0x83,0xfa,0x9f,0xfa,0x26,0x0,0x40,
0x0,0x64,0x6,0x5c,0x6,0x6b,0xa,0x46,0xa,0xcc,0xb,0xb2,0xb,0xfb,0xc,0xf8,
0xc,0x87,0xd,0xa9,0xd,0x79,0xc,0x7a,0xc,0x5e,0xb,0x12,0xb,0xbd,0xb,0x6c,
0xb,0xc5,0xc,0x61,0xc,0x24,0xc,0xb7,0xb,0x22,0xa,0x1b,0xa,0x44,0x7,0x95,
0x7,0x36,0x3,0x70,0x3,0x7d,0xff,0x38,0xff,0xf,0xfb,0x65,0xfa,0xd7,0xf4,0x66,
0xf4,0x6e,0xef,0x32,0xef,0x32,0xed,0xd4,0xec,0x20,0xef,0xe0,0xee,0x40,0xf2,0x4a,
0xf2,0x42,0xf4,0x5f,0xf4,0xa8,0xf6,0xc9,0xf6,0x29,0xf7,0x6d,0xf7,0xb1,0xf6,0xde,
0xf6,0xfc,0xf9,0xfd,0xf9,0x86,0xfe,0xc9,0xfe,0x3e,0x2,0x8e,0x2,0x73,0x5,0x8e,
0x5,0xf2,0x6,0x36,0x7,0xa8,0x8,0xc4,0x8,0xc8,0xa,0x8a,0xa,0x50,0xb,0x4b,
0xb,0xd0,0xa,0xfa,0xa,0xba,0x9,0xd5,0x9,0x66,0x8,0x50,0x8,0x39,0x6,0xb7,
0x5,0xf6,0x1,0x76,0x1,0xf9,0xfc,0xe4,0xfc,0xd5,0xf9,0xdd,0xf9,0xc9,0xf9,0xbe,
0xf9,0xd,0xfb,0x2,0xfb,0x2b,0xfc,0x2a,0xfc,0xdd,0xfc,0xd4,0xfc,0xd1,0xfa,0x9c,
0xfa,0x6,0xf8,0xb9,0xf7,0x3c,0xf9,0x9,0xf9,0x93,0xfd,0x53,0xfd,0x50,0x2,0xf8,
0x1,0x63,0x5,0x74,0x5,0xe8,0x5,0x68,0x6,0xf6,0x4,0x50,0x5,0xf9,0x3,0xf7,
0x3,0xde,0x4,0x50,0x4,0x9,0x6,0xf7,0x4,0x10,0x5,0x2a,0x4,0x34,0x4,0xb3,
0x3,0xbe,0x3,0x8e,0x3,0xa6,0x2,0xd6,0x2,0x83,0x1,0xba,0x1,0xdb,0xff,0xed,
0xff,0x85,0xfd,0x98,0xfd,0xb3,0xf9,0xde,0xf9,0x3e,0xf6,0x7b,0xf6,0x56,0xf6,0x5d,
0xf6,0x99,0xf6,0xb6,0xf6,0x18,0xf5,0xe4,0xf5,0x48,0xf4,0x47,0xf5,0x37,0xf5,0xe,
0xf6,0x2e,0xf9,0x5c,0xfa,0x1,0xfe,0x77,0xff,0x80,0x0,0xb3,0x1,0x4b,0x1,0x11,
0x2,0xa8,0x0,0xd,0x1,0x70,0x0,0x96,0x0,0x23,0x2,0x4e,0x2,0x57,0x4,0x7d,
0x4,0x85,0x6,0x5d,0x6,0x77,0x7,0xc,0x7,0x9e,0x7,0xca,0x6,0x7e,0x8,0x26,
0x7,0x92,0x8,0x5d,0x7,0xd,0x8,0x8,0x7,0x41,0x7,0xef,0x5,0xab,0x5,0x62,
0x4,0x75,0x5,0x75,0x4,0x4f,0x6,0x75,0x5,0x75,0x5,0xca,0x4,0x86,0x2,0xfb,
0x1,0x10,0x0,0xc3,0xff,0xf8,0xff,0x3,0x0,0xb,0x0,0x3e,0x0,0x43,0xff,0xa9,
0xff,0xd5,0xfd,0x65,0xfe,0xd6,0xfa,0x58,0xfb,0xc3,0xf8,0x50,0xf9,0xad,0xf8,0x73,
0xf9,0x8a,0xf8,0x5c,0xf9,0x27,0xf8,0xb7,0xf8,0x88,0xf7,0xf0,0xf7,0x4e,0xf7,0xd5,
0xf7,0x3a,0xf7,0xc6,0xf7,0x46,0xf7,0x8c,0xf7,0x5d,0xf9,0x53,0xf9,0xb9,0xfb,0xc4,
0xfb,0x3f,0xfe,0xc6,0xfe,0x95,0x2,0x5a,0x3,0xde,0x4,0x6e,0x5,0x8f,0x4,0xfa,
0x4,0xae,0x4,0x13,0x5,0x48,0x6,0x61,0x6,0xd2,0x9,0xa9,0x9,0x6,0xc,0xfa,
0xb,0x2c,0xb,0xfd,0xa,0xc9,0x8,0x63,0x8,0x55,0x5,0x1b,0x5,0x5f,0x4,0x4,
0x4,0x98,0x6,0x36,0x6,0x82,0x8,0x8b,0x8,0xd5,0x9,0x96,0x9,0xa8,0x9,0xf,
0x9,0x43,0x8,0xd9,0x7,0x48,0x7,0x99,0x6,0x30,0x5,0x71,0x4,0xe0,0x2,0xa9,
0x2,0xd2,0x1,0xa9,0x1,0x53,0x0,0x1b,0x0,0x5a,0xfe,0x48,0xfe,0x6a,0xfd,0x4e,
0xfd,0xa6,0xfc,0xb9,0xfc,0x75,0xf9,0xce,0xf9,0x6b,0xf5,0xae,0xf5,0x59,0xf3,0xa0,
0xf3,0x5a,0xf2,0xd5,0xf2,0x85,0xf3,0xf6,0xf3,0x73,0xf5,0xd9,0xf5,0x87,0xf3,0xf4,
0xf3,0x1b,0xf0,0x50,0xf0,0x37,0xee,0x83,0xee,0x14,0xee,0x2,0xef,0x65,0xf0,0xa3,
0xf1,0x41,0xf3,0x38,0xf4,0xfe,0xf4,0x85,0xf5,0x5b,0xf5,0xa5,0xf5,0x7c,0xf6,0xd9,
0xf6,0xc7,0xfb,0x10,0xfc,0x50,0x2,0x4f,0x2,0x5,0x7,0xe8,0x6,0xeb,0x9,0xb5,
0x9,0xe7,0x9,0x74,0x9,0x49,0x8,0xa6,0x7,0x59,0x6,0xa7,0x5,0x1e,0x6,0x64,
0x5,0x8,0x9,0x36,0x8,0x73,0x9,0xb2,0x8,0xcc,0x5,0x4c,0x5,0xf2,0x1,0x96,
0x1,0xc8,0xfe,0x62,0xfe,0x74,0xfe,0xe4,0xfd,0x35,0x1,0x91,0x0,0xe9,0x4,0x4e,
0x4,0xf5,0x7,0x6a,0x7,0x4f,0x7,0xf9,0x6,0x43,0x5,0x14,0x5,0xa8,0x5,0x47,
0x5,0xc2,0x6,0x11,0x6,0xea,0x7,0x22,0x7,0xf,0x9,0xa3,0x8,0x9e,0x9,0xa1,
0x9,0x19,0xa,0x3a,0xa,0xa7,0xa,0xc6,0xa,0xfe,0xb,0xc7,0xb,0xd6,0xb,0x5f,
0xb,0x4c,0x7,0x7e,0x7,0x19,0x1,0xff,0x1,0x73,0xfc,0x6a,0xfd,0x38,0xf9,0xb,
0xfa,0xe,0xf6,0x8b,0xf6,0xbf,0xf3,0xd,0xf4,0xbf,0xf2,0x6a,0xf3,0xf3,0xef,0xef,
0xf0,0x4f,0xec,0x54,0xed,0x42,0xeb,0x39,0xec,0x80,0xec,0x61,0xed,0xda,0xee,0xf6,
0xef,0x97,0xf0,0xb,0xf2,0x9f,0xf3,0xb5,0xf4,0xc1,0xf8,0x23,0xf9,0x33,0xfa,0x6c,
0xfa,0xa8,0xfa,0xd9,0xfa,0x65,0x0,0x3f,0x0,0xfc,0x8,0x8a,0x8,0x1e,0x12,0x90,
0x11,0xc2,0x18,0x3b,0x18,0x4a,0x1a,0xde,0x19,0x35,0x18,0xde,0x17,0x6f,0x13,0x2,
0x13,0x1d,0x10,0x52,0xf,0xc6,0xf,0xe5,0xe,0x13,0xf,0x9c,0xe,0x7a,0xf,0x28,
0xf,0xf0,0xe,0x95,0xe,0xb8,0x9,0x59,0x9,0xb1,0x3,0x7,0x3,0xda,0xfe,0x24,
0xfe,0xea,0xfa,0x4a,0xfa,0x51,0xf8,0x77,0xf7,0xb6,0xf4,0x1d,0xf4,0x2e,0xef,0x8,
0xef,0xe2,0xe9,0x88,0xe9,0xa5,0xe6,0x42,0xe6,0xf4,0xe5,0xfa,0xe5,0x87,0xe8,0xaa,
0xe8,0x1c,0xed,0x36,0xed,0x52,0xef,0xa1,0xef,0xf6,0xef,0x9e,0xf0,0xa2,0xf2,0x84,
0xf3,0x16,0xf7,0xc5,0xf7,0xfa,0xfc,0x67,0xfd,0x52,0x2,0xed,0x2,0x8,0x6,0xcb,
0x6,0xdd,0x9,0x9c,0xa,0x2e,0xd,0x2,0xe,0x2e,0x11,0xc6,0x11,0x73,0x15,0xc1,
0x15,0x84,0x16,0xf3,0x16,0x95,0x16,0xd7,0x16,0xca,0x16,0x9f,0x16,0xde,0x16,0xaf,
0x16,0x7e,0x18,0x55,0x18,0xd5,0x17,0xab,0x17,0x43,0x12,0x18,0x12,0x89,0x9,0x11,
0x9,0x2,0x0,0x64,0xff,0xa2,0xfa,0x22,0xfa,0x4e,0xf9,0xba,0xf8,0x4c,0xf7,0xad,
0xf6,0xe9,0xf2,0x65,0xf2,0x80,0xec,0xe5,0xeb,0xf3,0xe6,0x1e,0xe6,0xbf,0xe3,0xf9,
0xe2,0x71,0xe2,0xee,0xe1,0xc1,0xe3,0x35,0xe3,0x61,0xe5,0xa5,0xe4,0x98,0xe5,0xdc,
0xe4,0xe7,0xe5,0x3c,0xe5,0x1e,0xe8,0xa2,0xe7,0x7d,0xed,0x5c,0xed,0x84,0xf3,0x9b,
0xf3,0x85,0xf9,0xa8,0xf9,0x28,0x1,0x77,0x1,0x91,0x7,0x42,0x8,0x7d,0xc,0x62,
0xd,0xdb,0x11,0x76,0x12,0xe4,0x16,0x31,0x17,0x5,0x1c,0x6a,0x1c,0xd4,0x1f,0x67,
0x20,0x67,0x20,0xb,0x21,0x6d,0x1e,0x12,0x1f,0xec,0x1a,0x81,0x1b,0xa8,0x18,0x32,
0x19,0x4c,0x18,0xbe,0x18,0x91,0x17,0xc7,0x17,0x89,0x14,0xbe,0x14,0xed,0xd,0x2a,
0xe,0x31,0x6,0xf,0x6,0xbc,0xfe,0x70,0xfe,0x2a,0xf7,0x1e,0xf7,0x93,0xf2,0x81,
0xf2,0xf6,0xef,0xd5,0xef,0x80,0xec,0x65,0xec,0x70,0xe9,0x20,0xe9,0x93,0xe6,0x56,
0xe6,0xa4,0xe4,0x9a,0xe4,0x2d,0xe5,0xe8,0xe4,0x85,0xe7,0x2d,0xe7,0x6c,0xea,0x75,
0xea,0xb1,0xeb,0x7,0xec,0x6f,0xec,0xc0,0xec,0x4,0xef,0x1c,0xef,0x23,0xf3,0x0,
0xf3,0x6c,0xf9,0x3d,0xf9,0xed,0xff,0xe6,0xff,0x78,0x4,0x90,0x4,0x86,0x8,0x89,
0x8,0xd0,0xb,0xc5,0xb,0xcd,0xe,0xc3,0xe,0xcb,0x11,0xb8,0x11,0x86,0x13,0x94,
0x13,0x95,0x15,0xcd,0x15,0x86,0x17,0xb5,0x17,0xe6,0x17,0xed,0x17,0xaa,0x17,0x73,
0x17,0xb,0x17,0xb8,0x16,0xd9,0x16,0xae,0x16,0x59,0x15,0x3c,0x15,0x2a,0x10,0xf,
0x10,0xbc,0x9,0xcb,0x9,0x6d,0x3,0x76,0x3,0xdb,0xfd,0xcf,0xfd,0xd6,0xf9,0xf9,
0xf9,0xee,0xf5,0x3b,0xf6,0x24,0xf2,0xa0,0xf2,0x64,0xee,0x8,0xef,0xd4,0xea,0xb,
0xeb,0x40,0xe8,0x4,0xe8,0x29,0xe5,0x24,0xe5,0xf3,0xe2,0x9,0xe3,0x7a,0xe3,0x63,
0xe3,0x36,0xe5,0x4b,0xe5,0x45,0xe8,0x7c,0xe8,0xb7,0xec,0xdb,0xec,0x0,0xf2,0x7e,
0xf2,0x3c,0xf7,0x2c,0xf8,0x34,0xfb,0xf7,0xfb,0x44,0x0,0x80,0x0,0x3,0x7,0xcf,
0x6,0xf9,0xc,0xaa,0xc,0x9f,0x11,0x97,0x11,0x84,0x14,0x89,0x14,0x21,0x17,0xa6,
0x16,0x71,0x1a,0x94,0x19,0xb7,0x1c,0xc9,0x1b,0x5b,0x1e,0x6a,0x1d,0xe4,0x1d,0x1e,
0x1d,0x99,0x19,0xeb,0x18,0x4e,0x14,0x7c,0x13,0x74,0xf,0x9c,0xe,0x76,0xb,0xa9,
0xa,0x75,0x8,0xce,0x7,0x8a,0x4,0x2c,0x4,0xa,0xff,0xa1,0xfe,0x87,0xf8,0x10,
0xf8,0x88,0xf2,0x63,0xf2,0xeb,0xed,0xce,0xed,0x74,0xea,0x31,0xea,0xc,0xe9,0x10,
0xe9,0x35,0xe8,0x98,0xe8,0x3c,0xe6,0xd7,0xe6,0x3d,0xe4,0xa,0xe5,0x5d,0xe3,0x44,
0xe4,0xd1,0xe5,0x9c,0xe6,0x7b,0xea,0xe5,0xea,0x4f,0xee,0x7a,0xee,0xb4,0xf2,0x31,
0xf3,0x53,0xf7,0x29,0xf8,0xb9,0xfb,0x76,0xfc,0xbd,0x0,0x4c,0x1,0x5,0x4,0x9f,
0x4,0x85,0x7,0x40,0x8,0x4d,0xd,0xfa,0xd,0xed,0x11,0x56,0x12,0x3,0x15,0x33,
0x15,0x45,0x16,0x39,0x16,0x40,0x15,0xe9,0x14,0x3a,0x15,0xdd,0x14,0xaa,0x16,0x6a,
0x16,0xf3,0x17,0xa9,0x17,0x30,0x17,0xe9,0x16,0x28,0x12,0xf9,0x11,0x8d,0xb,0x3b,
0xb,0xa4,0x7,0xfd,0x6,0xf9,0x5,0x3f,0x5,0xca,0x3,0x3f,0x3,0xa3,0x0,0x15,
0x0,0x21,0xfd,0x76,0xfc,0xc6,0xf8,0x37,0xf8,0xe5,0xf4,0x81,0xf4,0xd9,0xf1,0x9d,
0xf1,0x7b,0xee,0x56,0xee,0xc5,0xec,0xa3,0xec,0x8f,0xec,0x94,0xec,0x7b,0xec,0x75,
0xec,0xd4,0xed,0x9f,0xed,0xce,0xef,0xf1,0xef,0x5e,0xf2,0xd4,0xf2,0x91,0xf5,0xd4,
0xf5,0xab,0xf7,0xe2,0xf7,0x59,0xfa,0x98,0xfa,0xee,0xfd,0xd,0xfe,0x97,0x1,0xd7,
0x1,0x56,0x6,0xaa,0x6,0x22,0xa,0x37,0xa,0xac,0xc,0x81,0xc,0xc7,0xe,0x6a,
0xe,0xfb,0xe,0xa9,0xe,0x55,0xf,0x43,0xf,0x64,0x10,0x67,0x10,0xe4,0xf,0xf2,
0xf,0x6e,0xe,0x80,0xe,0x2e,0xc,0x2f,0xc,0xe8,0x9,0x4,0xa,0x0,0x9,0x35,
0x9,0x3c,0x8,0x7d,0x8,0xe,0x6,0x7e,0x6,0x9,0x2,0x55,0x2,0x79,0xfd,0x6f,
0xfd,0xd1,0xf8,0xb1,0xf8,0xf7,0xf3,0xb7,0xf3,0x6b,0xf1,0x32,0xf1,0x25,0xf0,0x54,
0xf0,0xd5,0xed,0x20,0xee,0x86,0xec,0x91,0xec,0x59,0xec,0x4f,0xec,0xa5,0xec,0xcf,
0xec,0x76,0xee,0xe6,0xee,0x37,0xf1,0xc4,0xf1,0xce,0xf3,0x5c,0xf4,0x7a,0xf5,0xeb,
0xf5,0x97,0xf7,0xaa,0xf7,0x5b,0xfb,0x4a,0xfb,0xf,0xff,0x24,0xff,0x21,0x3,0x1f,
0x3,0xaa,0x7,0xa1,0x7,0xb,0xa,0x34,0xa,0xba,0xa,0xd2,0xa,0x56,0xc,0x52,
0xc,0x85,0xf,0xa0,0xf,0xdb,0x11,0x0,0x12,0xfc,0x11,0x6,0x12,0xa4,0x11,0x7d,
0x11,0xc1,0x10,0x78,0x10,0xef,0xf,0x8f,0xf,0x82,0xf,0xe5,0xe,0x5f,0xc,0xbc,
0xb,0x57,0x7,0xf4,0x6,0xc3,0x2,0x7d,0x2,0xa3,0xff,0x85,0xff,0x69,0xff,0x70,
0xff,0x92,0xfe,0x7d,0xfe,0x6a,0xfb,0x68,0xfb,0xf4,0xf8,0xa,0xf9,0x14,0xf7,0xdb,
0xf6,0x7f,0xf7,0x19,0xf7,0x6a,0xfa,0x2,0xfa,0x56,0xfa,0xdb,0xf9,0xb9,0xf6,0x7b,
0xf6,0x1,0xf3,0xec,0xf2,0x7e,0xf1,0x1e,0xf1,0xd6,0xf2,0x87,0xf2,0xbd,0xf4,0xf3,
0xf4,0x1f,0xf6,0x96,0xf6,0x4e,0xf7,0xb0,0xf7,0xa1,0xf8,0xab,0xf8,0x60,0xfb,0xf4,
0xfa,0xb3,0xfe,0x52,0xfe,0x6e,0x0,0x84,0x0,0xad,0xff,0xe9,0xff,0xf0,0xfd,0x13,
0xfe,0x14,0xfe,0x48,0xfe,0x56,0x0,0xa4,0x0,0x41,0x4,0x9e,0x4,0xe0,0x8,0x46,
0x9,0x24,0xb,0x71,0xb,0x5f,0xa,0x9c,0xa,0x41,0x8,0x87,0x8,0x3b,0x7,0x77,
0x7,0x3d,0x8,0x89,0x8,0x1,0x9,0x69,0x9,0x14,0x9,0x45,0x9,0x1d,0x8,0xc,
0x8,0x57,0x5,0x6f,0x5,0x90,0x3,0xec,0x3,0x13,0x3,0x5c,0x3,0xe3,0x2,0xd7,
0x2,0x7b,0x3,0x2e,0x3,0x43,0x2,0xf5,0x1,0xcb,0xfe,0xbd,0xfe,0x29,0xfb,0x76,
0xfb,0x6,0xf8,0x4c,0xf8,0x88,0xf6,0x6a,0xf6,0x2c,0xf6,0xf3,0xf5,0xa2,0xf6,0x81,
0xf6,0xfe,0xf7,0xde,0xf7,0xe5,0xf7,0xf5,0xf7,0x70,0xf6,0xa9,0xf6,0xcd,0xf4,0xe4,
0xf4,0xd9,0xf3,0xe6,0xf3,0x2a,0xf5,0x4e,0xf5,0xbb,0xf6,0xe4,0xf6,0x8e,0xf7,0xb1,
0xf7,0x31,0xf9,0x49,0xf9,0xd2,0xfa,0x11,0xfb,0xd7,0xfc,0x4e,0xfd,0xe0,0xff,0x66,
0x0,0xda,0x2,0xa2,0x3,0xc7,0x5,0xbb,0x6,0xaf,0x8,0x55,0x9,0x43,0xb,0xe6,
0xb,0x28,0xc,0xdc,0xc,0x37,0xb,0x4c,0xb,0x33,0xb,0xfa,0xa,0x61,0xc,0x65,
0xc,0xdb,0xd,0xa5,0xd,0x28,0xf,0xba,0xe,0xfd,0xd,0xbf,0xd,0x5f,0xa,0x8,
0xa,0xa9,0x6,0x16,0x6,0xd1,0x4,0x1e,0x4,0xda,0x4,0xe7,0x3,0xe4,0x3,0xf2,
0x2,0x54,0x1,0x97,0x0,0x66,0xfe,0x85,0xfd,0xa2,0xfb,0x9f,0xfa,0x59,0xfa,0x8e,
0xf9,0x98,0xf9,0xf2,0xf8,0x7,0xf8,0x60,0xf7,0xf3,0xf5,0x59,0xf5,0x88,0xf3,0xf3,
0xf2,0x55,0xf3,0xbc,0xf2,0xe0,0xf5,0x63,0xf5,0x1a,0xf8,0xc5,0xf7,0xee,0xf8,0xa1,
0xf8,0x26,0xf8,0xc8,0xf7,0x5e,0xf7,0x2a,0xf7,0x74,0xf8,0xb1,0xf8,0xd,0xfa,0x7a,
0xfa,0xb8,0xfb,0x7,0xfc,0x1c,0xfd,0x9a,0xfd,0x25,0xfe,0x13,0xff,0x2d,0x0,0x39,
0x1,0x2,0x2,0xea,0x2,0x5f,0x3,0x35,0x4,0x3b,0x5,0xe,0x6,0xec,0x6,0xa3,
0x7,0x1e,0x9,0xa1,0x9,0x5b,0xb,0xcf,0xb,0x89,0xc,0xe2,0xc,0xe2,0xc,0xdc,
0xc,0xa5,0xb,0xa6,0xb,0xe,0xa,0x88,0xa,0xa1,0x9,0x1a,0xa,0xff,0x9,0x21,
0xa,0x21,0xb,0x15,0xb,0xbc,0xa,0x5b,0xa,0x94,0x7,0xe6,0x6,0xcc,0x3,0x7,
0x3,0x63,0x0,0x73,0xff,0x36,0xfe,0x43,0xfd,0xb3,0xfc,0xda,0xfb,0xe2,0xf9,0x8,
0xf9,0x7b,0xf6,0xd7,0xf5,0xc7,0xf3,0x35,0xf3,0xfe,0xf2,0x37,0xf2,0x9e,0xf4,0x44,
0xf4,0x9c,0xf6,0xeb,0xf6,0x90,0xf7,0xd9,0xf7,0xbc,0xf7,0xd6,0xf7,0xcb,0xf7,0xe1,
0xf7,0x3e,0xf8,0x67,0xf8,0x18,0xfa,0x7b,0xfa,0xe9,0xfd,0x56,0xfe,0x41,0x1,0x9c,
0x1,0xc7,0x3,0x21,0x4,0xde,0x6,0xf8,0x6,0xa2,0x8,0xb6,0x8,0x7a,0x9,0xf5,
0x9,0xb,0xa,0x85,0xa,0x9a,0x8,0xe7,0x8,0x28,0x7,0x8e,0x7,0x7c,0x6,0xb0,
0x6,0x61,0x5,0x4f,0x5,0x7e,0x4,0x88,0x4,0xa5,0x2,0xbd,0x2,0x27,0x0,0x2f,
0x0,0xfe,0xfd,0x14,0xfe,0x34,0xfb,0x39,0xfb,0xc2,0xf9,0x83,0xf9,0xcb,0xf9,0x6d,
0xf9,0x2c,0xf9,0x16,0xf9,0xcf,0xf8,0xf7,0xf8,0xa1,0xf8,0x79,0xf8,0x82,0xf8,0xf7,
0xf7,0xba,0xf9,0x41,0xf9,0x1e,0xfc,0xd8,0xfb,0xa1,0xfe,0x90,0xfe,0x95,0xfe,0xe7,
0xfe,0xef,0xfa,0x8f,0xfb,0x52,0xf7,0xe0,0xf7,0xcc,0xf6,0x21,0xf7,0x4,0xf9,0x4d,
0xf9,0xff,0xfb,0x43,0xfc,0x46,0xfe,0x71,0xfe,0x3b,0xff,0x6d,0xff,0x59,0xff,0x8a,
0xff,0xb8,0x0,0xd1,0x0,0x2f,0x3,0x71,0x3,0x26,0x5,0x7c,0x5,0x57,0x6,0x79,
0x6,0x32,0x6,0x64,0x6,0x90,0x6,0xe4,0x6,0x28,0x9,0x4c,0x9,0xb6,0xb,0xb2,
0xb,0x3b,0xd,0x14,0xd,0xb7,0xd,0x3b,0xd,0x3f,0xd,0xa4,0xc,0xba,0xc,0x5a,
0xc,0xf,0xb,0xd6,0xa,0x96,0x8,0x3c,0x8,0x11,0x6,0xa9,0x5,0x32,0x2,0xfb,
0x1,0xc9,0xfe,0xa1,0xfe,0x8b,0xfd,0x2e,0xfd,0x2a,0xfd,0x8c,0xfc,0x6e,0xfc,0xb1,
0xfb,0xe7,0xf9,0x81,0xf9,0x26,0xf6,0x40,0xf6,0x34,0xf3,0x39,0xf3,0xe1,0xf1,0xaa,
0xf1,0x42,0xf2,0x46,0xf2,0x14,0xf3,0x54,0xf3,0x1a,0xf4,0x67,0xf4,0x91,0xf5,0x13,
0xf6,0x9b,0xf6,0x61,0xf7,0x70,0xf8,0x1e,0xf9,0xd1,0xfa,0x17,0xfb,0x32,0xfc,0x54,
0xfc,0x93,0xfd,0xec,0xfd,0x77,0xfe,0x6,0xff,0x3e,0xff,0xe6,0xff,0x3f,0x2,0xab,
0x2,0x9b,0x6,0x98,0x6,0xac,0xa,0xbe,0xa,0xc6,0xc,0xe,0xd,0xa2,0xb,0xb3,
0xb,0x8c,0x9,0x79,0x9,0xab,0x8,0x6d,0x8,0x48,0x9,0xa1,0x8,0x1,0xb,0x3b,
0xa,0xac,0xb,0xfa,0xa,0x6a,0x9,0xcb,0x8,0xdd,0x5,0x62,0x5,0x58,0x4,0xc2,
0x3,0xb9,0x4,0xfd,0x3,0xf3,0x4,0x66,0x4,0xb5,0x4,0x42,0x4,0x4e,0x2,0xdc,
0x1,0x6,0xfd,0xc8,0xfc,0x20,0xf8,0x2b,0xf8,0x7a,0xf6,0xba,0xf6,0x56,0xf8,0x95,
0xf8,0x22,0xfa,0x4a,0xfa,0x86,0xf8,0xa5,0xf8,0x77,0xf5,0x71,0xf5,0xa,0xf3,0x20,
0xf3,0x83,0xf2,0xfc,0xf2,0xe3,0xf4,0x52,0xf5,0x29,0xf8,0x6f,0xf8,0xfb,0xfa,0x5e,
0xfb,0xce,0xfc,0xf,0xfd,0x58,0xfd,0x7a,0xfd,0xc0,0xfd,0x23,0xfe,0x4e,0xfd,0xc0,
0xfd,0xeb,0xfc,0x17,0xfd,0x62,0xff,0x64,0xff,0x67,0x3,0x7c,0x3,0x30,0x7,0x6d,
0x7,0xa4,0x9,0xe9,0x9,0x66,0x9,0xb6,0x9,0x1a,0x8,0x96,0x8,0x97,0x7,0x13,
0x8,0x53,0x8,0x89,0x8,0xba,0x9,0x86,0x9,0xb7,0x9,0x22,0x9,0x1d,0x8,0x88,
0x7,0x30,0x6,0xe2,0x5,0xbd,0x4,0x88,0x4,0x91,0x4,0x46,0x4,0xcb,0x4,0x98,
0x4,0x8d,0x3,0x9f,0x3,0x73,0x0,0x70,0x0,0x21,0xfd,0xb7,0xfc,0x86,0xfb,0xee,
0xfa,0x7c,0xfb,0xeb,0xfa,0xd2,0xfb,0x67,0xfb,0x25,0xfb,0x12,0xfb,0x82,0xf9,0xa2,
0xf9,0xe3,0xf8,0xfb,0xf8,0xe3,0xf8,0xe8,0xf8,0xa5,0xf8,0x9f,0xf8,0x32,0xf9,0x57,
0xf9,0x1c,0xfa,0x5e,0xfa,0xd9,0xfa,0xfe,0xfa,0x47,0xfb,0x8f,0xfb,0xa3,0xfb,0xff,
0xfb,0x68,0xfd,0x8b,0xfd,0xd1,0xff,0x15,0x0,0xb1,0x1,0x38,0x2,0xa0,0x3,0x12,
0x4,0x16,0x5,0x61,0x5,0xca,0x5,0xdc,0x5,0xa3,0x5,0x95,0x5,0xf9,0x4,0x9,
0x5,0x74,0x5,0x91,0x5,0x3,0x6,0x4e,0x6,0x6b,0x5,0xcd,0x5,0x2d,0x5,0x50,
0x5,0x52,0x5,0xa9,0x5,0xa2,0x4,0x45,0x5,0xd1,0x2,0xef,0x2,0xce,0x0,0x87,
0x0,0x2b,0xff,0x32,0xff,0x23,0xfd,0x62,0xfd,0x17,0xfc,0x4e,0xfc,0xf,0xfd,0x50,
0xfd,0x8b,0xfd,0xea,0xfd,0x8,0xfd,0x54,0xfd,0x5e,0xfd,0x5d,0xfd,0x8c,0xfe,0x63,
0xfe,0x84,0xff,0x20,0xff,0x39,0x0,0x80,0xff,0xd9,0x0,0x33,0x0,0xdb,0xff,0x69,
0xff,0x90,0xfd,0x38,0xfd,0xd1,0xfc,0xa1,0xfc,0x30,0xfd,0xe9,0xfc,0x35,0xfd,0xe8,
0xfc,0xa3,0xfd,0x87,0xfd,0x91,0xfe,0x44,0xfe,0xf6,0xfe,0x6a,0xfe,0xb1,0xfd,0x9,
0xfd,0x5d,0xfb,0x8d,0xfa,0xd0,0xf9,0x6f,0xf9,0x5c,0xf9,0x7e,0xf9,0x8e,0xfa,0x78,
0xfa,0xb5,0xfd,0x7b,0xfd,0xad,0x0,0x97,0x0,0x7a,0x1,0x9f,0x1,0xa7,0x0,0x52,
0x1,0x86,0x0,0x5c,0x1,0xa6,0x1,0x2e,0x2,0x52,0x3,0xa6,0x3,0x3d,0x6,0x59,
0x6,0x4d,0x8,0x69,0x8,0x35,0x7,0x8b,0x7,0x10,0x6,0x67,0x6,0xa1,0x6,0x19,
0x7,0x74,0x7,0xe4,0x7,0xf3,0x7,0xdd,0x7,0xf4,0x6,0xd7,0x6,0xf5,0x3,0x1e,
0x4,0x5c,0x0,0x63,0x0,0xcf,0xfd,0xc5,0xfd,0xd5,0xfd,0xce,0xfd,0xe6,0xff,0xbc,
0xff,0x26,0x1,0xf6,0x0,0x49,0x0,0x22,0x0,0xe0,0xfe,0xc5,0xfe,0xc0,0xfd,0xa8,
0xfd,0x64,0xfc,0x51,0xfc,0x9a,0xfb,0xa7,0xfb,0xfc,0xfa,0xca,0xfa,0x1d,0xf9,0x9b,
0xf8,0xdf,0xf7,0xaa,0xf7,0x6,0xf9,0xee,0xf8,0x49,0xfb,0xa,0xfb,0xf,0xfd,0x2a,
0xfd,0xf3,0xfd,0x39,0xfe,0xc1,0xfe,0xd1,0xfe,0x5e,0xff,0x86,0xff,0xe8,0xff,0x24,
0x0,0xd3,0x1,0xe9,0x1,0x2a,0x3,0x1c,0x3,0xee,0x1,0xc7,0x1,0x7f,0x0,0x87,
0x0,0x4b,0x0,0x80,0x0,0x6c,0x1,0x81,0x1,0xf5,0x3,0x34,0x4,0x3a,0x6,0xce,
0x6,0xd3,0x6,0x4a,0x7,0x39,0x5,0x70,0x5,0x67,0x2,0x80,0x2,0x58,0x1,0x39,
0x1,0x9b,0x2,0x6b,0x2,0x23,0x4,0x63,0x4,0xf9,0x4,0x98,0x5,0xe5,0x4,0x27,
0x5,0x9c,0x3,0x48,0x3,0xd8,0x1,0x64,0x1,0xfa,0x0,0x95,0x0,0xac,0x0,0x30,
0x0,0xad,0xff,0x23,0xff,0x60,0xfe,0xe,0xfe,0x7e,0xfd,0x60,0xfd,0xeb,0xfc,0x7f,
0xfc,0xb8,0xfc,0xfa,0xfb,0xe0,0xfc,0x7e,0xfc,0x29,0xfc,0x46,0xfc,0x70,0xf9,0xaf,
0xf9,0x64,0xf6,0x94,0xf6,0x3a,0xf5,0x37,0xf5,0xcf,0xf5,0xc9,0xf5,0xe1,0xf7,0x17,
0xf8,0x5b,0xfa,0xa2,0xfa,0x99,0xfb,0x8,0xfc,0xa2,0xfc,0x5f,0xfd,0x11,0xfe,0xca,
0xfe,0x54,0xff,0xd1,0xff,0xdb,0x0,0x23,0x1,0xd3,0x1,0x1,0x2,0x6,0x2,0x3e,
0x2,0x4d,0x3,0x7f,0x3,0x69,0x5,0x9d,0x5,0xad,0x6,0xf6,0x6,0xe0,0x6,0x9,
0x7,0x84,0x6,0x8b,0x6,0x64,0x6,0x62,0x6,0x77,0x7,0x4f,0x7,0x4,0x9,0xba,
0x8,0x80,0x8,0x32,0x8,0xa9,0x5,0x8c,0x5,0x89,0x2,0xa9,0x2,0x5f,0xff,0x67,
0xff,0x8d,0xfc,0x86,0xfc,0x43,0xfb,0x5d,0xfb,0x7c,0xfa,0x68,0xfa,0x5a,0xf9,0x27,
0xf9,0x64,0xf8,0x56,0xf8,0xc1,0xf7,0xae,0xf7,0xf4,0xf7,0xf5,0xf7,0xc4,0xf8,0xf3,
0xf8,0xd9,0xf8,0x13,0xf9,0x17,0xf9,0x5d,0xf9,0x1d,0xfb,0x35,0xfb,0xa6,0xfd,0x9b,
0xfd,0x92,0xff,0xb9,0xff,0x80,0x1,0x6c,0x1,0x78,0x2,0x11,0x2,0x47,0x2,0x23,
0x2,0x14,0x3,0x3,0x3,0x5e,0x4,0x3e,0x4,0xd2,0x4,0xf6,0x4,0x54,0x5,0x66,
0x5,0x88,0x5,0x6d,0x5,0xfe,0x5,0x1a,0x6,0xdb,0x8,0xfe,0x8,0xe1,0xb,0xca,
0xb,0xdc,0xb,0xb1,0xb,0xf0,0x9,0xe1,0x9,0x50,0x7,0x72,0x7,0xdd,0x3,0x0,
0x4,0x8f,0x0,0xa3,0x0,0x35,0xfe,0x6c,0xfe,0x3e,0xfd,0x66,0xfd,0x0,0xfe,0xd2,
0xfd,0xe6,0xfe,0x9d,0xfe,0x6f,0xfe,0x45,0xfe,0x40,0xfd,0xfe,0xfc,0xb1,0xfb,0x24,
0xfb,0x5f,0xfa,0xdd,0xf9,0x9d,0xfa,0x7f,0xfa,0x59,0xfb,0x74,0xfb,0x66,0xfb,0x81,
0xfb,0x68,0xfb,0x67,0xfb,0x64,0xfb,0x34,0xfb,0xd4,0xfb,0x8f,0xfb,0xc,0xfd,0xdb,
0xfc,0xac,0xfd,0xb8,0xfd,0xe7,0xfd,0x21,0xfe,0xa2,0xfe,0x9b,0xfe,0x39,0xff,0xf8,
0xfe,0x50,0x0,0x1b,0x0,0x78,0x2,0x2a,0x2,0xde,0x3,0xb2,0x3,0xf7,0x3,0x27,
0x4,0xe,0x4,0x31,0x4,0x62,0x4,0x8c,0x4,0x15,0x5,0x56,0x5,0x20,0x6,0xe9,
0x5,0xa7,0x5,0x37,0x5,0x4d,0x3,0x37,0x3,0xdf,0x1,0xec,0x1,0x1a,0x2,0x28,
0x2,0xf2,0x1,0x4,0x2,0x8,0x1,0xc,0x1,0xe,0x0,0x1c,0x0,0x2e,0xff,0x25,
0xff,0x41,0xff,0x18,0xff,0xfe,0xff,0xfd,0xff,0x2b,0xff,0x48,0xff,0x71,0xfc,0xaa,
0xfc,0xfc,0xf9,0x67,0xfa,0xbc,0xf9,0x15,0xfa,0x3a,0xfc,0x81,0xfc,0x79,0xff,0xf0,
0xff,0x24,0x0,0xac,0x0,0xec,0xfd,0x59,0xfe,0xc9,0xfb,0x1,0xfc,0xf4,0xfb,0xdd,
0xfb,0xf9,0xfd,0xa5,0xfd,0xd2,0xff,0x3b,0xff,0x0,0x0,0x3a,0xff,0xcb,0xfe,0x4d,
0xfe,0xfb,0xfd,0xd1,0xfd,0xd0,0xfe,0x98,0xfe,0x49,0x0,0x1f,0x0,0x28,0x1,0x3b,
0x1,0xef,0x1,0xc8,0x1,0x98,0x2,0x6,0x2,0x5e,0x2,0x5,0x2,0x27,0x2,0x4a,
0x2,0x58,0x2,0x80,0x2,0x9e,0x1,0xa6,0x1,0xcb,0x0,0xea,0x0,0xf6,0x1,0x3d,
0x2,0x21,0x4,0xa0,0x4,0x22,0x5,0xba,0x5,0x97,0x4,0xe4,0x4,0x71,0x2,0x7b,
0x2,0xd3,0xfe,0x2d,0xff,0xae,0xfb,0x82,0xfc,0x1d,0xfb,0xe5,0xfb,0x5d,0xfc,0xfb,
0xfc,0x6b,0xfc,0x34,0xfd,0x19,0xfa,0xbe,0xfa,0x82,0xf7,0xb7,0xf7,0x76,0xf6,0xbb,
0xf6,0xd9,0xf6,0x1f,0xf7,0xaa,0xf8,0x67,0xf8,0x87,0xfb,0x24,0xfb,0xb1,0xfd,0xa1,
0xfd,0xae,0xfe,0x85,0xfe,0xdb,0xff,0x58,0xff,0x71,0x1,0xd9,0x0,0x84,0x2,0x11,
0x2,0x50,0x3,0x1b,0x3,0xd2,0x4,0xcf,0x4,0xe1,0x6,0xe3,0x6,0xf1,0x8,0xd5,
0x8,0x19,0xb,0xd9,0xa,0x22,0xc,0xce,0xb,0x7a,0xa,0x22,0xa,0xd2,0x7,0x87,
0x7,0x63,0x6,0x21,0x6,0x96,0x5,0x3d,0x5,0xdd,0x4,0x7c,0x4,0x2c,0x4,0xf9,
0x3,0x72,0x2,0x5d,0x2,0x30,0xff,0x2b,0xff,0xfa,0xfa,0x4c,0xfb,0xc2,0xf7,0x5e,
0xf8,0xca,0xf7,0x44,0xf8,0x70,0xf9,0xcb,0xf9,0xc6,0xf9,0x3b,0xfa,0xd2,0xf9,0x36,
0xfa,0x82,0xfa,0xbf,0xfa,0xa3,0xfa,0x0,0xfb,0x29,0xfb,0xc8,0xfb,0x51,0xfd,0xe8,
0xfd,0x65,0xff,0x86,0xff,0xb1,0xff,0x66,0xff,0xa9,0xfe,0x6d,0xfe,0xf5,0xfd,0xd5,
0xfd,0xc1,0xfe,0x75,0xfe,0x9e,0x0,0x44,0x0,0xc2,0x2,0x73,0x2,0xba,0x4,0x5b,
0x4,0xae,0x5,0x54,0x5,0x4f,0x5,0x8,0x5,0xa7,0x4,0x4a,0x4,0x69,0x4,0xb7,
0x3,0xc7,0x3,0xc2,0x2,0x2a,0x2,0x43,0x1,0xa1,0x0,0xf9,0xff,0x63,0x0,0xb8,
0xff,0x51,0x1,0xc2,0x0,0xed,0x1,0xa8,0x1,0x7e,0x0,0x68,0x0,0xae,0xfd,0xbc,
0xfd,0x4,0xfc,0x26,0xfc,0x65,0xfc,0xbc,0xfc,0xd5,0xfe,0x90,0xff,0xff,0x2,0xca,
0x3,0xd9,0x5,0x94,0x6,0x62,0x5,0x29,0x6,0xd8,0x3,0x51,0x4,0x5a,0x2,0x8a,
0x2,0x3f,0x0,0x8c,0x0,0x3a,0xff,0xa0,0xff,0x1c,0x0,0x9c,0x0,0x9f,0x0,0x11,
0x1,0xdd,0xff,0xe4,0xff,0x32,0xff,0xe,0xff,0x96,0xff,0x71,0xff,0xd6,0x0,0x6d,
0x0,0x57,0x1,0xd7,0x0,0xe7,0xff,0x7b,0xff,0xa1,0xfd,0x32,0xfd,0xb7,0xfb,0x41,
0xfb,0x81,0xfa,0xdd,0xf9,0x10,0xfb,0x60,0xfa,0x17,0xfd,0x9e,0xfc,0x61,0xfe,0xee,
0xfd,0xf6,0xfe,0x7a,0xfe,0xfa,0xff,0x8e,0xff,0x7b,0x0,0x5,0x0,0x4c,0x0,0xea,
0xff,0xb4,0x0,0x68,0x0,0x57,0x1,0x14,0x1,0x99,0x1,0xb9,0x1,0xc8,0x1,0x48,
0x2,0x83,0x1,0x18,0x2,0x8b,0x0,0x41,0x1,0x6d,0xff,0xff,0xff,0x9f,0xfe,0xcb,
0xfe,0xc6,0xfe,0xd6,0xfe,0xea,0xff,0xf5,0xff,0xf0,0x0,0x15,0x1,0x11,0x1,0x9b,
0x1,0x17,0x0,0xc3,0x0,0x8a,0xfe,0x38,0xff,0x21,0xfe,0xff,0xfe,0x35,0xff,0xd3,
0xff,0x2c,0x0,0x40,0x0,0x73,0x0,0x7d,0x0,0x3e,0x0,0x6b,0x0,0x2f,0xff,0x31,
0xff,0x48,0xfe,0x19,0xfe,0x83,0xff,0x66,0xff,0x49,0x2,0x57,0x2,0xd1,0x3,0xd1,
0x3,0xc4,0x2,0xa5,0x2,0x3c,0x0,0x24,0x0,0x6a,0xfd,0x2e,0xfd,0xf2,0xfa,0x7a,
0xfa,0xbd,0xfa,0x3a,0xfa,0x9d,0xfd,0xe0,0xfc,0xa3,0xff,0xc3,0xfe,0xe3,0xfd,0x9f,
0xfd,0xb6,0xfb,0x5,0xfc,0xce,0xfb,0x17,0xfc,0xc4,0xfc,0x11,0xfd,0x93,0xfe,0xd4,
0xfe,0xaa,0x1,0x9c,0x1,0xe1,0x3,0xd8,0x3,0xe0,0x3,0xff,0x3,0x79,0x2,0x9a,
0x2,0x74,0x1,0xdb,0x1,0x7e,0x2,0x40,0x3,0xa0,0x4,0x72,0x5,0xd6,0x5,0x8f,
0x6,0xdf,0x5,0x4c,0x6,0xa3,0x4,0xde,0x4,0x1,0x3,0x76,0x3,0xdc,0x2,0x39,
0x3,0x1,0x3,0xb2,0x2,0x9e,0x1,0x5,0x1,0xb6,0xff,0x79,0xff,0xb2,0xfd,0xca,
0xfd,0xe3,0xfb,0xb,0xfc,0x1c,0xfc,0x24,0xfc,0x66,0xfd,0x28,0xfd,0x15,0xfd,0xa6,
0xfc,0x54,0xfb,0xe8,0xfa,0x69,0xf9,0xf6,0xf8,0x64,0xf8,0xf4,0xf7,0x8d,0xf9,0x57,
0xf9,0x10,0xfc,0xff,0xfb,0xac,0xfd,0x95,0xfd,0x98,0xfd,0x73,0xfd,0x33,0xfc,0xe2,
0xfb,0x5a,0xfb,0x4,0xfb,0x72,0xfd,0x64,0xfd,0xb6,0x0,0xc5,0x0,0x47,0x1,0x49,
0x1,0xea,0xff,0xee,0xff,0xea,0xff,0xce,0xff,0xe0,0x1,0x9f,0x1,0x24,0x4,0x4,
0x4,0xf3,0x4,0x29,0x5,0x9b,0x4,0xee,0x4,0x5d,0x4,0x45,0x4,0xf2,0x2,0x94,
0x2,0xec,0x0,0xc0,0x0,0xad,0x2,0x52,0x2,0xfe,0x6,0x73,0x6,0x33,0x8,0x23,
0x8,0xad,0x6,0xb8,0x6,0x88,0x5,0x21,0x5,0x4b,0x4,0xcd,0x3,0x6e,0x2,0x1,
0x2,0x1a,0x1,0xe2,0x0,0x1b,0x1,0x4d,0x1,0x6f,0x1,0xb2,0x1,0x60,0x0,0xad,
0x0,0x57,0xff,0xd3,0xff,0x27,0x0,0x69,0x0,0x55,0x0,0x5f,0x0,0x5a,0xfe,0x78,
0xfe,0xc3,0xfb,0xe1,0xfb,0x36,0xf8,0x76,0xf8,0x49,0xf4,0xa1,0xf4,0xc8,0xf3,0xde,
0xf3,0x3f,0xf7,0x59,0xf7,0x64,0xfb,0xbd,0xfb,0xb,0xfe,0x5c,0xfe,0x71,0xfe,0xbc,
0xfe,0xe0,0xfc,0x2b,0xfd,0x6b,0xfb,0x7b,0xfb,0x40,0xfc,0x23,0xfc,0xfd,0xff,0xd0,
0xff,0x70,0x4,0x3e,0x4,0x6c,0x5,0x4d,0x5,0x9b,0x2,0x88,0x2,0xc6,0x0,0x9a,
0x0,0xfe,0x1,0x95,0x1,0x13,0x4,0x8e,0x3,0x93,0x6,0x52,0x6,0x1a,0x9,0x22,
0x9,0xb6,0x8,0xc2,0x8,0x99,0x5,0x91,0x5,0xd3,0x3,0x92,0x3,0x60,0x4,0xf4,
0x3,0x7b,0x4,0x59,0x4,0x3a,0x3,0x5d,0x3,0x47,0x2,0x3e,0x2,0x96,0x1,0x5f,
0x1,0xcb,0xff,0x95,0xff,0xe2,0xfd,0xbf,0xfd,0x1d,0xfd,0x1c,0xfd,0xd3,0xfc,0xe2,
0xfc,0xaf,0xfc,0xc4,0xfc,0x78,0xfc,0x9a,0xfc,0xf8,0xfb,0x25,0xfc,0xfa,0xfb,0x4f,
0xfc,0xcc,0xfb,0x3f,0xfc,0x9c,0xfa,0x10,0xfb,0xe,0xfa,0xc4,0xfa,0x7a,0xfa,0x63,
0xfb,0x38,0xfb,0xf6,0xfb,0x13,0xfd,0xad,0xfd,0xd0,0xfe,0xc,0xff,0xd9,0xfe,0x7b,
0xfe,0x97,0xfe,0x44,0xfe,0x54,0xfe,0x3e,0xfe,0x77,0xfd,0x21,0xfd,0xec,0xfd,0xa9,
0xfd,0xf2,0x0,0x16,0x1,0xf8,0x4,0x19,0x5,0x33,0x7,0x48,0x7,0xb5,0x5,0xf2,
0x5,0x2e,0x2,0x3f,0x2,0x4c,0x0,0xd8,0xff,0xc9,0x1,0xde,0x0,0xd8,0x5,0xeb,
0x4,0x7,0x9,0xa8,0x8,0xd0,0x7,0xf9,0x7,0x6d,0x3,0x9a,0x3,0xc4,0xff,0xbe,
0xff,0x94,0xfe,0x7c,0xfe,0x1a,0x0,0xf3,0xff,0x7b,0x3,0x3f,0x3,0x5d,0x5,0x36,
0x5,0xd6,0x2,0xc2,0x2,0xa1,0xfd,0x84,0xfd,0x51,0xfa,0x57,0xfa,0xc1,0xfa,0xa,
0xfb,0xbb,0xfc,0x29,0xfd,0xc,0xfe,0x73,0xfe,0xb6,0xfe,0xd9,0xfe,0x76,0xfe,0x71,
0xfe,0xcb,0xfc,0xeb,0xfc,0x94,0xfb,0x78,0xfb,0x6e,0xfc,0xd3,0xfb,0xf5,0xfd,0x84,
0xfd,0xf4,0xfe,0x19,0xff,0xe0,0xfe,0x58,0xff,0xee,0xfc,0x6b,0xfd,0xca,0xfa,0x28,
0xfb,0xeb,0xfa,0x2e,0xfb,0x79,0xfd,0x9f,0xfd,0x5c,0x2,0x50,0x2,0xa5,0x7,0x9e,
0x7,0x24,0x9,0x41,0x9,0xd8,0x6,0xe0,0x6,0x15,0x4,0xff,0x3,0x5c,0x2,0x56,
0x2,0x4b,0x3,0x53,0x3,0x66,0x7,0x56,0x7,0xc9,0xa,0x8b,0xa,0x55,0xa,0xf8,
0x9,0x91,0x7,0x13,0x7,0xd9,0x4,0x3d,0x4,0xe3,0x2,0x74,0x2,0xa4,0x1,0x95,
0x1,0x9,0x1,0x1c,0x1,0x8d,0x0,0x76,0x0,0x6,0xff,0xac,0xfe,0x61,0xfc,0xc2,
0xfb,0x4e,0xfa,0xa3,0xf9,0xb5,0xf9,0x46,0xf9,0x94,0xf9,0x65,0xf9,0x5b,0xf9,0x53,
0xf9,0x62,0xf9,0x79,0xf9,0xe8,0xf8,0xdd,0xf8,0x33,0xf7,0xdb,0xf6,0xf5,0xf5,0xe3,
0xf5,0x5d,0xf7,0xf8,0xf7,0xa4,0xfa,0x6c,0xfb,0xf5,0xfc,0x97,0xfd,0x87,0xfd,0x1c,
0xfe,0xfe,0xfd,0x6b,0xfe,0x75,0xfe,0xcb,0xfe,0xc4,0xfe,0x3c,0xff,0x1e,0x1,0x9c,
0x1,0xab,0x4,0x5,0x5,0xb1,0x5,0xd8,0x5,0x38,0x5,0x3a,0x5,0x52,0x5,0x52,
0x5,0x8e,0x4,0x60,0x4,0xbc,0x3,0x57,0x3,0x5c,0x4,0x2b,0x4,0x1d,0x4,0x2e,
0x4,0x62,0x2,0x75,0x2,0x78,0x1,0x83,0x1,0xda,0x1,0xc4,0x1,0xcc,0x2,0x9a,
0x2,0x6a,0x3,0x63,0x3,0xed,0x2,0x0,0x3,0x36,0x2,0x2c,0x2,0xd2,0x1,0xdf,
0x1,0xec,0x0,0x37,0x1,0xf8,0xff,0x4e,0x0,0xd1,0xff,0x3,0x0,0x87,0xff,0x5a,
0xff,0x5e,0xfe,0xd3,0xfd,0xd1,0xfc,0x9f,0xfc,0xfe,0xfa,0x6c,0xfb,0x77,0xf9,0xc9,
0xf9,0x4b,0xf9,0x6e,0xf9,0x99,0xf9,0x5,0xfa,0x4e,0xf9,0xb3,0xf9,0xc5,0xf9,0xe7,
0xf9,0x6d,0xfb,0x7c,0xfb,0xac,0xfc,0x8f,0xfc,0x48,0xfd,0x2d,0xfd,0x63,0xfe,0x78,
0xfe,0x67,0x0,0x5c,0x0,0xcb,0x1,0xbc,0x1,0x78,0x0,0x9a,0x0,0x55,0xfe,0x70,
0xfe,0x7,0xff,0x18,0xff,0xe2,0x1,0xbe,0x1,0x21,0x5,0x9d,0x4,0x75,0x8,0x0,
0x8,0x9b,0x9,0x30,0x9,0x57,0x7,0x96,0x6,0x1e,0x4,0x63,0x3,0xe8,0x1,0x77,
0x1,0x78,0x1,0x1a,0x1,0x1a,0x3,0xcc,0x2,0xbd,0x4,0x9d,0x4,0x44,0x4,0x3d,
0x4,0x35,0x2,0xfe,0x1,0x7b,0xff,0x28,0xff,0x8c,0xfc,0xa5,0xfc,0xfc,0xfa,0x6b,
0xfb,0xd4,0xfb,0x11,0xfc,0xdd,0xfc,0x1c,0xfd,0xc5,0xfb,0x52,0xfc,0xf3,0xf9,0xa4,
0xfa,0x2d,0xf9,0xd6,0xf9,0x25,0xf9,0xaa,0xf9,0x8b,0xfa,0xfe,0xfa,0xdc,0xfd,0x4b,
0xfe,0xbc,0x0,0xe8,0x0,0xb0,0x1,0xc6,0x1,0x80,0x1,0xe9,0x1,0x9c,0x0,0x6,
0x1,0x58,0x0,0x48,0x0,0x1c,0x2,0xb7,0x1,0xfd,0x3,0x9c,0x3,0xa2,0x4,0x4d,
0x4,0x98,0x5,0x42,0x5,0x19,0x6,0xd3,0x5,0xe0,0x4,0x6a,0x4,0x2c,0x4,0x36,
0x3,0x17,0x4,0x1a,0x3,0xa4,0x2,0x21,0x2,0x70,0x1,0x30,0x1,0x22,0x1,0x13,
0x1,0x65,0x0,0x72,0x0,0x2c,0x1,0xd3,0x0,0x20,0x3,0x9e,0x2,0x2f,0x2,0x3d,
0x2,0x1e,0xff,0x85,0xff,0x2b,0xfc,0x69,0xfc,0xe3,0xf8,0xf4,0xf8,0xd2,0xf7,0xd4,
0xf7,0x1b,0xfa,0x58,0xfa,0x2e,0xfb,0xd2,0xfb,0x2b,0xfa,0xc8,0xfa,0xfc,0xf9,0x69,
0xfa,0x4f,0xfa,0xe0,0xfa,0x57,0xfb,0xe7,0xfb,0xff,0xfd,0x51,0xfe,0xe4,0xff,0x24,
0x0,0x6e,0x0,0xbe,0x0,0x60,0x1,0xd6,0x1,0x13,0x2,0x9b,0x2,0xaa,0x3,0xe2,
0x3,0xff,0x7,0xd5,0x7,0x9c,0xa,0x43,0xa,0x4f,0x8,0xdf,0x7,0x1f,0x5,0xc6,
0x4,0x35,0x3,0xee,0x2,0x48,0x2,0x8,0x2,0xc9,0x4,0xbf,0x4,0xe5,0x9,0xc2,
0x9,0x8e,0xc,0x11,0xc,0x35,0xb,0xc4,0xa,0x46,0x7,0xe0,0x6,0x81,0x2,0xf6,
0x1,0xe2,0xff,0x69,0xff,0xf2,0xff,0x86,0xff,0x17,0xff,0xdb,0xfe,0xcb,0xfb,0xd2,
0xfb,0x82,0xf8,0x2f,0xf8,0xa2,0xf6,0x1a,0xf6,0xdf,0xf5,0xc6,0xf5,0xd9,0xf6,0xc6,
0xf6,0xdc,0xf8,0x9c,0xf8,0x28,0xf9,0x24,0xf9,0x64,0xf7,0x7f,0xf7,0x7c,0xf5,0xa5,
0xf5,0x61,0xf4,0xb7,0xf4,0xb8,0xf4,0x1d,0xf5,0x8b,0xf6,0xe,0xf7,0x2c,0xf9,0xa2,
0xf9,0x4,0xfd,0x18,0xfd,0xd5,0x0,0xf1,0x0,0xb2,0x1,0x54,0x2,0xc6,0x0,0xb7,
0x1,0x20,0x1,0xdd,0x1,0xbc,0x2,0xf3,0x2,0x29,0x5,0x1a,0x5,0x3d,0x8,0x50,
0x8,0xa1,0xa,0xbf,0xa,0x89,0xb,0xa5,0xb,0x8c,0xa,0xc3,0xa,0x9,0x8,0x24,
0x8,0xbc,0x6,0x90,0x6,0x7f,0x7,0x51,0x7,0x7d,0x7,0x8e,0x7,0x99,0x5,0xca,
0x5,0x27,0x3,0x34,0x3,0xf3,0x0,0xd4,0x0,0xca,0xff,0x97,0xff,0xeb,0xff,0xb4,
0xff,0xd2,0xff,0xcb,0xff,0x48,0xfe,0x89,0xfe,0x8a,0xfb,0xb3,0xfb,0x97,0xf8,0x6c,
0xf8,0x2d,0xf7,0xee,0xf6,0x37,0xf8,0xe6,0xf7,0x21,0xfa,0x80,0xf9,0x1,0xfb,0x59,
0xfa,0xeb,0xfa,0x95,0xfa,0xea,0xfa,0xaf,0xfa,0xdb,0xfb,0xad,0xfb,0xf1,0xfd,0x12,
0xfe,0x71,0xff,0x9c,0xff,0x71,0xfe,0x29,0xfe,0xd8,0xfc,0x26,0xfc,0xe6,0xfd,0x3e,
0xfd,0xfb,0x0,0xc7,0x0,0xf5,0x3,0x24,0x4,0x3d,0x6,0x82,0x6,0x66,0x6,0xce,
0x6,0xf7,0x3,0x7c,0x4,0xe8,0x1,0x29,0x2,0xe7,0x1,0xc3,0x1,0xcf,0x2,0x9d,
0x2,0xf,0x4,0x14,0x4,0xa5,0x4,0xa7,0x4,0x73,0x3,0x38,0x3,0x87,0x1,0x73,
0x1,0x81,0xff,0xb8,0xff,0x6c,0xfd,0x80,0xfd,0xc0,0xfc,0xc9,0xfc,0x15,0xfd,0x3c,
0xfd,0x7b,0xfc,0x55,0xfc,0xd9,0xfb,0x63,0xfb,0xb,0xfc,0xba,0xfb,0xe8,0xfb,0xea,
0xfb,0xf9,0xfb,0x34,0xfc,0xf7,0xfc,0x27,0xfd,0xb6,0xfd,0xcf,0xfd,0x83,0xfe,0xad,
0xfe,0xfe,0xff,0x12,0x0,0x47,0x0,0x5b,0x0,0x99,0xff,0xfd,0xff,0xf0,0x0,0x3c,
0x1,0x8f,0x3,0x85,0x3,0x61,0x5,0x7d,0x5,0x15,0x8,0x5c,0x8,0xf1,0xa,0x22,
0xb,0xe,0xa,0x55,0xa,0x57,0x7,0xac,0x7,0x8e,0x6,0xac,0x6,0xd2,0x5,0xc1,
0x5,0x80,0x4,0x72,0x4,0xa,0x5,0x23,0x5,0x14,0x6,0x3a,0x6,0x54,0x5,0x41,
0x5,0x37,0x3,0xe2,0x2,0x91,0x0,0x1c,0x0,0xc9,0xfe,0x65,0xfe,0x0,0xfe,0xed,
0xfd,0xa3,0xfc,0xbb,0xfc,0x30,0xfc,0x17,0xfc,0x67,0xfd,0x4e,0xfd,0xbb,0xfc,0xe0,
0xfc,0x14,0xfa,0x25,0xfa,0x59,0xf8,0x26,0xf8,0x36,0xf7,0xe5,0xf6,0xb1,0xf6,0x5c,
0xf6,0xb6,0xf7,0xa2,0xf7,0x2f,0xf9,0x72,0xf9,0xee,0xfa,0x1f,0xfb,0x35,0xfc,0x61,
0xfc,0xcf,0xfa,0x51,0xfb,0xdc,0xf8,0x56,0xf9,0x64,0xf9,0x8e,0xf9,0x8c,0xfa,0xde,
0xfa,0x5e,0xfb,0xec,0xfb,0x4b,0xfd,0xa4,0xfd,0x7d,0xff,0xc0,0xff,0x1a,0x1,0x93,
0x1,0xc,0x3,0x62,0x3,0x97,0x5,0xa3,0x5,0x91,0x8,0xba,0x8,0x4,0xb,0x15,
0xb,0x3d,0xb,0xc8,0xa,0x1c,0xa,0x95,0x9,0x75,0x9,0x28,0x9,0x67,0x8,0x2,
0x8,0x9e,0x6,0x43,0x6,0x16,0x6,0xd1,0x5,0xc2,0x6,0x32,0x6,0x7d,0x6,0xcd,
0x5,0xa,0x5,0x63,0x4,0x6f,0x3,0x91,0x2,0x75,0x1,0x91,0x0,0x99,0xfe,0xf8,
0xfd,0xe3,0xfb,0x66,0xfb,0x91,0xfa,0x3c,0xfa,0xe3,0xf9,0xd2,0xf9,0xb4,0xf8,0xbb,
0xf8,0xa8,0xf7,0xa0,0xf7,0x49,0xf7,0x4f,0xf7,0xef,0xf6,0xfc,0xf6,0x3d,0xf6,0x2b,
0xf6,0x74,0xf5,0x96,0xf5,0xa9,0xf5,0x56,0xf6,0x2,0xf8,0xf6,0xf8,0x1a,0xfb,0x2e,
0xfc,0xb2,0xfc,0xb3,0xfd,0x42,0xfd,0xc8,0xfd,0x27,0xfe,0x99,0xfe,0x55,0xff,0xc,
0x0,0xd4,0x0,0x61,0x1,0x53,0x3,0xe0,0x3,0x47,0x6,0xf5,0x6,0xcf,0x7,0xa,
0x8,0xb2,0x7,0xb2,0x7,0xe0,0x7,0xfb,0x7,0xf8,0x8,0xd1,0x8,0xd7,0x9,0x97,
0x9,0x4,0xa,0xc8,0x9,0x93,0x9,0x8,0x9,0x26,0x8,0x93,0x7,0xc5,0x5,0x3d,
0x5,0x4a,0x4,0x71,0x3,0x54,0x5,0x81,0x4,0xb8,0x6,0x3c,0x6,0xac,0x5,0x43,
0x5,0x84,0x2,0x30,0x2,0x10,0xfe,0xef,0xfd,0x66,0xfa,0x36,0xfa,0x7f,0xfa,0x21,
0xfa,0xd1,0xfb,0x9d,0xfb,0x9a,0xfa,0xbd,0xfa,0x98,0xf8,0xb7,0xf8,0xf3,0xf6,0xd7,
0xf6,0x5b,0xf5,0x3f,0xf5,0x2d,0xf6,0x21,0xf6,0xf,0xf9,0xc,0xf9,0x80,0xfa,0x9f,
0xfa,0x20,0xfa,0x66,0xfa,0x8f,0xf9,0x15,0xfa,0x2c,0xfa,0xef,0xfa,0xa6,0xfc,0x3b,
0xfd,0x22,0xff,0x5c,0xff,0xf3,0xff,0xb,0x0,0x50,0x0,0x51,0x0,0x7a,0x1,0x64,
0x1,0x72,0x3,0x6e,0x3,0x4,0x6,0x14,0x6,0x41,0x8,0x58,0x8,0xac,0x8,0xd7,
0x8,0x23,0x7,0x4b,0x7,0x3b,0x5,0x37,0x5,0xe6,0x3,0xbc,0x3,0x75,0x3,0xc,
0x3,0xdb,0x4,0x2b,0x4,0xb,0x7,0x7f,0x6,0x65,0x7,0x30,0x7,0x49,0x6,0x34,
0x6,0xda,0x4,0xdf,0x4,0x32,0x2,0x45,0x2,0xa9,0xff,0xb1,0xff,0xe4,0xff,0xee,
0xff,0xd,0x1,0x2,0x1,0x35,0x0,0x24,0x0,0x67,0xfe,0xa8,0xfe,0x4d,0xfd,0xb2,
0xfd,0xe3,0xfc,0x17,0xfd,0x8e,0xfd,0xc9,0xfd,0xbe,0xfe,0x33,0xff,0x9e,0xfe,0x4,
0xff,0x2c,0xfd,0x4c,0xfd,0xc,0xfb,0x3e,0xfb,0xda,0xf8,0x4f,0xf9,0xed,0xf8,0x24,
0xf9,0xe1,0xfa,0xbe,0xfa,0xfa,0xfa,0xfa,0xfa,0xe2,0xf9,0x2,0xfa,0x7a,0xfa,0x9e,
0xfa,0x6c,0xfb,0x9f,0xfb,0xb6,0xfb,0x93,0xfb,0xc6,0xfc,0x36,0xfc,0xd2,0xfd,0x40,
0xfd,0x4c,0xfd,0xea,0xfc,0x7f,0xfc,0x70,0xfc,0x29,0xfd,0x50,0xfd,0x8,0xff,0x5,
0xff,0xa6,0x1,0x8b,0x1,0xbd,0x4,0xb2,0x4,0x3d,0x6,0x39,0x6,0x10,0x5,0x2b,
0x5,0xd2,0x3,0xfd,0x3,0xe,0x4,0x2d,0x4,0xa9,0x4,0xc5,0x4,0xb8,0x5,0xc9,
0x5,0x58,0x7,0x75,0x7,0x40,0x8,0x69,0x8,0xa6,0x7,0xd6,0x7,0x7e,0x5,0x0,
0x6,0x34,0x3,0xd4,0x3,0xaa,0x2,0xe7,0x2,0xd7,0x2,0xea,0x2,0xe,0x2,0x17,
0x2,0xa6,0x0,0x7d,0x0,0xc8,0xfe,0xbf,0xfe,0xe1,0xfc,0x1a,0xfd,0x3e,0xfc,0x74,
0xfc,0x2c,0xfc,0x5b,0xfc,0x59,0xfb,0x86,0xfb,0xb4,0xfa,0xb4,0xfa,0xc1,0xfa,0x77,
0xfa,0x3e,0xfa,0xce,0xf9,0xef,0xf8,0x99,0xf8,0x54,0xf7,0xe,0xf7,0x6f,0xf5,0x5,
0xf5,0xde,0xf4,0x52,0xf4,0x76,0xf7,0xf8,0xf6,0x7e,0xfb,0x3b,0xfb,0x2f,0xfe,0xed,
0xfd,0xb7,0xfe,0x3c,0xfe,0x78,0xfd,0x16,0xfd,0x86,0xfc,0x3b,0xfc,0xa0,0xfd,0x17,
0xfd,0x71,0xff,0x5,0xff,0x32,0x1,0x15,0x1,0xe5,0x2,0xb3,0x2,0x79,0x2,0x41,
0x2,0x1,0x1,0x3,0x1,0xe9,0x2,0x32,0x3,0x93,0x7,0x14,0x8,0x48,0xb,0xa4,
0xb,0x2c,0xd,0x58,0xd,0x3,0xd,0x5a,0xd,0xc6,0xa,0x21,0xb,0x24,0x8,0x65,
0x8,0x76,0x6,0xfa,0x6,0xc5,0x6,0x74,0x7,0xfc,0x8,0x74,0x9,0xd3,0x9,0x32,
0xa,0x39,0x7,0xaf,0x7,0x4,0x3,0x6b,0x3,0xc7,0xfe,0x23,0xff,0xc0,0xfb,0x39,
0xfc,0x3f,0xfb,0xa9,0xfb,0x79,0xfb,0xc6,0xfb,0x3e,0xfa,0x7c,0xfa,0xde,0xf7,0xb9,
0xf7,0xe4,0xf4,0x62,0xf4,0xf2,0xf2,0x8e,0xf2,0xc8,0xf3,0x72,0xf3,0x76,0xf5,0x4,
0xf5,0x64,0xf6,0xf1,0xf5,0x32,0xf7,0xab,0xf6,0x98,0xf6,0x3e,0xf6,0x3c,0xf5,0x4a,
0xf5,0x97,0xf7,0x97,0xf7,0xc3,0xfd,0x83,0xfd,0x68,0x3,0xe,0x3,0xf5,0x6,0x86,
0x6,0x26,0x9,0xee,0x8,0xe4,0x9,0x11,0xa,0xb2,0x9,0xe4,0x9,0xa1,0xa,0x95,
0xa,0x5e,0xd,0x21,0xd,0x63,0xf,0x41,0xf,0xa9,0xe,0xe4,0xe,0x11,0xc,0x7a,
0xc,0x1b,0x9,0x83,0x9,0x34,0x7,0x9a,0x7,0xf9,0x6,0x65,0x7,0x96,0x6,0x40,
0x7,0x59,0x4,0x2d,0x5,0x82,0x0,0x3a,0x1,0xe2,0xfb,0x8c,0xfc,0x5c,0xf8,0xc4,
0xf8,0x94,0xf7,0x8c,0xf7,0x63,0xf8,0x5b,0xf8,0xee,0xf8,0xfd,0xf8,0x5c,0xf8,0x5e,
0xf8,0xb1,0xf6,0xf5,0xf6,0x83,0xf5,0xed,0xf5,0xc0,0xf5,0xd1,0xf5,0x61,0xf6,0xe,
0xf6,0x88,0xf7,0xf9,0xf6,0x19,0xfa,0x6b,0xf9,0xb0,0xfc,0x2,0xfc,0x77,0xfd,0xe7,
0xfc,0x1f,0xfd,0xee,0xfc,0xc5,0xfd,0xea,0xfd,0xc0,0xff,0xa9,0xff,0xb8,0x1,0x36,
0x1,0xca,0x3,0x4b,0x3,0xbd,0x5,0x68,0x5,0x28,0x5,0xaf,0x4,0x19,0x3,0x8e,
0x2,0x93,0x3,0x75,0x3,0x2,0x6,0x45,0x6,0xc1,0x7,0xf8,0x7,0x71,0x8,0xa6,
0x8,0x14,0x7,0x5a,0x7,0xc6,0x3,0x7,0x4,0xac,0x1,0x6,0x2,0x22,0x2,0x69,
0x2,0x3,0x4,0xe0,0x3,0xa3,0x5,0x6d,0x5,0xdd,0x4,0xfb,0x4,0xcc,0x1,0xf8,
0x1,0xae,0xfe,0xb1,0xfe,0x3f,0xfc,0x30,0xfc,0x94,0xfa,0x65,0xfa,0x43,0xfa,0x7,
0xfa,0xec,0xfa,0xd2,0xfa,0x30,0xfb,0x7,0xfb,0xc,0xfa,0xa5,0xf9,0xb8,0xf8,0x44,
0xf8,0x1a,0xf9,0xbe,0xf8,0xa4,0xf9,0x7e,0xf9,0x93,0xf8,0xba,0xf8,0x11,0xf8,0x43,
0xf8,0x2c,0xf9,0x2b,0xf9,0xc7,0xf9,0x92,0xf9,0xbd,0xf9,0x73,0xf9,0xb0,0xfa,0xb4,
0xfa,0x48,0xfc,0xc5,0xfc,0xd0,0xfd,0x62,0xfe,0x0,0x0,0x76,0x0,0xb9,0x2,0x19,
0x3,0xd7,0x4,0x4,0x5,0xcb,0x5,0xfd,0x5,0x32,0x5,0x9a,0x5,0xe,0x4,0x6b,
0x4,0xb0,0x4,0x0,0x5,0xd9,0x6,0x42,0x7,0x23,0x9,0x73,0x9,0x3e,0xb,0x55,
0xb,0xe0,0xa,0xb,0xb,0x78,0x7,0xc,0x8,0x6b,0x5,0xc,0x6,0xf1,0x5,0xfa,
0x5,0x82,0x6,0x18,0x6,0x5,0x7,0x71,0x6,0x85,0x6,0xb1,0x5,0x22,0x3,0x86,
0x2,0xf8,0xfe,0xed,0xfe,0x7c,0xfc,0x70,0xfc,0x63,0xfb,0x25,0xfb,0x1b,0xfb,0xd3,
0xfa,0xc1,0xfa,0x43,0xfa,0x2c,0xf9,0xc8,0xf8,0xf1,0xf6,0xe0,0xf6,0xdd,0xf5,0xab,
0xf5,0x7f,0xf6,0x41,0xf6,0x75,0xf7,0x75,0xf7,0xd4,0xf7,0xcc,0xf7,0xe8,0xf7,0xd9,
0xf7,0x7e,0xf7,0x9c,0xf7,0x1c,0xf7,0x5d,0xf7,0x6b,0xf8,0xe0,0xf8,0x5a,0xfb,0xd9,
0xfb,0x29,0xfe,0x76,0xfe,0xaa,0xff,0x2d,0x0,0x97,0x0,0x64,0x1,0xc7,0x2,0x49,
0x3,0xee,0x5,0x29,0x6,0x16,0x8,0x6a,0x8,0x1e,0x9,0x67,0x9,0x74,0x9,0x94,
0x9,0x9d,0x8,0xbb,0x8,0x65,0x7,0x75,0x7,0x56,0x7,0x60,0x7,0x53,0x8,0x70,
0x8,0xc9,0x8,0xb5,0x8,0x8f,0x7,0x1d,0x7,0x3e,0x5,0xa9,0x4,0x66,0x3,0xdb,
0x2,0xb4,0x2,0x54,0x2,0x6c,0x2,0x51,0x2,0xbf,0x1,0x99,0x1,0xc5,0x0,0x5f,
0x0,0x6e,0xff,0xb,0xff,0x61,0xfd,0x2a,0xfd,0x83,0xfb,0x90,0xfb,0xc3,0xfa,0x1f,
0xfb,0x96,0xfa,0xe1,0xfa,0xca,0xfa,0xb0,0xfa,0x8b,0xfb,0x1e,0xfb,0xe6,0xfb,0x69,
0xfb,0x70,0xfb,0x53,0xfb,0x1e,0xfb,0x88,0xfb,0xf7,0xfa,0xa0,0xfb,0xd1,0xfa,0x89,
0xfb,0x1b,0xfc,0xa3,0xfc,0x7a,0xfe,0xaf,0xfe,0x82,0xff,0x9c,0xff,0x5,0x0,0x1,
0x0,0x58,0x1,0x44,0x1,0x7d,0x1,0x97,0x1,0xab,0x0,0xa2,0x0,0x8f,0x0,0x60,
0x0,0xf5,0xff,0x14,0x0,0xa2,0xff,0xb1,0xff,0xe3,0x0,0x8b,0x0,0x7a,0x1,0x1c,
0x1,0xdf,0x1,0xa0,0x1,0xaa,0x3,0x98,0x3,0x70,0x4,0x8a,0x4,0xfe,0x3,0xe7,
0x3,0x9,0x4,0xcd,0x3,0x94,0x3,0x82,0x3,0xe5,0x2,0xd6,0x2,0x60,0x2,0x19,
0x2,0xdd,0x0,0x5d,0x0,0x2f,0x0,0xb9,0xff,0xa9,0x1,0x86,0x1,0xa3,0x2,0xc5,
0x2,0xb,0x2,0x56,0x2,0x37,0x1,0x7f,0x1,0x39,0x0,0x4c,0x0,0xee,0xfd,0x9,
0xfe,0x86,0xfa,0xba,0xfa,0xd6,0xf8,0xda,0xf8,0x7c,0xfa,0x6c,0xfa,0x5a,0xfd,0x57,
0xfd,0x8d,0xff,0xa1,0xff,0x43,0x0,0x8e,0x0,0x32,0xfe,0x60,0xfe,0xd,0xfa,0x0,
0xfa,0x29,0xf7,0x29,0xf7,0xda,0xf7,0xb9,0xf7,0x24,0xfb,0xe0,0xfa,0x6f,0xfe,0x48,
0xfe,0x26,0x0,0xdc,0xff,0xa2,0xff,0x5b,0xff,0x46,0xfe,0x44,0xfe,0x36,0xff,0xe,
0xff,0xe,0x2,0xce,0x1,0xf6,0x3,0x8,0x4,0xb4,0x4,0xe6,0x4,0xc2,0x3,0xd6,
0x3,0x6d,0x0,0x61,0x0,0x27,0xfe,0x18,0xfe,0xce,0xff,0xf7,0xff,0x58,0x3,0x8e,
0x3,0xa,0x6,0xee,0x5,0x34,0x7,0xd7,0x6,0xd2,0x6,0xa7,0x6,0xb0,0x4,0x1b,
0x5,0xed,0x1,0xb2,0x2,0x99,0x0,0x39,0x1,0x2c,0x0,0xb7,0x0,0xe7,0xff,0x5d,
0x0,0x9,0x1,0xe,0x1,0xc2,0x1,0x8a,0x1,0x60,0x0,0x56,0x0,0xee,0xff,0xf4,
0xff,0x4e,0x0,0x49,0x0,0xec,0xfe,0x3,0xff,0xa,0xfe,0x2c,0xfe,0x43,0xfe,0x2c,
0xfe,0x20,0xfd,0xb2,0xfc,0x72,0xfc,0xe7,0xfb,0xb7,0xfd,0x73,0xfd,0xc9,0xfe,0xe7,
0xfe,0x42,0xff,0x67,0xff,0x39,0xff,0x1a,0xff,0xfe,0xfd,0x9b,0xfd,0xa1,0xfc,0x23,
0xfc,0x77,0xfb,0x36,0xfb,0x16,0xfa,0x1b,0xfa,0x15,0xfa,0x8,0xfa,0xc2,0xfb,0xe7,
0xfb,0x6a,0xfd,0xf4,0xfd,0x15,0xff,0x40,0xff,0xd7,0x0,0x8b,0x0,0xb,0x1,0x1c,
0x1,0xcc,0xff,0x61,0x0,0x45,0xff,0xe7,0xff,0xb0,0xff,0xa,0x0,0xd5,0xff,0x0,
0x0,0x62,0x0,0xd2,0x0,0x67,0x2,0xe1,0x2,0xe3,0x4,0xe7,0x4,0x99,0x6,0x9b,
0x6,0xe3,0x6,0x50,0x7,0x75,0x5,0xeb,0x5,0x6,0x4,0x17,0x4,0x11,0x4,0xc6,
0x3,0x5f,0x4,0x21,0x4,0xdf,0x4,0xd1,0x4,0x95,0x6,0x81,0x6,0x33,0x7,0x27,
0x7,0x79,0x4,0x59,0x4,0x28,0x0,0xc5,0xff,0xa0,0xfc,0x45,0xfc,0x4d,0xfb,0xf0,
0xfa,0xa4,0xfc,0x1d,0xfc,0x4f,0xfe,0xfa,0xfd,0xf4,0xfd,0xa7,0xfd,0xe6,0xfb,0x45,
0xfb,0x73,0xf8,0xe9,0xf7,0x50,0xf5,0x16,0xf5,0xec,0xf6,0xa9,0xf6,0x6d,0xfc,0x11,
0xfc,0x4b,0xff,0x35,0xff,0x5b,0xfe,0xb1,0xfe,0x1c,0xfd,0x5f,0xfd,0x48,0xfc,0x33,
0xfc,0xcf,0xfc,0xd3,0xfc,0x89,0x0,0xce,0x0,0x73,0x5,0xb0,0x5,0x47,0x8,0x44,
0x8,0xf0,0x7,0xaa,0x7,0x50,0x5,0x1f,0x5,0xc8,0x3,0xd8,0x3,0x30,0x5,0x4e,
0x5,0xc6,0x6,0xfe,0x6,0x7d,0x6,0xcc,0x6,0xcf,0x4,0x1e,0x5,0xcd,0x1,0x3a,
0x2,0xb3,0xfe,0xe3,0xfe,0x76,0xfd,0x36,0xfd,0x2d,0xfd,0xf2,0xfc,0x27,0xfc,0xe4,
0xfb,0xed,0xfa,0x68,0xfa,0xe7,0xf9,0x5e,0xf9,0x83,0xf8,0x1,0xf8,0x8a,0xf7,0x37,
0xf7,0xa8,0xf7,0xca,0xf7,0xc4,0xf7,0x10,0xf8,0x0,0xf8,0x33,0xf8,0x39,0xf9,0x73,
0xf9,0x5b,0xfa,0x94,0xfa,0x44,0xfb,0x57,0xfb,0x99,0xfc,0x8a,0xfc,0x27,0xfd,0x4c,
0xfd,0xb,0xfe,0x7e,0xfe,0x5c,0x1,0xbe,0x1,0x90,0x4,0xce,0x4,0x9,0x6,0x26,
0x6,0x63,0x7,0x4e,0x7,0x78,0x7,0x9c,0x7,0xe2,0x5,0x53,0x6,0xb5,0x5,0x9,
0x6,0xe0,0x6,0x51,0x7,0x88,0x7,0x1b,0x8,0xe7,0x7,0x18,0x8,0xe0,0x6,0xdb,
0x6,0xde,0x3,0xec,0x3,0x2f,0x2,0x34,0x2,0x29,0x3,0x34,0x3,0xe2,0x3,0xd3,
0x3,0xfb,0x2,0xb8,0x2,0x71,0x1,0x36,0x1,0x8e,0xff,0x12,0xff,0xd6,0xfd,0xe5,
0xfc,0x0,0xfd,0x63,0xfc,0x13,0xfc,0x2a,0xfc,0xc2,0xfa,0xe4,0xfa,0x83,0xfa,0x5a,
0xfa,0xaa,0xfa,0x8a,0xfa,0xc4,0xf9,0xd5,0xf9,0x51,0xf9,0x63,0xf9,0x41,0xfa,0x17,
0xfa,0x19,0xfb,0xd4,0xfa,0x9c,0xfb,0xa6,0xfb,0xfb,0xfb,0x53,0xfc,0xc5,0xfb,0x12,
0xfc,0xe,0xfc,0x4b,0xfc,0x1c,0xfd,0x57,0xfd,0xb1,0xfd,0xda,0xfd,0xc3,0xfe,0x0,
0xff,0xe5,0x0,0x3c,0x1,0x51,0x2,0xaa,0x2,0x46,0x3,0xdc,0x3,0x37,0x4,0x8,
0x5,0xa7,0x3,0x42,0x4,0xfc,0x2,0x29,0x3,0x17,0x4,0x2,0x4,0x50,0x5,0x3c,
0x5,0xc7,0x5,0xac,0x5,0x40,0x5,0xf5,0x4,0x8,0x3,0xbf,0x2,0xdc,0x1,0xb6,
0x1,0x9d,0x3,0x6f,0x3,0xe2,0x5,0xa3,0x5,0xe,0x8,0xc3,0x7,0x93,0x9,0x53,
0x9,0xf5,0x6,0xe3,0x6,0x25,0x1,0xfc,0x0,0x0,0xfd,0x8a,0xfc,0xa8,0xfb,0x1a,
0xfb,0x48,0xfc,0xc1,0xfb,0x90,0xfe,0x13,0xfe,0xe4,0xff,0x89,0xff,0xc5,0xfd,0x9f,
0xfd,0x4e,0xfa,0x64,0xfa,0xd5,0xf8,0xfe,0xf8,0x42,0xf9,0x59,0xf9,0x36,0xfa,0x44,
0xfa,0xf7,0xfa,0x10,0xfb,0x42,0xfa,0x91,0xfa,0xad,0xf8,0xf9,0xf8,0x83,0xf8,0x61,
0xf8,0x7f,0xf9,0x41,0xf9,0xf6,0xfa,0xd9,0xfa,0xe8,0xfd,0xa9,0xfd,0x6,0x1,0x10,
0x1,0x6a,0x2,0xc,0x3,0xc1,0x2,0x69,0x3,0x92,0x2,0xe6,0x2,0x94,0x2,0x8f,
0x2,0xf8,0x3,0xa6,0x3,0xb2,0x5,0x4f,0x5,0x68,0x7,0xef,0x6,0xe7,0x9,0x70,
0x9,0xb9,0xa,0x9a,0xa,0x8b,0x8,0x86,0x8,0xcf,0x6,0x8a,0x6,0xd2,0x6,0x58,
0x6,0xa2,0x6,0xe,0x6,0xc6,0x5,0x61,0x5,0x4,0x4,0x14,0x4,0x6f,0x1,0xce,
0x1,0xa3,0xff,0x6,0x0,0x81,0xfe,0xb6,0xfe,0x4d,0xfd,0x48,0xfd,0x89,0xfc,0x5f,
0xfc,0x70,0xfa,0x59,0xfa,0x39,0xf6,0x70,0xf6,0x4f,0xf4,0x95,0xf4,0xac,0xf6,0xc0,
0xf6,0x85,0xf9,0xac,0xf9,0x22,0xfa,0x63,0xfa,0xcd,0xf8,0xff,0xf8,0xf3,0xf6,0x40,
0xf7,0x86,0xf6,0xd2,0xf6,0xe,0xf8,0x4c,0xf8,0x8b,0xfa,0xf2,0xfa,0xbd,0xfc,0x8,
0xfd,0x74,0xfd,0x77,0xfd,0x27,0xfd,0x28,0xfd,0x9,0xfe,0xe0,0xfd,0xf3,0x0,0x6d,
0x0,0x59,0x4,0xcd,0x3,0x55,0x6,0x1b,0x6,0x91,0x6,0x75,0x6,0x31,0x6,0xd0,
0x5,0xab,0x6,0x59,0x6,0x79,0x8,0x9e,0x8,0x17,0xa,0x34,0xa,0x30,0xa,0xec,
0x9,0x48,0x9,0xec,0x8,0x9b,0x7,0x3f,0x7,0xd4,0x5,0xb2,0x5,0x9f,0x5,0xed,
0x5,0x6f,0x5,0xca,0x5,0xcd,0x2,0xd9,0x2,0x43,0xff,0xf,0xff,0xe5,0xfc,0xc7,
0xfc,0x3a,0xfc,0x77,0xfc,0x2,0xfd,0x56,0xfd,0xbc,0xfc,0xb,0xfd,0x52,0xfa,0xf2,
0xfa,0x14,0xf8,0xc7,0xf8,0x93,0xf6,0xfa,0xf6,0x7b,0xf5,0xe2,0xf5,0x23,0xf6,0xb1,
0xf6,0xb9,0xf7,0x30,0xf8,0x2c,0xf8,0x92,0xf8,0x5e,0xf8,0xb0,0xf8,0xa9,0xf9,0xb8,
0xf9,0x79,0xfb,0x74,0xfb,0x54,0xfd,0x63,0xfd,0x3c,0xff,0x1e,0xff,0xba,0x0,0x98,
0x0,0x23,0x2,0x56,0x2,0x8f,0x4,0xb8,0x4,0x83,0x7,0x63,0x7,0xd1,0x9,0x93,
0x9,0x55,0xb,0xdd,0xa,0x49,0xb,0xd0,0xa,0x77,0x9,0x4a,0x9,0x4d,0x8,0x8,
0x8,0x97,0x8,0x2f,0x8,0x4,0x8,0xba,0x7,0x2d,0x6,0xda,0x5,0x98,0x4,0x6a,
0x4,0x4d,0x3,0x70,0x3,0x2b,0x2,0x57,0x2,0xac,0x1,0xd3,0x1,0xa8,0x0,0xac,
0x0,0xc2,0xfd,0x90,0xfd,0xe9,0xf9,0xcb,0xf9,0xaa,0xf6,0x8f,0xf6,0x5c,0xf5,0x73,
0xf5,0xf8,0xf6,0xa9,0xf7,0x34,0xf9,0xed,0xf9,0x3,0xf9,0x67,0xf9,0xb8,0xf7,0x1d,
0xf8,0x2b,0xf7,0x52,0xf7,0x2,0xf7,0xd3,0xf6,0x69,0xf8,0x67,0xf8,0x9,0xfc,0x34,
0xfc,0x48,0xff,0x48,0xff,0x58,0x0,0xf3,0xff,0xc5,0xff,0x24,0xff,0x25,0xff,0xc6,
0xfe,0xbd,0x0,0x6a,0x0,0xb9,0x4,0x1,0x4,0x5c,0x8,0xc2,0x7,0xed,0x9,0xe1,
0x9,0x2,0xa,0xec,0x9,0x29,0x9,0x7f,0x8,0x70,0x8,0x87,0x7,0xe9,0x9,0x43,
0x9,0x31,0xc,0xc1,0xb,0xc,0xb,0xab,0xa,0xe2,0x6,0x81,0x6,0xe4,0x2,0x74,
0x2,0xac,0xff,0x80,0xff,0x88,0xfe,0xbd,0xfe,0x32,0x0,0x3e,0x0,0xaf,0x0,0x91,
0x0,0x52,0xfd,0x7b,0xfd,0x14,0xf8,0x7e,0xf8,0xc,0xf4,0x9c,0xf4,0xdf,0xf3,0x87,
0xf4,0xa0,0xf6,0x54,0xf7,0xfe,0xf7,0xc0,0xf8,0x7b,0xf6,0xdc,0xf6,0xc9,0xf3,0xbb,
0xf3,0x61,0xf2,0xa0,0xf2,0xac,0xf4,0x4a,0xf5,0xa2,0xf9,0x42,0xfa,0xa7,0xfd,0x72,
0xfe,0x24,0xff,0xef,0xff,0xa6,0xfe,0xde,0xfe,0x7d,0xfe,0x12,0xfe,0x52,0x1,0xb3,
0x0,0x26,0x6,0xb7,0x5,0x40,0x9,0xc,0x9,0xba,0x8,0x9b,0x8,0x72,0x6,0x46,
0x6,0x5a,0x6,0x0,0x6,0xab,0x9,0x29,0x9,0x30,0xd,0x9e,0xc,0xbb,0xd,0x51,
0xd,0xce,0xa,0xed,0xa,0x86,0x5,0xd9,0x5,0xa1,0x0,0x6f,0x0,0x79,0xff,0xfe,
0xfe,0xf0,0x1,0xa2,0x1,0xe7,0x3,0xad,0x3,0x4c,0x2,0x19,0x2,0x9d,0xfd,0x7d,
0xfd,0xe1,0xf8,0xe3,0xf8,0xc2,0xf7,0xf4,0xf7,0x1d,0xfa,0x52,0xfa,0xce,0xfb,0x15,
0xfc,0xdb,0xfa,0x4e,0xfb,0x1f,0xf8,0x55,0xf8,0x29,0xf5,0x24,0xf5,0x6d,0xf5,0xa2,
0xf5,0x2a,0xfa,0x65,0xfa,0x44,0xff,0x2f,0xff,0x17,0x1,0x8,0x1,0x5e,0xff,0xb6,
0xff,0x35,0xfc,0xd5,0xfc,0x33,0xfc,0xc8,0xfc,0x31,0x1,0x79,0x1,0xfc,0x6,0xd0,
0x6,0xad,0x9,0x44,0x9,0x29,0x9,0x13,0x9,0xc6,0x6,0x8,0x7,0xb6,0x4,0xeb,
0x4,0x19,0x5,0x35,0x5,0x87,0x7,0x7d,0x7,0xf3,0x8,0xb7,0x8,0x83,0x6,0x5b,
0x6,0x7b,0x1,0x63,0x1,0x76,0xfe,0x36,0xfe,0xcc,0xfe,0x95,0xfe,0xbe,0xff,0xc6,
0xff,0xe8,0xff,0x17,0x0,0xa2,0xfe,0xd6,0xfe,0xb5,0xfa,0xe0,0xfa,0xa8,0xf6,0xbf,
0xf6,0x12,0xf6,0xff,0xf5,0xe6,0xf7,0xa5,0xf7,0xdb,0xf9,0x9a,0xf9,0x86,0xfa,0x84,
0xfa,0xb6,0xf8,0x13,0xf9,0xe1,0xf6,0x5f,0xf7,0xf0,0xf7,0x30,0xf8,0x38,0xfa,0x51,
0xfa,0xca,0xfc,0xe6,0xfc,0x59,0x0,0x48,0x0,0xb5,0x2,0x72,0x2,0x0,0x3,0xc4,
0x2,0xe8,0x3,0xc7,0x3,0x63,0x6,0x58,0x6,0xc9,0x8,0xb8,0x8,0xd7,0x9,0x80,
0x9,0x40,0xa,0x6d,0x9,0x17,0xb,0x20,0xa,0x51,0xb,0xe9,0xa,0x71,0xa,0x96,
0xa,0x23,0xa,0x4d,0xa,0x1a,0xa,0x1f,0xa,0x54,0x8,0x2b,0x8,0xa4,0x4,0x56,
0x4,0x96,0x0,0x5a,0x0,0x7b,0xfe,0x6d,0xfe,0xa2,0xfe,0x2,0xff,0x7,0xfe,0xd0,
0xfe,0x5e,0xfb,0xe1,0xfb,0x1c,0xf8,0x57,0xf8,0xa6,0xf4,0x28,0xf5,0xe,0xf2,0xb0,
0xf2,0x8f,0xf2,0x26,0xf3,0x39,0xf5,0xb9,0xf5,0xe8,0xf6,0xfd,0xf6,0x75,0xf6,0x74,
0xf6,0x0,0xf5,0x4c,0xf5,0xd1,0xf4,0xff,0xf4,0x7b,0xf7,0x80,0xf7,0x7b,0xfb,0xa1,
0xfb,0x73,0xfe,0x8c,0xfe,0x8e,0x0,0x7a,0x0,0x6a,0x2,0xf,0x2,0xb0,0x3,0xb,
0x3,0x8c,0x5,0x22,0x5,0xb5,0x8,0xa9,0x8,0xc0,0xa,0x9c,0xa,0x5e,0xa,0x2a,
0xa,0x66,0x9,0x41,0x9,0x45,0x9,0xc6,0x8,0x3b,0xa,0x63,0x9,0xb1,0xb,0x2c,
0xb,0xe3,0xb,0xe7,0xb,0xe0,0x9,0x4,0xa,0x13,0x6,0xe9,0x5,0x64,0x1,0xc8,
0x0,0x3,0xfe,0x73,0xfd,0x3e,0xfd,0x6b,0xfd,0x37,0xfd,0xcd,0xfd,0x5,0xfc,0x4d,
0xfc,0xbd,0xf9,0xcd,0xf9,0x2,0xf7,0x15,0xf7,0xf7,0xf4,0x13,0xf5,0xbb,0xf4,0x0,
0xf5,0xd8,0xf5,0x24,0xf6,0xdc,0xf6,0x3b,0xf7,0x5,0xf7,0xa4,0xf7,0xae,0xf6,0xef,
0xf6,0x1b,0xf7,0xbc,0xf6,0x59,0xf9,0x23,0xf9,0x98,0xfc,0xb7,0xfc,0x5,0xff,0x2e,
0xff,0x64,0x0,0xa8,0x0,0x82,0x1,0x87,0x1,0x74,0x2,0x0,0x2,0xdb,0x3,0x7b,
0x3,0x8c,0x6,0x83,0x6,0x6e,0x9,0xa0,0x9,0xb0,0xa,0x27,0xb,0xcd,0x9,0x3c,
0xa,0x2,0x8,0xe0,0x7,0x79,0x7,0xb6,0x6,0x3f,0x8,0x6d,0x7,0x97,0x8,0x58,
0x8,0x18,0x8,0x64,0x8,0x7d,0x6,0xd1,0x6,0x76,0x3,0x8a,0x3,0x9f,0x0,0x8f,
0x0,0x21,0xff,0x13,0xff,0xe2,0xfe,0xd5,0xfe,0xc0,0xff,0xdb,0xff,0x10,0x0,0xaa,
0x0,0x7e,0xfe,0x4a,0xff,0xab,0xfb,0x2,0xfc,0xf9,0xf7,0xe8,0xf7,0x6f,0xf5,0x43,
0xf5,0xc7,0xf6,0x70,0xf6,0x1e,0xfa,0xba,0xf9,0x7d,0xfc,0x7a,0xfc,0x53,0xfd,0xd6,
0xfd,0x40,0xfc,0xb6,0xfc,0xf9,0xfa,0xcd,0xfa,0xeb,0xfb,0x92,0xfb,0x33,0xfe,0x2d,
0xfe,0xeb,0x0,0xf9,0x0,0x56,0x3,0x7c,0x3,0x29,0x3,0x6e,0x3,0x98,0x1,0x84,
0x1,0x88,0x1,0x47,0x1,0x1c,0x2,0x1d,0x2,0xc5,0x2,0xc7,0x2,0x42,0x4,0x15,
0x4,0xf7,0x4,0x90,0x4,0x34,0x4,0x99,0x3,0xb1,0x3,0x5a,0x3,0x7d,0x3,0x6e,
0x3,0xdf,0x2,0xb3,0x2,0x8c,0x2,0x83,0x2,0x7d,0x2,0xa3,0x2,0xb6,0x1,0xa9,
0x1,0x72,0x0,0x71,0x0,0x14,0xff,0x5a,0xff,0x67,0xfd,0x94,0xfd,0xf4,0xfb,0x1a,
0xfc,0x2d,0xfb,0xaf,0xfb,0x46,0xfb,0xee,0xfb,0x42,0xfd,0xc1,0xfd,0xdb,0xff,0x3e,
0x0,0xa4,0xff,0xe9,0xff,0x21,0xfd,0x2a,0xfd,0xb9,0xfb,0x97,0xfb,0x3d,0xfc,0x1f,
0xfc,0x5c,0xfe,0x44,0xfe,0x40,0x2,0xf7,0x1,0xf6,0x5,0x7e,0x5,0x5d,0x6,0xff,
0x5,0x43,0x3,0xda,0x2,0xa3,0xff,0xfe,0xfe,0x3e,0xfe,0xdf,0xfd,0x5a,0x0,0x4c,
0x0,0x2b,0x5,0xa6,0x4,0x37,0x8,0x4d,0x7,0xce,0x5,0x3b,0x5,0xe0,0x0,0x9c,
0x0,0x21,0xfe,0xdc,0xfd,0xd,0xfe,0xda,0xfd,0x84,0xff,0x75,0xff,0xb5,0x1,0xa2,
0x1,0xa2,0x2,0x82,0x2,0x24,0x0,0x52,0x0,0x22,0xfb,0xcc,0xfb,0xf6,0xf7,0xbb,
0xf8,0xca,0xf8,0x80,0xf9,0xe2,0xfa,0xb1,0xfb,0x6f,0xfc,0x2e,0xfd,0xec,0xfd,0x7e,
0xfe,0xf2,0xfd,0x98,0xfe,0xaa,0xfb,0x74,0xfc,0xdb,0xf9,0x84,0xfa,0x5,0xfb,0x66,
0xfb,0x59,0xfe,0xac,0xfe,0x89,0x1,0xe9,0x1,0x4d,0x3,0x7d,0x3,0x93,0x3,0x88,
0x3,0xa2,0x2,0x62,0x2,0xe,0x1,0xad,0x0,0xc7,0xff,0xa1,0xff,0xf2,0xff,0xe3,
0xff,0x6b,0x1,0x11,0x1,0x55,0x1,0x0,0x1,0xc8,0xfe,0x96,0xfe,0xb8,0xfd,0x51,
0xfd,0xc5,0xff,0x39,0xff,0x93,0x1,0x0,0x1,0x1b,0x1,0x7f,0x0,0x2c,0xff,0xa5,
0xfe,0x8a,0xfd,0x17,0xfd,0xd8,0xfd,0x6f,0xfd,0x8a,0xff,0x5,0xff,0x55,0x1,0x8f,
0x0,0x76,0x2,0xc7,0x1,0x4c,0x1,0xc9,0x0,0x53,0xfe,0xe4,0xfd,0x3f,0xfd,0x4a,
0xfd,0xa6,0xff,0xf1,0xff,0x70,0x3,0x6a,0x3,0x74,0x5,0x85,0x5,0x5f,0x4,0xd9,
0x4,0x37,0x2,0xfc,0x2,0x89,0x0,0xac,0x1,0x77,0xff,0x8c,0x0,0xe,0x1,0xa4,
0x1,0xc9,0x4,0x1e,0x5,0x58,0x5,0xae,0x5,0x55,0x1,0x2,0x2,0xe,0xfd,0x37,
0xfe,0xd9,0xfb,0xd0,0xfc,0x95,0xfd,0xce,0xfd,0xd0,0xff,0x94,0xff,0xf9,0x0,0xdb,
0x0,0x1f,0x1,0x54,0x1,0xa4,0xfe,0xdf,0xfe,0xa7,0xf9,0xae,0xf9,0x66,0xf7,0x18,
0xf7,0x84,0xfa,0xbe,0xf9,0x40,0xff,0x83,0xfe,0x80,0x1,0x27,0x1,0x58,0x0,0xe2,
0xff,0xbf,0xfd,0x18,0xfd,0xbf,0xfb,0x3a,0xfb,0x55,0xfa,0xd1,0xf9,0xe4,0xfa,0x4b,
0xfa,0xad,0xff,0xf8,0xfe,0x28,0x6,0x61,0x5,0x73,0x9,0xfb,0x8,0x3a,0x8,0x19,
0x8,0x53,0x4,0x64,0x4,0x3b,0x0,0x68,0x0,0xc8,0xfd,0x8f,0xfd,0x6d,0xfe,0xe0,
0xfd,0x9d,0x2,0x9a,0x2,0x5,0x7,0xbd,0x7,0x5f,0x7,0x4f,0x8,0x3a,0x4,0xfb,
0x4,0x34,0x1,0xa0,0x1,0x76,0x0,0xba,0x0,0x86,0x1,0xc8,0x1,0x43,0x2,0xa3,
0x2,0xd1,0x1,0x75,0x2,0x84,0x0,0x19,0x1,0x25,0xfe,0x71,0xfe,0x9a,0xfc,0xd6,
0xfc,0x4f,0xfe,0x86,0xfe,0x23,0x1,0x63,0x1,0x14,0x2,0x4a,0x2,0x3d,0x1,0xf3,
0x0,0x59,0xff,0xd2,0xfe,0x11,0xfe,0xf1,0xfd,0x4b,0xff,0x5d,0xff,0x9b,0x1,0x81,
0x1,0x9e,0x2,0x66,0x2,0xb5,0x1,0x6a,0x1,0xf8,0xfe,0x92,0xfe,0xae,0xfc,0x2a,
0xfc,0xc5,0xfd,0x71,0xfd,0xe8,0x0,0x1,0x1,0xb5,0x2,0xbd,0x2,0x8c,0x1,0x65,
0x1,0x3b,0xfd,0x76,0xfd,0x47,0xf8,0x9a,0xf8,0xcd,0xf6,0x9b,0xf6,0xc4,0xf9,0x67,
0xf9,0x28,0xff,0xea,0xfe,0x76,0x3,0x22,0x3,0xbd,0x2,0x87,0x2,0x0,0xfe,0x41,
0xfe,0x9a,0xfa,0x1a,0xfb,0x6d,0xfa,0xb8,0xfa,0x4e,0xfc,0x30,0xfc,0x9c,0xff,0x41,
0xff,0x72,0x2,0x44,0x2,0x51,0x3,0x5c,0x3,0x48,0x3,0x52,0x3,0xae,0x3,0xe5,
0x3,0x14,0x6,0x95,0x6,0x55,0xa,0x91,0xa,0x24,0xb,0xc,0xb,0x28,0x5,0x4e,
0x5,0x31,0xfd,0x8a,0xfd,0x1,0xf9,0x68,0xf9,0xde,0xf9,0x8d,0xfa,0x5d,0xfe,0x1d,
0xff,0xcf,0x2,0x52,0x3,0x96,0x3,0xfc,0x3,0x92,0x0,0xf4,0x0,0xa9,0xfb,0x1c,
0xfc,0x88,0xf7,0x15,0xf8,0xe3,0xf6,0x53,0xf7,0xd9,0xf8,0x1a,0xf9,0x4f,0xfa,0x5c,
0xfa,0x18,0xfb,0xfc,0xfa,0x81,0xfc,0x9b,0xfc,0x9,0xfe,0x58,0xfe,0xbc,0xfe,0xbc,
0xfe,0x92,0xfe,0x1f,0xfe,0x9b,0xfe,0xf3,0xfd,0x3b,0x0,0x82,0xff,0x5,0x3,0x52,
0x2,0x90,0x5,0xe,0x5,0x2c,0x7,0x2,0x7,0x43,0x7,0x38,0x7,0x53,0x6,0x1d,
0x6,0xcc,0x5,0x8a,0x5,0xc5,0x5,0x5d,0x5,0x6f,0x6,0xba,0x5,0x5e,0x7,0xe7,
0x6,0xd9,0x4,0xf3,0x4,0xc2,0xfe,0xd8,0xfe,0x4f,0xfb,0xdd,0xfa,0x27,0xfc,0x5e,
0xfb,0xdf,0xfc,0x48,0xfc,0x0,0xfc,0xad,0xfb,0x8f,0xfa,0x30,0xfa,0xc8,0xf8,0x86,
0xf8,0x62,0xf7,0x4c,0xf7,0xf5,0xf6,0xc4,0xf6,0x4c,0xf8,0x60,0xf8,0x96,0xfb,0x28,
0xfc,0x25,0xfd,0xb8,0xfd,0x39,0xfb,0x9d,0xfb,0xcb,0xfa,0xf,0xfb,0x65,0xfe,0xca,
0xfe,0xc2,0x2,0xa1,0x3,0x13,0x6,0xe6,0x6,0x8,0x8,0x7c,0x8,0x25,0x8,0xdc,
0x8,0x8e,0x7,0x63,0x8,0x3f,0x6,0xb1,0x6,0x8,0x4,0x5d,0x4,0x83,0x4,0xb4,
0x4,0xb7,0x8,0x76,0x8,0xf7,0xb,0x79,0xb,0xdd,0xb,0x92,0xb,0x78,0x9,0x7d,
0x9,0xfb,0x4,0xc9,0x4,0xae,0xff,0xa,0xff,0x84,0xfc,0xa,0xfc,0x94,0xfc,0x35,
0xfc,0xd,0xfe,0x82,0xfd,0x45,0xfe,0x12,0xfe,0x95,0xfc,0x9b,0xfc,0xf1,0xf9,0xbf,
0xf9,0x93,0xf6,0x72,0xf6,0x0,0xf4,0xce,0xf3,0xeb,0xf4,0x83,0xf4,0x15,0xf8,0xe9,
0xf7,0x28,0xfa,0x43,0xfa,0x9,0xfb,0x5e,0xfb,0x45,0xfb,0xd5,0xfb,0x5c,0xfa,0xd6,
0xfa,0xfa,0xf9,0x63,0xfa,0x61,0xfc,0xd0,0xfc,0xd0,0x0,0x45,0x1,0x14,0x4,0xec,
0x4,0x87,0x3,0x82,0x4,0x18,0x1,0x9d,0x1,0xbf,0x1,0x0,0x2,0xb3,0x5,0xd9,
0x5,0x72,0x9,0x71,0x9,0x60,0xc,0x62,0xc,0xe8,0xd,0xe2,0xd,0x59,0xb,0x53,
0xb,0x6b,0x5,0x56,0x5,0xf1,0x0,0x9b,0x0,0xec,0x1,0xa2,0x1,0x88,0x6,0x2d,
0x6,0xbe,0x7,0x5,0x7,0x9e,0x3,0x2a,0x3,0x62,0xff,0x2d,0xff,0xc0,0xfc,0x28,
0xfc,0xda,0xfa,0x49,0xfa,0x93,0xfb,0x40,0xfb,0xbd,0xfd,0x76,0xfd,0x96,0xfd,0x9d,
0xfd,0x24,0xfb,0x16,0xfb,0xc9,0xf8,0x47,0xf8,0x34,0xf9,0xa9,0xf8,0x22,0xfc,0xbd,
0xfb,0xdb,0xfc,0xeb,0xfc,0xb8,0xfa,0x43,0xfb,0xd9,0xf9,0x15,0xfa,0x2f,0xfb,0x2c,
0xfb,0x8e,0xfe,0xa2,0xfe,0x73,0x3,0x56,0x3,0xbc,0x5,0xf2,0x5,0x97,0x3,0x6b,
0x4,0x7,0x0,0xd6,0x0,0xdd,0xfd,0xa9,0xfe,0xcb,0xfe,0x8d,0xff,0x5c,0x2,0xb1,
0x2,0x2e,0x5,0x60,0x5,0x67,0x4,0x81,0x4,0xfb,0xff,0xe0,0xff,0x81,0xfb,0x93,
0xfb,0x40,0xfb,0x4c,0xfb,0x7c,0xfe,0x4b,0xfe,0x3c,0x1,0x4a,0x1,0xdd,0x0,0x30,
0x1,0x3f,0xfd,0x68,0xfd,0x89,0xf9,0x55,0xf9,0xff,0xf8,0x9f,0xf8,0x6a,0xfb,0x40,
0xfb,0x4a,0xfe,0x59,0xfe,0xb9,0xfe,0x11,0xff,0xe3,0xfc,0x83,0xfd,0x98,0xfb,0xb7,
0xfb,0xf5,0xfa,0x80,0xfa,0xf1,0xfb,0xbd,0xfb,0x68,0x1,0x53,0x1,0xf6,0x6,0xce,
0x6,0xa9,0x6,0xcc,0x6,0x30,0x3,0x70,0x3,0x3a,0x0,0x84,0x0,0x5f,0xfe,0xae,
0xfe,0x4c,0xff,0x39,0xff,0xd6,0x2,0x99,0x2,0xe6,0x5,0xce,0x5,0x3e,0x6,0x3f,
0x6,0xca,0x3,0x35,0x4,0xc,0x1,0x8d,0x1,0x4e,0x0,0x4e,0x0,0xf7,0x0,0xe8,
0x0,0xc9,0x1,0xdd,0x1,0xe,0x2,0x1d,0x2,0x96,0x1,0xc8,0x1,0x9d,0x0,0x73,
0x0,0xd,0xff,0x31,0xfe,0x7,0xfe,0x17,0xfd,0xa4,0xfe,0xef,0xfd,0x48,0xff,0xe8,
0xfe,0x2a,0xff,0x7,0xff,0xd7,0xfe,0x36,0xfe,0x10,0xfe,0xe3,0xfc,0x4c,0xfe,0x31,
0xfd,0x15,0x0,0x55,0xff,0x90,0x0,0x58,0x0,0x88,0xff,0x7d,0xff,0xd7,0xfe,0x69,
0xfe,0x17,0xfe,0xaf,0xfd,0xb8,0xfd,0x9c,0xfd,0xcf,0xfe,0x9b,0xfe,0x52,0x0,0x37,
0x0,0x19,0x1,0x58,0x1,0xb0,0x0,0x1c,0x1,0xc5,0xff,0x71,0x0,0xf2,0xff,0x2,
0x1,0xee,0x0,0x16,0x2,0xd2,0x1,0xb3,0x2,0x21,0x3,0xee,0x3,0x46,0x4,0x82,
0x5,0xb5,0x3,0x11,0x5,0x55,0x1,0x3c,0x2,0xb3,0xfe,0x55,0xff,0x55,0xfe,0xd5,
0xfe,0xe0,0x0,0x22,0x1,0xd2,0x2,0x23,0x3,0xe4,0x0,0x5e,0x1,0x28,0xfd,0x7f,
0xfd,0x54,0xfb,0x53,0xfb,0xdf,0xfa,0x7c,0xfa,0x8f,0xfa,0x1b,0xfa,0x4,0xfc,0xbd,
0xfb,0x62,0xfe,0x1d,0xfe,0x9c,0xfe,0x68,0xfe,0xf,0xfd,0x7,0xfd,0x86,0xfb,0x62,
0xfb,0xba,0xfb,0x62,0xfb,0x29,0xff,0xa4,0xfe,0x1d,0x3,0xa1,0x2,0x12,0x5,0xf,
0x5,0xc9,0x6,0xf3,0x6,0xfd,0x6,0xdc,0x6,0x8f,0x3,0x51,0x3,0x9e,0x0,0x1f,
0x0,0x8d,0x1,0xbb,0x0,0xb0,0x4,0x23,0x4,0x3a,0x7,0xe2,0x6,0x1a,0x6,0x9f,
0x5,0xae,0x1,0x5e,0x1,0xf5,0xfe,0xb7,0xfe,0xb7,0xff,0x48,0xff,0x24,0x1,0xd4,
0x0,0x3b,0x1,0x14,0x1,0xb3,0xff,0xaf,0xff,0x54,0xfd,0xb4,0xfd,0x5d,0xfb,0xb2,
0xfb,0x57,0xfa,0x19,0xfa,0xa7,0xfa,0x37,0xfa,0x3,0xfc,0xbf,0xfb,0x64,0xfc,0x4f,
0xfc,0xdf,0xfa,0x10,0xfb,0x2b,0xfa,0x7c,0xfa,0xda,0xfc,0x2,0xfd,0xb2,0x0,0xb4,
0x0,0x21,0x2,0xc,0x2,0x96,0x1,0x8f,0x1,0xd2,0x0,0x35,0x1,0x14,0x0,0xb6,
0x0,0xe7,0xff,0x2e,0x0,0x5b,0x0,0x49,0x0,0x6c,0x0,0x60,0x0,0x1b,0x0,0x32,
0x0,0xb0,0xff,0x8,0x0,0x44,0xff,0xd5,0xff,0xc8,0xff,0x1c,0x0,0xe4,0x0,0xd7,
0x0,0xfc,0x0,0xdf,0x0,0x6f,0x0,0x71,0x0,0xed,0xff,0x2a,0x0,0x22,0xfe,0xa4,
0xfe,0x4e,0xfb,0xd1,0xfb,0x54,0xfa,0xa8,0xfa,0xf9,0xfb,0x8,0xfc,0x25,0xfe,0xde,
0xfd,0x58,0xff,0x2b,0xff,0xbb,0xfe,0x15,0xff,0x8e,0xfc,0x2b,0xfd,0xca,0xfb,0x5a,
0xfc,0x63,0xfe,0xb4,0xfe,0x9e,0x2,0x67,0x2,0xff,0x5,0x7b,0x5,0x82,0x6,0xc,
0x6,0xe5,0x3,0x55,0x3,0xf,0x1,0x95,0x0,0xf8,0xff,0xd9,0xff,0x9b,0x0,0x5e,
0x0,0x70,0x3,0x6,0x3,0x21,0x6,0xf5,0x5,0xc0,0x4,0x95,0x4,0x24,0x1,0xe9,
0x0,0xbc,0xff,0xbb,0xff,0x48,0x0,0x32,0x0,0x76,0x0,0x52,0x0,0xd,0x0,0x59,
0x0,0x98,0xff,0xf1,0xff,0xc6,0xfe,0xd3,0xfe,0x9f,0xfd,0xa5,0xfd,0x1c,0xfd,0xf5,
0xfc,0x67,0xfd,0x0,0xfd,0xa2,0xfd,0x6d,0xfd,0x66,0xfd,0x89,0xfd,0xdc,0xfc,0x28,
0xfd,0xbe,0xfc,0xee,0xfc,0xcb,0xfd,0xa5,0xfd,0x6b,0xff,0x17,0xff,0x8,0x1,0xb2,
0x0,0x96,0x2,0x39,0x2,0xd,0x3,0xd6,0x2,0x3b,0x2,0x24,0x2,0x87,0x1,0x63,
0x1,0x73,0x1,0x77,0x1,0xcd,0x1,0x14,0x2,0xe9,0x1,0x19,0x2,0xad,0x0,0x89,
0x0,0xce,0xff,0x75,0xff,0xd8,0x1,0x97,0x1,0x55,0x4,0x48,0x4,0xf9,0x2,0xfc,
0x2,0x5b,0xfe,0x66,0xfe,0x7a,0xfa,0xbe,0xfa,0x4e,0xf9,0xe8,0xf9,0xaf,0xf9,0x6a,
0xfa,0xc9,0xfa,0x64,0xfb,0xeb,0xfc,0x94,0xfd,0x37,0xfe,0x20,0xff,0x81,0xfc,0x9c,
0xfd,0x75,0xfa,0xb1,0xfb,0xe0,0xfb,0xe5,0xfc,0x85,0xff,0x14,0x0,0x9e,0x1,0x4,
0x2,0xb9,0x0,0xe4,0x0,0xd9,0xfe,0xc9,0xfe,0x74,0xff,0xcf,0xff,0x74,0x2,0xd7,
0x2,0x51,0x4,0xe,0x4,0xba,0x4,0x7b,0x4,0xe7,0x5,0xc7,0x5,0xd,0x7,0x73,
0x6,0x93,0x6,0xfe,0x5,0xc,0x5,0xb4,0x4,0xb2,0x3,0xf6,0x2,0xb2,0x3,0x9b,
0x2,0x9f,0x4,0x8f,0x3,0xaf,0x4,0xf0,0x3,0x45,0x4,0x13,0x4,0xa3,0x3,0xa9,
0x3,0xe0,0x0,0xde,0x0,0x40,0xfd,0x66,0xfd,0x3c,0xfc,0x47,0xfc,0xce,0xfc,0x89,
0xfc,0xff,0xfb,0xe7,0xfb,0x55,0xfa,0xa1,0xfa,0x89,0xf9,0x99,0xf9,0xeb,0xf8,0x7f,
0xf8,0xd5,0xf7,0xa6,0xf7,0xe7,0xf7,0x27,0xf8,0x8,0xf9,0x18,0xf9,0xe8,0xf8,0xf2,
0xf8,0x6c,0xf8,0xd5,0xf8,0x98,0xf9,0x5,0xfa,0x2c,0xfb,0xb1,0xfb,0x1a,0xfc,0xde,
0xfc,0xde,0xfc,0x56,0xfd,0xdb,0xfd,0xee,0xfd,0xcb,0xff,0xb8,0xff,0x9f,0x1,0x79,
0x1,0xbd,0x1,0xdc,0x1,0x52,0x2,0xb0,0x2,0xd0,0x4,0xff,0x4,0x5f,0x6,0x74,
0x6,0x9c,0x5,0xc0,0x5,0xdf,0x4,0x2,0x5,0x2f,0x6,0x55,0x6,0x5a,0x8,0x60,
0x8,0xca,0x8,0x82,0x8,0xc8,0x7,0x17,0x7,0x97,0x6,0xb0,0x5,0x38,0x4,0x97,
0x3,0xf5,0x0,0x7f,0x0,0xf5,0xfe,0x5b,0xfe,0xba,0xfe,0x3a,0xfe,0x55,0xff,0x2,
0xff,0xb1,0xfe,0xba,0xfe,0xdb,0xfb,0x75,0xfc,0x1,0xfa,0x6c,0xfa,0xad,0xfa,0xb4,
0xfa,0x71,0xfa,0xc2,0xfa,0x2b,0xf8,0x7b,0xf8,0xcc,0xf6,0xca,0xf6,0x57,0xf7,0x67,
0xf7,0xb5,0xf8,0xbc,0xf8,0x5c,0xfb,0x8a,0xfb,0x8,0xff,0xcb,0xff,0xbb,0xff,0x7b,
0x0,0x20,0xfc,0x76,0xfc,0x87,0xf9,0xd9,0xf9,0x5f,0xfb,0xc1,0xfb,0x98,0xff,0xf2,
0xff,0xfc,0x3,0x49,0x4,0x57,0x6,0x57,0x6,0xf3,0x4,0x9d,0x4,0xe1,0x1,0x8f,
0x1,0xdd,0xff,0xb4,0xff,0x27,0x0,0xd0,0xff,0x4f,0x3,0xbc,0x2,0x7a,0x6,0x32,
0x6,0xd6,0x5,0xf9,0x5,0xba,0x2,0x2f,0x3,0xcc,0x0,0x6e,0x1,0xe7,0x0,0xf9,
0x0,0x85,0x2,0x6,0x2,0x2,0x5,0xbf,0x4,0x16,0x6,0xd7,0x5,0x12,0x4,0xcf,
0x3,0x43,0x1,0x80,0x1,0xec,0xff,0xef,0xff,0x5b,0xff,0xed,0xfe,0x3c,0x0,0x5a,
0x0,0xcd,0x2,0x3e,0x3,0x45,0x3,0x76,0x3,0xe,0x0,0x30,0x0,0xb0,0xfb,0x94,
0xfb,0x54,0xf8,0x5,0xf8,0x5,0xf8,0xf9,0xf7,0x3d,0xfa,0x45,0xfa,0x20,0xfb,0xfd,
0xfa,0xfe,0xfa,0x9e,0xfa,0x18,0xfc,0x62,0xfb,0x13,0xfc,0x74,0xfb,0x3b,0xfa,0x40,
0xfa,0x1d,0xfa,0xa8,0xfa,0x7c,0xfc,0xf5,0xfc,0x3a,0xff,0x5c,0xff,0x73,0x1,0x8d,
0x1,0xe5,0x2,0x1,0x3,0x31,0x3,0x34,0x3,0xf1,0x2,0x35,0x3,0x34,0x3,0x7c,
0x3,0xee,0x3,0xc8,0x3,0x1e,0x5,0x10,0x5,0x3b,0x7,0x84,0x7,0x77,0x8,0xac,
0x8,0x97,0x6,0xb3,0x6,0x79,0x3,0x85,0x3,0x4c,0x2,0x4e,0x2,0x79,0x3,0x92,
0x3,0x85,0x5,0x72,0x5,0xac,0x6,0x61,0x6,0x4a,0x6,0xc,0x6,0x7e,0x4,0x31,
0x4,0xec,0x0,0x71,0x0,0xc1,0xfc,0x43,0xfc,0xd7,0xfa,0xa7,0xfa,0xda,0xfb,0xf,
0xfc,0x97,0xfd,0xdb,0xfd,0x99,0xfd,0xe7,0xfd,0xa9,0xfb,0xfc,0xfb,0x21,0xfa,0x17,
0xfa,0x53,0xfa,0x77,0xfa,0xf2,0xfa,0xaf,0xfb,0x6a,0xfb,0xc1,0xfb,0x26,0xfc,0xfb,
0xfb,0xaa,0xfb,0xb7,0xfb,0x33,0xf8,0x2d,0xf8,0xdb,0xf3,0xab,0xf3,0x65,0xf2,0x3f,
0xf2,0x4c,0xf3,0xdf,0xf2,0x62,0xf3,0xee,0xf2,0x31,0xf2,0xfc,0xf1,0x6f,0xf0,0x1b,
0xf0,0x69,0xed,0x20,0xed,0xa,0xea,0xf6,0xe9,0x6f,0xea,0x2d,0xea,0xf9,0xf0,0x9e,
0xf0,0xbd,0xf9,0x84,0xf9,0x3e,0xff,0x10,0xff,0x7a,0x1,0x7f,0x1,0xa0,0x3,0x1a,
0x4,0xd7,0x7,0x7a,0x8,0xd4,0xe,0x22,0xf,0xb3,0x16,0xde,0x16,0x34,0x1d,0xa7,
0x1d,0x1b,0x22,0x9c,0x22,0x25,0x24,0x7d,0x24,0x80,0x23,0xbd,0x23,0x54,0x24,0x61,
0x24,0xb7,0x26,0xbc,0x26,0xd2,0x25,0xd0,0x25,0xb0,0x20,0x61,0x20,0xf1,0x19,0x9c,
0x19,0xc,0x13,0xc9,0x12,0x58,0xc,0xff,0xb,0xd3,0x5,0xe9,0x5,0x2c,0xff,0x9d,
0xff,0x17,0xf7,0x1e,0xf7,0x85,0xec,0x51,0xec,0x7,0xe2,0xff,0xe1,0x3a,0xdb,0x4e,
0xdb,0x96,0xd7,0xd5,0xd7,0x7c,0xd4,0xd0,0xd4,0x64,0xd1,0x95,0xd1,0x5e,0xcf,0x53,
0xcf,0x30,0xcf,0x5,0xcf,0x39,0xd1,0x3d,0xd1,0xe8,0xd5,0xda,0xd5,0x83,0xdd,0x15,
0xdd,0x5,0xe7,0xb4,0xe6,0x94,0xef,0x7e,0xef,0x3c,0xf6,0x24,0xf6,0x67,0xfe,0x59,
0xfe,0xe7,0x8,0x8c,0x8,0xa3,0x11,0x18,0x11,0xc3,0x18,0x95,0x18,0x54,0x21,0x2c,
0x21,0x17,0x29,0xf5,0x28,0x59,0x2d,0xb1,0x2d,0x36,0x2f,0x93,0x2f,0xc5,0x2f,0xc,
0x30,0x6f,0x2f,0xf9,0x2f,0x89,0x2d,0xfe,0x2d,0x40,0x29,0x91,0x29,0xcb,0x23,0x38,
0x24,0xb2,0x1c,0x27,0x1d,0x61,0x12,0xcb,0x12,0x62,0x6,0x8c,0x6,0xaa,0xfa,0x93,
0xfa,0xc,0xf1,0xe0,0xf0,0x79,0xea,0x22,0xea,0x52,0xe3,0x40,0xe3,0xea,0xd9,0x2c,
0xda,0xf3,0xd1,0x9e,0xd1,0x4d,0xcd,0x97,0xcc,0x9c,0xcc,0x2b,0xcc,0x60,0xd0,0xd,
0xd0,0xae,0xd5,0xe5,0xd5,0x67,0xda,0xf9,0xda,0xc2,0xde,0x74,0xde,0x2d,0xe3,0x6d,
0xe2,0xf3,0xe9,0xd7,0xe9,0xa0,0xf3,0xf5,0xf3,0xd3,0xfd,0x42,0xfe,0x28,0x8,0x90,
0x8,0xe8,0x11,0xa,0x12,0xb4,0x19,0x86,0x19,0xa2,0x20,0x71,0x20,0x80,0x26,0xda,
0x26,0xae,0x2a,0x4c,0x2b,0x6c,0x2e,0x88,0x2e,0x36,0x30,0x23,0x30,0x98,0x2e,0x87,
0x2e,0xbf,0x2b,0x2d,0x2b,0x59,0x27,0xae,0x26,0x50,0x1f,0xfe,0x1e,0xad,0x15,0x5b,
0x15,0xe5,0xd,0x88,0xd,0x10,0x8,0xd2,0x7,0x96,0x1,0x65,0x1,0x13,0xf9,0xab,
0xf8,0xa4,0xef,0xf0,0xee,0x2c,0xe7,0xba,0xe6,0x41,0xe1,0x1f,0xe1,0xa,0xdd,0xd8,
0xdc,0x9c,0xd8,0xb8,0xd8,0xb0,0xd5,0x0,0xd6,0x74,0xd5,0x8f,0xd5,0xcc,0xd5,0x26,
0xd6,0x8c,0xd7,0x0,0xd8,0xb3,0xdb,0x1f,0xdc,0x11,0xe0,0x18,0xe1,0x3d,0xe5,0x37,
0xe6,0x1a,0xec,0x78,0xec,0x7f,0xf2,0xd,0xf3,0x6a,0xf8,0x0,0xf9,0xb6,0xfe,0x20,
0xff,0xae,0x5,0x6f,0x6,0x97,0xe,0xfe,0xe,0xca,0x16,0x73,0x16,0xd6,0x1a,0x7e,
0x1a,0x61,0x1d,0xf3,0x1c,0xf1,0x1f,0x42,0x1f,0xac,0x20,0xf4,0x1f,0x52,0x21,0x69,
0x20,0x45,0x23,0x61,0x22,0x11,0x23,0x60,0x22,0x78,0x1e,0xa7,0x1d,0x14,0x18,0x7b,
0x17,0xc5,0x13,0x96,0x13,0x59,0x11,0xd0,0x10,0xd9,0xc,0xe6,0xb,0x57,0x5,0xd4,
0x4,0xe1,0xfd,0x16,0xfe,0x7,0xf8,0xb0,0xf8,0x49,0xf3,0x5,0xf4,0x4d,0xef,0x8d,
0xef,0x3e,0xec,0x2a,0xec,0x46,0xea,0x1,0xeb,0x2d,0xe8,0xc1,0xe9,0xf1,0xe4,0x8,
0xe6,0xcc,0xe2,0xec,0xe2,0x65,0xe3,0x3,0xe3,0xbf,0xe4,0x86,0xe4,0x54,0xe6,0xa,
0xe7,0xf3,0xe9,0xff,0xea,0x52,0xee,0xa0,0xee,0x41,0xf1,0x5b,0xf1,0x42,0xf4,0x6d,
0xf4,0x6,0xf9,0xb8,0xf8,0x95,0xfe,0x64,0xfe,0xcb,0x3,0x7,0x4,0xfa,0x7,0xc,
0x8,0x38,0xa,0x4d,0xa,0xe1,0xa,0x24,0xb,0x19,0xc,0x32,0xc,0x6c,0xf,0x62,
0xf,0xd4,0x13,0xd3,0x13,0xfa,0x16,0x13,0x17,0x16,0x17,0x2c,0x17,0x57,0x14,0x39,
0x14,0x8b,0x11,0x5a,0x11,0x29,0x10,0x9d,0xf,0x32,0xe,0x18,0xd,0xa5,0xb,0x7,
0xb,0x25,0xa,0x66,0xa,0x3,0x8,0x15,0x8,0x68,0x4,0xe3,0x3,0x2d,0x1,0x65,
0x0,0x8,0xfe,0x17,0xfd,0x29,0xfa,0x60,0xf9,0x16,0xf6,0xd3,0xf5,0x2b,0xf2,0x32,
0xf2,0x65,0xf0,0x58,0xf0,0xca,0xf1,0xf0,0xf1,0x58,0xf3,0xef,0xf3,0x81,0xf3,0xe9,
0xf3,0x37,0xf3,0x6c,0xf3,0x3,0xf2,0xdf,0xf2,0x9,0xf0,0x3d,0xf1,0x69,0xef,0x18,
0xf0,0xc8,0xf1,0x11,0xf2,0xd4,0xf6,0x32,0xf7,0xce,0xfb,0xb6,0xfc,0x15,0xfe,0x71,
0xff,0x64,0xfe,0x5a,0xff,0x42,0xff,0x9b,0xff,0xaf,0x1,0xcf,0x1,0xca,0x4,0xc6,
0x4,0xc0,0x7,0xb6,0x7,0x16,0xa,0xca,0x9,0x85,0xa,0x88,0x9,0xdc,0x8,0xa8,
0x7,0xdf,0x6,0x1b,0x6,0x0,0x6,0xb6,0x5,0x4a,0x7,0xfe,0x6,0x11,0xa,0x25,
0x9,0x58,0xb,0x19,0xa,0x68,0xa,0x5b,0x9,0x49,0x8,0x34,0x7,0x36,0x5,0x48,
0x4,0xce,0x2,0x54,0x2,0x80,0x1,0x25,0x1,0xff,0xff,0xdd,0xff,0x86,0xff,0x98,
0xff,0xff,0xfe,0x1c,0xff,0xd9,0xfb,0x93,0xfc,0xaf,0xf9,0x96,0xfa,0x9,0xfa,0x3b,
0xfa,0xcf,0xf8,0x3,0xf9,0x69,0xf6,0xf1,0xf6,0xb2,0xf4,0xc,0xf5,0x55,0xf3,0xc5,
0xf3,0x37,0xf4,0xbf,0xf4,0x78,0xf6,0x19,0xf7,0x32,0xf7,0x61,0xf8,0x4,0xf8,0xe5,
0xf8,0x7b,0xf8,0x44,0xf8,0xa8,0xf6,0x2f,0xf6,0xd2,0xf6,0x77,0xf6,0xfe,0xfa,0xa6,
0xfa,0xac,0xfe,0xc0,0xfe,0x12,0x0,0x5b,0x0,0x19,0x1,0xf,0x1,0x55,0x3,0xc,
0x3,0x8f,0x6,0x36,0x6,0xbd,0x8,0x98,0x8,0x6b,0xa,0x92,0xa,0x93,0xd,0xa4,
0xd,0x3,0x10,0xc5,0xf,0x1,0x10,0x7d,0xf,0x84,0xf,0xe0,0xe,0xa2,0xe,0x7a,
0xe,0x92,0xc,0x30,0xd,0xce,0xa,0x6d,0xb,0x8b,0x9,0x7c,0x9,0xb5,0x7,0x3c,
0x7,0x39,0x5,0xc6,0x4,0xfb,0x1,0x9c,0x1,0xa6,0xfe,0x44,0xfe,0x6e,0xfc,0x13,
0xfc,0x73,0xfa,0x64,0xfa,0xdc,0xf7,0x1f,0xf8,0xdf,0xf4,0xed,0xf4,0x98,0xf0,0x67,
0xf0,0x2e,0xec,0x2a,0xec,0xbd,0xea,0x95,0xea,0x4,0xeb,0xbf,0xea,0xca,0xea,0x25,
0xeb,0x2c,0xec,0xa5,0xec,0x29,0xf0,0x24,0xf0,0xc9,0xf4,0x20,0xf5,0x60,0xf8,0x4b,
0xf9,0xa1,0xf9,0x8c,0xfa,0x87,0xfa,0x67,0xfb,0xdc,0xfe,0x33,0xff,0x32,0x4,0xeb,
0x3,0x5c,0x6,0x9a,0x6,0x27,0x7,0xcc,0x7,0xcc,0x8,0xd4,0x8,0xcb,0xa,0xa4,
0xa,0x2d,0xd,0x73,0xd,0x63,0xf,0xd4,0xf,0x3e,0x10,0x82,0x10,0x4e,0xf,0xee,
0xe,0x73,0xc,0x84,0xb,0x6b,0x9,0xb8,0x8,0x30,0x8,0xa2,0x7,0x3c,0x7,0x64,
0x6,0xa3,0x4,0x10,0x4,0x30,0x1,0x28,0x1,0xcf,0xfe,0xca,0xfe,0x69,0xfe,0x56,
0xfe,0xfb,0xfd,0xc,0xfe,0x49,0xfb,0x3c,0xfb,0x11,0xf8,0xcd,0xf7,0x16,0xf6,0xfe,
0xf5,0x97,0xf4,0xd7,0xf4,0xc,0xf4,0x5b,0xf4,0x21,0xf5,0x54,0xf5,0xcf,0xf6,0x13,
0xf7,0x4f,0xf8,0xd0,0xf8,0xc4,0xf8,0x7f,0xf9,0x30,0xf8,0xeb,0xf8,0x7a,0xf8,0xda,
0xf8,0xc9,0xf9,0xcc,0xf9,0x6b,0xfb,0x67,0xfb,0x44,0xfe,0x31,0xfe,0xf9,0x0,0xa5,
0x0,0xee,0x1,0xae,0x1,0x58,0x3,0x71,0x3,0xbd,0x4,0xbf,0x4,0xd3,0x2,0x6b,
0x2,0x57,0x0,0xbd,0xff,0x9b,0x1,0xb,0x1,0x77,0x4,0x2b,0x4,0xbe,0x5,0xc5,
0x5,0x3,0x6,0xd4,0x5,0x89,0x6,0xef,0x5,0x58,0x7,0xd0,0x6,0x21,0x7,0xc2,
0x6,0x45,0x5,0x1,0x5,0xcf,0x3,0xe4,0x3,0x2c,0x3,0x47,0x3,0xef,0x0,0xd7,
0x0,0xf7,0xfd,0x38,0xfe,0x8d,0xfd,0xf7,0xfd,0x57,0xff,0x6f,0xff,0xf8,0x0,0x44,
0x1,0x32,0x1,0xb4,0x1,0x68,0xff,0x63,0xff,0xed,0xfb,0xb7,0xfb,0xc2,0xf7,0x3,
0xf8,0xde,0xf4,0x4c,0xf5,0x37,0xf6,0x6e,0xf6,0x4,0xfa,0x14,0xfa,0xcc,0xf9,0x20,
0xfa,0x62,0xf5,0x3f,0xf6,0x25,0xf3,0xd9,0xf3,0x7f,0xf5,0x5a,0xf5,0x94,0xfa,0x41,
0xfa,0x6e,0x0,0xa4,0x0,0xca,0x3,0xd,0x4,0x24,0x2,0x3,0x2,0x7d,0xfd,0x54,
0xfd,0xea,0xfa,0xe4,0xfa,0x47,0xfe,0x1e,0xfe,0x98,0x5,0x6c,0x5,0xbc,0xa,0xcc,
0xa,0x61,0xb,0x4e,0xb,0x7c,0x9,0xf7,0x8,0x74,0x6,0xe7,0x5,0x28,0x4,0xb,
0x4,0xa,0x5,0x1a,0x5,0x47,0x8,0xd1,0x7,0x91,0xa,0x94,0x9,0x4c,0x9,0xc9,
0x8,0xbc,0x4,0xff,0x4,0xa3,0x0,0x8f,0x0,0xc5,0xff,0x5,0xff,0xc0,0x0,0x70,
0x0,0x8d,0x1,0xf,0x2,0xda,0x0,0x5a,0x1,0x5a,0xfd,0x68,0xfd,0x9a,0xf8,0x82,
0xf8,0x23,0xf6,0x40,0xf6,0xc9,0xf6,0x3b,0xf7,0xa6,0xf8,0x26,0xf9,0x97,0xf9,0xd0,
0xf9,0x84,0xf8,0xb8,0xf8,0x3d,0xf6,0xdb,0xf6,0x47,0xf4,0x33,0xf5,0xb9,0xf3,0x93,
0xf4,0x7b,0xf5,0xd4,0xf5,0x18,0xf8,0xd0,0xf7,0xb3,0xf8,0x81,0xf8,0x47,0xf8,0x8f,
0xf8,0x1f,0xf9,0x2,0xf9,0x51,0xfa,0x86,0xf9,0x59,0xfc,0xf6,0xfb,0x0,0x1,0x68,
0x1,0x59,0x5,0xc3,0x5,0x76,0x6,0x67,0x6,0xa8,0x5,0x4a,0x5,0xcc,0x3,0x68,
0x3,0xa2,0x2,0x49,0x2,0x41,0x5,0xc4,0x4,0xc4,0x9,0x20,0x9,0xd0,0xc,0x32,
0xc,0x85,0xd,0xf4,0xc,0x66,0x9,0x1b,0x9,0xbd,0x1,0x12,0x2,0x11,0xfe,0x95,
0xfe,0x32,0x0,0x17,0x0,0x46,0x3,0xef,0x2,0x14,0x4,0x8b,0x4,0xc3,0x1,0xb9,
0x2,0xd7,0xfe,0x40,0xff,0xb6,0xfe,0xda,0xfe,0x80,0xff,0x2a,0x0,0x1b,0xff,0xd,
0x0,0x3,0xff,0xb1,0xff,0xfd,0xfe,0x57,0xff,0xdc,0xfd,0x22,0xfe,0xda,0xfb,0x34,
0xfc,0x69,0xf9,0x81,0xf9,0x79,0xf8,0x41,0xf8,0xbb,0xf9,0xe0,0xf9,0x94,0xfa,0xf5,
0xfa,0x92,0xfa,0x6d,0xfa,0x26,0xfb,0xd8,0xfa,0xbc,0xfb,0xc9,0xfb,0x66,0xfc,0x4e,
0xfc,0xe5,0xfd,0x69,0xfd,0xb,0xff,0x90,0xfe,0xdf,0xfe,0x8f,0xfe,0xaf,0xfd,0x50,
0xfd,0xf2,0xfb,0x59,0xfb,0x8b,0xfb,0xdc,0xfa,0x4a,0xfe,0xaf,0xfd,0xd1,0x1,0x27,
0x1,0x3d,0x2,0x7a,0x1,0x52,0x0,0xac,0xff,0x52,0xff,0xec,0xfe,0xf1,0xff,0xd5,
0xff,0xb9,0x1,0xfc,0x1,0x7e,0x4,0x47,0x5,0xb3,0x7,0xb5,0x8,0x5b,0xa,0xdd,
0xa,0xbb,0x9,0xfd,0x9,0x96,0x4,0x60,0x5,0x75,0xff,0x34,0x0,0x4d,0xfe,0x40,
0xfe,0xf7,0xff,0xa3,0xff,0x49,0x2,0x48,0x2,0x37,0x3,0x9e,0x3,0xf9,0x1,0x90,
0x2,0x3a,0x0,0x6e,0x0,0x83,0xfe,0x60,0xfe,0x94,0xfd,0x9f,0xfd,0x23,0xff,0x43,
0xff,0xb,0x0,0x21,0x0,0x21,0xfc,0x22,0xfc,0xb9,0xf5,0x3e,0xf5,0x13,0xf2,0x64,
0xf1,0xba,0xf3,0x93,0xf3,0xcf,0xf8,0xea,0xf8,0x77,0xfd,0x5,0xfd,0x87,0xff,0x69,
0xfe,0x76,0xfd,0x69,0xfc,0xb,0xf9,0xa2,0xf8,0xe1,0xf8,0x9b,0xf8,0xa9,0xfd,0xfc,
0xfc,0x69,0x1,0xb9,0x0,0xc8,0x2,0xa8,0x2,0xbf,0x2,0x51,0x3,0xcc,0x0,0x84,
0x1,0xad,0xff,0xee,0xff,0x7,0x2,0x3f,0x2,0xa6,0x5,0x4c,0x6,0xfa,0x6,0xa2,
0x7,0x91,0x4,0x10,0x5,0xc9,0x0,0x11,0x1,0x89,0xff,0x63,0xff,0xf4,0x0,0xd6,
0x0,0x5c,0x2,0x84,0x2,0x87,0x2,0x82,0x2,0x8c,0x1,0x5d,0x1,0x15,0xff,0xe0,
0xfe,0xd6,0xfb,0xbf,0xfb,0xf5,0xfa,0x67,0xfb,0x6c,0xfd,0x12,0xfe,0xd8,0xff,0x1f,
0x0,0xd8,0xff,0xe,0x0,0x55,0xfd,0x98,0xfd,0x5a,0xf9,0x4d,0xf9,0x5a,0xf7,0xf1,
0xf6,0x1f,0xf9,0x93,0xf8,0xb8,0xfc,0x4c,0xfc,0xd7,0xff,0x6a,0xff,0xe,0x0,0x61,
0xff,0x76,0xfd,0xe,0xfd,0x85,0xfb,0xbd,0xfb,0xb,0xfb,0x6f,0xfb,0x2c,0xfc,0x87,
0xfc,0x9c,0x0,0xee,0x0,0xbe,0x5,0x1,0x6,0x90,0x7,0xfb,0x7,0x9d,0x5,0x1b,
0x6,0xf2,0x0,0x6b,0x1,0x7e,0xfd,0xeb,0xfd,0xd7,0xfe,0xa3,0xfe,0x53,0x2,0xb9,
0x1,0x47,0x4,0x47,0x4,0xf8,0x3,0x18,0x4,0x39,0x2,0x94,0x1,0xde,0x0,0xdc,
0xff,0x7b,0xff,0xb2,0xfe,0x1f,0xfe,0xc5,0xfd,0x1b,0x0,0x5,0x0,0x82,0x3,0x4a,
0x3,0x57,0x3,0x2b,0x3,0x3e,0x1,0x20,0x1,0x95,0xff,0x25,0xff,0xce,0xfd,0x81,
0xfd,0x31,0xfd,0x42,0xfd,0xfc,0xfd,0xa3,0xfd,0x4f,0xfe,0x62,0xfd,0xc0,0xfd,0xd1,
0xfc,0x73,0xfc,0xe7,0xfb,0xfb,0xfa,0xba,0xfa,0xc9,0xf9,0x50,0xf9,0x2e,0xf8,0xa9,
0xf7,0xac,0xf7,0x9e,0xf7,0xe5,0xf9,0xe6,0xf9,0x35,0xfc,0x38,0xfc,0x7f,0xfc,0x5,
0xfd,0x75,0xfc,0x13,0xfd,0x55,0xfd,0x97,0xfd,0x36,0xfe,0x45,0xfe,0x27,0xfe,0x13,
0xfe,0x95,0xfd,0x86,0xfd,0xa5,0xfd,0x62,0xfd,0xac,0xfe,0xf0,0xfd,0x42,0x0,0xab,
0xff,0x4,0x2,0x9d,0x1,0xf9,0x3,0x40,0x3,0xf4,0x5,0x8b,0x5,0x9f,0x6,0xdd,
0x6,0xc1,0x5,0xf5,0x5,0x98,0x5,0x95,0x5,0x9b,0x6,0x9b,0x6,0xab,0x6,0xee,
0x6,0x4c,0x5,0xe2,0x5,0xf2,0x3,0x3e,0x4,0x85,0x3,0x75,0x3,0x43,0x3,0x63,
0x3,0x97,0x1,0xae,0x1,0x50,0xff,0x46,0xff,0xea,0xfe,0xfe,0xfe,0x40,0xff,0x30,
0xff,0xb8,0xfd,0xab,0xfd,0x83,0xfb,0xd9,0xfb,0x9d,0xf9,0x27,0xfa,0x34,0xf7,0xeb,
0xf7,0xa7,0xf6,0x67,0xf7,0x80,0xf9,0xb,0xfa,0xa4,0xfc,0x67,0xfd,0xaa,0xfe,0x9e,
0xff,0xf0,0xfe,0x77,0xff,0x69,0xfb,0x97,0xfb,0x75,0xf7,0x96,0xf7,0x8,0xf8,0x4b,
0xf8,0x53,0xfc,0xc3,0xfc,0x78,0x2,0x71,0x2,0x42,0x7,0xa3,0x6,0xd4,0x6,0x68,
0x6,0x58,0x4,0x58,0x4,0x2a,0x3,0x66,0x3,0xa2,0x1,0xe5,0x1,0x8c,0x1,0x75,
0x1,0x43,0x4,0x10,0x4,0x12,0x6,0x35,0x6,0x5,0x6,0x39,0x6,0x40,0x4,0x2f,
0x4,0xfe,0xff,0x72,0xff,0xe8,0xfc,0xed,0xfb,0x51,0xfd,0x94,0xfc,0xac,0xfd,0x7b,
0xfd,0xe0,0xfb,0xbc,0xfb,0x15,0xf9,0x8c,0xf8,0x96,0xf6,0xaf,0xf5,0xc0,0xf5,0x2a,
0xf5,0x18,0xf7,0x38,0xf7,0x3a,0xf9,0x5d,0xf9,0x15,0xfa,0xf0,0xf9,0x17,0xf9,0x33,
0xf9,0xa2,0xf7,0xf,0xf8,0xc7,0xf7,0x44,0xf8,0xb9,0xfa,0x27,0xfb,0x6a,0xfe,0xa2,
0xfe,0x45,0xff,0x34,0xff,0x99,0xfd,0x32,0xfd,0x75,0xfc,0xb,0xfc,0xb2,0xfe,0xab,
0xfe,0x52,0x5,0x38,0x5,0x66,0xb,0x15,0xb,0x1b,0xc,0x3b,0xc,0x88,0xa,0xc4,
0xa,0xd,0x9,0xcc,0x8,0x68,0x7,0x13,0x7,0xd,0x9,0x1,0x9,0x19,0xd,0x5d,
0xd,0xd0,0xd,0x1c,0xe,0x3e,0xb,0x1d,0xb,0xb4,0x6,0x9e,0x6,0xaa,0x0,0x8,
0x1,0x22,0xfd,0x60,0xfd,0xbf,0xfb,0xca,0xfb,0x8f,0xf9,0x8b,0xf9,0xf0,0xf8,0xc0,
0xf8,0xf7,0xf7,0x20,0xf8,0xcd,0xf2,0x65,0xf3,0xf3,0xee,0x79,0xef,0x19,0xef,0x9f,
0xef,0xc8,0xef,0x14,0xf0,0xbe,0xf2,0xcd,0xf2,0x65,0xf6,0xb,0xf7,0x4f,0xf5,0xf,
0xf6,0x92,0xf3,0x81,0xf3,0xbd,0xf4,0x7a,0xf4,0xd5,0xf5,0xc2,0xf5,0x87,0xf8,0x61,
0xf8,0x38,0xfd,0xf,0xfd,0x47,0x0,0xfc,0xff,0x3e,0x4,0xff,0x3,0x6c,0x9,0x74,
0x9,0x9a,0x9,0x75,0x9,0x7c,0x6,0x62,0x6,0xd3,0x6,0x10,0x7,0xc5,0x9,0xc4,
0x9,0x54,0xb,0x6b,0xb,0x27,0xb,0xc4,0xb,0x7f,0xa,0xd7,0xa,0xc,0xa,0x32,
0xa,0x74,0x9,0x1,0xa,0x47,0x7,0xbb,0x7,0xbe,0x3,0xd2,0x3,0xaa,0x1,0x7f,
0x1,0x3c,0x1,0xd5,0x0,0x5b,0x0,0x21,0x0,0x8e,0xff,0x84,0xff,0xee,0xfd,0xb3,
0xfd,0x1a,0xfa,0xde,0xf9,0xbb,0xf7,0x81,0xf7,0xf,0xf7,0xcc,0xf6,0x4f,0xf5,0x4f,
0xf5,0x1e,0xf6,0xfc,0xf5,0x74,0xf9,0xf8,0xf8,0xe0,0xf9,0xbd,0xf9,0xdf,0xf8,0x15,
0xf9,0x34,0xf8,0x5f,0xf8,0x1c,0xf7,0x84,0xf7,0xde,0xf8,0x7a,0xf9,0x90,0xfc,0x17,
0xfd,0x8b,0xfe,0x22,0xff,0xe8,0x0,0x69,0x1,0xbc,0x3,0xff,0x3,0x32,0x5,0xa1,
0x5,0x3b,0x6,0x6,0x7,0x68,0x5,0x48,0x6,0x3a,0x3,0xec,0x3,0xa5,0x3,0x11,
0x4,0x23,0x5,0x67,0x5,0xe6,0x4,0x15,0x5,0x38,0x4,0x35,0x4,0x86,0x3,0x5b,
0x3,0x51,0x2,0x0,0x2,0xe2,0x0,0x4b,0x0,0x96,0xff,0x12,0xff,0x60,0xff,0x3d,
0xff,0xd1,0xff,0x7b,0xff,0xb,0xfe,0x41,0xfd,0x45,0xf9,0xbf,0xf8,0xa7,0xf5,0x87,
0xf5,0x9c,0xf6,0x67,0xf6,0x8,0xfa,0xdc,0xf9,0xe0,0xfd,0xdb,0xfd,0x79,0x1,0x5a,
0x1,0xe9,0x0,0xea,0x0,0x38,0xfb,0x9e,0xfb,0x74,0xf5,0x9,0xf6,0x8e,0xf3,0x20,
0xf4,0xea,0xf6,0x52,0xf7,0xe6,0xfc,0x18,0xfd,0x15,0x0,0x12,0x0,0xc6,0x0,0x60,
0x0,0x93,0x1,0x25,0x1,0xfe,0x1,0xc,0x2,0x99,0x2,0xb8,0x2,0xbc,0x2,0xae,
0x2,0x15,0x1,0x1f,0x1,0xb7,0xff,0x73,0xff,0x0,0xff,0x56,0xfe,0x6f,0xff,0xd0,
0xfe,0xfd,0x2,0x3a,0x2,0x8a,0x5,0xd0,0x4,0x4,0x4,0xf2,0x3,0x6c,0x2,0x9f,
0x2,0xe8,0x1,0xf3,0x1,0x4e,0x1,0x56,0x1,0x52,0x1,0x25,0x1,0x91,0x0,0x19,
0x0,0x1c,0xfe,0x88,0xfd,0x95,0xfb,0x10,0xfb,0x3c,0xfa,0x3f,0xfa,0x2b,0xfb,0x9b,
0xfb,0xfe,0xfd,0x40,0xfe,0xf,0x0,0x57,0x0,0xf6,0xff,0x52,0x0,0xdb,0xfe,0xe8,
0xfe,0x7a,0xfe,0x7e,0xfe,0xd5,0xfe,0xc3,0xfe,0x9d,0xff,0x27,0xff,0x1d,0x1,0xf,
0x1,0xb1,0x1,0x61,0x2,0xe4,0x0,0x8c,0x1,0xfe,0x0,0x72,0x1,0xcc,0x1,0x36,
0x2,0x65,0x2,0x9b,0x2,0x88,0x2,0x8c,0x2,0x74,0x0,0x3d,0x0,0x38,0xfe,0xf4,
0xfd,0x64,0xff,0x88,0xff,0x5b,0x1,0xc5,0x1,0x87,0x1,0xf8,0x1,0x1d,0x1,0x85,
0x1,0xbc,0x0,0xa4,0x0,0x60,0x0,0xc4,0xff,0x12,0xff,0x6e,0xfe,0xe5,0xfc,0xff,
0xfb,0xbe,0xfc,0xb0,0xfb,0x2a,0xfe,0xbe,0xfd,0xbb,0xfd,0xbd,0xfd,0x74,0xfc,0x38,
0xfc,0x6a,0xfd,0x4,0xfd,0x54,0xff,0xd9,0xfe,0x12,0xff,0x85,0xfe,0xc4,0xfd,0x6e,
0xfd,0x8f,0xfd,0x8b,0xfd,0x47,0xfd,0xb7,0xfd,0x54,0xfd,0x43,0xfe,0x9e,0xfe,0x93,
0xff,0xb4,0xff,0x72,0x0,0xf1,0x1,0x9f,0x2,0xe8,0x4,0x90,0x5,0x4e,0x5,0x27,
0x6,0xb7,0x5,0xa8,0x6,0xbc,0x6,0x3e,0x7,0x22,0x5,0x87,0x5,0x10,0x3,0xbc,
0x3,0xe4,0xff,0x1c,0x0,0xd0,0xfb,0x5c,0xfb,0xe7,0xfe,0x84,0xfe,0x12,0x6,0xe3,
0x5,0x77,0x7,0x40,0x7,0x9,0x6,0xa0,0x5,0xfd,0x4,0xf,0x4,0x7,0xff,0xc8,
0xfd,0xa2,0xee,0x91,0xed,0xa,0xd9,0x10,0xd8,0x3,0xd3,0x1,0xd2,0xa3,0xe2,0xf0,
0xe1,0xab,0xf0,0xa9,0xf0,0xc8,0xee,0x77,0xef,0x2a,0xe4,0xc3,0xe4,0x7,0xdb,0xc,
0xdb,0x4a,0xda,0x90,0xda,0x10,0xdf,0x2b,0xe0,0xf8,0xe9,0x39,0xeb,0x56,0x7,0x51,
0x8,0x48,0x2d,0x5c,0x2e,0xd9,0x3e,0x42,0x40,0x81,0x35,0xa,0x37,0x5c,0x20,0x72,
0x21,0x50,0x12,0x99,0x12,0x6c,0x16,0x60,0x16,0xa7,0x25,0xd8,0x25,0x93,0x34,0xe4,
0x34,0xe9,0x3c,0xdd,0x3c,0x83,0x39,0xe,0x39,0x27,0x2f,0xd5,0x2e,0xd2,0x26,0xbd,
0x26,0xd4,0x1f,0x3f,0x1f,0xbe,0x16,0x5e,0x15,0x20,0x8,0x85,0x6,0x78,0xf1,0xa,
0xf0,0x3e,0xda,0x0,0xd9,0x74,0xce,0x3b,0xcd,0x60,0xd1,0x3f,0xd0,0xeb,0xd8,0x98,
0xd8,0x42,0xd7,0xd8,0xd7,0xa6,0xcb,0xef,0xcb,0x25,0xc0,0x9e,0xbf,0xe,0xbc,0x9f,
0xbb,0x66,0xbf,0x8e,0xbf,0x50,0xc5,0xd6,0xc5,0x8f,0xce,0x48,0xcf,0xec,0xdd,0xb9,
0xde,0xe1,0xe9,0xd3,0xea,0x83,0xec,0x8d,0xed,0x22,0xef,0xb3,0xef,0xbd,0xf7,0xb6,
0xf7,0xc9,0x4,0xc2,0x4,0x85,0x10,0xe3,0x10,0xc6,0x14,0x9c,0x15,0xd6,0x19,0xeb,
0x1a,0xd8,0x28,0xae,0x29,0xae,0x38,0x5f,0x39,0x86,0x40,0x3a,0x41,0x2,0x40,0xee,
0x3f,0xcc,0x37,0xc0,0x36,0x40,0x2e,0x64,0x2d,0x9b,0x28,0x66,0x28,0x88,0x25,0x54,
0x25,0xde,0x24,0x57,0x24,0xf4,0x23,0x37,0x23,0xd9,0x1d,0x1a,0x1d,0xac,0x11,0x1a,
0x11,0x89,0x0,0xde,0xff,0x61,0xf1,0x6c,0xf0,0xee,0xeb,0x32,0xeb,0x24,0xe9,0xd6,
0xe8,0xd,0xdf,0x97,0xde,0x60,0xd2,0x83,0xd1,0xae,0xcc,0xc8,0xcb,0xbf,0xcf,0xfb,
0xce,0x27,0xd6,0x77,0xd5,0x8a,0xda,0xf4,0xd9,0xd3,0xde,0x64,0xde,0xd1,0xe6,0xbd,
0xe6,0xf7,0xed,0x73,0xee,0xe,0xee,0xc1,0xee,0x16,0xeb,0x80,0xeb,0x3e,0xec,0xa0,
0xec,0x8a,0xf2,0x75,0xf3,0xd2,0xfd,0x19,0xff,0x2d,0xb,0x5,0xc,0x3b,0x13,0x53,
0x13,0xab,0x16,0xa3,0x16,0x9f,0x19,0x13,0x1a,0xaa,0x18,0x2d,0x19,0xb6,0x15,0xbf,
0x15,0x8c,0x17,0x8f,0x17,0x93,0x1c,0xf9,0x1c,0x4a,0x23,0x99,0x23,0x37,0x2a,0x43,
0x2a,0x74,0x29,0xb5,0x29,0x83,0x20,0xf7,0x20,0x34,0x15,0x7d,0x15,0xc3,0x8,0xb0,
0x8,0x87,0xff,0xe3,0xfe,0xd0,0xfc,0xcc,0xfb,0x71,0xfa,0xca,0xf9,0xea,0xf5,0xc6,
0xf5,0x9a,0xf2,0x67,0xf2,0x4d,0xef,0xd6,0xee,0x91,0xea,0x2a,0xea,0x3e,0xe6,0x59,
0xe6,0x48,0xe2,0xd6,0xe2,0x28,0xde,0x5d,0xde,0xc7,0xdb,0x71,0xdb,0x64,0xdc,0x72,
0xdc,0xf3,0xde,0x71,0xdf,0x56,0xe2,0x44,0xe2,0xf0,0xe5,0x6f,0xe5,0xb0,0xe9,0x7b,
0xe9,0xad,0xee,0x56,0xee,0x93,0xf4,0xb7,0xf3,0x68,0xfa,0xae,0xf9,0x6e,0x2,0x3d,
0x2,0xfd,0xc,0x23,0xd,0xac,0x15,0x17,0x16,0xba,0x1b,0x3f,0x1c,0xb,0x22,0x3b,
0x22,0xe4,0x27,0xb5,0x27,0xf,0x2b,0xf6,0x2a,0x0,0x2b,0x27,0x2b,0x29,0x27,0x9,
0x27,0x52,0x20,0x9d,0x1f,0x4c,0x1a,0xc1,0x19,0x37,0x18,0x50,0x18,0xad,0x17,0x8b,
0x17,0x68,0x13,0x9f,0x12,0xd8,0xa,0x58,0xa,0xeb,0x1,0xfe,0x1,0x5b,0xfa,0x61,
0xfa,0x85,0xf2,0x9b,0xf2,0xc8,0xe9,0x23,0xea,0xb2,0xe2,0xab,0xe2,0xe0,0xdf,0x3b,
0xdf,0xbe,0xdf,0xfa,0xde,0x55,0xde,0x98,0xdd,0xac,0xda,0x12,0xda,0x34,0xd7,0x1d,
0xd7,0xe9,0xd5,0x1d,0xd6,0x1,0xd7,0x0,0xd7,0xe2,0xda,0xd2,0xda,0xbb,0xe1,0x6,
0xe2,0x2f,0xe9,0x3,0xea,0xd3,0xee,0xe,0xf0,0xd4,0xf4,0xd3,0xf5,0x8a,0xfe,0xe,
0xff,0xe,0x9,0xd0,0x9,0x90,0xe,0xb9,0xf,0x98,0x10,0x65,0x11,0xf3,0x15,0x57,
0x16,0xef,0x1e,0x40,0x1f,0x56,0x24,0x57,0x24,0xca,0x22,0x8e,0x22,0x7d,0x20,0x86,
0x20,0xe9,0x22,0x4c,0x23,0xbb,0x24,0x50,0x25,0xd9,0x1f,0x5b,0x20,0x6f,0x19,0x6d,
0x19,0xd2,0x17,0x43,0x17,0xc6,0x16,0xef,0x15,0x8a,0xf,0x93,0xe,0x3f,0x4,0x60,
0x3,0xb2,0xfc,0xd4,0xfb,0x57,0xfa,0x1d,0xf9,0xf4,0xf6,0xc6,0xf5,0xa3,0xf0,0xf0,
0xef,0xe8,0xeb,0xf9,0xea,0x94,0xe9,0x2f,0xe8,0xe1,0xe5,0x4,0xe5,0xdf,0xdf,0xb1,
0xdf,0x32,0xdc,0x2a,0xdc,0xb3,0xdf,0x11,0xe0,0xe1,0xe7,0x86,0xe8,0xd9,0xee,0x28,
0xef,0xf6,0xf3,0x3d,0xf4,0xf7,0xf7,0x4e,0xf8,0x8f,0xf9,0x69,0xf9,0xb9,0xf9,0x94,
0xf9,0x23,0xfa,0xa7,0xfa,0x69,0xfb,0x1d,0xfc,0x7d,0xfe,0x3d,0xff,0x8,0x2,0x47,
0x3,0x2c,0x5,0xc2,0x6,0x17,0xb,0x6c,0xc,0xa9,0x13,0x71,0x14,0x1d,0x1a,0x85,
0x1a,0x86,0x1b,0xee,0x1b,0xce,0x16,0x52,0x17,0x1f,0xe,0xad,0xe,0xc6,0x7,0x25,
0x8,0xdf,0x6,0x8c,0x6,0x11,0xa,0xf8,0x8,0x85,0xe,0x67,0xd,0xc,0xf,0x63,
0xe,0x83,0x9,0xf9,0x8,0x29,0x2,0xc4,0x1,0x2a,0xfc,0x73,0xfc,0x86,0xf7,0xf9,
0xf7,0x4e,0xf4,0xf4,0xf3,0x8a,0xf2,0xe,0xf2,0xf2,0xf2,0xfe,0xf2,0x63,0xf4,0x18,
0xf4,0xc7,0xf2,0xee,0xf1,0xba,0xee,0x1,0xee,0x96,0xec,0xb,0xec,0xf7,0xeb,0xe2,
0xeb,0x2f,0xeb,0xd5,0xeb,0x8f,0xeb,0x2e,0xec,0xf2,0xed,0x3f,0xee,0xd4,0xf2,0x48,
0xf3,0x27,0xfa,0xc8,0xfa,0x2f,0x1,0xe6,0x1,0x93,0x5,0x29,0x6,0x85,0x6,0x95,
0x6,0xfb,0x3,0xe2,0x3,0x5,0x2,0x1f,0x2,0xe6,0x5,0x94,0x5,0x26,0xe,0x25,
0xd,0xc5,0x14,0xed,0x13,0x5a,0x16,0x1c,0x16,0xc9,0x13,0xae,0x13,0xa2,0x11,0xa9,
0x11,0x7f,0x13,0x1,0x14,0xb5,0x15,0x3b,0x16,0xf0,0x12,0xff,0x12,0x2d,0xd,0x10,
0xd,0x54,0x8,0x5c,0x8,0xb8,0x3,0xed,0x3,0x3e,0xfe,0x57,0xfe,0x63,0xf9,0x38,
0xf9,0x39,0xf8,0x63,0xf8,0x1a,0xfb,0x7f,0xfb,0xc,0xfb,0xb,0xfb,0x79,0xf3,0xf5,
0xf3,0x4,0xeb,0x40,0xec,0x4f,0xe7,0xe4,0xe7,0x88,0xe7,0xca,0xe7,0x75,0xec,0x41,
0xed,0x61,0xf4,0xb1,0xf4,0x7a,0xf9,0x31,0xf9,0x9b,0xf9,0xc7,0xf9,0xee,0xf4,0x4f,
0xf5,0xf3,0xee,0xe2,0xee,0x64,0xef,0xdb,0xee,0x92,0xf6,0x4,0xf6,0xff,0xfe,0x1e,
0xff,0xe7,0x6,0x70,0x7,0xb8,0xa,0xe9,0xa,0x4a,0x8,0x35,0x8,0x1d,0x6,0xe0,
0x5,0x58,0x7,0x21,0x7,0x8f,0x8,0xf2,0x8,0xfb,0x8,0x93,0x9,0x45,0x8,0x3a,
0x8,0x5,0x6,0xab,0x5,0xff,0x3,0xf2,0x3,0xb,0x2,0x2,0x2,0x19,0x1,0xb2,
0x0,0x9b,0x3,0x25,0x3,0xbb,0x5,0x83,0x5,0x6f,0x3,0x36,0x3,0x2f,0x0,0xd4,
0xff,0xa8,0xff,0x47,0xff,0x65,0x1,0xf5,0x0,0x80,0x2,0x1a,0x2,0xc5,0xff,0x73,
0xff,0xc6,0xfa,0x87,0xfa,0xd6,0xf7,0xfa,0xf7,0xf5,0xf7,0x44,0xf8,0xec,0xfa,0xde,
0xfa,0x38,0xff,0x29,0xff,0x4c,0x0,0x73,0x0,0xa3,0xfd,0x98,0xfd,0xe2,0xfb,0xcc,
0xfb,0x95,0xfc,0xac,0xfc,0x0,0xfe,0x32,0xfe,0x96,0xff,0xe,0x0,0x7c,0x1,0x2a,
0x2,0x93,0x3,0x62,0x4,0x5a,0x4,0x49,0x5,0x6b,0x1,0x1,0x2,0xf7,0xfc,0x3e,
0xfd,0xb9,0xfc,0x18,0xfd,0xad,0x0,0xb3,0x0,0xf1,0x3,0x90,0x3,0x10,0x5,0xe3,
0x4,0xed,0x4,0xdc,0x4,0x69,0x3,0x48,0x3,0x78,0x1,0x4f,0x1,0x78,0x0,0x19,
0x0,0x29,0x0,0xf5,0xff,0xb4,0xff,0x16,0x0,0x17,0xfe,0xb4,0xfe,0x8c,0xfb,0x7,
0xfc,0x79,0xfa,0xa3,0xfa,0xa5,0xfb,0x9a,0xfb,0x31,0xfd,0x36,0xfd,0xf9,0xfd,0xad,
0xfd,0x1d,0xfe,0x7a,0xfd,0xea,0xfd,0x9b,0xfd,0x15,0xfd,0xde,0xfc,0x6a,0xfb,0xfe,
0xfa,0xdf,0xfa,0xd4,0xfa,0xc9,0xfc,0x1a,0xfd,0x3a,0xff,0x89,0xff,0x1c,0x1,0x6f,
0x1,0x6f,0x2,0x7e,0x2,0x3a,0x2,0x2,0x2,0x6c,0x1,0x3b,0x1,0x8b,0x0,0x37,
0x0,0x6f,0xfe,0xfd,0xfd,0x1f,0xfe,0xcd,0xfd,0xe2,0x1,0x93,0x1,0xf3,0x4,0xcb,
0x4,0xc7,0x4,0xfb,0x4,0xe8,0x3,0x4a,0x4,0x17,0x3,0xaa,0x3,0xbf,0x2,0x91,
0x3,0xee,0x2,0xbe,0x3,0x4c,0x1,0xf7,0x1,0x14,0xff,0xa0,0xff,0xce,0xff,0x13,
0x0,0x18,0x2,0xe2,0x1,0xb1,0x3,0x46,0x3,0xdd,0x4,0x8d,0x4,0x89,0x4,0x9,
0x4,0x78,0x2,0xce,0x1,0x31,0x1,0xce,0x0,0x2,0x1,0xb6,0x0,0x75,0x0,0x3c,
0x0,0xa5,0x0,0xb3,0x0,0x5f,0x2,0x24,0x2,0x6b,0x3,0xee,0x2,0x3e,0x2,0xea,
0x1,0x46,0xff,0xa5,0xfe,0x63,0xfb,0xc1,0xfa,0x9b,0xf8,0x7d,0xf8,0x50,0xf8,0xf8,
0xf7,0xce,0xf8,0x6b,0xf8,0xa8,0xf8,0xfa,0xf8,0xaa,0xf8,0x41,0xf9,0x49,0xf9,0x1f,
0xfa,0x57,0xfa,0x7d,0xfb,0x8a,0xfb,0x6d,0xfc,0xa,0xfc,0x1e,0xfd,0xaa,0xfb,0x14,
0xfd,0x18,0xfb,0xce,0xfb,0x98,0xfa,0xb0,0xfa,0xc9,0xfa,0xbe,0xfa,0x1,0xfd,0xa3,
0xfc,0xfa,0x0,0x96,0x0,0xe6,0x3,0x92,0x3,0xd7,0x3,0x40,0x3,0xfc,0x1,0x7c,
0x1,0x39,0x0,0x3,0x0,0x14,0x0,0xe7,0xff,0x8e,0x2,0x5e,0x2,0xba,0x5,0x5d,
0x5,0xa1,0x6,0xea,0x5,0x58,0x5,0x81,0x4,0x87,0x3,0xe9,0x2,0xbf,0x2,0x57,
0x2,0xa1,0x3,0xfc,0x2,0x4f,0x4,0x89,0x3,0x7e,0x3,0x4b,0x3,0xc9,0x1,0x36,
0x2,0xe,0xff,0xbf,0xff,0x9c,0xfc,0x57,0xfd,0xbc,0xfc,0x62,0xfd,0x76,0xfe,0x5d,
0xff,0xf4,0xff,0xd,0x1,0x3a,0x0,0xc5,0x0,0x3c,0xfe,0x48,0xfe,0xcf,0xfb,0xc8,
0xfb,0x69,0xfb,0x52,0xfb,0xfe,0xfb,0x22,0xfc,0xb1,0xfc,0xf9,0xfc,0xf0,0xfd,0xc9,
0xfd,0x65,0xff,0xdf,0xfe,0xe2,0x0,0x63,0x0,0x5e,0x1,0x64,0x1,0x3b,0x0,0xdd,
0x0,0x28,0x0,0x7a,0x0,0x6b,0x2,0xf,0x2,0x9c,0x3,0x34,0x3,0xc,0x1,0xc2,
0x0,0xfb,0xfc,0xaf,0xfc,0xfd,0xfb,0x7e,0xfb,0x5f,0xfe,0x95,0xfd,0x7,0x0,0xa2,
0xff,0xc,0x0,0x1a,0x0,0x9b,0x0,0x4c,0x0,0x3e,0x1,0xc6,0x0,0xab,0x0,0x65,
0x0,0x93,0xff,0x60,0xff,0x19,0xff,0x63,0xff,0x27,0xff,0xb3,0xff,0x6d,0xfe,0x60,
0xfe,0x2c,0xfd,0xbc,0xfc,0x29,0xfd,0xd1,0xfc,0xb9,0xfd,0xb9,0xfd,0xb,0xfe,0x98,
0xfe,0xa4,0xff,0xc,0x0,0xd1,0x1,0x93,0x1,0xe6,0x1,0xe5,0x1,0x4b,0x0,0xe,
0x1,0xd6,0xff,0xd2,0x0,0xd6,0x1,0xa5,0x2,0x47,0x4,0xee,0x4,0xde,0x4,0x8f,
0x5,0xa9,0x4,0x79,0x5,0xb6,0x4,0x4c,0x5,0x7b,0x3,0x6e,0x3,0xd0,0x0,0x22,
0x0,0x31,0xff,0x4a,0xfe,0xba,0x0,0xf1,0xff,0x22,0x4,0x7b,0x3,0x11,0x5,0x61,
0x4,0x1b,0x2,0x31,0x1,0x4d,0xfe,0x62,0xfd,0xd8,0xfb,0x86,0xfb,0xeb,0xfb,0x11,
0xfc,0xa1,0xfe,0x75,0xfe,0x3c,0x0,0xa0,0xff,0x45,0xfe,0x8d,0xfd,0x15,0xfb,0x70,
0xfa,0x36,0xf9,0xc5,0xf8,0xa5,0xf9,0x36,0xf9,0x2e,0xfb,0xbe,0xfa,0xfe,0xfa,0x3,
0xfb,0xe8,0xf9,0x7e,0xfa,0x2c,0xfa,0xf,0xfb,0x14,0xfa,0xd,0xfb,0x81,0xf8,0x44,
0xf9,0x2e,0xf7,0xce,0xf7,0x62,0xf7,0x3f,0xf8,0x51,0xfa,0x27,0xfb,0x5,0xff,0x57,
0xff,0xd4,0x1,0x8e,0x1,0xd1,0x2,0x48,0x2,0x89,0x4,0x70,0x4,0x1b,0x6,0x91,
0x6,0xab,0x6,0x7,0x7,0xed,0x7,0xea,0x7,0x54,0xa,0xa,0xa,0x9e,0xc,0x2d,
0xc,0x89,0xd,0x6c,0xd,0xad,0xc,0xec,0xc,0x2b,0xb,0x2d,0xb,0x9,0xa,0x9d,
0x9,0xa9,0x8,0xe2,0x7,0x7c,0x6,0x6a,0x5,0x24,0x4,0x2c,0x3,0xb7,0x2,0xe9,
0x1,0x97,0x2,0xef,0x1,0x6e,0x2,0x76,0x2,0xb5,0xff,0x59,0x0,0xfa,0xf9,0x62,
0xfa,0xa6,0xf4,0x8f,0xf4,0xe7,0xf2,0xa7,0xf2,0xd4,0xf3,0xaa,0xf3,0x0,0xf5,0x36,
0xf5,0x3b,0xf5,0xd1,0xf5,0xa7,0xf4,0x21,0xf5,0x72,0xf4,0x93,0xf4,0x2,0xf4,0x3,
0xf4,0xab,0xf1,0xe4,0xf1,0xcb,0xf0,0x4e,0xf1,0x4e,0xf6,0xe3,0xf6,0x69,0xff,0x9a,
0xff,0xe9,0x4,0xa9,0x4,0x61,0x4,0x4d,0x4,0xc8,0x1,0xda,0x1,0x5d,0x2,0xf3,
0x1,0xd5,0x5,0x1b,0x5,0xea,0x7,0xa3,0x7,0x6e,0x8,0xa9,0x8,0x9b,0x9,0xc,
0xa,0x3b,0xa,0xa1,0xa,0xf,0x9,0xe0,0x8,0xa,0x7,0x5a,0x6,0xf4,0x4,0x70,
0x4,0xea,0x3,0xd9,0x3,0xb3,0x3,0xd4,0x3,0xba,0x1,0xce,0x1,0xe1,0xfd,0xd8,
0xfd,0x14,0xfa,0x23,0xfa,0xe3,0xf6,0x69,0xf7,0xec,0xf5,0xa0,0xf6,0x75,0xf8,0xb5,
0xf8,0x6d,0xfb,0x69,0xfb,0xa2,0xfb,0xe8,0xfb,0xd3,0xf9,0x2,0xfa,0xb9,0xf8,0x36,
0xf8,0xf2,0xf9,0x1d,0xf9,0xf6,0xfb,0x43,0xfb,0x8,0xfd,0xa9,0xfc,0xc4,0xfe,0xf,
0xff,0xfa,0x1,0x7d,0x2,0xc0,0x4,0xc1,0x4,0xe1,0x6,0xb4,0x6,0x1b,0x9,0x3e,
0x9,0xe3,0xa,0x2d,0xb,0x23,0xc,0x55,0xc,0x63,0xc,0x25,0xc,0x79,0xa,0x70,
0x9,0x52,0x7,0x50,0x6,0xe4,0x4,0xbf,0x4,0x9a,0x3,0xaa,0x3,0x6c,0x2,0x15,
0x2,0x4f,0x0,0xe3,0xff,0x10,0xfe,0xf3,0xfd,0x4e,0xfc,0x57,0xfc,0x66,0xf9,0xca,
0xf9,0x2a,0xf6,0xe3,0xf6,0x60,0xf6,0xef,0xf6,0xcf,0xf9,0x40,0xfa,0x8e,0xfb,0xb5,
0xfb,0x2c,0xf8,0xc0,0xf7,0x61,0xf2,0x97,0xf1,0x54,0xf0,0x4,0xf0,0xf4,0xf2,0x48,
0xf3,0x4b,0xf6,0x45,0xf7,0xef,0xf8,0x86,0xfa,0xed,0xfa,0xd0,0xfb,0x19,0xfc,0xf4,
0xfb,0x90,0xfd,0x43,0xfd,0xe,0xff,0x3,0xff,0x5f,0x0,0xf8,0xff,0x93,0x3,0xff,
0x2,0x5c,0x8,0x9,0x8,0x40,0xc,0x6f,0xb,0x9f,0xd,0x9c,0xc,0x19,0xc,0x44,
0xb,0xc2,0xa,0x7,0xa,0xe9,0xb,0x34,0xb,0x82,0xc,0x4d,0xc,0xb9,0xa,0xeb,
0xa,0xe1,0x7,0xb6,0x7,0xd3,0x4,0xb5,0x4,0xd1,0x2,0x7e,0x2,0xdf,0x1,0x6b,
0x1,0x28,0x0,0xf9,0xff,0x1b,0xfd,0x49,0xfd,0x84,0xf9,0xd2,0xf9,0x55,0xf7,0x99,
0xf7,0xc9,0xf6,0x3d,0xf7,0x49,0xf5,0x37,0xf5,0x1e,0xf4,0x1a,0xf4,0x50,0xf6,0xc4,
0xf6,0x4b,0xf9,0xf0,0xf9,0xbd,0xf9,0x58,0xfa,0x5e,0xf8,0xb3,0xf8,0x11,0xf7,0x33,
0xf7,0x3f,0xf7,0xea,0xf6,0x7e,0xf9,0x99,0xf9,0xc,0xfd,0x59,0xfd,0xe9,0xff,0xef,
0xff,0xd9,0x0,0xb7,0x0,0xe,0x1,0xde,0x0,0x59,0x2,0x60,0x2,0xc3,0x5,0x99,
0x5,0x37,0xa,0x45,0xa,0xfe,0xc,0xce,0xc,0xf2,0xd,0xb6,0xd,0x94,0xd,0xa6,
0xd,0x2e,0xb,0x2c,0xb,0x34,0x8,0xf2,0x7,0x63,0x5,0xae,0x4,0xc3,0x2,0x84,
0x2,0x4e,0x2,0xa,0x2,0x9a,0x2,0x3d,0x2,0x1e,0x1,0xb9,0x0,0xf5,0xfe,0x79,
0xfe,0x5c,0xfc,0xf,0xfc,0x67,0xf9,0x20,0xf9,0x1a,0xf7,0x56,0xf7,0xbc,0xf5,0xa5,
0xf5,0x95,0xf6,0x6a,0xf6,0xc1,0xf8,0xcc,0xf8,0x67,0xf9,0xbf,0xf9,0x80,0xf8,0xa,
0xf9,0x58,0xf7,0x51,0xf7,0x5a,0xf8,0x5b,0xf8,0x55,0xfb,0x41,0xfb,0x98,0xfb,0xc8,
0xfb,0xd,0xfa,0xf7,0xf9,0xb9,0xfa,0x86,0xfa,0xca,0xfc,0xfa,0xfc,0x5a,0xff,0xb1,
0xff,0xea,0x1,0xe,0x3,0x26,0x5,0x3b,0x6,0xed,0x9,0x89,0xa,0x76,0xa,0x21,
0xa,0x71,0x5,0x23,0x5,0x2f,0x3,0x60,0x3,0xea,0x4,0xee,0x4,0xec,0x5,0x35,
0x6,0xbb,0x5,0xda,0x5,0x98,0x5,0xe0,0x5,0xdc,0x6,0x8f,0x6,0xe7,0x8,0x62,
0x8,0x41,0x9,0xd8,0x8,0xa3,0x7,0xf,0x7,0x7f,0x4,0x54,0x4,0xc5,0x0,0xc9,
0x0,0xa8,0xfe,0xf8,0xfe,0x33,0xff,0x44,0xfe,0x15,0x1,0xa0,0xff,0x3f,0x1,0x85,
0x0,0x79,0xff,0x59,0xff,0x6b,0xfd,0x97,0xfd,0xff,0xf9,0xa5,0xf9,0xca,0xf6,0x84,
0xf6,0xf6,0xf5,0x62,0xf5,0x7e,0xf5,0xb4,0xf5,0x8c,0xf6,0x76,0xf7,0x29,0xf9,0x16,
0xfa,0x4b,0xf9,0x3c,0xfa,0x95,0xf8,0xd1,0xf8,0xce,0xf8,0x19,0xf9,0xca,0xf8,0x6,
0xf9,0xfb,0xf9,0xc0,0xfa,0x45,0xfb,0xbd,0xfb,0x1b,0xfc,0x34,0xfc,0x93,0xfe,0xde,
0xfe,0x45,0x0,0x2b,0x0,0xef,0x0,0xfe,0x0,0x3f,0x3,0xd7,0x2,0xcf,0x5,0xca,
0x5,0x8c,0x7,0xce,0x7,0x7f,0x7,0xbe,0x7,0xd9,0x5,0x89,0x5,0x2b,0x6,0xd,
0x5,0x38,0x7,0x92,0x6,0xfd,0x6,0x19,0x6,0x47,0x7,0xec,0x6,0xb0,0x6,0xa7,
0x6,0x55,0x5,0x54,0x5,0x1b,0x5,0x9a,0x4,0xb9,0x3,0xd2,0x2,0xc5,0x1,0xec,
0x1,0xaf,0x0,0x2a,0x1,0x6a,0xfd,0x30,0xfe,0x6d,0xf8,0x91,0xf8,0xad,0xf5,0xe5,
0xf5,0x51,0xf6,0xa0,0xf6,0x91,0xf8,0x64,0xf8,0x25,0xfa,0x66,0xfa,0x11,0xfb,0x66,
0xfb,0x86,0xfb,0xd,0xfc,0x48,0xfb,0x12,0xfb,0xa1,0xfb,0xb1,0xfb,0xb7,0xfb,0xca,
0xfb,0x10,0xfb,0xaa,0xfa,0x30,0xfc,0x56,0xfc,0x8e,0xfd,0xd0,0xfd,0xaf,0xfd,0x3,
0xfe,0xdd,0xff,0x42,0xff,0x1b,0x3,0xa4,0x2,0x3f,0x4,0xd4,0x3,0x42,0x4,0xbe,
0x3,0xb9,0x2,0x92,0x2,0x40,0x0,0xe6,0xff,0xa5,0x0,0x80,0x0,0xdb,0x1,0x37,
0x1,0x6b,0x1,0x89,0x1,0x3f,0x2,0xb0,0x2,0x3e,0x2,0x55,0x2,0xa4,0x0,0xa2,
0x0,0x5,0x3,0x1e,0x3,0x97,0x5,0x5d,0x6,0xaf,0x3,0xde,0x3,0x3,0x2,0x64,
0x2,0xd7,0xff,0x0,0x0,0xf4,0xfd,0x1f,0xfe,0xa3,0x1,0x1a,0x2,0xb7,0x4,0xd7,
0x4,0xaa,0x3,0xad,0x3,0xbd,0x2,0x23,0x2,0x55,0x0,0x56,0x0,0xba,0xfe,0xd0,
0xfe,0x5e,0xff,0xbd,0xff,0x57,0xfd,0x86,0xfd,0x8,0xfd,0x71,0xfc,0x42,0xff,0xf1,
0xfe,0x85,0xfd,0x2b,0xfd,0x9,0xfc,0x2e,0xfc,0x32,0xfc,0xd1,0xfb,0x78,0xfa,0xd5,
0xf9,0xce,0xf9,0xfa,0xf8,0xdc,0xf8,0x6c,0xf8,0x9a,0xf7,0x20,0xf8,0x1,0xfa,0xfb,
0xf9,0xed,0xfb,0x1a,0xfc,0x53,0xfc,0x8e,0xfc,0xa2,0xfd,0x4b,0xfe,0xd1,0xfc,0x55,
0xfd,0xd9,0xfb,0x50,0xfc,0x57,0xfe,0xf6,0xfe,0x5e,0x2,0x51,0x2,0x8b,0x5,0xd9,
0x5,0x78,0x5,0x67,0x5,0xac,0x3,0x9b,0x3,0x30,0x3,0xeb,0x2,0xa0,0x3,0x7f,
0x3,0xda,0x5,0x2d,0x6,0xf0,0x6,0x25,0x7,0xf2,0x3,0x80,0x4,0xd8,0x1,0xaf,
0x1,0x57,0x0,0x41,0x0,0x9e,0xfe,0x6c,0xfe,0x57,0x2,0xa,0x2,0x56,0x7,0xb2,
0x6,0x86,0x7,0x48,0x6,0xe3,0x4,0x5d,0x4,0x6,0xff,0xbb,0xfe,0xeb,0xf8,0x3d,
0xf9,0xe9,0xf7,0x19,0xf8,0xf6,0xf8,0x55,0xf9,0xeb,0xf9,0x7f,0xfa,0xe8,0xfb,0x5b,
0xfc,0x80,0xfc,0x27,0xfd,0x32,0xfa,0x2d,0xfa,0x20,0xf8,0x86,0xf8,0x8b,0xf9,0xe6,
0xf9,0x57,0xfc,0x76,0xfc,0x6,0xfe,0xcc,0xfd,0x5f,0xff,0xa,0xff,0xe7,0xfe,0xb1,
0xfe,0x6a,0xfe,0xec,0xfd,0x39,0x1,0x18,0x2,0xcb,0x2,0xda,0x3,0x65,0x3,0xa0,
0x3,0xaa,0x5,0x21,0x5,0x35,0x4,0xd7,0x3,0x7b,0x2,0x71,0x2,0x78,0x5,0xbe,
0x4,0xa9,0x5,0x2,0x5,0x25,0x3,0x12,0x2,0x81,0x2,0xd0,0x1,0x76,0x1,0x41,
0x1,0x4,0x3,0x44,0x3,0x3,0x7,0xa1,0x7,0xa5,0x6,0xe6,0x6,0x22,0x4,0x82,
0x4,0xc0,0x1,0xd3,0x1,0x1,0xfd,0x8a,0xfd,0x68,0xf9,0xb2,0xf9,0x96,0xf9,0x7d,
0xf9,0xee,0xfb,0xe5,0xfb,0xa6,0xff,0x9c,0xff,0x4,0x1,0x4b,0x1,0xee,0xfd,0x9b,
0xfd,0xff,0xfa,0xdd,0xfa,0x91,0xfa,0xb3,0xfa,0xf,0xfb,0xc3,0xfb,0xea,0xfb,0xca,
0xfc,0xd,0xfc,0x65,0xfc,0xaa,0xfb,0xab,0xfb,0xf3,0xfc,0x12,0xfc,0xa4,0xfe,0xf2,
0xfd,0x14,0xff,0x79,0xfe,0x9a,0xff,0x40,0xff,0x64,0xff,0xfc,0xfe,0xaa,0xfd,0xff,
0xfc,0x6b,0xfc,0x1c,0xfc,0x42,0xfc,0x16,0xfc,0xbd,0xfd,0x21,0xfe,0xd3,0x0,0xf9,
0x0,0xaf,0x2,0x17,0x3,0x5d,0x3,0xd4,0x3,0xa3,0x4,0x99,0x4,0x49,0x5,0x36,
0x5,0x1a,0x5,0xf3,0x4,0x81,0x5,0x80,0x5,0xef,0x5,0x9a,0x5,0xac,0x4,0xf6,
0x4,0xca,0x2,0x39,0x3,0xf9,0x3,0x11,0x4,0x40,0x7,0xb1,0x7,0xe1,0x8,0x88,
0x9,0x81,0x9,0x49,0xa,0xac,0x8,0xd5,0x8,0x67,0x5,0x5a,0x5,0xe9,0x2,0x5e,
0x2,0x4e,0x1,0xb5,0x0,0x4,0x0,0xcd,0xff,0x57,0x1,0xf1,0x0,0xee,0x1,0xa3,
0x1,0x5,0xff,0x99,0xfe,0x16,0xfc,0xd6,0xfb,0x42,0xf9,0xeb,0xf8,0x50,0xf6,0x71,
0xf6,0xe3,0xf5,0x7c,0xf6,0x65,0xf6,0xa4,0xf6,0x78,0xf6,0xa4,0xf6,0xd5,0xf7,0xdb,
0xf7,0x68,0xf8,0x59,0xf8,0x83,0xf6,0xb2,0xf5,0xc2,0xf5,0xfa,0xf4,0x10,0xf7,0x12,
0xf7,0x4e,0xf8,0xb9,0xf8,0x5c,0xfb,0x6,0xfc,0xdd,0xff,0x7d,0x0,0xde,0x1,0x93,
0x2,0xd0,0x3,0x9,0x4,0xaf,0x6,0xe0,0x6,0x19,0x6,0x5a,0x6,0x74,0x5,0x67,
0x5,0x8a,0x7,0x4e,0x7,0xec,0x7,0x7e,0x7,0xa6,0x8,0x6a,0x8,0xff,0xa,0xd2,
0xa,0xb2,0xa,0xa0,0xa,0x42,0xa,0xdf,0x9,0xd3,0xa,0x69,0xa,0x47,0x9,0x83,
0x9,0xb7,0x7,0x3d,0x8,0x48,0x5,0xd5,0x5,0x28,0x0,0x74,0x0,0x5a,0xfd,0x61,
0xfd,0x56,0xfd,0xbe,0xfc,0xba,0xfc,0xe4,0xfb,0xdf,0xfb,0x3f,0xfb,0x5,0xfa,0x82,
0xf9,0xe2,0xf7,0xd0,0xf7,0xc9,0xf7,0x4a,0xf8,0xb7,0xf6,0xab,0xf7,0xb4,0xf2,0x79,
0xf3,0xe2,0xef,0x54,0xf0,0x32,0xf1,0x3f,0xf1,0x3c,0xf5,0xf1,0xf4,0xc6,0xf9,0xa5,
0xf9,0x43,0xfe,0x49,0xfe,0x44,0x2,0x39,0x2,0xb5,0x3,0x73,0x3,0xb,0x2,0xe3,
0x1,0x31,0x0,0x15,0x0,0x39,0x1,0xa,0x1,0xf3,0x4,0xf0,0x4,0x3b,0x8,0x64,
0x8,0x56,0x9,0xb2,0x9,0x9b,0x9,0x1f,0xa,0x7b,0x9,0xa,0xa,0x82,0x8,0x8f,
0x8,0xba,0x7,0x27,0x7,0x31,0x7,0x6a,0x6,0x54,0x6,0x8c,0x5,0xc7,0x5,0x46,
0x5,0x92,0x4,0x8b,0x4,0x1a,0x2,0x75,0x2,0x74,0x0,0xe2,0x0,0x1d,0xff,0xb2,
0xff,0x5,0xfd,0x90,0xfd,0xf3,0xfb,0xed,0xfb,0x53,0xfa,0xec,0xf9,0x94,0xf6,0x3c,
0xf6,0x6e,0xf4,0x41,0xf4,0xb2,0xf4,0xa6,0xf4,0x69,0xf5,0x82,0xf5,0x33,0xf7,0x19,
0xf7,0x0,0xf9,0x9c,0xf8,0x23,0xfa,0xfd,0xf9,0x42,0xfd,0x69,0xfd,0x25,0x1,0x4e,
0x1,0xd6,0x1,0xfd,0x1,0xbf,0xff,0xf,0x0,0xdd,0xfd,0x1f,0xfe,0x48,0xfe,0x5b,
0xfe,0xaf,0x1,0xa3,0x1,0xfe,0x5,0x94,0x5,0x57,0x8,0xa3,0x7,0x1e,0x9,0xbc,
0x8,0x2b,0x9,0x4e,0x9,0xd4,0x6,0x14,0x7,0x91,0x3,0xdb,0x3,0xb9,0x2,0x7,
0x3,0xb8,0x2,0xb3,0x2,0x9f,0x2,0x8e,0x2,0x28,0x3,0x55,0x3,0x76,0x1,0x63,
0x1,0x2,0xff,0xa6,0xfe,0xde,0xff,0xe7,0xff,0x3a,0x0,0x9b,0x0,0x21,0xfe,0x4a,
0xfe,0xf6,0xfc,0xed,0xfc,0x1,0xfc,0xc8,0xfb,0x9,0xfb,0xab,0xfa,0xb8,0xfa,0xb6,
0xfa,0xb3,0xf8,0x26,0xf9,0x79,0xf7,0xcc,0xf7,0x2,0xfa,0xfe,0xf9,0x62,0xfc,0x71,
0xfc,0xfd,0xfc,0x2e,0xfd,0xf5,0xfc,0xea,0xfc,0xe2,0xfb,0x99,0xfb,0xf0,0xfb,0xce,
0xfb,0x76,0xfe,0x8d,0xfe,0x5b,0x1,0x8c,0x1,0xaa,0x3,0xfd,0x3,0xee,0x4,0x6,
0x5,0x2f,0x5,0xc5,0x4,0x2a,0x5,0xb5,0x4,0x97,0x3,0x78,0x3,0xc5,0x0,0xfe,
0x0,0x4c,0x0,0xe4,0x0,0x5e,0x3,0xc2,0x3,0x83,0x6,0x25,0x6,0x1a,0x6,0xa9,
0x5,0xe7,0x3,0xe2,0x3,0x96,0x3,0x51,0x3,0xf6,0x3,0x46,0x3,0x1d,0x3,0x92,
0x2,0xb4,0x1,0x92,0x1,0x54,0x0,0x8a,0x0,0x7,0x0,0x1d,0x0,0xeb,0x0,0x79,
0x0,0xd4,0x1,0x5d,0x1,0xf8,0x1,0xf3,0x1,0xc5,0xff,0xd4,0xff,0xce,0xfc,0xdd,
0xfc,0x3c,0xfc,0x7b,0xfc,0x7a,0xfb,0x8c,0xfb,0xc0,0xf9,0x69,0xf9,0xfc,0xf9,0xb4,
0xf9,0x9e,0xfa,0xe3,0xfa,0x2b,0xfb,0xaf,0xfb,0x61,0xfc,0x99,0xfc,0x57,0xfc,0xac,
0xfc,0xd3,0xfc,0xca,0xfd,0x31,0xfe,0x32,0xff,0xc,0xfe,0xa3,0xfe,0x41,0xff,0xba,
0xff,0xce,0x1,0xee,0x1,0x5e,0x3,0x2e,0x3,0xbe,0x5,0xef,0x5,0xd2,0x7,0xfe,
0x7,0x36,0xc,0xdb,0xb,0x84,0x14,0x7e,0x14,0x10,0x13,0x9f,0x13,0xfb,0x4,0x26,
0x5,0x9d,0xf7,0x37,0xf7,0x4f,0xed,0xd7,0xec,0x35,0xea,0xc0,0xe9,0x69,0xf5,0xe0,
0xf4,0x4d,0x4,0xb8,0x3,0x66,0xe,0xff,0xd,0x85,0x10,0x2f,0x10,0x51,0x0,0x81,
0xff,0x12,0xe7,0x6,0xe6,0xa8,0xdc,0x28,0xdc,0xbe,0xe5,0x8e,0xe5,0xa6,0xfa,0x69,
0xfa,0x38,0xf,0x51,0xf,0xf,0x14,0x87,0x14,0x67,0x8,0xe9,0x8,0x7,0xf9,0x67,
0xf9,0x64,0xf2,0x44,0xf2,0x16,0xf9,0x93,0xf8,0xfd,0x4,0xed,0x4,0x3a,0xd,0xf6,
0xd,0xcd,0x10,0xe1,0x11,0xca,0xe,0x85,0xf,0x4f,0x8,0x7c,0x8,0x6f,0x2,0xc6,
0x2,0xfc,0x0,0xb1,0x1,0x18,0x5,0x65,0x5,0x8d,0x9,0xb3,0x9,0x61,0x8,0x13,
0x9,0xc8,0x3,0x2c,0x4,0x84,0xff,0x1e,0xff,0xd3,0xfd,0xaa,0xfd,0xb8,0xff,0xf4,
0xff,0xa,0x2,0xd2,0x1,0xc4,0x3,0x1f,0x3,0xfc,0x3,0xb1,0x3,0x23,0xfe,0x82,
0xfe,0x70,0xf5,0xdf,0xf5,0xad,0xf0,0x64,0xf0,0x2,0xf0,0x51,0xef,0x13,0xf3,0xcf,
0xf2,0xf5,0xf6,0x20,0xf7,0x90,0xf7,0xc2,0xf7,0x50,0xf8,0x43,0xf8,0x86,0xfa,0x41,
0xfa,0x93,0xfb,0x8c,0xfb,0x82,0xfd,0xad,0xfd,0x72,0x0,0x56,0x0,0xf3,0x2,0x10,
0x3,0x6b,0x5,0xb,0x6,0x5e,0x4,0x82,0x4,0xf3,0x0,0x7c,0x0,0x7a,0x2,0x66,
0x2,0x2c,0x7,0x68,0x7,0x6d,0x9,0x57,0x9,0xac,0x9,0x62,0x9,0x31,0x8,0x3,
0x8,0xd0,0x5,0xce,0x5,0xe0,0x5,0xba,0x5,0xfd,0x6,0x62,0x6,0x4f,0x4,0xb8,
0x3,0x2c,0xfe,0x16,0xfe,0xb9,0xf9,0xcd,0xf9,0x45,0xf9,0x4c,0xf9,0x59,0xfa,0x50,
0xfa,0x1,0xfa,0xb6,0xf9,0x3,0xf7,0xca,0xf6,0x82,0xf2,0xb3,0xf2,0xe3,0xee,0x19,
0xef,0xcf,0xed,0x8,0xee,0x66,0xf1,0xf4,0xf1,0x5e,0xf9,0xef,0xf9,0xbe,0x0,0x25,
0x1,0x11,0x4,0x78,0x4,0x70,0x2,0xc2,0x2,0x32,0xfd,0x8e,0xfd,0x4e,0xfa,0xf3,
0xfa,0x0,0xfc,0xd2,0xfc,0x13,0xff,0xec,0xff,0xa0,0x3,0xfd,0x3,0xb,0x9,0xa0,
0x8,0x5c,0xd,0x12,0xd,0x1,0x11,0x61,0x11,0xeb,0xf,0x37,0x10,0xd,0x9,0x19,
0x9,0xa8,0x6,0x9f,0x6,0x48,0xc,0xbf,0xb,0xe3,0x11,0x19,0x11,0xcf,0x12,0x63,
0x12,0x68,0x10,0x1d,0x10,0xc7,0xe,0x4c,0xe,0xe,0xf,0x57,0xe,0x2d,0xc,0x6a,
0xb,0x9e,0x5,0x68,0x5,0x2a,0x1,0x20,0x1,0x6f,0x0,0x95,0xff,0xf9,0x0,0xf9,
0xff,0x57,0x0,0x4b,0x0,0x33,0xfe,0xa1,0xfe,0x27,0xfc,0x43,0xfc,0x14,0xf9,0xb9,
0xf8,0xc3,0xf4,0x3b,0xf4,0x16,0xf4,0xcf,0xf3,0xce,0xf8,0xac,0xf8,0x9,0xff,0xb,
0xff,0x6c,0x3,0xc,0x4,0xff,0x5,0x80,0x6,0x88,0x8,0x1d,0x8,0x2a,0x8,0xed,
0x7,0x8b,0xff,0x14,0x0,0x78,0xf1,0xc9,0xf1,0x53,0xe3,0x3f,0xe3,0x8d,0xd4,0x9f,
0xd4,0xe4,0xc6,0x23,0xc7,0xcf,0xc0,0x5,0xc1,0xeb,0xc3,0xc3,0xc3,0x1b,0xcb,0xc2,
0xca,0xae,0xd1,0xe0,0xd1,0x93,0xd8,0x35,0xd9,0x57,0xe3,0xa,0xe4,0xea,0xf2,0xc9,
0xf3,0xcf,0x5,0x58,0x6,0xff,0x18,0xf6,0x18,0xc0,0x28,0x2,0x29,0xf5,0x32,0x8b,
0x33,0x95,0x36,0xdb,0x36,0x6,0x34,0x35,0x34,0x6c,0x2f,0xb0,0x2f,0x67,0x2e,0x92,
0x2e,0x5e,0x33,0x77,0x33,0xb,0x3b,0xe0,0x3a,0xe3,0x3f,0x95,0x3f,0xfb,0x40,0x19,
0x41,0x3f,0x40,0x75,0x40,0x5,0x3c,0xba,0x3b,0x40,0x32,0x7a,0x31,0x69,0x25,0x22,
0x24,0x11,0x18,0x71,0x16,0x7,0x9,0x90,0x7,0x53,0xf8,0x1c,0xf7,0x5c,0xe9,0x66,
0xe8,0x46,0xdd,0x7d,0xdc,0x74,0xd3,0x4a,0xd2,0x10,0xcc,0xb7,0xca,0x62,0xc4,0xb3,
0xc3,0xf7,0xba,0xd4,0xba,0xed,0xb3,0xd1,0xb3,0xce,0xb0,0xa3,0xb0,0x4a,0xb0,0xea,
0xaf,0xf6,0xb2,0xa5,0xb2,0xac,0xb7,0xf0,0xb7,0x5b,0xbe,0xd2,0xbe,0xa2,0xc8,0xf3,
0xc8,0x97,0xd2,0x73,0xd3,0x21,0xda,0xeb,0xdb,0xa9,0xe4,0xc7,0xe6,0xff,0xf4,0xc5,
0xf6,0x47,0x8,0xad,0x9,0xb2,0x18,0x1c,0x1a,0x9,0x21,0x5d,0x22,0xaa,0x23,0xa4,
0x24,0x25,0x27,0x3f,0x28,0x3a,0x2f,0x55,0x30,0x9c,0x3b,0x83,0x3b,0xc3,0x46,0xdd,
0x45,0x92,0x4d,0xa9,0x4d,0x8a,0x51,0x5a,0x52,0xdc,0x4d,0xc9,0x4d,0x1,0x40,0x3a,
0x3f,0x65,0x31,0xf2,0x30,0x4f,0x27,0xe7,0x26,0xae,0x1e,0x67,0x1d,0x90,0x14,0x84,
0x12,0x27,0x6,0x44,0x4,0x7a,0xf7,0x2,0xf6,0x5a,0xf0,0xd3,0xee,0xf,0xed,0x8e,
0xeb,0x69,0xe7,0x3d,0xe6,0xa2,0xe2,0xa0,0xe1,0x99,0xe1,0xf,0xe1,0xf0,0xe2,0x2d,
0xe3,0xd8,0xe3,0x26,0xe4,0xdd,0xe0,0xf5,0xe0,0x76,0xdb,0xe2,0xdb,0x3e,0xd8,0xae,
0xd8,0x4a,0xd7,0x4b,0xd7,0xfc,0xd5,0x24,0xd6,0x6b,0xd3,0xd,0xd4,0x6,0xd2,0xc3,
0xd2,0x56,0xd6,0x31,0xd7,0x31,0xe1,0x89,0xe2,0xf4,0xee,0xb6,0xf0,0x4c,0xfc,0xb8,
0xfd,0xc4,0x6,0x8e,0x7,0x5b,0xd,0x64,0xe,0xdc,0x12,0x31,0x14,0xba,0x19,0x19,
0x1a,0xdc,0x1f,0x6e,0x1f,0x3a,0x24,0x24,0x24,0xe,0x29,0xf3,0x28,0x9,0x2c,0x58,
0x2b,0x45,0x29,0xab,0x28,0x39,0x24,0x38,0x24,0x5f,0x20,0xaf,0x20,0x43,0x1c,0x5e,
0x1c,0x6a,0x18,0x23,0x18,0xb6,0x15,0x97,0x15,0x13,0x14,0x38,0x14,0xee,0x13,0xa9,
0x13,0x4b,0x11,0x90,0x10,0xf2,0xa,0x35,0xa,0x77,0x6,0xff,0x5,0x84,0x1,0xb1,
0x1,0x17,0xf8,0xa8,0xf8,0x37,0xf0,0x78,0xf0,0x9b,0xea,0xf3,0xea,0xd5,0xe3,0xd1,
0xe4,0x43,0xe0,0x7f,0xe1,0x99,0xdf,0xc9,0xe0,0xec,0xdc,0xe1,0xdd,0x8f,0xd8,0x9,
0xd9,0x1d,0xd2,0x72,0xd2,0x2d,0xce,0x8a,0xce,0x3e,0xd7,0x58,0xd7,0xc9,0xeb,0xc4,
0xeb,0xa4,0x1,0xba,0x1,0x22,0xf,0x7a,0xf,0xb,0xc,0xd8,0xc,0x33,0xff,0xde,
0xff,0xcf,0xf7,0xc0,0xf7,0x3b,0xfa,0xf2,0xf9,0x23,0xa,0x0,0xa,0x7d,0x27,0x51,
0x27,0x47,0x3e,0xf0,0x3d,0x2a,0x3c,0x5d,0x3b,0x4,0x25,0xdf,0x23,0x9b,0xa,0xba,
0x9,0x90,0x1,0xd0,0x0,0x42,0xf,0x65,0xe,0x4d,0x24,0xcf,0x23,0x53,0x31,0x66,
0x31,0x7b,0x2f,0xd4,0x2f,0x14,0x20,0x3f,0x20,0xcc,0xe,0x55,0xe,0xe5,0x3,0x2e,
0x3,0xe,0xfe,0xc9,0xfd,0x9a,0xfa,0xa3,0xfa,0x83,0xf3,0x9e,0xf3,0x73,0xe5,0x96,
0xe5,0xe0,0xd7,0xd9,0xd7,0x2f,0xd0,0x4b,0xd0,0xc9,0xce,0x4f,0xcf,0x74,0xd5,0x19,
0xd6,0x49,0xde,0x2f,0xdf,0x25,0xdf,0x85,0xe0,0xca,0xd8,0x34,0xda,0xbd,0xd1,0xce,
0xd2,0xe6,0xcd,0x5d,0xce,0x32,0xd0,0x2c,0xd0,0x3f,0xd8,0x9f,0xd8,0xcc,0xe1,0xd3,
0xe2,0xef,0xe8,0xeb,0xe9,0x56,0xeb,0x4,0xec,0xc5,0xea,0x31,0xeb,0xad,0xed,0xe8,
0xed,0x69,0xf7,0xc7,0xf7,0xcc,0x4,0x2f,0x5,0x20,0x12,0x5d,0x12,0xa1,0x1d,0xd,
0x1e,0xe8,0x25,0x3d,0x26,0xf6,0x2a,0x89,0x2a,0x99,0x2d,0x78,0x2c,0x81,0x2e,0xe,
0x2d,0xd9,0x2f,0xbe,0x2e,0xc5,0x32,0x7c,0x32,0xe0,0x34,0xb2,0x34,0x81,0x33,0xbf,
0x32,0xdb,0x2d,0xd0,0x2c,0x7e,0x26,0x69,0x25,0x13,0x22,0x25,0x21,0xeb,0x1f,0x50,
0x1f,0x7,0x1c,0x70,0x1b,0x3e,0x16,0xb1,0x15,0x2d,0xe,0xcf,0xd,0x4f,0x3,0x94,
0x2,0x7c,0xf8,0x3d,0xf7,0x47,0xed,0x22,0xec,0x67,0xe0,0xe0,0xdf,0x26,0xd6,0x86,
0xd6,0x4f,0xd0,0x27,0xd1,0xb,0xce,0x71,0xce,0x4d,0xd1,0x47,0xd1,0x90,0xd6,0xa3,
0xd6,0x7a,0xd7,0xc9,0xd7,0x36,0xd6,0xeb,0xd6,0xd,0xd6,0xf3,0xd6,0x90,0xd6,0x4f,
0xd7,0x49,0xdb,0xa,0xdc,0x26,0xe6,0xb1,0xe6,0xc8,0xf0,0xc1,0xf0,0x17,0xf7,0x15,
0xf7,0x40,0xfc,0xd3,0xfc,0x1a,0x2,0x3b,0x3,0x69,0x7,0xbd,0x8,0x1a,0xc,0xc5,
0xc,0x23,0x11,0xf9,0x10,0x4a,0x18,0x27,0x18,0xb1,0x21,0xb2,0x21,0x11,0x28,0x5,
0x28,0x9d,0x27,0xca,0x27,0xb9,0x23,0xd1,0x23,0xdf,0x1f,0x9a,0x1f,0x18,0x1d,0xb8,
0x1c,0x90,0x1c,0xd9,0x1b,0xc1,0x1c,0xdc,0x1b,0xc3,0x1b,0x77,0x1b,0x37,0x1a,0x60,
0x1a,0x8e,0x16,0xa8,0x16,0xdf,0xe,0x97,0xe,0xec,0x5,0xd6,0x4,0xe,0xff,0xa9,
0xfd,0x21,0xfb,0x29,0xfa,0x7,0xfa,0x39,0xf9,0xb,0xfa,0x6a,0xf9,0xe5,0xf7,0x90,
0xf7,0x3,0xf2,0x5c,0xf1,0xa0,0xea,0xc4,0xe9,0x75,0xe5,0xd2,0xe4,0x11,0xe5,0x5b,
0xe4,0xf3,0xe9,0x90,0xe9,0x8b,0xf0,0xed,0xf0,0xfd,0xf3,0x75,0xf4,0xf1,0xf3,0x19,
0xf4,0x2f,0xf2,0xdc,0xf1,0xe3,0xf0,0xee,0xef,0x2,0xf4,0x72,0xf3,0xa2,0xfa,0x25,
0xfb,0x60,0xff,0x21,0x0,0x7e,0x1,0x13,0x2,0x26,0x2,0x88,0x2,0xc1,0x1,0xc5,
0x1,0x6e,0x4,0x91,0x4,0x6e,0xc,0xe2,0xc,0x4a,0x15,0xc8,0x15,0x99,0x19,0x86,
0x1a,0x44,0x17,0x74,0x18,0x59,0x11,0xcf,0x11,0xad,0xd,0x5e,0xd,0x4a,0xd,0xc2,
0xc,0x93,0xc,0x6b,0xc,0x26,0xa,0xf3,0xa,0x43,0x8,0x45,0x9,0xa3,0x7,0xb7,
0x7,0x2d,0x5,0xae,0x4,0x33,0x0,0xb2,0xff,0x41,0xfb,0xc6,0xfa,0x3e,0xf5,0x3,
0xf5,0x94,0xed,0x77,0xed,0x16,0xe8,0xc1,0xe7,0xd9,0xe4,0x71,0xe4,0xb1,0xe1,0x2e,
0xe1,0x3a,0xe0,0x85,0xdf,0xe,0xe1,0x76,0xe0,0x53,0xe3,0x13,0xe3,0xf0,0xe6,0x2a,
0xe7,0x1f,0xe9,0xbe,0xe9,0x64,0xe8,0xda,0xe8,0x22,0xe9,0x46,0xe9,0x1d,0xef,0x43,
0xef,0xf5,0xf7,0x2a,0xf8,0xfd,0xfd,0x4e,0xfe,0x9,0x0,0x78,0x0,0x3,0x3,0x53,
0x3,0x27,0x8,0x6e,0x8,0x8c,0xb,0xdd,0xb,0x4,0xe,0x8,0xe,0xa3,0x13,0x46,
0x13,0x1f,0x1b,0xce,0x1a,0x2a,0x1f,0x58,0x1f,0x1a,0x1d,0xb1,0x1d,0x5c,0x18,0x95,
0x18,0x62,0x17,0xf0,0x16,0xe,0x1c,0x74,0x1b,0x28,0x21,0x9e,0x20,0xb7,0x20,0x3d,
0x20,0x74,0x1a,0x1b,0x1a,0xf8,0x10,0x8d,0x10,0xea,0x4,0x7f,0x4,0xe0,0xf9,0x73,
0xf9,0xa3,0xf7,0x9e,0xf6,0x61,0xfe,0x24,0xfd,0xe9,0x3,0x65,0x3,0xec,0x0,0xc1,
0x0,0x33,0xf8,0xe1,0xf7,0xe4,0xef,0x8f,0xef,0xfe,0xe9,0x5b,0xe9,0x2a,0xe6,0x60,
0xe5,0x77,0xe6,0x33,0xe6,0x63,0xeb,0x68,0xeb,0x5d,0xef,0x6f,0xef,0xee,0xed,0x56,
0xee,0x83,0xea,0x16,0xeb,0x9a,0xea,0x17,0xeb,0xf1,0xed,0x34,0xee,0x38,0xf1,0x58,
0xf1,0x99,0xf4,0x66,0xf5,0xc6,0xf9,0x22,0xfb,0xac,0xfe,0x55,0xff,0xbe,0x0,0xd7,
0x0,0xac,0x2,0xfb,0x2,0x27,0x8,0x5f,0x8,0x34,0xf,0x62,0xf,0xb8,0x13,0x25,
0x14,0xc7,0x14,0x20,0x15,0x24,0x13,0x8a,0x13,0xb0,0x10,0x1d,0x11,0x70,0xf,0x5d,
0xf,0x15,0xe,0x1e,0xe,0x69,0xc,0x13,0xd,0xcc,0xd,0x5d,0xe,0xa8,0x10,0xfb,
0x10,0x2e,0xf,0x70,0xf,0xf0,0x8,0xda,0x8,0xdc,0x2,0xd8,0x2,0x62,0x1,0xa1,
0x1,0x37,0x3,0x1b,0x3,0xe5,0x2,0xbd,0x2,0x19,0x0,0x3b,0x0,0xa7,0xfd,0x61,
0xfd,0x2d,0xfa,0xa0,0xf9,0x50,0xf5,0x1c,0xf5,0x30,0xf2,0x3,0xf2,0xd7,0xf2,0x91,
0xf2,0xb3,0xf6,0xa9,0xf6,0xf0,0xf8,0xec,0xf8,0xe5,0xf6,0xb3,0xf6,0x9b,0xf6,0x6a,
0xf6,0x91,0xfa,0xa7,0xfa,0x8d,0xfd,0x20,0xfe,0x7b,0xff,0x1a,0x0,0x4b,0x3,0x77,
0x3,0xdd,0x6,0x9,0x7,0xbc,0x7,0x30,0x8,0x11,0x6,0x65,0x6,0x31,0x3,0x8a,
0x3,0x75,0x1,0xf8,0x1,0x7b,0x1,0xac,0x1,0x76,0x1,0x52,0x1,0xbc,0x1,0x9d,
0x1,0x22,0x5,0x1,0x5,0x64,0xa,0x4e,0xa,0x50,0xc,0x50,0xc,0x75,0xa,0x55,
0xa,0x2,0x8,0xb7,0x7,0xa9,0x5,0x17,0x5,0xb,0x4,0x2e,0x3,0xfd,0x2,0x73,
0x2,0x75,0x0,0x52,0x0,0x78,0xfd,0xe5,0xfc,0x9f,0xfa,0x87,0xf9,0x16,0xf6,0x5,
0xf5,0xf1,0xf1,0xde,0xf0,0xba,0xf0,0xa6,0xef,0x52,0xf2,0x7f,0xf1,0x2c,0xf6,0x68,
0xf5,0xea,0xf7,0x9,0xf7,0x89,0xf5,0x98,0xf4,0xa0,0xf4,0xa1,0xf3,0xcf,0xf5,0x26,
0xf5,0x99,0xf5,0x90,0xf5,0xf6,0xf6,0xd,0xf7,0xc3,0xfb,0xaa,0xfb,0xe9,0x0,0x3,
0x1,0x65,0x4,0xe0,0x4,0xd5,0x4,0x8b,0x5,0xa7,0x3,0x64,0x4,0xb8,0x4,0x51,
0x5,0x9f,0x7,0x66,0x8,0xd7,0xa,0xd,0xc,0x51,0xe,0x40,0xf,0xa0,0xf,0xd8,
0xf,0x8f,0xe,0xdb,0xe,0x35,0xe,0x7,0xf,0xcb,0xd,0x76,0xe,0x43,0xb,0x64,
0xb,0xc4,0x7,0xbd,0x7,0xec,0x4,0x0,0x5,0x41,0x4,0x66,0x4,0xf5,0x4,0x25,
0x5,0xbc,0x2,0xd2,0x2,0x96,0xfe,0x6c,0xfe,0x5,0xfe,0xf5,0xfd,0x57,0xff,0xa8,
0xff,0xb0,0xfd,0xeb,0xfd,0x48,0xf9,0x2b,0xf9,0x3e,0xf3,0x4f,0xf3,0x33,0xee,0x90,
0xee,0xe1,0xed,0x9,0xee,0xe5,0xee,0xe6,0xee,0x70,0xed,0xae,0xed,0x53,0xee,0xb1,
0xee,0x4f,0xf4,0xa0,0xf4,0x9d,0xf9,0xe5,0xf9,0xb4,0xf9,0xe2,0xf9,0xd2,0xf7,0x11,
0xf8,0x71,0xf8,0x9,0xf9,0xdd,0xf8,0x92,0xf9,0xcc,0xf6,0x52,0xf7,0x83,0xf8,0x4,
0xf9,0xca,0x0,0x43,0x1,0x21,0x9,0x75,0x9,0x95,0xb,0x16,0xc,0x42,0x6,0x3,
0x7,0x74,0xfe,0xe9,0xfe,0xe3,0xfd,0xdd,0xfd,0xb,0x4,0xd4,0x3,0xc8,0x9,0x7b,
0x9,0xc0,0xd,0x82,0xd,0xc8,0xf,0xb8,0xf,0x6c,0xf,0x1c,0xf,0x3c,0xe,0x60,
0xd,0x36,0xc,0x33,0xb,0x7d,0xb,0xaa,0xa,0x4d,0xe,0xad,0xd,0x66,0xe,0xf2,
0xd,0x6a,0x7,0xe5,0x6,0x94,0xff,0xcd,0xfe,0x33,0xfc,0x5e,0xfb,0x41,0xfc,0x90,
0xfb,0x58,0xfd,0xe4,0xfc,0x5f,0xfd,0x31,0xfd,0x7d,0xfc,0x34,0xfc,0xde,0xfc,0x32,
0xfc,0xe7,0xfd,0x42,0xfd,0x83,0xfd,0x25,0xfd,0x76,0xfc,0x14,0xfc,0x3a,0xfb,0xd3,
0xfa,0x69,0xf8,0x2e,0xf8,0x42,0xf5,0xfd,0xf4,0xea,0xf3,0x7c,0xf3,0xd5,0xf3,0x88,
0xf3,0x9d,0xf4,0xaf,0xf4,0xf3,0xf5,0x47,0xf6,0xcb,0xf6,0xe,0xf7,0x29,0xf8,0x43,
0xf8,0x5e,0xfa,0xa0,0xfa,0xcc,0xfb,0x7f,0xfc,0x8c,0xfd,0x76,0xfe,0x1e,0x1,0xbe,
0x1,0x5,0x5,0x54,0x5,0xff,0x7,0x83,0x8,0x6f,0xa,0x3a,0xb,0xfe,0xc,0x87,
0xd,0xdc,0xe,0x18,0xf,0xe6,0xe,0x34,0xf,0xd1,0xe,0x18,0xf,0x80,0xf,0x86,
0xf,0x5d,0xf,0x30,0xf,0x7,0xf,0xd7,0xe,0xa5,0xe,0xc2,0xe,0xf7,0xc,0x3b,
0xd,0xf7,0xb,0xb5,0xb,0x38,0xc,0x9e,0xb,0xb6,0xa,0x91,0xa,0x74,0x6,0xa5,
0x6,0x73,0x0,0x8e,0x0,0x5,0xfb,0x1b,0xfb,0x8c,0xf8,0x6d,0xf8,0xe9,0xf7,0x9a,
0xf7,0x76,0xf7,0x91,0xf7,0xd6,0xf5,0x35,0xf6,0xe6,0xf0,0xea,0xf0,0x6,0xeb,0xfc,
0xea,0x2c,0xe8,0x81,0xe8,0xd8,0xe7,0x33,0xe8,0x5d,0xe9,0x7a,0xe9,0x8c,0xec,0xab,
0xec,0xa4,0xef,0x16,0xf0,0x37,0xf2,0xf3,0xf2,0x6f,0xf4,0xe,0xf5,0x99,0xf6,0xf6,
0xf6,0x57,0xfa,0xc2,0xfa,0x86,0xff,0xe,0x0,0x51,0x4,0xae,0x4,0x27,0x8,0x65,
0x8,0x76,0xb,0xd7,0xb,0x1f,0xe,0x67,0xe,0x8d,0xe,0x33,0xe,0x1,0xd,0x3b,
0xc,0x1a,0xd,0x99,0xc,0xc,0x10,0xab,0xf,0xe7,0x13,0x1d,0x13,0x56,0x16,0x5a,
0x15,0x8d,0x14,0x8c,0x13,0xb7,0xf,0x89,0xe,0xc2,0xb,0xc7,0xa,0x77,0x8,0xcf,
0x7,0xd4,0x5,0x1,0x5,0x71,0x5,0xbb,0x4,0xf7,0x4,0xbe,0x4,0x68,0x3,0x16,
0x3,0x5b,0x2,0xee,0x1,0x42,0xff,0x5a,0xff,0xeb,0xf8,0x3a,0xf9,0xad,0xf3,0xd3,
0xf3,0x98,0xf1,0xf7,0xf1,0x34,0xf1,0xba,0xf1,0xb5,0xf1,0x2,0xf2,0x7d,0xf2,0xc8,
0xf2,0x52,0xf3,0xdb,0xf3,0xd6,0xf4,0x72,0xf5,0xd,0xf6,0x79,0xf6,0x9c,0xf5,0xd3,
0xf5,0xfa,0xf4,0x60,0xf5,0x71,0xf5,0x1f,0xf6,0xfc,0xf5,0x68,0xf6,0xf7,0xf6,0x6,
0xf7,0xbd,0xf8,0xe6,0xf8,0x89,0xf9,0xe5,0xf9,0x44,0xfa,0xaf,0xfa,0x28,0xfd,0x75,
0xfd,0xd5,0x0,0xb9,0x0,0x41,0x4,0xd4,0x3,0x72,0x7,0x2f,0x7,0x5b,0x8,0x6f,
0x8,0xbe,0x6,0xd1,0x6,0xdd,0x4,0x74,0x4,0xb1,0x3,0xe8,0x2,0xf,0x4,0x86,
0x3,0x4e,0x6,0xe,0x6,0xed,0x8,0x94,0x8,0xd5,0xa,0x9b,0xa,0xfc,0xa,0xfe,
0xa,0x73,0x8,0x4f,0x8,0x9f,0x5,0x5c,0x5,0x43,0x5,0x2c,0x5,0xf5,0x5,0x33,
0x6,0x26,0x6,0xd6,0x6,0x3a,0x7,0xcb,0x7,0x19,0x9,0xf4,0x8,0xd,0x9,0xe5,
0x8,0x9,0x6,0x74,0x6,0x73,0x1,0xe7,0x1,0xaa,0xfd,0xea,0xfd,0xe6,0xfc,0x7,
0xfd,0x7b,0xfe,0x39,0xfe,0x40,0xff,0xe6,0xfe,0xa1,0xfd,0x9b,0xfd,0x4b,0xfa,0x2c,
0xfa,0x10,0xf7,0xd0,0xf6,0xc8,0xf5,0xd5,0xf5,0x15,0xf6,0xf5,0xf5,0xec,0xf6,0x5a,
0xf6,0x3,0xf9,0xcc,0xf8,0xe0,0xfb,0x37,0xfc,0x30,0xfd,0x67,0xfd,0x19,0xfd,0xf9,
0xfc,0xed,0xfd,0xb5,0xfd,0xfd,0xff,0xd6,0xff,0x8a,0x1,0x8c,0x1,0xa,0x2,0x1b,
0x2,0xda,0x2,0xb9,0x2,0xf3,0x4,0x88,0x4,0x1e,0x7,0xac,0x6,0x42,0x7,0x3,
0x7,0xfa,0x5,0xc2,0x5,0x13,0x6,0xd0,0x5,0x14,0x7,0xfc,0x6,0x63,0x6,0x36,
0x6,0xf4,0x4,0x7c,0x4,0xe2,0x4,0xb2,0x4,0xcd,0x5,0x3e,0x6,0xfe,0x6,0xac,
0x7,0x2b,0x7,0xc3,0x7,0xf4,0x4,0x4d,0x5,0x10,0x2,0x42,0x2,0x35,0x0,0xcb,
0x0,0x4b,0xfe,0x56,0xff,0x2d,0xfc,0x1d,0xfd,0xd5,0xfa,0x7c,0xfb,0xba,0xf9,0x2b,
0xfa,0x1a,0xf8,0x59,0xf8,0x7f,0xf5,0xe6,0xf5,0xcb,0xf1,0x8e,0xf2,0x5f,0xef,0x4,
0xf0,0xf1,0xf0,0x41,0xf1,0x38,0xf5,0x81,0xf5,0xce,0xf8,0x0,0xf9,0x3f,0xfa,0x45,
0xfa,0x95,0xfa,0xd1,0xfa,0x77,0xfb,0xd3,0xfb,0xf4,0xfc,0x3,0xfd,0xb5,0xfe,0x83,
0xfe,0xbb,0x1,0x45,0x1,0xae,0x5,0xff,0x4,0xa6,0x8,0x4f,0x8,0xe,0xa,0x16,
0xa,0x5b,0x9,0xe,0x9,0xb8,0x6,0xe5,0x5,0xfc,0x4,0xf4,0x3,0xbf,0x4,0xd4,
0x3,0xcb,0x3,0x5c,0x3,0x1c,0x3,0xc,0x3,0x3d,0x4,0xe4,0x3,0x30,0x5,0x77,
0x4,0x31,0x4,0xc1,0x3,0x56,0x1,0x70,0x1,0x22,0xfe,0x50,0xfe,0xbe,0xfd,0xd8,
0xfd,0x34,0x0,0x92,0x0,0x3b,0x1,0xcd,0x1,0xb5,0xff,0xa,0x0,0x7a,0xfe,0x92,
0xfe,0x40,0xfe,0x86,0xfe,0xe1,0xfe,0x63,0xff,0x55,0x1,0x93,0x1,0xe6,0x3,0x92,
0x3,0xfd,0x3,0x80,0x3,0x59,0x2,0x5,0x2,0x39,0x0,0xda,0xff,0x9e,0xfe,0xff,
0xfd,0xf,0xff,0x36,0xfe,0x81,0x0,0xa4,0xff,0x26,0x1,0x73,0x0,0xbb,0x0,0x2,
0x0,0xb7,0xfe,0xe5,0xfd,0xdb,0xfc,0x48,0xfc,0xa5,0xfd,0x56,0xfd,0xcf,0xfe,0x74,
0xfe,0x23,0xfe,0xb2,0xfd,0xf1,0xfb,0x9c,0xfb,0x5,0xf8,0xfd,0xf7,0x60,0xf5,0x63,
0xf5,0x59,0xf7,0x2,0xf7,0x1c,0xfb,0xdb,0xfa,0x9f,0xfd,0xe8,0xfd,0xde,0xfe,0x3d,
0xff,0x2e,0xfe,0x70,0xfe,0x6c,0xfb,0xca,0xfb,0x97,0xf8,0xe3,0xf8,0xa8,0xf8,0x1e,
0xf9,0x54,0xfc,0x5b,0xfd,0x2d,0x1,0x2c,0x2,0xda,0x5,0x75,0x6,0x89,0x7,0x58,
0x8,0x95,0x2,0xa4,0x3,0x1f,0xfc,0x1,0xfd,0xa3,0xf9,0x5e,0xfa,0xe6,0xf8,0x87,
0xf9,0xda,0xfb,0x7b,0xfc,0xca,0x2,0x94,0x3,0x8f,0x4,0x28,0x5,0xfc,0x0,0x34,
0x1,0x34,0x0,0x80,0x0,0xf8,0x2,0x50,0x3,0x51,0x8,0x37,0x8,0x8c,0xe,0x2e,
0xe,0xeb,0xf,0xb8,0xf,0x61,0xc,0x50,0xc,0x54,0x7,0x2e,0x7,0x86,0x1,0x54,
0x1,0xfd,0xfe,0x5,0xff,0x7f,0x2,0xca,0x2,0xfc,0x6,0x52,0x7,0xc6,0x7,0x35,
0x8,0x4e,0x5,0xc4,0x5,0xb9,0x1,0xc5,0x1,0x78,0xfe,0x3d,0xfe,0xc2,0xfb,0xb7,
0xfb,0x97,0xfa,0x95,0xfa,0xf5,0xfb,0xce,0xfb,0xc0,0xfd,0x78,0xfd,0xad,0xfd,0xf7,
0xfc,0x49,0xfc,0x52,0xfb,0x84,0xfa,0xf4,0xf9,0xa8,0xf8,0x4e,0xf8,0xae,0xf7,0x12,
0xf7,0x8d,0xf8,0xef,0xf7,0x75,0xfa,0xfd,0xf9,0x27,0xfc,0xa9,0xfb,0x60,0xfe,0xfe,
0xfd,0x97,0x1,0x88,0x1,0x92,0x3,0xdb,0x3,0x20,0x3,0x6f,0x3,0x9,0x2,0xe3,
0x1,0x17,0x1,0xca,0x0,0xbd,0xff,0xd6,0xff,0x0,0xff,0x32,0xff,0x7d,0xff,0x78,
0xff,0x9,0x0,0xe0,0xff,0xe7,0x0,0x71,0x0,0x33,0x2,0xab,0x1,0x5e,0x1,0x41,
0x1,0xb7,0xfe,0xaa,0xfe,0x2a,0xfe,0xcb,0xfd,0x3a,0x0,0xda,0xff,0x68,0x2,0x24,
0x2,0xfb,0x2,0xbc,0x2,0x6,0x1,0xf7,0x0,0xc,0xfe,0x3e,0xfe,0xb4,0xfc,0xe6,
0xfc,0x78,0xfc,0x66,0xfc,0xd3,0xfb,0x8f,0xfb,0x2a,0xfb,0x23,0xfb,0x51,0xfb,0xa5,
0xfb,0x92,0xfc,0xc8,0xfc,0xa6,0xfd,0x61,0xfd,0x1f,0xfd,0x9c,0xfc,0x5,0xfd,0xd6,
0xfc,0x63,0xff,0xc0,0xff,0xeb,0x1,0x75,0x2,0xfb,0x2,0x57,0x3,0x8e,0x4,0xd1,
0x4,0x31,0x7,0x8e,0x7,0xe,0x9,0x93,0x9,0x6d,0x9,0x30,0xa,0xc7,0x8,0xc8,
0x9,0x9f,0x7,0xa7,0x8,0x9d,0x6,0x64,0x7,0x1d,0x6,0x5e,0x6,0xff,0x5,0xd9,
0x5,0x7a,0x5,0xbf,0x5,0xe3,0x3,0xd3,0x4,0x3d,0x2,0xef,0x2,0x66,0x1,0x5a,
0x1,0x97,0x0,0x40,0x0,0x1,0x0,0xb1,0xff,0xb4,0xff,0x7f,0xff,0xc,0xfe,0xeb,
0xfd,0xc6,0xfb,0x7f,0xfb,0x9,0xfb,0x8c,0xfa,0x0,0xfb,0x50,0xfa,0x1a,0xfa,0x37,
0xf9,0x35,0xf8,0x77,0xf7,0x6a,0xf6,0xe,0xf6,0x5d,0xf6,0x24,0xf6,0xc8,0xf6,0x7b,
0xf6,0x5,0xf6,0xb4,0xf5,0x92,0xf6,0x84,0xf6,0xe,0xf9,0x3c,0xf9,0x1b,0xfa,0x1d,
0xfa,0x89,0xf9,0x77,0xf9,0xd6,0xf9,0x0,0xfa,0xd3,0xfb,0xed,0xfb,0xf4,0xfe,0xd6,
0xfe,0x97,0x1,0x7d,0x1,0xcf,0x2,0xca,0x2,0x2b,0x4,0x51,0x4,0xad,0x6,0xe1,
0x6,0xdd,0x8,0xd1,0x8,0x51,0x9,0x43,0x9,0x4d,0x9,0x88,0x9,0xf8,0xa,0x2b,
0xb,0xeb,0xc,0xf9,0xc,0x37,0xc,0x63,0xc,0xbe,0x9,0xfd,0x9,0x0,0x8,0x1e,
0x8,0x33,0x7,0x43,0x7,0xa5,0x6,0xc4,0x6,0x1b,0x6,0x3b,0x6,0x81,0x5,0x92,
0x5,0xb4,0x4,0xad,0x4,0xa4,0x3,0x7f,0x3,0xc0,0x2,0x92,0x2,0x73,0x2,0x44,
0x2,0x96,0x2,0x55,0x2,0x29,0x2,0xd3,0x1,0xb1,0xff,0x2d,0xff,0xe1,0xfb,0x28,
0xfb,0x4f,0xf9,0xba,0xf8,0x61,0xf8,0x14,0xf8,0x0,0xf8,0xd2,0xf7,0xca,0xf7,0xd6,
0xf7,0x98,0xf6,0xcb,0xf6,0x9,0xf4,0x2,0xf4,0x59,0xf2,0x2a,0xf2,0x53,0xf2,0x4d,
0xf2,0x71,0xf2,0x9c,0xf2,0x55,0xf3,0x91,0xf3,0xb3,0xf6,0xd4,0xf6,0x7a,0xfa,0x81,
0xfa,0x3c,0xfb,0x71,0xfb,0x2a,0xfa,0xae,0xfa,0x71,0xfb,0xfd,0xfb,0x27,0x0,0x68,
0x0,0x9a,0x5,0xbd,0x5,0x2f,0x9,0xa0,0x9,0xce,0xa,0x52,0xb,0x83,0xb,0xc3,
0xb,0xac,0xb,0x2c,0xc,0x12,0xc,0x5,0xd,0xba,0xd,0x3f,0xe,0x1a,0xf,0x1,
0xf,0x3f,0xe,0x4a,0xe,0x70,0xc,0xa6,0xc,0x46,0xb,0x4d,0xb,0xf2,0x9,0xe4,
0x9,0xbb,0x7,0x5f,0x7,0x4a,0x5,0x8b,0x4,0x28,0x3,0xb8,0x2,0x2,0x1,0xd1,
0x0,0x58,0xfe,0xa3,0xfd,0x61,0xfb,0x4a,0xfa,0x31,0xf9,0x10,0xf8,0x76,0xf8,0x45,
0xf7,0x7,0xf8,0x13,0xf7,0x79,0xf6,0xec,0xf5,0x2a,0xf5,0xc9,0xf4,0xfc,0xf5,0xbd,
0xf5,0x73,0xf7,0x54,0xf7,0x94,0xf7,0x86,0xf7,0xfd,0xf6,0x10,0xf7,0xcf,0xf6,0xd,
0xf7,0x14,0xf8,0x98,0xf8,0x54,0xfb,0xa,0xfc,0xf5,0xfd,0x7e,0xfe,0x90,0xfd,0xe9,
0xfd,0xc6,0xfc,0x26,0xfd,0x5f,0xfe,0xd2,0xfe,0xc7,0x0,0x5c,0x1,0x3e,0x2,0xe0,
0x2,0xd8,0x2,0x4f,0x3,0xdb,0x2,0x2d,0x3,0x2c,0x3,0x6d,0x3,0xcf,0x3,0xf,
0x4,0xad,0x3,0xfa,0x3,0xa4,0x3,0xe9,0x3,0xe0,0x3,0x15,0x4,0x69,0x2,0x83,
0x2,0xd5,0x0,0xcc,0x0,0xde,0x1,0xcd,0x1,0x38,0x3,0x20,0x3,0xa5,0x2,0x9d,
0x2,0x7b,0x1,0xa5,0x1,0x54,0x0,0x66,0x0,0xfd,0xfe,0xd9,0xfe,0xf6,0xfd,0xd4,
0xfd,0x47,0xfd,0xf1,0xfc,0xa3,0xfc,0x22,0xfc,0xaf,0xfb,0x8f,0xfb,0xb9,0xfa,0xf3,
0xfa,0x4,0xfb,0x3c,0xfb,0x74,0xfc,0x8f,0xfc,0xf8,0xfd,0x9,0xfe,0x8e,0xff,0xfa,
0xff,0x2c,0x1,0xd,0x2,0xbc,0x2,0x88,0x3,0x70,0x4,0x10,0x5,0x98,0x5,0x59,
0x6,0xb3,0x5,0x6d,0x6,0xed,0x4,0x68,0x5,0x5f,0x3,0x9d,0x3,0x24,0x2,0x18,
0x2,0x9c,0x2,0x74,0x2,0xf9,0x4,0x1a,0x5,0xf4,0x7,0x3b,0x8,0x50,0x8,0x49,
0x8,0x14,0x5,0xc9,0x4,0xb2,0x1,0x70,0x1,0x9f,0xff,0x56,0xff,0xfb,0xfd,0x92,
0xfd,0xf1,0xfd,0x63,0xfd,0xdf,0xfe,0x2e,0xfe,0xec,0xfd,0x3f,0xfd,0x4e,0xfb,0x7b,
0xfa,0xc5,0xf8,0x8c,0xf7,0xb2,0xf7,0x6b,0xf6,0xf5,0xf8,0xf0,0xf7,0xd7,0xfa,0xe,
0xfa,0xa7,0xfb,0x1a,0xfb,0xac,0xfb,0x15,0xfb,0xbb,0xfa,0x10,0xfa,0x42,0xfa,0xf6,
0xf9,0x8c,0xfc,0x73,0xfc,0x89,0xff,0x6a,0xff,0xf8,0x0,0x1f,0x1,0x54,0x2,0x7b,
0x2,0x5a,0x3,0x47,0x3,0x31,0x2,0x60,0x2,0xa9,0x0,0xa,0x1,0x9b,0x1,0xe7,
0x1,0x68,0x4,0xd7,0x4,0xe4,0x6,0x4b,0x7,0x24,0x8,0x4f,0x8,0xb8,0x7,0xa,
0x8,0xa3,0x5,0x2a,0x6,0xce,0x3,0x59,0x4,0xb3,0x3,0x5c,0x4,0xef,0x3,0x8e,
0x4,0x2a,0x3,0x85,0x3,0x8b,0x1,0xe6,0x1,0x2c,0xff,0x94,0xff,0xac,0xfc,0xd4,
0xfc,0xf0,0xfa,0xee,0xfa,0x1e,0xfa,0x17,0xfa,0xc7,0xfa,0x8e,0xfa,0x84,0xfc,0x1a,
0xfc,0x9e,0xfc,0x29,0xfc,0x9f,0xfa,0x24,0xfa,0xa2,0xf9,0x34,0xf9,0xc1,0xfa,0x46,
0xfa,0x53,0xfc,0xa2,0xfb,0xa,0xfe,0x6c,0xfd,0xf2,0xff,0x8d,0xff,0x7a,0x0,0x19,
0x0,0x65,0xff,0x2e,0xff,0x9f,0xfe,0xcc,0xfe,0x21,0xff,0xa3,0xff,0xa0,0x0,0x56,
0x1,0x91,0x2,0x34,0x3,0xae,0x3,0x48,0x4,0x49,0x3,0x21,0x4,0x4c,0x2,0xf3,
0x2,0x75,0x1,0x93,0x1,0x26,0x1,0x36,0x1,0x8,0x2,0x14,0x2,0x6b,0x3,0x4f,
0x3,0x8e,0x3,0xd2,0x3,0x5c,0x2,0xf2,0x2,0xd6,0x0,0x2f,0x1,0x80,0xff,0xc8,
0xff,0x59,0xff,0x98,0xff,0x82,0x0,0x63,0x0,0x29,0x1,0xe5,0x0,0x86,0x1,0x39,
0x1,0x13,0x3,0x91,0x2,0x86,0x3,0x12,0x3,0xa2,0x0,0x3b,0x0,0x8c,0xfc,0xdc,
0xfb,0x76,0xf9,0xcc,0xf8,0x23,0xf8,0xe3,0xf7,0x4b,0xf9,0x20,0xf9,0x9e,0xfb,0x26,
0xfb,0x33,0xfd,0x85,0xfc,0x12,0xfe,0x7a,0xfd,0x69,0xfe,0x1b,0xfe,0x41,0xfe,0x40,
0xfe,0xf9,0xfd,0xfd,0xfd,0x83,0xfd,0x21,0xfd,0xcc,0xfd,0x23,0xfd,0x36,0x0,0xe3,
0xff,0xa3,0x3,0xd6,0x3,0x9c,0x5,0x21,0x6,0x48,0x5,0xed,0x5,0xda,0x3,0x4b,
0x4,0x1a,0x3,0x6d,0x3,0x6c,0x3,0x16,0x4,0xb6,0x3,0x6a,0x4,0x4c,0x3,0x77,
0x3,0xad,0x2,0x84,0x2,0x7b,0x2,0x7a,0x2,0x74,0x2,0x9a,0x2,0xcb,0x1,0xd1,
0x1,0x93,0x0,0x71,0x0,0xb2,0xff,0x7c,0xff,0x44,0xff,0xe6,0xfe,0x6a,0xfe,0xe,
0xfe,0x2b,0xfd,0xf8,0xfc,0xb9,0xfc,0x5d,0xfc,0x9,0xfd,0x9e,0xfc,0xc8,0xfc,0xae,
0xfc,0xdf,0xfb,0xd5,0xfb,0x9c,0xfb,0x81,0xfb,0x22,0xfd,0x0,0xfd,0xf5,0xff,0x99,
0xff,0xde,0x1,0xab,0x1,0x0,0x2,0x33,0x2,0xb3,0x1,0xd4,0x1,0x78,0x1,0xac,
0x1,0xf3,0x0,0x6d,0x1,0x6f,0x0,0xd9,0x0,0x89,0x0,0xf,0x1,0xe6,0x1,0xaa,
0x2,0xc2,0x3,0x8a,0x4,0x14,0x4,0xb,0x5,0xc4,0x2,0xdb,0x3,0x65,0x1,0x69,
0x2,0x41,0x1,0x58,0x2,0x4,0x3,0xe2,0x3,0x3a,0x5,0xa0,0x5,0xab,0x5,0xf7,
0x5,0xbc,0x4,0x0,0x5,0xde,0x3,0x1a,0x4,0x48,0x3,0xae,0x3,0x62,0x2,0xc5,
0x2,0xc8,0x0,0xf5,0x0,0x3b,0xff,0x2c,0xff,0x44,0xfe,0xf2,0xfd,0x8c,0xfd,0xf,
0xfd,0x98,0xfd,0xeb,0xfc,0x8c,0xfe,0xa9,0xfd,0x50,0xff,0x60,0xfe,0x5c,0xff,0x6a,
0xfe,0x6b,0xfe,0x6e,0xfd,0x10,0xfd,0x10,0xfc,0xb,0xfd,0x1b,0xfc,0x55,0xfe,0x9c,
0xfd,0xee,0xff,0x52,0xff,0x84,0x1,0xdc,0x0,0x13,0x2,0x83,0x1,0x6b,0x1,0xe9,
0x0,0x5f,0x0,0xe0,0xff,0xe0,0xfe,0x7b,0xfe,0xcb,0xfd,0x2c,0xfd,0xd2,0xfd,0x1,
0xfd,0xdb,0xfd,0x84,0xfd,0x1a,0xfe,0x41,0xfe,0xb1,0xfe,0xfa,0xfe,0x48,0xfe,0xc3,
0xfe,0xfb,0xfd,0x8f,0xfe,0xf9,0xfe,0x6c,0xff,0xb0,0xff,0x13,0x0,0xf7,0xff,0x74,
0x0,0x45,0x0,0xe,0x1,0x4f,0xff,0x62,0x0,0xa2,0xfd,0x8e,0xfe,0x63,0xfd,0xb3,
0xfd,0x1a,0xfe,0xc,0xfe,0x10,0xfe,0x60,0xfe,0xbc,0xfd,0x4d,0xfe,0x1f,0xfe,0x30,
0xfe,0x54,0xfe,0x5,0xfe,0x1d,0xfe,0xd2,0xfd,0xf1,0xfe,0x57,0xfe,0x7c,0x0,0x90,
0xff,0xae,0x1,0xd7,0x0,0x13,0x3,0x6a,0x2,0xf0,0x3,0x9b,0x3,0x1,0x3,0xc,
0x3,0xbd,0x1,0xd7,0x1,0xa5,0x1,0x9f,0x1,0x3b,0x2,0x3,0x2,0xe1,0x2,0x80,
0x2,0x46,0x3,0x12,0x3,0x0,0x3,0x21,0x3,0xb6,0x1,0x9,0x2,0x8b,0xff,0xd,
0x0,0x7e,0xfd,0xe,0xfe,0x94,0xfc,0xeb,0xfc,0xfb,0xfc,0x39,0xfd,0x91,0xfd,0x6,
0xfe,0xf5,0xfc,0x4f,0xfd,0x8,0xfc,0xd7,0xfb,0x47,0xfc,0x8,0xfc,0xdd,0xfc,0x3c,
0xfd,0xf6,0xfc,0xc5,0xfd,0xe4,0xfc,0xaa,0xfd,0xa8,0xfc,0xd,0xfd,0xc3,0xfc,0x9c,
0xfc,0xba,0xfd,0x55,0xfd,0xee,0xfe,0x9b,0xfe,0xe6,0xff,0xae,0xff,0xd1,0x0,0xe5,
0x0,0x37,0x2,0x67,0x2,0x1a,0x4,0xe1,0x3,0x71,0x5,0xc,0x5,0x16,0x6,0xcb,
0x5,0x82,0x6,0xdd,0x5,0x61,0x6,0x6d,0x5,0xfe,0x5,0x3b,0x5,0x85,0x5,0x2,
0x5,0xd2,0x4,0xa4,0x4,0xf1,0x4,0x1e,0x5,0x38,0x5,0x5a,0x5,0xfe,0x3,0xf6,
0x3,0x66,0x2,0x58,0x2,0x15,0x1,0x7,0x1,0xc2,0xff,0xd9,0xff,0x91,0xff,0xdf,
0xff,0x6e,0xff,0xe7,0xff,0xfe,0xfd,0x94,0xfe,0xff,0xfc,0x58,0xfd,0x99,0xfc,0xb7,
0xfc,0x39,0xfc,0xa1,0xfc,0xed,0xfc,0x55,0xfd,0x90,0xfd,0x8c,0xfd,0x8e,0xfd,0x8d,
0xfd,0x7a,0xfe,0x93,0xfe,0xe5,0xfe,0xe1,0xfe,0x90,0xfd,0xb0,0xfd,0xa,0xfd,0x1a,
0xfd,0x67,0xfe,0xb,0xfe,0x34,0x0,0xc4,0xff,0x77,0x1,0x9,0x1,0xcc,0x1,0x28,
0x1,0x59,0x1,0xbf,0x0,0x85,0x0,0x37,0x0,0xe1,0xff,0xbe,0xff,0xf7,0xff,0xc8,
0xff,0xc,0x0,0xc6,0xff,0x19,0xff,0xeb,0xfe,0x46,0xfd,0x50,0xfd,0x52,0xfb,0x67,
0xfb,0x33,0xfa,0xfc,0xf9,0x62,0xfa,0xf3,0xf9,0xb0,0xfb,0x89,0xfb,0xaa,0xfd,0xb3,
0xfd,0xf7,0xfe,0xc6,0xfe,0x20,0xff,0x11,0xff,0xac,0xff,0x0,0x0,0xe2,0x0,0x53,
0x1,0x15,0x2,0xbe,0x2,0x9b,0x3,0x52,0x4,0xb2,0x4,0x20,0x5,0xac,0x4,0x30,
0x5,0xc1,0x4,0x6b,0x5,0x22,0x5,0x8f,0x5,0x16,0x5,0x6a,0x5,0x2b,0x5,0x92,
0x5,0x96,0x5,0x1b,0x6,0x60,0x5,0x2,0x6,0x7,0x4,0x50,0x4,0x5d,0x2,0x34,
0x2,0xb2,0x1,0x9c,0x1,0x36,0x2,0x34,0x2,0x1f,0x3,0xc3,0x2,0x67,0x3,0xba,
0x2,0xc2,0x1,0x5f,0x1,0x55,0xfe,0x7c,0xfe,0x85,0xfb,0x91,0xfb,0x35,0xfb,0xcd,
0xfa,0x51,0xfc,0xc5,0xfb,0x4c,0xfc,0x9e,0xfb,0xe4,0xfa,0x3e,0xfa,0xd8,0xf9,0x7f,
0xf9,0x3b,0xf9,0xaf,0xf8,0x94,0xf8,0xa7,0xf7,0xd3,0xf8,0xfb,0xf7,0x90,0xf9,0xd0,
0xf8,0x9c,0xf9,0xff,0xf8,0xba,0xf9,0x88,0xf9,0x8b,0xfa,0xa8,0xfa,0xa0,0xfb,0xf2,
0xfb,0x20,0xfd,0x90,0xfd,0xae,0xfe,0xe8,0xfe,0x5c,0xff,0x7a,0xff,0x13,0x0,0x81,
0x0,0x72,0x2,0x1e,0x3,0xab,0x5,0x38,0x6,0xb0,0x7,0x20,0x8,0x35,0x8,0xa3,
0x8,0xf4,0x7,0x3c,0x8,0x5a,0x7,0xab,0x7,0x53,0x7,0x6,0x8,0x36,0x8,0xfb,
0x8,0xd3,0x8,0x48,0x9,0x61,0x8,0xb1,0x8,0xe7,0x6,0x3c,0x7,0x6a,0x4,0xd4,
0x4,0xc0,0x1,0x28,0x2,0x15,0x0,0x3c,0x0,0x9d,0xff,0x79,0xff,0x4c,0xff,0xd9,
0xfe,0xf0,0xfd,0x24,0xfd,0xe5,0xfb,0xb,0xfb,0x41,0xfa,0x91,0xf9,0xfa,0xf8,0x77,
0xf8,0xcc,0xf7,0x6f,0xf7,0xa8,0xf6,0x39,0xf6,0x83,0xf5,0xfc,0xf4,0x8,0xf5,0x96,
0xf4,0x4d,0xf5,0xdb,0xf4,0x4f,0xf5,0xce,0xf4,0xc,0xf5,0x71,0xf4,0xb0,0xf5,0xf9,
0xf4,0x27,0xf8,0xb3,0xf7,0xb3,0xfb,0x94,0xfb,0x18,0xfe,0x5,0xfe,0xf0,0xfe,0xf,
0xff,0xf8,0xff,0x62,0x0,0xd0,0x1,0x55,0x2,0x46,0x4,0xcc,0x4,0x26,0x7,0x97,
0x7,0xa7,0x9,0x3a,0xa,0x82,0xb,0x83,0xc,0xaa,0xc,0xd6,0xd,0xe1,0xc,0x8,
0xe,0x16,0xd,0x4c,0xe,0xf9,0xd,0xa,0xf,0x77,0xe,0x3a,0xf,0xae,0xd,0x2c,
0xe,0xe,0xc,0x36,0xc,0x53,0xa,0x1f,0xa,0x3b,0x8,0xcf,0x7,0xf5,0x4,0x94,
0x4,0x73,0x1,0x2a,0x1,0x9c,0xff,0x1c,0xff,0x97,0xff,0xb2,0xfe,0xb7,0xff,0xb1,
0xfe,0x1f,0xfe,0x43,0xfd,0x45,0xfb,0x67,0xfa,0xc3,0xf9,0x89,0xf8,0xb6,0xf9,0x82,
0xf8,0xf2,0xf8,0x44,0xf8,0x53,0xf7,0xea,0xf6,0x1a,0xf6,0xff,0xf5,0xdb,0xf5,0x2f,
0xf6,0x17,0xf6,0x3b,0xf6,0x52,0xf5,0x21,0xf5,0x66,0xf3,0x40,0xf3,0x3,0xf2,0xc8,
0xf1,0x1b,0xf2,0xdf,0xf1,0x8c,0xf3,0x8e,0xf3,0xa6,0xf5,0xc9,0xf5,0xee,0xf7,0x31,
0xf8,0xd0,0xfa,0x1a,0xfb,0x7d,0xfd,0xd9,0xfd,0xec,0xfe,0xb0,0xff,0xaa,0x0,0x6b,
0x1,0x93,0x3,0x6,0x4,0xad,0x6,0x67,0x7,0xca,0x9,0xb5,0xa,0x95,0xb,0x37,
0xc,0xb7,0xa,0x40,0xb,0xe1,0x9,0x57,0xa,0x52,0xb,0x78,0xb,0x52,0xd,0x2d,
0xd,0x8c,0xe,0x49,0xe,0x71,0xf,0x46,0xf,0x27,0x10,0x6,0x10,0x34,0x10,0xee,
0xf,0x9c,0xe,0x28,0xe,0x8e,0xb,0xb6,0xa,0x2b,0x9,0x21,0x8,0x4d,0x8,0xc0,
0x7,0x48,0x7,0x2c,0x7,0xbb,0x4,0xac,0x4,0xf5,0x0,0xf9,0x0,0xf3,0xfc,0xe5,
0xfc,0x42,0xf9,0x2,0xf9,0xe8,0xf5,0xac,0xf5,0xa,0xf3,0xf6,0xf2,0x2e,0xf1,0x64,
0xf1,0xbe,0xf0,0x35,0xf1,0x24,0xf1,0x8f,0xf1,0xc8,0xf0,0xf,0xf1,0xec,0xee,0xfe,
0xee,0xf1,0xec,0xb4,0xec,0x8e,0xec,0x48,0xec,0xc7,0xed,0xd5,0xed,0xa,0xf0,0x66,
0xf0,0x75,0xf3,0xe9,0xf3,0x6d,0xf7,0xe2,0xf7,0x98,0xfa,0xd,0xfb,0x16,0xfd,0x60,
0xfd,0xc2,0xff,0xb1,0xff,0x51,0x2,0x11,0x2,0x78,0x4,0x4e,0x4,0x7d,0x6,0x64,
0x6,0xb9,0x8,0x8f,0x8,0xc6,0xb,0x88,0xb,0x58,0xf,0xd,0xf,0xef,0x11,0xa2,
0x11,0xc2,0x12,0x91,0x12,0xcc,0x11,0xa9,0x11,0xe9,0xf,0x9a,0xf,0xf1,0xe,0x85,
0xe,0xbf,0xe,0x59,0xe,0xf0,0xd,0x7b,0xd,0x3e,0xd,0xd1,0xc,0xb9,0xc,0x70,
0xc,0x80,0xa,0x4c,0xa,0xca,0x6,0xeb,0x6,0x5c,0x3,0xd2,0x3,0xe0,0x0,0x26,
0x1,0x46,0xff,0x57,0xff,0xbf,0xfd,0xe7,0xfd,0xe0,0xfb,0x0,0xfc,0x4c,0xfa,0x5c,
0xfa,0x6c,0xf8,0x8b,0xf8,0x88,0xf5,0x9a,0xf5,0xbd,0xf2,0xda,0xf2,0xe2,0xf0,0x24,
0xf1,0xd1,0xef,0xfb,0xef,0xa5,0xef,0xa8,0xef,0x80,0xf0,0x90,0xf0,0x6b,0xf2,0x77,
0xf2,0x93,0xf4,0x73,0xf4,0x99,0xf5,0x62,0xf5,0xa8,0xf5,0x67,0xf5,0xd6,0xf5,0x77,
0xf5,0xf5,0xf6,0xa8,0xf6,0xb8,0xf9,0xc0,0xf9,0x1b,0xfd,0x70,0xfd,0x4c,0xff,0xbf,
0xff,0xa3,0x0,0xff,0x0,0x40,0x2,0x66,0x2,0x80,0x4,0xb2,0x4,0x97,0x7,0x4,
0x8,0xc1,0xa,0x1,0xb,0xbb,0xc,0x89,0xc,0x72,0xd,0x2a,0xd,0x9e,0xd,0x6f,
0xd,0xac,0xd,0x70,0xd,0x6e,0xd,0x44,0xd,0x28,0xd,0x4,0xd,0xa8,0xd,0x2a,
0xd,0xc6,0xd,0x1b,0xd,0xca,0xb,0x8c,0xb,0x1b,0x9,0x3d,0x9,0x7f,0x7,0x5d,
0x7,0x89,0x6,0xfb,0x5,0xc3,0x5,0x67,0x5,0x6a,0x4,0x57,0x4,0x3f,0x1,0xca,
0x0,0xd4,0xfc,0x4f,0xfc,0x9c,0xf8,0xd0,0xf8,0x2e,0xf5,0xa9,0xf5,0xb7,0xf2,0x17,
0xf3,0xef,0xf0,0x7c,0xf1,0x6c,0xef,0xe3,0xef,0xf6,0xed,0x50,0xee,0x3b,0xec,0xd4,
0xec,0xc8,0xea,0x6e,0xeb,0xee,0xea,0x77,0xeb,0xce,0xec,0x1,0xed,0xb8,0xef,0x4e,
0xef,0x6d,0xf3,0x19,0xf3,0xac,0xf7,0xd8,0xf7,0xd9,0xfb,0x1,0xfc,0x23,0xff,0x53,
0xff,0x43,0x1,0x77,0x1,0xe,0x3,0xf2,0x2,0x46,0x5,0x2d,0x5,0xf9,0x7,0xdb,
0x7,0x47,0xb,0xe3,0xa,0x7a,0xe,0x3f,0xe,0xfc,0xf,0xf7,0xf,0x33,0x10,0x22,
0x10,0x2a,0x11,0x26,0x11,0xfd,0x12,0xf2,0x12,0x13,0x14,0x8,0x14,0x8d,0x13,0x91,
0x13,0x72,0x11,0x4e,0x11,0x87,0xe,0x82,0xe,0x9,0xc,0x52,0xc,0x1e,0xa,0x43,
0xa,0xb3,0x7,0xc8,0x7,0x99,0x4,0xe9,0x4,0xcf,0x1,0x19,0x2,0x45,0xff,0x4e,
0xff,0xf1,0xfb,0x9f,0xfb,0x9b,0xf8,0xf7,0xf7,0x31,0xf7,0x76,0xf6,0x0,0xf7,0x5f,
0xf6,0x8b,0xf5,0x40,0xf5,0xac,0xf2,0xaa,0xf2,0x4f,0xf0,0x3d,0xf0,0x15,0xef,0x9,
0xef,0xe3,0xed,0x14,0xee,0x72,0xec,0xcf,0xec,0x1f,0xec,0x68,0xec,0x8e,0xed,0x6b,
0xed,0xc0,0xef,0x6a,0xef,0xb7,0xf1,0xb0,0xf1,0x42,0xf3,0x67,0xf3,0x4e,0xf5,0x6c,
0xf5,0xfe,0xf8,0x7,0xf9,0x51,0xfd,0x1c,0xfd,0x90,0x0,0x55,0x0,0xc0,0x2,0x94,
0x2,0x20,0x4,0xcd,0x3,0x2e,0x5,0xea,0x4,0x42,0x7,0x2b,0x7,0xf9,0x9,0xf3,
0x9,0x17,0xc,0x4c,0xc,0x46,0xe,0x7e,0xe,0xa6,0x10,0xa8,0x10,0xd4,0x11,0xf6,
0x11,0xbe,0x11,0x25,0x12,0x7e,0x11,0x28,0x12,0xb1,0x11,0x78,0x12,0x2e,0x12,0x6e,
0x12,0x20,0x12,0xcd,0x11,0xc,0x11,0xd7,0x10,0x34,0xf,0x55,0xf,0xf5,0xc,0x3c,
0xd,0x93,0xa,0xd6,0xa,0x66,0x7,0x8d,0x7,0xf1,0x2,0xea,0x2,0xff,0xfe,0x91,
0xfe,0xac,0xfc,0xe3,0xfb,0xe,0xfa,0x7f,0xf9,0x47,0xf6,0x31,0xf6,0xa7,0xf2,0xc7,
0xf2,0xc9,0xef,0x8,0xf0,0xf0,0xed,0x41,0xee,0x5b,0xed,0x7a,0xed,0x83,0xed,0x84,
0xed,0x74,0xee,0x9a,0xee,0x4e,0xf0,0x50,0xf0,0xff,0xf1,0xba,0xf1,0x16,0xf3,0xea,
0xf2,0xd,0xf4,0xec,0xf3,0x57,0xf5,0x40,0xf5,0xec,0xf7,0x3d,0xf8,0xa9,0xfb,0xf9,
0xfb,0xce,0xfe,0xb4,0xfe,0xc,0x1,0xf4,0x0,0x35,0x3,0x20,0x3,0x2b,0x5,0xe8,
0x4,0xdb,0x6,0x80,0x6,0x60,0x8,0xd7,0x7,0x97,0x9,0x3b,0x9,0xcf,0xa,0xea,
0xa,0xe5,0xb,0xf8,0xb,0x2,0xc,0x21,0xc,0xb,0xb,0x88,0xb,0xa4,0x9,0x27,
0xa,0x9e,0x8,0x3a,0x9,0x63,0x8,0x46,0x9,0x50,0x8,0x33,0x9,0xb8,0x7,0x9f,
0x8,0xc5,0x6,0x9c,0x7,0x82,0x5,0x14,0x6,0x85,0x3,0xf1,0x3,0xd0,0x0,0x4,
0x1,0x33,0xfe,0x3b,0xfe,0x60,0xfc,0x86,0xfc,0x5e,0xfb,0x64,0xfb,0xfe,0xfa,0xbf,
0xfa,0x57,0xfa,0xa,0xfa,0x60,0xf8,0xfb,0xf7,0x2a,0xf6,0xbd,0xf5,0x63,0xf5,0xfd,
0xf4,0xd4,0xf5,0x65,0xf5,0xf9,0xf6,0xa2,0xf6,0x74,0xf8,0x23,0xf8,0x8a,0xf9,0x1e,
0xf9,0xb8,0xfa,0x4f,0xfa,0x7b,0xfc,0xe3,0xfb,0xa3,0xfd,0xb3,0xfc,0x88,0xfd,0x8f,
0xfc,0xf0,0xfc,0x36,0xfc,0xbd,0xfc,0x57,0xfc,0x7a,0xfd,0x3f,0xfd,0xf8,0xfe,0xcb,
0xfe,0x8a,0x0,0x9a,0x0,0xc9,0x1,0xed,0x1,0x9a,0x2,0x8f,0x2,0x9,0x3,0x7,
0x3,0x4d,0x3,0x70,0x3,0x12,0x4,0x56,0x4,0xf4,0x5,0x5a,0x6,0xc0,0x7,0x1a,
0x8,0x22,0x8,0x7e,0x8,0x16,0x8,0x86,0x8,0x55,0x8,0xa0,0x8,0x2d,0x8,0x77,
0x8,0x0,0x8,0x51,0x8,0x45,0x8,0x4e,0x8,0x1e,0x8,0x17,0x8,0xf5,0x6,0x15,
0x7,0xcc,0x4,0xcb,0x4,0x27,0x2,0x4,0x2,0x6b,0x0,0x40,0x0,0xdf,0xff,0x9e,
0xff,0xee,0xfe,0xb1,0xfe,0xdd,0xfc,0xc8,0xfc,0x9a,0xfa,0xb0,0xfa,0xac,0xf8,0xda,
0xf8,0x1f,0xf7,0x44,0xf7,0x7f,0xf6,0x8c,0xf6,0xbb,0xf6,0x98,0xf6,0xf9,0xf6,0xb0,
0xf6,0x89,0xf7,0x55,0xf7,0x27,0xf9,0x14,0xf9,0xe6,0xfa,0xdb,0xfa,0x73,0xfb,0x50,
0xfb,0xf5,0xfa,0x99,0xfa,0xc4,0xfa,0x57,0xfa,0xc3,0xfb,0x79,0xfb,0x55,0xfd,0x19,
0xfd,0x80,0xfe,0x5e,0xfe,0x62,0xff,0x77,0xff,0xa4,0x0,0xd3,0x0,0x75,0x2,0x9a,
0x2,0x52,0x4,0x6a,0x4,0xfa,0x5,0x18,0x6,0xdd,0x7,0x5,0x8,0x9f,0x9,0xc5,
0x9,0x80,0xa,0x9b,0xa,0xe7,0xa,0xcc,0xa,0xf6,0xa,0xa9,0xa,0x3b,0xa,0xa,
0xa,0x51,0x9,0x3c,0x9,0xcc,0x8,0xc7,0x8,0x55,0x8,0x85,0x8,0x94,0x7,0xb1,
0x7,0x65,0x6,0x36,0x6,0x2a,0x5,0x1,0x5,0xc,0x4,0xa,0x4,0x2d,0x2,0x38,
0x2,0x92,0xff,0xbb,0xff,0x40,0xfd,0x89,0xfd,0x6c,0xfb,0x9a,0xfb,0x2e,0xfa,0xff,
0xf9,0x87,0xf9,0x35,0xf9,0x8d,0xf8,0x9a,0xf8,0x35,0xf7,0x9f,0xf7,0x7b,0xf6,0xf8,
0xf6,0x7b,0xf6,0xe9,0xf6,0xf4,0xf6,0x3c,0xf7,0xf6,0xf7,0x23,0xf8,0xd4,0xf8,0xe4,
0xf8,0xad,0xf8,0x92,0xf8,0x2f,0xf8,0xd,0xf8,0xab,0xf8,0x56,0xf8,0xe1,0xf9,0x50,
0xf9,0x35,0xfb,0xfa,0xfa,0xff,0xfc,0x1d,0xfd,0xbe,0xfe,0xe2,0xfe,0x89,0xff,0xd9,
0xff,0xe4,0xff,0x26,0x0,0x25,0x0,0x22,0x0,0x2d,0x0,0x53,0x0,0xf,0x1,0x68,
0x1,0x18,0x3,0x56,0x3,0x99,0x4,0xaa,0x4,0xdc,0x4,0xb7,0x4,0xf4,0x4,0xc6,
0x4,0x79,0x5,0x66,0x5,0xdf,0x5,0xba,0x5,0x73,0x5,0x44,0x5,0x48,0x4,0x1c,
0x4,0x51,0x3,0xa,0x3,0x4a,0x3,0xeb,0x2,0xf2,0x3,0x85,0x3,0xcd,0x4,0x63,
0x4,0x23,0x5,0xcc,0x4,0xdd,0x3,0x8a,0x3,0x6e,0x1,0x30,0x1,0xbd,0xff,0x82,
0xff,0x36,0xff,0xd3,0xfe,0xf9,0xfe,0xc8,0xfe,0xe4,0xfe,0x13,0xff,0x3,0xff,0x43,
0xff,0x59,0xff,0x93,0xff,0xe7,0xff,0x1e,0x0,0xd9,0xff,0xe,0x0,0x54,0xfe,0x95,
0xfe,0xac,0xfb,0xd0,0xfb,0x8f,0xf9,0xa8,0xf9,0x1e,0xfa,0x6b,0xfa,0xf2,0xfc,0x52,
0xfd,0x21,0xff,0x66,0xff,0x7f,0xff,0xaf,0xff,0x11,0xff,0x55,0xff,0x3c,0xfe,0xde,
0xfe,0x3d,0xfd,0xed,0xfd,0xd,0xfd,0x2c,0xfd,0x33,0xfe,0xf1,0xfd,0x11,0x0,0xe5,
0xff,0x8f,0x1,0x72,0x1,0xc,0x2,0xf2,0x1,0xa2,0x1,0xa3,0x1,0xc2,0x0,0xc4,
0x0,0x2c,0x0,0xf7,0xff,0xcc,0x0,0x7f,0x0,0x7a,0x2,0x73,0x2,0x8d,0x3,0xba,
0x3,0x45,0x3,0x4c,0x3,0xe5,0x2,0xc6,0x2,0xdd,0x2,0xd5,0x2,0x7b,0x2,0x9c,
0x2,0x9,0x2,0x1b,0x2,0x79,0x1,0x55,0x1,0x3e,0x0,0x12,0x0,0xea,0xfe,0xdc,
0xfe,0x6a,0xfd,0x94,0xfd,0x90,0xfb,0xef,0xfb,0x2f,0xfb,0x57,0xfb,0x10,0xfd,0xc6,
0xfc,0x55,0xff,0xde,0xfe,0xe,0x0,0x9c,0xff,0xd1,0xfe,0x95,0xfe,0x69,0xfd,0x70,
0xfd,0x6c,0xfd,0x6c,0xfd,0xe6,0xfd,0xd0,0xfd,0x3b,0xfe,0x23,0xfe,0xbd,0xfe,0x9b,
0xfe,0xa,0xff,0xf4,0xfe,0x81,0xff,0x51,0xff,0x19,0x0,0xc8,0xff,0xdd,0xff,0xe2,
0xff,0xe4,0xff,0x50,0x0,0xfe,0x0,0x8f,0x1,0xd1,0x1,0x5f,0x2,0x18,0x2,0x72,
0x2,0x46,0x2,0x8e,0x2,0x62,0x2,0xcc,0x2,0xd8,0x2,0x40,0x3,0x35,0x3,0x92,
0x3,0xea,0x2,0xe,0x3,0x77,0x2,0x4d,0x2,0x1,0x2,0x2,0x2,0x15,0x2,0x21,
0x2,0xf,0x3,0xba,0x2,0x49,0x3,0xff,0x2,0x4b,0x2,0x1d,0x2,0xbd,0x1,0x4e,
0x1,0xf0,0x1,0x95,0x1,0x26,0x2,0x3d,0x2,0x31,0x2,0x90,0x2,0x4b,0x2,0x92,
0x2,0xa2,0x2,0x9d,0x2,0x34,0x2,0x39,0x2,0x4d,0x0,0x66,0x0,0x89,0xfe,0x5a,
0xfe,0x2b,0xfe,0xf4,0xfd,0x8e,0xfe,0x6d,0xfe,0x41,0xff,0xe0,0xfe,0x2e,0x0,0xcd,
0xff,0x80,0x0,0x5b,0x0,0x89,0xff,0x6a,0xff,0xfd,0xfd,0xf1,0xfd,0xe,0xfd,0x19,
0xfd,0xbc,0xfc,0xaf,0xfc,0x66,0xfc,0x4f,0xfc,0x8,0xfc,0xf4,0xfb,0x3,0xfc,0xe1,
0xfb,0xb4,0xfc,0x90,0xfc,0xb4,0xfd,0xa8,0xfd,0xdb,0xfd,0xe0,0xfd,0x56,0xfd,0x51,
0xfd,0x29,0xfd,0x3e,0xfd,0x22,0xfd,0x66,0xfd,0x13,0xfd,0x35,0xfd,0x67,0xfd,0x6a,
0xfd,0xec,0xfd,0x29,0xfe,0xce,0xfe,0x20,0xff,0xb3,0x0,0xd3,0x0,0xc6,0x2,0xda,
0x2,0x83,0x3,0xab,0x3,0xae,0x2,0xbd,0x2,0x13,0x1,0xf7,0x0,0xf8,0xff,0xf4,
0xff,0x8e,0x0,0xb4,0x0,0x5a,0x2,0x7f,0x2,0xb4,0x3,0xf9,0x3,0xa,0x4,0x71,
0x4,0xb0,0x3,0xf9,0x3,0xe5,0x2,0x26,0x3,0x32,0x2,0x67,0x2,0xd7,0x1,0xf6,
0x1,0xba,0x1,0x4,0x2,0x6,0x2,0x2d,0x2,0x8,0x2,0xcb,0x1,0xe9,0x0,0xc0,
0x0,0xb6,0xff,0x84,0xff,0x62,0xff,0xf9,0xfe,0x3c,0xff,0x3c,0xff,0xe2,0xfe,0x42,
0xff,0x7e,0xfe,0xb1,0xfe,0x3d,0xfe,0x2e,0xfe,0x9d,0xfe,0x2f,0xfe,0x99,0xff,0xec,
0xfe,0x8b,0x0,0x2,0x0,0xfa,0x0,0x94,0x0,0xa6,0x0,0x6b,0x0,0xde,0xff,0xb6,
0xff,0x4d,0xff,0x18,0xff,0x17,0xff,0x55,0xff,0x11,0xff,0xa1,0xff,0x2b,0xff,0x36,
0xff,0x42,0xff,0xf8,0xfe,0x22,0xff,0xe6,0xfe,0xe0,0xfe,0x7d,0xfe,0x11,0xff,0xcd,
0xfe,0x13,0x0,0x23,0x0,0x7b,0x1,0x7c,0x1,0x9e,0x2,0x8e,0x2,0xe8,0x2,0x10,
0x3,0x50,0x2,0xac,0x2,0x60,0x1,0xb6,0x1,0x59,0x0,0x69,0x0,0xd9,0xff,0xc5,
0xff,0x82,0x0,0x8c,0x0,0xd1,0x0,0xdc,0x0,0xb6,0xff,0xc1,0xff,0xc1,0xfe,0xeb,
0xfe,0x62,0xfe,0x90,0xfe,0xe9,0xfd,0x13,0xfe,0x7,0xfe,0x29,0xfe,0x8a,0xfe,0x70,
0xfe,0xa2,0xfe,0x5c,0xfe,0x30,0xff,0xfe,0xfe,0x1f,0x0,0x6,0x0,0xf4,0xff,0xf9,
0xff,0x16,0xff,0x56,0xff,0xf5,0xfe,0x37,0xff,0xa6,0xff,0x8e,0xff,0x28,0x0,0xeb,
0xff,0xe8,0xff,0xe4,0xff,0xd6,0xff,0xca,0xff,0xf5,0x0,0xa1,0x0,0x86,0x2,0x24,
0x2,0x60,0x3,0xfb,0x2,0x11,0x3,0xab,0x2,0xed,0x1,0xba,0x1,0x66,0x1,0x32,
0x1,0x3d,0x2,0xd3,0x1,0x12,0x3,0xba,0x2,0xf1,0x2,0xb2,0x2,0x9d,0x2,0x51,
0x2,0xa3,0x2,0x84,0x2,0xcf,0x2,0xec,0x2,0xeb,0x2,0xf7,0x2,0xda,0x2,0xc4,
0x2,0xa8,0x2,0x90,0x2,0x5d,0x2,0x53,0x2,0xd9,0x1,0xf6,0x1,0x39,0x1,0x8f,
0x1,0x9e,0x0,0x1a,0x1,0xee,0xff,0x7a,0x0,0x34,0xff,0xaa,0xff,0xb0,0xfe,0xcb,
0xfe,0x80,0xfe,0x50,0xfe,0x73,0xfe,0x84,0xfe,0x64,0xfe,0xda,0xfe,0x8a,0xfe,0x3,
0xff,0x83,0xfe,0xed,0xfe,0x6e,0xfd,0xc0,0xfd,0xb8,0xfb,0x9c,0xfb,0x80,0xfa,0x21,
0xfa,0xc0,0xf9,0x9f,0xf9,0x5f,0xf9,0x6f,0xf9,0xde,0xf9,0xe7,0xf9,0xee,0xfa,0x14,
0xfb,0xb2,0xfb,0xf,0xfc,0xe6,0xfb,0x44,0xfc,0x0,0xfc,0x2b,0xfc,0xad,0xfc,0xb3,
0xfc,0xd9,0xfd,0xdb,0xfd,0xda,0xfe,0xef,0xfe,0x8b,0xff,0xe1,0xff,0x37,0x0,0xc4,
0x0,0x33,0x1,0x98,0x1,0x61,0x2,0x89,0x2,0xc5,0x2,0xed,0x2,0xb,0x2,0x27,
0x2,0x60,0x1,0x37,0x1,0xa2,0x1,0x35,0x1,0xcd,0x2,0x69,0x2,0xc6,0x4,0xb4,
0x4,0xb6,0x6,0xda,0x6,0x3a,0x7,0x37,0x7,0x44,0x6,0xe9,0x5,0x2b,0x5,0x8d,
0x4,0x9d,0x4,0x18,0x4,0x27,0x4,0x1,0x4,0x91,0x3,0x88,0x3,0xf0,0x2,0xb5,
0x2,0x42,0x2,0xfa,0x1,0xd5,0x1,0x9b,0x1,0x49,0x1,0xfb,0x0,0xb0,0xff,0x5c,
0xff,0xc6,0xfd,0x91,0xfd,0xf4,0xfc,0xcf,0xfc,0xea,0xfc,0xd3,0xfc,0xf2,0xfc,0xec,
0xfc,0xe,0xfd,0xfb,0xfc,0x5c,0xfd,0x46,0xfd,0xf2,0xfd,0x4,0xfe,0x49,0xfe,0x66,
0xfe,0x7f,0xfd,0x85,0xfd,0xe6,0xfb,0x2,0xfc,0xbf,0xfa,0x9,0xfb,0xf4,0xfa,0x55,
0xfb,0x4c,0xfc,0xc8,0xfc,0x43,0xfd,0xd1,0xfd,0xc,0xfd,0x59,0xfd,0xba,0xfc,0x8f,
0xfc,0x18,0xfd,0xbb,0xfc,0xb7,0xfd,0x85,0xfd,0x5f,0xfe,0x52,0xfe,0x23,0xff,0x1c,
0xff,0xbf,0xff,0xb8,0xff,0x6,0x0,0x7,0x0,0x53,0x0,0x77,0x0,0xc1,0x0,0xec,
0x0,0xc6,0x0,0xc3,0x0,0x63,0x0,0x62,0x0,0x4d,0x0,0x62,0x0,0x59,0x0,0x4b,
0x0,0xc9,0xff,0xbe,0xff,0xf0,0xfe,0x11,0xff,0xe3,0xfe,0xf4,0xfe,0x7,0x0,0x16,
0x0,0x92,0x1,0xb9,0x1,0x35,0x2,0x41,0x2,0xd8,0x1,0xc1,0x1,0xd5,0x1,0xb6,
0x1,0xf1,0x2,0xd9,0x2,0x7c,0x4,0x85,0x4,0xbf,0x5,0xc0,0x5,0x84,0x6,0x62,
0x6,0x75,0x6,0x67,0x6,0x62,0x5,0x61,0x5,0xe5,0x3,0xb3,0x3,0xb7,0x2,0x6c,
0x2,0xf4,0x1,0xc1,0x1,0x6a,0x1,0x56,0x1,0xee,0x0,0xf7,0x0,0x51,0x0,0x73,
0x0,0xa0,0xff,0xb3,0xff,0x1c,0xff,0xf6,0xfe,0x91,0xfe,0x4f,0xfe,0x74,0xfd,0x59,
0xfd,0x3,0xfc,0x19,0xfc,0x25,0xfb,0x5b,0xfb,0x5e,0xfb,0x8d,0xfb,0x55,0xfc,0x5c,
0xfc,0xed,0xfc,0xf8,0xfc,0xa6,0xfc,0xbf,0xfc,0x9c,0xfc,0x88,0xfc,0x76,0xfd,0x63,
0xfd,0x54,0xfe,0x99,0xfe,0xe2,0xfe,0x53,0xff,0x8f,0xff,0xdd,0xff,0x2b,0x0,0x47,
0x0,0x4d,0x0,0x5b,0x0,0xa,0x0,0x17,0x0,0xe6,0xff,0xc3,0xff,0x50,0x0,0xe,
0x0,0xa,0x1,0xf7,0x0,0xd1,0x1,0xe4,0x1,0x9a,0x2,0xaf,0x2,0xe5,0x2,0xfa,
0x2,0xb5,0x2,0xb4,0x2,0xc0,0x2,0x8c,0x2,0xd7,0x2,0x48,0x2,0x65,0x2,0x83,
0x1,0x91,0x1,0xe3,0x0,0xd8,0x0,0x95,0x0,0xa3,0x0,0x73,0x0,0x88,0x0,0x66,
0x0,0xad,0xff,0xb7,0xff,0x73,0xfe,0x78,0xfe,0xb6,0xfd,0xae,0xfd,0xa6,0xfd,0xb4,
0xfd,0x8b,0xfe,0xae,0xfe,0x0,0x0,0x41,0x0,0x5e,0x0,0xca,0x0,0xde,0xfe,0x5c,
0xff,0xae,0xfc,0xf,0xfd,0x8c,0xfb,0xc2,0xfb,0x1,0xfc,0x2d,0xfc,0xa,0xfd,0x31,
0xfd,0xe5,0xfd,0xf2,0xfd,0x9c,0xfe,0xbb,0xfe,0xc5,0xfe,0x12,0xff,0x40,0xfe,0x79,
0xfe,0x13,0xfe,0x17,0xfe,0xd5,0xfe,0xc6,0xfe,0x30,0x0,0x20,0x0,0xe4,0x1,0xe9,
0x1,0x84,0x3,0xb8,0x3,0x5b,0x4,0xb2,0x4,0x6e,0x4,0xce,0x4,0x6d,0x4,0xc1,
0x4,0xa2,0x4,0xd8,0x4,0xea,0x4,0x11,0x5,0xf0,0x4,0x11,0x5,0x2,0x4,0x8,
0x4,0x34,0x2,0x3d,0x2,0xf6,0x0,0x3d,0x1,0xc9,0x0,0x2a,0x1,0xaa,0x0,0xd6,
0x0,0x8a,0x0,0x7d,0x0,0x35,0x1,0x1d,0x1,0x48,0x2,0x4b,0x2,0x9f,0x2,0xb5,
0x2,0xec,0x1,0xed,0x1,0x1d,0x1,0xb,0x1,0xdb,0x0,0xca,0x0,0x65,0x0,0x3b,
0x0,0x53,0xff,0x6,0xff,0x53,0xfe,0x11,0xfe,0x8b,0xfd,0x81,0xfd,0x16,0xfd,0x3b,
0xfd,0x2a,0xfd,0x36,0xfd,0xaa,0xfc,0x61,0xfc,0x9,0xfb,0x9f,0xfa,0xec,0xf9,0xa4,
0xf9,0x46,0xfa,0x12,0xfa,0x22,0xfb,0xf2,0xfa,0x7b,0xfb,0x5c,0xfb,0x25,0xfb,0x7,
0xfb,0xa4,0xfa,0x68,0xfa,0x33,0xfa,0xe9,0xf9,0xcb,0xf9,0x8e,0xf9,0x57,0xfa,0x1b,
0xfa,0x69,0xfc,0x22,0xfc,0x9e,0xfe,0x83,0xfe,0x99,0xff,0xd0,0xff,0x9e,0xff,0xca,
0xff,0xdb,0xff,0xa6,0xff,0x3d,0x1,0x0,0x1,0x3a,0x3,0x65,0x3,0xad,0x4,0x1,
0x5,0xe2,0x5,0xf9,0x5,0xa1,0x7,0x7d,0x7,0x36,0x9,0xd,0x9,0x84,0x9,0x88,
0x9,0x33,0x9,0x5f,0x9,0xe3,0x9,0xff,0x9,0x16,0xb,0x16,0xb,0x9f,0xa,0x96,
0xa,0x80,0x8,0x78,0x8,0xd5,0x6,0xfa,0x6,0x70,0x6,0xc1,0x6,0x2f,0x6,0x6a,
0x6,0xa5,0x4,0xd3,0x4,0xc3,0x1,0xe6,0x1,0xb8,0xfe,0x9e,0xfe,0x2e,0xfc,0xf7,
0xfb,0x6d,0xfa,0x36,0xfa,0xe2,0xf9,0x8e,0xf9,0xb9,0xf9,0x72,0xf9,0xd8,0xf8,0xc9,
0xf8,0xd9,0xf7,0xd2,0xf7,0xe4,0xf6,0xd6,0xf6,0x25,0xf5,0x2a,0xf5,0xa2,0xf3,0xb1,
0xf3,0xdf,0xf3,0xd1,0xf3,0x0,0xf5,0xcb,0xf4,0x4,0xf6,0xe3,0xf5,0xaf,0xf7,0xc9,
0xf7,0x43,0xfa,0x70,0xfa,0xb5,0xfc,0xc9,0xfc,0x7a,0xfe,0x50,0xfe,0xd6,0xff,0x7a,
0xff,0x51,0x1,0xe,0x1,0x54,0x3,0x40,0x3,0x94,0x5,0x9b,0x5,0x85,0x7,0x9e,
0x7,0x21,0x9,0x1c,0x9,0x81,0xa,0x5a,0xa,0xb4,0xb,0x97,0xb,0xa3,0xc,0x79,
0xc,0xb8,0xc,0x76,0xc,0xa2,0xb,0x5f,0xb,0xd5,0x9,0x9e,0x9,0x0,0x8,0xf9,
0x7,0x82,0x6,0x96,0x6,0x27,0x5,0x1b,0x5,0xee,0x3,0xe0,0x3,0x43,0x3,0x3c,
0x3,0x7f,0x2,0x60,0x2,0x99,0x0,0x79,0x0,0xd,0xfe,0xf7,0xfd,0xdf,0xfb,0xe0,
0xfb,0x50,0xfa,0x95,0xfa,0xf5,0xf8,0x81,0xf9,0x3d,0xf7,0xef,0xf7,0xa6,0xf5,0x18,
0xf6,0x32,0xf5,0x15,0xf5,0xe1,0xf5,0xad,0xf5,0x2d,0xf7,0x2d,0xf7,0x37,0xf8,0x1e,
0xf8,0x60,0xf8,0x4d,0xf8,0xb0,0xf8,0xcf,0xf8,0xa5,0xf9,0xb6,0xf9,0x1b,0xfa,0x2e,
0xfa,0x67,0xfa,0xae,0xfa,0xc2,0xfb,0x16,0xfc,0xaf,0xfd,0xe7,0xfd,0x8b,0xff,0x95,
0xff,0x7f,0x1,0x6e,0x1,0x53,0x3,0x3c,0x3,0x96,0x4,0x65,0x4,0x3c,0x5,0xf3,
0x4,0x64,0x5,0xf,0x5,0xed,0x4,0xa0,0x4,0x15,0x4,0xfb,0x3,0x24,0x4,0x13,
0x4,0xb3,0x5,0x88,0x5,0x9f,0x7,0x8c,0x7,0x95,0x8,0x82,0x8,0xf1,0x7,0xd4,
0x7,0x3f,0x6,0x67,0x6,0xd,0x5,0x73,0x5,0xd7,0x4,0x61,0x5,0xeb,0x4,0xab,
0x5,0xb4,0x4,0x8d,0x5,0xcc,0x3,0xb5,0x4,0xc4,0x2,0xad,0x3,0x4e,0x2,0xf6,
0x2,0x33,0x1,0xbe,0x1,0xc1,0xfe,0x66,0xff,0xaa,0xfc,0x27,0xfd,0xf6,0xfb,0x3,
0xfc,0xb4,0xfb,0x54,0xfb,0xcf,0xfa,0x55,0xfa,0x3d,0xf9,0xee,0xf8,0xaf,0xf7,0x72,
0xf7,0x72,0xf6,0x40,0xf6,0xa5,0xf5,0x80,0xf5,0xd0,0xf5,0x84,0xf5,0xa5,0xf6,0x3c,
0xf6,0x3d,0xf7,0xd6,0xf6,0xba,0xf7,0x4b,0xf7,0x4e,0xf8,0xfc,0xf7,0xae,0xf8,0x8a,
0xf8,0x62,0xf9,0x33,0xf9,0xef,0xfa,0xa1,0xfa,0xae,0xfc,0x62,0xfc,0x48,0xfe,0x20,
0xfe,0x50,0x0,0x47,0x0,0xbe,0x2,0xb0,0x2,0xa8,0x4,0x9c,0x4,0xd4,0x5,0xcc,
0x5,0x14,0x7,0xf6,0x6,0xbc,0x8,0xa3,0x8,0xf8,0x9,0x8,0xa,0x74,0xa,0xb0,
0xa,0x1f,0xb,0x5e,0xb,0x43,0xc,0x38,0xc,0xd8,0xc,0xa2,0xc,0x7e,0xc,0x6e,
0xc,0x97,0xb,0x8b,0xb,0xf8,0x9,0xe8,0x9,0xb1,0x7,0xb8,0x7,0x70,0x5,0x5a,
0x5,0x8c,0x3,0x66,0x3,0x53,0x2,0x3d,0x2,0xe2,0x1,0xb0,0x1,0x5a,0x1,0x29,
0x1,0xe7,0xff,0xcd,0xff,0x8a,0xfd,0x56,0xfd,0x8,0xfb,0xdb,0xfa,0x9b,0xf9,0x8c,
0xf9,0x28,0xf9,0x14,0xf9,0x43,0xf8,0x4b,0xf8,0xfd,0xf6,0x1e,0xf7,0x45,0xf6,0x49,
0xf6,0xac,0xf5,0xb4,0xf5,0xdf,0xf4,0x9,0xf5,0xce,0xf4,0xf9,0xf4,0x1,0xf6,0x14,
0xf6,0xcb,0xf7,0xd9,0xf7,0x54,0xf9,0x7f,0xf9,0xd1,0xfa,0xb,0xfb,0x26,0xfd,0x49,
0xfd,0x18,0x0,0x34,0x0,0x59,0x2,0x73,0x2,0x2e,0x3,0x2c,0x3,0xdb,0x2,0xd9,
0x2,0x66,0x2,0x7e,0x2,0xf9,0x2,0x1a,0x3,0xbb,0x4,0xec,0x4,0xe5,0x6,0x1e,
0x7,0x7f,0x8,0x9b,0x8,0xc1,0x8,0xbf,0x8,0xbb,0x7,0xb3,0x7,0x4f,0x6,0x49,
0x6,0x53,0x5,0x3e,0x5,0x36,0x5,0xf4,0x4,0xcf,0x5,0x7f,0x5,0x8c,0x6,0x75,
0x6,0xd6,0x6,0xd8,0x6,0xfb,0x5,0xd0,0x5,0xf6,0x3,0xbc,0x3,0xae,0x1,0x76,
0x1,0x5a,0xff,0x11,0xff,0x6,0xfd,0xcf,0xfc,0x9c,0xfb,0x78,0xfb,0x19,0xfb,0xfc,
0xfa,0xd3,0xfa,0xe8,0xfa,0xfe,0xfa,0x26,0xfb,0x28,0xfb,0x2f,0xfb,0x71,0xfa,0x86,
0xfa,0x7c,0xf9,0x9c,0xf9,0x1c,0xf9,0x2a,0xf9,0x4e,0xf9,0x65,0xf9,0x16,0xfa,0x35,
0xfa,0x31,0xfb,0x6b,0xfb,0xfa,0xfb,0x72,0xfc,0x6,0xfc,0x9e,0xfc,0x8d,0xfb,0x40,
0xfc,0x93,0xfb,0x66,0xfc,0xaf,0xfc,0x6e,0xfd,0x17,0xfe,0xd0,0xfe,0x30,0xff,0xf7,
0xff,0x4f,0x0,0xe4,0x0,0x51,0x1,0xd0,0x1,0xa2,0x1,0x3f,0x2,0x72,0x1,0x1,
0x2,0x91,0x1,0xf2,0x1,0x6a,0x2,0x8d,0x2,0xc7,0x3,0x91,0x3,0xe6,0x4,0x75,
0x4,0xce,0x4,0x5f,0x4,0xdd,0x3,0x98,0x3,0x8a,0x3,0x68,0x3,0xb,0x4,0xde,
0x3,0x97,0x4,0x42,0x4,0xfb,0x4,0x78,0x4,0x3c,0x5,0xa9,0x4,0x5d,0x5,0xf8,
0x4,0x1f,0x5,0xf2,0x4,0xf3,0x3,0xe2,0x3,0x64,0x2,0x4b,0x2,0x76,0x1,0x1f,
0x1,0x3,0x1,0x7b,0x0,0xbf,0x0,0x50,0x0,0x38,0x0,0xf9,0xff,0xa6,0xfe,0x84,
0xfe,0xcf,0xfc,0xa9,0xfc,0x16,0xfc,0xf4,0xfb,0x3e,0xfc,0x4a,0xfc,0x6a,0xfc,0x83,
0xfc,0x2b,0xfc,0x3f,0xfc,0x7a,0xfb,0xb3,0xfb,0xae,0xfa,0xc5,0xfa,0x9,0xfa,0xc3,
0xf9,0xee,0xf9,0xa0,0xf9,0x98,0xfa,0x75,0xfa,0x7e,0xfb,0x6b,0xfb,0x4f,0xfc,0x24,
0xfc,0xcf,0xfc,0x7e,0xfc,0x8a,0xfc,0x58,0xfc,0x4e,0xfc,0x51,0xfc,0x24,0xfd,0x1d,
0xfd,0x95,0xfe,0x96,0xfe,0x1f,0x0,0x3a,0x0,0x9a,0x1,0xb8,0x1,0xe1,0x2,0x23,
0x3,0x5e,0x4,0xad,0x4,0xbb,0x5,0xcc,0x5,0x3,0x6,0x1,0x6,0xef,0x5,0x11,
0x6,0x61,0x6,0xb2,0x6,0xbb,0x6,0x49,0x7,0xb5,0x6,0x4a,0x7,0x75,0x6,0xeb,
0x6,0xb6,0x5,0x34,0x6,0x7,0x5,0x7e,0x5,0x6a,0x5,0xab,0x5,0x4d,0x6,0x63,
0x6,0x16,0x6,0x10,0x6,0x1d,0x4,0x3,0x4,0x1b,0x1,0x0,0x1,0x65,0xfe,0x54,
0xfe,0xfa,0xfc,0xcc,0xfc,0x96,0xfc,0x14,0xfc,0x28,0xfc,0x81,0xfb,0x75,0xfb,0xfe,
0xfa,0xa,0xfb,0x87,0xfa,0xb9,0xfa,0xe2,0xf9,0xed,0xf9,0x1a,0xf9,0x2e,0xf9,0xbe,
0xf8,0x8f,0xf9,0x64,0xf9,0xed,0xfa,0xd1,0xfa,0x31,0xfc,0x2a,0xfc,0xdb,0xfc,0xf6,
0xfc,0x1e,0xfd,0x4e,0xfd,0x56,0xfd,0x90,0xfd,0xf7,0xfd,0x39,0xfe,0x4,0xff,0x4d,
0xff,0x35,0x0,0x7a,0x0,0xa3,0x1,0xef,0x1,0x26,0x3,0xaf,0x3,0x2,0x4,0xae,
0x4,0xd2,0x3,0x27,0x4,0x22,0x3,0x2d,0x3,0x3c,0x3,0x6d,0x3,0xcc,0x4,0x7,
0x5,0x8f,0x6,0xa0,0x6,0xfb,0x6,0x4,0x7,0x42,0x6,0x28,0x6,0x36,0x5,0xea,
0x4,0x13,0x4,0xd5,0x3,0x1e,0x3,0xe9,0x2,0x96,0x2,0x4d,0x2,0x23,0x2,0xe8,
0x1,0x33,0x1,0x3,0x1,0x87,0xff,0x4e,0xff,0x49,0xfd,0x2e,0xfd,0x47,0xfb,0x52,
0xfb,0x63,0xfa,0x71,0xfa,0x5b,0xfa,0x5f,0xfa,0x73,0xfa,0x46,0xfa,0x72,0xfa,0xb,
0xfa,0xa,0xfa,0xda,0xf9,0x48,0xf9,0x8c,0xf9,0x26,0xf9,0x73,0xf9,0xd2,0xf9,0xe6,
0xf9,0x5d,0xfa,0x72,0xfa,0x9a,0xfa,0xcf,0xfa,0x1e,0xfb,0x60,0xfb,0x3e,0xfc,0x82,
0xfc,0xe2,0xfd,0x27,0xfe,0xa0,0xff,0xf0,0xff,0x13,0x1,0x6f,0x1,0xfd,0x1,0x54,
0x2,0x5e,0x2,0xa3,0x2,0xc8,0x2,0xdd,0x2,0x9f,0x3,0x93,0x3,0x8c,0x4,0xb6,
0x4,0x8c,0x5,0xf7,0x5,0xff,0x6,0x59,0x7,0x5b,0x8,0x98,0x8,0x4b,0x8,0x8f,
0x8,0x6c,0x6,0x9a,0x6,0x1a,0x4,0x8,0x4,0xd3,0x2,0x9c,0x2,0x9c,0x2,0x92,
0x2,0xb5,0x2,0xe5,0x2,0x67,0x2,0x87,0x2,0x51,0x1,0x46,0x1,0xf,0x0,0xf4,
0xff,0x30,0xff,0xb,0xff,0x43,0xfe,0x29,0xfe,0x2f,0xfd,0x29,0xfd,0x4f,0xfc,0x5d,
0xfc,0x7d,0xfb,0xd5,0xfb,0xe3,0xfa,0x6b,0xfb,0xed,0xfa,0x19,0xfb,0x37,0xfb,0x17,
0xfb,0x84,0xfb,0x6b,0xfb,0x14,0xfc,0xd3,0xfb,0xb7,0xfc,0x57,0xfc,0xd,0xfd,0xcc,
0xfc,0xc7,0xfc,0x7c,0xfc,0x12,0xfc,0xbb,0xfb,0x33,0xfc,0xd7,0xfb,0xbd,0xfd,0x20,
0xfd,0x97,0xff,0xb,0xff,0x3d,0x1,0x12,0x1,0xfa,0x2,0xb1,0x2,0x4c,0x4,0xbb,
0x3,0x95,0x4,0x23,0x4,0x28,0x4,0xce,0x3,0xe0,0x3,0x7d,0x3,0x5d,0x4,0xe,
0x4,0x46,0x5,0x24,0x5,0xe0,0x5,0xee,0x5,0xe7,0x5,0xf3,0x5,0x1c,0x5,0xfd,
0x4,0xbe,0x3,0xac,0x3,0xe0,0x2,0xe1,0x2,0xc4,0x2,0xca,0x2,0xfc,0x2,0x53,
0x3,0x85,0x3,0x3a,0x4,0xeb,0x3,0xa0,0x4,0x34,0x3,0xbe,0x3,0x2e,0x1,0x97,
0x1,0xc8,0xfe,0xe,0xff,0x30,0xfd,0x5f,0xfd,0x95,0xfc,0xc6,0xfc,0x48,0xfc,0x7a,
0xfc,0x2,0xfc,0x1b,0xfc,0xbb,0xfb,0xc6,0xfb,0x1c,0xfb,0x3e,0xfb,0x26,0xfa,0x35,
0xfa,0x67,0xf9,0x13,0xf9,0x64,0xf9,0xb8,0xf8,0x5,0xfa,0x5b,0xf9,0xcd,0xfa,0x5f,
0xfa,0xcb,0xfb,0x6f,0xfb,0x35,0xfd,0xba,0xfc,0x82,0xfe,0xd,0xfe,0x37,0xff,0xe4,
0xfe,0x9f,0xff,0x5c,0xff,0x54,0x0,0x2b,0x0,0x8b,0x1,0x9d,0x1,0xc1,0x2,0x17,
0x3,0xa9,0x3,0x8,0x4,0x6d,0x4,0x81,0x4,0xb6,0x4,0x95,0x4,0x6b,0x4,0x5d,
0x4,0x3f,0x4,0x4d,0x4,0x63,0x4,0x8b,0x4,0x69,0x4,0xc2,0x4,0x4d,0x4,0xd9,
0x4,0x54,0x4,0xec,0x4,0x82,0x4,0xe2,0x4,0x38,0x4,0x6f,0x4,0xa,0x3,0x5f,
0x3,0xa0,0x1,0xf0,0x1,0x81,0x0,0xa0,0x0,0x7c,0xff,0xb3,0xff,0xa8,0xfe,0x19,
0xff,0x2e,0xfe,0x8e,0xfe,0xb8,0xfd,0xd2,0xfd,0xe,0xfd,0x6,0xfd,0x62,0xfc,0x62,
0xfc,0xd3,0xfb,0xb7,0xfb,0xa,0xfb,0xc7,0xfa,0xfd,0xf9,0xcf,0xf9,0x5f,0xf9,0x3f,
0xf9,0x77,0xf9,0x40,0xf9,0xc,0xfa,0xcf,0xf9,0x53,0xfb,0xc,0xfb,0x2d,0xfd,0xe4,
0xfc,0x9b,0xfe,0x6d,0xfe,0xca,0xfe,0xaf,0xfe,0x7,0xfe,0xc,0xfe,0xa0,0xfd,0xc4,
0xfd,0x7d,0xfe,0x88,0xfe,0x5a,0x0,0x4f,0x0,0xaf,0x2,0x9e,0x2,0xf7,0x4,0xcf,
0x4,0x77,0x6,0x6c,0x6,0xe0,0x6,0xf,0x7,0x73,0x6,0xa0,0x6,0xa6,0x5,0xa3,
0x5,0xe7,0x4,0xac,0x4,0x70,0x4,0x35,0x4,0x72,0x4,0x85,0x4,0xce,0x4,0x10,
0x5,0xf6,0x4,0x40,0x5,0xa4,0x4,0xe,0x5,0xaf,0x3,0x6,0x4,0x8,0x2,0x1b,
0x2,0x5e,0x0,0x5b,0x0,0x25,0xff,0x2e,0xff,0x36,0xfe,0x50,0xfe,0xb4,0xfd,0xc9,
0xfd,0x78,0xfd,0x51,0xfd,0x17,0xfd,0xc5,0xfc,0x85,0xfc,0x42,0xfc,0x7a,0xfb,0x52,
0xfb,0x1,0xfa,0xd,0xfa,0x1c,0xf9,0x66,0xf9,0x3c,0xf9,0x7e,0xf9,0xbe,0xf9,0xd7,
0xf9,0xf0,0xf9,0x12,0xfa,0xcd,0xf9,0xb,0xfa,0xf,0xfa,0x51,0xfa,0x9,0xfb,0x3b,
0xfb,0x30,0xfc,0x55,0xfc,0x44,0xfd,0x6c,0xfd,0x76,0xfe,0x94,0xfe,0xca,0xff,0xc7,
0xff,0x18,0x1,0xf,0x1,0x22,0x2,0x2c,0x2,0xf3,0x2,0xf7,0x2,0xc0,0x3,0xb6,
0x3,0x80,0x4,0x75,0x4,0x3c,0x5,0x30,0x5,0x1,0x6,0xf9,0x5,0xaa,0x6,0xa6,
0x6,0x41,0x7,0x1c,0x7,0x8e,0x7,0x30,0x7,0xed,0x6,0x87,0x6,0x66,0x5,0x3e,
0x5,0xee,0x3,0xe6,0x3,0xa3,0x3,0x6b,0x3,0x91,0x4,0x25,0x4,0x24,0x5,0xb7,
0x4,0x54,0x4,0xd,0x4,0xeb,0x2,0xdb,0x2,0x8a,0x1,0x7b,0x1,0xe6,0xff,0x94,
0xff,0x2c,0xfe,0xbb,0xfd,0x2c,0xfd,0xde,0xfc,0x45,0xfd,0x23,0xfd,0x96,0xfd,0x83,
0xfd,0xe2,0xfc,0xcd,0xfc,0x54,0xfb,0x57,0xfb,0x2f,0xfa,0x47,0xfa,0x20,0xfa,0x1f,
0xfa,0xdf,0xfa,0xe1,0xfa,0xbd,0xfb,0xf0,0xfb,0xc,0xfc,0x5b,0xfc,0x92,0xfb,0x6,
0xfc,0xef,0xfa,0x8b,0xfb,0x1e,0xfb,0xae,0xfb,0x2c,0xfc,0xad,0xfc,0x36,0xfd,0xa3,
0xfd,0xd9,0xfd,0x17,0xfe,0x64,0xfe,0x91,0xfe,0xef,0xfe,0x6,0xff,0x71,0xff,0x56,
0xff,0x11,0x0,0x6,0x0,0xe5,0x0,0x21,0x1,0x1e,0x2,0x7a,0x2,0xd1,0x3,0x11,
0x4,0x2f,0x5,0x36,0x5,0x4d,0x5,0x41,0x5,0xb6,0x4,0xb9,0x4,0x7e,0x4,0x60,
0x4,0x63,0x4,0xb,0x4,0xc0,0x3,0x5f,0x3,0x18,0x3,0xd9,0x2,0x2d,0x3,0xfd,
0x2,0xa3,0x3,0x46,0x3,0xa1,0x3,0x22,0x3,0x14,0x3,0xcb,0x2,0x68,0x2,0x61,
0x2,0x9e,0x1,0xa4,0x1,0x94,0x0,0x99,0x0,0x86,0xff,0xaa,0xff,0xc6,0xfe,0x19,
0xff,0x62,0xfe,0xad,0xfe,0x2,0xfe,0x8,0xfe,0xa,0xfd,0xf4,0xfc,0x5f,0xfb,0x53,
0xfb,0xc5,0xf9,0xc2,0xf9,0x13,0xf9,0x47,0xf9,0x4b,0xf9,0x94,0xf9,0x8b,0xf9,0x99,
0xf9,0x44,0xf9,0x55,0xf9,0xec,0xf8,0x49,0xf9,0x37,0xf9,0xa1,0xf9,0x4f,0xfa,0x82,
0xfa,0xe1,0xfb,0xcc,0xfb,0x5c,0xfd,0x2a,0xfd,0x95,0xfe,0x7c,0xfe,0xc7,0xff,0x9e,
0xff,0xd9,0x0,0x9d,0x0,0xaa,0x1,0xbd,0x1,0x95,0x2,0xe1,0x2,0xcb,0x3,0xdf,
0x3,0xd6,0x4,0xcd,0x4,0x5b,0x5,0x79,0x5,0xa8,0x5,0xd5,0x5,0xd,0x6,0x31,
0x6,0x70,0x6,0x83,0x6,0xbd,0x6,0xaa,0x6,0xd7,0x6,0xc1,0x6,0x84,0x6,0x8e,
0x6,0xfb,0x5,0xe4,0x5,0x7f,0x5,0x2b,0x5,0xde,0x4,0x9b,0x4,0xf8,0x3,0xf4,
0x3,0xeb,0x2,0x12,0x3,0xc4,0x1,0xfd,0x1,0x83,0x0,0x8d,0x0,0x2,0xff,0xb7,
0xfe,0x86,0xfd,0x2c,0xfd,0x96,0xfc,0x6a,0xfc,0xc3,0xfb,0xbe,0xfb,0x7c,0xfa,0x98,
0xfa,0x51,0xf9,0x81,0xf9,0xb7,0xf8,0xcd,0xf8,0x89,0xf8,0x73,0xf8,0xef,0xf8,0xc4,
0xf8,0xc7,0xf9,0xa2,0xf9,0x54,0xfa,0x3b,0xfa,0x32,0xfa,0x23,0xfa,0xca,0xf9,0xc8,
0xf9,0x27,0xfa,0x2e,0xfa,0xdc,0xfb,0xc8,0xfb,0x16,0xfe,0xcb,0xfd,0xe4,0xff,0x84,
0xff,0x24,0x1,0xe3,0x0,0xaa,0x1,0x80,0x1,0xa0,0x1,0x72,0x1,0x7,0x2,0xeb,
0x1,0x63,0x3,0x62,0x3,0x45,0x5,0x44,0x5,0x18,0x7,0x24,0x7,0x63,0x8,0x8a,
0x8,0xe2,0x8,0x1,0x9,0x7a,0x8,0x90,0x8,0x31,0x7,0x5b,0x7,0xd5,0x5,0x3,
0x6,0x7f,0x5,0x9f,0x5,0x16,0x6,0x28,0x6,0x90,0x6,0x87,0x6,0xf4,0x5,0xea,
0x5,0xec,0x3,0x15,0x4,0x75,0x1,0xbd,0x1,0xc3,0xff,0xe4,0xff,0x7e,0xfe,0x77,
0xfe,0x13,0xfd,0x44,0xfd,0x39,0xfc,0xc7,0xfc,0x32,0xfc,0xb4,0xfc,0xcf,0xfb,0x3,
0xfc,0x4f,0xfa,0x81,0xfa,0xa0,0xf8,0xe0,0xf8,0x2,0xf8,0xb,0xf8,0x87,0xf8,0x65,
0xf8,0x97,0xf9,0x77,0xf9,0xcc,0xfa,0xa2,0xfa,0xa0,0xfb,0x6f,0xfb,0xa4,0xfb,0x95,
0xfb,0x62,0xfb,0x70,0xfb,0xd5,0xfb,0xd6,0xfb,0x30,0xfd,0x12,0xfd,0xdb,0xfe,0xc0,
0xfe,0x6f,0x0,0x70,0x0,0xf4,0x1,0xef,0x1,0x44,0x3,0x25,0x3,0x23,0x4,0x1f,
0x4,0xce,0x4,0xfa,0x4,0x7e,0x5,0x9c,0x5,0xe1,0x5,0xd2,0x5,0xb9,0x5,0x8d,
0x5,0x58,0x5,0x9,0x5,0xc,0x5,0xb9,0x4,0xbd,0x4,0x98,0x4,0x6a,0x4,0x58,
0x4,0x45,0x4,0x38,0x4,0x35,0x4,0x4f,0x4,0xf5,0x3,0x1a,0x4,0x5b,0x3,0x4d,
0x3,0x35,0x2,0xee,0x1,0xb8,0x0,0x5e,0x0,0x6b,0xff,0x49,0xff,0x6e,0xfe,0x8f,
0xfe,0xa3,0xfd,0xb3,0xfd,0xf0,0xfc,0xd5,0xfc,0x19,0xfc,0xe9,0xfb,0x15,0xfb,0xd0,
0xfa,0x2d,0xfa,0xf5,0xf9,0xa4,0xf9,0x82,0xf9,0xa1,0xf9,0x67,0xf9,0x2,0xfa,0xcd,
0xf9,0x89,0xfa,0x72,0xfa,0x16,0xfb,0xee,0xfa,0x9e,0xfb,0x73,0xfb,0x4b,0xfc,0x50,
0xfc,0x19,0xfd,0x45,0xfd,0x9a,0xfd,0xd5,0xfd,0xf5,0xfd,0x30,0xfe,0xbf,0xfe,0xf5,
0xfe,0xef,0xff,0x2c,0x0,0x70,0x1,0xbd,0x1,0x30,0x3,0x88,0x3,0x72,0x4,0xc0,
0x4,0xdd,0x4,0xf,0x5,0x26,0x5,0x45,0x5,0xf6,0x5,0xf7,0x5,0xfd,0x6,0xd5,
0x6,0x2d,0x7,0x17,0x7,0x16,0x6,0x3a,0x6,0x8c,0x4,0xcb,0x4,0x6d,0x3,0xac,
0x3,0xd9,0x2,0x19,0x3,0x90,0x2,0xcd,0x2,0x4b,0x2,0x6d,0x2,0xfc,0x1,0xf0,
0x1,0x5b,0x1,0x41,0x1,0x5,0x0,0xfd,0xff,0x99,0xfe,0x91,0xfe,0xdb,0xfd,0xd0,
0xfd,0x5a,0xfd,0x4e,0xfd,0x76,0xfc,0x52,0xfc,0x61,0xfb,0x35,0xfb,0x83,0xfa,0x69,
0xfa,0xf0,0xf9,0xcd,0xf9,0x9d,0xf9,0x5e,0xf9,0xa5,0xf9,0x6e,0xf9,0xea,0xf9,0xce,
0xf9,0x1a,0xfa,0xfe,0xf9,0x8b,0xfa,0x5c,0xfa,0xdc,0xfb,0xa0,0xfb,0xf8,0xfd,0xbe,
0xfd,0xed,0xff,0xcc,0xff,0x92,0x0,0x72,0x0,0x27,0x0,0xcb,0xff,0x40,0x0,0xc3,
0xff,0x2c,0x1,0xed,0x0,0x24,0x2,0x2f,0x2,0x3,0x3,0x21,0x3,0x98,0x3,0xb3,
0x3,0xde,0x3,0xe0,0x3,0x66,0x4,0x3c,0x4,0xd0,0x4,0xb3,0x4,0xa3,0x4,0xd6,
0x4,0xa3,0x4,0x4,0x5,0xa,0x5,0x6e,0x5,0x1f,0x5,0xa1,0x5,0x93,0x4,0x32,
0x5,0x9d,0x3,0x1b,0x4,0xcc,0x2,0x12,0x3,0x80,0x2,0xb8,0x2,0x4c,0x2,0x9e,
0x2,0xb5,0x1,0x15,0x2,0xb5,0x0,0xf9,0x0,0x78,0xff,0x98,0xff,0x47,0xfe,0x54,
0xfe,0x33,0xfd,0x33,0xfd,0x48,0xfc,0x44,0xfc,0xdc,0xfb,0xd8,0xfb,0xf7,0xfb,0xe6,
0xfb,0x31,0xfc,0x17,0xfc,0x3e,0xfc,0x2c,0xfc,0xa,0xfc,0x12,0xfc,0xb7,0xfb,0xd5,
0xfb,0x88,0xfb,0x90,0xfb,0xac,0xfb,0x90,0xfb,0x45,0xfc,0x23,0xfc,0x44,0xfd,0xd,
0xfd,0x52,0xfe,0x9,0xfe,0x3e,0xff,0x22,0xff,0x45,0x0,0x57,0x0,0x8d,0x1,0x93,
0x1,0x98,0x2,0x7a,0x2,0xeb,0x2,0xb1,0x2,0xde,0x2,0xa7,0x2,0xf7,0x2,0xe7,
0x2,0x51,0x3,0x6c,0x3,0xe2,0x3,0x16,0x4,0x70,0x4,0x8d,0x4,0x9f,0x4,0x99,
0x4,0x45,0x4,0x5c,0x4,0x83,0x3,0xac,0x3,0x94,0x2,0x78,0x2,0x58,0x1,0x1b,
0x1,0xeb,0xff,0xcc,0xff,0x15,0xff,0xf0,0xfe,0xc3,0xfe,0x99,0xfe,0x9,0xfe,0x8,
0xfe,0x35,0xfd,0x3c,0xfd,0x3,0xfd,0xdf,0xfc,0x17,0xfd,0xe0,0xfc,0xfa,0xfc,0xd7,
0xfc,0x97,0xfc,0x87,0xfc,0x19,0xfc,0x3,0xfc,0x1c,0xfc,0xe6,0xfb,0xc0,0xfc,0x72,
0xfc,0xa5,0xfd,0x68,0xfd,0xa1,0xfe,0x92,0xfe,0x35,0xff,0x46,0xff,0xfb,0xfe,0x1c,
0xff,0xa2,0xfe,0xdc,0xfe,0xec,0xfe,0x3d,0xff,0xc7,0xff,0x19,0x0,0xbe,0x0,0xfb,
0x0,0x5c,0x1,0x7d,0x1,0xa3,0x1,0xb4,0x1,0xec,0x1,0xf5,0x1,0x19,0x2,0x27,
0x2,0xe7,0x1,0x16,0x2,0xb7,0x1,0xf1,0x1,0xf3,0x1,0x2,0x2,0x54,0x2,0x44,
0x2,0x72,0x2,0x67,0x2,0x58,0x2,0x4b,0x2,0x1d,0x2,0x25,0x2,0xdc,0x1,0x11,
0x2,0xbd,0x1,0xf1,0x1,0x88,0x1,0x8f,0x1,0xf,0x1,0x7,0x1,0xbe,0x0,0xc9,
0x0,0xcd,0x0,0xe9,0x0,0xe4,0x0,0xff,0x0,0xab,0x0,0xab,0x0,0xe,0x0,0xed,
0xff,0x78,0xff,0x4d,0xff,0x5a,0xff,0x3b,0xff,0x44,0xff,0x3b,0xff,0xe7,0xfe,0xde,
0xfe,0xb8,0xfe,0x8b,0xfe,0xc8,0xfe,0x91,0xfe,0xcd,0xfe,0xb7,0xfe,0xa6,0xfe,0xa2,
0xfe,0x11,0xfe,0x1d,0xfe,0x5a,0xfd,0x82,0xfd,0x54,0xfd,0x78,0xfd,0xc1,0xfd,0xe5,
0xfd,0xd6,0xfd,0x7,0xfe,0xa5,0xfd,0xb6,0xfd,0x66,0xfd,0x63,0xfd,0x32,0xfd,0x50,
0xfd,0x54,0xfd,0x7c,0xfd,0xa1,0xfd,0xc3,0xfd,0xed,0xfd,0x9,0xfe,0xad,0xfe,0xa4,
0xfe,0xb3,0xff,0x9b,0xff,0x1b,0x0,0x20,0x0,0xf1,0xff,0x1,0x0,0xfb,0xff,0x16,
0x0,0xa9,0x0,0xbd,0x0,0xcc,0x1,0xa7,0x1,0xaf,0x2,0x81,0x2,0x15,0x3,0x9,
0x3,0x9d,0x3,0x77,0x3,0x58,0x4,0x18,0x4,0x98,0x4,0x81,0x4,0x69,0x4,0x6d,
0x4,0x63,0x4,0x52,0x4,0x7b,0x4,0x5e,0x4,0x38,0x4,0x28,0x4,0x7a,0x3,0x5f,
0x3,0x96,0x2,0x4f,0x2,0xf6,0x1,0x91,0x1,0x8f,0x1,0x3c,0x1,0x10,0x1,0xe5,
0x0,0x65,0x0,0x52,0x0,0x9c,0xff,0x83,0xff,0xeb,0xfe,0xe3,0xfe,0xb2,0xfe,0xec,
0xfe,0x9e,0xfe,0x7,0xff,0xcf,0xfd,0x30,0xfe,0x68,0xfc,0xb5,0xfc,0x63,0xfb,0x96,
0xfb,0xec,0xfa,0x16,0xfb,0x8c,0xfa,0xc5,0xfa,0x3f,0xfa,0x60,0xfa,0x60,0xfa,0x51,
0xfa,0xe8,0xfa,0xf2,0xfa,0x67,0xfb,0x9f,0xfb,0x9b,0xfb,0xc3,0xfb,0xb8,0xfb,0xc4,
0xfb,0xf,0xfc,0x12,0xfc,0xd5,0xfc,0xc5,0xfc,0x10,0xfe,0xf7,0xfd,0x87,0xff,0x83,
0xff,0xf,0x1,0x17,0x1,0x75,0x2,0x7d,0x2,0x5d,0x3,0x7c,0x3,0xe9,0x3,0x18,
0x4,0x86,0x4,0xbb,0x4,0x39,0x5,0x89,0x5,0xd3,0x5,0x1d,0x6,0x14,0x6,0x0,
0x6,0xa6,0x5,0x46,0x5,0xcd,0x4,0x8e,0x4,0x60,0x4,0x50,0x4,0x88,0x4,0x81,
0x4,0x94,0x4,0xab,0x4,0x24,0x4,0x54,0x4,0x72,0x3,0x91,0x3,0x91,0x2,0xa2,
0x2,0x77,0x1,0x79,0x1,0x56,0x0,0x46,0x0,0x71,0xff,0x75,0xff,0x3,0xff,0x5,
0xff,0xee,0xfe,0xcf,0xfe,0x94,0xfe,0x88,0xfe,0xa2,0xfd,0xae,0xfd,0x40,0xfc,0x46,
0xfc,0xb6,0xfa,0xd4,0xfa,0xcd,0xf9,0xd8,0xf9,0x29,0xfa,0xe4,0xf9,0x33,0xfb,0xdc,
0xfa,0xf5,0xfb,0xb2,0xfb,0x40,0xfc,0xee,0xfb,0x7e,0xfc,0x2c,0xfc,0x12,0xfd,0xc7,
0xfc,0xc7,0xfd,0x6e,0xfd,0x3f,0xfe,0xe6,0xfd,0x9a,0xfe,0x47,0xfe,0xf3,0xfe,0xb5,
0xfe,0x4b,0xff,0x3d,0xff,0xce,0xff,0xd4,0xff,0x67,0x0,0x5b,0x0,0xcb,0x0,0xbb,
0x0,0xe3,0x0,0xf5,0x0,0xe1,0x0,0x1f,0x1,0x38,0x1,0x63,0x1,0xe9,0x1,0xe4,
0x1,0x70,0x2,0x91,0x2,0xd2,0x2,0x27,0x3,0x3f,0x3,0x79,0x3,0x91,0x3,0xa1,
0x3,0xc7,0x3,0xd3,0x3,0xe,0x4,0x31,0x4,0x83,0x4,0xc3,0x4,0xfa,0x4,0x30,
0x5,0xb7,0x4,0xea,0x4,0x87,0x3,0xe1,0x3,0x46,0x2,0xa0,0x2,0xad,0x1,0xf7,
0x1,0xb8,0x1,0x11,0x2,0xd0,0x1,0xfa,0x1,0x45,0x1,0x23,0x1,0x25,0x0,0xa,
0x0,0xc3,0xfe,0xbf,0xfe,0x27,0xfd,0x13,0xfd,0xbb,0xfb,0xaa,0xfb,0x10,0xfb,0x16,
0xfb,0x24,0xfb,0x33,0xfb,0x8d,0xfb,0x84,0xfb,0xb3,0xfb,0x7e,0xfb,0x6d,0xfb,0x29,
0xfb,0x40,0xfb,0x8,0xfb,0x53,0xfb,0x1d,0xfb,0x5a,0xfb,0x22,0xfb,0x7b,0xfb,0x3d,
0xfb,0x24,0xfc,0xe3,0xfb,0x50,0xfd,0x2a,0xfd,0x89,0xfe,0x81,0xfe,0x78,0xff,0x68,
0xff,0x2c,0x0,0xf,0x0,0xbc,0x0,0xa7,0x0,0x3d,0x1,0x23,0x1,0xe3,0x1,0xc0,
0x1,0xaa,0x2,0xb9,0x2,0x63,0x3,0xaf,0x3,0xee,0x3,0x23,0x4,0x51,0x4,0x51,
0x4,0xe9,0x4,0xeb,0x4,0xb2,0x5,0xcc,0x5,0xf0,0x5,0xe,0x6,0x64,0x5,0x76,
0x5,0x82,0x4,0x93,0x4,0xbe,0x3,0xe1,0x3,0x86,0x3,0x97,0x3,0xae,0x3,0xa2,
0x3,0x81,0x3,0x87,0x3,0xf1,0x2,0xf0,0x2,0x43,0x2,0x19,0x2,0x6e,0x1,0x62,
0x1,0x93,0x0,0xba,0x0,0xc4,0xff,0xd7,0xff,0xc9,0xfe,0xad,0xfe,0xad,0xfd,0x74,
0xfd,0xa9,0xfc,0x77,0xfc,0xe1,0xfb,0xcd,0xfb,0x56,0xfb,0x46,0xfb,0xae,0xfa,0xa9,
0xfa,0x9c,0xf9,0xc8,0xf9,0x53,0xf8,0x9a,0xf8,0x6e,0xf7,0xac,0xf7,0xd5,0xf7,0xfb,
0xf7,0xe2,0xf9,0xeb,0xf9,0x6e,0xfc,0x82,0xfc,0xe1,0xfd,0x1a,0xfe,0xdd,0xfd,0x1a,
0xfe,0x39,0xfd,0x5f,0xfd,0xe,0xfd,0x20,0xfd,0xfd,0xfd,0x15,0xfe,0xd3,0xff,0x4,
0x0,0xc4,0x1,0xdc,0x1,0x29,0x3,0xb,0x3,0x9,0x4,0xe8,0x3,0xb7,0x4,0xa3,
0x4,0x40,0x5,0x11,0x5,0xad,0x5,0x60,0x5,0x39,0x6,0xec,0x5,0xd6,0x6,0x93,
0x6,0x2b,0x7,0xed,0x6,0x2a,0x7,0xe5,0x6,0xcc,0x6,0x84,0x6,0xb5,0x5,0x90,
0x5,0xe2,0x3,0xfe,0x3,0x11,0x2,0x4a,0x2,0xfa,0x0,0x22,0x1,0xad,0x0,0xc4,
0x0,0x9e,0x0,0xaf,0x0,0x14,0x0,0x23,0x0,0xcf,0xfe,0xcf,0xfe,0x3a,0xfd,0x15,
0xfd,0x3,0xfc,0xdc,0xfb,0x90,0xfb,0x91,0xfb,0x8f,0xfb,0x99,0xfb,0x32,0xfb,0x33,
0xfb,0x56,0xfa,0x51,0xfa,0x91,0xf9,0x66,0xf9,0xa,0xf9,0xe3,0xf8,0xae,0xf8,0xca,
0xf8,0x5,0xf9,0x3b,0xf9,0x53,0xfa,0x83,0xfa,0xe0,0xfb,0xe,0xfc,0xeb,0xfc,0xd,
0xfd,0x77,0xfd,0xc5,0xfd,0xd,0xfe,0x9e,0xfe,0x2b,0xff,0xa1,0xff,0xdd,0x0,0x14,
0x1,0x9d,0x2,0xc1,0x2,0xce,0x3,0xd9,0x3,0x5b,0x4,0x44,0x4,0xc1,0x4,0x8b,
0x4,0x5c,0x5,0xb,0x5,0x9,0x6,0xd3,0x5,0x85,0x6,0x7b,0x6,0xd4,0x6,0xa5,
0x6,0x29,0x7,0xc4,0x6,0x5b,0x7,0x10,0x7,0xf6,0x6,0xe8,0x6,0x15,0x6,0x1a,
0x6,0x1a,0x5,0x3,0x5,0xf6,0x3,0xb9,0x3,0xe8,0x2,0xa4,0x2,0x34,0x2,0xa,
0x2,0x28,0x1,0x1d,0x1,0x7e,0xff,0x90,0xff,0x1a,0xfe,0x33,0xfe,0x68,0xfd,0x64,
0xfd,0x4,0xfd,0xf0,0xfc,0x61,0xfc,0x6f,0xfc,0x32,0xfb,0x71,0xfb,0x18,0xfa,0x60,
0xfa,0xb5,0xf9,0xcd,0xf9,0x93,0xf9,0x8d,0xf9,0x66,0xf9,0x7c,0xf9,0x49,0xf9,0x67,
0xf9,0xe9,0xf8,0xeb,0xf8,0x4b,0xf8,0x5d,0xf8,0xfa,0xf7,0x2a,0xf8,0x3b,0xf8,0x5d,
0xf8,0x22,0xf9,0x2c,0xf9,0x86,0xfa,0x82,0xfa,0x9,0xfc,0xe6,0xfb,0x64,0xfd,0x2d,
0xfd,0x90,0xfe,0x6c,0xfe,0x6,0x0,0xfe,0xff,0x1d,0x2,0x1e,0x2,0x10,0x4,0x28,
0x4,0x4e,0x5,0x79,0x5,0x42,0x6,0x46,0x6,0x0,0x7,0xe1,0x6,0x66,0x7,0x5b,
0x7,0xc2,0x7,0xbb,0x7,0x2c,0x8,0x23,0x8,0x7b,0x8,0x9b,0x8,0x91,0x8,0xc9,
0x8,0x56,0x8,0x76,0x8,0xda,0x7,0xeb,0x7,0x3e,0x7,0x4f,0x7,0x7e,0x6,0x87,
0x6,0x97,0x5,0x97,0x5,0x82,0x4,0x99,0x4,0x69,0x3,0xa7,0x3,0x76,0x2,0xb7,
0x2,0x48,0x1,0x70,0x1,0x7b,0xff,0x89,0xff,0x65,0xfd,0x50,0xfd,0x9a,0xfb,0x73,
0xfb,0x4c,0xfa,0x3c,0xfa,0x6a,0xf9,0x6b,0xf9,0xe5,0xf8,0xd8,0xf8,0xa1,0xf8,0x8f,
0xf8,0x7a,0xf8,0x7c,0xf8,0x83,0xf8,0x90,0xf8,0xa8,0xf8,0xa7,0xf8,0x8c,0xf8,0x90,
0xf8,0x6f,0xf8,0x88,0xf8,0xe6,0xf8,0xe2,0xf8,0xab,0xf9,0x8b,0xf9,0x5e,0xfa,0x5e,
0xfa,0x57,0xfb,0x71,0xfb,0xb3,0xfc,0xc4,0xfc,0x3,0xfe,0x3,0xfe,0x18,0xff,0xc,
0xff,0x28,0x0,0x1a,0x0,0x4a,0x1,0x34,0x1,0x69,0x2,0x4c,0x2,0xa0,0x3,0xb1,
0x3,0x2b,0x5,0x62,0x5,0x95,0x6,0xb5,0x6,0xf7,0x6,0xf4,0x6,0x5f,0x6,0x38,
0x6,0xe4,0x5,0x9e,0x5,0x14,0x6,0xe6,0x5,0x92,0x6,0x89,0x6,0xfc,0x6,0xec,
0x6,0x14,0x7,0xe0,0x6,0x87,0x6,0x3e,0x6,0x67,0x5,0x33,0x5,0x44,0x4,0x1e,
0x4,0x6e,0x3,0x36,0x3,0x9b,0x2,0x7c,0x2,0x7c,0x1,0x8d,0x1,0x46,0x0,0x50,
0x0,0x3c,0xff,0x39,0xff,0x1f,0xfe,0x1f,0xfe,0xde,0xfc,0xc5,0xfc,0xf7,0xfb,0xd1,
0xfb,0x76,0xfb,0x77,0xfb,0xd7,0xfa,0x8,0xfb,0x9,0xfa,0x38,0xfa,0x82,0xf9,0x80,
0xf9,0x83,0xf9,0x82,0xf9,0xf9,0xf9,0x25,0xfa,0xa3,0xfa,0xaf,0xfa,0x11,0xfb,0xea,
0xfa,0xb,0xfb,0x4,0xfb,0xfe,0xfa,0x19,0xfb,0x72,0xfb,0x82,0xfb,0x49,0xfc,0x58,
0xfc,0x2b,0xfd,0x39,0xfd,0x26,0xfe,0x2b,0xfe,0x5f,0xff,0x6e,0xff,0xbd,0x0,0xe1,
0x0,0xfa,0x1,0x3e,0x2,0xfe,0x2,0x50,0x3,0xf6,0x3,0x22,0x4,0xcb,0x4,0xeb,
0x4,0x28,0x5,0x73,0x5,0x28,0x5,0x76,0x5,0x5a,0x5,0x7e,0x5,0xa,0x6,0x20,
0x6,0xd2,0x6,0xe1,0x6,0xdc,0x6,0xc9,0x6,0xe3,0x5,0xbe,0x5,0xb9,0x4,0x9d,
0x4,0x35,0x4,0x1f,0x4,0x26,0x4,0x15,0x4,0xcb,0x3,0xce,0x3,0xba,0x2,0xd3,
0x2,0x26,0x1,0x49,0x1,0xa3,0xff,0xc1,0xff,0x99,0xfe,0xad,0xfe,0xa,0xfe,0xb,
0xfe,0xbc,0xfd,0x91,0xfd,0x2d,0xfd,0xda,0xfc,0xe4,0xfb,0xa8,0xfb,0x4f,0xfa,0x3d,
0xfa,0x4f,0xf9,0x39,0xf9,0x15,0xf9,0xfb,0xf8,0x70,0xf9,0x62,0xf9,0xb,0xfa,0xf3,
0xf9,0x48,0xfa,0x2e,0xfa,0x24,0xfa,0x19,0xfa,0x52,0xfa,0x49,0xfa,0x3e,0xfb,0x34,
0xfb,0xc6,0xfc,0xaf,0xfc,0x50,0xfe,0x31,0xfe,0x63,0xff,0x5a,0xff,0x53,0x0,0x46,
0x0,0x6d,0x1,0x47,0x1,0x7a,0x2,0x6a,0x2,0x6d,0x3,0x6e,0x3,0x45,0x4,0x38,
0x4,0xf5,0x4,0xf3,0x4,0x84,0x5,0x9b,0x5,0xcc,0x5,0xdf,0x5,0xea,0x5,0xd3,
0x5,0x43,0x6,0x4,0x6,0xac,0x6,0x8c,0x6,0xa2,0x6,0xc1,0x6,0xfd,0x5,0x1f,
0x6,0xe1,0x4,0xeb,0x4,0xaf,0x3,0xa5,0x3,0xa4,0x2,0x81,0x2,0xc2,0x1,0xab,
0x1,0x2d,0x1,0x56,0x1,0xc3,0x0,0x16,0x1,0xe5,0xff,0x30,0x0,0x5c,0xfe,0x8a,
0xfe,0xa4,0xfc,0xc0,0xfc,0x3f,0xfb,0x54,0xfb,0x4d,0xfa,0x5d,0xfa,0xe0,0xf9,0xf9,
0xf9,0x13,0xfa,0x2f,0xfa,0x6c,0xfa,0x65,0xfa,0x31,0xfa,0xfe,0xf9,0x9e,0xf9,0x66,
0xf9,0x8b,0xf9,0x79,0xf9,0x29,0xfa,0x31,0xfa,0xdf,0xfa,0xd6,0xfa,0x2a,0xfb,0xa,
0xfb,0x66,0xfb,0x36,0xfb,0x21,0xfc,0xec,0xfb,0x48,0xfd,0x3b,0xfd,0xb3,0xfe,0xd5,
0xfe,0x3c,0x0,0x53,0x0,0x5f,0x1,0x4a,0x1,0xea,0x1,0xb7,0x1,0x3d,0x2,0xa,
0x2,0xc2,0x2,0xa3,0x2,0xb5,0x3,0x9f,0x3,0xeb,0x4,0xe4,0x4,0xef,0x5,0xd,
0x6,0x8a,0x6,0xbb,0x6,0xcc,0x6,0x9,0x7,0xf2,0x6,0x36,0x7,0x2d,0x7,0x55,
0x7,0x4b,0x7,0x59,0x7,0xf4,0x6,0x18,0x7,0x32,0x6,0x6e,0x6,0x6f,0x5,0xa7,
0x5,0xec,0x4,0x26,0x5,0x69,0x4,0xa5,0x4,0x85,0x3,0xa2,0x3,0x22,0x2,0x1f,
0x2,0x7c,0x0,0x8c,0x0,0x34,0xff,0x5a,0xff,0x8d,0xfe,0xae,0xfe,0xe4,0xfd,0x16,
0xfe,0xd4,0xfc,0xfa,0xfc,0xbf,0xfb,0xa6,0xfb,0x17,0xfb,0xea,0xfa,0xe5,0xfa,0xce,
0xfa,0xc3,0xfa,0x98,0xfa,0x6c,0xfa,0x7,0xfa,0x26,0xfa,0x9c,0xf9,0x1a,0xfa,0xb3,
0xf9,0x20,0xfa,0xfd,0xf9,0x30,0xfa,0x1f,0xfa,0x5d,0xfa,0x4c,0xfa,0xd8,0xfa,0xd2,
0xfa,0xba,0xfb,0xac,0xfb,0xc5,0xfc,0xbb,0xfc,0xbf,0xfd,0xcf,0xfd,0x91,0xfe,0xa1,
0xfe,0x51,0xff,0x44,0xff,0x42,0x0,0xf,0x0,0x20,0x1,0xef,0x0,0x7e,0x1,0x72,
0x1,0xb1,0x1,0x9e,0x1,0x37,0x2,0x18,0x2,0x36,0x3,0x37,0x3,0x85,0x4,0x8b,
0x4,0x96,0x5,0x85,0x5,0x2d,0x6,0x14,0x6,0x97,0x6,0x79,0x6,0xd4,0x6,0xc8,
0x6,0xce,0x6,0xdb,0x6,0xa7,0x6,0xa4,0x6,0x4a,0x6,0x37,0x6,0x91,0x5,0x86,
0x5,0x7d,0x4,0x78,0x4,0x1e,0x3,0x32,0x3,0xd5,0x1,0x4,0x2,0x5,0x1,0x21,
0x1,0x8c,0x0,0x87,0x0,0x4,0x0,0xfc,0xff,0x34,0xff,0x35,0xff,0x2c,0xfe,0x34,
0xfe,0x43,0xfd,0x4d,0xfd,0xa4,0xfc,0xaf,0xfc,0x1f,0xfc,0x38,0xfc,0x97,0xfb,0xca,
0xfb,0x46,0xfb,0x84,0xfb,0x5e,0xfb,0x92,0xfb,0xad,0xfb,0xe0,0xfb,0xc4,0xfb,0xf9,
0xfb,0x63,0xfb,0x8c,0xfb,0xdb,0xfa,0xf1,0xfa,0xcb,0xfa,0xce,0xfa,0x68,0xfb,0x69,
0xfb,0x69,0xfc,0x83,0xfc,0x81,0xfd,0xb5,0xfd,0x7d,0xfe,0xbc,0xfe,0x18,0xff,0x45,
0xff,0x38,0xff,0x37,0xff,0x53,0xff,0x43,0xff,0x6,0x0,0x1d,0x0,0x32,0x1,0x78,
0x1,0x44,0x2,0x9e,0x2,0x2,0x3,0x41,0x3,0x7e,0x3,0x81,0x3,0xe8,0x3,0xc8,
0x3,0x85,0x4,0x54,0x4,0x2d,0x5,0xec,0x4,0x67,0x5,0x3b,0x5,0x33,0x5,0x20,
0x5,0xdd,0x4,0xbd,0x4,0x82,0x4,0x4d,0x4,0x21,0x4,0xdd,0x3,0xa6,0x3,0x57,
0x3,0xf7,0x2,0xb6,0x2,0xf,0x2,0xe1,0x1,0xf5,0x0,0xca,0x0,0xc1,0xff,0xa7,
0xff,0xc2,0xfe,0xbc,0xfe,0x1e,0xfe,0x9,0xfe,0x8e,0xfd,0x6b,0xfd,0xf5,0xfc,0xe5,
0xfc,0x8e,0xfc,0x8c,0xfc,0x77,0xfc,0x60,0xfc,0xa1,0xfc,0x68,0xfc,0xd9,0xfc,0xa3,
0xfc,0xc2,0xfc,0xcb,0xfc,0x71,0xfc,0xa8,0xfc,0x58,0xfc,0x8a,0xfc,0x90,0xfc,0xd0,
0xfc,0x4,0xfd,0x4b,0xfd,0xad,0xfd,0xb9,0xfd,0x6f,0xfe,0x5c,0xfe,0x2f,0xff,0x3e,
0xff,0xb5,0xff,0xd5,0xff,0xe0,0xff,0xf1,0xff,0x7,0x0,0x5,0x0,0x4b,0x0,0x48,
0x0,0x7c,0x0,0x79,0x0,0xc5,0x0,0x8f,0x0,0x4e,0x1,0xe7,0x0,0xe3,0x1,0xa6,
0x1,0x4d,0x2,0x51,0x2,0x5e,0x2,0x75,0x2,0x33,0x2,0x45,0x2,0x3e,0x2,0x42,
0x2,0x9d,0x2,0x94,0x2,0x24,0x3,0x6,0x3,0x85,0x3,0x56,0x3,0x72,0x3,0x58,
0x3,0xd,0x3,0x11,0x3,0xb5,0x2,0xc1,0x2,0x65,0x2,0x8a,0x2,0xf9,0x1,0x3c,
0x2,0x89,0x1,0xc6,0x1,0x47,0x1,0x79,0x1,0x45,0x1,0x6f,0x1,0x37,0x1,0x51,
0x1,0xc8,0x0,0xe4,0x0,0x17,0x0,0x51,0x0,0x73,0xff,0xc5,0xff,0xfb,0xfe,0x35,
0xff,0xa0,0xfe,0xae,0xfe,0x59,0xfe,0x65,0xfe,0x37,0xfe,0x52,0xfe,0xfc,0xfd,0x0,
0xfe,0x37,0xfd,0x19,0xfd,0x11,0xfc,0xfa,0xfb,0x53,0xfb,0x59,0xfb,0x74,0xfb,0x70,
0xfb,0x29,0xfc,0xff,0xfb,0xea,0xfc,0xc6,0xfc,0x8c,0xfd,0x87,0xfd,0xf,0xfe,0x9,
0xfe,0x5e,0xfe,0x45,0xfe,0x7e,0xfe,0x5b,0xfe,0xab,0xfe,0x88,0xfe,0x51,0xff,0x24,
0xff,0xb1,0x0,0x64,0x0,0x41,0x2,0xf7,0x1,0x12,0x3,0x8,0x3,0xfb,0x2,0x2e,
0x3,0xc0,0x2,0xe,0x3,0x14,0x3,0x62,0x3,0xcb,0x3,0xa,0x4,0x4d,0x4,0x87,
0x4,0x87,0x4,0xba,0x4,0xba,0x4,0xe2,0x4,0xde,0x4,0x0,0x5,0xb0,0x4,0xb9,
0x4,0x15,0x4,0x3,0x4,0x5b,0x3,0x4f,0x3,0xcf,0x2,0xce,0x2,0x32,0x2,0x2d,
0x2,0x38,0x1,0x18,0x1,0xfe,0xff,0xd4,0xff,0xba,0xfe,0xb9,0xfe,0xa6,0xfd,0xa2,
0xfd,0xdb,0xfc,0xa3,0xfc,0x3c,0xfc,0x1d,0xfc,0xf1,0xfb,0xf5,0xfb,0x18,0xfc,0xfd,
0xfb,0x1f,0xfc,0x4,0xfc,0x93,0xfb,0x95,0xfb,0xe5,0xfa,0xea,0xfa,0xcb,0xfa,0xcf,
0xfa,0x70,0xfb,0x5a,0xfb,0x57,0xfc,0x27,0xfc,0x3,0xfd,0xf1,0xfc,0x87,0xfd,0x8c,
0xfd,0x5,0xfe,0x8,0xfe,0x5d,0xfe,0x72,0xfe,0xa7,0xfe,0xc3,0xfe,0x2a,0xff,0x34,
0xff,0x5,0x0,0xee,0xff,0x1d,0x1,0xd1,0x0,0x13,0x2,0xb8,0x1,0x8c,0x2,0x66,
0x2,0xa4,0x2,0xac,0x2,0xa9,0x2,0xaa,0x2,0xc8,0x2,0xab,0x2,0xa,0x3,0xe0,
0x2,0x67,0x3,0x3c,0x3,0xd4,0x3,0xac,0x3,0x2b,0x4,0x21,0x4,0x2b,0x4,0x3c,
0x4,0xc0,0x3,0xba,0x3,0xfb,0x2,0xe6,0x2,0x2d,0x2,0x26,0x2,0xcf,0x1,0xc5,
0x1,0xcf,0x1,0xca,0x1,0x95,0x1,0xc2,0x1,0xe1,0x0,0x3c,0x1,0xd8,0xff,0x28,
0x0,0xc0,0xfe,0xdf,0xfe,0xf5,0xfd,0x7,0xfe,0x89,0xfd,0xc0,0xfd,0x4a,0xfd,0x90,
0xfd,0x31,0xfd,0x5b,0xfd,0x2d,0xfd,0x4b,0xfd,0x11,0xfd,0x3f,0xfd,0xce,0xfc,0x5,
0xfd,0x6d,0xfc,0x98,0xfc,0x32,0xfc,0x5d,0xfc,0x74,0xfc,0xa7,0xfc,0xfa,0xfc,0x19,
0xfd,0x57,0xfd,0x5e,0xfd,0xa8,0xfd,0xba,0xfd,0x43,0xfe,0x5c,0xfe,0xf,0xff,0x15,
0xff,0x98,0xff,0x89,0xff,0xaf,0xff,0x9b,0xff,0xd1,0xff,0xc2,0xff,0x6c,0x0,0x6c,
0x0,0x45,0x1,0x61,0x1,0x24,0x2,0x52,0x2,0x22,0x3,0x31,0x3,0xd0,0x3,0xb5,
0x3,0x99,0x3,0x6e,0x3,0xc7,0x2,0x97,0x2,0x36,0x2,0x8,0x2,0x5a,0x2,0x2a,
0x2,0xed,0x2,0x9f,0x2,0x33,0x3,0xe3,0x2,0xd7,0x2,0xa7,0x2,0x33,0x2,0x12,
0x2,0x9c,0x1,0x86,0x1,0x28,0x1,0x18,0x1,0x1,0x1,0xe4,0x0,0x42,0x1,0x1d,
0x1,0xbd,0x1,0x76,0x1,0xe9,0x1,0x7f,0x1,0x3a,0x1,0x3,0x1,0xee,0xff,0xf0,
0xff,0xdf,0xfe,0xce,0xfe,0x76,0xfe,0x58,0xfe,0x7b,0xfe,0x76,0xfe,0x8e,0xfe,0x9a,
0xfe,0x88,0xfe,0x8e,0xfe,0x95,0xfe,0x87,0xfe,0xaf,0xfe,0xab,0xfe,0x8f,0xfe,0xac,
0xfe,0x42,0xfe,0x4e,0xfe,0xc,0xfe,0xf4,0xfd,0x6,0xfe,0x4,0xfe,0x42,0xfe,0x6c,
0xfe,0xb6,0xfe,0xf0,0xfe,0x27,0xff,0x5f,0xff,0x5d,0xff,0x90,0xff,0x50,0xff,0x7b,
0xff,0x25,0xff,0x2d,0xff,0xdd,0xfe,0xc8,0xfe,0x84,0xfe,0x89,0xfe,0x7b,0xfe,0x9e,
0xfe,0xf4,0xfe,0xc,0xff,0x9a,0xff,0xad,0xff,0x13,0x0,0x34,0x0,0x41,0x0,0x63,
0x0,0x3e,0x0,0x55,0x0,0x4f,0x0,0x5c,0x0,0x7b,0x0,0x79,0x0,0xa5,0x0,0x9d,
0x0,0xe5,0x0,0xeb,0x0,0x52,0x1,0x5c,0x1,0xc1,0x1,0xbc,0x1,0xf0,0x1,0xdf,
0x1,0xd0,0x1,0xbd,0x1,0xa8,0x1,0x98,0x1,0xa9,0x1,0x9e,0x1,0x96,0x1,0x94,
0x1,0x41,0x1,0x4d,0x1,0xe1,0x0,0xe5,0x0,0xb4,0x0,0x91,0x0,0xbd,0x0,0x95,
0x0,0xf1,0x0,0xf7,0x0,0x29,0x1,0x4c,0x1,0xfe,0x0,0x1b,0x1,0x57,0x0,0x69,
0x0,0xa4,0xff,0xb3,0xff,0x58,0xff,0x6a,0xff,0x9e,0xff,0x9c,0xff,0x48,0x0,0x2c,
0x0,0xc9,0x0,0xa8,0x0,0xa2,0x0,0x73,0x0,0xf4,0xff,0xae,0xff,0x62,0xff,0x2b,
0xff,0x6e,0xff,0x53,0xff,0xe5,0xff,0xd0,0xff,0x3a,0x0,0x34,0x0,0x59,0x0,0x65,
0x0,0x64,0x0,0x73,0x0,0x2d,0x0,0x36,0x0,0xa0,0xff,0xac,0xff,0x2a,0xff,0x49,
0xff,0x10,0xff,0x44,0xff,0xf9,0xfe,0x3b,0xff,0xa7,0xfe,0xe6,0xfe,0x65,0xfe,0x7e,
0xfe,0x50,0xfe,0x38,0xfe,0x2e,0xfe,0x11,0xfe,0x4,0xfe,0x14,0xfe,0xb,0xfe,0x4d,
0xfe,0x47,0xfe,0x88,0xfe,0x8e,0xfe,0x9c,0xfe,0xc9,0xfe,0xbc,0xfe,0x10,0xff,0x23,
0xff,0x85,0xff,0xbc,0xff,0x17,0x0,0x43,0x0,0x86,0x0,0x89,0x0,0x89,0x0,0x79,
0x0,0x2a,0x0,0x17,0x0,0xd5,0xff,0xa6,0xff,0xd9,0xff,0x85,0xff,0x37,0x0,0xe5,
0xff,0xbc,0x0,0x97,0x0,0x27,0x1,0x24,0x1,0x71,0x1,0x58,0x1,0xa4,0x1,0x6d,
0x1,0xae,0x1,0x7f,0x1,0xaa,0x1,0x7f,0x1,0xbe,0x1,0x8a,0x1,0xd7,0x1,0xa8,
0x1,0xe1,0x1,0xb7,0x1,0xb0,0x1,0x8f,0x1,0x33,0x1,0x19,0x1,0xc6,0x0,0x9b,
0x0,0xc9,0x0,0x92,0x0,0x2c,0x1,0xfa,0x0,0x75,0x1,0x51,0x1,0x2c,0x1,0x23,
0x1,0x6c,0x0,0x6f,0x0,0xa9,0xff,0xa0,0xff,0x2c,0xff,0x32,0xff,0x2a,0xff,0x67,
0xff,0xaf,0xff,0x17,0x0,0x63,0x0,0xba,0x0,0xc3,0x0,0xf2,0x0,0x8b,0x0,0xbd,
0x0,0xe9,0xff,0x2c,0x0,0x48,0xff,0x86,0xff,0x9,0xff,0x50,0xff,0x7d,0xff,0xc3,
0xff,0x4b,0x0,0x6c,0x0,0x9d,0x0,0x9d,0x0,0x5b,0x0,0x49,0x0,0xa,0x0,0xf0,
0xff,0xde,0xff,0xc2,0xff,0xce,0xff,0xaf,0xff,0xbc,0xff,0xa3,0xff,0x8c,0xff,0x75,
0xff,0x5e,0xff,0x35,0xff,0x2f,0xff,0x5,0xff,0xe3,0xfe,0xb9,0xfe,0x97,0xfe,0x69,
0xfe,0x6e,0xfe,0x63,0xfe,0x81,0xfe,0x94,0xfe,0xc3,0xfe,0xdb,0xfe,0xfe,0xfe,0x33,
0xff,0x25,0xff,0x6e,0xff,0x35,0xff,0x75,0xff,0x1e,0xff,0x5e,0xff,0x21,0xff,0x5d,
0xff,0x7d,0xff,0xb6,0xff,0x1e,0x0,0x47,0x0,0xc3,0x0,0xb7,0x0,0xfe,0x0,0xe3,
0x0,0xb8,0x0,0xc5,0x0,0x6d,0x0,0x80,0x0,0x4e,0x0,0x5a,0x0,0x34,0x0,0x4f,
0x0,0x39,0x0,0x4c,0x0,0x84,0x0,0x74,0x0,0xfa,0x0,0xbe,0x0,0x57,0x1,0xf4,
0x0,0x5b,0x1,0xec,0x0,0xf,0x1,0x95,0x0,0xad,0x0,0x32,0x0,0x6e,0x0,0x1c,
0x0,0x5c,0x0,0x42,0x0,0x41,0x0,0x47,0x0,0xf5,0xff,0x1,0x0,0xa7,0xff,0xaa,
0xff,0x94,0xff,0x93,0xff,0xac,0xff,0xb3,0xff,0xa6,0xff,0xb6,0xff,0x79,0xff,0x9a,
0xff,0x7f,0xff,0xad,0xff,0xc2,0xff,0xf2,0xff,0xfe,0xff,0x36,0x0,0x39,0x0,0x6d,
0x0,0x74,0x0,0x8d,0x0,0x8a,0x0,0xa3,0x0,0xa1,0x0,0xca,0x0,0xd6,0x0,0xf6,
0x0,0x6,0x1,0x16,0x1,0x24,0x1,0x30,0x1,0x2d,0x1,0x33,0x1,0x13,0x1,0x1e,
0x1,0xdb,0x0,0x8,0x1,0x87,0x0,0xd8,0x0,0x2d,0x0,0x7d,0x0,0xf4,0xff,0x15,
0x0,0xba,0xff,0xac,0xff,0x5a,0xff,0x4c,0xff,0x4,0xff,0x3,0xff,0xd2,0xfe,0xcb,
0xfe,0x91,0xfe,0x93,0xfe,0x38,0xfe,0x50,0xfe,0x9,0xfe,0x10,0xfe,0x16,0xfe,0xef,
0xfd,0x22,0xfe,0xde,0xfd,0xb,0xfe,0xce,0xfd,0xef,0xfd,0xbd,0xfd,0xd2,0xfd,0xa8,
0xfd,0xb2,0xfd,0xa1,0xfd,0xc7,0xfd,0xc5,0xfd,0x37,0xfe,0x1d,0xfe,0xe2,0xfe,0xc4,
0xfe,0xa7,0xff,0x9f,0xff,0x68,0x0,0x61,0x0,0x2,0x1,0xf6,0x0,0x6c,0x1,0x6d,
0x1,0xa9,0x1,0xc2,0x1,0xcf,0x1,0xf7,0x1,0x1,0x2,0x1b,0x2,0x4b,0x2,0x55,
0x2,0xa1,0x2,0xb1,0x2,0xd1,0x2,0xde,0x2,0xa9,0x2,0xb9,0x2,0x62,0x2,0x8d,
0x2,0x64,0x2,0x91,0x2,0xab,0x2,0xb9,0x2,0xca,0x2,0xc0,0x2,0x58,0x2,0x4c,
0x2,0x70,0x1,0x67,0x1,0xae,0x0,0x92,0x0,0x73,0x0,0x40,0x0,0x84,0x0,0x6c,
0x0,0x68,0x0,0x83,0x0,0xdd,0xff,0xff,0xff,0xf,0xff,0x15,0xff,0x5e,0xfe,0x4a,
0xfe,0xfd,0xfd,0xcd,0xfd,0xeb,0xfd,0x9e,0xfd,0x2,0xfe,0xb3,0xfd,0x21,0xfe,0xdf,
0xfd,0x42,0xfe,0xf8,0xfd,0x39,0xfe,0xf3,0xfd,0xe2,0xfd,0xd1,0xfd,0x84,0xfd,0xa4,
0xfd,0x8e,0xfd,0xab,0xfd,0x15,0xfe,0x1c,0xfe,0xa6,0xfe,0xb5,0xfe,0xae,0xfe,0xf3,
0xfe,0x57,0xfe,0xbf,0xfe,0x41,0xfe,0x8e,0xfe,0x94,0xfe,0xba,0xfe,0x13,0xff,0x2c,
0xff,0xa3,0xff,0xb8,0xff,0x4c,0x0,0x60,0x0,0xf5,0x0,0x1c,0x1,0x45,0x1,0x9c,
0x1,0x27,0x1,0x8d,0x1,0x2,0x1,0x2b,0x1,0x1d,0x1,0x14,0x1,0x7f,0x1,0x79,
0x1,0x19,0x2,0x14,0x2,0x95,0x2,0x89,0x2,0xa7,0x2,0x96,0x2,0x60,0x2,0x51,
0x2,0x3,0x2,0xfe,0x1,0xc9,0x1,0xac,0x1,0xb5,0x1,0x7a,0x1,0xc5,0x1,0xa4,
0x1,0x5,0x2,0xfc,0x1,0x26,0x2,0x8,0x2,0xe1,0x1,0xa8,0x1,0x62,0x1,0x1d,
0x1,0xd6,0x0,0xaa,0x0,0x46,0x0,0x47,0x0,0xce,0xff,0xd2,0xff,0x74,0xff,0x67,
0xff,0x41,0xff,0x2f,0xff,0x27,0xff,0x12,0xff,0xea,0xfe,0xe3,0xfe,0x88,0xfe,0x8d,
0xfe,0x37,0xfe,0x2c,0xfe,0xe,0xfe,0x0,0xfe,0x1b,0xfe,0x1f,0xfe,0x69,0xfe,0x77,
0xfe,0xea,0xfe,0xf3,0xfe,0x7f,0xff,0x71,0xff,0xe3,0xff,0xcb,0xff,0xe3,0xff,0xe4,
0xff,0xa5,0xff,0xb9,0xff,0x7a,0xff,0x98,0xff,0x9b,0xff,0xca,0xff,0xe5,0xff,0x11,
0x0,0xf9,0xff,0x1c,0x0,0xd3,0xff,0x2,0x0,0xcd,0xff,0xfb,0xff,0xfb,0xff,0x15,
0x0,0x7,0x0,0x21,0x0,0xc4,0xff,0xe3,0xff,0x6f,0xff,0x86,0xff,0x5d,0xff,0x61,
0xff,0x97,0xff,0x7e,0xff,0xec,0xff,0xc2,0xff,0x1c,0x0,0x7,0x0,0xb,0x0,0xe,
0x0,0xc1,0xff,0xc7,0xff,0x5a,0xff,0x60,0xff,0xb,0xff,0xfc,0xfe,0xf2,0xfe,0xc8,
0xfe,0xf5,0xfe,0xe8,0xfe,0x19,0xff,0x42,0xff,0x83,0xff,0xa6,0xff,0xf6,0xff,0xf8,
0xff,0x35,0x0,0x36,0x0,0x6c,0x0,0x74,0x0,0xbb,0x0,0xad,0x0,0x7,0x1,0xdc,
0x0,0x36,0x1,0x1d,0x1,0x44,0x1,0x61,0x1,0x51,0x1,0x86,0x1,0x92,0x1,0xac,
0x1,0xf8,0x1,0xf0,0x1,0x2b,0x2,0x1b,0x2,0xe9,0x1,0xe5,0x1,0x4f,0x1,0x55,
0x1,0xd1,0x0,0xc9,0x0,0xb8,0x0,0x8a,0x0,0xd0,0x0,0x89,0x0,0xd0,0x0,0x9f,
0x0,0xc7,0x0,0xbf,0x0,0xbd,0x0,0xd0,0x0,0x82,0x0,0x9c,0x0,0xe,0x0,0x11,
0x0,0xa2,0xff,0x80,0xff,0x68,0xff,0x3f,0xff,0x56,0xff,0x3d,0xff,0x4e,0xff,0x3d,
0xff,0x20,0xff,0x25,0xff,0xcc,0xfe,0xe8,0xfe,0x98,0xfe,0x98,0xfe,0x9f,0xfe,0x6d,
0xfe,0xc5,0xfe,0x8c,0xfe,0xf7,0xfe,0xd7,0xfe,0x1d,0xff,0x9,0xff,0x28,0xff,0x12,
0xff,0x2c,0xff,0x2c,0xff,0x2b,0xff,0x5f,0xff,0x23,0xff,0x6f,0xff,0x24,0xff,0x45,
0xff,0x24,0xff,0x25,0xff,0x36,0xff,0x58,0xff,0x71,0xff,0xb9,0xff,0xa1,0xff,0xf6,
0xff,0xac,0xff,0x10,0x0,0xca,0xff,0x23,0x0,0x7,0x0,0x29,0x0,0x53,0x0,0x39,
0x0,0xae,0x0,0x7a,0x0,0x5,0x1,0xdd,0x0,0x3f,0x1,0x27,0x1,0x49,0x1,0x23,
0x1,0x1c,0x1,0xe0,0x0,0xd1,0x0,0x91,0x0,0x7b,0x0,0x40,0x0,0x29,0x0,0xf5,
0xff,0x3,0x0,0xda,0xff,0x1b,0x0,0xf8,0xff,0x4d,0x0,0x28,0x0,0x78,0x0,0x42,
0x0,0x95,0x0,0x51,0x0,0xba,0x0,0x8d,0x0,0xff,0x0,0xe,0x1,0x63,0x1,0x9a,
0x1,0xb1,0x1,0xd3,0x1,0x89,0x1,0x80,0x1,0xd9,0x0,0xdb,0x0,0x30,0x0,0x54,
0x0,0x7,0x0,0x26,0x0,0x4c,0x0,0x59,0x0,0xa8,0x0,0xb4,0x0,0xc1,0x0,0xca,
0x0,0x85,0x0,0x75,0x0,0x34,0x0,0x12,0x0,0x8,0x0,0xfb,0xff,0xe,0x0,0x20,
0x0,0x23,0x0,0x42,0x0,0x13,0x0,0x3b,0x0,0xda,0xff,0xf3,0xff,0x9b,0xff,0x86,
0xff,0x7d,0xff,0x4d,0xff,0x92,0xff,0x70,0xff,0xc2,0xff,0xb2,0xff,0xe4,0xff,0xd4,
0xff,0xe0,0xff,0xc4,0xff,0xa4,0xff,0x8d,0xff,0x55,0xff,0x4f,0xff,0x3f,0xff,0x4a,
0xff,0x8a,0xff,0xb3,0xff,0x20,0x0,0x56,0x0,0x94,0x0,0xbc,0x0,0x77,0x0,0xa2,
0x0,0xe4,0xff,0x12,0x0,0x57,0xff,0x6c,0xff,0x39,0xff,0x29,0xff,0x85,0xff,0x53,
0xff,0xce,0xff,0x9d,0xff,0xd8,0xff,0xcc,0xff,0xc5,0xff,0xc5,0xff,0xaa,0xff,0xa2,
0xff,0x89,0xff,0x85,0xff,0x59,0xff,0x58,0xff,0x1f,0xff,0x2a,0xff,0x1e,0xff,0x3f,
0xff,0x6c,0xff,0x9f,0xff,0xce,0xff,0x16,0x0,0x1c,0x0,0x5a,0x0,0x3b,0x0,0x4b,
0x0,0x20,0x0,0x12,0x0,0xfd,0xff,0xe8,0xff,0xf9,0xff,0xee,0xff,0x12,0x0,0x22,
0x0,0x5c,0x0,0x60,0x0,0xd5,0x0,0xb4,0x0,0x4b,0x1,0x2e,0x1,0x8b,0x1,0x8a,
0x1,0x89,0x1,0xa0,0x1,0x6b,0x1,0x90,0x1,0x6a,0x1,0x86,0x1,0x97,0x1,0xab,
0x1,0xc8,0x1,0xdc,0x1,0xcc,0x1,0xcc,0x1,0xab,0x1,0x91,0x1,0x5a,0x1,0x32,
0x1,0xb9,0x0,0x86,0x0,0xf3,0xff,0xc9,0xff,0x58,0xff,0x55,0xff,0xff,0xfe,0x19,
0xff,0xd2,0xfe,0xd5,0xfe,0x9f,0xfe,0x76,0xfe,0x6b,0xfe,0x32,0xfe,0x76,0xfe,0x3d,
0xfe,0xb8,0xfe,0x87,0xfe,0xfa,0xfe,0xf4,0xfe,0x52,0xff,0x79,0xff,0xd5,0xff,0xf7,
0xff,0x4f,0x0,0x52,0x0,0x78,0x0,0x63,0x0,0x3d,0x0,0x26,0x0,0xeb,0xff,0xe8,
0xff,0xeb,0xff,0xeb,0xff,0x39,0x0,0x33,0x0,0x75,0x0,0x83,0x0,0x5a,0x0,0x84,
0x0,0xa,0x0,0x41,0x0,0xcc,0xff,0x1,0x0,0xa5,0xff,0xc0,0xff,0x6b,0xff,0x72,
0xff,0x2f,0xff,0x41,0xff,0x3b,0xff,0x5f,0xff,0xa0,0xff,0xcb,0xff,0xff,0xff,0x25,
0x0,0xf6,0xff,0x13,0x0,0x97,0xff,0xb9,0xff,0x3a,0xff,0x5f,0xff,0x13,0xff,0x34,
0xff,0x28,0xff,0x51,0xff,0x61,0xff,0x7d,0xff,0xa9,0xff,0x88,0xff,0xf6,0xff,0xa4,
0xff,0x3e,0x0,0xe7,0xff,0x6f,0x0,0x27,0x0,0x86,0x0,0x54,0x0,0x93,0x0,0x78,
0x0,0xb7,0x0,0x9f,0x0,0x1,0x1,0xd8,0x0,0x4e,0x1,0xd,0x1,0x63,0x1,0x24,
0x1,0x2d,0x1,0x17,0x1,0xd3,0x0,0xd4,0x0,0x8c,0x0,0x76,0x0,0x74,0x0,0x47,
0x0,0x8d,0x0,0x61,0x0,0xcc,0x0,0xae,0x0,0x22,0x1,0x1a,0x1,0x72,0x1,0x7c,
0x1,0x95,0x1,0x99,0x1,0x72,0x1,0x58,0x1,0x1b,0x1,0xed,0x0,0xc3,0x0,0xad,
0x0,0xa4,0x0,0xb0,0x0,0xbd,0x0,0xc5,0x0,0xc2,0x0,0xc7,0x0,0x76,0x0,0x92,
0x0,0xf1,0xff,0x1,0x0,0x5f,0xff,0x48,0xff,0xd0,0xfe,0xb8,0xfe,0x58,0xfe,0x65,
0xfe,0x20,0xfe,0x52,0xfe,0x3a,0xfe,0x79,0xfe,0x85,0xfe,0xb8,0xfe,0xbe,0xfe,0xe5,
0xfe,0xb9,0xfe,0xeb,0xfe,0x9e,0xfe,0xdd,0xfe,0xae,0xfe,0xee,0xfe,0xea,0xfe,0x18,
0xff,0x24,0xff,0x41,0xff,0x49,0xff,0x72,0xff,0x69,0xff,0xa9,0xff,0x9e,0xff,0xd0,
0xff,0xdf,0xff,0xe8,0xff,0xc,0x0,0xff,0xff,0x2a,0x0,0x1f,0x0,0x5d,0x0,0x4b,
0x0,0xb3,0x0,0x89,0x0,0x8,0x1,0xd8,0x0,0x26,0x1,0x14,0x1,0x27,0x1,0x2f,
0x1,0x5d,0x1,0x5c,0x1,0xc6,0x1,0xaa,0x1,0xe,0x2,0xd6,0x1,0xf3,0x1,0xa8,
0x1,0x7f,0x1,0x2a,0x1,0x7,0x1,0xb6,0x0,0xc4,0x0,0x8d,0x0,0x91,0x0,0x83,
0x0,0x47,0x0,0x55,0x0,0xee,0xff,0xf7,0xff,0xaf,0xff,0x98,0xff,0xa1,0xff,0x78,
0xff,0xa1,0xff,0x84,0xff,0x7e,0xff,0x7e,0xff,0x4f,0xff,0x6f,0xff,0x51,0xff,0x7f,
0xff,0x8a,0xff,0xbd,0xff,0xb1,0xff,0xf5,0xff,0x98,0xff,0xd5,0xff,0x7c,0xff,0x8d,
0xff,0x9b,0xff,0x9a,0xff,0xcc,0xff,0xde,0xff,0xc6,0xff,0xe9,0xff,0x85,0xff,0xaf,
0xff,0x55,0xff,0x73,0xff,0x70,0xff,0x7b,0xff,0xad,0xff,0xaf,0xff,0xd5,0xff,0xc0,
0xff,0xdf,0xff,0xbb,0xff,0xdc,0xff,0xce,0xff,0xd4,0xff,0xd2,0xff,0xb9,0xff,0xad,
0xff,0x96,0xff,0x87,0xff,0xaf,0xff,0x95,0xff,0x1e,0x0,0xf7,0xff,0x9c,0x0,0x84,
0x0,0xc5,0x0,0xd0,0x0,0x86,0x0,0xac,0x0,0x38,0x0,0x5c,0x0,0x3a,0x0,0x45,
0x0,0x85,0x0,0x90,0x0,0xd6,0x0,0xf1,0x0,0xf0,0x0,0x9,0x1,0xd2,0x0,0xef,
0x0,0xb3,0x0,0xe9,0x0,0xa0,0x0,0xe9,0x0,0x6d,0x0,0xb9,0x0,0x17,0x0,0x53,
0x0,0xb2,0xff,0xd4,0xff,0x5f,0xff,0x67,0xff,0x31,0xff,0x28,0xff,0xf5,0xfe,0xea,
0xfe,0x94,0xfe,0x98,0xfe,0x65,0xfe,0x76,0xfe,0xa7,0xfe,0xa8,0xfe,0x15,0xff,0xf9,
0xfe,0x44,0xff,0x24,0xff,0x2f,0xff,0x16,0xff,0x2e,0xff,0xf,0xff,0x63,0xff,0x46,
0xff,0x9b,0xff,0x7f,0xff,0xbb,0xff,0x91,0xff,0xde,0xff,0xb4,0xff,0x18,0x0,0xf2,
0xff,0x4f,0x0,0x25,0x0,0x5e,0x0,0x37,0x0,0x3d,0x0,0xe,0x0,0xff,0xff,0xc4,
0xff,0xc8,0xff,0xa8,0xff,0xd6,0xff,0xd5,0xff,0x4c,0x0,0x4b,0x0,0xb,0x1,0xfe,
0x0,0xaa,0x1,0x8a,0x1,0xbd,0x1,0x93,0x1,0x5f,0x1,0x40,0x1,0x22,0x1,0x3,
0x1,0x61,0x1,0x3c,0x1,0xf2,0x1,0xe3,0x1,0x5a,0x2,0x72,0x2,0x59,0x2,0x7e,
0x2,0x30,0x2,0x2e,0x2,0x8,0x2,0xdb,0x1,0xb1,0x1,0x8c,0x1,0x17,0x1,0x10,
0x1,0x62,0x0,0x71,0x0,0xd1,0xff,0xff,0xff,0xa0,0xff,0xe5,0xff,0xa7,0xff,0xe9,
0xff,0x70,0xff,0xa9,0xff,0xe2,0xfe,0x1a,0xff,0x57,0xfe,0x8c,0xfe,0x21,0xfe,0x47,
0xfe,0x2d,0xfe,0x4e,0xfe,0x2e,0xfe,0x68,0xfe,0xa,0xfe,0x5c,0xfe,0xe9,0xfd,0x2f,
0xfe,0xdf,0xfd,0x8,0xfe,0xda,0xfd,0xf5,0xfd,0xcb,0xfd,0xec,0xfd,0xa9,0xfd,0xce,
0xfd,0x85,0xfd,0x94,0xfd,0x93,0xfd,0x7e,0xfd,0xec,0xfd,0xc5,0xfd,0x5d,0xfe,0x34,
0xfe,0xaa,0xfe,0x76,0xfe,0xd2,0xfe,0x8d,0xfe,0x9,0xff,0xbf,0xfe,0x7f,0xff,0x3a,
0xff,0x31,0x0,0xfb,0xff,0xf8,0x0,0xda,0x0,0xab,0x1,0x99,0x1,0x1e,0x2,0x0,
0x2,0x4a,0x2,0x1a,0x2,0x83,0x2,0x40,0x2,0xc,0x3,0xbd,0x2,0xbc,0x3,0x7a,
0x3,0x3a,0x4,0x9,0x4,0x4a,0x4,0x23,0x4,0xf8,0x3,0xe6,0x3,0x86,0x3,0x8e,
0x3,0x24,0x3,0x3e,0x3,0xe6,0x2,0x5,0x3,0xcd,0x2,0xe5,0x2,0xa7,0x2,0xbe,
0x2,0x38,0x2,0x62,0x2,0x8e,0x1,0xcb,0x1,0xe0,0x0,0x25,0x1,0x4f,0x0,0x8c,
0x0,0xe2,0xff,0xb,0x0,0x99,0xff,0xba,0xff,0x56,0xff,0x7f,0xff,0xdb,0xfe,0xa,
0xff,0x13,0xfe,0x3c,0xfe,0x52,0xfd,0x6b,0xfd,0x1,0xfd,0x7,0xfd,0x11,0xfd,0x13,
0xfd,0x4,0xfd,0x9,0xfd,0x9e,0xfc,0x9a,0xfc,0x21,0xfc,0x19,0xfc,0xd4,0xfb,0xda,
0xfb,0xcb,0xfb,0xcd,0xfb,0xf7,0xfb,0xe0,0xfb,0x40,0xfc,0x23,0xfc,0xb0,0xfc,0xa4,
0xfc,0x56,0xfd,0x56,0xfd,0xfe,0xfd,0xf3,0xfd,0x55,0xfe,0x31,0xfe,0x5d,0xfe,0x36,
0xfe,0x90,0xfe,0x83,0xfe,0x61,0xff,0x5f,0xff,0xac,0x0,0x9a,0x0,0xeb,0x1,0xd4,
0x1,0xc0,0x2,0xb8,0x2,0x24,0x3,0x31,0x3,0x3f,0x3,0x62,0x3,0x52,0x3,0x7a,
0x3,0x8c,0x3,0x9e,0x3,0xe9,0x3,0xe2,0x3,0x44,0x4,0x40,0x4,0x6b,0x4,0x74,
0x4,0x2e,0x4,0x2f,0x4,0x8c,0x3,0x82,0x3,0xd7,0x2,0xcf,0x2,0x69,0x2,0x61,
0x2,0x49,0x2,0x3f,0x2,0x30,0x2,0x22,0x2,0xe1,0x1,0xca,0x1,0x65,0x1,0x51,
0x1,0xeb,0x0,0xe5,0x0,0x73,0x0,0x7f,0x0,0xe4,0xff,0xff,0xff,0x40,0xff,0x4f,
0xff,0x92,0xfe,0x8b,0xfe,0xfc,0xfd,0x1,0xfe,0xaa,0xfd,0xb8,0xfd,0x76,0xfd,0x71,
0xfd,0x23,0xfd,0x20,0xfd,0xd7,0xfc,0xe7,0xfc,0xe8,0xfc,0xea,0xfc,0x54,0xfd,0x2c,
0xfd,0xb5,0xfd,0x7a,0xfd,0xd7,0xfd,0xbf,0xfd,0x12,0xfe,0x26,0xfe,0xbc,0xfe,0xc7,
0xfe,0x91,0xff,0x7b,0xff,0xd,0x0,0xed,0xff,0xe,0x0,0xf1,0xff,0xde,0xff,0xd2,
0xff,0xbd,0xff,0xda,0xff,0xc7,0xff,0xff,0xff,0x11,0x0,0x37,0x0,0x9a,0x0,0x8b,
0x0,0x31,0x1,0x2,0x1,0x95,0x1,0x7b,0x1,0x8c,0x1,0x92,0x1,0x17,0x1,0x16,
0x1,0x8c,0x0,0x74,0x0,0x53,0x0,0x32,0x0,0x97,0x0,0x7b,0x0,0x1f,0x1,0x15,
0x1,0x7a,0x1,0x90,0x1,0x7c,0x1,0xa9,0x1,0x54,0x1,0x7d,0x1,0x20,0x1,0x38,
0x1,0xe3,0x0,0xf7,0x0,0xaf,0x0,0xc9,0x0,0x8f,0x0,0xb3,0x0,0x76,0x0,0x9e,
0x0,0x2c,0x0,0x50,0x0,0x96,0xff,0xc0,0xff,0x4,0xff,0x3a,0xff,0xd0,0xfe,0xf7,
0xfe,0xed,0xfe,0xf4,0xfe,0x12,0xff,0x12,0xff,0x11,0xff,0x1a,0xff,0xec,0xfe,0xef,
0xfe,0xc3,0xfe,0xb2,0xfe,0xb6,0xfe,0x97,0xfe,0xc3,0xfe,0xa4,0xfe,0xe6,0xfe,0xba,
0xfe,0x2b,0xff,0xd7,0xfe,0x8a,0xff,0x27,0xff,0xef,0xff,0xa9,0xff,0x49,0x0,0x20,
0x0,0x83,0x0,0x62,0x0,0x9b,0x0,0x81,0x0,0xb6,0x0,0xa6,0x0,0xe3,0x0,0xe3,
0x0,0x1c,0x1,0x28,0x1,0x6f,0x1,0x76,0x1,0xda,0x1,0xda,0x1,0x35,0x2,0x3a,
0x2,0x48,0x2,0x4a,0x2,0xf5,0x1,0xe9,0x1,0x72,0x1,0x66,0x1,0x2d,0x1,0x3d,
0x1,0x5e,0x1,0x94,0x1,0xd4,0x1,0x10,0x2,0xe,0x2,0x20,0x2,0xb7,0x1,0x8c,
0x1,0xfb,0x0,0xbc,0x0,0x58,0x0,0x30,0x0,0x1e,0x0,0x4,0x0,0x47,0x0,0x2e,
0x0,0x82,0x0,0x73,0x0,0x5d,0x0,0x58,0x0,0xa5,0xff,0x9d,0xff,0x9b,0xfe,0x8f,
0xfe,0xb5,0xfd,0xb2,0xfd,0x2c,0xfd,0x40,0xfd,0xf7,0xfc,0x29,0xfd,0xfe,0xfc,0x49,
0xfd,0x18,0xfd,0x6b,0xfd,0xf,0xfd,0x58,0xfd,0xde,0xfc,0x1e,0xfd,0xc6,0xfc,0xfb,
0xfc,0xfe,0xfc,0x1c,0xfd,0x74,0xfd,0x8a,0xfd,0xe1,0xfd,0x6,0xfe,0x2b,0xfe,0x4f,
0xfe,0x72,0xfe,0x86,0xfe,0xce,0xfe,0xd4,0xfe,0x31,0xff,0x34,0xff,0x98,0xff,0xaa,
0xff,0x1e,0x0,0x29,0x0,0xc5,0x0,0xa0,0x0,0x5e,0x1,0x1d,0x1,0xc5,0x1,0x99,
0x1,0x12,0x2,0xf8,0x1,0x67,0x2,0x4b,0x2,0xce,0x2,0xa5,0x2,0x49,0x3,0xf,
0x3,0xcf,0x3,0x87,0x3,0x36,0x4,0xe4,0x3,0x63,0x4,0x16,0x4,0x64,0x4,0x2c,
0x4,0x41,0x4,0x11,0x4,0xde,0x3,0xb2,0x3,0x3e,0x3,0x25,0x3,0xae,0x2,0x93,
0x2,0x5f,0x2,0x28,0x2,0x15,0x2,0xe7,0x1,0x97,0x1,0x9b,0x1,0xfa,0x0,0x25,
0x1,0x4b,0x0,0x74,0x0,0x7a,0xff,0x84,0xff,0x9b,0xfe,0x97,0xfe,0xea,0xfd,0xf2,
0xfd,0x83,0xfd,0x9b,0xfd,0x47,0xfd,0x6f,0xfd,0xf4,0xfc,0x30,0xfd,0x73,0xfc,0xb9,
0xfc,0xf0,0xfb,0x2c,0xfc,0x98,0xfb,0xb9,0xfb,0x74,0xfb,0x75,0xfb,0x7c,0xfb,0x71,
0xfb,0xa6,0xfb,0xab,0xfb,0xf1,0xfb,0x9,0xfc,0x47,0xfc,0x5d,0xfc,0x70,0xfc,0x81,
0xfc,0x6f,0xfc,0x91,0xfc,0xa5,0xfc,0xd6,0xfc,0x56,0xfd,0x77,0xfd,0x5b,0xfe,0x67,
0xfe,0x73,0xff,0x74,0xff,0x82,0x0,0x79,0x0,0x79,0x1,0x67,0x1,0x38,0x2,0x23,
0x2,0xb1,0x2,0xaa,0x2,0x11,0x3,0x24,0x3,0x98,0x3,0xb0,0x3,0x64,0x4,0x6b,
0x4,0x4d,0x5,0x48,0x5,0xf9,0x5,0xeb,0x5,0x2c,0x6,0xe,0x6,0xf4,0x5,0xc9,
0x5,0x7f,0x5,0x52,0x5,0xe3,0x4,0xc1,0x4,0x20,0x4,0xa,0x4,0x56,0x3,0x49,
0x3,0xb9,0x2,0xbf,0x2,0x49,0x2,0x5a,0x2,0xbb,0x1,0xb5,0x1,0xc6,0x0,0xa4,
0x0,0x75,0xff,0x62,0xff,0x20,0xfe,0x46,0xfe,0x24,0xfd,0x71,0xfd,0x9b,0xfc,0xd4,
0xfc,0x3a,0xfc,0x4e,0xfc,0xb2,0xfb,0xaf,0xfb,0xc,0xfb,0xfa,0xfa,0x84,0xfa,0x77,
0xfa,0x3f,0xfa,0x4d,0xfa,0x4c,0xfa,0x6d,0xfa,0xa5,0xfa,0xce,0xfa,0x2b,0xfb,0x56,
0xfb,0xc4,0xfb,0xf1,0xfb,0x63,0xfc,0x8c,0xfc,0x2,0xfd,0x11,0xfd,0xad,0xfd,0xa8,
0xfd,0x88,0xfe,0x8f,0xfe,0xa4,0xff,0xb3,0xff,0xc8,0x0,0xcc,0x0,0xb6,0x1,0xae,
0x1,0x65,0x2,0x51,0x2,0xe9,0x2,0xcf,0x2,0x52,0x3,0x3e,0x3,0xb3,0x3,0x9f,
0x3,0x17,0x4,0xf4,0x3,0x86,0x4,0x4b,0x4,0xe9,0x4,0xa0,0x4,0x9,0x5,0xce,
0x4,0xde,0x4,0xaf,0x4,0x92,0x4,0x56,0x4,0x4c,0x4,0x7,0x4,0x17,0x4,0xec,
0x3,0xcf,0x3,0xce,0x3,0x25,0x3,0x3a,0x3,0x4,0x2,0x15,0x2,0xb4,0x0,0xc4,
0x0,0x9a,0xff,0xad,0xff,0xe5,0xfe,0xf3,0xfe,0x69,0xfe,0x7d,0xfe,0xde,0xfd,0x0,
0xfe,0x2e,0xfd,0x5b,0xfd,0x6c,0xfc,0xa3,0xfc,0xbb,0xfb,0x1,0xfc,0x42,0xfb,0x96,
0xfb,0x17,0xfb,0x68,0xfb,0x3d,0xfb,0x72,0xfb,0x99,0xfb,0xbb,0xfb,0xf9,0xfb,0x20,
0xfc,0x41,0xfc,0x69,0xfc,0x72,0xfc,0x98,0xfc,0xa3,0xfc,0xb8,0xfc,0x0,0xfd,0xeb,
0xfc,0xab,0xfd,0x7f,0xfd,0x9f,0xfe,0x88,0xfe,0xbb,0xff,0xcc,0xff,0xcf,0x0,0x3,
0x1,0xc3,0x1,0xf1,0x1,0x9d,0x2,0x9f,0x2,0x63,0x3,0x43,0x3,0xc,0x4,0xe4,
0x3,0x97,0x4,0x6f,0x4,0xfe,0x4,0xd6,0x4,0x32,0x5,0x4,0x5,0x3b,0x5,0x8,
0x5,0x45,0x5,0xe,0x5,0x5a,0x5,0x1e,0x5,0x34,0x5,0x2,0x5,0x9e,0x4,0x76,
0x4,0xa9,0x3,0x7f,0x3,0x93,0x2,0x64,0x2,0x8b,0x1,0x60,0x1,0xaa,0x0,0x8d,
0x0,0xff,0xff,0xf4,0xff,0x76,0xff,0x70,0xff,0xc9,0xfe,0xc4,0xfe,0xcc,0xfd,0xc4,
0xfd,0x94,0xfc,0x77,0xfc,0x46,0xfb,0x22,0xfb,0x23,0xfa,0x21,0xfa,0x94,0xf9,0xc1,
0xf9,0xc5,0xf9,0x2,0xfa,0x57,0xfa,0x84,0xfa,0xbc,0xfa,0xe1,0xfa,0xd8,0xfa,0xd,
0xfb,0x1,0xfb,0x3e,0xfb,0x79,0xfb,0xa2,0xfb,0x37,0xfc,0x48,0xfc,0x1d,0xfd,0x2f,
0xfd,0x1d,0xfe,0x4d,0xfe,0x2f,0xff,0x73,0xff,0x2f,0x0,0x5f,0x0,0xfe,0x0,0xc,
0x1,0xbd,0x1,0xb1,0x1,0x9c,0x2,0x80,0x2,0x82,0x3,0x6e,0x3,0x33,0x4,0x37,
0x4,0x91,0x4,0xae,0x4,0xb4,0x4,0xd8,0x4,0xc5,0x4,0xd1,0x4,0xcf,0x4,0xaf,
0x4,0xc6,0x4,0x87,0x4,0xa2,0x4,0x68,0x4,0x68,0x4,0x51,0x4,0x1b,0x4,0x21,
0x4,0xa5,0x3,0xaa,0x3,0xe5,0x2,0xda,0x2,0xef,0x1,0xd3,0x1,0xa,0x1,0xe7,
0x0,0x70,0x0,0x55,0x0,0x13,0x0,0xfe,0xff,0x99,0xff,0x89,0xff,0xd5,0xfe,0xd7,
0xfe,0xb,0xfe,0x26,0xfe,0x83,0xfd,0xa9,0xfd,0x2d,0xfd,0x4f,0xfd,0xe6,0xfc,0xfd,
0xfc,0xb3,0xfc,0xc7,0xfc,0xa8,0xfc,0xc2,0xfc,0xae,0xfc,0xc7,0xfc,0x96,0xfc,0x9f,
0xfc,0x54,0xfc,0x5b,0xfc,0x21,0xfc,0x3c,0xfc,0x45,0xfc,0x63,0xfc,0xd4,0xfc,0xd9,
0xfc,0x97,0xfd,0x8b,0xfd,0x49,0xfe,0x3a,0xfe,0xd4,0xfe,0xc0,0xfe,0x58,0xff,0x38,
0xff,0xe2,0xff,0xba,0xff,0x5f,0x0,0x40,0x0,0xe4,0x0,0xd2,0x0,0xa1,0x1,0x86,
0x1,0x75,0x2,0x52,0x2,0xfc,0x2,0xea,0x2,0xff,0x2,0xf9,0x2,0xa9,0x2,0xa3,
0x2,0x5a,0x2,0x5b,0x2,0x53,0x2,0x54,0x2,0x82,0x2,0x68,0x2,0x9d,0x2,0x68,
0x2,0x7a,0x2,0x44,0x2,0x2b,0x2,0x5,0x2,0xc4,0x1,0xb0,0x1,0x44,0x1,0x3e,
0x1,0xbf,0x0,0xcb,0x0,0x5e,0x0,0x80,0x0,0x34,0x0,0x64,0x0,0x16,0x0,0x4f,
0x0,0xc5,0xff,0x0,0x0,0x44,0xff,0x6a,0xff,0xd0,0xfe,0xd1,0xfe,0x74,0xfe,0x67,
0xfe,0x1b,0xfe,0x20,0xfe,0xdf,0xfd,0xf5,0xfd,0xd3,0xfd,0xf0,0xfd,0xe5,0xfd,0x1,
0xfe,0xf5,0xfd,0x11,0xfe,0xe6,0xfd,0xb,0xfe,0xbf,0xfd,0xe8,0xfd,0xac,0xfd,0xd8,
0xfd,0xd4,0xfd,0x9,0xfe,0x50,0xfe,0x79,0xfe,0x6,0xff,0xc,0xff,0xb7,0xff,0x9c,
0xff,0x37,0x0,0x5,0x0,0x8e,0x0,0x52,0x0,0xc8,0x0,0x8d,0x0,0xf2,0x0,0xb3,
0x0,0x24,0x1,0xe1,0x0,0x83,0x1,0x4a,0x1,0x5,0x2,0xef,0x1,0x77,0x2,0x85,
0x2,0xb3,0x2,0xba,0x2,0xb5,0x2,0x95,0x2,0x9b,0x2,0x66,0x2,0x8d,0x2,0x67,
0x2,0x94,0x2,0x96,0x2,0x80,0x2,0xb2,0x2,0x24,0x2,0x64,0x2,0x86,0x1,0xa2,
0x1,0xdf,0x0,0xcd,0x0,0x5f,0x0,0x4d,0x0,0x15,0x0,0x2d,0x0,0xf1,0xff,0x2a,
0x0,0xbc,0xff,0x3,0x0,0x48,0xff,0x91,0xff,0x9a,0xfe,0xd0,0xfe,0xe6,0xfd,0xf7,
0xfd,0x68,0xfd,0x5d,0xfd,0x36,0xfd,0x2f,0xfd,0x31,0xfd,0x45,0xfd,0x27,0xfd,0x42,
0xfd,0xea,0xfc,0xf6,0xfc,0x73,0xfc,0x80,0xfc,0xfe,0xfb,0x15,0xfc,0xd5,0xfb,0xe0,
0xfb,0x8,0xfc,0x0,0xfc,0x84,0xfc,0x6a,0xfc,0x26,0xfd,0x6,0xfd,0xd7,0xfd,0xbd,
0xfd,0x92,0xfe,0x75,0xfe,0x41,0xff,0x1c,0xff,0xc8,0xff,0x9f,0xff,0x34,0x0,0xfe,
0xff,0xbc,0x0,0x80,0x0,0x8f,0x1,0x59,0x1,0x90,0x2,0x4c,0x2,0x60,0x3,0xf,
0x3,0xc8,0x3,0x8e,0x3,0xe8,0x3,0xc9,0x3,0xe8,0x3,0xc7,0x3,0xd4,0x3,0xa4,
0x3,0xb4,0x3,0x8d,0x3,0xa7,0x3,0xa3,0x3,0xb2,0x3,0xca,0x3,0xaa,0x3,0xc9,
0x3,0x73,0x3,0x93,0x3,0x15,0x3,0x3a,0x3,0xa5,0x2,0xc9,0x2,0x31,0x2,0x44,
0x2,0xaa,0x1,0xb0,0x1,0xf5,0x0,0x8,0x1,0x1e,0x0,0x4e,0x0,0x49,0xff,0x88,
0xff,0x86,0xfe,0xbb,0xfe,0xd0,0xfd,0xf9,0xfd,0x25,0xfd,0x59,0xfd,0x8d,0xfc,0xce,
0xfc,0xe,0xfc,0x4a,0xfc,0xa6,0xfb,0xd9,0xfb,0x70,0xfb,0x8d,0xfb,0x76,0xfb,0x72,
0xfb,0x95,0xfb,0x87,0xfb,0xc5,0xfb,0xb6,0xfb,0x20,0xfc,0xc,0xfc,0xa8,0xfc,0xa0,
0xfc,0x48,0xfd,0x51,0xfd,0xfa,0xfd,0x3,0xfe,0xc8,0xfe,0xbd,0xfe,0x9e,0xff,0x6b,
0xff,0x43,0x0,0xfb,0xff,0xb4,0x0,0x80,0x0,0x3d,0x1,0x18,0x1,0xf8,0x1,0xcc,
0x1,0xa1,0x2,0x6f,0x2,0xf1,0x2,0xc8,0x2,0xf0,0x2,0xd5,0x2,0xdd,0x2,0xc0,
0x2,0xda,0x2,0xb8,0x2,0xea,0x2,0xd7,0x2,0xfa,0x2,0x1,0x3,0xec,0x2,0xfb,
0x2,0xb0,0x2,0xb2,0x2,0x5b,0x2,0x4d,0x2,0x5,0x2,0xff,0x1,0xae,0x1,0xcc,
0x1,0x41,0x1,0x86,0x1,0xb5,0x0,0xc,0x1,0x20,0x0,0x6c,0x0,0xa1,0xff,0xd9,
0xff,0x40,0xff,0x76,0xff,0xf0,0xfe,0x2f,0xff,0x94,0xfe,0xd8,0xfe,0x21,0xfe,0x63,
0xfe,0xb9,0xfd,0xe7,0xfd,0x8c,0xfd,0x9c,0xfd,0xa3,0xfd,0x9f,0xfd,0xdc,0xfd,0xce,
0xfd,0x3,0xfe,0xf7,0xfd,0x5,0xfe,0x3,0xfe,0xf7,0xfd,0xf7,0xfd,0x3,0xfe,0xf7,
0xfd,0x4d,0xfe,0x28,0xfe,0xdd,0xfe,0xa7,0xfe,0x9c,0xff,0x6a,0xff,0x4f,0x0,0x1d,
0x0,0xb5,0x0,0x7e,0x0,0xc6,0x0,0x99,0x0,0xb9,0x0,0x90,0x0,0xca,0x0,0x90,
0x0,0xf,0x1,0xcf,0x0,0x79,0x1,0x4b,0x1,0xdd,0x1,0xcc,0x1,0x1b,0x2,0x28,
0x2,0x21,0x2,0x3f,0x2,0xf9,0x1,0xf,0x2,0xbd,0x1,0xc1,0x1,0x85,0x1,0x8c,
0x1,0x64,0x1,0x7e,0x1,0x51,0x1,0x6c,0x1,0x1b,0x1,0x2b,0x1,0xa9,0x0,0xc0,
0x0,0x2f,0x0,0x4b,0x0,0xd6,0xff,0xde,0xff,0x76,0xff,0x6e,0xff,0xdc,0xfe,0xe6,
0xfe,0x2a,0xfe,0x63,0xfe,0xbe,0xfd,0x1c,0xfe,0xc3,0xfd,0x16,0xfe,0xa,0xfe,0x32,
0xfe,0x38,0xfe,0x50,0xfe,0x13,0xfe,0x40,0xfe,0xaf,0xfd,0xef,0xfd,0x67,0xfd,0x98,
0xfd,0x74,0xfd,0x7e,0xfd,0xb9,0xfd,0xb1,0xfd,0xb,0xfe,0x19,0xfe,0x64,0xfe,0x87,
0xfe,0xc0,0xfe,0xcc,0xfe,0x4,0xff,0xeb,0xfe,0x36,0xff,0xf,0xff,0x84,0xff,0x63,
0xff,0x6,0x0,0xea,0xff,0x96,0x0,0x7a,0x0,0x9,0x1,0xea,0x0,0x5c,0x1,0x38,
0x1,0x99,0x1,0x6e,0x1,0xc0,0x1,0x90,0x1,0xdb,0x1,0xaa,0x1,0xfc,0x1,0xc7,
0x1,0x20,0x2,0xe8,0x1,0x39,0x2,0x4,0x2,0x3f,0x2,0xf,0x2,0x2a,0x2,0xff,
0x1,0xf7,0x1,0xd0,0x1,0xb7,0x1,0x8d,0x1,0x87,0x1,0x57,0x1,0x6b,0x1,0x42,
0x1,0x4e,0x1,0x3d,0x1,0x25,0x1,0x37,0x1,0xf0,0x0,0x1f,0x1,0x9d,0x0,0xd2,
0x0,0x1b,0x0,0x4d,0x0,0x87,0xff,0xb8,0xff,0xf,0xff,0x3e,0xff,0xca,0xfe,0xf7,
0xfe,0xb2,0xfe,0xe8,0xfe,0xab,0xfe,0xea,0xfe,0x97,0xfe,0xcc,0xfe,0x66,0xfe,0x83,
0xfe,0x12,0xfe,0x24,0xfe,0xb4,0xfd,0xca,0xfd,0x8a,0xfd,0xa9,0xfd,0xc2,0xfd,0xe8,
0xfd,0x35,0xfe,0x5e,0xfe,0x82,0xfe,0xa6,0xfe,0x78,0xfe,0x84,0xfe,0x4a,0xfe,0x2f,
0xfe,0x4b,0xfe,0x17,0xfe,0x89,0xfe,0x56,0xfe,0xd8,0xfe,0xb4,0xfe,0x29,0xff,0x12,
0xff,0x8b,0xff,0x71,0xff,0xeb,0xff,0xc3,0xff,0x1a,0x0,0xf6,0xff,0x18,0x0,0xc,
0x0,0x24,0x0,0x29,0x0,0x6e,0x0,0x6e,0x0,0xdd,0x0,0xd7,0x0,0x31,0x1,0x3d,
0x1,0x4f,0x1,0x71,0x1,0x4a,0x1,0x6b,0x1,0x52,0x1,0x64,0x1,0x7f,0x1,0x8a,
0x1,0xbf,0x1,0xcb,0x1,0xfa,0x1,0x3,0x2,0x2e,0x2,0x29,0x2,0x50,0x2,0x36,
0x2,0x2c,0x2,0x11,0x2,0xa6,0x1,0xa6,0x1,0x0,0x1,0x1a,0x1,0xa1,0x0,0xb9,
0x0,0xa3,0x0,0xa7,0x0,0xbe,0x0,0xc3,0x0,0xa1,0x0,0xc4,0x0,0x3e,0x0,0x79,
0x0,0xb6,0xff,0xe2,0xff,0x23,0xff,0x28,0xff,0x8c,0xfe,0x82,0xfe,0xa,0xfe,0x15,
0xfe,0xc3,0xfd,0xde,0xfd,0xc0,0xfd,0xcd,0xfd,0xe1,0xfd,0xd8,0xfd,0xfa,0xfd,0xe7,
0xfd,0x3,0xfe,0xe2,0xfd,0x5,0xfe,0xcc,0xfd,0x4,0xfe,0xc4,0xfd,0x7,0xfe,0xe4,
0xfd,0x28,0xfe,0x28,0xfe,0x77,0xfe,0x7f,0xfe,0xe4,0xfe,0xdc,0xfe,0x4d,0xff,0x32,
0xff,0xa2,0xff,0x82,0xff,0xf2,0xff,0xd6,0xff,0x4c,0x0,0x2d,0x0,0xa8,0x0,0x83,
0x0,0xf9,0x0,0xc8,0x0,0x3e,0x1,0xfd,0x0,0x6d,0x1,0x2d,0x1,0x75,0x1,0x52,
0x1,0x62,0x1,0x68,0x1,0x6b,0x1,0x8d,0x1,0xb5,0x1,0xd3,0x1,0x14,0x2,0x21,
0x2,0x2a,0x2,0x3f,0x2,0xd0,0x1,0xfd,0x1,0x40,0x1,0x7b,0x1,0xce,0x0,0xa,
0x1,0x99,0x0,0xc9,0x0,0x91,0x0,0xa6,0x0,0x91,0x0,0x92,0x0,0x71,0x0,0x73,
0x0,0x24,0x0,0x2a,0x0,0xb2,0xff,0xb4,0xff,0x1d,0xff,0x29,0xff,0x7c,0xfe,0xa7,
0xfe,0x9,0xfe,0x41,0xfe,0xe2,0xfd,0xa,0xfe,0xe9,0xfd,0xff,0xfd,0xec,0xfd,0x2,
0xfe,0xe2,0xfd,0xfd,0xfd,0xf1,0xfd,0xf6,0xfd,0x1c,0xfe,0xf9,0xfd,0x34,0xfe,0xfe,
0xfd,0x34,0xfe,0xfc,0xfd,0x55,0xfe,0x16,0xfe,0xb9,0xfe,0x76,0xfe,0x40,0xff,0xb,
0xff,0xb4,0xff,0x9d,0xff,0xfb,0xff,0xc,0x0,0x35,0x0,0x54,0x0,0x8b,0x0,0x8f,
0x0,0xfe,0x0,0xe1,0x0,0x6f,0x1,0x4d,0x1,0xc7,0x1,0xbe,0x1,0x0,0x2,0xf,
0x2,0x21,0x2,0x28,0x2,0x34,0x2,0x1a,0x2,0x34,0x2,0xff,0x1,0x1b,0x2,0xe2,
0x1,0xee,0x1,0xc9,0x1,0xbd,0x1,0xad,0x1,0x89,0x1,0x85,0x1,0x48,0x1,0x53,
0x1,0xf6,0x0,0xa,0x1,0x9a,0x0,0xa0,0x0,0x37,0x0,0x26,0x0,0xc1,0xff,0xa1,
0xff,0x3b,0xff,0x1c,0xff,0xce,0xfe,0xb9,0xfe,0x98,0xfe,0x8e,0xfe,0x7d,0xfe,0x84,
0xfe,0x52,0xfe,0x6a,0xfe,0xd,0xfe,0x27,0xfe,0xb7,0xfd,0xc8,0xfd,0x64,0xfd,0x6c,
0xfd,0x2c,0xfd,0x39,0xfd,0x26,0xfd,0x4b,0xfd,0x5f,0xfd,0x9b,0xfd,0xca,0xfd,0xc,
0xfe,0x3c,0xfe,0x78,0xfe,0x8e,0xfe,0xc0,0xfe,0xc2,0xfe,0xf3,0xfe,0xfa,0xfe,0x2b,
0xff,0x58,0xff,0x75,0xff,0xe5,0xff,0xe7,0xff,0x83,0x0,0x76,0x0,0x6,0x1,0xf3,
0x0,0x5f,0x1,0x4b,0x1,0xb5,0x1,0xa5,0x1,0x2d,0x2,0x26,0x2,0xaa,0x2,0xb1,
0x2,0xf5,0x2,0xfc,0x2,0xfd,0x2,0xe7,0x2,0xd2,0x2,0x9e,0x2,0x95,0x2,0x63,
0x2,0x63,0x2,0x53,0x2,0x47,0x2,0x56,0x2,0x2a,0x2,0x37,0x2,0xec,0x1,0xe6,
0x1,0x83,0x1,0x7c,0x1,0x4,0x1,0x7,0x1,0x79,0x0,0x7e,0x0,0xe4,0xff,0xea,
0xff,0x60,0xff,0x66,0xff,0x5,0xff,0x9,0xff,0xbd,0xfe,0xbf,0xfe,0x5e,0xfe,0x60,
0xfe,0xe6,0xfd,0xdf,0xfd,0x77,0xfd,0x60,0xfd,0x35,0xfd,0xe,0xfd,0x2d,0xfd,0x5,
0xfd,0x51,0xfd,0x3a,0xfd,0x81,0xfd,0x7e,0xfd,0xaa,0xfd,0xb1,0xfd,0xd0,0xfd,0xd8,
0xfd,0x5,0xfe,0x4,0xfe,0x48,0xfe,0x3a,0xfe,0x90,0xfe,0x85,0xfe,0xe7,0xfe,0xef,
0xfe,0x4a,0xff,0x62,0xff,0x91,0xff,0xb0,0xff,0xac,0xff,0xd4,0xff,0xd4,0xff,0x7,
0x0,0x34,0x0,0x60,0x0,0xa6,0x0,0xbc,0x0,0xff,0x0,0x3,0x1,0x3b,0x1,0x38,
0x1,0x5f,0x1,0x60,0x1,0x65,0x1,0x76,0x1,0x4d,0x1,0x6b,0x1,0x28,0x1,0x3a,
0x1,0x7,0x1,0x4,0x1,0xf8,0x0,0xef,0x0,0x5,0x1,0xfc,0x0,0x1e,0x1,0x4,
0x1,0xd,0x1,0xdf,0x0,0xba,0x0,0x93,0x0,0x52,0x0,0x48,0x0,0xf,0x0,0xc,
0x0,0xe7,0xff,0xce,0xff,0xb8,0xff,0x92,0xff,0x83,0xff,0x63,0xff,0x56,0xff,0x48,
0xff,0x2f,0xff,0x39,0xff,0xc,0xff,0x22,0xff,0xf1,0xfe,0x1,0xff,0xe5,0xfe,0xee,
0xfe,0xef,0xfe,0xfe,0xfe,0x12,0xff,0x2b,0xff,0x45,0xff,0x5c,0xff,0x74,0xff,0x85,
0xff,0x98,0xff,0xb3,0xff,0xc9,0xff,0xf2,0xff,0x16,0x0,0x3e,0x0,0x74,0x0,0x8c,
0x0,0xbe,0x0,0xcc,0x0,0xdb,0x0,0xf0,0x0,0xd2,0x0,0xf2,0x0,0xc3,0x0,0xe2,
0x0,0xc8,0x0,0xdb,0x0,0xe9,0x0,0xe6,0x0,0x7,0x1,0xf3,0x0,0xfa,0x0,0xe5,
0x0,0xc6,0x0,0xb1,0x0,0x85,0x0,0x6c,0x0,0x4a,0x0,0x34,0x0,0x22,0x0,0xf,
0x0,0xff,0xff,0xeb,0xff,0xc0,0xff,0xb3,0xff,0x71,0xff,0x6c,0xff,0x3b,0xff,0x3b,
0xff,0x26,0xff,0x31,0xff,0x18,0xff,0x2d,0xff,0x0,0xff,0x1b,0xff,0xea,0xfe,0x6,
0xff,0xe8,0xfe,0xfb,0xfe,0xea,0xfe,0xf8,0xfe,0xdb,0xfe,0xed,0xfe,0xbd,0xfe,0xcc,
0xfe,0x9e,0xfe,0xa5,0xfe,0x8b,0xfe,0x8d,0xfe,0x9a,0xfe,0x99,0xfe,0xd5,0xfe,0xd4,
0xfe,0x2b,0xff,0x2b,0xff,0x8d,0xff,0x8a,0xff,0xfd,0xff,0xf0,0xff,0x6d,0x0,0x51,
0x0,0xc2,0x0,0x9b,0x0,0xf3,0x0,0xcb,0x0,0x15,0x1,0xe9,0x0,0x34,0x1,0x3,
0x1,0x51,0x1,0x1f,0x1,0x64,0x1,0x29,0x1,0x5d,0x1,0x1c,0x1,0x3a,0x1,0xe,
0x1,0x16,0x1,0x11,0x1,0xf,0x1,0x25,0x1,0x1b,0x1,0x2d,0x1,0x13,0x1,0x10,
0x1,0xef,0x0,0xdf,0x0,0xd6,0x0,0xcb,0x0,0xd5,0x0,0xdc,0x0,0xc3,0x0,0xe4,
0x0,0x7b,0x0,0xb5,0x0,0xb,0x0,0x4a,0x0,0x97,0xff,0xc6,0xff,0x26,0xff,0x45,
0xff,0xc2,0xfe,0xdc,0xfe,0x85,0xfe,0xa7,0xfe,0x7e,0xfe,0xb4,0xfe,0xa3,0xfe,0xef,
0xfe,0xde,0xfe,0x2b,0xff,0xa,0xff,0x45,0xff,0xe,0xff,0x3a,0xff,0xfd,0xfe,0x24,
0xff,0x7,0xff,0x21,0xff,0x3e,0xff,0x42,0xff,0x92,0xff,0x82,0xff,0xe9,0xff,0xd4,
0xff,0x2c,0x0,0x1c,0x0,0x52,0x0,0x45,0x0,0x65,0x0,0x5c,0x0,0x75,0x0,0x72,
0x0,0x8c,0x0,0x89,0x0,0xa7,0x0,0x9c,0x0,0xcc,0x0,0xa9,0x0,0xfb,0x0,0xbc,
0x0,0x1c,0x1,0xd5,0x0,0xe,0x1,0xd0,0x0,0xdd,0x0,0xa0,0x0,0xa6,0x0,0x68,
0x0,0x6b,0x0,0x39,0x0,0x37,0x0,0x13,0x0,0x24,0x0,0xfb,0xff,0x27,0x0,0xea,
0xff,0x8,0x0,0xcf,0xff,0xb3,0xff,0xa2,0xff,0x56,0xff,0x69,0xff,0x23,0xff,0x38,
0xff,0x1e,0xff,0x1c,0xff,0x2a,0xff,0x1e,0xff,0x3c,0xff,0x44,0xff,0x51,0xff,0x76,
0xff,0x56,0xff,0x8a,0xff,0x38,0xff,0x6e,0xff,0xd,0xff,0x3d,0xff,0xfd,0xfe,0x24,
0xff,0x24,0xff,0x45,0xff,0x88,0xff,0xa0,0xff,0x4,0x0,0x17,0x0,0x60,0x0,0x73,
0x0,0x8b,0x0,0x95,0x0,0xa1,0x0,0x9f,0x0,0xbf,0x0,0xb9,0x0,0xef,0x0,0xe4,
0x0,0x2a,0x1,0x16,0x1,0x63,0x1,0x45,0x1,0x92,0x1,0x6d,0x1,0xa6,0x1,0x84,
0x1,0x98,0x1,0x7d,0x1,0x79,0x1,0x5d,0x1,0x64,0x1,0x45,0x1,0x66,0x1,0x44,
0x1,0x62,0x1,0x3f,0x1,0x19,0x1,0x9,0x1,0x7e,0x0,0x8e,0x0,0xe1,0xff,0xfe,
0xff,0x92,0xff,0xa2,0xff,0x94,0xff,0x92,0xff,0xa8,0xff,0x9a,0xff,0x80,0xff,0x74,
0xff,0xb,0xff,0xf,0xff,0x87,0xfe,0xa7,0xfe,0x3c,0xfe,0x7a,0xfe,0x3b,0xfe,0x83,
0xfe,0x5b,0xfe,0x91,0xfe,0x65,0xfe,0x84,0xfe,0x50,0xfe,0x65,0xfe,0x3f,0xfe,0x4e,
0xfe,0x4a,0xfe,0x51,0xfe,0x77,0xfe,0x76,0xfe,0xcd,0xfe,0xb8,0xfe,0x3f,0xff,0x19,
0xff,0xb6,0xff,0x92,0xff,0x1f,0x0,0x8,0x0,0x6f,0x0,0x62,0x0,0xb1,0x0,0xa0,
0x0,0xfe,0x0,0xdd,0x0,0x4f,0x1,0x2b,0x1,0x8d,0x1,0x78,0x1,0xb8,0x1,0xb3,
0x1,0xe0,0x1,0xda,0x1,0xf3,0x1,0xdf,0x1,0xd9,0x1,0xbb,0x1,0xa8,0x1,0x8a,
0x1,0x9c,0x1,0x78,0x1,0xbe,0x1,0x94,0x1,0xcf,0x1,0xad,0x1,0x92,0x1,0x83,
0x1,0x26,0x1,0x22,0x1,0xd8,0x0,0xca,0x0,0xc2,0x0,0x9d,0x0,0xbb,0x0,0x97,
0x0,0x96,0x0,0x91,0x0,0x44,0x0,0x5c,0x0,0xd7,0xff,0x2,0x0,0x6d,0xff,0xa0,
0xff,0x18,0xff,0x46,0xff,0xde,0xfe,0x8,0xff,0xc4,0xfe,0xe9,0xfe,0xbf,0xfe,0xd4,
0xfe,0xb0,0xfe,0xba,0xfe,0x84,0xfe,0x8f,0xfe,0x51,0xfe,0x64,0xfe,0x46,0xfe,0x61,
0xfe,0x75,0xfe,0x8e,0xfe,0xb7,0xfe,0xbe,0xfe,0xe0,0xfe,0xce,0xfe,0xef,0xfe,0xd1,
0xfe,0x5,0xff,0xf6,0xfe,0x42,0xff,0x4d,0xff,0xa5,0xff,0xc1,0xff,0xc,0x0,0x2b,
0x0,0x49,0x0,0x64,0x0,0x4a,0x0,0x59,0x0,0x21,0x0,0x26,0x0,0xfc,0xff,0xfb,
0xff,0x7,0x0,0x0,0x0,0x49,0x0,0x44,0x0,0xa9,0x0,0xaa,0x0,0xa,0x1,0xa,
0x1,0x4e,0x1,0x45,0x1,0x5f,0x1,0x46,0x1,0x4f,0x1,0x29,0x1,0x53,0x1,0x2b,
0x1,0x88,0x1,0x6c,0x1,0xc9,0x1,0xcd,0x1,0xe4,0x1,0xb,0x2,0xd8,0x1,0xff,
0x1,0xb8,0x1,0xbe,0x1,0x81,0x1,0x70,0x1,0x33,0x1,0x29,0x1,0xe7,0x0,0xef,
0x0,0xab,0x0,0xbd,0x0,0x68,0x0,0x79,0x0,0x14,0x0,0xf,0x0,0xb4,0xff,0x91,
0xff,0x4b,0xff,0x28,0xff,0xea,0xfe,0xea,0xfe,0xae,0xfe,0xc5,0xfe,0x96,0xfe,0xa2,
0xfe,0x82,0xfe,0x77,0xfe,0x5c,0xfe,0x44,0xfe,0x33,0xfe,0x1d,0xfe,0x2e,0xfe,0x22,
0xfe,0x5a,0xfe,0x5a,0xfe,0x94,0xfe,0xa2,0xfe,0xc2,0xfe,0xd0,0xfe,0xe1,0xfe,0xe1,
0xfe,0xff,0xfe,0x0,0xff,0x3a,0xff,0x4d,0xff,0x9e,0xff,0xb4,0xff,0x2,0x0,0xe,
0x0,0x49,0x0,0x54,0x0,0x7d,0x0,0x94,0x0,0xa7,0x0,0xce,0x0,0xca,0x0,0xfc,
0x0,0xf4,0x0,0x27,0x1,0x34,0x1,0x5f,0x1,0x78,0x1,0x92,0x1,0x93,0x1,0x9f,
0x1,0x7b,0x1,0x8a,0x1,0x5e,0x1,0x78,0x1,0x69,0x1,0x81,0x1,0x89,0x1,0x9d,
0x1,0x8f,0x1,0xa9,0x1,0x67,0x1,0x8a,0x1,0x25,0x1,0x47,0x1,0xec,0x0,0xff,
0x0,0xc7,0x0,0xc3,0x0,0x9b,0x0,0x83,0x0,0x4f,0x0,0x30,0x0,0xfa,0xff,0xdf,
0xff,0xc3,0xff,0xa1,0xff,0xa0,0xff,0x6b,0xff,0x6e,0xff,0x2c,0xff,0x24,0xff,0xe1,
0xfe,0xd3,0xfe,0x96,0xfe,0x8d,0xfe,0x5b,0xfe,0x65,0xfe,0x3d,0xfe,0x5f,0xfe,0x40,
0xfe,0x6f,0xfe,0x5b,0xfe,0x82,0xfe,0x75,0xfe,0x8f,0xfe,0x7d,0xfe,0x9d,0xfe,0x8a,
0xfe,0xc4,0xfe,0xc6,0xfe,0x17,0xff,0x33,0xff,0x82,0xff,0xa2,0xff,0xd6,0xff,0xe5,
0xff,0xf8,0xff,0xfe,0xff,0xd,0x0,0x20,0x0,0x4c,0x0,0x6a,0x0,0xaf,0x0,0xc5,
0x0,0x3,0x1,0x10,0x1,0x34,0x1,0x48,0x1,0x61,0x1,0x77,0x1,0xa3,0x1,0xab,
0x1,0xea,0x1,0xe6,0x1,0x13,0x2,0x3,0x2,0x0,0x2,0xe3,0x1,0xb2,0x1,0xa3,
0x1,0x51,0x1,0x67,0x1,0x13,0x1,0x41,0x1,0xe,0x1,0x2f,0x1,0x24,0x1,0x23,
0x1,0x1e,0x1,0x2,0x1,0xd8,0x0,0xbc,0x0,0x56,0x0,0x4c,0x0,0xc4,0xff,0xce,
0xff,0x5b,0xff,0x6d,0xff,0x31,0xff,0x3b,0xff,0x25,0xff,0x21,0xff,0xf,0xff,0xfd,
0xfe,0xec,0xfe,0xca,0xfe,0xd1,0xfe,0xa0,0xfe,0xc0,0xfe,0x93,0xfe,0xab,0xfe,0x9a,
0xfe,0x93,0xfe,0xa2,0xfe,0x87,0xfe,0xa9,0xfe,0x96,0xfe,0xbf,0xfe,0xcf,0xfe,0xf1,
0xfe,0x24,0xff,0x38,0xff,0x69,0xff,0x7f,0xff,0x8c,0xff,0xab,0xff,0xa3,0xff,0xc3,
0xff,0xd3,0xff,0xf4,0xff,0x20,0x0,0x46,0x0,0x64,0x0,0x8e,0x0,0x80,0x0,0xa7,
0x0,0x90,0x0,0xa7,0x0,0xc0,0x0,0xc1,0x0,0x15,0x1,0xb,0x1,0x64,0x1,0x5e,
0x1,0x8a,0x1,0x8b,0x1,0x8d,0x1,0x8f,0x1,0x92,0x1,0x88,0x1,0xa1,0x1,0x87,
0x1,0x9b,0x1,0x7c,0x1,0x70,0x1,0x4e,0x1,0x2e,0x1,0x3,0x1,0xe8,0x0,0xbf,
0x0,0xaf,0x0,0x92,0x0,0x84,0x0,0x6a,0x0,0x5c,0x0,0x3a,0x0,0x35,0x0,0x9,
0x0,0x12,0x0,0xe3,0xff,0xeb,0xff,0xce,0xff,0xbb,0xff,0xb5,0xff,0x8d,0xff,0x91,
0xff,0x7e,0xff,0x83,0xff,0x9d,0xff,0xa4,0xff,0xc4,0xff,0xce,0xff,0xb9,0xff,0xc4,
0xff,0x70,0xff,0x7b,0xff,0x25,0xff,0x38,0xff,0x1b,0xff,0x43,0xff,0x5c,0xff,0x91,
0xff,0xad,0xff,0xd7,0xff,0xc6,0xff,0xdc,0xff,0x9a,0xff,0xa9,0xff,0x62,0xff,0x71,
0xff,0x5c,0xff,0x69,0xff,0x8e,0xff,0x9b,0xff,0xc8,0xff,0xe3,0xff,0xe8,0xff,0xf,
0x0,0xf0,0xff,0x10,0x0,0xe9,0xff,0xf9,0xff,0xdc,0xff,0xe1,0xff,0xe3,0xff,0xe1,
0xff,0xa,0x0,0x0,0x0,0x3c,0x0,0x28,0x0,0x55,0x0,0x40,0x0,0x51,0x0,0x48,
0x0,0x50,0x0,0x51,0x0,0x67,0x0,0x6a,0x0,0x92,0x0,0x8c,0x0,0xb3,0x0,0x9c,
0x0,0xaa,0x0,0x8a,0x0,0x7d,0x0,0x64,0x0,0x56,0x0,0x48,0x0,0x50,0x0,0x4d,
0x0,0x58,0x0,0x65,0x0,0x4f,0x0,0x69,0x0,0x35,0x0,0x4b,0x0,0x20,0x0,0x20,
0x0,0x1a,0x0,0xfc,0xff,0xc,0x0,0xdf,0xff,0xe9,0xff,0xc8,0xff,0xcc,0xff,0xbe,
0xff,0xd1,0xff,0xcb,0xff,0xee,0xff,0xe6,0xff,0xfe,0xff,0xf6,0xff,0xef,0xff,0xea,
0xff,0xd9,0xff,0xd4,0xff,0xe3,0xff,0xdf,0xff,0x11,0x0,0x10,0x0,0x49,0x0,0x45,
0x0,0x64,0x0,0x58,0x0,0x51,0x0,0x42,0x0,0x1d,0x0,0x1d,0x0,0xe7,0xff,0xf8,
0xff,0xcd,0xff,0xdb,0xff,0xd8,0xff,0xd5,0xff,0xfe,0xff,0xeb,0xff,0x33,0x0,0x17,
0x0,0x5f,0x0,0x4a,0x0,0x63,0x0,0x5d,0x0,0x34,0x0,0x35,0x0,0xf3,0xff,0xee,
0xff,0xcf,0xff,0xc5,0xff,0xdd,0xff,0xe0,0xff,0xf,0x0,0x34,0x0,0x53,0x0,0x8a,
0x0,0x8c,0x0,0xb1,0x0,0xa1,0x0,0xa7,0x0,0x95,0x0,0x90,0x0,0x8b,0x0,0x88,
0x0,0x94,0x0,0x92,0x0,0xa9,0x0,0xa2,0x0,0xc7,0x0,0xb5,0x0,0xea,0x0,0xc7,
0x0,0xf8,0x0,0xca,0x0,0xd7,0x0,0xb5,0x0,0x98,0x0,0x93,0x0,0x6b,0x0,0x7b,
0x0,0x5d,0x0,0x6a,0x0,0x4f,0x0,0x4c,0x0,0x20,0x0,0x17,0x0,0xd9,0xff,0xd7,
0xff,0x9a,0xff,0x9e,0xff,0x78,0xff,0x7d,0xff,0x6f,0xff,0x70,0xff,0x5f,0xff,0x5a,
0xff,0x2b,0xff,0x24,0xff,0xd9,0xfe,0xd8,0xfe,0x8c,0xfe,0x9a,0xfe,0x66,0xfe,0x82,
0xfe,0x64,0xfe,0x85,0xfe,0x76,0xfe,0x97,0xfe,0x99,0xfe,0xb7,0xfe,0xcd,0xfe,0xe1,
0xfe,0x6,0xff,0x10,0xff,0x34,0xff,0x3e,0xff,0x5e,0xff,0x69,0xff,0x98,0xff,0x99,
0xff,0xea,0xff,0xe0,0xff,0x51,0x0,0x48,0x0,0xc7,0x0,0xc3,0x0,0x3a,0x1,0x35,
0x1,0x97,0x1,0x87,0x1,0xd0,0x1,0xb8,0x1,0xe8,0x1,0xd2,0x1,0xf5,0x1,0xe6,
0x1,0x12,0x2,0xb,0x2,0x46,0x2,0x46,0x2,0x79,0x2,0x77,0x2,0x83,0x2,0x80,
0x2,0x53,0x2,0x5a,0x2,0x0,0x2,0xb,0x2,0xac,0x1,0xa8,0x1,0x66,0x1,0x52,
0x1,0x2a,0x1,0x13,0x1,0xe7,0x0,0xd7,0x0,0x8e,0x0,0x89,0x0,0x24,0x0,0x23,
0x0,0xbc,0xff,0xb4,0xff,0x6a,0xff,0x59,0xff,0x32,0xff,0x1a,0xff,0xfd,0xfe,0xe6,
0xfe,0xb3,0xfe,0xa4,0xfe,0x4e,0xfe,0x47,0xfe,0xdb,0xfd,0xdf,0xfd,0x78,0xfd,0x8b,
0xfd,0x47,0xfd,0x5e,0xfd,0x4e,0xfd,0x5c,0xfd,0x79,0xfd,0x80,0xfd,0xac,0xfd,0xaf,
0xfd,0xcb,0xfd,0xce,0xfd,0xd9,0xfd,0xe3,0xfd,0xf5,0xfd,0xd,0xfe,0x36,0xfe,0x61,
0xfe,0x9e,0xfe,0xd3,0xfe,0x26,0xff,0x51,0xff,0xb8,0xff,0xd2,0xff,0x41,0x0,0x4e,
0x0,0xb9,0x0,0xbe,0x0,0x19,0x1,0x19,0x1,0x66,0x1,0x60,0x1,0xb1,0x1,0xa1,
0x1,0xf8,0x1,0xe6,0x1,0x30,0x2,0x27,0x2,0x5d,0x2,0x5d,0x2,0x8c,0x2,0x90,
0x2,0xc2,0x2,0xc7,0x2,0xf6,0x2,0xf6,0x2,0x10,0x3,0xfb,0x2,0xf4,0x2,0xc3,
0x2,0x98,0x2,0x5f,0x2,0x1f,0x2,0xf2,0x1,0xb6,0x1,0x96,0x1,0x6c,0x1,0x56,
0x1,0x33,0x1,0x25,0x1,0xf1,0x0,0xde,0x0,0x86,0x0,0x63,0x0,0xf0,0xff,0xbf,
0xff,0x4e,0xff,0x1f,0xff,0xc8,0xfe,0xac,0xfe,0x75,0xfe,0x68,0xfe,0x4a,0xfe,0x41,
0xfe,0x29,0xfe,0x23,0xfe,0xf9,0xfd,0xfb,0xfd,0xab,0xfd,0xba,0xfd,0x52,0xfd,0x6e,
0xfd,0x24,0xfd,0x45,0xfd,0x48,0xfd,0x64,0xfd,0xab,0xfd,0xbf,0xfd,0x19,0xfe,0x32,
0xfe,0x76,0xfe,0x99,0xfe,0xc1,0xfe,0xda,0xfe,0xfc,0xfe,0x1,0xff,0x2b,0xff,0x35,
0xff,0x70,0xff,0x90,0xff,0xea,0xff,0xf,0x0,0x86,0x0,0xa2,0x0,0x12,0x1,0x2b,
0x1,0x75,0x1,0x8a,0x1,0xb8,0x1,0xb9,0x1,0xe9,0x1,0xd8,0x1,0x14,0x2,0xa,
0x2,0x39,0x2,0x46,0x2,0x54,0x2,0x69,0x2,0x57,0x2,0x5f,0x2,0x3e,0x2,0x3c,
0x2,0x16,0x2,0x1a,0x2,0xea,0x1,0xf8,0x1,0xb4,0x1,0xc1,0x1,0x71,0x1,0x67,
0x1,0x23,0x1,0xfa,0x0,0xd0,0x0,0x95,0x0,0x81,0x0,0x48,0x0,0x3a,0x0,0x9,
0x0,0xf4,0xff,0xcd,0xff,0xa4,0xff,0x8b,0xff,0x46,0xff,0x3e,0xff,0xe7,0xfe,0xea,
0xfe,0xa0,0xfe,0xa0,0xfe,0x7a,0xfe,0x72,0xfe,0x67,0xfe,0x64,0xfe,0x59,0xfe,0x68,
0xfe,0x54,0xfe,0x6d,0xfe,0x6a,0xfe,0x77,0xfe,0x9d,0xfe,0x97,0xfe,0xdb,0xfe,0xd1,
0xfe,0xb,0xff,0xc,0xff,0x26,0xff,0x32,0xff,0x3f,0xff,0x4c,0xff,0x71,0xff,0x81,
0xff,0xc8,0xff,0xe3,0xff,0x38,0x0,0x59,0x0,0xa6,0x0,0xc4,0x0,0xfc,0x0,0x13,
0x1,0x33,0x1,0x48,0x1,0x58,0x1,0x6d,0x1,0x80,0x1,0x8f,0x1,0xb7,0x1,0xb8,
0x1,0xf1,0x1,0xed,0x1,0x11,0x2,0x1a,0x2,0x0,0x2,0x1c,0x2,0xcd,0x1,0xef,
0x1,0x96,0x1,0xaa,0x1,0x6d,0x1,0x67,0x1,0x43,0x1,0x33,0x1,0x2,0x1,0x1,
0x1,0xa8,0x0,0xbe,0x0,0x4f,0x0,0x6c,0x0,0x3,0x0,0x1d,0x0,0xb9,0xff,0xd6,
0xff,0x64,0xff,0x7d,0xff,0xff,0xfe,0x6,0xff,0x90,0xfe,0x86,0xfe,0x32,0xfe,0x21,
0xfe,0xf8,0xfd,0xe5,0xfd,0xdd,0xfd,0xc9,0xfd,0xcb,0xfd,0xb7,0xfd,0xb2,0xfd,0xa0,
0xfd,0xa0,0xfd,0x8a,0xfd,0xb0,0xfd,0x85,0xfd,0xea,0xfd,0xac,0xfd,0x3c,0xfe,0x7,
0xfe,0x96,0xfe,0x78,0xfe,0xec,0xfe,0xdf,0xfe,0x3f,0xff,0x3a,0xff,0x9c,0xff,0x98,
0xff,0xe,0x0,0x1,0x0,0x84,0x0,0x72,0x0,0xe3,0x0,0xd6,0x0,0x29,0x1,0x29,
0x1,0x6a,0x1,0x77,0x1,0xb2,0x1,0xc3,0x1,0x0,0x2,0x8,0x2,0x47,0x2,0x41,
0x2,0x76,0x2,0x6e,0x2,0x8c,0x2,0x8c,0x2,0x92,0x2,0x96,0x2,0x8d,0x2,0x8c,
0x2,0x7e,0x2,0x7b,0x2,0x62,0x2,0x64,0x2,0x30,0x2,0x37,0x2,0xe1,0x1,0xe8,
0x1,0x74,0x1,0x7b,0x1,0xf4,0x0,0xfd,0x0,0x6e,0x0,0x81,0x0,0xea,0xff,0x9,
0x0,0x6b,0xff,0x8e,0xff,0x1,0xff,0x13,0xff,0xb7,0xfe,0xae,0xfe,0x7a,0xfe,0x6e,
0xfe,0x34,0xfe,0x3e,0xfe,0xee,0xfd,0x4,0xfe,0xb9,0xfd,0xc2,0xfd,0x97,0xfd,0x94,
0xfd,0x83,0xfd,0x84,0xfd,0x81,0xfd,0x8b,0xfd,0x9a,0xfd,0xa5,0xfd,0xd0,0xfd,0xda,
0xfd,0x1f,0xfe,0x27,0xfe,0x7a,0xfe,0x73,0xfe,0xcc,0xfe,0xae,0xfe,0x10,0xff,0xe5,
0xfe,0x55,0xff,0x2d,0xff,0xa9,0xff,0x8f,0xff,0x7,0x0,0xfd,0xff,0x6a,0x0,0x65,
0x0,0xd5,0x0,0xc4,0x0,0x45,0x1,0x26,0x1,0xa5,0x1,0x86,0x1,0xd2,0x1,0xcb,
0x1,0xc5,0x1,0xda,0x1,0xa2,0x1,0xc2,0x1,0x95,0x1,0xb1,0x1,0xa9,0x1,0xbc,
0x1,0xbf,0x1,0xcd,0x1,0xb2,0x1,0xc2,0x1,0x7c,0x1,0x94,0x1,0x3a,0x1,0x56,
0x1,0x7,0x1,0x1f,0x1,0xdf,0x0,0xe8,0x0,0xaa,0x0,0xa3,0x0,0x66,0x0,0x60,
0x0,0x26,0x0,0x2e,0x0,0xf9,0xff,0x9,0x0,0xda,0xff,0xdd,0xff,0xb8,0xff,0xa1,
0xff,0x84,0xff,0x5e,0xff,0x3d,0xff,0x21,0xff,0xf2,0xfe,0xea,0xfe,0xbb,0xfe,0xc0,
0xfe,0xa5,0xfe,0xb5,0xfe,0xb1,0xfe,0xc8,0xfe,0xd5,0xfe,0xea,0xfe,0x0,0xff,0x3,
0xff,0x20,0xff,0x6,0xff,0x2f,0xff,0x6,0xff,0x3f,0xff,0x21,0xff,0x66,0xff,0x5e,
0xff,0xad,0xff,0xaa,0xff,0xfe,0xff,0xee,0xff,0x33,0x0,0x1e,0x0,0x40,0x0,0x3a,
0x0,0x3a,0x0,0x4c,0x0,0x39,0x0,0x61,0x0,0x4a,0x0,0x78,0x0,0x67,0x0,0x90,
0x0,0x88,0x0,0xae,0x0,0xa8,0x0,0xc5,0x0,0xbc,0x0,0xc5,0x0,0xb0,0x0,0xae,
0x0,0x82,0x0,0x8a,0x0,0x51,0x0,0x6b,0x0,0x3a,0x0,0x63,0x0,0x42,0x0,0x6f,
0x0,0x56,0x0,0x7d,0x0,0x5a,0x0,0x79,0x0,0x40,0x0,0x5b,0x0,0x17,0x0,0x32,
0x0,0x3,0x0,0x1c,0x0,0x10,0x0,0x1a,0x0,0x21,0x0,0x16,0x0,0x17,0x0,0x3,
0x0,0xf4,0xff,0xe0,0xff,0xce,0xff,0xba,0xff,0xb4,0xff,0x9d,0xff,0xab,0xff,0x8d,
0xff,0xb9,0xff,0x93,0xff,0xe1,0xff,0xb7,0xff,0xf,0x0,0xe9,0xff,0x23,0x0,0x0,
0x0,0x16,0x0,0xec,0xff,0xfc,0xff,0xce,0xff,0xf2,0xff,0xcf,0xff,0x4,0x0,0xf3,
0xff,0x23,0x0,0x1f,0x0,0x39,0x0,0x37,0x0,0x40,0x0,0x35,0x0,0x3b,0x0,0x26,
0x0,0x2d,0x0,0x16,0x0,0x16,0x0,0x5,0x0,0xfe,0xff,0xf7,0xff,0xf7,0xff,0xfb,
0xff,0xa,0x0,0x1b,0x0,0x26,0x0,0x42,0x0,0x32,0x0,0x48,0x0,0x23,0x0,0x28,
0x0,0xfd,0xff,0x4,0x0,0xdd,0xff,0xf7,0xff,0xe0,0xff,0x4,0x0,0x0,0x0,0x20,
0x0,0x25,0x0,0x3b,0x0,0x37,0x0,0x48,0x0,0x28,0x0,0x3b,0x0,0x6,0x0,0x20,
0x0,0xe8,0xff,0xc,0x0,0xdd,0xff,0x8,0x0,0xee,0xff,0xa,0x0,0xd,0x0,0x11,
0x0,0x21,0x0,0x21,0x0,0x22,0x0,0x30,0x0,0x16,0x0,0x2c,0x0,0xfc,0xff,0xb,
0x0,0xd8,0xff,0xd8,0xff,0xba,0xff,0xab,0xff,0xb2,0xff,0x96,0xff,0xc2,0xff,0x9b,
0xff,0xdc,0xff,0xb3,0xff,0xed,0xff,0xcc,0xff,0xee,0xff,0xce,0xff,0xe5,0xff,0xc2,
0xff,0xe0,0xff,0xc2,0xff,0xee,0xff,0xd8,0xff,0xe,0x0,0xf2,0xff,0x2a,0x0,0x1,
0x0,0x33,0x0,0xa,0x0,0x33,0x0,0x17,0x0,0x3a,0x0,0x2d,0x0,0x47,0x0,0x47,
0x0,0x4b,0x0,0x4f,0x0,0x41,0x0,0x3d,0x0,0x28,0x0,0x23,0x0,0xd,0x0,0x15,
0x0,0xc,0x0,0x1f,0x0,0x25,0x0,0x3c,0x0,0x3c,0x0,0x52,0x0,0x39,0x0,0x4c,
0x0,0x1d,0x0,0x27,0x0,0xf3,0xff,0xf9,0xff,0xcb,0xff,0xdb,0xff,0xb1,0xff,0xd5,
0xff,0xa9,0xff,0xd4,0xff,0xaf,0xff,0xca,0xff,0xb3,0xff,0xbd,0xff,0xaf,0xff,0xb8,
0xff,0xb6,0xff,0xc8,0xff,0xd3,0xff,0xeb,0xff,0xfa,0xff,0xb,0x0,0xc,0x0,0x10,
0x0,0xf7,0xff,0xf6,0xff,0xd0,0xff,0xd3,0xff,0xc8,0xff,0xca,0xff,0xf2,0xff,0xe7,
0xff,0x2c,0x0,0x13,0x0,0x4d,0x0,0x34,0x0,0x50,0x0,0x39,0x0,0x4f,0x0,0x2c,
0x0,0x5b,0x0,0x28,0x0,0x6c,0x0,0x3b,0x0,0x74,0x0,0x5b,0x0,0x75,0x0,0x72,
0x0,0x7b,0x0,0x79,0x0,0x88,0x0,0x7d,0x0,0x8d,0x0,0x82,0x0,0x74,0x0,0x75,
0x0,0x3b,0x0,0x4a,0x0,0xf7,0xff,0xd,0x0,0xbd,0xff,0xd2,0xff,0x8e,0xff,0xa5,
0xff,0x6d,0xff,0x86,0xff,0x5b,0xff,0x6e,0xff,0x4e,0xff,0x55,0xff,0x34,0xff,0x38,
0xff,0x10,0xff,0x1c,0xff,0xf7,0xfe,0x5,0xff,0xfb,0xfe,0x0,0xff,0x1a,0xff,0x14,
0xff,0x41,0xff,0x39,0xff,0x62,0xff,0x65,0xff,0x8a,0xff,0x98,0xff,0xc6,0xff,0xce,
0xff,0x6,0x0,0x1,0x0,0x2f,0x0,0x2b,0x0,0x3d,0x0,0x4a,0x0,0x4d,0x0,0x62,
0x0,0x74,0x0,0x7f,0x0,0xaf,0x0,0xa5,0x0,0xe6,0x0,0xcf,0x0,0xc,0x1,0xf5,
0x0,0x24,0x1,0x14,0x1,0x3a,0x1,0x2e,0x1,0x50,0x1,0x4b,0x1,0x62,0x1,0x65,
0x1,0x60,0x1,0x65,0x1,0x41,0x1,0x41,0x1,0xe,0x1,0x8,0x1,0xde,0x0,0xd5,
0x0,0xaf,0x0,0xb1,0x0,0x7c,0x0,0x8d,0x0,0x4a,0x0,0x59,0x0,0x13,0x0,0xf,
0x0,0xc0,0xff,0xb6,0xff,0x57,0xff,0x5d,0xff,0xf8,0xfe,0xd,0xff,0xc2,0xfe,0xd0,
0xfe,0xba,0xfe,0xb1,0xfe,0xc7,0xfe,0xaf,0xfe,0xc5,0xfe,0xb6,0xfe,0xaa,0xfe,0xac,
0xfe,0x7e,0xfe,0x8a,0xfe,0x58,0xfe,0x61,0xfe,0x4f,0xfe,0x4f,0xfe,0x68,0xfe,0x5d,
0xfe,0x98,0xfe,0x8c,0xfe,0xd8,0xfe,0xd8,0xfe,0x26,0xff,0x2f,0xff,0x78,0xff,0x7b,
0xff,0xbf,0xff,0xb8,0xff,0xfe,0xff,0xe9,0xff,0x3f,0x0,0x1a,0x0,0x7d,0x0,0x55,
0x0,0xb1,0x0,0x92,0x0,0xdf,0x0,0xc9,0x0,0x8,0x1,0xfa,0x0,0x31,0x1,0x29,
0x1,0x5d,0x1,0x59,0x1,0x87,0x1,0x88,0x1,0xa5,0x1,0xab,0x1,0xa8,0x1,0xb4,
0x1,0x89,0x1,0x9e,0x1,0x54,0x1,0x68,0x1,0x1c,0x1,0x25,0x1,0xed,0x0,0xf1,
0x0,0xca,0x0,0xd2,0x0,0xa8,0x0,0xb5,0x0,0x79,0x0,0x87,0x0,0x3b,0x0,0x48,
0x0,0xf7,0xff,0x8,0x0,0xbb,0xff,0xce,0xff,0x8d,0xff,0x9b,0xff,0x64,0xff,0x69,
0xff,0x2e,0xff,0x31,0xff,0xec,0xfe,0xf7,0xfe,0xaf,0xfe,0xc7,0xfe,0x8c,0xfe,0xa5,
0xfe,0x8e,0xfe,0x94,0xfe,0xa5,0xfe,0x95,0xfe,0xba,0xfe,0x9e,0xfe,0xbe,0xfe,0xa0,
0xfe,0xb8,0xfe,0x9c,0xfe,0xb5,0xfe,0x9e,0xfe,0xc4,0xfe,0xb4,0xfe,0xec,0xfe,0xe3,
0xfe,0x24,0xff,0x25,0xff,0x63,0xff,0x64,0xff,0x9b,0xff,0x8f,0xff,0xc7,0xff,0xaa,
0xff,0xf8,0xff,0xd6,0xff,0x3d,0x0,0x21,0x0,0x93,0x0,0x81,0x0,0xed,0x0,0xe5,
0x0,0x38,0x1,0x3e,0x1,0x61,0x1,0x74,0x1,0x66,0x1,0x7f,0x1,0x54,0x1,0x72,
0x1,0x43,0x1,0x66,0x1,0x4a,0x1,0x67,0x1,0x64,0x1,0x76,0x1,0x77,0x1,0x8d,
0x1,0x70,0x1,0x96,0x1,0x45,0x1,0x78,0x1,0xfb,0x0,0x2d,0x1,0xa4,0x0,0xc8,
0x0,0x50,0x0,0x68,0x0,0x9,0x0,0x16,0x0,0xc9,0xff,0xc9,0xff,0x87,0xff,0x80,
0xff,0x42,0xff,0x35,0xff,0xf9,0xfe,0xe3,0xfe,0xae,0xfe,0x96,0xfe,0x72,0xfe,0x59,
0xfe,0x49,0xfe,0x27,0xfe,0x33,0xfe,0x4,0xfe,0x2f,0xfe,0xfb,0xfd,0x3b,0xfe,0xf,
0xfe,0x50,0xfe,0x34,0xfe,0x6c,0xfe,0x59,0xfe,0x8b,0xfe,0x7a,0xfe,0xb0,0xfe,0xa4,
0xfe,0xec,0xfe,0xe1,0xfe,0x48,0xff,0x33,0xff,0xb9,0xff,0x94,0xff,0x20,0x0,0xf2,
0xff,0x61,0x0,0x42,0x0,0x86,0x0,0x8a,0x0,0xb3,0x0,0xd4,0x0,0xfa,0x0,0x27,
0x1,0x53,0x1,0x7a,0x1,0xa4,0x1,0xc0,0x1,0xdb,0x1,0xf3,0x1,0x1,0x2,0x18,
0x2,0x14,0x2,0x2a,0x2,0xb,0x2,0x29,0x2,0xec,0x1,0x19,0x2,0xc9,0x1,0x2,
0x2,0xa6,0x1,0xde,0x1,0x76,0x1,0xa1,0x1,0x25,0x1,0x45,0x1,0xb3,0x0,0xd0,
0x0,0x34,0x0,0x52,0x0,0xbf,0xff,0xd8,0xff,0x5d,0xff,0x6d,0xff,0x16,0xff,0x17,
0xff,0xe4,0xfe,0xd2,0xfe,0xb7,0xfe,0x98,0xfe,0x7e,0xfe,0x5c,0xfe,0x38,0xfe,0x1b,
0xfe,0xf9,0xfd,0xe0,0xfd,0xe1,0xfd,0xc2,0xfd,0xfe,0xfd,0xd2,0xfd,0x3b,0xfe,0x3,
0xfe,0x70,0xfe,0x30,0xfe,0x85,0xfe,0x45,0xfe,0x85,0xfe,0x4e,0xfe,0x95,0xfe,0x72,
0xfe,0xd6,0xfe,0xc7,0xfe,0x4d,0xff,0x44,0xff,0xdf,0xff,0xcd,0xff,0x61,0x0,0x49,
0x0,0xbd,0x0,0xa6,0x0,0xf5,0x0,0xee,0x0,0x20,0x1,0x36,0x1,0x58,0x1,0x80,
0x1,0x96,0x1,0xc0,0x1,0xc5,0x1,0xef,0x1,0xdc,0x1,0x5,0x2,0xe2,0x1,0x1,
0x2,0xdd,0x1,0xee,0x1,0xc2,0x1,0xd0,0x1,0x8d,0x1,0xa5,0x1,0x4b,0x1,0x6e,
0x1,0x12,0x1,0x30,0x1,0xe7,0x0,0xf9,0x0,0xb9,0x0,0xc4,0x0,0x75,0x0,0x85,
0x0,0x1b,0x0,0x33,0x0,0xc3,0xff,0xd7,0xff,0x78,0xff,0x80,0xff,0x38,0xff,0x38,
0xff,0x5,0xff,0x0,0xff,0xe2,0xfe,0xd5,0xfe,0xc5,0xfe,0xac,0xfe,0x9f,0xfe,0x7b,
0xfe,0x6c,0xfe,0x4c,0xfe,0x3f,0xfe,0x32,0xfe,0x35,0xfe,0x2e,0xfe,0x4a,0xfe,0x32,
0xfe,0x5d,0xfe,0x3c,0xfe,0x68,0xfe,0x53,0xfe,0x88,0xfe,0x7e,0xfe,0xd3,0xfe,0xc1,
0xfe,0x35,0xff,0x15,0xff,0x8c,0xff,0x6e,0xff,0xc7,0xff,0xc1,0xff,0xf5,0xff,0x9,
0x0,0x2c,0x0,0x45,0x0,0x6a,0x0,0x7a,0x0,0xa7,0x0,0xb5,0x0,0xe9,0x0,0xf8,
0x0,0x37,0x1,0x3e,0x1,0x8d,0x1,0x82,0x1,0xd7,0x1,0xc2,0x1,0xfa,0x1,0xf0,
0x1,0xf0,0x1,0xfe,0x1,0xd2,0x1,0xec,0x1,0xb5,0x1,0xcc,0x1,0x9e,0x1,0xae,
0x1,0x8c,0x1,0x97,0x1,0x74,0x1,0x7b,0x1,0x4e,0x1,0x50,0x1,0x13,0x1,0xd,
0x1,0xc4,0x0,0xb4,0x0,0x6f,0x0,0x5c,0x0,0x1e,0x0,0xf,0x0,0xcb,0xff,0xc6,
0xff,0x6c,0xff,0x76,0xff,0x10,0xff,0x1f,0xff,0xce,0xfe,0xd3,0xfe,0xaa,0xfe,0x9d,
0xfe,0x8f,0xfe,0x79,0xfe,0x69,0xfe,0x5f,0xfe,0x41,0xfe,0x4a,0xfe,0x29,0xfe,0x40,
0xfe,0x2e,0xfe,0x46,0xfe,0x46,0xfe,0x53,0xfe,0x5c,0xfe,0x61,0xfe,0x6d,0xfe,0x77,
0xfe,0x8c,0xfe,0x9e,0xfe,0xbd,0xfe,0xd6,0xfe,0x0,0xff,0x21,0xff,0x58,0xff,0x74,
0xff,0xbd,0xff,0xcd,0xff,0x1e,0x0,0x25,0x0,0x67,0x0,0x68,0x0,0x95,0x0,0x92,
0x0,0xbf,0x0,0xbe,0x0,0xfe,0x0,0xfe,0x0,0x51,0x1,0x4f,0x1,0xa6,0x1,0x9e,
0x1,0xe5,0x1,0xd3,0x1,0x2,0x2,0xe8,0x1,0x6,0x2,0xf1,0x1,0x4,0x2,0xf1,
0x1,0xf8,0x1,0xe1,0x1,0xd5,0x1,0xb9,0x1,0x9c,0x1,0x79,0x1,0x5b,0x1,0x2d,
0x1,0x1b,0x1,0xe8,0x0,0xdb,0x0,0xa9,0x0,0x90,0x0,0x6f,0x0,0x2e,0x0,0x30,
0x0,0xb6,0xff,0xd5,0xff,0x3b,0xff,0x5c,0xff,0xd8,0xfe,0xe8,0xfe,0xac,0xfe,0xa8,
0xfe,0xb7,0xfe,0xab,0xfe,0xd2,0xfe,0xd2,0xfe,0xd7,0xfe,0xec,0xfe,0xc0,0xfe,0xe3,
0xfe,0xa4,0xfe,0xc5,0xfe,0xa1,0xfe,0xb6,0xfe,0xbd,0xfe,0xcd,0xfe,0xeb,0xfe,0x0,
0xff,0x1d,0xff,0x3a,0xff,0x51,0xff,0x76,0xff,0x8f,0xff,0xb4,0xff,0xd2,0xff,0xea,
0xff,0xa,0x0,0x16,0x0,0x34,0x0,0x36,0x0,0x59,0x0,0x59,0x0,0x86,0x0,0x8c,
0x0,0xba,0x0,0xc3,0x0,0xe5,0x0,0xe8,0x0,0xff,0x0,0xfb,0x0,0x9,0x1,0x4,
0x1,0x5,0x1,0x2,0x1,0xf7,0x0,0xf0,0x0,0xe5,0x0,0xcc,0x0,0xca,0x0,0xa4,
0x0,0xa5,0x0,0x82,0x0,0x7e,0x0,0x60,0x0,0x51,0x0,0x33,0x0,0x23,0x0,0x0,
0x0,0xfb,0xff,0xd5,0xff,0xd3,0xff,0xb7,0xff,0xac,0xff,0xa4,0xff,0x8e,0xff,0x94,
0xff,0x78,0xff,0x7f,0xff,0x6e,0xff,0x6c,0xff,0x6e,0xff,0x66,0xff,0x73,0xff,0x6f,
0xff,0x7a,0xff,0x81,0xff,0x83,0xff,0x96,0xff,0x86,0xff,0xa6,0xff,0x89,0xff,0xb0,
0xff,0x91,0xff,0xb6,0xff,0x9d,0xff,0xb7,0xff,0xa5,0xff,0xb8,0xff,0xa5,0xff,0xbb,
0xff,0xaa,0xff,0xc0,0xff,0xc1,0xff,0xd0,0xff,0xe7,0xff,0xee,0xff,0x11,0x0,0x10,
0x0,0x35,0x0,0x2e,0x0,0x4a,0x0,0x41,0x0,0x59,0x0,0x4b,0x0,0x6b,0x0,0x5a,
0x0,0x80,0x0,0x74,0x0,0x9f,0x0,0x97,0x0,0xc7,0x0,0xbb,0x0,0xf1,0x0,0xd7,
0x0,0x14,0x1,0xee,0x0,0x20,0x1,0xfd,0x0,0xa,0x1,0xf8,0x0,0xe6,0x0,0xde,
0x0,0xc7,0x0,0xbf,0x0,0xb0,0x0,0xa5,0x0,0xa8,0x0,0x97,0x0,0xaa,0x0,0x98,
0x0,0xa9,0x0,0x9e,0x0,0x9c,0x0,0x97,0x0,0x77,0x0,0x76,0x0,0x36,0x0,0x41,
0x0,0xf3,0xff,0xe,0x0,0xcb,0xff,0xf3,0xff,0xbe,0xff,0xf0,0xff,0xb9,0xff,0xef,
0xff,0xa5,0xff,0xd3,0xff,0x70,0xff,0x95,0xff,0x2b,0xff,0x47,0xff,0xf5,0xfe,0x6,
0xff,0xdc,0xfe,0xe2,0xfe,0xe2,0xfe,0xdf,0xfe,0xf8,0xfe,0xf1,0xfe,0x7,0xff,0x1,
0xff,0x2,0xff,0x0,0xff,0xef,0xfe,0xef,0xfe,0xe3,0xfe,0xe1,0xfe,0xf3,0xfe,0xed,
0xfe,0x24,0xff,0x16,0xff,0x66,0xff,0x4e,0xff,0xac,0xff,0x87,0xff,0xef,0xff,0xbf,
0xff,0x2d,0x0,0xf6,0xff,0x61,0x0,0x2a,0x0,0x8c,0x0,0x5c,0x0,0xbc,0x0,0x92,
0x0,0xfa,0x0,0xd4,0x0,0x3d,0x1,0x1f,0x1,0x78,0x1,0x5f,0x1,0x9d,0x1,0x89,
0x1,0xb4,0x1,0xa3,0x1,0xcf,0x1,0xbf,0x1,0xeb,0x1,0xe3,0x1,0xf3,0x1,0xff,
0x1,0xd7,0x1,0xf9,0x1,0x9a,0x1,0xc9,0x1,0x4e,0x1,0x82,0x1,0x5,0x1,0x31,
0x1,0xc3,0x0,0xe5,0x0,0x8a,0x0,0xab,0x0,0x52,0x0,0x7b,0x0,0xf,0x0,0x3f,
0x0,0xbe,0xff,0xec,0xff,0x6b,0xff,0x91,0xff,0x26,0xff,0x47,0xff,0xfa,0xfe,0x19,
0xff,0xe6,0xfe,0xfe,0xfe,0xdc,0xfe,0xe7,0xfe,0xc9,0xfe,0xcd,0xfe,0xa9,0xfe,0xaf,
0xfe,0x90,0xfe,0x98,0xfe,0x91,0xfe,0x91,0xfe,0xac,0xfe,0x9b,0xfe,0xd5,0xfe,0xb3,
0xfe,0xfa,0xfe,0xd3,0xfe,0x16,0xff,0xfb,0xfe,0x30,0xff,0x25,0xff,0x57,0xff,0x48,
0xff,0x93,0xff,0x71,0xff,0xdd,0xff,0xb5,0xff,0x2a,0x0,0xe,0x0,0x79,0x0,0x6a,
0x0,0xc3,0x0,0xb9,0x0,0xfb,0x0,0xed,0x0,0x1b,0x1,0x8,0x1,0x2a,0x1,0x18,
0x1,0x36,0x1,0x27,0x1,0x47,0x1,0x3e,0x1,0x56,0x1,0x59,0x1,0x59,0x1,0x5f,
0x1,0x4a,0x1,0x4e,0x1,0x29,0x1,0x32,0x1,0xff,0x0,0xd,0x1,0xd0,0x0,0xe5,
0x0,0x9c,0x0,0xbe,0x0,0x6c,0x0,0x93,0x0,0x44,0x0,0x66,0x0,0x1c,0x0,0x3c,
0x0,0xf2,0xff,0x14,0x0,0xc7,0xff,0xeb,0xff,0xa3,0xff,0xbb,0xff,0x8c,0xff,0x86,
0xff,0x79,0xff,0x60,0xff,0x66,0xff,0x4a,0xff,0x54,0xff,0x39,0xff,0x3a,0xff,0x28,
0xff,0x21,0xff,0x1d,0xff,0x1e,0xff,0x20,0xff,0x37,0xff,0x34,0xff,0x61,0xff,0x51,
0xff,0x8f,0xff,0x71,0xff,0xb7,0xff,0x92,0xff,0xd3,0xff,0xad,0xff,0xe8,0xff,0xc9,
0xff,0x1,0x0,0xec,0xff,0x26,0x0,0x19,0x0,0x53,0x0,0x4e,0x0,0x82,0x0,0x84,
0x0,0xac,0x0,0xac,0x0,0xc6,0x0,0xc0,0x0,0xc9,0x0,0xc5,0x0,0xba,0x0,0xc3,
0x0,0xa6,0x0,0xc3,0x0,0x9d,0x0,0xc1,0x0,0xa1,0x0,0xbb,0x0,0xa9,0x0,0xb5,
0x0,0xa9,0x0,0xab,0x0,0x92,0x0,0x95,0x0,0x64,0x0,0x71,0x0,0x30,0x0,0x47,
0x0,0x7,0x0,0x23,0x0,0xf2,0xff,0xb,0x0,0xf1,0xff,0xfd,0xff,0xf8,0xff,0xf1,
0xff,0xf5,0xff,0xe1,0xff,0xde,0xff,0xd2,0xff,0xc0,0xff,0xc8,0xff,0xae,0xff,0xc4,
0xff,0xaf,0xff,0xc0,0xff,0xbf,0xff,0xbb,0xff,0xce,0xff,0xb7,0xff,0xd2,0xff,0xba,
0xff,0xce,0xff,0xc6,0xff,0xcb,0xff,0xd2,0xff,0xca,0xff,0xd5,0xff,0xcd,0xff,0xce,
0xff,0xd6,0xff,0xc8,0xff,0xeb,0xff,0xd5,0xff,0x14,0x0,0xfa,0xff,0x44,0x0,0x2d,
0x0,0x61,0x0,0x5a,0x0,0x60,0x0,0x6a,0x0,0x46,0x0,0x59,0x0,0x2f,0x0,0x3a,
0x0,0x34,0x0,0x2d,0x0,0x50,0x0,0x44,0x0,0x6f,0x0,0x74,0x0,0x7f,0x0,0x94,
0x0,0x78,0x0,0x91,0x0,0x64,0x0,0x78,0x0,0x52,0x0,0x59,0x0,0x45,0x0,0x3e,
0x0,0x3f,0x0,0x33,0x0,0x41,0x0,0x36,0x0,0x3b,0x0,0x3b,0x0,0x2f,0x0,0x3a,
0x0,0x20,0x0,0x2e,0x0,0xb,0x0,0x13,0x0,0xf3,0xff,0xf1,0xff,0xe4,0xff,0xda,
0xff,0xdc,0xff,0xd6,0xff,0xdb,0xff,0xdb,0xff,0xdf,0xff,0xde,0xff,0xe2,0xff,0xdd,
0xff,0xe1,0xff,0xda,0xff,0xd9,0xff,0xd7,0xff,0xcb,0xff,0xd0,0xff,0xc5,0xff,0xc6,
0xff,0xd1,0xff,0xc6,0xff,0xe8,0xff,0xd7,0xff,0xfb,0xff,0xed,0xff,0xfe,0xff,0xf2,
0xff,0xf1,0xff,0xe2,0xff,0xe9,0xff,0xcf,0xff,0xf6,0xff,0xd7,0xff,0x15,0x0,0x0,
0x0,0x37,0x0,0x35,0x0,0x4c,0x0,0x5c,0x0,0x54,0x0,0x69,0x0,0x57,0x0,0x64,
0x0,0x5c,0x0,0x59,0x0,0x60,0x0,0x52,0x0,0x60,0x0,0x50,0x0,0x62,0x0,0x58,
0x0,0x6a,0x0,0x69,0x0,0x72,0x0,0x73,0x0,0x6a,0x0,0x6c,0x0,0x4c,0x0,0x54,
0x0,0x24,0x0,0x31,0x0,0x3,0x0,0xf,0x0,0xf2,0xff,0xf3,0xff,0xea,0xff,0xe5,
0xff,0xe4,0xff,0xea,0xff,0xdf,0xff,0xfb,0xff,0xd9,0xff,0x9,0x0,0xd3,0xff,0x8,
0x0,0xca,0xff,0xf3,0xff,0xbf,0xff,0xd8,0xff,0xc2,0xff,0xd0,0xff,0xd8,0xff,0xe6,
0xff,0xf6,0xff,0x10,0x0,0x12,0x0,0x2e,0x0,0x27,0x0,0x32,0x0,0x2f,0x0,0x28,
0x0,0x30,0x0,0x1d,0x0,0x33,0x0,0x1b,0x0,0x39,0x0,0x2b,0x0,0x4c,0x0,0x45,
0x0,0x67,0x0,0x59,0x0,0x78,0x0,0x62,0x0,0x76,0x0,0x5f,0x0,0x69,0x0,0x55,
0x0,0x5c,0x0,0x4d,0x0,0x5f,0x0,0x4a,0x0,0x70,0x0,0x50,0x0,0x82,0x0,0x5e,
0x0,0x8b,0x0,0x67,0x0,0x81,0x0,0x63,0x0,0x60,0x0,0x4f,0x0,0x32,0x0,0x28,
0x0,0x5,0x0,0xfe,0xff,0xec,0xff,0xe3,0xff,0xef,0xff,0xdb,0xff,0xf4,0xff,0xd9,
0xff,0xe1,0xff,0xcc,0xff,0xb4,0xff,0xac,0xff,0x86,0xff,0x84,0xff,0x6d,0xff,0x65,
0xff,0x6a,0xff,0x5a,0xff,0x70,0xff,0x67,0xff,0x76,0xff,0x7f,0xff,0x7c,0xff,0x90,
0xff,0x85,0xff,0x9c,0xff,0x90,0xff,0xa7,0xff,0x99,0xff,0xb0,0xff,0xa2,0xff,0xb9,
0xff,0xb5,0xff,0xcc,0xff,0xd4,0xff,0xee,0xff,0xf9,0xff,0x16,0x0,0x21,0x0,0x41,
0x0,0x49,0x0,0x6c,0x0,0x73,0x0,0x96,0x0,0x9a,0x0,0xbb,0x0,0xbc,0x0,0xda,
0x0,0xd9,0x0,0xf4,0x0,0xfb,0x0,0x14,0x1,0x25,0x1,0x39,0x1,0x48,0x1,0x55,
0x1,0x57,0x1,0x5e,0x1,0x55,0x1,0x51,0x1,0x4b,0x1,0x36,0x1,0x3d,0x1,0x19,
0x1,0x2f,0x1,0x4,0x1,0x1f,0x1,0xf5,0x0,0x0,0x1,0xe0,0x0,0xce,0x0,0xb5,
0x0,0x8a,0x0,0x76,0x0,0x3c,0x0,0x2a,0x0,0xed,0xff,0xd9,0xff,0xa6,0xff,0x8e,
0xff,0x6f,0xff,0x52,0xff,0x47,0xff,0x2a,0xff,0x23,0xff,0xd,0xff,0xfc,0xfe,0xea,
0xfe,0xcc,0xfe,0xbc,0xfe,0x98,0xfe,0x8e,0xfe,0x6d,0xfe,0x6e,0xfe,0x5d,0xfe,0x63,
0xfe,0x71,0xfe,0x73,0xfe,0xa1,0xfe,0x9b,0xfe,0xd2,0xfe,0xcd,0xfe,0xf2,0xfe,0xfd,
0xfe,0xb,0xff,0x2a,0xff,0x32,0xff,0x5c,0xff,0x78,0xff,0x9e,0xff,0xd4,0xff,0xed,
0xff,0x2c,0x0,0x3f,0x0,0x74,0x0,0x87,0x0,0xa5,0x0,0xbd,0x0,0xc5,0x0,0xe3,
0x0,0xeb,0x0,0xa,0x1,0x1c,0x1,0x37,0x1,0x55,0x1,0x60,0x1,0x8b,0x1,0x82,
0x1,0xab,0x1,0x9b,0x1,0xad,0x1,0x9f,0x1,0x9e,0x1,0x93,0x1,0x8e,0x1,0x84,
0x1,0x88,0x1,0x75,0x1,0x88,0x1,0x61,0x1,0x72,0x1,0x42,0x1,0x3e,0x1,0x14,
0x1,0xf4,0x0,0xd9,0x0,0xa3,0x0,0x97,0x0,0x5a,0x0,0x53,0x0,0x1c,0x0,0x10,
0x0,0xe6,0xff,0xd8,0xff,0xb8,0xff,0xac,0xff,0x8e,0xff,0x8b,0xff,0x65,0xff,0x6b,
0xff,0x34,0xff,0x41,0xff,0xf4,0xfe,0x8,0xff,0xb4,0xfe,0xca,0xfe,0x85,0xfe,0x9c,
0xfe,0x72,0xfe,0x88,0xfe,0x80,0xfe,0x8c,0xfe,0xa0,0xfe,0xa4,0xfe,0xbb,0xfe,0xc4,
0xfe,0xc4,0xfe,0xdc,0xfe,0xbe,0xfe,0xe8,0xfe,0xbd,0xfe,0xee,0xfe,0xe1,0xfe,0xff,
0xfe,0x2a,0xff,0x31,0xff,0x85,0xff,0x81,0xff,0xe3,0xff,0xde,0xff,0x32,0x0,0x38,
0x0,0x71,0x0,0x85,0x0,0xaf,0x0,0xbf,0x0,0xee,0x0,0xed,0x0,0x27,0x1,0x11,
0x1,0x56,0x1,0x34,0x1,0x79,0x1,0x60,0x1,0x9b,0x1,0x8e,0x1,0xb8,0x1,0xb0,
0x1,0xc4,0x1,0xb6,0x1,0xc1,0x1,0xa1,0x1,0xb1,0x1,0x83,0x1,0x91,0x1,0x68,
0x1,0x62,0x1,0x4b,0x1,0x2c,0x1,0x22,0x1,0xf8,0x0,0xf2,0x0,0xc3,0x0,0xbe,
0x0,0x84,0x0,0x7d,0x0,0x35,0x0,0x2a,0x0,0xd9,0xff,0xcd,0xff,0x7f,0xff,0x7d,
0xff,0x3f,0xff,0x46,0xff,0x17,0xff,0x22,0xff,0xf5,0xfe,0x3,0xff,0xcc,0xfe,0xde,
0xfe,0x9e,0xfe,0xb4,0xfe,0x7e,0xfe,0x96,0xfe,0x74,0xfe,0x8b,0xfe,0x77,0xfe,0x8e,
0xfe,0x85,0xfe,0x9d,0xfe,0xa1,0xfe,0xb6,0xfe,0xc6,0xfe,0xd6,0xfe,0xf2,0xfe,0xfb,
0xfe,0x24,0xff,0x25,0xff,0x5e,0xff,0x5c,0xff,0xa8,0xff,0xaa,0xff,0xfa,0xff,0xff,
0xff,0x42,0x0,0x47,0x0,0x7e,0x0,0x7e,0x0,0xb9,0x0,0xae,0x0,0xfc,0x0,0xe8,
0x0,0x46,0x1,0x31,0x1,0x89,0x1,0x7a,0x1,0xbd,0x1,0xb0,0x1,0xe4,0x1,0xd2,
0x1,0xfb,0x1,0xde,0x1,0xf7,0x1,0xd8,0x1,0xd4,0x1,0xc3,0x1,0xa5,0x1,0xa1,
0x1,0x7c,0x1,0x7f,0x1,0x55,0x1,0x5d,0x1,0x1f,0x1,0x27,0x1,0xce,0x0,0xd1,
0x0,0x6d,0x0,0x6a,0x0,0x14,0x0,0xc,0x0,0xc8,0xff,0xc4,0xff,0x7a,0xff,0x86,
0xff,0x27,0xff,0x3d,0xff,0xda,0xfe,0xed,0xfe,0x99,0xfe,0xa2,0xfe,0x68,0xfe,0x6b,
0xfe,0x43,0xfe,0x4c,0xfe,0x2c,0xfe,0x39,0xfe,0x24,0xfe,0x2b,0xfe,0x24,0xfe,0x25,
0xfe,0x27,0xfe,0x27,0xfe,0x2e,0xfe,0x2f,0xfe,0x3e,0xfe,0x4a,0xfe,0x66,0xfe,0x7c,
0xfe,0xae,0xfe,0xc1,0xfe,0x9,0xff,0x16,0xff,0x68,0xff,0x6a,0xff,0xc2,0xff,0xb5,
0xff,0xe,0x0,0xfd,0xff,0x52,0x0,0x47,0x0,0x9a,0x0,0x97,0x0,0xf2,0x0,0xf1,
0x0,0x5a,0x1,0x4b,0x1,0xbb,0x1,0xa1,0x1,0xf9,0x1,0xe7,0x1,0x11,0x2,0xf,
0x2,0x10,0x2,0x17,0x2,0x7,0x2,0xc,0x2,0x0,0x2,0x0,0x2,0xf7,0x1,0xf8,
0x1,0xe5,0x1,0xe9,0x1,0xbf,0x1,0xbf,0x1,0x80,0x1,0x78,0x1,0x2a,0x1,0x22,
0x1,0xcb,0x0,0xcb,0x0,0x73,0x0,0x7b,0x0,0x27,0x0,0x30,0x0,0xe1,0xff,0xe1,
0xff,0x95,0xff,0x89,0xff,0x42,0xff,0x2d,0xff,0xee,0xfe,0xdc,0xfe,0xa2,0xfe,0x9d,
0xfe,0x5e,0xfe,0x63,0xfe,0x1d,0xfe,0x25,0xfe,0xe7,0xfd,0xe9,0xfd,0xbf,0xfd,0xbc,
0xfd,0xa8,0xfd,0xab,0xfd,0xa8,0xfd,0xb9,0xfd,0xbe,0xfd,0xde,0xfd,0xe5,0xfd,0xe,
0xfe,0x1d,0xfe,0x3d,0xfe,0x60,0xfe,0x6b,0xfe,0xac,0xfe,0xa6,0xfe,0x4,0xff,0xf8,
0xfe,0x64,0xff,0x62,0xff,0xca,0xff,0xdb,0xff,0x35,0x0,0x53,0x0,0x9b,0x0,0xba,
0x0,0xfa,0x0,0xe,0x1,0x51,0x1,0x54,0x1,0x97,0x1,0x94,0x1,0xcb,0x1,0xc8,
0x1,0xf4,0x1,0xf2,0x1,0x14,0x2,0x17,0x2,0x32,0x2,0x34,0x2,0x4c,0x2,0x41,
0x2,0x53,0x2,0x3e,0x2,0x3e,0x2,0x24,0x2,0xf,0x2,0xf7,0x1,0xcb,0x1,0xbe,
0x1,0x7d,0x1,0x7a,0x1,0x2e,0x1,0x29,0x1,0xdf,0x0,0xd2,0x0,0x89,0x0,0x73,
0x0,0x29,0x0,0xf,0x0,0xc1,0xff,0xa8,0xff,0x52,0xff,0x41,0xff,0xe5,0xfe,0xe3,
0xfe,0x89,0xfe,0x95,0xfe,0x3d,0xfe,0x54,0xfe,0x1,0xfe,0x1a,0xfe,0xe1,0xfd,0xf0,
0xfd,0xdf,0xfd,0xde,0xfd,0xe7,0xfd,0xdf,0xfd,0xe7,0xfd,0xe3,0xfd,0xe1,0xfd,0xe6,
0xfd,0xed,0xfd,0xf4,0xfd,0x21,0xfe,0x24,0xfe,0x7d,0xfe,0x7f,0xfe,0xec,0xfe,0xf4,
0xfe,0x5a,0xff,0x67,0xff,0xba,0xff,0xca,0xff,0xb,0x0,0x1a,0x0,0x54,0x0,0x5e,
0x0,0x9f,0x0,0xa6,0x0,0xf4,0x0,0xf9,0x0,0x52,0x1,0x58,0x1,0xac,0x1,0xb1,
0x1,0xef,0x1,0xf0,0x1,0x13,0x2,0x12,0x2,0x1d,0x2,0x1e,0x2,0x18,0x2,0x1c,
0x2,0xa,0x2,0x13,0x2,0xf4,0x1,0xff,0x1,0xd9,0x1,0xda,0x1,0xb3,0x1,0xac,
0x1,0x7a,0x1,0x77,0x1,0x2f,0x1,0x34,0x1,0xd9,0x0,0xe0,0x0,0x83,0x0,0x84,
0x0,0x33,0x0,0x2c,0x0,0xe9,0xff,0xde,0xff,0x9f,0xff,0x9a,0xff,0x50,0xff,0x57,
0xff,0xfc,0xfe,0xa,0xff,0xae,0xfe,0xb5,0xfe,0x72,0xfe,0x6c,0xfe,0x4a,0xfe,0x3f,
0xfe,0x33,0xfe,0x2a,0xfe,0x27,0xfe,0x20,0xfe,0x1d,0xfe,0x13,0xfe,0x12,0xfe,0x2,
0xfe,0x9,0xfe,0xf5,0xfd,0x10,0xfe,0xfa,0xfd,0x38,0xfe,0x25,0xfe,0x86,0xfe,0x76,
0xfe,0xe8,0xfe,0xd8,0xfe,0x49,0xff,0x35,0xff,0x9e,0xff,0x7f,0xff,0xe9,0xff,0xc1,
0xff,0x30,0x0,0x11,0x0,0x78,0x0,0x6f,0x0,0xc6,0x0,0xce,0x0,0x15,0x1,0x20,
0x1,0x53,0x1,0x59,0x1,0x78,0x1,0x7a,0x1,0x8c,0x1,0x94,0x1,0x9e,0x1,0xb4,
0x1,0xb0,0x1,0xd6,0x1,0xbe,0x1,0xe9,0x1,0xbf,0x1,0xe3,0x1,0xab,0x1,0xca,
0x1,0x88,0x1,0xa3,0x1,0x5c,0x1,0x71,0x1,0x26,0x1,0x39,0x1,0xe4,0x0,0xf5,
0x0,0x98,0x0,0xa6,0x0,0x48,0x0,0x57,0x0,0xff,0xff,0x8,0x0,0xb6,0xff,0xb8,
0xff,0x6b,0xff,0x6e,0xff,0x23,0xff,0x27,0xff,0xdb,0xfe,0xe2,0xfe,0x96,0xfe,0xa4,
0xfe,0x62,0xfe,0x68,0xfe,0x43,0xfe,0x37,0xfe,0x32,0xfe,0x19,0xfe,0x28,0xfe,0x8,
0xfe,0x1c,0xfe,0x0,0xfe,0x14,0xfe,0x4,0xfe,0x23,0xfe,0x1b,0xfe,0x52,0xfe,0x49,
0xfe,0x97,0xfe,0x85,0xfe,0xdb,0xfe,0xc1,0xfe,0xd,0xff,0xf8,0xfe,0x3e,0xff,0x34,
0xff,0x7d,0xff,0x7b,0xff,0xcb,0xff,0xce,0xff,0x24,0x0,0x29,0x0,0x7b,0x0,0x83,
0x0,0xc7,0x0,0xd5,0x0,0x8,0x1,0x1d,0x1,0x3f,0x1,0x5a,0x1,0x6b,0x1,0x85,
0x1,0x92,0x1,0x9f,0x1,0xb0,0x1,0xb2,0x1,0xc1,0x1,0xc4,0x1,0xc6,0x1,0xd3,
0x1,0xbe,0x1,0xd8,0x1,0xad,0x1,0xcd,0x1,0x98,0x1,0xad,0x1,0x7a,0x1,0x7c,
0x1,0x4c,0x1,0x44,0x1,0x9,0x1,0x1,0x1,0xb7,0x0,0xb5,0x0,0x66,0x0,0x68,
0x0,0x1b,0x0,0x1b,0x0,0xd0,0xff,0xcd,0xff,0x83,0xff,0x7d,0xff,0x30,0xff,0x2b,
0xff,0xd9,0xfe,0xda,0xfe,0x8e,0xfe,0x96,0xfe,0x57,0xfe,0x5e,0xfe,0x30,0xfe,0x2f,
0xfe,0xe,0xfe,0x9,0xfe,0xf2,0xfd,0xf0,0xfd,0xe6,0xfd,0xe6,0xfd,0xf2,0xfd,0xf1,
0xfd,0x15,0xfe,0x10,0xfe,0x46,0xfe,0x3d,0xfe,0x7e,0xfe,0x79,0xfe,0xbf,0xfe,0xc1,
0xfe,0x9,0xff,0xe,0xff,0x56,0xff,0x59,0xff,0xa2,0xff,0xa2,0xff,0xee,0xff,0xed,
0xff,0x3f,0x0,0x40,0x0,0x94,0x0,0x9a,0x0,0xe7,0x0,0xf0,0x0,0x2f,0x1,0x38,
0x1,0x68,0x1,0x71,0x1,0x9c,0x1,0x9e,0x1,0xd0,0x1,0xc7,0x1,0xfe,0x1,0xf5,
0x1,0x22,0x2,0x21,0x2,0x35,0x2,0x3a,0x2,0x2c,0x2,0x34,0x2,0x3,0x2,0xa,
0x2,0xc1,0x1,0xc4,0x1,0x77,0x1,0x7a,0x1,0x33,0x1,0x37,0x1,0xf5,0x0,0xfb,
0x0,0xb1,0x0,0xba,0x0,0x60,0x0,0x66,0x0,0xfd,0xff,0xfd,0xff,0x8b,0xff,0x88,
0xff,0x1d,0xff,0x19,0xff,0xc0,0xfe,0xc0,0xfe,0x79,0xfe,0x7e,0xfe,0x46,0xfe,0x4b,
0xfe,0x1e,0xfe,0x1f,0xfe,0xf5,0xfd,0xf1,0xfd,0xcd,0xfd,0xc3,0xfd,0xaf,0xfd,0xa6,
0xfd,0xa7,0xfd,0xa4,0xfd,0xbd,0xfd,0xc1,0xfd,0xef,0xfd,0xfb,0xfd,0x35,0xfe,0x46,
0xfe,0x84,0xfe,0x9a,0xfe,0xd7,0xfe,0xf3,0xfe,0x2f,0xff,0x4a,0xff,0x8a,0xff,0x9d,
0xff,0xed,0xff,0xfa,0xff,0x60,0x0,0x66,0x0,0xd5,0x0,0xdb,0x0,0x30,0x1,0x43,
0x1,0x71,0x1,0x8a,0x1,0xa3,0x1,0xb6,0x1,0xd5,0x1,0xdb,0x1,0xf,0x2,0x4,
0x2,0x3f,0x2,0x2a,0x2,0x50,0x2,0x40,0x2,0x3f,0x2,0x34,0x2,0x15,0x2,0xb,
0x2,0xe4,0x1,0xd4,0x1,0xb4,0x1,0x9b,0x1,0x7e,0x1,0x61,0x1,0x3a,0x1,0x22,
0x1,0xe8,0x0,0xd2,0x0,0x8a,0x0,0x72,0x0,0x25,0x0,0xb,0x0,0xc0,0xff,0xa6,
0xff,0x5e,0xff,0x4a,0xff,0x3,0xff,0xf8,0xfe,0xad,0xfe,0xae,0xfe,0x5c,0xfe,0x6a,
0xfe,0x19,0xfe,0x2b,0xfe,0xe6,0xfd,0xf3,0xfd,0xc0,0xfd,0xc6,0xfd,0xa9,0xfd,0xaa,
0xfd,0xa5,0xfd,0xa4,0xfd,0xb8,0xfd,0xba,0xfd,0xdf,0xfd,0xe9,0xfd,0x15,0xfe,0x27,
0xfe,0x4f,0xfe,0x67,0xfe,0x8d,0xfe,0xa8,0xfe,0xd1,0xfe,0xea,0xfe,0x20,0xff,0x2f,
0xff,0x7b,0xff,0x87,0xff,0xde,0xff,0xf1,0xff,0x43,0x0,0x5c,0x0,0xa0,0x0,0xbb,
0x0,0xef,0x0,0xb,0x1,0x31,0x1,0x47,0x1,0x70,0x1,0x77,0x1,0xb4,0x1,0xaa,
0x1,0xf6,0x1,0xe0,0x1,0x2b,0x2,0xe,0x2,0x46,0x2,0x27,0x2,0x3c,0x2,0x26,
0x2,0x19,0x2,0xa,0x2,0xe9,0x1,0xd9,0x1,0xb6,0x1,0x9f,0x1,0x84,0x1,0x67,
0x1,0x50,0x1,0x31,0x1,0xe,0x1,0xf7,0x0,0xc0,0x0,0xb2,0x0,0x67,0x0,0x60,
0x0,0x3,0x0,0x7,0x0,0x9c,0xff,0xa9,0xff,0x3e,0xff,0x4c,0xff,0xf2,0xfe,0xfd,
0xfe,0xb5,0xfe,0xc0,0xfe,0x7d,0xfe,0x90,0xfe,0x48,0xfe,0x67,0xfe,0x1f,0xfe,0x3c,
0xfe,0x8,0xfe,0x1c,0xfe,0x3,0xfe,0x10,0xfe,0xc,0xfe,0x14,0xfe,0x19,0xfe,0x26,
0xfe,0x2c,0xfe,0x43,0xfe,0x4d,0xfe,0x6a,0xfe,0x81,0xfe,0x9d,0xfe,0xc9,0xfe,0xd9,
0xfe,0x17,0xff,0x18,0xff,0x63,0xff,0x5e,0xff,0xae,0xff,0xab,0xff,0xf7,0xff,0xfa,
0xff,0x3b,0x0,0x46,0x0,0x80,0x0,0x8d,0x0,0xc9,0x0,0xd3,0x0,0x17,0x1,0x1b,
0x1,0x5e,0x1,0x5b,0x1,0x95,0x1,0x8c,0x1,0xbb,0x1,0xb2,0x1,0xd2,0x1,0xce,
0x1,0xdf,0x1,0xe2,0x1,0xe0,0x1,0xde,0x1,0xcb,0x1,0xb8,0x1,0xa0,0x1,0x7e,
0x1,0x6f,0x1,0x46,0x1,0x3f,0x1,0x1c,0x1,0xb,0x1,0xfa,0x0,0xca,0x0,0xce,
0x0,0x7a,0x0,0x8b,0x0,0x24,0x0,0x38,0x0,0xd5,0xff,0xe2,0xff,0x90,0xff,0x99,
0xff,0x53,0xff,0x61,0xff,0x1b,0xff,0x32,0xff,0xe5,0xfe,0x6,0xff,0xb4,0xfe,0xda,
0xfe,0x8c,0xfe,0xaf,0xfe,0x6d,0xfe,0x8e,0xfe,0x5a,0xfe,0x78,0xfe,0x50,0xfe,0x68,
0xfe,0x56,0xfe,0x67,0xfe,0x72,0xfe,0x79,0xfe,0x9b,0xfe,0x9d,0xfe,0xca,0xfe,0xd1,
0xfe,0xff,0xfe,0xb,0xff,0x2f,0xff,0x3c,0xff,0x5d,0xff,0x64,0xff,0x94,0xff,0x8e,
0xff,0xd7,0xff,0xc5,0xff,0x26,0x0,0xc,0x0,0x79,0x0,0x5c,0x0,0xbe,0x0,0xa3,
0x0,0xec,0x0,0xd4,0x0,0x7,0x1,0xed,0x0,0x1b,0x1,0xf9,0x0,0x30,0x1,0xa,
0x1,0x48,0x1,0x26,0x1,0x5d,0x1,0x44,0x1,0x64,0x1,0x51,0x1,0x59,0x1,0x48,
0x1,0x43,0x1,0x2f,0x1,0x23,0x1,0xf,0x1,0xf3,0x0,0xe5,0x0,0xb2,0x0,0xad,
0x0,0x67,0x0,0x6c,0x0,0x1c,0x0,0x2f,0x0,0xe0,0xff,0xfd,0xff,0xb6,0xff,0xd5,
0xff,0x94,0xff,0xaf,0xff,0x72,0xff,0x84,0xff,0x45,0xff,0x50,0xff,0xc,0xff,0x15,
0xff,0xd1,0xfe,0xdf,0xfe,0xa4,0xfe,0xba,0xfe,0x95,0xfe,0xac,0xfe,0xa3,0xfe,0xb1,
0xfe,0xbc,0xfe,0xc2,0xfe,0xd3,0xfe,0xd0,0xfe,0xe0,0xfe,0xdc,0xfe,0xe9,0xfe,0xec,
0xfe,0xfc,0xfe,0x4,0xff,0x21,0xff,0x2b,0xff,0x59,0xff,0x60,0xff,0x9f,0xff,0x9c,
0xff,0xe5,0xff,0xdb,0xff,0x23,0x0,0x1f,0x0,0x5a,0x0,0x62,0x0,0x89,0x0,0x9d,
0x0,0xb8,0x0,0xcf,0x0,0xec,0x0,0xfe,0x0,0x1b,0x1,0x28,0x1,0x3b,0x1,0x45,
0x1,0x49,0x1,0x53,0x1,0x47,0x1,0x51,0x1,0x3d,0x1,0x42,0x1,0x2e,0x1,0x2c,
0x1,0x15,0x1,0xc,0x1,0xf5,0x0,0xe6,0x0,0xd1,0x0,0xbc,0x0,0xa7,0x0,0x91,
0x0,0x7b,0x0,0x67,0x0,0x4f,0x0,0x40,0x0,0x25,0x0,0x14,0x0,0xfc,0xff,0xe3,
0xff,0xd0,0xff,0xb3,0xff,0xa4,0xff,0x85,0xff,0x79,0xff,0x59,0xff,0x4f,0xff,0x33,
0xff,0x2d,0xff,0x15,0xff,0x14,0xff,0xfe,0xfe,0x0,0xff,0xeb,0xfe,0xf0,0xfe,0xdc,
0xfe,0xe4,0xfe,0xd3,0xfe,0xe3,0xfe,0xd7,0xfe,0xf6,0xfe,0xee,0xfe,0x19,0xff,0x1a,
0xff,0x40,0xff,0x4b,0xff,0x62,0xff,0x79,0xff,0x7e,0xff,0x9f,0xff,0x9a,0xff,0xbd,
0xff,0xbb,0xff,0xda,0xff,0xe7,0xff,0xfe,0xff,0x15,0x0,0x29,0x0,0x3c,0x0,0x55,
0x0,0x5d,0x0,0x7a,0x0,0x79,0x0,0x92,0x0,0x8c,0x0,0x9d,0x0,0x98,0x0,0xa5,
0x0,0xa3,0x0,0xb1,0x0,0xad,0x0,0xc0,0x0,0xb5,0x0,0xcb,0x0,0xbe,0x0,0xcd,
0x0,0xc4,0x0,0xcc,0x0,0xc6,0x0,0xcc,0x0,0xc0,0x0,0xcc,0x0,0xb6,0x0,0xc2,
0x0,0xa9,0x0,0xad,0x0,0x91,0x0,0x8b,0x0,0x6d,0x0,0x63,0x0,0x47,0x0,0x3d,
0x0,0x27,0x0,0x20,0x0,0x11,0x0,0xa,0x0,0x4,0x0,0xf8,0xff,0xf6,0xff,0xe5,
0xff,0xdf,0xff,0xcd,0xff,0xc1,0xff,0xb1,0xff,0x9f,0xff,0x95,0xff,0x82,0xff,0x80,
0xff,0x6b,0xff,0x71,0xff,0x57,0xff,0x63,0xff,0x4a,0xff,0x52,0xff,0x43,0xff,0x42,
0xff,0x40,0xff,0x3a,0xff,0x44,0xff,0x3b,0xff,0x46,0xff,0x41,0xff,0x41,0xff,0x46,
0xff,0x3d,0xff,0x4c,0xff,0x46,0xff,0x57,0xff,0x5f,0xff,0x6e,0xff,0x89,0xff,0x91,
0xff,0xb5,0xff,0xb5,0xff,0xd5,0xff,0xd1,0xff,0xed,0xff,0xeb,0xff,0x3,0x0,0x9,
0x0,0x21,0x0,0x2a,0x0,0x48,0x0,0x4d,0x0,0x6c,0x0,0x6c,0x0,0x83,0x0,0x80,
0x0,0x8d,0x0,0x88,0x0,0x92,0x0,0x85,0x0,0x99,0x0,0x86,0x0,0xa5,0x0,0x91,
0x0,0xb2,0x0,0xa0,0x0,0xb8,0x0,0xac,0x0,0xae,0x0,0xa6,0x0,0x95,0x0,0x8d,
0x0,0x78,0x0,0x6f,0x0,0x5d,0x0,0x55,0x0,0x47,0x0,0x42,0x0,0x35,0x0,0x32,
0x0,0x21,0x0,0x1b,0x0,0x5,0x0,0xfe,0xff,0xe3,0xff,0xe2,0xff,0xc4,0xff,0xc6,
0xff,0xa9,0xff,0xab,0xff,0x8c,0xff,0x96,0xff,0x70,0xff,0x82,0xff,0x5d,0xff,0x6f,
0xff,0x58,0xff,0x66,0xff,0x63,0xff,0x6f,0xff,0x7d,0xff,0x87,0xff,0x97,0xff,0xa7,
0xff,0xa5,0xff,0xbf,0xff,0xab,0xff,0xc9,0xff,0xae,0xff,0xcc,0xff,0xb8,0xff,0xd6,
0xff,0xd2,0xff,0xec,0xff,0xf4,0xff,0x7,0x0,0x12,0x0,0x20,0x0,0x27,0x0,0x32,
0x0,0x30,0x0,0x3a,0x0,0x30,0x0,0x39,0x0,0x31,0x0,0x34,0x0,0x30,0x0,0x2f,
0x0,0x33,0x0,0x2b,0x0,0x3e,0x0,0x2c,0x0,0x4b,0x0,0x34,0x0,0x55,0x0,0x3f,
0x0,0x5c,0x0,0x47,0x0,0x60,0x0,0x47,0x0,0x61,0x0,0x44,0x0,0x5f,0x0,0x40,
0x0,0x5a,0x0,0x3a,0x0,0x54,0x0,0x33,0x0,0x4a,0x0,0x28,0x0,0x35,0x0,0x10,
0x0,0x19,0x0,0xf5,0xff,0x1,0x0,0xe5,0xff,0xf6,0xff,0xe6,0xff,0xf8,0xff,0xf5,
0xff,0xff,0xff,0x5,0x0,0x3,0x0,0x4,0x0,0xfc,0xff,0xf1,0xff,0xe8,0xff,0xda,
0xff,0xd7,0xff,0xd2,0xff,0xd9,0xff,0xe2,0xff,0xec,0xff,0x4,0x0,0x3,0x0,0x26,
0x0,0x15,0x0,0x36,0x0,0x16,0x0,0x31,0x0,0xb,0x0,0x23,0x0,0xff,0xff,0x17,
0x0,0xf9,0xff,0x15,0x0,0xfe,0xff,0x1a,0x0,0xa,0x0,0x26,0x0,0x15,0x0,0x31,
0x0,0x1b,0x0,0x34,0x0,0x16,0x0,0x2d,0x0,0xa,0x0,0x1e,0x0,0x1,0x0,0x11,
0x0,0x1,0x0,0xa,0x0,0x9,0x0,0x8,0x0,0x12,0x0,0x7,0x0,0x14,0x0,0x1,
0x0,0xb,0x0,0xf5,0xff,0xf9,0xff,0xe5,0xff,0xe7,0xff,0xd5,0xff,0xd8,0xff,0xc9,
0xff,0xcb,0xff,0xbc,0xff,0xc5,0xff,0xb3,0xff,0xca,0xff,0xb6,0xff,0xd6,0xff,0xc4,
0xff,0xe2,0xff,0xd7,0xff,0xe9,0xff,0xe6,0xff,0xea,0xff,0xee,0xff,0xf0,0xff,0xf5,
0xff,0x0,0x0,0x4,0x0,0x12,0x0,0x14,0x0,0x21,0x0,0x25,0x0,0x2b,0x0,0x35,
0x0,0x37,0x0,0x46,0x0,0x42,0x0,0x59,0x0,0x4d,0x0,0x6a,0x0,0x59,0x0,0x75,
0x0,0x66,0x0,0x7c,0x0,0x6e,0x0,0x7c,0x0,0x6d,0x0,0x77,0x0,0x67,0x0,0x72,
0x0,0x63,0x0,0x6c,0x0,0x63,0x0,0x64,0x0,0x63,0x0,0x5a,0x0,0x59,0x0,0x4c,
0x0,0x42,0x0,0x38,0x0,0x1c,0x0,0x17,0x0,0xeb,0xff,0xe5,0xff,0xbc,0xff,0xb0,
0xff,0x97,0xff,0x86,0xff,0x7f,0xff,0x6a,0xff,0x6e,0xff,0x57,0xff,0x5d,0xff,0x49,
0xff,0x4b,0xff,0x3b,0xff,0x37,0xff,0x32,0xff,0x29,0xff,0x31,0xff,0x2a,0xff,0x35,
0xff,0x37,0xff,0x41,0xff,0x48,0xff,0x53,0xff,0x5e,0xff,0x63,0xff,0x76,0xff,0x79,
0xff,0x8f,0xff,0x97,0xff,0xad,0xff,0xb9,0xff,0xce,0xff,0xdf,0xff,0xee,0xff,0x6,
0x0,0x11,0x0,0x29,0x0,0x39,0x0,0x4c,0x0,0x6a,0x0,0x74,0x0,0x9e,0x0,0xa3,
0x0,0xcc,0x0,0xd4,0x0,0xf0,0x0,0xfb,0x0,0xd,0x1,0x13,0x1,0x21,0x1,0x23,
0x1,0x30,0x1,0x31,0x1,0x3c,0x1,0x3d,0x1,0x3f,0x1,0x3f,0x1,0x37,0x1,0x32,
0x1,0x24,0x1,0x15,0x1,0x6,0x1,0xf1,0x0,0xe1,0x0,0xca,0x0,0xb4,0x0,0x9f,
0x0,0x80,0x0,0x70,0x0,0x47,0x0,0x3c,0x0,0x8,0x0,0x1,0x0,0xc6,0xff,0xbd,
0xff,0x86,0xff,0x78,0xff,0x4a,0xff,0x3b,0xff,0x15,0xff,0x7,0xff,0xe8,0xfe,0xdc,
0xfe,0xc3,0xfe,0xb5,0xfe,0x9e,0xfe,0x8e,0xfe,0x7a,0xfe,0x6e,0xfe,0x60,0xfe,0x5d,
0xfe,0x5f,0xfe,0x63,0xfe,0x77,0xfe,0x82,0xfe,0x9f,0xfe,0xb1,0xfe,0xce,0xfe,0xde,
0xfe,0xf5,0xfe,0x5,0xff,0x14,0xff,0x2a,0xff,0x3c,0xff,0x57,0xff,0x78,0xff,0x96,
0xff,0xcb,0xff,0xe2,0xff,0x2d,0x0,0x38,0x0,0x8f,0x0,0x94,0x0,0xe5,0x0,0xec,
0x0,0x2f,0x1,0x35,0x1,0x68,0x1,0x6a,0x1,0x94,0x1,0x92,0x1,0xbd,0x1,0xb7,
0x1,0xe3,0x1,0xd9,0x1,0x0,0x2,0xf6,0x1,0xe,0x2,0x7,0x2,0x5,0x2,0x1,
0x2,0xe5,0x1,0xde,0x1,0xb1,0x1,0xa7,0x1,0x6d,0x1,0x61,0x1,0x23,0x1,0x17,
0x1,0xd8,0x0,0xd2,0x0,0x8f,0x0,0x8d,0x0,0x46,0x0,0x43,0x0,0xf3,0xff,0xee,
0xff,0x96,0xff,0x89,0xff,0x39,0xff,0x25,0xff,0xe2,0xfe,0xd5,0xfe,0x99,0xfe,0x95,
0xfe,0x62,0xfe,0x66,0xfe,0x3b,0xfe,0x48,0xfe,0x24,0xfe,0x33,0xfe,0x1d,0xfe,0x26,
0xfe,0x20,0xfe,0x25,0xfe,0x29,0xfe,0x2c,0xfe,0x3b,0xfe,0x40,0xfe,0x57,0xfe,0x67,
0xfe,0x87,0xfe,0x9e,0xfe,0xd3,0xfe,0xe8,0xfe,0x31,0xff,0x43,0xff,0x95,0xff,0xa3,
0xff,0xf0,0xff,0xff,0xff,0x3c,0x0,0x4e,0x0,0x7d,0x0,0x8e,0x0,0xbf,0x0,0xcb,
0x0,0x7,0x1,0xc,0x1,0x50,0x1,0x51,0x1,0x95,0x1,0x93,0x1,0xcf,0x1,0xc8,
0x1,0xf2,0x1,0xeb,0x1,0xfa,0x1,0xf6,0x1,0xed,0x1,0xeb,0x1,0xd8,0x1,0xd2,
0x1,0xbf,0x1,0xb5,0x1,0xa0,0x1,0x94,0x1,0x78,0x1,0x6e,0x1,0x46,0x1,0x3c,
0x1,0x9,0x1,0xfa,0x0,0xbf,0x0,0xaf,0x0,0x70,0x0,0x61,0x0,0x1d,0x0,0x12,
0x0,0xc8,0xff,0xc4,0xff,0x7b,0xff,0x7b,0xff,0x37,0xff,0x3a,0xff,0xfc,0xfe,0x4,
0xff,0xc9,0xfe,0xd3,0xfe,0xa0,0xfe,0xa7,0xfe,0x81,0xfe,0x87,0xfe,0x6c,0xfe,0x6f,
0xfe,0x5f,0xfe,0x60,0xfe,0x5f,0xfe,0x64,0xfe,0x75,0xfe,0x80,0xfe,0xa0,0xfe,0xab,
0xfe,0xd2,0xfe,0xdc,0xfe,0x3,0xff,0x8,0xff,0x2e,0xff,0x2b,0xff,0x5a,0xff,0x52,
0xff,0x90,0xff,0x8a,0xff,0xd1,0xff,0xd1,0xff,0x1c,0x0,0x22,0x0,0x67,0x0,0x6e,
0x0,0xaa,0x0,0xae,0x0,0xe0,0x0,0xe1,0x0,0x8,0x1,0xa,0x1,0x2c,0x1,0x30,
0x1,0x53,0x1,0x5a,0x1,0x80,0x1,0x88,0x1,0xac,0x1,0xb5,0x1,0xcb,0x1,0xd7,
0x1,0xd2,0x1,0xe1,0x1,0xc2,0x1,0xce,0x1,0x9f,0x1,0xa6,0x1,0x70,0x1,0x73,
0x1,0x3f,0x1,0x40,0x1,0xf,0x1,0x10,0x1,0xde,0x0,0xde,0x0,0xa5,0x0,0xa3,
0x0,0x5d,0x0,0x5a,0x0,0xc,0x0,0x8,0x0,0xbc,0xff,0xb5,0xff,0x73,0xff,0x67,
0xff,0x34,0xff,0x23,0xff,0xfb,0xfe,0xeb,0xfe,0xbf,0xfe,0xb5,0xfe,0x88,0xfe,0x7d,
0xfe,0x5f,0xfe,0x4e,0xfe,0x43,0xfe,0x2f,0xfe,0x39,0xfe,0x28,0xfe,0x3f,0xfe,0x36,
0xfe,0x4e,0xfe,0x4b,0xfe,0x63,0xfe,0x63,0xfe,0x82,0xfe,0x82,0xfe,0xad,0xfe,0xab,
0xfe,0xe7,0xfe,0xe6,0xfe,0x32,0xff,0x33,0xff,0x8a,0xff,0x8b,0xff,0xe3,0xff,0xe8,
0xff,0x39,0x0,0x44,0x0,0x8a,0x0,0x97,0x0,0xd6,0x0,0xe6,0x0,0x1f,0x1,0x34,
0x1,0x6c,0x1,0x81,0x1,0xb8,0x1,0xcd,0x1,0xf9,0x1,0xe,0x2,0x26,0x2,0x3c,
0x2,0x3e,0x2,0x54,0x2,0x3f,0x2,0x53,0x2,0x2e,0x2,0x3d,0x2,0x11,0x2,0x1e,
0x2,0xeb,0x1,0xf6,0x1,0xbe,0x1,0xc8,0x1,0x88,0x1,0x94,0x1,0x42,0x1,0x4e,
0x1,0xeb,0x0,0xf1,0x0,0x84,0x0,0x84,0x0,0x19,0x0,0x11,0x0,0xb4,0xff,0xa7,
0xff,0x5b,0xff,0x49,0xff,0xc,0xff,0xf8,0xfe,0xc0,0xfe,0xae,0xfe,0x7b,0xfe,0x68,
0xfe,0x39,0xfe,0x24,0xfe,0xfd,0xfd,0xe9,0xfd,0xd2,0xfd,0xb9,0xfd,0xc0,0xfd,0x9b,
0xfd,0xc1,0xfd,0x99,0xfd,0xd4,0xfd,0xaf,0xfd,0xf7,0xfd,0xd9,0xfd,0x27,0xfe,0x13,
0xfe,0x62,0xfe,0x57,0xfe,0xa8,0xfe,0xa3,0xfe,0xf9,0xfe,0xf7,0xfe,0x4f,0xff,0x4d,
0xff,0xa9,0xff,0xa6,0xff,0x4,0x0,0x5,0x0,0x5f,0x0,0x68,0x0,0xb9,0x0,0xcd,
0x0,0xd,0x1,0x2a,0x1,0x5b,0x1,0x7a,0x1,0xa2,0x1,0xbe,0x1,0xda,0x1,0xf6,
0x1,0xfe,0x1,0x1e,0x2,0x10,0x2,0x33,0x2,0x12,0x2,0x34,0x2,0x6,0x2,0x23,
0x2,0xee,0x1,0x3,0x2,0xd0,0x1,0xdb,0x1,0xa9,0x1,0xb1,0x1,0x78,0x1,0x84,
0x1,0x3d,0x1,0x4c,0x1,0xf7,0x0,0x8,0x1,0xa7,0x0,0xb6,0x0,0x55,0x0,0x5a,
0x0,0xb,0x0,0x1,0x0,0xcc,0xff,0xb7,0xff,0x93,0xff,0x7c,0xff,0x61,0xff,0x4d,
0xff,0x2d,0xff,0x1e,0xff,0xf6,0xfe,0xe8,0xfe,0xc6,0xfe,0xb3,0xfe,0xa5,0xfe,0x86,
0xfe,0x93,0xfe,0x6c,0xfe,0x8e,0xfe,0x6d,0xfe,0x91,0xfe,0x81,0xfe,0x99,0xfe,0x99,
0xfe,0xa1,0xfe,0xaa,0xfe,0xad,0xfe,0xb3,0xfe,0xc1,0xfe,0xbf,0xfe,0xdf,0xfe,0xdd,
0xfe,0xb,0xff,0xf,0xff,0x42,0xff,0x52,0xff,0x7c,0xff,0x94,0xff,0xb3,0xff,0xc6,
0xff,0xe5,0xff,0xef,0xff,0x15,0x0,0x18,0x0,0x48,0x0,0x44,0x0,0x80,0x0,0x7c,
0x0,0xba,0x0,0xbb,0x0,0xf0,0x0,0xf4,0x0,0x16,0x1,0x1f,0x1,0x2a,0x1,0x36,
0x1,0x35,0x1,0x3e,0x1,0x3e,0x1,0x43,0x1,0x4c,0x1,0x49,0x1,0x5b,0x1,0x4f,
0x1,0x5d,0x1,0x50,0x1,0x49,0x1,0x44,0x1,0x22,0x1,0x25,0x1,0xee,0x0,0xf9,
0x0,0xbe,0x0,0xc8,0x0,0x99,0x0,0x9a,0x0,0x79,0x0,0x6f,0x0,0x55,0x0,0x44,
0x0,0x22,0x0,0x19,0x0,0xe7,0xff,0xec,0xff,0xae,0xff,0xbb,0xff,0x7e,0xff,0x8d,
0xff,0x57,0xff,0x62,0xff,0x3c,0xff,0x3b,0xff,0x24,0xff,0x21,0xff,0x9,0xff,0xc,
0xff,0xeb,0xfe,0xf8,0xfe,0xd3,0xfe,0xe8,0xfe,0xc7,0xfe,0xe1,0xfe,0xcb,0xfe,0xe2,
0xfe,0xde,0xfe,0xf1,0xfe,0xfa,0xfe,0x9,0xff,0x1a,0xff,0x28,0xff,0x3e,0xff,0x4d,
0xff,0x68,0xff,0x73,0xff,0x94,0xff,0x9e,0xff,0xc6,0xff,0xd0,0xff,0x2,0x0,0x6,
0x0,0x40,0x0,0x3a,0x0,0x79,0x0,0x6d,0x0,0xaa,0x0,0x9a,0x0,0xce,0x0,0xbb,
0x0,0xe7,0x0,0xd4,0x0,0xfb,0x0,0xeb,0x0,0xd,0x1,0xff,0x0,0x1f,0x1,0xf,
0x1,0x2a,0x1,0x1b,0x1,0x2b,0x1,0x1a,0x1,0x1e,0x1,0x9,0x1,0x3,0x1,0xed,
0x0,0xe1,0x0,0xc8,0x0,0xbc,0x0,0xa0,0x0,0x8d,0x0,0x7a,0x0,0x59,0x0,0x50,
0x0,0x24,0x0,0x1e,0x0,0xeb,0xff,0xea,0xff,0xb4,0xff,0xbb,0xff,0x85,0xff,0x92,
0xff,0x5b,0xff,0x6a,0xff,0x2f,0xff,0x3f,0xff,0x1,0xff,0x11,0xff,0xd3,0xfe,0xe6,
0xfe,0xb2,0xfe,0xc7,0xfe,0xa7,0xfe,0xbd,0xfe,0xb5,0xfe,0xc9,0xfe,0xd1,0xfe,0xe1,
0xfe,0xe8,0xfe,0xf7,0xfe,0xf4,0xfe,0x4,0xff,0xfe,0xfe,0xd,0xff,0x15,0xff,0x22,
0xff,0x43,0xff,0x4a,0xff,0x87,0xff,0x89,0xff,0xd6,0xff,0xd5,0xff,0x20,0x0,0x1b,
0x0,0x56,0x0,0x51,0x0,0x77,0x0,0x76,0x0,0x8e,0x0,0x8b,0x0,0xa5,0x0,0x9f,
0x0,0xc3,0x0,0xbc,0x0,0xed,0x0,0xe0,0x0,0x16,0x1,0x3,0x1,0x2f,0x1,0x19,
0x1,0x35,0x1,0x1e,0x1,0x28,0x1,0x13,0x1,0xc,0x1,0xfc,0x0,0xe8,0x0,0xdb,
0x0,0xc4,0x0,0xb9,0x0,0xa2,0x0,0x98,0x0,0x81,0x0,0x78,0x0,0x5e,0x0,0x58,
0x0,0x33,0x0,0x2d,0x0,0xf9,0xff,0xf4,0xff,0xba,0xff,0xb8,0xff,0x7f,0xff,0x85,
0xff,0x50,0xff,0x5b,0xff,0x30,0xff,0x3a,0xff,0x1f,0xff,0x27,0xff,0x15,0xff,0x1e,
0xff,0xd,0xff,0x1a,0xff,0x2,0xff,0x15,0xff,0xf4,0xfe,0x9,0xff,0xeb,0xfe,0x0,
0xff,0xf4,0xfe,0x6,0xff,0x12,0xff,0x22,0xff,0x3f,0xff,0x50,0xff,0x71,0xff,0x80,
0xff,0x9d,0xff,0xa5,0xff,0xbc,0xff,0xc1,0xff,0xd8,0xff,0xda,0xff,0xfb,0xff,0xf9,
0xff,0x28,0x0,0x23,0x0,0x60,0x0,0x58,0x0,0x94,0x0,0x8c,0x0,0xb6,0x0,0xb3,
0x0,0xc8,0x0,0xca,0x0,0xcf,0x0,0xd0,0x0,0xd1,0x0,0xce,0x0,0xd3,0x0,0xcc,
0x0,0xd6,0x0,0xcb,0x0,0xd7,0x0,0xc5,0x0,0xd0,0x0,0xbc,0x0,0xbc,0x0,0xab,
0x0,0xa0,0x0,0x92,0x0,0x80,0x0,0x76,0x0,0x5c,0x0,0x5a,0x0,0x38,0x0,0x3c,
0x0,0x14,0x0,0x1d,0x0,0xf0,0xff,0xfe,0xff,0xd0,0xff,0xde,0xff,0xb8,0xff,0xc2,
0xff,0xa5,0xff,0xaf,0xff,0x96,0xff,0xa5,0xff,0x85,0xff,0x9d,0xff,0x72,0xff,0x90,
0xff,0x61,0xff,0x7e,0xff,0x56,0xff,0x6b,0xff,0x53,0xff,0x5f,0xff,0x59,0xff,0x60,
0xff,0x66,0xff,0x6d,0xff,0x77,0xff,0x83,0xff,0x8a,0xff,0x9a,0xff,0xa3,0xff,0xa9,
0xff,0xc0,0xff,0xb1,0xff,0xd7,0xff,0xbe,0xff,0xe8,0xff,0xcf,0xff,0xfa,0xff,0xe3,
0xff,0xf,0x0,0x0,0x0,0x2c,0x0,0x21,0x0,0x4c,0x0,0x41,0x0,0x63,0x0,0x5b,
0x0,0x6d,0x0,0x64,0x0,0x6a,0x0,0x60,0x0,0x62,0x0,0x58,0x0,0x5e,0x0,0x52,
0x0,0x5c,0x0,0x53,0x0,0x5b,0x0,0x59,0x0,0x59,0x0,0x5a,0x0,0x4d,0x0,0x4f,
0x0,0x32,0x0,0x39,0x0,0x16,0x0,0x1a,0x0,0xfd,0xff,0xfc,0xff,0xe8,0xff,0xe5,
0xff,0xd9,0xff,0xd8,0xff,0xce,0xff,0xd4,0xff,0xc3,0xff,0xd0,0xff,0xb5,0xff,0xc5,
0xff,0xa5,0xff,0xb5,0xff,0x98,0xff,0xa5,0xff,0x8f,0xff,0x9c,0xff,0x8d,0xff,0x9c,
0xff,0x96,0xff,0xa3,0xff,0xa5,0xff,0xae,0xff,0xb6,0xff,0xbb,0xff,0xc9,0xff,0xc7,
0xff,0xd7,0xff,0xd4,0xff,0xe1,0xff,0xe0,0xff,0xec,0xff,0xe8,0xff,0xfa,0xff,0xf2,
0xff,0xc,0x0,0x4,0x0,0x20,0x0,0x17,0x0,0x30,0x0,0x24,0x0,0x3c,0x0,0x30,
0x0,0x42,0x0,0x39,0x0,0x42,0x0,0x3b,0x0,0x3e,0x0,0x38,0x0,0x3a,0x0,0x34,
0x0,0x32,0x0,0x2f,0x0,0x25,0x0,0x25,0x0,0x18,0x0,0x18,0x0,0x8,0x0,0xc,
0x0,0xf6,0xff,0xfe,0xff,0xe4,0xff,0xf1,0xff,0xd4,0xff,0xe7,0xff,0xc9,0xff,0xdc,
0xff,0xc2,0xff,0xce,0xff,0xba,0xff,0xbf,0xff,0xaf,0xff,0xb4,0xff,0xa5,0xff,0xb0,
0xff,0xa0,0xff,0xb0,0xff,0xa1,0xff,0xb2,0xff,0xa6,0xff,0xb1,0xff,0xab,0xff,0xae,
0xff,0xb0,0xff,0xad,0xff,0xb8,0xff,0xb4,0xff,0xc4,0xff,0xc1,0xff,0xd4,0xff,0xd2,
0xff,0xe4,0xff,0xe1,0xff,0xf2,0xff,0xee,0xff,0xfd,0xff,0xfb,0xff,0x5,0x0,0x3,
0x0,0xf,0x0,0x4,0x0,0x1a,0x0,0x7,0x0,0x25,0x0,0x12,0x0,0x2f,0x0,0x1d,
0x0,0x32,0x0,0x24,0x0,0x2c,0x0,0x23,0x0,0x24,0x0,0x1a,0x0,0x1c,0x0,0xc,
0x0,0x17,0x0,0x3,0x0,0x15,0x0,0x2,0x0,0x14,0x0,0x4,0x0,0xb,0x0,0x2,
0x0,0xfa,0xff,0xf9,0xff,0xe3,0xff,0xe9,0xff,0xce,0xff,0xd6,0xff,0xc2,0xff,0xcb,
0xff,0xc1,0xff,0xcc,0xff,0xc5,0xff,0xd3,0xff,0xc9,0xff,0xde,0xff,0xcc,0xff,0xe3,
0xff,0xc8,0xff,0xdf,0xff,0xbe,0xff,0xd6,0xff,0xb7,0xff,0xce,0xff,0xbb,0xff,0xcf,
0xff,0xcd,0xff,0xdd,0xff,0xe6,0xff,0xf4,0xff,0xfb,0xff,0xb,0x0,0x1,0x0,0x18,
0x0,0xff,0xff,0x19,0x0,0xfb,0xff,0xf,0x0,0xfb,0xff,0x4,0x0,0x8,0x0,0x4,
0x0,0x1d,0x0,0x14,0x0,0x2e,0x0,0x2c,0x0,0x39,0x0,0x3e,0x0,0x39,0x0,0x40,
0x0,0x2e,0x0,0x2f,0x0,0x24,0x0,0x16,0x0,0x1e,0x0,0x5,0x0,0x1d,0x0,0x3,
0x0,0x20,0x0,0xa,0x0,0x1e,0x0,0xf,0x0,0x13,0x0,0x8,0x0,0x3,0x0,0xf5,
0xff,0xf3,0xff,0xe1,0xff,0xeb,0xff,0xd4,0xff,0xe9,0xff,0xd1,0xff,0xe2,0xff,0xd1,
0xff,0xd3,0xff,0xca,0xff,0xbd,0xff,0xb9,0xff,0xa4,0xff,0xa6,0xff,0x90,0xff,0x9b,
0xff,0x8d,0xff,0x9a,0xff,0x95,0xff,0xa2,0xff,0x9c,0xff,0xa8,0xff,0x97,0xff,0xa2,
0xff,0x86,0xff,0x90,0xff,0x75,0xff,0x7f,0xff,0x70,0xff,0x7d,0xff,0x7b,0xff,0x8b,
0xff,0x93,0xff,0xa2,0xff,0xad,0xff,0xba,0xff,0xc0,0xff,0xce,0xff,0xcc,0xff,0xdb,
0xff,0xd4,0xff,0xe6,0xff,0xdf,0xff,0xed,0xff,0xf0,0xff,0xf2,0xff,0x9,0x0,0x0,
0x0,0x27,0x0,0x1a,0x0,0x43,0x0,0x39,0x0,0x5d,0x0,0x54,0x0,0x72,0x0,0x68,
0x0,0x7c,0x0,0x72,0x0,0x80,0x0,0x75,0x0,0x82,0x0,0x6e,0x0,0x7f,0x0,0x68,
0x0,0x7b,0x0,0x67,0x0,0x78,0x0,0x66,0x0,0x6f,0x0,0x61,0x0,0x62,0x0,0x57,
0x0,0x51,0x0,0x48,0x0,0x39,0x0,0x38,0x0,0x1d,0x0,0x28,0x0,0x2,0x0,0x12,
0x0,0xea,0xff,0xfb,0xff,0xd3,0xff,0xe1,0xff,0xb7,0xff,0xc2,0xff,0x98,0xff,0xa4,
0xff,0x79,0xff,0x8e,0xff,0x5f,0xff,0x80,0xff,0x51,0xff,0x73,0xff,0x49,0xff,0x63,
0xff,0x3d,0xff,0x50,0xff,0x2e,0xff,0x3a,0xff,0x24,0xff,0x27,0xff,0x1f,0xff,0x20,
0xff,0x24,0xff,0x29,0xff,0x36,0xff,0x3d,0xff,0x4c,0xff,0x51,0xff,0x61,0xff,0x5e,
0xff,0x73,0xff,0x66,0xff,0x83,0xff,0x71,0xff,0x96,0xff,0x84,0xff,0xb2,0xff,0xa1,
0xff,0xd6,0xff,0xc6,0xff,0x2,0x0,0xed,0xff,0x2c,0x0,0x13,0x0,0x51,0x0,0x37,
0x0,0x6f,0x0,0x55,0x0,0x84,0x0,0x6b,0x0,0x90,0x0,0x7c,0x0,0x9c,0x0,0x86,
0x0,0xaa,0x0,0x91,0x0,0xb3,0x0,0x9c,0x0,0xb9,0x0,0xa6,0x0,0xb7,0x0,0xb0,
0x0,0xae,0x0,0xaf,0x0,0xa0,0x0,0xa3,0x0,0x8f,0x0,0x94,0x0,0x7c,0x0,0x83,
0x0,0x69,0x0,0x74,0x0,0x53,0x0,0x66,0x0,0x3a,0x0,0x53,0x0,0x1e,0x0,0x36,
0x0,0xfb,0xff,0x12,0x0,0xd4,0xff,0xe9,0xff,0xb0,0xff,0xc6,0xff,0x94,0xff,0xab,
0xff,0x7d,0xff,0x95,0xff,0x6b,0xff,0x82,0xff,0x5c,0xff,0x71,0xff,0x4b,0xff,0x5d,
0xff,0x39,0xff,0x48,0xff,0x2c,0xff,0x35,0xff,0x24,0xff,0x29,0xff,0x23,0xff,0x28,
0xff,0x2e,0xff,0x30,0xff,0x40,0xff,0x3c,0xff,0x53,0xff,0x4b,0xff,0x68,0xff,0x58,
0xff,0x79,0xff,0x66,0xff,0x88,0xff,0x78,0xff,0xa0,0xff,0x90,0xff,0xc1,0xff,0xb1,
0xff,0xea,0xff,0xdb,0xff,0x1a,0x0,0x5,0x0,0x40,0x0,0x2c,0x0,0x58,0x0,0x49,
0x0,0x68,0x0,0x5a,0x0,0x75,0x0,0x67,0x0,0x81,0x0,0x7a,0x0,0x8f,0x0,0x8d,
0x0,0x9b,0x0,0x9c,0x0,0xa3,0x0,0xaa,0x0,0xa7,0x0,0xaf,0x0,0xa3,0x0,0xa8,
0x0,0x96,0x0,0x9b,0x0,0x81,0x0,0x8a,0x0,0x67,0x0,0x74,0x0,0x49,0x0,0x5a,
0x0,0x28,0x0,0x3b,0x0,0x5,0x0,0x1c,0x0,0xe6,0xff,0x1,0x0,0xca,0xff,0xe5,
0xff,0xb2,0xff,0xc8,0xff,0x98,0xff,0xac,0xff,0x79,0xff,0x88,0xff,0x5c,0xff,0x63,
0xff,0x45,0xff,0x46,0xff,0x33,0xff,0x32,0xff,0x26,0xff,0x29,0xff,0x22,0xff,0x29,
0xff,0x25,0xff,0x2d,0xff,0x32,0xff,0x34,0xff,0x42,0xff,0x3d,0xff,0x52,0xff,0x46,
0xff,0x68,0xff,0x5a,0xff,0x86,0xff,0x7c,0xff,0xa9,0xff,0xa4,0xff,0xd0,0xff,0xce,
0xff,0xf7,0xff,0xf7,0xff,0x1d,0x0,0x17,0x0,0x3f,0x0,0x33,0x0,0x5b,0x0,0x4f,
0x0,0x73,0x0,0x6a,0x0,0x88,0x0,0x82,0x0,0x98,0x0,0x95,0x0,0xa3,0x0,0xa1,
0x0,0xaa,0x0,0xa7,0x0,0xa9,0x0,0xa4,0x0,0xa0,0x0,0x9b,0x0,0x93,0x0,0x90,
0x0,0x83,0x0,0x82,0x0,0x72,0x0,0x73,0x0,0x5b,0x0,0x60,0x0,0x3a,0x0,0x3f,
0x0,0x12,0x0,0x18,0x0,0xe7,0xff,0xee,0xff,0xc1,0xff,0xc1,0xff,0xa1,0xff,0x9d,
0xff,0x83,0xff,0x86,0xff,0x68,0xff,0x6f,0xff,0x49,0xff,0x51,0xff,0x22,0xff,0x2d,
0xff,0x0,0xff,0x7,0xff,0xea,0xfe,0xeb,0xfe,0xdf,0xfe,0xe3,0xfe,0xe6,0xfe,0xea,
0xfe,0xfc,0xfe,0xfb,0xfe,0xe,0xff,0x10,0xff,0x1c,0xff,0x1f,0xff,0x2c,0xff,0x2d,
0xff,0x43,0xff,0x44,0xff,0x6d,0xff,0x6c,0xff,0xa5,0xff,0xa3,0xff,0xdf,0xff,0xe2,
0xff,0x16,0x0,0x1d,0x0,0x44,0x0,0x4c,0x0,0x67,0x0,0x70,0x0,0x8d,0x0,0x92,
0x0,0xb6,0x0,0xba,0x0,0xe1,0x0,0xe5,0x0,0xb,0x1,0xc,0x1,0x29,0x1,0x2b,
0x1,0x37,0x1,0x38,0x1,0x37,0x1,0x34,0x1,0x2b,0x1,0x26,0x1,0x1b,0x1,0x12,
0x1,0xa,0x1,0x0,0x1,0xf4,0x0,0xf1,0x0,0xd7,0x0,0xd6,0x0,0xab,0x0,0xac,
0x0,0x72,0x0,0x77,0x0,0x38,0x0,0x3a,0x0,0xff,0xff,0xfd,0xff,0xcb,0xff,0xc4,
0xff,0x9a,0xff,0x8e,0xff,0x65,0xff,0x5d,0xff,0x2c,0xff,0x30,0xff,0xf6,0xfe,0xff,
0xfe,0xc8,0xfe,0xd3,0xfe,0xab,0xfe,0xb1,0xfe,0x9e,0xfe,0x99,0xfe,0x97,0xfe,0x90,
0xfe,0x96,0xfe,0x94,0xfe,0x9c,0xfe,0xa1,0xfe,0xa9,0xfe,0xb6,0xfe,0xbd,0xfe,0xcf,
0xfe,0xda,0xfe,0xee,0xfe,0x5,0xff,0x1b,0xff,0x3f,0xff,0x50,0xff,0x7f,0xff,0x89,
0xff,0xbf,0xff,0xc7,0xff,0xfe,0xff,0x5,0x0,0x39,0x0,0x42,0x0,0x74,0x0,0x7e,
0x0,0xb2,0x0,0xb8,0x0,0xee,0x0,0xf0,0x0,0x23,0x1,0x20,0x1,0x4a,0x1,0x40,
0x1,0x61,0x1,0x53,0x1,0x6e,0x1,0x5d,0x1,0x76,0x1,0x63,0x1,0x77,0x1,0x66,
0x1,0x6f,0x1,0x5c,0x1,0x5e,0x1,0x47,0x1,0x3f,0x1,0x28,0x1,0x13,0x1,0xfc,
0x0,0xdd,0x0,0xc9,0x0,0x9e,0x0,0x92,0x0,0x5b,0x0,0x56,0x0,0x1b,0x0,0x19,
0x0,0xe2,0xff,0xe2,0xff,0xad,0xff,0xac,0xff,0x73,0xff,0x75,0xff,0x36,0xff,0x41,
0xff,0xfd,0xfe,0x10,0xff,0xcf,0xfe,0xe6,0xfe,0xab,0xfe,0xca,0xfe,0x97,0xfe,0xb8,
0xfe,0x8d,0xfe,0xae,0xfe,0x8d,0xfe,0xb0,0xfe,0x99,0xfe,0xbd,0xfe,0xab,0xfe,0xcd,
0xfe,0xc0,0xfe,0xe4,0xfe,0xde,0xfe,0x1,0xff,0x3,0xff,0x24,0xff,0x32,0xff,0x4f,
0xff,0x6f,0xff,0x81,0xff,0xb0,0xff,0xb9,0xff,0xef,0xff,0xf2,0xff,0x2d,0x0,0x28,
0x0,0x64,0x0,0x59,0x0,0x8f,0x0,0x85,0x0,0xb5,0x0,0xa9,0x0,0xd6,0x0,0xc9,
0x0,0xf9,0x0,0xe9,0x0,0x1d,0x1,0x4,0x1,0x39,0x1,0x19,0x1,0x47,0x1,0x28,
0x1,0x4a,0x1,0x27,0x1,0x3e,0x1,0x19,0x1,0x25,0x1,0x6,0x1,0x4,0x1,0xef,
0x0,0xe0,0x0,0xd2,0x0,0xbc,0x0,0xb4,0x0,0x95,0x0,0x90,0x0,0x6c,0x0,0x64,
0x0,0x3f,0x0,0x34,0x0,0x8,0x0,0xff,0xff,0xc8,0xff,0xc6,0xff,0x8a,0xff,0x8d,
0xff,0x55,0xff,0x5d,0xff,0x2e,0xff,0x3d,0xff,0x16,0xff,0x29,0xff,0x9,0xff,0x1c,
0xff,0x1,0xff,0x13,0xff,0xf9,0xfe,0xa,0xff,0xf1,0xfe,0x4,0xff,0xef,0xfe,0x5,
0xff,0xf9,0xfe,0x10,0xff,0xe,0xff,0x25,0xff,0x2b,0xff,0x43,0xff,0x4f,0xff,0x62,
0xff,0x78,0xff,0x82,0xff,0xa2,0xff,0xa5,0xff,0xd1,0xff,0xcc,0xff,0x1,0x0,0xf8,
0xff,0x2b,0x0,0x26,0x0,0x54,0x0,0x52,0x0,0x7e,0x0,0x7c,0x0,0xa4,0x0,0xa3,
0x0,0xc9,0x0,0xc4,0x0,0xee,0x0,0xdf,0x0,0x8,0x1,0xf3,0x0,0x13,0x1,0xff,
0x0,0x13,0x1,0x4,0x1,0xb,0x1,0x3,0x1,0xff,0x0,0xfb,0x0,0xf2,0x0,0xed,
0x0,0xe0,0x0,0xdb,0x0,0xc7,0x0,0xc2,0x0,0xa9,0x0,0xa1,0x0,0x84,0x0,0x7c,
0x0,0x57,0x0,0x53,0x0,0x29,0x0,0x28,0x0,0x0,0x0,0xff,0xff,0xd9,0xff,0xd7,
0xff,0xb2,0xff,0xaf,0xff,0x8b,0xff,0x8b,0xff,0x64,0xff,0x69,0xff,0x40,0xff,0x48,
0xff,0x1f,0xff,0x2b,0xff,0x8,0xff,0x15,0xff,0x0,0xff,0x6,0xff,0x4,0xff,0x6,
0xff,0x10,0xff,0x10,0xff,0x21,0xff,0x20,0xff,0x30,0xff,0x34,0xff,0x3e,0xff,0x47,
0xff,0x53,0xff,0x5a,0xff,0x70,0xff,0x70,0xff,0x93,0xff,0x8e,0xff,0xbe,0xff,0xb8,
0xff,0xf0,0xff,0xec,0xff,0x25,0x0,0x21,0x0,0x57,0x0,0x53,0x0,0x83,0x0,0x83,
0x0,0xaa,0x0,0xac,0x0,0xcc,0x0,0xcd,0x0,0xe8,0x0,0xe4,0x0,0x1,0x1,0xf8,
0x0,0x11,0x1,0xa,0x1,0x18,0x1,0x13,0x1,0x16,0x1,0x14,0x1,0xe,0x1,0x11,
0x1,0x3,0x1,0x7,0x1,0xf2,0x0,0xf3,0x0,0xd7,0x0,0xda,0x0,0xb4,0x0,0xb7,
0x0,0x8c,0x0,0x89,0x0,0x5d,0x0,0x59,0x0,0x2e,0x0,0x2e,0x0,0x4,0x0,0x8,
0x0,0xdc,0xff,0xe2,0xff,0xb2,0xff,0xb8,0xff,0x86,0xff,0x8a,0xff,0x58,0xff,0x5c,
0xff,0x2d,0xff,0x34,0xff,0x11,0xff,0x17,0xff,0x2,0xff,0x9,0xff,0xfe,0xfe,0x7,
0xff,0x4,0xff,0xb,0xff,0xb,0xff,0x12,0xff,0x12,0xff,0x18,0xff,0x20,0xff,0x20,
0xff,0x34,0xff,0x32,0xff,0x4e,0xff,0x52,0xff,0x6e,0xff,0x76,0xff,0x93,0xff,0x9a,
0xff,0xba,0xff,0xc1,0xff,0xe6,0xff,0xeb,0xff,0x13,0x0,0x14,0x0,0x3f,0x0,0x41,
0x0,0x6f,0x0,0x70,0x0,0x9c,0x0,0x9e,0x0,0xc4,0x0,0xc5,0x0,0xe5,0x0,0xe0,
0x0,0xfd,0x0,0xf1,0x0,0xb,0x1,0xfe,0x0,0x11,0x1,0x7,0x1,0x12,0x1,0xe,
0x1,0xd,0x1,0x13,0x1,0x3,0x1,0xf,0x1,0xf2,0x0,0xfb,0x0,0xd8,0x0,0xd8,
0x0,0xb4,0x0,0xae,0x0,0x8d,0x0,0x83,0x0,0x6a,0x0,0x5f,0x0,0x49,0x0,0x41,
0x0,0x26,0x0,0x24,0x0,0xfd,0xff,0xfe,0xff,0xcd,0xff,0xd0,0xff,0x9d,0xff,0xa0,
0xff,0x76,0xff,0x76,0xff,0x58,0xff,0x58,0xff,0x47,0xff,0x46,0xff,0x3b,0xff,0x3d,
0xff,0x2a,0xff,0x35,0xff,0x1a,0xff,0x2c,0xff,0x13,0xff,0x21,0xff,0x16,0xff,0x1f,
0xff,0x24,0xff,0x2a,0xff,0x3d,0xff,0x42,0xff,0x5c,0xff,0x63,0xff,0x7c,0xff,0x86,
0xff,0x9e,0xff,0xa8,0xff,0xc2,0xff,0xcc,0xff,0xe9,0xff,0xf0,0xff,0x13,0x0,0x14,
0x0,0x3d,0x0,0x3e,0x0,0x67,0x0,0x6b,0x0,0x8e,0x0,0x90,0x0,0xac,0x0,0xaa,
0x0,0xbf,0x0,0xba,0x0,0xd0,0x0,0xc5,0x0,0xe3,0x0,0xd6,0x0,0xf5,0x0,0xeb,
0x0,0xff,0x0,0xf6,0x0,0xf9,0x0,0xf5,0x0,0xe9,0x0,0xe5,0x0,0xd1,0x0,0xc9,
0x0,0xb6,0x0,0xac,0x0,0x9b,0x0,0x94,0x0,0x83,0x0,0x7c,0x0,0x69,0x0,0x61,
0x0,0x4a,0x0,0x41,0x0,0x26,0x0,0x1c,0x0,0xfd,0xff,0xf5,0xff,0xd8,0xff,0xcf,
0xff,0xba,0xff,0xae,0xff,0xa0,0xff,0x95,0xff,0x87,0xff,0x7f,0xff,0x6f,0xff,0x6b,
0xff,0x5c,0xff,0x5c,0xff,0x55,0xff,0x59,0xff,0x57,0xff,0x60,0xff,0x61,0xff,0x69,
0xff,0x6c,0xff,0x72,0xff,0x74,0xff,0x7c,0xff,0x7d,0xff,0x85,0xff,0x8b,0xff,0x8d,
0xff,0x9a,0xff,0x9c,0xff,0xae,0xff,0xb5,0xff,0xcb,0xff,0xd5,0xff,0xec,0xff,0xf7,
0xff,0x9,0x0,0x14,0x0,0x1f,0x0,0x2c,0x0,0x30,0x0,0x3c,0x0,0x41,0x0,0x45,
0x0,0x51,0x0,0x56,0x0,0x63,0x0,0x6e,0x0,0x78,0x0,0x82,0x0,0x8c,0x0,0x94,
0x0,0x9c,0x0,0x9e,0x0,0xa3,0x0,0x9c,0x0,0xa0,0x0,0x98,0x0,0x99,0x0,0x93,
0x0,0x90,0x0,0x89,0x0,0x86,0x0,0x81,0x0,0x78,0x0,0x78,0x0,0x67,0x0,0x68,
0x0,0x53,0x0,0x56,0x0,0x42,0x0,0x42,0x0,0x30,0x0,0x2d,0x0,0x1d,0x0,0x1b,
0x0,0xa,0x0,0xa,0x0,0xf7,0xff,0xfd,0xff,0xe5,0xff,0xf0,0xff,0xd7,0xff,0xe2,
0xff,0xce,0xff,0xd7,0xff,0xc9,0xff,0xce,0xff,0xc7,0xff,0xc7,0xff,0xc4,0xff,0xc3,
0xff,0xc1,0xff,0xc1,0xff,0xbe,0xff,0xc0,0xff,0xbd,0xff,0xc2,0xff,0xc2,0xff,0xc8,
0xff,0xd0,0xff,0xd4,0xff,0xe0,0xff,0xe6,0xff,0xef,0xff,0xf8,0xff,0xfa,0xff,0x4,
0x0,0xff,0xff,0xd,0x0,0x4,0x0,0x12,0x0,0x11,0x0,0x19,0x0,0x1f,0x0,0x23,
0x0,0x2d,0x0,0x30,0x0,0x3d,0x0,0x3d,0x0,0x49,0x0,0x44,0x0,0x4e,0x0,0x45,
0x0,0x4c,0x0,0x43,0x0,0x43,0x0,0x3d,0x0,0x3b,0x0,0x34,0x0,0x35,0x0,0x30,
0x0,0x34,0x0,0x30,0x0,0x36,0x0,0x30,0x0,0x39,0x0,0x30,0x0,0x39,0x0,0x30,
0x0,0x36,0x0,0x2e,0x0,0x2e,0x0,0x2b,0x0,0x27,0x0,0x25,0x0,0x23,0x0,0x1e,
0x0,0x1f,0x0,0x1c,0x0,0x21,0x0,0x22,0x0,0x2b,0x0,0x2d,0x0,0x33,0x0,0x39,
0x0,0x34,0x0,0x41,0x0,0x31,0x0,0x42,0x0,0x2b,0x0,0x3e,0x0,0x28,0x0,0x3d,
0x0,0x29,0x0,0x3d,0x0,0x30,0x0,0x3d,0x0,0x3a,0x0,0x3d,0x0,0x3c,0x0,0x38,
0x0,0x35,0x0,0x31,0x0,0x28,0x0,0x2b,0x0,0x1c,0x0,0x25,0x0,0x12,0x0,0x1c,
0x0,0xe,0x0,0x13,0x0,0xc,0x0,0xa,0x0,0x7,0x0,0x0,0x0,0xfc,0xff,0xf1,
0xff,0xee,0xff,0xe1,0xff,0xe2,0xff,0xd5,0xff,0xdb,0xff,0xd0,0xff,0xda,0xff,0xd2,
0xff,0xde,0xff,0xd6,0xff,0xe5,0xff,0xdd,0xff,0xed,0xff,0xe2,0xff,0xf4,0xff,0xe5,
0xff,0xf9,0xff,0xe8,0xff,0xfc,0xff,0xed,0xff,0x1,0x0,0xf5,0xff,0xc,0x0,0x2,
0x0,0x19,0x0,0x13,0x0,0x28,0x0,0x24,0x0,0x34,0x0,0x31,0x0,0x3a,0x0,0x39,
0x0,0x3d,0x0,0x41,0x0,0x43,0x0,0x4d,0x0,0x4b,0x0,0x5a,0x0,0x52,0x0,0x64,
0x0,0x53,0x0,0x67,0x0,0x4a,0x0,0x5f,0x0,0x3f,0x0,0x54,0x0,0x38,0x0,0x4d,
0x0,0x33,0x0,0x49,0x0,0x33,0x0,0x45,0x0,0x34,0x0,0x41,0x0,0x2c,0x0,0x39,
0x0,0x1c,0x0,0x29,0x0,0xa,0x0,0x13,0x0,0xf5,0xff,0xfe,0xff,0xe3,0xff,0xef,
0xff,0xd8,0xff,0xe5,0xff,0xd6,0xff,0xe0,0xff,0xdb,0xff,0xde,0xff,0xdf,0xff,0xd7,
0xff,0xdd,0xff,0xcd,0xff,0xd8,0xff,0xc5,0xff,0xd1,0xff,0xbf,0xff,0xd0,0xff,0xbb,
0xff,0xd8,0xff,0xc2,0xff,0xe9,0xff,0xd5,0xff,0x1,0x0,0xec,0xff,0x1c,0x0,0x3,
0x0,0x2c,0x0,0x17,0x0,0x32,0x0,0x24,0x0,0x33,0x0,0x2c,0x0,0x33,0x0,0x33,
0x0,0x38,0x0,0x3a,0x0,0x42,0x0,0x42,0x0,0x4f,0x0,0x4f,0x0,0x5e,0x0,0x62,
0x0,0x6a,0x0,0x72,0x0,0x6b,0x0,0x78,0x0,0x5f,0x0,0x73,0x0,0x4e,0x0,0x65,
0x0,0x3f,0x0,0x54,0x0,0x32,0x0,0x4a,0x0,0x2a,0x0,0x45,0x0,0x22,0x0,0x3d,
0x0,0x12,0x0,0x2d,0x0,0xfd,0xff,0x16,0x0,0xe8,0xff,0xfc,0xff,0xd5,0xff,0xe6,
0xff,0xca,0xff,0xd8,0xff,0xc6,0xff,0xcf,0xff,0xbf,0xff,0xc7,0xff,0xb6,0xff,0xbe,
0xff,0xaf,0xff,0xb2,0xff,0xac,0xff,0xa7,0xff,0xae,0xff,0xa4,0xff,0xb7,0xff,0xa7,
0xff,0xc1,0xff,0xae,0xff,0xca,0xff,0xb6,0xff,0xd2,0xff,0xbe,0xff,0xdd,0xff,0xc8,
0xff,0xed,0xff,0xd9,0xff,0x3,0x0,0xf1,0xff,0x1e,0x0,0xa,0x0,0x3a,0x0,0x24,
0x0,0x53,0x0,0x3d,0x0,0x63,0x0,0x4e,0x0,0x6a,0x0,0x59,0x0,0x6e,0x0,0x65,
0x0,0x6f,0x0,0x72,0x0,0x75,0x0,0x81,0x0,0x80,0x0,0x8f,0x0,0x86,0x0,0x94,
0x0,0x82,0x0,0x8d,0x0,0x76,0x0,0x7e,0x0,0x60,0x0,0x6d,0x0,0x46,0x0,0x5c,
0x0,0x32,0x0,0x50,0x0,0x28,0x0,0x48,0x0,0x20,0x0,0x3f,0x0,0x14,0x0,0x30,
0x0,0x0,0x0,0x1a,0x0,0xea,0xff,0xfc,0xff,0xcf,0xff,0xdf,0xff,0xb8,0xff,0xca,
0xff,0xac,0xff,0xbc,0xff,0xaa,0xff,0xb5,0xff,0xac,0xff,0xb1,0xff,0xb3,0xff,0xad,
0xff,0xbb,0xff,0xae,0xff,0xc4,0xff,0xb5,0xff,0xce,0xff,0xbf,0xff,0xd9,0xff,0xcb,
0xff,0xe6,0xff,0xd9,0xff,0xf3,0xff,0xe5,0xff,0x3,0x0,0xf4,0xff,0x14,0x0,0x3,
0x0,0x23,0x0,0x10,0x0,0x2e,0x0,0x1c,0x0,0x39,0x0,0x29,0x0,0x41,0x0,0x36,
0x0,0x48,0x0,0x40,0x0,0x4e,0x0,0x47,0x0,0x50,0x0,0x49,0x0,0x50,0x0,0x49,
0x0,0x50,0x0,0x4b,0x0,0x4d,0x0,0x4f,0x0,0x48,0x0,0x4f,0x0,0x40,0x0,0x48,
0x0,0x35,0x0,0x3e,0x0,0x2a,0x0,0x31,0x0,0x22,0x0,0x24,0x0,0x1a,0x0,0x1f,
0x0,0x11,0x0,0x1b,0x0,0x9,0x0,0x13,0x0,0x1,0x0,0xc,0x0,0xf8,0xff,0x2,
0x0,0xf0,0xff,0xfa,0xff,0xec,0xff,0xf7,0xff,0xee,0xff,0xf8,0xff,0xf4,0xff,0xff,
0xff,0xfb,0xff,0x4,0x0,0xfc,0xff,0x1,0x0,0xf8,0xff,0xfa,0xff,0xf4,0xff,0xf6,
0xff,0xf7,0xff,0xf9,0xff,0xff,0xff,0x7,0x0,0xd,0x0,0x18,0x0,0x20,0x0,0x27,
0x0,0x31,0x0,0x33,0x0,0x3b,0x0,0x39,0x0,0x41,0x0,0x3a,0x0,0x40,0x0,0x3b,
0x0,0x3c,0x0,0x3a,0x0,0x3a,0x0,0x3b,0x0,0x3a,0x0,0x3d,0x0,0x3d,0x0,0x3b,
0x0,0x41,0x0,0x38,0x0,0x3c,0x0,0x33,0x0,0x2e,0x0,0x2a,0x0,0x21,0x0,0x22,
0x0,0x17,0x0,0x1b,0x0,0x11,0x0,0x13,0x0,0xf,0x0,0xd,0x0,0x8,0x0,0x7,
0x0,0x0,0x0,0x0,0x0,0xfb,0xff,0xf8,0xff,0xf4,0xff,0xf3,0xff,0xed,0xff,0xf0,
0xff,0xea,0xff,0xee,0xff,0xe7,0xff,0xee,0xff,0xe4,0xff,0xee,0xff,0xe5,0xff,0xed,
0xff,0xe8,0xff,0xed,0xff,0xeb,0xff,0xef,0xff,0xf0,0xff,0xf4,0xff,0xf4,0xff,0xfc,
0xff,0xf9,0xff,0x3,0x0,0x0,0x0,0x8,0x0,0x8,0x0,0xb,0x0,0x12,0x0,0x11,
0x0,0x20,0x0,0x1d,0x0,0x2e,0x0,0x2c,0x0,0x3b,0x0,0x39,0x0,0x43,0x0,0x43,
0x0,0x46,0x0,0x46,0x0,0x44,0x0,0x44,0x0,0x44,0x0,0x42,0x0,0x48,0x0,0x3f,
0x0,0x50,0x0,0x40,0x0,0x56,0x0,0x47,0x0,0x59,0x0,0x4b,0x0,0x54,0x0,0x49,
0x0,0x4b,0x0,0x48,0x0,0x41,0x0,0x41,0x0,0x35,0x0,0x37,0x0,0x29,0x0,0x2e,
0x0,0x21,0x0,0x25,0x0,0x1b,0x0,0x1e,0x0,0x13,0x0,0x1a,0x0,0x8,0x0,0x10,
0x0,0xfa,0xff,0x4,0x0,0xe7,0xff,0xf4,0xff,0xd1,0xff,0xe2,0xff,0xc1,0xff,0xd6,
0xff,0xbd,0xff,0xd1,0xff,0xc2,0xff,0xd2,0xff,0xc8,0xff,0xd7,0xff,0xcd,0xff,0xdb,
0xff,0xd0,0xff,0xdb,0xff,0xd1,0xff,0xdb,0xff,0xd1,0xff,0xda,0xff,0xd8,0xff,0xdd,
0xff,0xe5,0xff,0xe7,0xff,0xf4,0xff,0xf3,0xff,0x5,0x0,0x0,0x0,0x15,0x0,0xd,
0x0,0x23,0x0,0x15,0x0,0x2e,0x0,0x1b,0x0,0x36,0x0,0x23,0x0,0x3f,0x0,0x2e,
0x0,0x4d,0x0,0x3b,0x0,0x5a,0x0,0x47,0x0,0x64,0x0,0x52,0x0,0x68,0x0,0x57,
0x0,0x64,0x0,0x51,0x0,0x5d,0x0,0x45,0x0,0x56,0x0,0x3d,0x0,0x4e,0x0,0x3a,
0x0,0x49,0x0,0x38,0x0,0x42,0x0,0x37,0x0,0x37,0x0,0x34,0x0,0x29,0x0,0x28,
0x0,0x16,0x0,0x13,0x0,0xfc,0xff,0xff,0xff,0xe4,0xff,0xed,0xff,0xcf,0xff,0xdf,
0xff,0xc0,0xff,0xd5,0xff,0xba,0xff,0xce,0xff,0xb8,0xff,0xc8,0xff,0xb6,0xff,0xc6,
0xff,0xb9,0xff,0xc7,0xff,0xc0,0xff,0xcb,0xff,0xc6,0xff,0xd2,0xff,0xca,0xff,0xd4,
0xff,0xcd,0xff,0xd7,0xff,0xd5,0xff,0xe0,0xff,0xe6,0xff,0xeb,0xff,0xfe,0xff,0xfc,
0xff,0x16,0x0,0x15,0x0,0x2b,0x0,0x2b,0x0,0x3a,0x0,0x3c,0x0,0x47,0x0,0x49,
0x0,0x56,0x0,0x53,0x0,0x67,0x0,0x5d,0x0,0x76,0x0,0x68,0x0,0x84,0x0,0x73,
0x0,0x8c,0x0,0x7d,0x0,0x8b,0x0,0x84,0x0,0x87,0x0,0x82,0x0,0x80,0x0,0x7a,
0x0,0x74,0x0,0x6d,0x0,0x66,0x0,0x5b,0x0,0x53,0x0,0x42,0x0,0x3a,0x0,0x2a,
0x0,0x21,0x0,0x16,0x0,0x9,0x0,0x3,0x0,0xf1,0xff,0xf2,0xff,0xdb,0xff,0xde,
0xff,0xc4,0xff,0xc4,0xff,0xac,0xff,0xaa,0xff,0x97,0xff,0x95,0xff,0x87,0xff,0x83,
0xff,0x7d,0xff,0x79,0xff,0x78,0xff,0x74,0xff,0x72,0xff,0x71,0xff,0x70,0xff,0x71,
0xff,0x70,0xff,0x74,0xff,0x74,0xff,0x79,0xff,0x80,0xff,0x83,0xff,0x96,0xff,0x96,
0xff,0xb3,0xff,0xaf,0xff,0xd4,0xff,0xcd,0xff,0xf0,0xff,0xec,0xff,0x9,0x0,0x8,
0x0,0x23,0x0,0x23,0x0,0x3f,0x0,0x3f,0x0,0x5c,0x0,0x59,0x0,0x76,0x0,0x73,
0x0,0x8c,0x0,0x8b,0x0,0x9f,0x0,0x9d,0x0,0xaa,0x0,0xa7,0x0,0xaa,0x0,0xa9,
0x0,0xa6,0x0,0xa6,0x0,0x9e,0x0,0xa5,0x0,0x96,0x0,0xa3,0x0,0x94,0x0,0x9e,
0x0,0x8f,0x0,0x92,0x0,0x81,0x0,0x81,0x0,0x69,0x0,0x6a,0x0,0x4a,0x0,0x4f,
0x0,0x2f,0x0,0x37,0x0,0x19,0x0,0x22,0x0,0x2,0x0,0xb,0x0,0xec,0xff,0xef,
0xff,0xd5,0xff,0xd0,0xff,0xb9,0xff,0xb3,0xff,0x9e,0xff,0x96,0xff,0x88,0xff,0x7f,
0xff,0x79,0xff,0x72,0xff,0x6d,0xff,0x68,0xff,0x64,0xff,0x62,0xff,0x5f,0xff,0x5d,
0xff,0x62,0xff,0x58,0xff,0x6a,0xff,0x5b,0xff,0x75,0xff,0x67,0xff,0x81,0xff,0x78,
0xff,0x92,0xff,0x8c,0xff,0xa6,0xff,0xa4,0xff,0xbd,0xff,0xbb,0xff,0xd7,0xff,0xd3,
0xff,0xf4,0xff,0xed,0xff,0x10,0x0,0x8,0x0,0x2a,0x0,0x24,0x0,0x42,0x0,0x40,
0x0,0x57,0x0,0x5c,0x0,0x6e,0x0,0x76,0x0,0x83,0x0,0x8e,0x0,0x99,0x0,0xa2,
0x0,0xac,0x0,0xb1,0x0,0xb6,0x0,0xbb,0x0,0xb5,0x0,0xbe,0x0,0xae,0x0,0xb9,
0x0,0xa1,0x0,0xac,0x0,0x95,0x0,0x9c,0x0,0x87,0x0,0x8c,0x0,0x73,0x0,0x78,
0x0,0x5c,0x0,0x60,0x0,0x44,0x0,0x46,0x0,0x2a,0x0,0x2a,0x0,0x11,0x0,0xe,
0x0,0xfb,0xff,0xf6,0xff,0xe7,0xff,0xe1,0xff,0xd5,0xff,0xcc,0xff,0xc4,0xff,0xbb,
0xff,0xb0,0xff,0xaa,0xff,0x9f,0xff,0x99,0xff,0x90,0xff,0x88,0xff,0x85,0xff,0x7c,
0xff,0x7d,0xff,0x72,0xff,0x72,0xff,0x69,0xff,0x6b,0xff,0x62,0xff,0x67,0xff,0x5f,
0xff,0x69,0xff,0x63,0xff,0x70,0xff,0x6a,0xff,0x7b,0xff,0x77,0xff,0x89,0xff,0x8b,
0xff,0x9b,0xff,0xa1,0xff,0xb0,0xff,0xb6,0xff,0xc5,0xff,0xcf,0xff,0xdd,0xff,0xec,
0xff,0xf9,0xff,0x8,0x0,0x16,0x0,0x22,0x0,0x2f,0x0,0x3a,0x0,0x45,0x0,0x50,
0x0,0x5a,0x0,0x67,0x0,0x6e,0x0,0x7e,0x0,0x82,0x0,0x92,0x0,0x98,0x0,0xa2,
0x0,0xa8,0x0,0xae,0x0,0xb2,0x0,0xb6,0x0,0xb6,0x0,0xb7,0x0,0xb4,0x0,0xb1,
0x0,0xaf,0x0,0xa7,0x0,0xa7,0x0,0x9a,0x0,0x9a,0x0,0x8b,0x0,0x88,0x0,0x79,
0x0,0x71,0x0,0x61,0x0,0x53,0x0,0x43,0x0,0x32,0x0,0x21,0x0,0xf,0x0,0xfc,
0xff,0xeb,0xff,0xd6,0xff,0xc9,0xff,0xb3,0xff,0xaa,0xff,0x92,0xff,0x8d,0xff,0x76,
0xff,0x74,0xff,0x61,0xff,0x5e,0xff,0x4f,0xff,0x4c,0xff,0x3f,0xff,0x3c,0xff,0x32,
0xff,0x32,0xff,0x2c,0xff,0x32,0xff,0x2d,0xff,0x35,0xff,0x36,0xff,0x3a,0xff,0x42,
0xff,0x45,0xff,0x50,0xff,0x54,0xff,0x65,0xff,0x6a,0xff,0x80,0xff,0x8a,0xff,0x9e,
0xff,0xae,0xff,0xc0,0xff,0xd1,0xff,0xe4,0xff,0xf4,0xff,0x7,0x0,0x17,0x0,0x2b,
0x0,0x3e,0x0,0x52,0x0,0x66,0x0,0x7c,0x0,0x89,0x0,0xa3,0x0,0xa7,0x0,0xc0,
0x0,0xbd,0x0,0xd3,0x0,0xcb,0x0,0xdf,0x0,0xd5,0x0,0xe4,0x0,0xdd,0x0,0xe6,
0x0,0xe3,0x0,0xe8,0x0,0xe3,0x0,0xe6,0x0,0xdd,0x0,0xda,0x0,0xd0,0x0,0xc2,
0x0,0xb8,0x0,0xa4,0x0,0x95,0x0,0x82,0x0,0x72,0x0,0x5f,0x0,0x4d,0x0,0x3c,
0x0,0x26,0x0,0x16,0x0,0x3,0x0,0xef,0xff,0xe0,0xff,0xca,0xff,0xba,0xff,0xa3,
0xff,0x94,0xff,0x78,0xff,0x69,0xff,0x4f,0xff,0x3f,0xff,0x2b,0xff,0x1d,0xff,0xa,
0xff,0x5,0xff,0xf0,0xfe,0xf6,0xfe,0xe5,0xfe,0xf0,0xfe,0xe3,0xfe,0xf1,0xfe,0xe9,
0xfe,0xf8,0xfe,0xf8,0xfe,0x6,0xff,0xe,0xff,0x1c,0xff,0x28,0xff,0x3d,0xff,0x49,
0xff,0x64,0xff,0x70,0xff,0x91,0xff,0x9b,0xff,0xbf,0xff,0xcc,0xff,0xeb,0xff,0xfe,
0xff,0x1b,0x0,0x30,0x0,0x50,0x0,0x65,0x0,0x84,0x0,0x9b,0x0,0xb3,0x0,0xcb,
0x0,0xdd,0x0,0xf2,0x0,0xfb,0x0,0xe,0x1,0x12,0x1,0x24,0x1,0x25,0x1,0x36,
0x1,0x34,0x1,0x40,0x1,0x40,0x1,0x48,0x1,0x44,0x1,0x4a,0x1,0x3d,0x1,0x3c,
0x1,0x29,0x1,0x22,0x1,0x8,0x1,0x0,0x1,0xe0,0x0,0xd4,0x0,0xb5,0x0,0xa6,
0x0,0x85,0x0,0x76,0x0,0x51,0x0,0x40,0x0,0x1a,0x0,0x8,0x0,0xdd,0xff,0xd0,
0xff,0xa1,0xff,0x97,0xff,0x68,0xff,0x63,0xff,0x36,0xff,0x33,0xff,0xd,0xff,0x8,
0xff,0xec,0xfe,0xe4,0xfe,0xcf,0xfe,0xc8,0xfe,0xb5,0xfe,0xb4,0xfe,0xa3,0xfe,0xa9,
0xfe,0xa2,0xfe,0xa9,0xfe,0xb0,0xfe,0xb6,0xfe,0xc9,0xfe,0xd0,0xfe,0xef,0xfe,0xf5,
0xfe,0x1c,0xff,0x25,0xff,0x4e,0xff,0x58,0xff,0x84,0xff,0x8a,0xff,0xb9,0xff,0xbd,
0xff,0xee,0xff,0xf3,0xff,0x27,0x0,0x2d,0x0,0x63,0x0,0x6a,0x0,0x9f,0x0,0xa6,
0x0,0xd6,0x0,0xdc,0x0,0x3,0x1,0x9,0x1,0x2a,0x1,0x2f,0x1,0x4b,0x1,0x4c,
0x1,0x61,0x1,0x5e,0x1,0x6a,0x1,0x64,0x1,0x66,0x1,0x5f,0x1,0x53,0x1,0x4f,
0x1,0x3a,0x1,0x3a,0x1,0x20,0x1,0x20,0x1,0xfe,0x0,0xfa,0x0,0xce,0x0,0xc8,
0x0,0x91,0x0,0x8e,0x0,0x51,0x0,0x4f,0x0,0x12,0x0,0x10,0x0,0xd7,0xff,0xd8,
0xff,0xa1,0xff,0xa5,0xff,0x6c,0xff,0x72,0xff,0x39,0xff,0x41,0xff,0xe,0xff,0x17,
0xff,0xeb,0xfe,0xf5,0xfe,0xd4,0xfe,0xdd,0xfe,0xc7,0xfe,0xd1,0xfe,0xc0,0xfe,0xca,
0xfe,0xbf,0xfe,0xc9,0xfe,0xca,0xfe,0xd0,0xfe,0xdc,0xfe,0xe1,0xfe,0xf6,0xfe,0xfe,
0xfe,0x1b,0xff,0x22,0xff,0x46,0xff,0x4b,0xff,0x76,0xff,0x7c,0xff,0xac,0xff,0xb0,
0xff,0xe2,0xff,0xe3,0xff,0x16,0x0,0x18,0x0,0x4a,0x0,0x4c,0x0,0x81,0x0,0x7e,
0x0,0xb3,0x0,0xb1,0x0,0xdc,0x0,0xdd,0x0,0x3,0x1,0x1,0x1,0x24,0x1,0x1f,
0x1,0x38,0x1,0x31,0x1,0x41,0x1,0x3b,0x1,0x43,0x1,0x3e,0x1,0x3c,0x1,0x38,
0x1,0x2e,0x1,0x2c,0x1,0x1c,0x1,0x19,0x1,0x1,0x1,0xfc,0x0,0xdf,0x0,0xd7,
0x0,0xb7,0x0,0xad,0x0,0x88,0x0,0x7e,0x0,0x58,0x0,0x51,0x0,0x29,0x0,0x23,
0x0,0xf6,0xff,0xf5,0xff,0xc4,0xff,0xc7,0xff,0x94,0xff,0x97,0xff,0x67,0xff,0x6a,
0xff,0x3f,0xff,0x45,0xff,0x21,0xff,0x26,0xff,0x8,0xff,0xb,0xff,0xf2,0xfe,0xfa,
0xfe,0xe6,0xfe,0xf3,0xfe,0xe7,0xfe,0xf8,0xfe,0xf5,0xfe,0x6,0xff,0xe,0xff,0x1b,
0xff,0x2d,0xff,0x35,0xff,0x4e,0xff,0x55,0xff,0x73,0xff,0x77,0xff,0x9c,0xff,0x9e,
0xff,0xcb,0xff,0xcc,0xff,0xff,0xff,0xfe,0xff,0x32,0x0,0x2e,0x0,0x64,0x0,0x5e,
0x0,0x94,0x0,0x8c,0x0,0xbf,0x0,0xb3,0x0,0xe7,0x0,0xd7,0x0,0x7,0x1,0xf6,
0x0,0x1a,0x1,0xd,0x1,0x29,0x1,0x1e,0x1,0x37,0x1,0x2b,0x1,0x3e,0x1,0x31,
0x1,0x3a,0x1,0x2e,0x1,0x27,0x1,0x1f,0x1,0xa,0x1,0x6,0x1,0xe8,0x0,0xe6,
0x0,0xc7,0x0,0xc3,0x0,0xa2,0x0,0x9e,0x0,0x77,0x0,0x76,0x0,0x42,0x0,0x43,
0x0,0x6,0x0,0xb,0x0,0xce,0xff,0xd4,0xff,0x9c,0xff,0xa2,0xff,0x71,0xff,0x7b,
0xff,0x4f,0xff,0x5b,0xff,0x34,0xff,0x3f,0xff,0x1c,0xff,0x28,0xff,0x8,0xff,0x12,
0xff,0xf9,0xfe,0xfe,0xfe,0xf2,0xfe,0xf7,0xfe,0xf4,0xfe,0xfa,0xfe,0xff,0xfe,0x5,
0xff,0x15,0xff,0x19,0xff,0x34,0xff,0x35,0xff,0x58,0xff,0x57,0xff,0x84,0xff,0x7e,
0xff,0xb1,0xff,0xaa,0xff,0xdf,0xff,0xd6,0xff,0xd,0x0,0x0,0x0,0x39,0x0,0x2d,
0x0,0x64,0x0,0x5a,0x0,0x95,0x0,0x8a,0x0,0xc6,0x0,0xbf,0x0,0xf4,0x0,0xf1,
0x0,0x1b,0x1,0x17,0x1,0x36,0x1,0x33,0x1,0x48,0x1,0x45,0x1,0x53,0x1,0x4b,
0x1,0x51,0x1,0x49,0x1,0x44,0x1,0x3e,0x1,0x31,0x1,0x2c,0x1,0x1a,0x1,0x16,
0x1,0xfe,0x0,0xf9,0x0,0xdb,0x0,0xd7,0x0,0xb1,0x0,0xb1,0x0,0x81,0x0,0x83,
0x0,0x4d,0x0,0x52,0x0,0x18,0x0,0x1f,0x0,0xe5,0xff,0xe7,0xff,0xb2,0xff,0xb1,
0xff,0x7f,0xff,0x81,0xff,0x55,0xff,0x57,0xff,0x2f,0xff,0x35,0xff,0x10,0xff,0x1b,
0xff,0xfb,0xfe,0x3,0xff,0xea,0xfe,0xef,0xfe,0xde,0xfe,0xe4,0xfe,0xdb,0xfe,0xe2,
0xfe,0xdf,0xfe,0xe6,0xfe,0xeb,0xfe,0xf5,0xfe,0x6,0xff,0x10,0xff,0x2c,0xff,0x37,
0xff,0x59,0xff,0x63,0xff,0x8c,0xff,0x92,0xff,0xbf,0xff,0xc5,0xff,0xf1,0xff,0xf5,
0xff,0x24,0x0,0x26,0x0,0x5a,0x0,0x5e,0x0,0x92,0x0,0x96,0x0,0xc5,0x0,0xc7,
0x0,0xef,0x0,0xf4,0x0,0x13,0x1,0x1a,0x1,0x33,0x1,0x37,0x1,0x4b,0x1,0x4f,
0x1,0x5c,0x1,0x63,0x1,0x65,0x1,0x6b,0x1,0x63,0x1,0x64,0x1,0x52,0x1,0x52,
0x1,0x36,0x1,0x37,0x1,0x13,0x1,0x15,0x1,0xf2,0x0,0xf1,0x0,0xce,0x0,0xc9,
0x0,0xa5,0x0,0x9f,0x0,0x76,0x0,0x6f,0x0,0x3e,0x0,0x34,0x0,0xfe,0xff,0xf6,
0xff,0xc2,0xff,0xbe,0xff,0x8e,0xff,0x8b,0xff,0x61,0xff,0x5f,0xff,0x3d,0xff,0x3b,
0xff,0x1c,0xff,0x17,0xff,0xf8,0xfe,0xf3,0xfe,0xd9,0xfe,0xd7,0xfe,0xc5,0xfe,0xc6,
0xfe,0xc0,0xfe,0xc2,0xfe,0xcd,0xfe,0xcf,0xfe,0xe6,0xfe,0xe9,0xfe,0x5,0xff,0x6,
0xff,0x28,0xff,0x26,0xff,0x4e,0xff,0x4d,0xff,0x7a,0xff,0x7b,0xff,0xac,0xff,0xb0,
0xff,0xe4,0xff,0xe9,0xff,0x1c,0x0,0x1f,0x0,0x52,0x0,0x51,0x0,0x83,0x0,0x7f,
0x0,0xb3,0x0,0xac,0x0,0xde,0x0,0xd9,0x0,0x5,0x1,0x3,0x1,0x27,0x1,0x27,
0x1,0x3f,0x1,0x43,0x1,0x4c,0x1,0x51,0x1,0x51,0x1,0x54,0x1,0x4c,0x1,0x4f,
0x1,0x3d,0x1,0x40,0x1,0x27,0x1,0x28,0x1,0xc,0x1,0xd,0x1,0xeb,0x0,0xef,
0x0,0xc5,0x0,0xc9,0x0,0x98,0x0,0x9a,0x0,0x65,0x0,0x63,0x0,0x2d,0x0,0x2a,
0x0,0xf5,0xff,0xf5,0xff,0xc5,0xff,0xc7,0xff,0x9f,0xff,0xa0,0xff,0x7e,0xff,0x7c,
0xff,0x5e,0xff,0x59,0xff,0x3d,0xff,0x37,0xff,0x1d,0xff,0x19,0xff,0x3,0xff,0x4,
0xff,0xf7,0xfe,0xf9,0xfe,0xf7,0xfe,0xf9,0xfe,0x2,0xff,0x0,0xff,0x14,0xff,0xd,
0xff,0x2d,0xff,0x23,0xff,0x4a,0xff,0x3f,0xff,0x6a,0xff,0x61,0xff,0x91,0xff,0x8a,
0xff,0xc0,0xff,0xb9,0xff,0xf1,0xff,0xe8,0xff,0x21,0x0,0x16,0x0,0x4f,0x0,0x3f,
0x0,0x75,0x0,0x65,0x0,0x96,0x0,0x8c,0x0,0xb6,0x0,0xb1,0x0,0xd3,0x0,0xd2,
0x0,0xef,0x0,0xef,0x0,0x4,0x1,0x2,0x1,0xd,0x1,0xb,0x1,0xb,0x1,0xb,
0x1,0x3,0x1,0x4,0x1,0xf5,0x0,0xf7,0x0,0xe4,0x0,0xe6,0x0,0xd0,0x0,0xd2,
0x0,0xb5,0x0,0xbd,0x0,0x96,0x0,0xa2,0x0,0x74,0x0,0x7e,0x0,0x4c,0x0,0x57,
0x0,0x24,0x0,0x2f,0x0,0xfc,0xff,0x8,0x0,0xd5,0xff,0xe3,0xff,0xb2,0xff,0xbe,
0xff,0x91,0xff,0x9c,0xff,0x76,0xff,0x80,0xff,0x63,0xff,0x69,0xff,0x54,0xff,0x5a,
0xff,0x46,0xff,0x50,0xff,0x3e,0xff,0x47,0xff,0x3b,0xff,0x43,0xff,0x3c,0xff,0x46,
0xff,0x47,0xff,0x4c,0xff,0x59,0xff,0x58,0xff,0x6f,0xff,0x6f,0xff,0x8a,0xff,0x8a,
0xff,0xad,0xff,0xaa,0xff,0xd3,0xff,0xce,0xff,0xf8,0xff,0xf2,0xff,0x1e,0x0,0x17,
0x0,0x41,0x0,0x3c,0x0,0x61,0x0,0x5d,0x0,0x7f,0x0,0x79,0x0,0x9b,0x0,0x94,
0x0,0xb2,0x0,0xab,0x0,0xc7,0x0,0xbf,0x0,0xd8,0x0,0xcf,0x0,0xe2,0x0,0xda,
0x0,0xe3,0x0,0xdd,0x0,0xdf,0x0,0xd7,0x0,0xd3,0x0,0xca,0x0,0xc0,0x0,0xbd,
0x0,0xad,0x0,0xad,0x0,0x98,0x0,0x9a,0x0,0x7e,0x0,0x84,0x0,0x62,0x0,0x6a,
0x0,0x43,0x0,0x49,0x0,0x21,0x0,0x24,0x0,0xfd,0xff,0xfb,0xff,0xd9,0xff,0xd7,
0xff,0xb9,0xff,0xba,0xff,0xa0,0xff,0xa1,0xff,0x8b,0xff,0x8d,0xff,0x78,0xff,0x80,
0xff,0x6d,0xff,0x75,0xff,0x68,0xff,0x6e,0xff,0x68,0xff,0x6e,0xff,0x6c,0xff,0x73,
0xff,0x72,0xff,0x7b,0xff,0x79,0xff,0x84,0xff,0x87,0xff,0x90,0xff,0x9d,0xff,0xa2,
0xff,0xb8,0xff,0xb9,0xff,0xd4,0xff,0xd3,0xff,0xf2,0xff,0xef,0xff,0x10,0x0,0xb,
0x0,0x2a,0x0,0x26,0x0,0x42,0x0,0x41,0x0,0x5a,0x0,0x5a,0x0,0x71,0x0,0x6f,
0x0,0x87,0x0,0x81,0x0,0x9c,0x0,0x92,0x0,0xac,0x0,0xa1,0x0,0xb8,0x0,0xac,
0x0,0xbe,0x0,0xb2,0x0,0xb9,0x0,0xb3,0x0,0xaf,0x0,0xa8,0x0,0xa4,0x0,0x97,
0x0,0x91,0x0,0x86,0x0,0x7d,0x0,0x74,0x0,0x6a,0x0,0x62,0x0,0x53,0x0,0x4e,
0x0,0x3c,0x0,0x38,0x0,0x26,0x0,0x22,0x0,0xe,0x0,0xa,0x0,0xf6,0xff,0xf5,
0xff,0xe2,0xff,0xe4,0xff,0xd1,0xff,0xd3,0xff,0xc3,0xff,0xc2,0xff,0xb4,0xff,0xb5,
0xff,0xa8,0xff,0xac,0xff,0xa2,0xff,0xa4,0xff,0x9e,0xff,0x9f,0xff,0x9c,0xff,0x9d,
0xff,0x9d,0xff,0xa2,0xff,0xa2,0xff,0xa9,0xff,0xac,0xff,0xb3,0xff,0xbc,0xff,0xc3,
0xff,0xd1,0xff,0xd4,0xff,0xe8,0xff,0xe7,0xff,0xfd,0xff,0xff,0xff,0x10,0x0,0x17,
0x0,0x25,0x0,0x2e,0x0,0x3d,0x0,0x45,0x0,0x53,0x0,0x57,0x0,0x63,0x0,0x62,
0x0,0x6d,0x0,0x6a,0x0,0x75,0x0,0x71,0x0,0x7c,0x0,0x78,0x0,0x81,0x0,0x7e,
0x0,0x82,0x0,0x83,0x0,0x80,0x0,0x84,0x0,0x77,0x0,0x7b,0x0,0x6a,0x0,0x6a,
0x0,0x59,0x0,0x57,0x0,0x47,0x0,0x45,0x0,0x37,0x0,0x35,0x0,0x2a,0x0,0x29,
0x0,0x1d,0x0,0x1b,0x0,0xe,0x0,0xd,0x0,0xfe,0xff,0x0,0x0,0xee,0xff,0xef,
0xff,0xe1,0xff,0xe0,0xff,0xd6,0xff,0xd7,0xff,0xcf,0xff,0xd4,0xff,0xcf,0xff,0xd7,
0xff,0xd4,0xff,0xdb,0xff,0xd9,0xff,0xdf,0xff,0xe2,0xff,0xe8,0xff,0xee,0xff,0xf3,
0xff,0xfa,0xff,0xfc,0xff,0x5,0x0,0x7,0x0,0x13,0x0,0x13,0x0,0x20,0x0,0x1f,
0x0,0x2d,0x0,0x2b,0x0,0x3b,0x0,0x35,0x0,0x4a,0x0,0x40,0x0,0x57,0x0,0x4e,
0x0,0x60,0x0,0x5b,0x0,0x69,0x0,0x67,0x0,0x71,0x0,0x70,0x0,0x74,0x0,0x73,
0x0,0x72,0x0,0x72,0x0,0x6d,0x0,0x70,0x0,0x6c,0x0,0x6c,0x0,0x6a,0x0,0x69,
0x0,0x64,0x0,0x66,0x0,0x59,0x0,0x5d,0x0,0x48,0x0,0x4b,0x0,0x33,0x0,0x34,
0x0,0x1b,0x0,0x19,0x0,0x3,0x0,0x0,0x0,0xee,0xff,0xec,0xff,0xdc,0xff,0xdc,
0xff,0xce,0xff,0xce,0xff,0xc3,0xff,0xc5,0xff,0xb7,0xff,0xba,0xff,0xa8,0xff,0xad,
0xff,0xa0,0xff,0xa4,0xff,0xa1,0xff,0xa2,0xff,0xa7,0xff,0xa9,0xff,0xb0,0xff,0xb3,
0xff,0xba,0xff,0xbc,0xff,0xc4,0xff,0xc6,0xff,0xd1,0xff,0xd4,0xff,0xe5,0xff,0xe5,
0xff,0x1,0x0,0xfd,0xff,0x1f,0x0,0x1b,0x0,0x3b,0x0,0x38,0x0,0x53,0x0,0x51,
0x0,0x67,0x0,0x66,0x0,0x76,0x0,0x76,0x0,0x86,0x0,0x85,0x0,0x97,0x0,0x95,
0x0,0xa7,0x0,0xa2,0x0,0xb3,0x0,0xaa,0x0,0xb9,0x0,0xaf,0x0,0xb9,0x0,0xb2,
0x0,0xb1,0x0,0xad,0x0,0xa3,0x0,0xa1,0x0,0x95,0x0,0x92,0x0,0x86,0x0,0x81,
0x0,0x71,0x0,0x6d,0x0,0x5a,0x0,0x57,0x0,0x3d,0x0,0x3d,0x0,0x1d,0x0,0x1e,
0x0,0xfc,0xff,0xfd,0xff,0xdf,0xff,0xdb,0xff,0xc5,0xff,0xc0,0xff,0xae,0xff,0xac,
0xff,0x98,0xff,0x97,0xff,0x85,0xff,0x84,0xff,0x79,0xff,0x74,0xff,0x71,0xff,0x69,
0xff,0x6a,0xff,0x66,0xff,0x6b,0xff,0x6a,0xff,0x74,0xff,0x74,0xff,0x82,0xff,0x84,
0xff,0x91,0xff,0x93,0xff,0xa1,0xff,0xa4,0xff,0xb6,0xff,0xb9,0xff,0xcb,0xff,0xd2,
0xff,0xe4,0xff,0xee,0xff,0x4,0x0,0xe,0x0,0x22,0x0,0x2d,0x0,0x3c,0x0,0x49,
0x0,0x56,0x0,0x63,0x0,0x70,0x0,0x7e,0x0,0x8a,0x0,0x98,0x0,0xa2,0x0,0xaf,
0x0,0xb5,0x0,0xc0,0x0,0xbe,0x0,0xc8,0x0,0xc0,0x0,0xc9,0x0,0xc2,0x0,0xc5,
0x0,0xc2,0x0,0xbe,0x0,0xbd,0x0,0xb6,0x0,0xb4,0x0,0xaa,0x0,0xa4,0x0,0x97,
0x0,0x89,0x0,0x7a,0x0,0x6a,0x0,0x5b,0x0,0x4a,0x0,0x3b,0x0,0x29,0x0,0x1b,
0x0,0xe,0x0,0x0,0x0,0xf5,0xff,0xe7,0xff,0xd8,0xff,0xcd,0xff,0xbb,0xff,0xb2,
0xff,0xa0,0xff,0x9a,0xff,0x89,0xff,0x84,0xff,0x7b,0xff,0x74,0xff,0x73,0xff,0x6c,
0xff,0x6e,0xff,0x6b,0xff,0x6d,0xff,0x70,0xff,0x6d,0xff,0x76,0xff,0x71,0xff,0x79,
0xff,0x7a,0xff,0x81,0xff,0x86,0xff,0x93,0xff,0x9a,0xff,0xab,0xff,0xb3,0xff,0xc6,
0xff,0xcc,0xff,0xe4,0xff,0xe5,0xff,0xfe,0xff,0x1,0x0,0x17,0x0,0x1b,0x0,0x30,
0x0,0x36,0x0,0x45,0x0,0x52,0x0,0x5c,0x0,0x6b,0x0,0x73,0x0,0x80,0x0,0x83,
0x0,0x8e,0x0,0x93,0x0,0x99,0x0,0x9f,0x0,0xa1,0x0,0xa6,0x0,0xa6,0x0,0xaa,
0x0,0xa8,0x0,0xaa,0x0,0xa8,0x0,0xa4,0x0,0xa1,0x0,0x9c,0x0,0x95,0x0,0x8e,
0x0,0x87,0x0,0x7d,0x0,0x77,0x0,0x6f,0x0,0x65,0x0,0x5f,0x0,0x50,0x0,0x47,
0x0,0x37,0x0,0x2d,0x0,0x1d,0x0,0xf,0x0,0x2,0x0,0xf1,0xff,0xe5,0xff,0xd7,
0xff,0xc8,0xff,0xbf,0xff,0xaf,0xff,0xaa,0xff,0x99,0xff,0x96,0xff,0x86,0xff,0x83,
0xff,0x79,0xff,0x73,0xff,0x73,0xff,0x69,0xff,0x70,0xff,0x64,0xff,0x72,0xff,0x64,
0xff,0x76,0xff,0x6a,0xff,0x7a,0xff,0x74,0xff,0x83,0xff,0x82,0xff,0x94,0xff,0x94,
0xff,0xab,0xff,0xa9,0xff,0xc8,0xff,0xc6,0xff,0xe7,0xff,0xe8,0xff,0x5,0x0,0xb,
0x0,0x22,0x0,0x26,0x0,0x3c,0x0,0x3d,0x0,0x51,0x0,0x55,0x0,0x67,0x0,0x6c,
0x0,0x7f,0x0,0x84,0x0,0x96,0x0,0x9e,0x0,0xa9,0x0,0xb3,0x0,0xb2,0x0,0xbe,
0x0,0xb2,0x0,0xc2,0x0,0xae,0x0,0xbe,0x0,0xa8,0x0,0xb8,0x0,0x9f,0x0,0xb2,
0x0,0x93,0x0,0xa7,0x0,0x83,0x0,0x97,0x0,0x6c,0x0,0x85,0x0,0x53,0x0,0x6a,
0x0,0x38,0x0,0x4a,0x0,0x1b,0x0,0x2b,0x0,0xfe,0xff,0xa,0x0,0xe3,0xff,0xe9,
0xff,0xc7,0xff,0xcb,0xff,0xad,0xff,0xb2,0xff,0x9b,0xff,0x9e,0xff,0x8e,0xff,0x8e,
0xff,0x82,0xff,0x7c,0xff,0x79,0xff,0x6b,0xff,0x73,0xff,0x5f,0xff,0x70,0xff,0x59,
0xff,0x75,0xff,0x5c,0xff,0x83,0xff,0x69,0xff,0x96,0xff,0x7c,0xff,0xab,0xff,0x8e,
0xff,0xbe,0xff,0xa1,0xff,0xce,0xff,0xb3,0xff,0xe0,0xff,0xc3,0xff,0xf6,0xff,0xd8,
0xff,0x12,0x0,0xf6,0xff,0x30,0x0,0x1a,0x0,0x4c,0x0,0x38,0x0,0x62,0x0,0x51,
0x0,0x71,0x0,0x66,0x0,0x7a,0x0,0x77,0x0,0x82,0x0,0x87,0x0,0x87,0x0,0x98,
0x0,0x8d,0x0,0xa2,0x0,0x90,0x0,0xa7,0x0,0x8a,0x0,0xa6,0x0,0x7a,0x0,0x9c,
0x0,0x6a,0x0,0x8d,0x0,0x5a,0x0,0x7e,0x0,0x4b,0x0,0x70,0x0,0x3f,0x0,0x62,
0x0,0x31,0x0,0x52,0x0,0x1e,0x0,0x3a,0x0,0x5,0x0,0x1b,0x0,0xe9,0xff,0xfb,
0xff,0xd2,0xff,0xde,0xff,0xc4,0xff,0xc9,0xff,0xb8,0xff,0xba,0xff,0xaa,0xff,0xac,
0xff,0xa0,0xff,0x9b,0xff,0x98,0xff,0x8b,0xff,0x91,0xff,0x7f,0xff,0x8e,0xff,0x78,
0xff,0x92,0xff,0x78,0xff,0x98,0xff,0x7b,0xff,0x9e,0xff,0x80,0xff,0xa7,0xff,0x88,
0xff,0xb2,0xff,0x94,0xff,0xc2,0xff,0xa2,0xff,0xd5,0xff,0xb6,0xff,0xe9,0xff,0xd1,
0xff,0xfc,0xff,0xe9,0xff,0xd,0x0,0xfe,0xff,0x1b,0x0,0x12,0x0,0x29,0x0,0x24,
0x0,0x3a,0x0,0x38,0x0,0x4b,0x0,0x4f,0x0,0x5d,0x0,0x66,0x0,0x6a,0x0,0x79,
0x0,0x70,0x0,0x84,0x0,0x70,0x0,0x88,0x0,0x6d,0x0,0x89,0x0,0x6b,0x0,0x85,
0x0,0x69,0x0,0x7f,0x0,0x64,0x0,0x76,0x0,0x5c,0x0,0x69,0x0,0x50,0x0,0x5c,
0x0,0x3f,0x0,0x4d,0x0,0x29,0x0,0x35,0x0,0x13,0x0,0x19,0x0,0xff,0xff,0xff,
0xff,0xee,0xff,0xe6,0xff,0xdd,0xff,0xd1,0xff,0xca,0xff,0xbb,0xff,0xb7,0xff,0xa4,
0xff,0xa7,0xff,0x94,0xff,0x9b,0xff,0x8a,0xff,0x93,0xff,0x80,0xff,0x93,0xff,0x7f,
0xff,0x97,0xff,0x86,0xff,0x9e,0xff,0x8d,0xff,0xa7,0xff,0x99,0xff,0xb1,0xff,0xa8,
0xff,0xbc,0xff,0xb4,0xff,0xc7,0xff,0xc2,0xff,0xd3,0xff,0xd4,0xff,0xe0,0xff,0xe7,
0xff,0xf2,0xff,0xfd,0xff,0x9,0x0,0x14,0x0,0x1e,0x0,0x29,0x0,0x31,0x0,0x3c,
0x0,0x44,0x0,0x4f,0x0,0x54,0x0,0x60,0x0,0x61,0x0,0x6f,0x0,0x6c,0x0,0x7b,
0x0,0x71,0x0,0x80,0x0,0x6f,0x0,0x7e,0x0,0x6b,0x0,0x79,0x0,0x66,0x0,0x71,
0x0,0x60,0x0,0x69,0x0,0x5d,0x0,0x5f,0x0,0x57,0x0,0x56,0x0,0x4b,0x0,0x49,
0x0,0x3b,0x0,0x38,0x0,0x28,0x0,0x23,0x0,0x15,0x0,0xb,0x0,0x3,0x0,0xf7,
0xff,0xf3,0xff,0xea,0xff,0xe8,0xff,0xdf,0xff,0xdf,0xff,0xd3,0xff,0xd4,0xff,0xc4,
0xff,0xc7,0xff,0xb5,0xff,0xb8,0xff,0xa8,0xff,0xaa,0xff,0xa0,0xff,0xa2,0xff,0x9b,
0xff,0x9f,0xff,0x9b,0xff,0xa1,0xff,0x9e,0xff,0xa5,0xff,0x9f,0xff,0xa6,0xff,0xa2,
0xff,0xa5,0xff,0xa9,0xff,0xa7,0xff,0xad,0xff,0xaa,0xff,0xb0,0xff,0xb1,0xff,0xbb,
0xff,0xc1,0xff,0xc8,0xff,0xd2,0xff,0xd7,0xff,0xe4,0xff,0xe9,0xff,0xf7,0xff,0xfd,
0xff,0x9,0x0,0x10,0x0,0x1a,0x0,0x23,0x0,0x2c,0x0,0x36,0x0,0x3c,0x0,0x4a,
0x0,0x4e,0x0,0x59,0x0,0x5e,0x0,0x63,0x0,0x67,0x0,0x6b,0x0,0x6b,0x0,0x71,
0x0,0x6e,0x0,0x74,0x0,0x71,0x0,0x75,0x0,0x71,0x0,0x71,0x0,0x69,0x0,0x67,
0x0,0x5b,0x0,0x5a,0x0,0x49,0x0,0x49,0x0,0x35,0x0,0x35,0x0,0x23,0x0,0x22,
0x0,0x11,0x0,0x10,0x0,0xfe,0xff,0xfe,0xff,0xeb,0xff,0xec,0xff,0xd9,0xff,0xd8,
0xff,0xc6,0xff,0xc2,0xff,0xb2,0xff,0xaf,0xff,0xa0,0xff,0xa1,0xff,0x96,0xff,0x96,
0xff,0x91,0xff,0x8f,0xff,0x8b,0xff,0x89,0xff,0x86,0xff,0x80,0xff,0x82,0xff,0x77,
0xff,0x81,0xff,0x76,0xff,0x85,0xff,0x7b,0xff,0x90,0xff,0x84,0xff,0x9d,0xff,0x94,
0xff,0xac,0xff,0xa9,0xff,0xbc,0xff,0xba,0xff,0xcd,0xff,0xca,0xff,0xe0,0xff,0xde,
0xff,0xf5,0xff,0xf3,0xff,0xa,0x0,0x8,0x0,0x1e,0x0,0x1d,0x0,0x2f,0x0,0x2f,
0x0,0x3e,0x0,0x3d,0x0,0x4c,0x0,0x4a,0x0,0x59,0x0,0x56,0x0,0x63,0x0,0x60,
0x0,0x6a,0x0,0x6a,0x0,0x6c,0x0,0x6e,0x0,0x66,0x0,0x6a,0x0,0x5b,0x0,0x5f,
0x0,0x4f,0x0,0x52,0x0,0x41,0x0,0x44,0x0,0x35,0x0,0x37,0x0,0x28,0x0,0x2a,
0x0,0x19,0x0,0x1d,0x0,0x8,0x0,0xe,0x0,0xf5,0xff,0xfa,0xff,0xde,0xff,0xe4,
0xff,0xca,0xff,0xd0,0xff,0xbb,0xff,0xbf,0xff,0xb0,0xff,0xb2,0xff,0xa5,0xff,0xa7,
0xff,0x9a,0xff,0x9f,0xff,0x93,0xff,0x9b,0xff,0x8f,0xff,0x98,0xff,0x8d,0xff,0x94,
0xff,0x90,0xff,0x91,0xff,0x94,0xff,0x8f,0xff,0x9a,0xff,0x91,0xff,0xa3,0xff,0x99,
0xff,0xae,0xff,0xa2,0xff,0xb7,0xff,0xad,0xff,0xc3,0xff,0xbc,0xff,0xd3,0xff,0xca,
0xff,0xe5,0xff,0xd7,0xff,0xfb,0xff,0xea,0xff,0x10,0x0,0x1,0x0,0x23,0x0,0x16,
0x0,0x34,0x0,0x29,0x0,0x40,0x0,0x39,0x0,0x48,0x0,0x43,0x0,0x50,0x0,0x4a,
0x0,0x58,0x0,0x52,0x0,0x5d,0x0,0x59,0x0,0x60,0x0,0x5e,0x0,0x60,0x0,0x61,
0x0,0x5a,0x0,0x5f,0x0,0x4e,0x0,0x57,0x0,0x40,0x0,0x4b,0x0,0x32,0x0,0x3d,
0x0,0x22,0x0,0x2f,0x0,0x11,0x0,0x22,0x0,0xfe,0xff,0xe,0x0,0xe8,0xff,0xf5,
0xff,0xd2,0xff,0xdf,0xff,0xbd,0xff,0xc9,0xff,0xa9,0xff,0xb5,0xff,0x9a,0xff,0xa6,
0xff,0x8d,0xff,0x94,0xff,0x7e,0xff,0x81,0xff,0x74,0xff,0x76,0xff,0x71,0xff,0x72,
0xff,0x72,0xff,0x73,0xff,0x79,0xff,0x7a,0xff,0x83,0xff,0x83,0xff,0x8b,0xff,0x89,
0xff,0x94,0xff,0x8f,0xff,0x9f,0xff,0x99,0xff,0xb1,0xff,0xa9,0xff,0xc6,0xff,0xbd,
0xff,0xdb,0xff,0xd3,0xff,0xf1,0xff,0xe9,0xff,0x8,0x0,0xfd,0xff,0x1c,0x0,0x10,
0x0,0x30,0x0,0x26,0x0,0x45,0x0,0x3b,0x0,0x58,0x0,0x50,0x0,0x67,0x0,0x62,
0x0,0x6f,0x0,0x6d,0x0,0x73,0x0,0x70,0x0,0x73,0x0,0x70,0x0,0x70,0x0,0x6e,
0x0,0x6d,0x0,0x6a,0x0,0x67,0x0,0x64,0x0,0x58,0x0,0x57,0x0,0x41,0x0,0x42,
0x0,0x27,0x0,0x2a,0x0,0xe,0x0,0x13,0x0,0xf7,0xff,0xfc,0xff,0xe0,0xff,0xe8,
0xff,0xca,0xff,0xd6,0xff,0xb7,0xff,0xc2,0xff,0xa2,0xff,0xac,0xff,0x8d,0xff,0x96,
0xff,0x7e,0xff,0x84,0xff,0x76,0xff,0x77,0xff,0x72,0xff,0x71,0xff,0x72,0xff,0x73,
0xff,0x75,0xff,0x76,0xff,0x78,0xff,0x77,0xff,0x7f,0xff,0x7a,0xff,0x8b,0xff,0x86,
0xff,0x9d,0xff,0x9a,0xff,0xb2,0xff,0xb0,0xff,0xc9,0xff,0xc6,0xff,0xe1,0xff,0xdc,
0xff,0xf7,0xff,0xf3,0xff,0xc,0x0,0x8,0x0,0x21,0x0,0x1c,0x0,0x37,0x0,0x31,
0x0,0x4b,0x0,0x43,0x0,0x58,0x0,0x4f,0x0,0x5d,0x0,0x58,0x0,0x5f,0x0,0x5e,
0x0,0x5d,0x0,0x5d,0x0,0x56,0x0,0x58,0x0,0x4d,0x0,0x50,0x0,0x46,0x0,0x46,
0x0,0x3d,0x0,0x3c,0x0,0x2f,0x0,0x30,0x0,0x1d,0x0,0x1f,0x0,0xa,0x0,0xb,
0x0,0xf7,0xff,0xf7,0xff,0xe6,0xff,0xe5,0xff,0xd8,0xff,0xd5,0xff,0xca,0xff,0xc7,
0xff,0xbb,0xff,0xba,0xff,0xae,0xff,0xad,0xff,0xa1,0xff,0xa2,0xff,0x96,0xff,0x9b,
0xff,0x91,0xff,0x98,0xff,0x92,0xff,0x97,0xff,0x97,0xff,0x98,0xff,0x9e,0xff,0x9d,
0xff,0xa5,0xff,0xa4,0xff,0xaf,0xff,0xad,0xff,0xbb,0xff,0xbb,0xff,0xcb,0xff,0xcc,
0xff,0xe1,0xff,0xdf,0xff,0xf9,0xff,0xf5,0xff,0xe,0x0,0x9,0x0,0x1f,0x0,0x1b,
0x0,0x2c,0x0,0x2d,0x0,0x39,0x0,0x3b,0x0,0x46,0x0,0x41,0x0,0x4f,0x0,0x47,
0x0,0x53,0x0,0x4e,0x0,0x56,0x0,0x54,0x0,0x58,0x0,0x57,0x0,0x54,0x0,0x55,
0x0,0x4a,0x0,0x4d,0x0,0x3e,0x0,0x42,0x0,0x2f,0x0,0x33,0x0,0x1d,0x0,0x20,
0x0,0xb,0x0,0xf,0x0,0xf7,0xff,0xfd,0xff,0xdf,0xff,0xe9,0xff,0xcb,0xff,0xd7,
0xff,0xbb,0xff,0xc6,0xff,0xac,0xff,0xb4,0xff,0x9f,0xff,0xa6,0xff,0x95,0xff,0x9a,
0xff,0x8b,0xff,0x91,0xff,0x85,0xff,0x8e,0xff,0x85,0xff,0x8f,0xff,0x89,0xff,0x91,
0xff,0x90,0xff,0x95,0xff,0x9a,0xff,0x9a,0xff,0xa6,0xff,0xa2,0xff,0xb5,0xff,0xb0,
0xff,0xc9,0xff,0xc2,0xff,0xdf,0xff,0xd5,0xff,0xf3,0xff,0xeb,0xff,0x7,0x0,0x0,
0x0,0x1d,0x0,0x12,0x0,0x31,0x0,0x25,0x0,0x41,0x0,0x35,0x0,0x50,0x0,0x42,
0x0,0x5c,0x0,0x50,0x0,0x64,0x0,0x5c,0x0,0x6b,0x0,0x64,0x0,0x6f,0x0,0x68,
0x0,0x6c,0x0,0x67,0x0,0x64,0x0,0x60,0x0,0x58,0x0,0x56,0x0,0x48,0x0,0x4a,
0x0,0x38,0x0,0x3a,0x0,0x25,0x0,0x29,0x0,0xd,0x0,0x13,0x0,0xf3,0xff,0xf9,
0xff,0xdc,0xff,0xe3,0xff,0xc8,0xff,0xd0,0xff,0xb7,0xff,0xbf,0xff,0xa8,0xff,0xb1,
0xff,0x98,0xff,0xa4,0xff,0x86,0xff,0x97,0xff,0x77,0xff,0x8d,0xff,0x71,0xff,0x85,
0xff,0x70,0xff,0x80,0xff,0x75,0xff,0x82,0xff,0x80,0xff,0x88,0xff,0x8b,0xff,0x92,
0xff,0x93,0xff,0x9e,0xff,0xa0,0xff,0xac,0xff,0xaf,0xff,0xba,0xff,0xc2,0xff,0xc9,
0xff,0xdd,0xff,0xd9,0xff,0xf8,0xff,0xeb,0xff,0x10,0x0,0xff,0xff,0x28,0x0,0x16,
0x0,0x3f,0x0,0x2c,0x0,0x52,0x0,0x42,0x0,0x62,0x0,0x54,0x0,0x72,0x0,0x62,
0x0,0x80,0x0,0x6b,0x0,0x88,0x0,0x72,0x0,0x8a,0x0,0x78,0x0,0x86,0x0,0x78,
0x0,0x7e,0x0,0x73,0x0,0x73,0x0,0x6b,0x0,0x65,0x0,0x5d,0x0,0x50,0x0,0x49,
0x0,0x39,0x0,0x35,0x0,0x22,0x0,0x21,0x0,0xa,0x0,0xd,0x0,0xf5,0xff,0xfb,
0xff,0xe1,0xff,0xe9,0xff,0xca,0xff,0xd5,0xff,0xb2,0xff,0xc1,0xff,0x9f,0xff,0xac,
0xff,0x8f,0xff,0x99,0xff,0x81,0xff,0x8a,0xff,0x74,0xff,0x7e,0xff,0x69,0xff,0x75,
0xff,0x62,0xff,0x6e,0xff,0x5f,0xff,0x6c,0xff,0x60,0xff,0x6e,0xff,0x68,0xff,0x73,
0xff,0x73,0xff,0x7e,0xff,0x84,0xff,0x92,0xff,0x9b,0xff,0xa7,0xff,0xb3,0xff,0xbc,
0xff,0xcc,0xff,0xd4,0xff,0xe4,0xff,0xee,0xff,0xfd,0xff,0x4,0x0,0x1a,0x0,0x1d,
0x0,0x37,0x0,0x38,0x0,0x4d,0x0,0x4d,0x0,0x61,0x0,0x5d,0x0,0x6f,0x0,0x68,
0x0,0x76,0x0,0x70,0x0,0x7a,0x0,0x74,0x0,0x7b,0x0,0x76,0x0,0x7b,0x0,0x76,
0x0,0x79,0x0,0x72,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x61,0x0,0x59,0x0,0x51,
0x0,0x41,0x0,0x38,0x0,0x27,0x0,0x1e,0x0,0xd,0x0,0x4,0x0,0xf2,0xff,0xea,
0xff,0xda,0xff,0xd1,0xff,0xc2,0xff,0xb9,0xff,0xa6,0xff,0x9d,0xff,0x8a,0xff,0x80,
0xff,0x72,0xff,0x67,0xff,0x5e,0xff,0x57,0xff,0x52,0xff,0x4f,0xff,0x50,0xff,0x50,
0xff,0x56,0xff,0x57,0xff,0x5f,0xff,0x60,0xff,0x6b,0xff,0x6c,0xff,0x7e,0xff,0x7c,
0xff,0x93,0xff,0x92,0xff,0xaa,0xff,0xb1,0xff,0xc6,0xff,0xd2,0xff,0xe2,0xff,0xee,
0xff,0xfd,0xff,0x8,0x0,0x16,0x0,0x22,0x0,0x2c,0x0,0x3a,0x0,0x3f,0x0,0x51,
0x0,0x55,0x0,0x6a,0x0,0x6a,0x0,0x81,0x0,0x7d,0x0,0x95,0x0,0x89,0x0,0x9f,
0x0,0x8b,0x0,0x9e,0x0,0x85,0x0,0x95,0x0,0x7a,0x0,0x88,0x0,0x6d,0x0,0x77,
0x0,0x5e,0x0,0x64,0x0,0x4b,0x0,0x4f,0x0,0x33,0x0,0x33,0x0,0x16,0x0,0x12,
0x0,0xf9,0xff,0xf3,0xff,0xe0,0xff,0xd8,0xff,0xcc,0xff,0xc2,0xff,0xb8,0xff,0xac,
0xff,0xa5,0xff,0x96,0xff,0x92,0xff,0x83,0xff,0x83,0xff,0x72,0xff,0x78,0xff,0x68,
0xff,0x73,0xff,0x63,0xff,0x72,0xff,0x61,0xff,0x75,0xff,0x63,0xff,0x7a,0xff,0x67,
0xff,0x84,0xff,0x6e,0xff,0x90,0xff,0x7e,0xff,0xa1,0xff,0x92,0xff,0xb4,0xff,0xa9,
0xff,0xc8,0xff,0xc3,0xff,0xe0,0xff,0xdd,0xff,0xfc,0xff,0xfa,0xff,0x17,0x0,0x1c,
0x0,0x33,0x0,0x3d,0x0,0x50,0x0,0x59,0x0,0x67,0x0,0x72,0x0,0x78,0x0,0x84,
0x0,0x84,0x0,0x90,0x0,0x89,0x0,0x99,0x0,0x8c,0x0,0x9d,0x0,0x8e,0x0,0x9e,
0x0,0x8c,0x0,0x9b,0x0,0x81,0x0,0x90,0x0,0x6d,0x0,0x7d,0x0,0x56,0x0,0x66,
0x0,0x3f,0x0,0x4c,0x0,0x27,0x0,0x31,0x0,0x10,0x0,0x19,0x0,0xf8,0xff,0x0,
0x0,0xdb,0xff,0xe5,0xff,0xbe,0xff,0xc7,0xff,0xa0,0xff,0xa6,0xff,0x82,0xff,0x89,
0xff,0x6e,0xff,0x72,0xff,0x63,0xff,0x63,0xff,0x5e,0xff,0x5e,0xff,0x60,0xff,0x5e,
0xff,0x61,0xff,0x5c,0xff,0x61,0xff,0x5e,0xff,0x66,0xff,0x65,0xff,0x73,0xff,0x70,
0xff,0x87,0xff,0x86,0xff,0x9d,0xff,0x9e,0xff,0xb1,0xff,0xb3,0xff,0xc6,0xff,0xc6,
0xff,0xda,0xff,0xd7,0xff,0xed,0xff,0xea,0xff,0x5,0x0,0x1,0x0,0x1f,0x0,0x1c,
0x0,0x36,0x0,0x36,0x0,0x4b,0x0,0x4c,0x0,0x5d,0x0,0x5c,0x0,0x6b,0x0,0x69,
0x0,0x77,0x0,0x75,0x0,0x80,0x0,0x7f,0x0,0x86,0x0,0x86,0x0,0x88,0x0,0x8a,
0x0,0x84,0x0,0x85,0x0,0x7d,0x0,0x7b,0x0,0x72,0x0,0x70,0x0,0x64,0x0,0x61,
0x0,0x55,0x0,0x52,0x0,0x41,0x0,0x41,0x0,0x28,0x0,0x2a,0x0,0xd,0x0,0xf,
0x0,0xed,0xff,0xf0,0xff,0xcc,0xff,0xd0,0xff,0xb1,0xff,0xb4,0xff,0x9a,0xff,0x9d,
0xff,0x86,0xff,0x88,0xff,0x72,0xff,0x75,0xff,0x5e,0xff,0x65,0xff,0x4f,0xff,0x57,
0xff,0x44,0xff,0x4e,0xff,0x42,0xff,0x4c,0xff,0x49,0xff,0x50,0xff,0x53,0xff,0x59,
0xff,0x5c,0xff,0x64,0xff,0x68,0xff,0x72,0xff,0x77,0xff,0x82,0xff,0x8d,0xff,0x95,
0xff,0xa7,0xff,0xad,0xff,0xc4,0xff,0xc7,0xff,0xe4,0xff,0xe1,0xff,0x1,0x0,0xfc,
0xff,0x19,0x0,0x14,0x0,0x30,0x0,0x2a,0x0,0x47,0x0,0x41,0x0,0x5b,0x0,0x56,
0x0,0x6d,0x0,0x67,0x0,0x7a,0x0,0x74,0x0,0x82,0x0,0x7d,0x0,0x89,0x0,0x82,
0x0,0x8b,0x0,0x83,0x0,0x88,0x0,0x81,0x0,0x83,0x0,0x7e,0x0,0x7e,0x0,0x7d,
0x0,0x73,0x0,0x78,0x0,0x65,0x0,0x6a,0x0,0x55,0x0,0x57,0x0,0x41,0x0,0x44,
0x0,0x2b,0x0,0x2f,0x0,0x17,0x0,0x1d,0x0,0x3,0x0,0xd,0x0,0xed,0xff,0xf9,
0xff,0xd7,0xff,0xe0,0xff,0xbf,0xff,0xc6,0xff,0xa5,0xff,0xa8,0xff,0x8f,0xff,0x8e,
0xff,0x7e,0xff,0x80,0xff,0x73,0xff,0x78,0xff,0x73,0xff,0x73,0xff,0x77,0xff,0x75,
0xff,0x79,0xff,0x78,0xff,0x80,0xff,0x7d,0xff,0x89,0xff,0x88,0xff,0x95,0xff,0x94,
0xff,0xa7,0xff,0xa4,0xff,0xbc,0xff,0xba,0xff,0xd1,0xff,0xcf,0xff,0xe7,0xff,0xe4,
0xff,0xfe,0xff,0xfa,0xff,0x16,0x0,0x10,0x0,0x2d,0x0,0x27,0x0,0x42,0x0,0x40,
0x0,0x54,0x0,0x53,0x0,0x63,0x0,0x64,0x0,0x70,0x0,0x73,0x0,0x7b,0x0,0x7d,
0x0,0x82,0x0,0x85,0x0,0x89,0x0,0x8d,0x0,0x8d,0x0,0x93,0x0,0x8d,0x0,0x95,
0x0,0x85,0x0,0x8b,0x0,0x77,0x0,0x7a,0x0,0x66,0x0,0x6a,0x0,0x52,0x0,0x58,
0x0,0x3f,0x0,0x45,0x0,0x2f,0x0,0x35,0x0,0x1e,0x0,0x23,0x0,0xc,0x0,0xb,
0x0,0xf9,0xff,0xf5,0xff,0xe3,0xff,0xe0,0xff,0xcd,0xff,0xcd,0xff,0xbc,0xff,0xbc,
0xff,0xae,0xff,0xad,0xff,0xa3,0xff,0x9f,0xff,0x9a,0xff,0x96,0xff,0x8f,0xff,0x8c,
0xff,0x88,0xff,0x83,0xff,0x86,0xff,0x7f,0xff,0x89,0xff,0x82,0xff,0x93,0xff,0x8d,
0xff,0xa0,0xff,0x9d,0xff,0xae,0xff,0xac,0xff,0xbf,0xff,0xbc,0xff,0xd3,0xff,0xd0,
0xff,0xe8,0xff,0xe6,0xff,0xff,0xff,0xff,0xff,0x17,0x0,0x1b,0x0,0x2e,0x0,0x36,
0x0,0x44,0x0,0x4c,0x0,0x56,0x0,0x60,0x0,0x65,0x0,0x6f,0x0,0x72,0x0,0x7b,
0x0,0x7b,0x0,0x83,0x0,0x83,0x0,0x89,0x0,0x89,0x0,0x8e,0x0,0x8a,0x0,0x8c,
0x0,0x81,0x0,0x84,0x0,0x73,0x0,0x76,0x0,0x63,0x0,0x67,0x0,0x54,0x0,0x59,
0x0,0x45,0x0,0x4b,0x0,0x34,0x0,0x3a,0x0,0x22,0x0,0x26,0x0,0xb,0x0,0xd,
0x0,0xf3,0xff,0xf4,0xff,0xdc,0xff,0xdd,0xff,0xcb,0xff,0xcb,0xff,0xc1,0xff,0xc0,
0xff,0xb7,0xff,0xb6,0xff,0xad,0xff,0xac,0xff,0xa5,0xff,0xa1,0xff,0x9d,0xff,0x97,
0xff,0x98,0xff,0x92,0xff,0x9b,0xff,0x92,0xff,0xa3,0xff,0x99,0xff,0xac,0xff,0xa2,
0xff,0xb4,0xff,0xab,0xff,0xb9,0xff,0xb1,0xff,0xbf,0xff,0xb7,0xff,0xcb,0xff,0xc5,
0xff,0xde,0xff,0xdb,0xff,0xf4,0xff,0xf6,0xff,0xc,0x0,0x12,0x0,0x20,0x0,0x2a,
0x0,0x31,0x0,0x3c,0x0,0x40,0x0,0x4b,0x0,0x4d,0x0,0x59,0x0,0x5b,0x0,0x67,
0x0,0x69,0x0,0x75,0x0,0x76,0x0,0x84,0x0,0x7e,0x0,0x8d,0x0,0x80,0x0,0x8e,
0x0,0x78,0x0,0x88,0x0,0x6e,0x0,0x7e,0x0,0x65,0x0,0x73,0x0,0x59,0x0,0x67,
0x0,0x4c,0x0,0x56,0x0,0x3f,0x0,0x41,0x0,0x2e,0x0,0x2c,0x0,0x18,0x0,0x14,
0x0,0x4,0x0,0xfe,0xff,0xf1,0xff,0xeb,0xff,0xe0,0xff,0xd6,0xff,0xd0,0xff,0xc1,
0xff,0xc0,0xff,0xb1,0xff,0xb2,0xff,0xa6,0xff,0xa9,0xff,0x9c,0xff,0xa2,0xff,0x96,
0xff,0x9d,0xff,0x97,0xff,0x9e,0xff,0x9c,0xff,0xa5,0xff,0xa5,0xff,0xae,0xff,0xb0,
0xff,0xb7,0xff,0xbc,0xff,0xc4,0xff,0xc6,0xff,0xd3,0xff,0xd5,0xff,0xe2,0xff,0xe8,
0xff,0xf4,0xff,0xfc,0xff,0xb,0x0,0x10,0x0,0x1f,0x0,0x26,0x0,0x30,0x0,0x39,
0x0,0x44,0x0,0x4b,0x0,0x55,0x0,0x5f,0x0,0x62,0x0,0x6f,0x0,0x6f,0x0,0x7b,
0x0,0x7a,0x0,0x85,0x0,0x82,0x0,0x8b,0x0,0x86,0x0,0x8b,0x0,0x85,0x0,0x8a,
0x0,0x81,0x0,0x84,0x0,0x79,0x0,0x78,0x0,0x6b,0x0,0x69,0x0,0x59,0x0,0x59,
0x0,0x4a,0x0,0x46,0x0,0x3e,0x0,0x34,0x0,0x31,0x0,0x23,0x0,0x1f,0x0,0x11,
0x0,0xc,0x0,0xfd,0xff,0xf7,0xff,0xe9,0xff,0xdf,0xff,0xd4,0xff,0xcc,0xff,0xc1,
0xff,0xbf,0xff,0xb4,0xff,0xb4,0xff,0xab,0xff,0xab,0xff,0xa2,0xff,0xa6,0xff,0x9c,
0xff,0xa4,0xff,0x9b,0xff,0xa3,0xff,0x9c,0xff,0xa5,0xff,0xa2,0xff,0xad,0xff,0xaf,
0xff,0xbb,0xff,0xc0,0xff,0xcb,0xff,0xd2,0xff,0xdd,0xff,0xe4,0xff,0xec,0xff,0xf4,
0xff,0xf8,0xff,0x2,0x0,0x5,0x0,0x12,0x0,0x12,0x0,0x22,0x0,0x22,0x0,0x32,
0x0,0x35,0x0,0x41,0x0,0x46,0x0,0x4f,0x0,0x55,0x0,0x5a,0x0,0x5e,0x0,0x62,
0x0,0x64,0x0,0x67,0x0,0x68,0x0,0x67,0x0,0x68,0x0,0x65,0x0,0x64,0x0,0x62,
0x0,0x61,0x0,0x5b,0x0,0x5d,0x0,0x53,0x0,0x57,0x0,0x4a,0x0,0x4e,0x0,0x40,
0x0,0x40,0x0,0x34,0x0,0x2e,0x0,0x26,0x0,0x1c,0x0,0x15,0x0,0xa,0x0,0x1,
0x0,0xfb,0xff,0xf3,0xff,0xee,0xff,0xe9,0xff,0xe5,0xff,0xe2,0xff,0xe0,0xff,0xde,
0xff,0xd6,0xff,0xda,0xff,0xcb,0xff,0xd2,0xff,0xc5,0xff,0xcb,0xff,0xc0,0xff,0xc9,
0xff,0xbe,0xff,0xcb,0xff,0xc2,0xff,0xcc,0xff,0xc6,0xff,0xcd,0xff,0xc9,0xff,0xce,
0xff,0xcb,0xff,0xd0,0xff,0xce,0xff,0xd6,0xff,0xd4,0xff,0xdf,0xff,0xdd,0xff,0xe8,
0xff,0xe6,0xff,0xf1,0xff,0xf0,0xff,0xfa,0xff,0xfb,0xff,0x3,0x0,0x7,0x0,0xe,
0x0,0x15,0x0,0x18,0x0,0x21,0x0,0x21,0x0,0x29,0x0,0x29,0x0,0x31,0x0,0x30,
0x0,0x36,0x0,0x32,0x0,0x37,0x0,0x32,0x0,0x37,0x0,0x32,0x0,0x39,0x0,0x33,
0x0,0x40,0x0,0x38,0x0,0x46,0x0,0x3d,0x0,0x43,0x0,0x3c,0x0,0x3c,0x0,0x38,
0x0,0x33,0x0,0x30,0x0,0x28,0x0,0x27,0x0,0x21,0x0,0x20,0x0,0x1b,0x0,0x1b,
0x0,0x12,0x0,0x14,0x0,0xc,0x0,0xc,0x0,0x5,0x0,0x4,0x0,0xfc,0xff,0xfd,
0xff,0xf5,0xff,0xf6,0xff,0xee,0xff,0xef,0xff,0xe8,0xff,0xeb,0xff,0xe8,0xff,0xea,
0xff,0xe7,0xff,0xe9,0xff,0xe2,0xff,0xe7,0xff,0xdd,0xff,0xe5,0xff,0xda,0xff,0xe3,
0xff,0xd8,0xff,0xe2,0xff,0xd9,0xff,0xe2,0xff,0xdc,0xff,0xe1,0xff,0xdd,0xff,0xe4,
0xff,0xdd,0xff,0xe6,0xff,0xe0,0xff,0xe5,0xff,0xe3,0xff,0xe5,0xff,0xe7,0xff,0xe7,
0xff,0xeb,0xff,0xea,0xff,0xf1,0xff,0xf0,0xff,0xfa,0xff,0xf9,0xff,0x3,0x0,0xfe,
0xff,0x9,0x0,0x2,0x0,0xb,0x0,0x7,0x0,0xe,0x0,0xb,0x0,0x14,0x0,0x10,
0x0,0x1a,0x0,0x16,0x0,0x21,0x0,0x1d,0x0,0x29,0x0,0x25,0x0,0x30,0x0,0x2e,
0x0,0x36,0x0,0x38,0x0,0x3a,0x0,0x3d,0x0,0x3c,0x0,0x3d,0x0,0x3b,0x0,0x3d,
0x0,0x38,0x0,0x3d,0x0,0x33,0x0,0x3a,0x0,0x30,0x0,0x38,0x0,0x2b,0x0,0x35,
0x0,0x23,0x0,0x2d,0x0,0x1b,0x0,0x22,0x0,0x12,0x0,0x19,0x0,0x8,0x0,0x11,
0x0,0xfe,0xff,0x9,0x0,0xf3,0xff,0x1,0x0,0xe9,0xff,0xf5,0xff,0xe1,0xff,0xe9,
0xff,0xdb,0xff,0xdd,0xff,0xd7,0xff,0xd3,0xff,0xd3,0xff,0xcc,0xff,0xd1,0xff,0xca,
0xff,0xcf,0xff,0xca,0xff,0xce,0xff,0xc8,0xff,0xd0,0xff,0xc5,0xff,0xd0,0xff,0xc3,
0xff,0xce,0xff,0xc3,0xff,0xd1,0xff,0xc7,0xff,0xd8,0xff,0xce,0xff,0xe0,0xff,0xd4,
0xff,0xe8,0xff,0xd7,0xff,0xf0,0xff,0xde,0xff,0xf7,0xff,0xe7,0xff,0xff,0xff,0xf0,
0xff,0x8,0x0,0xfb,0xff,0x12,0x0,0x8,0x0,0x1d,0x0,0x16,0x0,0x29,0x0,0x23,
0x0,0x34,0x0,0x2d,0x0,0x39,0x0,0x34,0x0,0x3c,0x0,0x3a,0x0,0x3d,0x0,0x40,
0x0,0x3c,0x0,0x42,0x0,0x3a,0x0,0x41,0x0,0x37,0x0,0x3d,0x0,0x30,0x0,0x36,
0x0,0x27,0x0,0x2e,0x0,0x1f,0x0,0x2a,0x0,0x17,0x0,0x26,0x0,0x11,0x0,0x20,
0x0,0xa,0x0,0x19,0x0,0x0,0x0,0xd,0x0,0xf8,0xff,0x1,0x0,0xf2,0xff,0xf9,
0xff,0xec,0xff,0xf1,0xff,0xe6,0xff,0xeb,0xff,0xde,0xff,0xe7,0xff,0xd7,0xff,0xe0,
0xff,0xd1,0xff,0xd9,0xff,0xcd,0xff,0xd3,0xff,0xcb,0xff,0xcf,0xff,0xcf,0xff,0xcf,
0xff,0xd3,0xff,0xd5,0xff,0xd7,0xff,0xd9,0xff,0xda,0xff,0xd9,0xff,0xdc,0xff,0xd9,
0xff,0xde,0xff,0xdb,0xff,0xe4,0xff,0xe1,0xff,0xee,0xff,0xea,0xff,0xfb,0xff,0xf4,
0xff,0x6,0x0,0xff,0xff,0xe,0x0,0x9,0x0,0x15,0x0,0xf,0x0,0x1a,0x0,0x15,
0x0,0x20,0x0,0x1b,0x0,0x28,0x0,0x21,0x0,0x31,0x0,0x2a,0x0,0x3d,0x0,0x35,
0x0,0x47,0x0,0x3d,0x0,0x49,0x0,0x41,0x0,0x48,0x0,0x40,0x0,0x46,0x0,0x3d,
0x0,0x43,0x0,0x3c,0x0,0x42,0x0,0x3d,0x0,0x42,0x0,0x3e,0x0,0x3f,0x0,0x3e,
0x0,0x3d,0x0,0x3b,0x0,0x35,0x0,0x37,0x0,0x29,0x0,0x32,0x0,0x1f,0x0,0x28,
0x0,0x10,0x0,0x1d,0x0,0xff,0xff,0x12,0x0,0xf2,0xff,0x4,0x0,0xe4,0xff,0xf3,
0xff,0xd4,0xff,0xe4,0xff,0xc5,0xff,0xd7,0xff,0xb9,0xff,0xce,0xff,0xb2,0xff,0xc7,
0xff,0xae,0xff,0xc0,0xff,0xab,0xff,0xbb,0xff,0xad,0xff,0xb7,0xff,0xb0,0xff,0xb5,
0xff,0xb5,0xff,0xb8,0xff,0xbe,0xff,0xbf,0xff,0xc8,0xff,0xc9,0xff,0xd3,0xff,0xd6,
0xff,0xe4,0xff,0xe6,0xff,0xf6,0xff,0xf5,0xff,0x8,0x0,0x4,0x0,0x1a,0x0,0x14,
0x0,0x2a,0x0,0x24,0x0,0x3d,0x0,0x33,0x0,0x51,0x0,0x41,0x0,0x5f,0x0,0x4f,
0x0,0x6b,0x0,0x5a,0x0,0x71,0x0,0x61,0x0,0x72,0x0,0x67,0x0,0x74,0x0,0x6a,
0x0,0x75,0x0,0x6a,0x0,0x6f,0x0,0x69,0x0,0x68,0x0,0x63,0x0,0x5f,0x0,0x58,
0x0,0x52,0x0,0x4b,0x0,0x43,0x0,0x3c,0x0,0x30,0x0,0x2b,0x0,0x1d,0x0,0x1d,
0x0,0xa,0x0,0xe,0x0,0xf2,0xff,0xfc,0xff,0xdf,0xff,0xe6,0xff,0xcc,0xff,0xd2,
0xff,0xb5,0xff,0xc2,0xff,0xa3,0xff,0xb4,0xff,0x97,0xff,0xa7,0xff,0x8d,0xff,0x9e,
0xff,0x88,0xff,0x98,0xff,0x87,0xff,0x96,0xff,0x87,0xff,0x95,0xff,0x8c,0xff,0x96,
0xff,0x95,0xff,0x9c,0xff,0xa0,0xff,0xa8,0xff,0xb2,0xff,0xb8,0xff,0xc8,0xff,0xc9,
0xff,0xda,0xff,0xdc,0xff,0xed,0xff,0xf0,0xff,0x3,0x0,0x2,0x0,0x18,0x0,0x13,
0x0,0x2b,0x0,0x26,0x0,0x3b,0x0,0x37,0x0,0x4a,0x0,0x45,0x0,0x59,0x0,0x4f,
0x0,0x64,0x0,0x56,0x0,0x6a,0x0,0x58,0x0,0x6b,0x0,0x5c,0x0,0x6b,0x0,0x5f,
0x0,0x6b,0x0,0x5e,0x0,0x68,0x0,0x5b,0x0,0x5e,0x0,0x56,0x0,0x51,0x0,0x49,
0x0,0x41,0x0,0x3a,0x0,0x2e,0x0,0x2b,0x0,0x1f,0x0,0x1c,0x0,0x10,0x0,0xe,
0x0,0xff,0xff,0x2,0x0,0xf0,0xff,0xf4,0xff,0xe0,0xff,0xe6,0xff,0xce,0xff,0xd7,
0xff,0xbf,0xff,0xca,0xff,0xb5,0xff,0xc1,0xff,0xac,0xff,0xb7,0xff,0xa6,0xff,0xaf,
0xff,0xa0,0xff,0xac,0xff,0x9a,0xff,0xa8,0xff,0x98,0xff,0xa7,0xff,0xa0,0xff,0xad,
0xff,0xab,0xff,0xb7,0xff,0xb5,0xff,0xc1,0xff,0xc0,0xff,0xcb,0xff,0xcb,0xff,0xd3,
0xff,0xd4,0xff,0xd9,0xff,0xe1,0xff,0xe4,0xff,0xf2,0xff,0xf4,0xff,0x3,0x0,0x5,
0x0,0x18,0x0,0x15,0x0,0x2d,0x0,0x24,0x0,0x38,0x0,0x30,0x0,0x41,0x0,0x39,
0x0,0x4d,0x0,0x43,0x0,0x58,0x0,0x4d,0x0,0x61,0x0,0x53,0x0,0x68,0x0,0x59,
0x0,0x68,0x0,0x5d,0x0,0x65,0x0,0x5b,0x0,0x60,0x0,0x58,0x0,0x5b,0x0,0x56,
0x0,0x57,0x0,0x51,0x0,0x52,0x0,0x49,0x0,0x4a,0x0,0x40,0x0,0x3c,0x0,0x32,
0x0,0x26,0x0,0x22,0x0,0xe,0x0,0x11,0x0,0xfc,0xff,0x2,0x0,0xee,0xff,0xf6,
0xff,0xe3,0xff,0xeb,0xff,0xdb,0xff,0xe2,0xff,0xd1,0xff,0xd8,0xff,0xc3,0xff,0xcb,
0xff,0xb7,0xff,0xc2,0xff,0xb1,0xff,0xbf,0xff,0xb2,0xff,0xc1,0xff,0xb8,0xff,0xc7,
0xff,0xc2,0xff,0xcc,0xff,0xca,0xff,0xd0,0xff,0xd2,0xff,0xd6,0xff,0xdc,0xff,0xe0,
0xff,0xe6,0xff,0xeb,0xff,0xf0,0xff,0xf5,0xff,0xfc,0xff,0xfe,0xff,0x7,0x0,0x7,
0x0,0x12,0x0,0x10,0x0,0x1e,0x0,0x1a,0x0,0x26,0x0,0x23,0x0,0x2e,0x0,0x2d,
0x0,0x3a,0x0,0x34,0x0,0x42,0x0,0x3b,0x0,0x43,0x0,0x3f,0x0,0x43,0x0,0x3f,
0x0,0x42,0x0,0x3e,0x0,0x43,0x0,0x3e,0x0,0x43,0x0,0x3d,0x0,0x3e,0x0,0x3b,
0x0,0x37,0x0,0x36,0x0,0x2d,0x0,0x2d,0x0,0x1e,0x0,0x21,0x0,0xd,0x0,0x14,
0x0,0x0,0x0,0xa,0x0,0xf6,0xff,0xff,0xff,0xec,0xff,0xf2,0xff,0xe1,0xff,0xe7,
0xff,0xda,0xff,0xde,0xff,0xd3,0xff,0xd5,0xff,0xcc,0xff,0xce,0xff,0xc9,0xff,0xc9,
0xff,0xc8,0xff,0xc6,0xff,0xc4,0xff,0xc3,0xff,0xc3,0xff,0xc2,0xff,0xc6,0xff,0xc3,
0xff,0xc8,0xff,0xc8,0xff,0xce,0xff,0xcd,0xff,0xd4,0xff,0xd4,0xff,0xda,0xff,0xdb,
0xff,0xe4,0xff,0xe3,0xff,0xf0,0xff,0xee,0xff,0xfa,0xff,0xf9,0xff,0x5,0x0,0x3,
0x0,0x10,0x0,0xe,0x0,0x1a,0x0,0x18,0x0,0x21,0x0,0x1f,0x0,0x27,0x0,0x25,
0x0,0x2f,0x0,0x2b,0x0,0x32,0x0,0x30,0x0,0x33,0x0,0x36,0x0,0x36,0x0,0x3a,
0x0,0x38,0x0,0x39,0x0,0x36,0x0,0x37,0x0,0x30,0x0,0x34,0x0,0x29,0x0,0x2c,
0x0,0x21,0x0,0x23,0x0,0x19,0x0,0x1d,0x0,0xf,0x0,0x18,0x0,0x8,0x0,0x10,
0x0,0x1,0x0,0x4,0x0,0xf6,0xff,0xf7,0xff,0xec,0xff,0xec,0xff,0xe5,0xff,0xe2,
0xff,0xdb,0xff,0xd8,0xff,0xd1,0xff,0xce,0xff,0xc9,0xff,0xc5,0xff,0xc4,0xff,0xbe,
0xff,0xc0,0xff,0xbc,0xff,0xbd,0xff,0xbb,0xff,0xbe,0xff,0xb9,0xff,0xbe,0xff,0xb8,
0xff,0xbd,0xff,0xb9,0xff,0xc0,0xff,0xbd,0xff,0xc8,0xff,0xc5,0xff,0xd3,0xff,0xd1,
0xff,0xe1,0xff,0xe0,0xff,0xf1,0xff,0xf0,0xff,0x0,0x0,0xfe,0xff,0xb,0x0,0xb,
0x0,0x14,0x0,0x15,0x0,0x1d,0x0,0x1e,0x0,0x26,0x0,0x29,0x0,0x32,0x0,0x33,
0x0,0x3d,0x0,0x3e,0x0,0x45,0x0,0x4a,0x0,0x48,0x0,0x4f,0x0,0x48,0x0,0x52,
0x0,0x47,0x0,0x54,0x0,0x48,0x0,0x53,0x0,0x46,0x0,0x4e,0x0,0x41,0x0,0x48,
0x0,0x3c,0x0,0x41,0x0,0x35,0x0,0x38,0x0,0x2b,0x0,0x2c,0x0,0x21,0x0,0x1e,
0x0,0x15,0x0,0x11,0x0,0x6,0x0,0x3,0x0,0xf7,0xff,0xf4,0xff,0xe9,0xff,0xe4,
0xff,0xdc,0xff,0xd6,0xff,0xd3,0xff,0xcb,0xff,0xc9,0xff,0xc1,0xff,0xc0,0xff,0xb7,
0xff,0xb7,0xff,0xae,0xff,0xb0,0xff,0xa8,0xff,0xac,0xff,0xa6,0xff,0xae,0xff,0xaa,
0xff,0xb4,0xff,0xb3,0xff,0xbe,0xff,0xbf,0xff,0xc7,0xff,0xca,0xff,0xcf,0xff,0xd4,
0xff,0xd8,0xff,0xdd,0xff,0xe2,0xff,0xe7,0xff,0xee,0xff,0xf4,0xff,0xfd,0xff,0x2,
0x0,0xb,0x0,0x10,0x0,0x19,0x0,0x1d,0x0,0x24,0x0,0x2a,0x0,0x2b,0x0,0x34,
0x0,0x31,0x0,0x3e,0x0,0x38,0x0,0x48,0x0,0x40,0x0,0x50,0x0,0x47,0x0,0x54,
0x0,0x49,0x0,0x55,0x0,0x46,0x0,0x52,0x0,0x41,0x0,0x49,0x0,0x3d,0x0,0x40,
0x0,0x39,0x0,0x3a,0x0,0x35,0x0,0x31,0x0,0x2e,0x0,0x27,0x0,0x23,0x0,0x1d,
0x0,0x16,0x0,0xf,0x0,0x9,0x0,0xff,0xff,0xfb,0xff,0xf0,0xff,0xed,0xff,0xe4,
0xff,0xe2,0xff,0xd8,0xff,0xd8,0xff,0xcc,0xff,0xce,0xff,0xc2,0xff,0xc8,0xff,0xbb,
0xff,0xc3,0xff,0xb6,0xff,0xc1,0xff,0xb8,0xff,0xc5,0xff,0xbb,0xff,0xc9,0xff,0xbb,
0xff,0xc9,0xff,0xbd,0xff,0xc9,0xff,0xc0,0xff,0xca,0xff,0xc1,0xff,0xcb,0xff,0xc6,
0xff,0xcf,0xff,0xcf,0xff,0xd6,0xff,0xda,0xff,0xde,0xff,0xe5,0xff,0xe6,0xff,0xf0,
0xff,0xec,0xff,0xf8,0xff,0xf1,0xff,0x0,0x0,0xf4,0xff,0x6,0x0,0xf9,0xff,0xc,
0x0,0x0,0x0,0x14,0x0,0x7,0x0,0x1d,0x0,0xe,0x0,0x22,0x0,0x14,0x0,0x24,
0x0,0x15,0x0,0x21,0x0,0x11,0x0,0x1d,0x0,0xe,0x0,0x1a,0x0,0xd,0x0,0x18,
0x0,0xd,0x0,0x18,0x0,0xb,0x0,0x16,0x0,0x9,0x0,0x11,0x0,0x9,0x0,0xd,
0x0,0x3,0x0,0x9,0x0,0xfd,0xff,0x4,0x0,0xfb,0xff,0xff,0xff,0xf9,0xff,0xfa,
0xff,0xf8,0xff,0xf5,0xff,0xfa,0xff,0xee,0xff,0xfb,0xff,0xe8,0xff,0xfb,0xff,0xe5,
0xff,0xfb,0xff,0xe4,0xff,0xfb,0xff,0xe3,0xff,0xfa,0xff,0xe4,0xff,0xf8,0xff,0xe3,
0xff,0xf3,0xff,0xe2,0xff,0xf1,0xff,0xe2,0xff,0xf2,0xff,0xe3,0xff,0xf1,0xff,0xe4,
0xff,0xf0,0xff,0xe7,0xff,0xf1,0xff,0xe8,0xff,0xf1,0xff,0xea,0xff,0xf2,0xff,0xed,
0xff,0xf6,0xff,0xf1,0xff,0xf8,0xff,0xf6,0xff,0xfb,0xff,0xfc,0xff,0xfd,0xff,0xfe,
0xff,0xfc,0xff,0x0,0x0,0xfc,0xff,0x0,0x0,0xfc,0xff,0xfe,0xff,0xf9,0xff,0xfd,
0xff,0xf6,0xff,0xff,0xff,0xf5,0xff,0x1,0x0,0xf4,0xff,0x0,0x0,0xf2,0xff,0xfe,
0xff,0xef,0xff,0xfa,0xff,0xeb,0xff,0xfa,0xff,0xea,0xff,0xfb,0xff,0xec,0xff,0xfc,
0xff,0xef,0xff,0xfd,0xff,0xf1,0xff,0xfc,0xff,0xf0,0xff,0xfa,0xff,0xee,0xff,0xf9,
0xff,0xef,0xff,0xf6,0xff,0xf4,0xff,0xfa,0xff,0xfa,0xff,0x2,0x0,0x0,0x0,0x5,
0x0,0x4,0x0,0x4,0x0,0x3,0x0,0xfe,0xff,0x0,0x0,0xf6,0xff,0xfd,0xff,0xf2,
0xff,0xf9,0xff,0xf0,0xff,0xf9,0xff,0xef,0xff,0xfd,0xff,0xf1,0xff,0xff,0xff,0xef,
0xff,0xff,0xff,0xeb,0xff,0xfc,0xff,0xe8,0xff,0xf8,0xff,0xe4,0xff,0xf3,0xff,0xe3,
0xff,0xef,0xff,0xe8,0xff,0xf1,0xff,0xed,0xff,0xf3,0xff,0xef,0xff,0xf0,0xff,0xf0,
0xff,0xec,0xff,0xee,0xff,0xec,0xff,0xec,0xff,0xec,0xff,0xee,0xff,0xed,0xff,0xf5,
0xff,0xf1,0xff,0xfa,0xff,0xf3,0xff,0xfc,0xff,0xf4,0xff,0xfe,0xff,0xf4,0xff,0xff,
0xff,0xf2,0xff,0xfe,0xff,0xf2,0xff,0xfe,0xff,0xf3,0xff,0x0,0x0,0xf6,0xff,0x0,
0x0,0xf8,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf2,0xff,0xfc,0xff,0xf0,0xff,0xf7,
0xff,0xef,0xff,0xf3,0xff,0xee,0xff,0xef,0xff,0xea,0xff,0xea,0xff,0xe5,0xff,0xe5,
0xff,0xe3,0xff,0xde,0xff,0xe2,0xff,0xd8,0xff,0xdd,0xff,0xd2,0xff,0xd9,0xff,0xce,
0xff,0xd8,0xff,0xcc,0xff,0xd7,0xff,0xcc,0xff,0xd8,0xff,0xd0,0xff,0xdb,0xff,0xd5,
0xff,0xda,0xff,0xd7,0xff,0xd7,0xff,0xd7,0xff,0xd8,0xff,0xd5,0xff,0xdc,0xff,0xd5,
0xff,0xe1,0xff,0xdb,0xff,0xe7,0xff,0xe3,0xff,0xed,0xff,0xed,0xff,0xf4,0xff,0xf4,
0xff,0xfa,0xff,0xf7,0xff,0xfd,0xff,0xfb,0xff,0x0,0x0,0x2,0x0,0x4,0x0,0x6,
0x0,0x8,0x0,0xa,0x0,0xb,0x0,0xc,0x0,0xb,0x0,0xb,0x0,0x9,0x0,0x9,
0x0,0x5,0x0,0x5,0x0,0xff,0xff,0xfe,0xff,0xf8,0xff,0xf7,0xff,0xf1,0xff,0xee,
0xff,0xec,0xff,0xe2,0xff,0xe7,0xff,0xd9,0xff,0xdf,0xff,0xd5,0xff,0xd7,0xff,0xd2,
0xff,0xd2,0xff,0xd0,0xff,0xcf,0xff,0xce,0xff,0xcd,0xff,0xcb,0xff,0xcc,0xff,0xc9,
0xff,0xca,0xff,0xc8,0xff,0xc7,0xff,0xc5,0xff,0xc6,0xff,0xc4,0xff,0xc6,0xff,0xc4,
0xff,0xc7,0xff,0xc5,0xff,0xc9,0xff,0xc7,0xff,0xcb,0xff,0xc9,0xff,0xcd,0xff,0xc9,
0xff,0xcc,0xff,0xc9,0xff,0xce,0xff,0xce,0xff,0xd3,0xff,0xd6,0xff,0xdb,0xff,0xe1,
0xff,0xe4,0xff,0xec,0xff,0xec,0xff,0xf3,0xff,0xef,0xff,0xf6,0xff,0xee,0xff,0xf8,
0xff,0xed,0xff,0xfb,0xff,0xf0,0xff,0xff,0xff,0xf6,0xff,0x4,0x0,0xfc,0xff,0x8,
0x0,0x1,0x0,0x9,0x0,0x1,0x0,0x7,0x0,0xfd,0xff,0x4,0x0,0xfa,0xff,0x0,
0x0,0xfa,0xff,0xfe,0xff,0xf8,0xff,0xfd,0xff,0xf6,0xff,0xfb,0xff,0xf6,0xff,0xf6,
0xff,0xf2,0xff,0xef,0xff,0xe9,0xff,0xe6,0xff,0xe1,0xff,0xdd,0xff,0xda,0xff,0xd5,
0xff,0xd4,0xff,0xce,0xff,0xd0,0xff,0xc6,0xff,0xcf,0xff,0xc1,0xff,0xce,0xff,0xc0,
0xff,0xd0,0xff,0xc2,0xff,0xd5,0xff,0xc7,0xff,0xde,0xff,0xd0,0xff,0xe6,0xff,0xd7,
0xff,0xea,0xff,0xdc,0xff,0xea,0xff,0xe1,0xff,0xed,0xff,0xe6,0xff,0xf1,0xff,0xea,
0xff,0xf4,0xff,0xf1,0xff,0xf9,0xff,0xfa,0xff,0xff,0xff,0x3,0x0,0x0,0x0,0x8,
0x0,0xfe,0xff,0x7,0x0,0x0,0x0,0x7,0x0,0x3,0x0,0xd,0x0,0x5,0x0,0x15,
0x0,0x8,0x0,0x1a,0x0,0xa,0x0,0x1b,0x0,0x8,0x0,0x1a,0x0,0x4,0x0,0x14,
0x0,0x0,0x0,0xe,0x0,0xfb,0xff,0x9,0x0,0xf8,0xff,0x6,0x0,0xf6,0xff,0x3,
0x0,0xf3,0xff,0xfc,0xff,0xec,0xff,0xf1,0xff,0xe2,0xff,0xe5,0xff,0xd9,0xff,0xd7,
0xff,0xd3,0xff,0xcc,0xff,0xce,0xff,0xc3,0xff,0xc7,0xff,0xbd,0xff,0xbf,0xff,0xb7,
0xff,0xbb,0xff,0xb4,0xff,0xb8,0xff,0xb1,0xff,0xb6,0xff,0xaf,0xff,0xb7,0xff,0xb2,
0xff,0xb9,0xff,0xb4,0xff,0xba,0xff,0xb5,0xff,0xbc,0xff,0xb7,0xff,0xbf,0xff,0xba,
0xff,0xc4,0xff,0xc0,0xff,0xd0,0xff,0xc9,0xff,0xdf,0xff,0xd6,0xff,0xec,0xff,0xe4,
0xff,0xf6,0xff,0xf2,0xff,0xfc,0xff,0xfa,0xff,0x0,0x0,0xff,0xff,0x6,0x0,0x7,
0x0,0xe,0x0,0x12,0x0,0x17,0x0,0x1d,0x0,0x22,0x0,0x25,0x0,0x26,0x0,0x2a,
0x0,0x24,0x0,0x2b,0x0,0x20,0x0,0x28,0x0,0x1a,0x0,0x23,0x0,0x15,0x0,0x20,
0x0,0x14,0x0,0x1b,0x0,0x11,0x0,0x15,0x0,0xc,0x0,0xf,0x0,0x4,0x0,0x6,
0x0,0xf8,0xff,0xf9,0xff,0xec,0xff,0xed,0xff,0xe3,0xff,0xe4,0xff,0xda,0xff,0xdc,
0xff,0xd6,0xff,0xd4,0xff,0xd2,0xff,0xcc,0xff,0xca,0xff,0xc5,0xff,0xc2,0xff,0xbf,
0xff,0xb9,0xff,0xb9,0xff,0xb0,0xff,0xb5,0xff,0xae,0xff,0xb3,0xff,0xb0,0xff,0xaf,
0xff,0xb2,0xff,0xad,0xff,0xb6,0xff,0xb0,0xff,0xba,0xff,0xb6,0xff,0xbd,0xff,0xba,
0xff,0xc3,0xff,0xc1,0xff,0xcd,0xff,0xce,0xff,0xd8,0xff,0xdb,0xff,0xe6,0xff,0xe9,
0xff,0xf1,0xff,0xf6,0xff,0xfa,0xff,0x2,0x0,0x3,0x0,0xb,0x0,0x9,0x0,0x11,
0x0,0xe,0x0,0x15,0x0,0x14,0x0,0x1a,0x0,0x1c,0x0,0x1e,0x0,0x24,0x0,0x24,
0x0,0x29,0x0,0x29,0x0,0x2a,0x0,0x2b,0x0,0x2a,0x0,0x29,0x0,0x27,0x0,0x27,
0x0,0x25,0x0,0x25,0x0,0x23,0x0,0x20,0x0,0x1d,0x0,0x19,0x0,0x15,0x0,0x12,
0x0,0xd,0x0,0xa,0x0,0x2,0x0,0x0,0x0,0xf9,0xff,0xf5,0xff,0xf1,0xff,0xeb,
0xff,0xe7,0xff,0xe2,0xff,0xde,0xff,0xda,0xff,0xd9,0xff,0xd4,0xff,0xd2,0xff,0xd0,
0xff,0xcc,0xff,0xcc,0xff,0xc9,0xff,0xc5,0xff,0xc2,0xff,0xbe,0xff,0xbc,0xff,0xbc,
0xff,0xbb,0xff,0xbe,0xff,0xbe,0xff,0xc1,0xff,0xc1,0xff,0xc5,0xff,0xc3,0xff,0xc9,
0xff,0xc7,0xff,0xcd,0xff,0xd0,0xff,0xd3,0xff,0xd9,0xff,0xde,0xff,0xe4,0xff,0xea,
0xff,0xf4,0xff,0xf5,0xff,0x1,0x0,0xff,0xff,0xb,0x0,0x9,0x0,0x12,0x0,0xf,
0x0,0x16,0x0,0x12,0x0,0x18,0x0,0x15,0x0,0x1d,0x0,0x19,0x0,0x22,0x0,0x1e,
0x0,0x27,0x0,0x24,0x0,0x2a,0x0,0x28,0x0,0x29,0x0,0x29,0x0,0x27,0x0,0x27,
0x0,0x22,0x0,0x20,0x0,0x1b,0x0,0x19,0x0,0x12,0x0,0x12,0x0,0x7,0x0,0x5,
0x0,0xfb,0xff,0xf6,0xff,0xf2,0xff,0xec,0xff,0xe8,0xff,0xe4,0xff,0xde,0xff,0xdb,
0xff,0xd8,0xff,0xd2,0xff,0xce,0xff,0xc9,0xff,0xc3,0xff,0xc1,0xff,0xbd,0xff,0xbc,
0xff,0xbb,0xff,0xbb,0xff,0xbb,0xff,0xbe,0xff,0xbf,0xff,0xc1,0xff,0xc2,0xff,0xc5,
0xff,0xc6,0xff,0xcc,0xff,0xd0,0xff,0xd2,0xff,0xdb,0xff,0xd6,0xff,0xe5,0xff,0xde,
0xff,0xee,0xff,0xe8,0xff,0xf5,0xff,0xf1,0xff,0xfe,0xff,0xfb,0xff,0x7,0x0,0x9,
0x0,0x11,0x0,0x14,0x0,0x1e,0x0,0x1e,0x0,0x28,0x0,0x26,0x0,0x30,0x0,0x2c,
0x0,0x33,0x0,0x2e,0x0,0x30,0x0,0x2d,0x0,0x2b,0x0,0x2a,0x0,0x27,0x0,0x24,
0x0,0x23,0x0,0x20,0x0,0x1f,0x0,0x1e,0x0,0x19,0x0,0x18,0x0,0x10,0x0,0x10,
0x0,0x5,0x0,0x7,0x0,0xf9,0xff,0xfd,0xff,0xed,0xff,0xf0,0xff,0xe2,0xff,0xe7,
0xff,0xd9,0xff,0xde,0xff,0xd0,0xff,0xd4,0xff,0xc7,0xff,0xc8,0xff,0xbf,0xff,0xbd,
0xff,0xb4,0xff,0xb3,0xff,0xad,0xff,0xaf,0xff,0xab,0xff,0xb0,0xff,0xab,0xff,0xb2,
0xff,0xb0,0xff,0xb4,0xff,0xb4,0xff,0xb8,0xff,0xb4,0xff,0xbc,0xff,0xb7,0xff,0xbd,
0xff,0xbf,0xff,0xc2,0xff,0xca,0xff,0xcd,0xff,0xd7,0xff,0xd9,0xff,0xe6,0xff,0xe7,
0xff,0xf3,0xff,0xf7,0xff,0xfe,0xff,0x4,0x0,0x7,0x0,0xf,0x0,0x13,0x0,0x18,
0x0,0x1f,0x0,0x21,0x0,0x29,0x0,0x2d,0x0,0x31,0x0,0x35,0x0,0x37,0x0,0x38,
0x0,0x37,0x0,0x38,0x0,0x34,0x0,0x35,0x0,0x32,0x0,0x30,0x0,0x2e,0x0,0x29,
0x0,0x27,0x0,0x20,0x0,0x1b,0x0,0x17,0x0,0xf,0x0,0xe,0x0,0x3,0x0,0x0,
0x0,0xf5,0xff,0xf0,0xff,0xe7,0xff,0xe3,0xff,0xdb,0xff,0xd5,0xff,0xcc,0xff,0xc8,
0xff,0xbe,0xff,0xbd,0xff,0xb5,0xff,0xb3,0xff,0xae,0xff,0xab,0xff,0xab,0xff,0xa7,
0xff,0xab,0xff,0xa5,0xff,0xaa,0xff,0xa7,0xff,0xa8,0xff,0xa8,0xff,0xa7,0xff,0xa7,
0xff,0xa8,0xff,0xa9,0xff,0xae,0xff,0xaf,0xff,0xb6,0xff,0xb8,0xff,0xbf,0xff,0xc4,
0xff,0xc9,0xff,0xd0,0xff,0xd0,0xff,0xda,0xff,0xd7,0xff,0xe2,0xff,0xe3,0xff,0xec,
0xff,0xef,0xff,0xfb,0xff,0x0,0x0,0xb,0x0,0x14,0x0,0x1b,0x0,0x20,0x0,0x27,
0x0,0x25,0x0,0x2a,0x0,0x2a,0x0,0x2c,0x0,0x2e,0x0,0x30,0x0,0x32,0x0,0x32,
0x0,0x35,0x0,0x30,0x0,0x32,0x0,0x2d,0x0,0x2a,0x0,0x28,0x0,0x20,0x0,0x21,
0x0,0x15,0x0,0x19,0x0,0xc,0x0,0x10,0x0,0x8,0x0,0x6,0x0,0x4,0x0,0xfe,
0xff,0xff,0xff,0xf8,0xff,0xf7,0xff,0xf1,0xff,0xea,0xff,0xe6,0xff,0xdb,0xff,0xd8,
0xff,0xcc,0xff,0xc9,0xff,0xc0,0xff,0xbc,0xff,0xb9,0xff,0xb5,0xff,0xb6,0xff,0xb2,
0xff,0xb5,0xff,0xb2,0xff,0xb2,0xff,0xb3,0xff,0xb1,0xff,0xb5,0xff,0xb1,0xff,0xb5,
0xff,0xb1,0xff,0xb4,0xff,0xb1,0xff,0xb3,0xff,0xb4,0xff,0xb2,0xff,0xb9,0xff,0xb5,
0xff,0xbf,0xff,0xbf,0xff,0xca,0xff,0xcb,0xff,0xd3,0xff,0xd7,0xff,0xd8,0xff,0xdf,
0xff,0xe1,0xff,0xe6,0xff,0xec,0xff,0xed,0xff,0xf3,0xff,0xf3,0xff,0xfc,0xff,0xf8,
0xff,0x5,0x0,0x1,0x0,0x9,0x0,0xb,0x0,0xf,0x0,0x14,0x0,0x19,0x0,0x1e,
0x0,0x1f,0x0,0x25,0x0,0x21,0x0,0x28,0x0,0x1e,0x0,0x26,0x0,0x1a,0x0,0x23,
0x0,0x16,0x0,0x20,0x0,0x15,0x0,0x1e,0x0,0x13,0x0,0x19,0x0,0x10,0x0,0x14,
0x0,0xa,0x0,0xc,0x0,0x3,0x0,0x5,0x0,0xff,0xff,0xff,0xff,0xf9,0xff,0xf9,
0xff,0xf1,0xff,0xf2,0xff,0xe6,0xff,0xeb,0xff,0xdb,0xff,0xe1,0xff,0xd0,0xff,0xd3,
0xff,0xc9,0xff,0xc6,0xff,0xc4,0xff,0xbe,0xff,0xc1,0xff,0xbb,0xff,0xc0,0xff,0xbb,
0xff,0xc0,0xff,0xba,0xff,0xc1,0xff,0xba,0xff,0xc3,0xff,0xbb,0xff,0xc6,0xff,0xbb,
0xff,0xc8,0xff,0xbe,0xff,0xce,0xff,0xc7,0xff,0xd9,0xff,0xd3,0xff,0xe3,0xff,0xe1,
0xff,0xec,0xff,0xee,0xff,0xf2,0xff,0xf7,0xff,0xf7,0xff,0xfc,0xff,0xff,0xff,0x1,
0x0,0x7,0x0,0x6,0x0,0xf,0x0,0xd,0x0,0x16,0x0,0x13,0x0,0x19,0x0,0x1a,
0x0,0x18,0x0,0x20,0x0,0x18,0x0,0x23,0x0,0x17,0x0,0x24,0x0,0x16,0x0,0x23,
0x0,0x15,0x0,0x20,0x0,0x15,0x0,0x1a,0x0,0x15,0x0,0x15,0x0,0x11,0x0,0x13,
0x0,0x8,0x0,0x10,0x0,0xfd,0xff,0x7,0x0,0xf5,0xff,0xfc,0xff,0xee,0xff,0xf4,
0xff,0xea,0xff,0xec,0xff,0xe8,0xff,0xe5,0xff,0xe2,0xff,0xe0,0xff,0xdc,0xff,0xda,
0xff,0xd7,0xff,0xd4,0xff,0xd2,0xff,0xcd,0xff,0xcf,0xff,0xc8,0xff,0xcf,0xff,0xc9,
0xff,0xd0,0xff,0xca,0xff,0xd0,0xff,0xca,0xff,0xcf,0xff,0xcb,0xff,0xcf,0xff,0xcb,
0xff,0xd1,0xff,0xcb,0xff,0xd5,0xff,0xce,0xff,0xdc,0xff,0xd6,0xff,0xe5,0xff,0xdf,
0xff,0xef,0xff,0xe7,0xff,0xf8,0xff,0xf1,0xff,0xfe,0xff,0xfd,0xff,0x4,0x0,0x9,
0x0,0xb,0x0,0x14,0x0,0x11,0x0,0x1d,0x0,0x15,0x0,0x20,0x0,0x1a,0x0,0x22,
0x0,0x1e,0x0,0x24,0x0,0x1f,0x0,0x24,0x0,0x1d,0x0,0x24,0x0,0x1c,0x0,0x24,
0x0,0x1b,0x0,0x23,0x0,0x19,0x0,0x1d,0x0,0x17,0x0,0x17,0x0,0x16,0x0,0x11,
0x0,0x13,0x0,0xc,0x0,0xc,0x0,0x7,0x0,0x4,0x0,0x1,0x0,0xfc,0xff,0xf8,
0xff,0xf2,0xff,0xee,0xff,0xe8,0xff,0xe3,0xff,0xde,0xff,0xda,0xff,0xd8,0xff,0xd5,
0xff,0xd4,0xff,0xd1,0xff,0xd0,0xff,0xcd,0xff,0xca,0xff,0xcb,0xff,0xc5,0xff,0xc9,
0xff,0xc3,0xff,0xc4,0xff,0xc3,0xff,0xc2,0xff,0xc6,0xff,0xc1,0xff,0xc9,0xff,0xc1,
0xff,0xc9,0xff,0xc7,0xff,0xcb,0xff,0xcd,0xff,0xce,0xff,0xd0,0xff,0xd1,0xff,0xd7,
0xff,0xd4,0xff,0xde,0xff,0xde,0xff,0xe4,0xff,0xee,0xff,0xef,0xff,0xfd,0xff,0xfc,
0xff,0x8,0x0,0x9,0x0,0xf,0x0,0x13,0x0,0x12,0x0,0x19,0x0,0x17,0x0,0x1d,
0x0,0x21,0x0,0x23,0x0,0x2a,0x0,0x2a,0x0,0x2e,0x0,0x30,0x0,0x31,0x0,0x32,
0x0,0x33,0x0,0x2f,0x0,0x2d,0x0,0x2b,0x0,0x24,0x0,0x26,0x0,0x1d,0x0,0x1f,
0x0,0x18,0x0,0x1a,0x0,0x12,0x0,0x14,0x0,0xc,0x0,0xc,0x0,0x6,0x0,0x3,
0x0,0xfb,0xff,0xf9,0xff,0xed,0xff,0xef,0xff,0xe2,0xff,0xe4,0xff,0xda,0xff,0xdb,
0xff,0xd4,0xff,0xd5,0xff,0xd0,0xff,0xd0,0xff,0xcd,0xff,0xcd,0xff,0xca,0xff,0xcd,
0xff,0xc8,0xff,0xcb,0xff,0xc5,0xff,0xc9,0xff,0xc5,0xff,0xca,0xff,0xcb,0xff,0xcd,
0xff,0xd2,0xff,0xcf,0xff,0xd6,0xff,0xd3,0xff,0xdd,0xff,0xd8,0xff,0xe2,0xff,0xe1,
0xff,0xe9,0xff,0xec,0xff,0xf5,0xff,0xf7,0xff,0x3,0x0,0x2,0x0,0xe,0x0,0xa,
0x0,0x17,0x0,0x10,0x0,0x1c,0x0,0x17,0x0,0x1f,0x0,0x1f,0x0,0x26,0x0,0x24,
0x0,0x2b,0x0,0x29,0x0,0x2c,0x0,0x2e,0x0,0x2d,0x0,0x2f,0x0,0x2d,0x0,0x30,
0x0,0x2b,0x0,0x2e,0x0,0x29,0x0,0x2d,0x0,0x24,0x0,0x2a,0x0,0x1d,0x0,0x21,
0x0,0x15,0x0,0x18,0x0,0xa,0x0,0xf,0x0,0x3,0x0,0x3,0x0,0xfe,0xff,0xfa,
0xff,0xf7,0xff,0xf6,0xff,0xf2,0xff,0xf0,0xff,0xf0,0xff,0xec,0xff,0xeb,0xff,0xe9,
0xff,0xe5,0xff,0xe6,0xff,0xe0,0xff,0xe3,0xff,0xdd,0xff,0xe0,0xff,0xdd,0xff,0xde,
0xff,0xdf,0xff,0xe1,0xff,0xe2,0xff,0xe4,0xff,0xe6,0xff,0xe7,0xff,0xe8,0xff,0xed,
0xff,0xec,0xff,0xf1,0xff,0xf4,0xff,0xf5,0xff,0xfc,0xff,0xfb,0xff,0x6,0x0,0x2,
0x0,0x12,0x0,0x9,0x0,0x17,0x0,0x11,0x0,0x19,0x0,0x16,0x0,0x1c,0x0,0x1a,
0x0,0x1f,0x0,0x1e,0x0,0x24,0x0,0x22,0x0,0x2a,0x0,0x26,0x0,0x2f,0x0,0x2a,
0x0,0x32,0x0,0x2f,0x0,0x36,0x0,0x35,0x0,0x3a,0x0,0x3a,0x0,0x3d,0x0,0x3e,
0x0,0x3c,0x0,0x3d,0x0,0x3a,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x28,0x0,0x28,
0x0,0x1b,0x0,0x1c,0x0,0x12,0x0,0x14,0x0,0x7,0x0,0x11,0x0,0xff,0xff,0xb,
0x0,0xfc,0xff,0x5,0x0,0xf8,0xff,0xff,0xff,0xf3,0xff,0xf8,0xff,0xef,0xff,0xf1,
0xff,0xea,0xff,0xed,0xff,0xe5,0xff,0xe9,0xff,0xe2,0xff,0xe3,0xff,0xdd,0xff,0xdd,
0xff,0xda,0xff,0xda,0xff,0xd9,0xff,0xd9,0xff,0xdb,0xff,0xd8,0xff,0xe1,0xff,0xda,
0xff,0xe6,0xff,0xe2,0xff,0xee,0xff,0xec,0xff,0xf7,0xff,0xf4,0xff,0xfe,0xff,0xfc,
0xff,0x5,0x0,0x5,0x0,0x10,0x0,0xe,0x0,0x1a,0x0,0x16,0x0,0x20,0x0,0x1c,
0x0,0x24,0x0,0x21,0x0,0x28,0x0,0x25,0x0,0x2c,0x0,0x28,0x0,0x31,0x0,0x2f,
0x0,0x36,0x0,0x35,0x0,0x3a,0x0,0x37,0x0,0x3b,0x0,0x39,0x0,0x3b,0x0,0x3a,
0x0,0x3a,0x0,0x37,0x0,0x33,0x0,0x32,0x0,0x2b,0x0,0x2c,0x0,0x25,0x0,0x24,
0x0,0x1f,0x0,0x1d,0x0,0x15,0x0,0x15,0x0,0xb,0x0,0xc,0x0,0x5,0x0,0x7,
0x0,0xff,0xff,0x2,0x0,0xf6,0xff,0xfa,0xff,0xef,0xff,0xf3,0xff,0xe8,0xff,0xec,
0xff,0xe1,0xff,0xe4,0xff,0xda,0xff,0xde,0xff,0xd8,0xff,0xdb,0xff,0xd9,0xff,0xdc,
0xff,0xdd,0xff,0xdf,0xff,0xe2,0xff,0xe4,0xff,0xe5,0xff,0xe9,0xff,0xe9,0xff,0xec,
0xff,0xee,0xff,0xf0,0xff,0xf5,0xff,0xf6,0xff,0xfc,0xff,0xfc,0xff,0x2,0x0,0x3,
0x0,0x9,0x0,0xb,0x0,0x10,0x0,0xf,0x0,0x15,0x0,0x11,0x0,0x16,0x0,0x12,
0x0,0x19,0x0,0xf,0x0,0x1d,0x0,0xf,0x0,0x20,0x0,0x13,0x0,0x24,0x0,0x1a,
0x0,0x2b,0x0,0x22,0x0,0x2f,0x0,0x26,0x0,0x2f,0x0,0x28,0x0,0x2c,0x0,0x27,
0x0,0x29,0x0,0x22,0x0,0x25,0x0,0x1e,0x0,0x22,0x0,0x1d,0x0,0x1e,0x0,0x1d,
0x0,0x1a,0x0,0x1c,0x0,0x19,0x0,0x1c,0x0,0x14,0x0,0x17,0x0,0xc,0x0,0xf,
0x0,0x4,0x0,0x7,0x0,0xfe,0xff,0x2,0x0,0xf9,0xff,0x0,0x0,0xf4,0xff,0xfe,
0xff,0xf0,0xff,0xfa,0xff,0xed,0xff,0xf7,0xff,0xe9,0xff,0xf2,0xff,0xe4,0xff,0xec,
0xff,0xe1,0xff,0xe8,0xff,0xe1,0xff,0xe9,0xff,0xe7,0xff,0xee,0xff,0xf3,0xff,0xf7,
0xff,0xfd,0xff,0x0,0x0,0x4,0x0,0x5,0x0,0xc,0x0,0x7,0x0,0x12,0x0,0x9,
0x0,0x13,0x0,0xe,0x0,0x19,0x0,0x16,0x0,0x22,0x0,0x1f,0x0,0x2b,0x0,0x29,
0x0,0x32,0x0,0x30,0x0,0x34,0x0,0x33,0x0,0x36,0x0,0x34,0x0,0x3a,0x0,0x35,
0x0,0x3d,0x0,0x37,0x0,0x3f,0x0,0x3c,0x0,0x41,0x0,0x40,0x0,0x40,0x0,0x40,
0x0,0x3b,0x0,0x3e,0x0,0x33,0x0,0x38,0x0,0x2b,0x0,0x2d,0x0,0x24,0x0,0x26,
0x0,0x1b,0x0,0x1f,0x0,0x10,0x0,0x17,0x0,0x6,0x0,0xd,0x0,0xfb,0xff,0x3,
0x0,0xf1,0xff,0xf9,0xff,0xeb,0xff,0xf1,0xff,0xe6,0xff,0xec,0xff,0xe1,0xff,0xe7,
0xff,0xde,0xff,0xdf,0xff,0xda,0xff,0xd8,0xff,0xd6,0xff,0xd3,0xff,0xd4,0xff,0xd2,
0xff,0xd5,0xff,0xd5,0xff,0xd9,0xff,0xd8,0xff,0xde,0xff,0xde,0xff,0xe2,0xff,0xe2,
0xff,0xe6,0xff,0xe3,0xff,0xee,0xff,0xe6,0xff,0xf8,0xff,0xef,0xff,0x4,0x0,0xfa,
0xff,0xf,0x0,0x7,0x0,0x19,0x0,0x14,0x0,0x23,0x0,0x1d,0x0,0x29,0x0,0x21,
0x0,0x2e,0x0,0x27,0x0,0x38,0x0,0x33,0x0,0x3f,0x0,0x3e,0x0,0x42,0x0,0x43,
0x0,0x46,0x0,0x46,0x0,0x46,0x0,0x47,0x0,0x45,0x0,0x47,0x0,0x46,0x0,0x4a,
0x0,0x45,0x0,0x4c,0x0,0x40,0x0,0x4a,0x0,0x38,0x0,0x46,0x0,0x2f,0x0,0x3c,
0x0,0x27,0x0,0x2e,0x0,0x20,0x0,0x25,0x0,0x18,0x0,0x1d,0x0,0x12,0x0,0x14,
0x0,0x8,0x0,0xb,0x0,0xfb,0xff,0xff,0xff,0xf0,0xff,0xf3,0xff,0xe9,0xff,0xeb,
0xff,0xe3,0xff,0xe3,0xff,0xe2,0xff,0xe1,0xff,0xe2,0xff,0xe2,0xff,0xe2,0xff,0xde,
0xff,0xe0,0xff,0xdb,0xff,0xde,0xff,0xdc,0xff,0xe0,0xff,0xdd,0xff,0xe5,0xff,0xe0,
0xff,0xed,0xff,0xe5,0xff,0xf8,0xff,0xed,0xff,0x1,0x0,0xf6,0xff,0x6,0x0,0xfd,
0xff,0x9,0x0,0x2,0x0,0xc,0x0,0x6,0x0,0x10,0x0,0xa,0x0,0x16,0x0,0xf,
0x0,0x1a,0x0,0x16,0x0,0x20,0x0,0x1e,0x0,0x26,0x0,0x24,0x0,0x26,0x0,0x26,
0x0,0x24,0x0,0x25,0x0,0x26,0x0,0x28,0x0,0x2a,0x0,0x2c,0x0,0x2c,0x0,0x2f,
0x0,0x2b,0x0,0x2f,0x0,0x29,0x0,0x2d,0x0,0x27,0x0,0x2b,0x0,0x24,0x0,0x28,
0x0,0x21,0x0,0x25,0x0,0x1f,0x0,0x25,0x0,0x1d,0x0,0x24,0x0,0x1a,0x0,0x1f,
0x0,0x16,0x0,0x1c,0x0,0x12,0x0,0x17,0x0,0xf,0x0,0x11,0x0,0xf,0x0,0xe,
0x0,0xc,0x0,0x9,0x0,0x6,0x0,0x4,0x0,0x3,0x0,0x2,0x0,0x1,0x0,0xff,
0xff,0x1,0x0,0x1,0x0,0x3,0x0,0x6,0x0,0x4,0x0,0x6,0x0,0x2,0x0,0x1,
0x0,0xff,0xff,0xfc,0xff,0x0,0x0,0xf7,0xff,0x5,0x0,0xf8,0xff,0xc,0x0,0xfe,
0xff,0x10,0x0,0x4,0x0,0x12,0x0,0xc,0x0,0x13,0x0,0x11,0x0,0x13,0x0,0x12,
0x0,0x14,0x0,0x16,0x0,0x19,0x0,0x19,0x0,0x1e,0x0,0x1d,0x0,0x20,0x0,0x22,
0x0,0x20,0x0,0x21,0x0,0x1f,0x0,0x1d,0x0,0x20,0x0,0x1d,0x0,0x22,0x0,0x1d,
0x0,0x23,0x0,0x20,0x0,0x24,0x0,0x28,0x0,0x26,0x0,0x2d,0x0,0x27,0x0,0x2f,
0x0,0x29,0x0,0x31,0x0,0x2b,0x0,0x31,0x0,0x2c,0x0,0x32,0x0,0x2c,0x0,0x30,
0x0,0x29,0x0,0x2c,0x0,0x25,0x0,0x2b,0x0,0x21,0x0,0x28,0x0,0x1e,0x0,0x24,
0x0,0x1d,0x0,0x22,0x0,0x20,0x0,0x1f,0x0,0x21,0x0,0x1c,0x0,0x1d,0x0,0x1a,
0x0,0x18,0x0,0x16,0x0,0x14,0x0,0x12,0x0,0x13,0x0,0x10,0x0,0x17,0x0,0x10,
0x0,0x1b,0x0,0x12,0x0,0x1e,0x0,0x13,0x0,0x1f,0x0,0x12,0x0,0x1a,0x0,0x10,
0x0,0x13,0x0,0xc,0x0,0xd,0x0,0x9,0x0,0xb,0x0,0xc,0x0,0xb,0x0,0x10,
0x0,0xd,0x0,0xf,0x0,0x12,0x0,0xf,0x0,0x15,0x0,0xf,0x0,0x14,0x0,0xf,
0x0,0x11,0x0,0x12,0x0,0x13,0x0,0x18,0x0,0x16,0x0,0x1e,0x0,0x19,0x0,0x23,
0x0,0x19,0x0,0x24,0x0,0x15,0x0,0x21,0x0,0x11,0x0,0x1d,0x0,0xc,0x0,0x1b,
0x0,0x9,0x0,0x1b,0x0,0xd,0x0,0x1c,0x0,0x15,0x0,0x1e,0x0,0x1b,0x0,0x1f,
0x0,0x1e,0x0,0x21,0x0,0x1e,0x0,0x23,0x0,0x1e,0x0,0x25,0x0,0x20,0x0,0x23,
0x0,0x21,0x0,0x20,0x0,0x22,0x0,0x1f,0x0,0x24,0x0,0x21,0x0,0x25,0x0,0x24,
0x0,0x26,0x0,0x25,0x0,0x28,0x0,0x21,0x0,0x27,0x0,0x1c,0x0,0x25,0x0,0x18,
0x0,0x24,0x0,0x16,0x0,0x22,0x0,0x14,0x0,0x21,0x0,0x14,0x0,0x20,0x0,0x14,
0x0,0x1d,0x0,0x11,0x0,0x1a,0x0,0xd,0x0,0x14,0x0,0xa,0x0,0x10,0x0,0x7,
0x0,0xe,0x0,0x6,0x0,0x10,0x0,0x7,0x0,0x13,0x0,0x8,0x0,0x13,0x0,0x9,
0x0,0x11,0x0,0xb,0x0,0xf,0x0,0xc,0x0,0xe,0x0,0xf,0x0,0xf,0x0,0x13,
0x0,0x12,0x0,0x16,0x0,0x11,0x0,0x16,0x0,0xe,0x0,0x13,0x0,0xb,0x0,0xb,
0x0,0x9,0x0,0x7,0x0,0x7,0x0,0x8,0x0,0xa,0x0,0xd,0x0,0xe,0x0,0x15,
0x0,0x12,0x0,0x1f,0x0,0x17,0x0,0x23,0x0,0x19,0x0,0x23,0x0,0x18,0x0,0x24,
0x0,0x15,0x0,0x20,0x0,0x11,0x0,0x1b,0x0,0xe,0x0,0x1a,0x0,0xe,0x0,0x16,
0x0,0xf,0x0,0x14,0x0,0x13,0x0,0x15,0x0,0x18,0x0,0x16,0x0,0x1c,0x0,0x1a,
0x0,0x20,0x0,0x1e,0x0,0x20,0x0,0x1e,0x0,0x1e,0x0,0x1d,0x0,0x1d,0x0,0x1c,
0x0,0x1d,0x0,0x1a,0x0,0x1d,0x0,0x1a,0x0,0x1f,0x0,0x18,0x0,0x20,0x0,0x12,
0x0,0x1e,0x0,0xd,0x0,0x1c,0x0,0x9,0x0,0x1a,0x0,0x8,0x0,0x17,0x0,0xb,
0x0,0x14,0x0,0xb,0x0,0x10,0x0,0x9,0x0,0xb,0x0,0x8,0x0,0x9,0x0,0x8,
0x0,0x9,0x0,0x9,0x0,0xd,0x0,0xc,0x0,0x12,0x0,0x15,0x0,0x18,0x0,0x1f,
0x0,0x1d,0x0,0x26,0x0,0x23,0x0,0x2b,0x0,0x29,0x0,0x31,0x0,0x2c,0x0,0x34,
0x0,0x2d,0x0,0x36,0x0,0x2d,0x0,0x39,0x0,0x2d,0x0,0x3b,0x0,0x2e,0x0,0x3a,
0x0,0x2f,0x0,0x38,0x0,0x2f,0x0,0x37,0x0,0x2e,0x0,0x33,0x0,0x2d,0x0,0x2b,
0x0,0x28,0x0,0x24,0x0,0x21,0x0,0x1e,0x0,0x19,0x0,0x1a,0x0,0x13,0x0,0x18,
0x0,0x12,0x0,0x15,0x0,0xf,0x0,0xe,0x0,0x8,0x0,0x5,0x0,0xfd,0xff,0xf9,
0xff,0xef,0xff,0xef,0xff,0xe4,0xff,0xe7,0xff,0xe1,0xff,0xde,0xff,0xdf,0xff,0xd8,
0xff,0xdc,0xff,0xd7,0xff,0xdd,0xff,0xd7,0xff,0xdf,0xff,0xdb,0xff,0xe0,0xff,0xe0,
0xff,0xe2,0xff,0xe1,0xff,0xe2,0xff,0xe2,0xff,0xe1,0xff,0xe4,0xff,0xe5,0xff,0xe6,
0xff,0xed,0xff,0xef,0xff,0xf8,0xff,0xfc,0xff,0x7,0x0,0x9,0x0,0x15,0x0,0x19,
0x0,0x1e,0x0,0x26,0x0,0x24,0x0,0x2e,0x0,0x29,0x0,0x34,0x0,0x2f,0x0,0x37,
0x0,0x38,0x0,0x3b,0x0,0x40,0x0,0x41,0x0,0x49,0x0,0x45,0x0,0x52,0x0,0x49,
0x0,0x55,0x0,0x4b,0x0,0x51,0x0,0x4a,0x0,0x4b,0x0,0x46,0x0,0x41,0x0,0x3a,
0x0,0x35,0x0,0x2b,0x0,0x29,0x0,0x1e,0x0,0x1d,0x0,0xf,0x0,0x10,0x0,0x4,
0x0,0x3,0x0,0xfc,0xff,0xf6,0xff,0xf1,0xff,0xe6,0xff,0xe5,0xff,0xd8,0xff,0xdc,
0xff,0xcf,0xff,0xd1,0xff,0xcb,0xff,0xcb,0xff,0xc9,0xff,0xc7,0xff,0xc5,0xff,0xc3,
0xff,0xbf,0xff,0xc1,0xff,0xb9,0xff,0xc1,0xff,0xb8,0xff,0xc2,0xff,0xb9,0xff,0xc3,
0xff,0xbd,0xff,0xc6,0xff,0xc5,0xff,0xcc,0xff,0xd1,0xff,0xd7,0xff,0xdf,0xff,0xe2,
0xff,0xed,0xff,0xef,0xff,0xfd,0xff,0xff,0xff,0xe,0x0,0xf,0x0,0x1d,0x0,0x1d,
0x0,0x2a,0x0,0x27,0x0,0x36,0x0,0x32,0x0,0x41,0x0,0x3e,0x0,0x46,0x0,0x46,
0x0,0x48,0x0,0x4d,0x0,0x4d,0x0,0x4f,0x0,0x51,0x0,0x4c,0x0,0x53,0x0,0x4a,
0x0,0x54,0x0,0x48,0x0,0x53,0x0,0x46,0x0,0x4e,0x0,0x47,0x0,0x48,0x0,0x45,
0x0,0x44,0x0,0x41,0x0,0x3d,0x0,0x3c,0x0,0x32,0x0,0x31,0x0,0x27,0x0,0x23,
0x0,0x1e,0x0,0x18,0x0,0x12,0x0,0xe,0x0,0x9,0x0,0x7,0x0,0x1,0x0,0x3,
0x0,0xf6,0xff,0xf9,0xff,0xea,0xff,0xef,0xff,0xde,0xff,0xe6,0xff,0xd2,0xff,0xdb,
0xff,0xcc,0xff,0xd5,0xff,0xce,0xff,0xd8,0xff,0xd3,0xff,0xdd,0xff,0xd8,0xff,0xe1,
0xff,0xdd,0xff,0xe4,0xff,0xe0,0xff,0xe5,0xff,0xe2,0xff,0xe7,0xff,0xe7,0xff,0xea,
0xff,0xf1,0xff,0xef,0xff,0xfa,0xff,0xf5,0xff,0x2,0x0,0xfc,0xff,0xa,0x0,0x3,
0x0,0x11,0x0,0xd,0x0,0x1a,0x0,0x17,0x0,0x22,0x0,0x20,0x0,0x27,0x0,0x26,
0x0,0x29,0x0,0x28,0x0,0x29,0x0,0x27,0x0,0x27,0x0,0x24,0x0,0x29,0x0,0x23,
0x0,0x2d,0x0,0x27,0x0,0x30,0x0,0x2c,0x0,0x31,0x0,0x31,0x0,0x31,0x0,0x34,
0x0,0x2e,0x0,0x34,0x0,0x2b,0x0,0x31,0x0,0x27,0x0,0x2c,0x0,0x23,0x0,0x28,
0x0,0x1f,0x0,0x24,0x0,0x1b,0x0,0x22,0x0,0x17,0x0,0x21,0x0,0x13,0x0,0x1b,
0x0,0x10,0x0,0x15,0x0,0xe,0x0,0x14,0x0,0xc,0x0,0x11,0x0,0xa,0x0,0xe,
0x0,0x7,0x0,0xc,0x0,0x5,0x0,0x8,0x0,0x3,0x0,0x4,0x0,0x1,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x0,0xff,0xff,0x3,0x0,0xfa,0xff,0x3,
0x0,0xf6,0xff,0xff,0xff,0xf5,0xff,0xf7,0xff,0xf4,0xff,0xf2,0xff,0xf6,0xff,0xf1,
0xff,0xfa,0xff,0xf4,0xff,0xfe,0xff,0xf7,0xff,0x2,0x0,0xfb,0xff,0x6,0x0,0xfd,
0xff,0xc,0x0,0x0,0x0,0xe,0x0,0x1,0x0,0x8,0x0,0x0,0x0,0x5,0x0,0xff,
0xff,0x2,0x0,0xfc,0xff,0xfe,0xff,0xfb,0xff,0x0,0x0,0xfa,0xff,0x7,0x0,0xfd,
0xff,0xa,0x0,0x5,0x0,0xe,0x0,0xd,0x0,0x11,0x0,0x13,0x0,0x13,0x0,0x15,
0x0,0x10,0x0,0x14,0x0,0xb,0x0,0x10,0x0,0x6,0x0,0xa,0x0,0x2,0x0,0x5,
0x0,0xfd,0xff,0x2,0x0,0xf9,0xff,0xfd,0xff,0xf5,0xff,0xf9,0xff,0xf5,0xff,0xf9,
0xff,0xf7,0xff,0xf7,0xff,0xf6,0xff,0xf4,0xff,0xf4,0xff,0xf7,0xff,0xf7,0xff,0xfa,
0xff,0xf9,0xff,0xfd,0xff,0xfa,0xff,0x3,0x0,0xfd,0xff,0x5,0x0,0xfa,0xff,0x1,
0x0,0xf5,0xff,0xfa,0xff,0xf6,0xff,0xf2,0xff,0xf6,0xff,0xee,0xff,0xf7,0xff,0xf4,
0xff,0xfa,0xff,0xfc,0xff,0xfc,0xff,0x2,0x0,0xfc,0xff,0x4,0x0,0xfe,0xff,0x0,
0x0,0x1,0x0,0xfd,0xff,0x5,0x0,0xfe,0xff,0x8,0x0,0x2,0x0,0xa,0x0,0x6,
0x0,0xb,0x0,0x7,0x0,0x9,0x0,0xa,0x0,0x8,0x0,0xc,0x0,0x9,0x0,0xc,
0x0,0xb,0x0,0xf,0x0,0x12,0x0,0x17,0x0,0x19,0x0,0x1c,0x0,0x18,0x0,0x1d,
0x0,0x12,0x0,0x19,0x0,0x8,0x0,0x10,0x0,0xff,0xff,0x8,0x0,0xfb,0xff,0x1,
0x0,0xfb,0xff,0xfe,0xff,0xf8,0xff,0xfe,0xff,0xf6,0xff,0xf9,0xff,0xf0,0xff,0xf2,
0xff,0xe7,0xff,0xeb,0xff,0xe1,0xff,0xe5,0xff,0xdf,0xff,0xdf,0xff,0xe0,0xff,0xde,
0xff,0xe3,0xff,0xe1,0xff,0xe5,0xff,0xe1,0xff,0xe3,0xff,0xde,0xff,0xe0,0xff,0xd9,
0xff,0xdd,0xff,0xd5,0xff,0xde,0xff,0xd7,0xff,0xdf,0xff,0xdd,0xff,0xe3,0xff,0xe0,
0xff,0xe8,0xff,0xe1,0xff,0xeb,0xff,0xe5,0xff,0xef,0xff,0xe8,0xff,0xf5,0xff,0xef,
0xff,0xfc,0xff,0xfb,0xff,0x4,0x0,0x4,0x0,0x9,0x0,0xc,0x0,0x9,0x0,0x10,
0x0,0x8,0x0,0xf,0x0,0x9,0x0,0xf,0x0,0xc,0x0,0x12,0x0,0x13,0x0,0x15,
0x0,0x1b,0x0,0x1b,0x0,0x20,0x0,0x1d,0x0,0x22,0x0,0x1a,0x0,0x1e,0x0,0x18,
0x0,0x16,0x0,0x17,0x0,0x10,0x0,0x13,0x0,0xf,0x0,0x15,0x0,0x12,0x0,0x18,
0x0,0x19,0x0,0x18,0x0,0x1a,0x0,0x18,0x0,0x14,0x0,0x13,0x0,0xa,0x0,0x9,
0x0,0xff,0xff,0x0,0x0,0xf7,0xff,0xfb,0xff,0xf3,0xff,0xf8,0xff,0xf0,0xff,0xf2,
0xff,0xea,0xff,0xe8,0xff,0xe0,0xff,0xdc,0xff,0xd4,0xff,0xcf,0xff,0xcd,0xff,0xc7,
0xff,0xcd,0xff,0xc7,0xff,0xd1,0xff,0xcd,0xff,0xd5,0xff,0xd3,0xff,0xd7,0xff,0xd7,
0xff,0xd7,0xff,0xd5,0xff,0xd5,0xff,0xd3,0xff,0xd3,0xff,0xcf,0xff,0xd2,0xff,0xcc,
0xff,0xd2,0xff,0xce,0xff,0xd5,0xff,0xd5,0xff,0xd9,0xff,0xdb,0xff,0xde,0xff,0xe1,
0xff,0xe5,0xff,0xea,0xff,0xea,0xff,0xf3,0xff,0xee,0xff,0xfb,0xff,0xf2,0xff,0xff,
0xff,0xf7,0xff,0x1,0x0,0xfa,0xff,0x2,0x0,0xfd,0xff,0x3,0x0,0x2,0x0,0x6,
0x0,0x9,0x0,0x9,0x0,0xc,0x0,0xa,0x0,0xb,0x0,0xb,0x0,0x8,0x0,0xa,
0x0,0x6,0x0,0xa,0x0,0x7,0x0,0xc,0x0,0xb,0x0,0xd,0x0,0xe,0x0,0xe,
0x0,0xe,0x0,0xd,0x0,0x9,0x0,0x5,0x0,0x5,0x0,0xfe,0xff,0x2,0x0,0xf9,
0xff,0x1,0x0,0xf5,0xff,0xfe,0xff,0xf3,0xff,0xf8,0xff,0xf5,0xff,0xf1,0xff,0xf4,
0xff,0xeb,0xff,0xef,0xff,0xe4,0xff,0xeb,0xff,0xde,0xff,0xe7,0xff,0xdd,0xff,0xe0,
0xff,0xdb,0xff,0xdb,0xff,0xd5,0xff,0xd9,0xff,0xd1,0xff,0xd8,0xff,0xd0,0xff,0xd6,
0xff,0xd0,0xff,0xd5,0xff,0xd2,0xff,0xd6,0xff,0xd3,0xff,0xd7,0xff,0xd3,0xff,0xd8,
0xff,0xd3,0xff,0xd9,0xff,0xd5,0xff,0xdb,0xff,0xda,0xff,0xde,0xff,0xe1,0xff,0xde,
0xff,0xe4,0xff,0xdb,0xff,0xe8,0xff,0xdd,0xff,0xec,0xff,0xe2,0xff,0xf0,0xff,0xe6,
0xff,0xf4,0xff,0xed,0xff,0xf9,0xff,0xf3,0xff,0xfa,0xff,0xf4,0xff,0xf9,0xff,0xf3,
0xff,0xf8,0xff,0xf4,0xff,0xfa,0xff,0xf5,0xff,0x2,0x0,0xfd,0xff,0xc,0x0,0x8,
0x0,0x12,0x0,0xf,0x0,0x10,0x0,0x12,0x0,0xc,0x0,0x10,0x0,0x9,0x0,0xe,
0x0,0xa,0x0,0xf,0x0,0xf,0x0,0x10,0x0,0x12,0x0,0xd,0x0,0x11,0x0,0xc,
0x0,0xc,0x0,0xb,0x0,0x6,0x0,0xa,0x0,0x2,0x0,0x9,0x0,0x1,0x0,0xa,
0x0,0x1,0x0,0xc,0x0,0x1,0x0,0xf,0x0,0x2,0x0,0xf,0x0,0x3,0x0,0xb,
0x0,0x4,0x0,0x4,0x0,0xff,0xff,0xf9,0xff,0xf5,0xff,0xed,0xff,0xe8,0xff,0xe1,
0xff,0xdd,0xff,0xd7,0xff,0xd5,0xff,0xd4,0xff,0xd5,0xff,0xd5,0xff,0xde,0xff,0xd7,
0xff,0xe5,0xff,0xdb,0xff,0xe5,0xff,0xdb,0xff,0xe1,0xff,0xd5,0xff,0xd9,0xff,0xd1,
0xff,0xd2,0xff,0xcf,0xff,0xd0,0xff,0xce,0xff,0xd3,0xff,0xce,0xff,0xd6,0xff,0xce,
0xff,0xd9,0xff,0xcf,0xff,0xd8,0xff,0xd1,0xff,0xd6,0xff,0xd2,0xff,0xd4,0xff,0xd2,
0xff,0xd2,0xff,0xd3,0xff,0xd3,0xff,0xd6,0xff,0xd9,0xff,0xdb,0xff,0xde,0xff,0xdf,
0xff,0xe1,0xff,0xe2,0xff,0xe1,0xff,0xe3,0xff,0xe0,0xff,0xe3,0xff,0xe0,0xff,0xe5,
0xff,0xe5,0xff,0xec,0xff,0xee,0xff,0xf7,0xff,0xf7,0xff,0x4,0x0,0x0,0x0,0xe,
0x0,0x7,0x0,0x14,0x0,0x9,0x0,0x14,0x0,0x4,0x0,0xe,0x0,0xfb,0xff,0x5,
0x0,0xf5,0xff,0xff,0xff,0xf4,0xff,0xfe,0xff,0xf6,0xff,0xff,0xff,0xfa,0xff,0xfd,
0xff,0xfd,0xff,0xf9,0xff,0xfb,0xff,0xf6,0xff,0xf7,0xff,0xf1,0xff,0xf6,0xff,0xee,
0xff,0xf4,0xff,0xee,0xff,0xf2,0xff,0xed,0xff,0xf2,0xff,0xeb,0xff,0xf0,0xff,0xea,
0xff,0xed,0xff,0xe4,0xff,0xe8,0xff,0xdf,0xff,0xe6,0xff,0xdf,0xff,0xeb,0xff,0xe1,
0xff,0xf0,0xff,0xe6,0xff,0xf2,0xff,0xed,0xff,0xf4,0xff,0xf1,0xff,0xf5,0xff,0xf3,
0xff,0xf3,0xff,0xf6,0xff,0xf3,0xff,0xf7,0xff,0xf7,0xff,0xf9,0xff,0xfb,0xff,0xfb,
0xff,0xfe,0xff,0xfd,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,0x1,0x0,0xfa,0xff,0x2,
0x0,0xfb,0xff,0x1,0x0,0xfb,0xff,0xfe,0xff,0xf7,0xff,0xfb,0xff,0xf0,0xff,0xf7,
0xff,0xec,0xff,0xf6,0xff,0xec,0xff,0xf7,0xff,0xec,0xff,0xf6,0xff,0xef,0xff,0xf2,
0xff,0xf0,0xff,0xed,0xff,0xf2,0xff,0xeb,0xff,0xf2,0xff,0xed,0xff,0xed,0xff,0xee,
0xff,0xe8,0xff,0xea,0xff,0xe4,0xff,0xe4,0xff,0xe1,0xff,0xdd,0xff,0xe3,0xff,0xd8,
0xff,0xe7,0xff,0xd9,0xff,0xea,0xff,0xde,0xff,0xed,0xff,0xe3,0xff,0xef,0xff,0xe5,
0xff,0xec,0xff,0xe6,0xff,0xe9,0xff,0xe7,0xff,0xe8,0xff,0xe7,0xff,0xec,0xff,0xeb,
0xff,0xf3,0xff,0xf4,0xff,0xfa,0xff,0xfc,0xff,0x2,0x0,0x0,0x0,0x6,0x0,0x5,
0x0,0x9,0x0,0xb,0x0,0xf,0x0,0x11,0x0,0x18,0x0,0x17,0x0,0x1d,0x0,0x1b,
0x0,0x21,0x0,0x1f,0x0,0x23,0x0,0x25,0x0,0x24,0x0,0x2a,0x0,0x27,0x0,0x2b,
0x0,0x29,0x0,0x2a,0x0,0x28,0x0,0x26,0x0,0x27,0x0,0x22,0x0,0x24,0x0,0x1f,
0x0,0x1f,0x0,0x1e,0x0,0x1a,0x0,0x1d,0x0,0x13,0x0,0x15,0x0,0x8,0x0,0x6,
0x0,0xfb,0xff,0xf8,0xff,0xf0,0xff,0xec,0xff,0xea,0xff,0xe4,0xff,0xe7,0xff,0xdf,
0xff,0xe6,0xff,0xda,0xff,0xe2,0xff,0xd6,0xff,0xd6,0xff,0xd1,0xff,0xc9,0xff,0xc7,
0xff,0xc0,0xff,0xc0,0xff,0xbd,0xff,0xbe,0xff,0xc2,0xff,0xbf,0xff,0xcb,0xff,0xc3,
0xff,0xce,0xff,0xc7,0xff,0xcc,0xff,0xcb,0xff,0xc7,0xff,0xce,0xff,0xc3,0xff,0xd1,
0xff,0xc3,0xff,0xd3,0xff,0xca,0xff,0xd5,0xff,0xd1,0xff,0xd7,0xff,0xda,0xff,0xdb,
0xff,0xe3,0xff,0xe3,0xff,0xef,0xff,0xec,0xff,0xfd,0xff,0xf8,0xff,0xa,0x0,0xa,
0x0,0x15,0x0,0x1b,0x0,0x20,0x0,0x27,0x0,0x28,0x0,0x30,0x0,0x2b,0x0,0x35,
0x0,0x2f,0x0,0x36,0x0,0x35,0x0,0x36,0x0,0x3b,0x0,0x38,0x0,0x3f,0x0,0x3b,
0x0,0x42,0x0,0x3c,0x0,0x42,0x0,0x3c,0x0,0x40,0x0,0x3a,0x0,0x3d,0x0,0x34,
0x0,0x37,0x0,0x2c,0x0,0x2d,0x0,0x25,0x0,0x21,0x0,0x1b,0x0,0x19,0x0,0x11,
0x0,0x14,0x0,0xc,0x0,0x12,0x0,0x9,0x0,0x10,0x0,0x6,0x0,0x9,0x0,0xff,
0xff,0xf9,0xff,0xf5,0xff,0xe7,0xff,0xe5,0xff,0xd5,0xff,0xd3,0xff,0xc7,0xff,0xc5,
0xff,0xc2,0xff,0xbd,0xff,0xc3,0xff,0xb9,0xff,0xc5,0xff,0xbc,0xff,0xc9,0xff,0xc4,
0xff,0xcd,0xff,0xcb,0xff,0xd3,0xff,0xcf,0xff,0xd7,0xff,0xd1,0xff,0xd5,0xff,0xd0,
0xff,0xd2,0xff,0xce,0xff,0xd0,0xff,0xce,0xff,0xd0,0xff,0xd3,0xff,0xd7,0xff,0xde,
0xff,0xe4,0xff,0xed,0xff,0xf2,0xff,0xfd,0xff,0xfd,0xff,0x8,0x0,0x8,0x0,0x10,
0x0,0x11,0x0,0x17,0x0,0x18,0x0,0x1e,0x0,0x1c,0x0,0x24,0x0,0x1d,0x0,0x28,
0x0,0x20,0x0,0x2d,0x0,0x27,0x0,0x32,0x0,0x30,0x0,0x39,0x0,0x3b,0x0,0x41,
0x0,0x45,0x0,0x48,0x0,0x4a,0x0,0x49,0x0,0x49,0x0,0x44,0x0,0x45,0x0,0x3c,
0x0,0x42,0x0,0x38,0x0,0x3d,0x0,0x37,0x0,0x36,0x0,0x32,0x0,0x30,0x0,0x2c,
0x0,0x2c,0x0,0x26,0x0,0x27,0x0,0x21,0x0,0x23,0x0,0x1e,0x0,0x21,0x0,0x1a,
0x0,0x1e,0x0,0x14,0x0,0x1b,0x0,0x11,0x0,0x14,0x0,0xa,0x0,0x7,0x0,0xfe,
0xff,0xfa,0xff,0xf6,0xff,0xf3,0xff,0xf2,0xff,0xef,0xff,0xed,0xff,0xeb,0xff,0xe5,
0xff,0xe6,0xff,0xdc,0xff,0xe0,0xff,0xd5,0xff,0xd9,0xff,0xd0,0xff,0xd4,0xff,0xcd,
0xff,0xd3,0xff,0xcf,0xff,0xd6,0xff,0xd4,0xff,0xda,0xff,0xd6,0xff,0xdb,0xff,0xd4,
0xff,0xda,0xff,0xd5,0xff,0xdb,0xff,0xdb,0xff,0xe1,0xff,0xe2,0xff,0xe7,0xff,0xe8,
0xff,0xee,0xff,0xee,0xff,0xf4,0xff,0xf3,0xff,0xf4,0xff,0xf6,0xff,0xf4,0xff,0xfb,
0xff,0xf9,0xff,0x2,0x0,0x2,0x0,0xb,0x0,0xe,0x0,0x15,0x0,0x1e,0x0,0x21,
0x0,0x2d,0x0,0x2e,0x0,0x36,0x0,0x39,0x0,0x39,0x0,0x3e,0x0,0x3b,0x0,0x40,
0x0,0x3e,0x0,0x42,0x0,0x42,0x0,0x44,0x0,0x46,0x0,0x46,0x0,0x47,0x0,0x44,
0x0,0x41,0x0,0x3e,0x0,0x36,0x0,0x34,0x0,0x29,0x0,0x27,0x0,0x1c,0x0,0x1a,
0x0,0x13,0x0,0x14,0x0,0x11,0x0,0x13,0x0,0xf,0x0,0x13,0x0,0xd,0x0,0x11,
0x0,0xb,0x0,0xc,0x0,0x7,0x0,0x4,0x0,0x2,0x0,0xfe,0xff,0x2,0x0,0xfc,
0xff,0x3,0x0,0xfd,0xff,0x3,0x0,0xff,0xff,0x2,0x0,0x0,0x0,0xfe,0xff,0xfd,
0xff,0xf6,0xff,0xf7,0xff,0xf0,0xff,0xed,0xff,0xeb,0xff,0xe6,0xff,0xe8,0xff,0xe5,
0xff,0xeb,0xff,0xe9,0xff,0xf2,0xff,0xf0,0xff,0xf7,0xff,0xfa,0xff,0xfd,0xff,0x1,
0x0,0x2,0x0,0x3,0x0,0x5,0x0,0x3,0x0,0x5,0x0,0x6,0x0,0x6,0x0,0x5,
0x0,0x4,0x0,0x4,0x0,0x2,0x0,0x3,0x0,0xff,0xff,0xfd,0xff,0xfa,0xff,0xf6,
0xff,0xf7,0xff,0xf3,0xff,0xfa,0xff,0xf4,0xff,0x0,0x0,0xf8,0xff,0x7,0x0,0x0,
0x0,0xd,0x0,0x9,0x0,0xe,0x0,0xf,0x0,0x9,0x0,0xd,0x0,0x4,0x0,0x4,
0x0,0x3,0x0,0x0,0x0,0x8,0x0,0x3,0x0,0x12,0x0,0xd,0x0,0x1c,0x0,0x19,
0x0,0x23,0x0,0x24,0x0,0x23,0x0,0x29,0x0,0x20,0x0,0x29,0x0,0x1a,0x0,0x25,
0x0,0x17,0x0,0x22,0x0,0x1a,0x0,0x24,0x0,0x1f,0x0,0x29,0x0,0x28,0x0,0x2f,
0x0,0x32,0x0,0x32,0x0,0x36,0x0,0x33,0x0,0x35,0x0,0x33,0x0,0x33,0x0,0x31,
0x0,0x35,0x0,0x2f,0x0,0x36,0x0,0x2e,0x0,0x34,0x0,0x2f,0x0,0x2e,0x0,0x2b,
0x0,0x23,0x0,0x1f,0x0,0x12,0x0,0xd,0x0,0x3,0x0,0xfb,0xff,0xfb,0xff,0xee,
0xff,0xf9,0xff,0xe9,0xff,0xfd,0xff,0xe9,0xff,0xfc,0xff,0xe8,0xff,0xf4,0xff,0xe4,
0xff,0xe9,0xff,0xdd,0xff,0xdb,0xff,0xd4,0xff,0xce,0xff,0xcc,0xff,0xcb,0xff,0xca,
0xff,0xcf,0xff,0xce,0xff,0xd4,0xff,0xd6,0xff,0xd8,0xff,0xde,0xff,0xd9,0xff,0xde,
0xff,0xd8,0xff,0xd9,0xff,0xd8,0xff,0xd5,0xff,0xdc,0xff,0xd9,0xff,0xe6,0xff,0xe6,
0xff,0xf5,0xff,0xfa,0xff,0x4,0x0,0xe,0x0,0xf,0x0,0x1d,0x0,0x14,0x0,0x26,
0x0,0x16,0x0,0x2a,0x0,0x1c,0x0,0x30,0x0,0x2c,0x0,0x38,0x0,0x3e,0x0,0x3f,
0x0,0x4d,0x0,0x46,0x0,0x53,0x0,0x48,0x0,0x4c,0x0,0x45,0x0,0x3d,0x0,0x3f,
0x0,0x31,0x0,0x38,0x0,0x2b,0x0,0x32,0x0,0x2b,0x0,0x2e,0x0,0x2c,0x0,0x29,
0x0,0x2a,0x0,0x21,0x0,0x23,0x0,0x1a,0x0,0x19,0x0,0x15,0x0,0x12,0x0,0xf,
0x0,0xe,0x0,0x5,0x0,0x8,0x0,0xfb,0xff,0xff,0xff,0xf1,0xff,0xf4,0xff,0xe6,
0xff,0xec,0xff,0xdf,0xff,0xea,0xff,0xde,0xff,0xef,0xff,0xe5,0xff,0xfa,0xff,0xf3,
0xff,0x4,0x0,0x1,0x0,0x8,0x0,0x6,0x0,0x6,0x0,0x5,0x0,0x0,0x0,0x0,
0x0,0xf7,0xff,0xfa,0xff,0xf0,0xff,0xf7,0xff,0xef,0xff,0xfb,0xff,0xf7,0xff,0x4,
0x0,0x3,0x0,0x11,0x0,0x14,0x0,0x1f,0x0,0x26,0x0,0x2a,0x0,0x33,0x0,0x34,
0x0,0x34,0x0,0x36,0x0,0x2c,0x0,0x2f,0x0,0x21,0x0,0x25,0x0,0x11,0x0,0x19,
0x0,0x4,0x0,0xf,0x0,0xff,0xff,0xc,0x0,0x1,0x0,0xc,0x0,0x6,0x0,0xb,
0x0,0xb,0x0,0x9,0x0,0xc,0x0,0x7,0x0,0xa,0x0,0x3,0x0,0x8,0x0,0xff,
0xff,0x5,0x0,0xfe,0xff,0x1,0x0,0x0,0x0,0xfc,0xff,0xff,0xff,0xfd,0xff,0xfd,
0xff,0x1,0x0,0x1,0x0,0x7,0x0,0x8,0x0,0xf,0x0,0xe,0x0,0x18,0x0,0x17,
0x0,0x1e,0x0,0x1a,0x0,0x20,0x0,0x1a,0x0,0x22,0x0,0x1b,0x0,0x26,0x0,0x1e,
0x0,0x2c,0x0,0x24,0x0,0x37,0x0,0x32,0x0,0x43,0x0,0x40,0x0,0x4c,0x0,0x4b,
0x0,0x53,0x0,0x55,0x0,0x56,0x0,0x56,0x0,0x53,0x0,0x4e,0x0,0x49,0x0,0x43,
0x0,0x3f,0x0,0x35,0x0,0x33,0x0,0x28,0x0,0x25,0x0,0x20,0x0,0x1b,0x0,0x1b,
0x0,0x15,0x0,0x15,0x0,0x10,0x0,0x11,0x0,0xb,0x0,0xd,0x0,0x4,0x0,0x7,
0x0,0xf9,0xff,0x1,0x0,0xee,0xff,0xfa,0xff,0xe7,0xff,0xf1,0xff,0xe2,0xff,0xe8,
0xff,0xe0,0xff,0xe2,0xff,0xde,0xff,0xdb,0xff,0xd9,0xff,0xd4,0xff,0xd5,0xff,0xd0,
0xff,0xd1,0xff,0xcd,0xff,0xd0,0xff,0xce,0xff,0xd4,0xff,0xd3,0xff,0xdb,0xff,0xdc,
0xff,0xe3,0xff,0xe8,0xff,0xeb,0xff,0xf4,0xff,0xf1,0xff,0xfb,0xff,0xfa,0xff,0x1,
0x0,0x8,0x0,0xa,0x0,0x1b,0x0,0x17,0x0,0x33,0x0,0x2b,0x0,0x4d,0x0,0x3f,
0x0,0x5e,0x0,0x50,0x0,0x64,0x0,0x5f,0x0,0x64,0x0,0x67,0x0,0x62,0x0,0x67,
0x0,0x64,0x0,0x67,0x0,0x6a,0x0,0x68,0x0,0x72,0x0,0x6b,0x0,0x79,0x0,0x70,
0x0,0x7b,0x0,0x73,0x0,0x78,0x0,0x72,0x0,0x72,0x0,0x6d,0x0,0x65,0x0,0x61,
0x0,0x55,0x0,0x50,0x0,0x47,0x0,0x41,0x0,0x36,0x0,0x31,0x0,0x23,0x0,0x23,
0x0,0x12,0x0,0x15,0x0,0xff,0xff,0x6,0x0,0xed,0xff,0xf4,0xff,0xde,0xff,0xe3,
0xff,0xcc,0xff,0xd0,0xff,0xbb,0xff,0xbc,0xff,0xae,0xff,0xac,0xff,0xa3,0xff,0xa1,
0xff,0x9e,0xff,0x9d,0xff,0x9d,0xff,0x9c,0xff,0x9d,0xff,0xa0,0xff,0xa4,0xff,0xaa,
0xff,0xb4,0xff,0xba,0xff,0xca,0xff,0xcc,0xff,0xe4,0xff,0xe0,0xff,0xf8,0xff,0xf5,
0xff,0x0,0x0,0x5,0x0,0x2,0x0,0xb,0x0,0x2,0x0,0xb,0x0,0x6,0x0,0xb,
0x0,0x11,0x0,0x15,0x0,0x22,0x0,0x26,0x0,0x38,0x0,0x3b,0x0,0x50,0x0,0x52,
0x0,0x64,0x0,0x68,0x0,0x74,0x0,0x7a,0x0,0x84,0x0,0x85,0x0,0x8e,0x0,0x8a,
0x0,0x8f,0x0,0x88,0x0,0x8a,0x0,0x7f,0x0,0x82,0x0,0x74,0x0,0x78,0x0,0x6c,
0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x62,0x0,0x5f,0x0,0x59,0x0,0x55,
0x0,0x4d,0x0,0x47,0x0,0x3e,0x0,0x38,0x0,0x30,0x0,0x29,0x0,0x20,0x0,0x1e,
0x0,0xd,0x0,0x14,0x0,0xfd,0xff,0x4,0x0,0xf1,0xff,0xf3,0xff,0xe7,0xff,0xe8,
0xff,0xe1,0xff,0xe1,0xff,0xd9,0xff,0xdd,0xff,0xd2,0xff,0xda,0xff,0xc9,0xff,0xd2,
0xff,0xbf,0xff,0xc7,0xff,0xb8,0xff,0xbf,0xff,0xb6,0xff,0xbc,0xff,0xb9,0xff,0xc1,
0xff,0xc4,0xff,0xcb,0xff,0xd0,0xff,0xd4,0xff,0xd2,0xff,0xd9,0xff,0xd0,0xff,0xda,
0xff,0xce,0xff,0xdb,0xff,0xcd,0xff,0xdb,0xff,0xd7,0xff,0xe0,0xff,0xe7,0xff,0xea,
0xff,0xf5,0xff,0xf5,0xff,0x2,0x0,0x1,0x0,0xb,0x0,0xd,0x0,0xd,0x0,0x11,
0x0,0x11,0x0,0x12,0x0,0x19,0x0,0x16,0x0,0x20,0x0,0x1b,0x0,0x28,0x0,0x24,
0x0,0x2f,0x0,0x30,0x0,0x31,0x0,0x36,0x0,0x33,0x0,0x37,0x0,0x37,0x0,0x36,
0x0,0x3e,0x0,0x35,0x0,0x48,0x0,0x38,0x0,0x4e,0x0,0x40,0x0,0x4f,0x0,0x47,
0x0,0x4f,0x0,0x48,0x0,0x48,0x0,0x41,0x0,0x3d,0x0,0x34,0x0,0x31,0x0,0x25,
0x0,0x27,0x0,0x19,0x0,0x20,0x0,0x12,0x0,0x1d,0x0,0xe,0x0,0x1d,0x0,0xe,
0x0,0x19,0x0,0xe,0x0,0x11,0x0,0xb,0x0,0x4,0x0,0x4,0x0,0xf9,0xff,0xfc,
0xff,0xf4,0xff,0xf8,0xff,0xf8,0xff,0xfa,0xff,0x0,0x0,0xff,0xff,0x2,0x0,0x1,
0x0,0xfd,0xff,0xff,0xff,0xf1,0xff,0xf5,0xff,0xe0,0xff,0xe4,0xff,0xd3,0xff,0xd6,
0xff,0xce,0xff,0xd3,0xff,0xcf,0xff,0xda,0xff,0xd2,0xff,0xe4,0xff,0xd3,0xff,0xe7,
0xff,0xd0,0xff,0xe4,0xff,0xd1,0xff,0xdf,0xff,0xd9,0xff,0xdc,0xff,0xe4,0xff,0xe3,
0xff,0xf3,0xff,0xf3,0xff,0x0,0x0,0x1,0x0,0x3,0x0,0x8,0x0,0xfc,0xff,0x5,
0x0,0xf5,0xff,0xfc,0xff,0xf1,0xff,0xf6,0xff,0xf6,0xff,0xf9,0xff,0x4,0x0,0x1,
0x0,0x13,0x0,0xc,0x0,0x1d,0x0,0x17,0x0,0x22,0x0,0x1d,0x0,0x24,0x0,0x1f,
0x0,0x27,0x0,0x23,0x0,0x2b,0x0,0x28,0x0,0x2f,0x0,0x2c,0x0,0x32,0x0,0x2f,
0x0,0x32,0x0,0x2e,0x0,0x2f,0x0,0x28,0x0,0x29,0x0,0x1e,0x0,0x1f,0x0,0x12,
0x0,0x14,0x0,0xa,0x0,0xd,0x0,0xa,0x0,0xb,0x0,0xe,0x0,0x9,0x0,0x12,
0x0,0xa,0x0,0x15,0x0,0x9,0x0,0x11,0x0,0x6,0x0,0x9,0x0,0xfe,0xff,0x2,
0x0,0xf7,0xff,0xfc,0xff,0xf2,0xff,0xf8,0xff,0xf3,0xff,0xf8,0xff,0xf6,0xff,0xf8,
0xff,0xf9,0xff,0xf9,0xff,0xf9,0xff,0xfa,0xff,0xf4,0xff,0xf8,0xff,0xef,0xff,0xf4,
0xff,0xee,0xff,0xf1,0xff,0xf1,0xff,0xef,0xff,0xf3,0xff,0xee,0xff,0xf2,0xff,0xed,
0xff,0xe9,0xff,0xe9,0xff,0xe0,0xff,0xe4,0xff,0xde,0xff,0xe1,0xff,0xe2,0xff,0xe2,
0xff,0xed,0xff,0xea,0xff,0xfb,0xff,0xfb,0xff,0x4,0x0,0xb,0x0,0x9,0x0,0xf,
0x0,0xa,0x0,0xd,0x0,0xa,0x0,0xa,0x0,0xb,0x0,0x3,0x0,0x9,0x0,0x2,
0x0,0x7,0x0,0x7,0x0,0x7,0x0,0xa,0x0,0x6,0x0,0x9,0x0,0x6,0x0,0x9,
0x0,0xd,0x0,0x6,0x0,0x13,0x0,0x8,0x0,0x16,0x0,0x10,0x0,0x19,0x0,0x17,
0x0,0x1a,0x0,0x1b,0x0,0x19,0x0,0x1c,0x0,0x19,0x0,0x19,0x0,0x17,0x0,0x15,
0x0,0xf,0x0,0xf,0x0,0x6,0x0,0x6,0x0,0xfe,0xff,0xfe,0xff,0xf9,0xff,0xfa,
0xff,0xfc,0xff,0xfc,0xff,0x1,0x0,0x1,0x0,0x1,0x0,0x3,0x0,0xfd,0xff,0xff,
0xff,0xf7,0xff,0xf8,0xff,0xf0,0xff,0xef,0xff,0xeb,0xff,0xea,0xff,0xe9,0xff,0xeb,
0xff,0xe9,0xff,0xf0,0xff,0xe9,0xff,0xf1,0xff,0xe8,0xff,0xec,0xff,0xe7,0xff,0xe4,
0xff,0xe5,0xff,0xe2,0xff,0xe5,0xff,0xe3,0xff,0xe6,0xff,0xe7,0xff,0xea,0xff,0xec,
0xff,0xee,0xff,0xf0,0xff,0xee,0xff,0xef,0xff,0xeb,0xff,0xea,0xff,0xec,0xff,0xe9,
0xff,0xf0,0xff,0xed,0xff,0xfa,0xff,0xf6,0xff,0x9,0x0,0x5,0x0,0x16,0x0,0x10,
0x0,0x1b,0x0,0x12,0x0,0x1d,0x0,0x11,0x0,0x1c,0x0,0x11,0x0,0x18,0x0,0x13,
0x0,0x13,0x0,0x16,0x0,0xf,0x0,0x15,0x0,0xa,0x0,0x10,0x0,0x8,0x0,0xb,
0x0,0xa,0x0,0x8,0x0,0xe,0x0,0x8,0x0,0x13,0x0,0xe,0x0,0x15,0x0,0x16,
0x0,0x16,0x0,0x1d,0x0,0x15,0x0,0x1f,0x0,0xe,0x0,0x18,0x0,0x4,0x0,0xc,
0x0,0xfe,0xff,0x2,0x0,0xfb,0xff,0xfd,0xff,0xfa,0xff,0xfc,0xff,0xfb,0xff,0xfd,
0xff,0xfa,0xff,0xfc,0xff,0xf3,0xff,0xf7,0xff,0xeb,0xff,0xf0,0xff,0xe2,0xff,0xeb,
0xff,0xdd,0xff,0xe9,0xff,0xe0,0xff,0xeb,0xff,0xea,0xff,0xf1,0xff,0xf3,0xff,0xf6,
0xff,0xf4,0xff,0xf5,0xff,0xf1,0xff,0xef,0xff,0xf0,0xff,0xea,0xff,0xf0,0xff,0xec,
0xff,0xf3,0xff,0xf2,0xff,0xf9,0xff,0xfa,0xff,0x0,0x0,0xff,0xff,0x3,0x0,0xfd,
0xff,0x1,0x0,0xf7,0xff,0xfa,0xff,0xee,0xff,0xf3,0xff,0xe7,0xff,0xf1,0xff,0xe8,
0xff,0xf5,0xff,0xef,0xff,0x0,0x0,0xf9,0xff,0xe,0x0,0x1,0x0,0x1b,0x0,0x7,
0x0,0x20,0x0,0xe,0x0,0x1b,0x0,0x12,0x0,0x10,0x0,0xf,0x0,0x4,0x0,0xa,
0x0,0xfe,0xff,0x5,0x0,0xfe,0xff,0xfe,0xff,0x0,0x0,0xfa,0xff,0x1,0x0,0xf9,
0xff,0x0,0x0,0xfd,0xff,0xfb,0xff,0x4,0x0,0xf7,0xff,0xa,0x0,0xf5,0xff,0x9,
0x0,0xf2,0xff,0x4,0x0,0xed,0xff,0xfa,0xff,0xe4,0xff,0xef,0xff,0xd9,0xff,0xe7,
0xff,0xd3,0xff,0xe1,0xff,0xd7,0xff,0xdf,0xff,0xe1,0xff,0xe6,0xff,0xef,0xff,0xf0,
0xff,0xfa,0xff,0xf8,0xff,0xfa,0xff,0xf9,0xff,0xf0,0xff,0xf2,0xff,0xe1,0xff,0xe5,
0xff,0xd5,0xff,0xd8,0xff,0xd2,0xff,0xd1,0xff,0xda,0xff,0xd6,0xff,0xe9,0xff,0xe4,
0xff,0xf7,0xff,0xf4,0xff,0xfd,0xff,0x1,0x0,0xfd,0xff,0x4,0x0,0xfc,0xff,0xff,
0xff,0xfb,0xff,0xfa,0xff,0xfb,0xff,0xf6,0xff,0xfc,0xff,0xf2,0xff,0xfa,0xff,0xee,
0xff,0xf9,0xff,0xed,0xff,0xf9,0xff,0xed,0xff,0xfd,0xff,0xf1,0xff,0x8,0x0,0xff,
0xff,0x18,0x0,0x14,0x0,0x24,0x0,0x28,0x0,0x2d,0x0,0x36,0x0,0x30,0x0,0x35,
0x0,0x2a,0x0,0x28,0x0,0x1d,0x0,0x18,0x0,0xe,0x0,0x7,0x0,0x3,0x0,0xfe,
0xff,0x0,0x0,0x3,0x0,0x4,0x0,0xb,0x0,0x8,0x0,0x11,0x0,0x9,0x0,0x13,
0x0,0x2,0x0,0xa,0x0,0xf5,0xff,0xfd,0xff,0xe7,0xff,0xf2,0xff,0xdc,0xff,0xe7,
0xff,0xd7,0xff,0xe1,0xff,0xd7,0xff,0xe2,0xff,0xd7,0xff,0xe1,0xff,0xd7,0xff,0xdc,
0xff,0xd5,0xff,0xd7,0xff,0xcf,0xff,0xd2,0xff,0xd0,0xff,0xd1,0xff,0xd6,0xff,0xd6,
0xff,0xdb,0xff,0xde,0xff,0xdd,0xff,0xe5,0xff,0xd8,0xff,0xe5,0xff,0xcd,0xff,0xda,
0xff,0xc1,0xff,0xca,0xff,0xbd,0xff,0xc0,0xff,0xc1,0xff,0xc0,0xff,0xcf,0xff,0xc9,
0xff,0xe3,0xff,0xd9,0xff,0xf1,0xff,0xe7,0xff,0xf6,0xff,0xef,0xff,0xf8,0xff,0xef,
0xff,0xf8,0xff,0xef,0xff,0xfa,0xff,0xf3,0xff,0xff,0xff,0xf8,0xff,0x0,0x0,0xfb,
0xff,0xfc,0xff,0xfb,0xff,0xf8,0xff,0xf7,0xff,0xfb,0xff,0xf6,0xff,0x5,0x0,0xfc,
0xff,0x16,0x0,0x8,0x0,0x22,0x0,0x14,0x0,0x22,0x0,0x18,0x0,0x19,0x0,0xf,
0x0,0x8,0x0,0x2,0x0,0xfc,0xff,0xfb,0xff,0xfe,0xff,0xfc,0xff,0xa,0x0,0x8,
0x0,0x1a,0x0,0x1b,0x0,0x25,0x0,0x2a,0x0,0x25,0x0,0x2e,0x0,0x1e,0x0,0x26,
0x0,0x16,0x0,0x18,0x0,0xc,0x0,0x9,0x0,0x4,0x0,0x0,0x0,0xfd,0xff,0xfc,
0xff,0xf2,0xff,0xfb,0xff,0xeb,0xff,0xfc,0xff,0xee,0xff,0xfd,0xff,0xf7,0xff,0xfe,
0xff,0xff,0xff,0xfc,0xff,0xfe,0xff,0xf4,0xff,0xe9,0xff,0xe4,0xff,0xc7,0xff,0xc9,
0xff,0xa2,0xff,0xa9,0xff,0x89,0xff,0x93,0xff,0x89,0xff,0x8f,0xff,0x9f,0xff,0x9e,
0xff,0xb9,0xff,0xb3,0xff,0xc8,0xff,0xbc,0xff,0xc2,0xff,0xb7,0xff,0xb2,0xff,0xad,
0xff,0xac,0xff,0xa9,0xff,0xb5,0xff,0xb2,0xff,0xc9,0xff,0xc9,0xff,0xe0,0xff,0xdf,
0xff,0xec,0xff,0xea,0xff,0xef,0xff,0xed,0xff,0xf7,0xff,0xef,0xff,0x9,0x0,0xfc,
0xff,0x20,0x0,0x19,0x0,0x37,0x0,0x37,0x0,0x45,0x0,0x4b,0x0,0x4e,0x0,0x58,
0x0,0x57,0x0,0x60,0x0,0x64,0x0,0x65,0x0,0x70,0x0,0x6d,0x0,0x73,0x0,0x6e,
0x0,0x61,0x0,0x5e,0x0,0x43,0x0,0x47,0x0,0x2f,0x0,0x39,0x0,0x32,0x0,0x3d,
0x0,0x48,0x0,0x4f,0x0,0x59,0x0,0x59,0x0,0x4c,0x0,0x45,0x0,0x1d,0x0,0x16,
0x0,0xe3,0xff,0xdf,0xff,0xbc,0xff,0xba,0xff,0xb7,0xff,0xb9,0xff,0xc9,0xff,0xc9,
0xff,0xd1,0xff,0xcb,0xff,0xb3,0xff,0xab,0xff,0x7a,0xff,0x70,0xff,0x4a,0xff,0x3f,
0xff,0x45,0xff,0x3f,0xff,0x74,0xff,0x74,0xff,0xb7,0xff,0xb8,0xff,0xde,0xff,0xdb,
0xff,0xc6,0xff,0xc3,0xff,0x80,0xff,0x7e,0xff,0x3b,0xff,0x38,0xff,0x23,0xff,0x20,
0xff,0x49,0xff,0x4a,0xff,0x9f,0xff,0xa0,0xff,0xfa,0xff,0xfa,0xff,0x32,0x0,0x32,
0x0,0x37,0x0,0x37,0x0,0x16,0x0,0x17,0x0,0xee,0xff,0xf4,0xff,0xdd,0xff,0xe9,
0xff,0xee,0xff,0xfe,0xff,0x1a,0x0,0x28,0x0,0x4b,0x0,0x53,0x0,0x6c,0x0,0x6f,
0x0,0x71,0x0,0x74,0x0,0x62,0x0,0x68,0x0,0x4b,0x0,0x58,0x0,0x3f,0x0,0x52,
0x0,0x47,0x0,0x5d,0x0,0x65,0x0,0x77,0x0,0x88,0x0,0x8e,0x0,0x96,0x0,0x8f,
0x0,0x83,0x0,0x77,0x0,0x56,0x0,0x47,0x0,0x25,0x0,0x17,0x0,0xd,0x0,0x5,
0x0,0x17,0x0,0x15,0x0,0x33,0x0,0x35,0x0,0x43,0x0,0x46,0x0,0x33,0x0,0x30,
0x0,0x7,0x0,0xfb,0xff,0xd9,0xff,0xc9,0xff,0xc8,0xff,0xb7,0xff,0xd9,0xff,0xcc,
0xff,0xf5,0xff,0xee,0xff,0xfc,0xff,0xf4,0xff,0xd6,0xff,0xc9,0xff,0x92,0xff,0x83,
0xff,0x56,0xff,0x4a,0xff,0x44,0xff,0x41,0xff,0x65,0xff,0x6c,0xff,0x9f,0xff,0xa5,
0xff,0xc1,0xff,0xbf,0xff,0xb8,0xff,0xab,0xff,0x8f,0xff,0x7b,0xff,0x62,0xff,0x54,
0xff,0x4e,0xff,0x53,0xff,0x5c,0xff,0x6f,0xff,0x78,0xff,0x90,0xff,0x8c,0xff,0xa0,
0xff,0x95,0xff,0x9c,0xff,0x9f,0xff,0x9e,0xff,0xbb,0xff,0xbe,0xff,0xed,0xff,0xf8,
0xff,0x22,0x0,0x30,0x0,0x41,0x0,0x4c,0x0,0x3a,0x0,0x3d,0x0,0x17,0x0,0x16,
0x0,0xfb,0xff,0xff,0xff,0x1,0x0,0x10,0x0,0x2b,0x0,0x43,0x0,0x69,0x0,0x7f,
0x0,0xa0,0x0,0xaa,0x0,0xc0,0x0,0xb9,0x0,0xca,0x0,0xb6,0x0,0xc4,0x0,0xb0,
0x0,0xb7,0x0,0xad,0x0,0xa9,0x0,0xa9,0x0,0x94,0x0,0x97,0x0,0x75,0x0,0x70,
0x0,0x54,0x0,0x45,0x0,0x3c,0x0,0x2a,0x0,0x39,0x0,0x2a,0x0,0x53,0x0,0x47,
0x0,0x7a,0x0,0x72,0x0,0x8e,0x0,0x86,0x0,0x72,0x0,0x67,0x0,0x25,0x0,0x17,
0x0,0xc1,0xff,0xb6,0xff,0x73,0xff,0x69,0xff,0x59,0xff,0x4d,0xff,0x74,0xff,0x65,
0xff,0xa7,0xff,0x97,0xff,0xca,0xff,0xbf,0xff,0xc8,0xff,0xc8,0xff,0xa8,0xff,0xaf,
0xff,0x82,0xff,0x8a,0xff,0x6c,0xff,0x70,0xff,0x6c,0xff,0x6a,0xff,0x75,0xff,0x71,
0xff,0x78,0xff,0x7b,0xff,0x70,0xff,0x7c,0xff,0x67,0xff,0x7a,0xff,0x68,0xff,0x7e,
0xff,0x7a,0xff,0x8a,0xff,0x9b,0xff,0xa2,0xff,0xc2,0xff,0xc4,0xff,0xdf,0xff,0xe4,
0xff,0xed,0xff,0xf7,0xff,0xec,0xff,0xfa,0xff,0xe0,0xff,0xec,0xff,0xd6,0xff,0xda,
0xff,0xd9,0xff,0xd6,0xff,0xf0,0xff,0xec,0xff,0x17,0x0,0x1c,0x0,0x45,0x0,0x50,
0x0,0x68,0x0,0x71,0x0,0x75,0x0,0x76,0x0,0x68,0x0,0x62,0x0,0x51,0x0,0x47,
0x0,0x44,0x0,0x40,0x0,0x53,0x0,0x56,0x0,0x79,0x0,0x7d,0x0,0xa3,0x0,0xa3,
0x0,0xba,0x0,0xb2,0x0,0xb1,0x0,0xa3,0x0,0x8d,0x0,0x83,0x0,0x63,0x0,0x62,
0x0,0x47,0x0,0x4a,0x0,0x40,0x0,0x43,0x0,0x45,0x0,0x45,0x0,0x4c,0x0,0x43,
0x0,0x4b,0x0,0x38,0x0,0x3e,0x0,0x29,0x0,0x29,0x0,0x16,0x0,0x13,0x0,0x3,
0x0,0xfe,0xff,0xf3,0xff,0xe9,0xff,0xe4,0xff,0xd3,0xff,0xd1,0xff,0xb7,0xff,0xb8,
0xff,0x93,0xff,0x97,0xff,0x70,0xff,0x77,0xff,0x60,0xff,0x62,0xff,0x69,0xff,0x61,
0xff,0x83,0xff,0x76,0xff,0xa1,0xff,0x95,0xff,0xb0,0xff,0xab,0xff,0xa0,0xff,0xa7,
0xff,0x7a,0xff,0x88,0xff,0x54,0xff,0x61,0xff,0x45,0xff,0x4a,0xff,0x5a,0xff,0x5a,
0xff,0x93,0xff,0x94,0xff,0xdd,0xff,0xe0,0xff,0x1c,0x0,0x21,0x0,0x3c,0x0,0x42,
0x0,0x3d,0x0,0x3c,0x0,0x2a,0x0,0x23,0x0,0x1a,0x0,0x16,0x0,0x24,0x0,0x27,
0x0,0x45,0x0,0x4c,0x0,0x6d,0x0,0x75,0x0,0x8e,0x0,0x93,0x0,0xa2,0x0,0x9f,
0x0,0xab,0x0,0xa2,0x0,0xb3,0x0,0xaa,0x0,0xbf,0x0,0xb9,0x0,0xcc,0x0,0xc8,
0x0,0xce,0x0,0xcb,0x0,0xbd,0x0,0xbc,0x0,0x9d,0x0,0x9b,0x0,0x7b,0x0,0x7b,
0x0,0x63,0x0,0x68,0x0,0x5d,0x0,0x64,0x0,0x63,0x0,0x66,0x0,0x63,0x0,0x62,
0x0,0x52,0x0,0x4d,0x0,0x32,0x0,0x2c,0x0,0x8,0x0,0x6,0x0,0xdc,0xff,0xdf,
0xff,0xb8,0xff,0xbf,0xff,0xa3,0xff,0xac,0xff,0xa0,0xff,0xa5,0xff,0xa7,0xff,0xa8,
0xff,0xb1,0xff,0xaf,0xff,0xb5,0xff,0xb2,0xff,0xb0,0xff,0xac,0xff,0xa3,0xff,0x9e,
0xff,0x94,0xff,0x8e,0xff,0x87,0xff,0x7f,0xff,0x87,0xff,0x7c,0xff,0x9a,0xff,0x8d,
0xff,0xb9,0xff,0xac,0xff,0xde,0xff,0xd4,0xff,0xff,0xff,0xfd,0xff,0x11,0x0,0x16,
0x0,0x14,0x0,0x1c,0x0,0x12,0x0,0x14,0x0,0x11,0x0,0x5,0x0,0x16,0x0,0x0,
0x0,0x22,0x0,0xe,0x0,0x31,0x0,0x28,0x0,0x3d,0x0,0x42,0x0,0x44,0x0,0x52,
0x0,0x47,0x0,0x51,0x0,0x48,0x0,0x47,0x0,0x47,0x0,0x3e,0x0,0x40,0x0,0x3b,
0x0,0x31,0x0,0x37,0x0,0x1a,0x0,0x2d,0x0,0x3,0x0,0x1c,0x0,0xf7,0xff,0xd,
0x0,0xfc,0xff,0x4,0x0,0x12,0x0,0xa,0x0,0x35,0x0,0x22,0x0,0x50,0x0,0x3b,
0x0,0x57,0x0,0x4b,0x0,0x48,0x0,0x4f,0x0,0x2d,0x0,0x43,0x0,0x13,0x0,0x2b,
0x0,0x2,0x0,0x15,0x0,0xfe,0xff,0xb,0x0,0xa,0x0,0xc,0x0,0x22,0x0,0x1b,
0x0,0x39,0x0,0x32,0x0,0x4d,0x0,0x48,0x0,0x56,0x0,0x57,0x0,0x50,0x0,0x58,
0x0,0x3f,0x0,0x4e,0x0,0x2f,0x0,0x40,0x0,0x22,0x0,0x30,0x0,0x1a,0x0,0x22,
0x0,0x19,0x0,0x19,0x0,0x1a,0x0,0x10,0x0,0x12,0x0,0x0,0x0,0xfe,0xff,0xea,
0xff,0xe9,0xff,0xd8,0xff,0xdf,0xff,0xd3,0xff,0xe7,0xff,0xe0,0xff,0xfb,0xff,0xf6,
0xff,0x2,0x0,0xff,0xff,0xed,0xff,0xea,0xff,0xc3,0xff,0xbe,0xff,0x97,0xff,0x90,
0xff,0x87,0xff,0x7c,0xff,0xa0,0xff,0x92,0xff,0xd8,0xff,0xc7,0xff,0xa,0x0,0xf8,
0xff,0x16,0x0,0xb,0x0,0xfb,0xff,0xf8,0xff,0xd9,0xff,0xd8,0xff,0xcf,0xff,0xcd,
0xff,0xea,0xff,0xe9,0xff,0x21,0x0,0x1f,0x0,0x54,0x0,0x54,0x0,0x65,0x0,0x6b,
0x0,0x5a,0x0,0x5c,0x0,0x45,0x0,0x40,0x0,0x40,0x0,0x37,0x0,0x59,0x0,0x4f,
0x0,0x8d,0x0,0x89,0x0,0xc8,0x0,0xca,0x0,0xe7,0x0,0xec,0x0,0xd3,0x0,0xd7,
0x0,0x8e,0x0,0x8e,0x0,0x32,0x0,0x2d,0x0,0xe7,0xff,0xe3,0xff,0xd9,0xff,0xd8,
0xff,0x16,0x0,0x15,0x0,0x7b,0x0,0x79,0x0,0xc9,0x0,0xc5,0x0,0xbf,0x0,0xb7,
0x0,0x47,0x0,0x43,0x0,0x9c,0xff,0xa0,0xff,0x20,0xff,0x2a,0xff,0x16,0xff,0x20,
0xff,0x76,0xff,0x7b,0xff,0xf9,0xff,0xf5,0xff,0x3d,0x0,0x33,0x0,0x12,0x0,0xa,
0x0,0x99,0xff,0x9b,0xff,0x2c,0xff,0x36,0xff,0xf,0xff,0x1b,0xff,0x4e,0xff,0x53,
0xff,0xb6,0xff,0xb1,0xff,0xff,0xff,0xf8,0xff,0x3,0x0,0x3,0x0,0xd6,0xff,0xe0,
0xff,0xaf,0xff,0xbd,0xff,0xb9,0xff,0xbf,0xff,0xf1,0xff,0xed,0xff,0x38,0x0,0x31,
0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x71,0x0,0x63,0x0,0x60,0x0,0x4e,0x0,0x4a,
0x0,0x4d,0x0,0x48,0x0,0x66,0x0,0x60,0x0,0x90,0x0,0x8b,0x0,0xb3,0x0,0xb1,
0x0,0xbf,0x0,0xbe,0x0,0xb2,0x0,0xad,0x0,0x93,0x0,0x8a,0x0,0x6e,0x0,0x62,
0x0,0x56,0x0,0x49,0x0,0x4e,0x0,0x44,0x0,0x52,0x0,0x4a,0x0,0x59,0x0,0x4e,
0x0,0x53,0x0,0x46,0x0,0x39,0x0,0x2c,0x0,0x10,0x0,0x5,0x0,0xe7,0xff,0xde,
0xff,0xcb,0xff,0xc1,0xff,0xc6,0xff,0xb4,0xff,0xcf,0xff,0xba,0xff,0xda,0xff,0xc7,
0xff,0xd8,0xff,0xcd,0xff,0xc3,0xff,0xc5,0xff,0xa7,0xff,0xb5,0xff,0x96,0xff,0xa6,
0xff,0x9b,0xff,0xa6,0xff,0xb7,0xff,0xba,0xff,0xdc,0xff,0xd8,0xff,0xf0,0xff,0xec,
0xff,0xef,0xff,0xf0,0xff,0xe3,0xff,0xe6,0xff,0xd8,0xff,0xe0,0xff,0xde,0xff,0xec,
0xff,0xfa,0xff,0xb,0x0,0x1f,0x0,0x2e,0x0,0x3c,0x0,0x47,0x0,0x48,0x0,0x4d,
0x0,0x45,0x0,0x45,0x0,0x42,0x0,0x40,0x0,0x47,0x0,0x47,0x0,0x56,0x0,0x54,
0x0,0x67,0x0,0x61,0x0,0x6d,0x0,0x66,0x0,0x63,0x0,0x5e,0x0,0x53,0x0,0x53,
0x0,0x48,0x0,0x4e,0x0,0x43,0x0,0x4b,0x0,0x42,0x0,0x49,0x0,0x43,0x0,0x42,
0x0,0x3e,0x0,0x34,0x0,0x30,0x0,0x21,0x0,0x21,0x0,0xf,0x0,0x16,0x0,0x1,
0x0,0xf,0x0,0xfc,0xff,0xe,0x0,0xfa,0xff,0xe,0x0,0xf9,0xff,0x6,0x0,0xf7,
0xff,0xf7,0xff,0xf1,0xff,0xe9,0xff,0xe6,0xff,0xe1,0xff,0xdf,0xff,0xe3,0xff,0xde,
0xff,0xee,0xff,0xdf,0xff,0xfa,0xff,0xe6,0xff,0xfe,0xff,0xed,0xff,0xf6,0xff,0xee,
0xff,0xe8,0xff,0xe8,0xff,0xde,0xff,0xe6,0xff,0xe2,0xff,0xec,0xff,0xf4,0xff,0xfb,
0xff,0x11,0x0,0x12,0x0,0x2c,0x0,0x29,0x0,0x38,0x0,0x35,0x0,0x31,0x0,0x31,
0x0,0x1f,0x0,0x25,0x0,0x12,0x0,0x1d,0x0,0x19,0x0,0x27,0x0,0x35,0x0,0x44,
0x0,0x5b,0x0,0x6a,0x0,0x77,0x0,0x85,0x0,0x7a,0x0,0x86,0x0,0x67,0x0,0x6f,
0x0,0x4a,0x0,0x4f,0x0,0x38,0x0,0x3d,0x0,0x40,0x0,0x46,0x0,0x5f,0x0,0x64,
0x0,0x7f,0x0,0x80,0x0,0x86,0x0,0x84,0x0,0x6d,0x0,0x6c,0x0,0x3f,0x0,0x44,
0x0,0x15,0x0,0x23,0x0,0x8,0x0,0x18,0x0,0x19,0x0,0x1e,0x0,0x30,0x0,0x25,
0x0,0x3a,0x0,0x23,0x0,0x2c,0x0,0x15,0x0,0x8,0x0,0xfd,0xff,0xe1,0xff,0xe6,
0xff,0xca,0xff,0xd7,0xff,0xc2,0xff,0xcb,0xff,0xc8,0xff,0xc6,0xff,0xd2,0xff,0xca,
0xff,0xd7,0xff,0xd1,0xff,0xd8,0xff,0xd5,0xff,0xd3,0xff,0xd5,0xff,0xc8,0xff,0xc9,
0xff,0xbf,0xff,0xb6,0xff,0xc4,0xff,0xb0,0xff,0xd5,0xff,0xc1,0xff,0xee,0xff,0xe3,
0xff,0x0,0x0,0x3,0x0,0x0,0x0,0xf,0x0,0xf6,0xff,0x5,0x0,0xf1,0xff,0xf8,
0xff,0xfe,0xff,0xfe,0xff,0x24,0x0,0x1f,0x0,0x51,0x0,0x4f,0x0,0x6d,0x0,0x72,
0x0,0x6c,0x0,0x72,0x0,0x54,0x0,0x59,0x0,0x38,0x0,0x43,0x0,0x33,0x0,0x3f,
0x0,0x46,0x0,0x4f,0x0,0x64,0x0,0x68,0x0,0x77,0x0,0x74,0x0,0x71,0x0,0x6d,
0x0,0x59,0x0,0x5a,0x0,0x46,0x0,0x4c,0x0,0x40,0x0,0x4a,0x0,0x43,0x0,0x4e,
0x0,0x48,0x0,0x4c,0x0,0x41,0x0,0x3d,0x0,0x31,0x0,0x25,0x0,0x1f,0x0,0xe,
0x0,0xe,0x0,0x2,0x0,0x5,0x0,0x3,0x0,0x4,0x0,0xa,0x0,0x6,0x0,0x12,
0x0,0xa,0x0,0x17,0x0,0xc,0x0,0xd,0x0,0x4,0x0,0xf6,0xff,0xf3,0xff,0xe0,
0xff,0xe4,0xff,0xd4,0xff,0xde,0xff,0xd5,0xff,0xea,0xff,0xe8,0xff,0x3,0x0,0x5,
0x0,0x1a,0x0,0x1c,0x0,0x24,0x0,0x25,0x0,0x1f,0x0,0x1f,0x0,0x13,0x0,0x12,
0x0,0xc,0x0,0xe,0x0,0x10,0x0,0x16,0x0,0x19,0x0,0x1f,0x0,0x20,0x0,0x22,
0x0,0x1e,0x0,0x1e,0x0,0x12,0x0,0x14,0x0,0x1,0x0,0xb,0x0,0xf7,0xff,0x9,
0x0,0xf9,0xff,0xc,0x0,0x2,0x0,0xa,0x0,0xb,0x0,0x2,0x0,0xf,0x0,0xfc,
0xff,0xd,0x0,0xfb,0xff,0x3,0x0,0xfb,0xff,0xf5,0xff,0xf8,0xff,0xe4,0xff,0xef,
0xff,0xda,0xff,0xe2,0xff,0xe0,0xff,0xda,0xff,0xf4,0xff,0xe2,0xff,0xa,0x0,0xfa,
0xff,0x15,0x0,0x14,0x0,0x19,0x0,0x26,0x0,0x22,0x0,0x2f,0x0,0x37,0x0,0x36,
0x0,0x51,0x0,0x42,0x0,0x62,0x0,0x52,0x0,0x5c,0x0,0x59,0x0,0x40,0x0,0x4e,
0x0,0x25,0x0,0x3b,0x0,0x28,0x0,0x35,0x0,0x4d,0x0,0x4c,0x0,0x81,0x0,0x7a,
0x0,0xa8,0x0,0xa2,0x0,0xa4,0x0,0xa8,0x0,0x74,0x0,0x85,0x0,0x37,0x0,0x4e,
0x0,0xf,0x0,0x25,0x0,0xd,0x0,0x1d,0x0,0x28,0x0,0x2e,0x0,0x45,0x0,0x42,
0x0,0x4f,0x0,0x4c,0x0,0x44,0x0,0x47,0x0,0x31,0x0,0x36,0x0,0x1d,0x0,0x28,
0x0,0xc,0x0,0x1f,0x0,0xff,0xff,0x10,0x0,0xee,0xff,0xf6,0xff,0xd8,0xff,0xd8,
0xff,0xc7,0xff,0xc1,0xff,0xc0,0xff,0xba,0xff,0xbf,0xff,0xc5,0xff,0xc4,0xff,0xd1,
0xff,0xca,0xff,0xd7,0xff,0xd2,0xff,0xd7,0xff,0xdb,0xff,0xd3,0xff,0xde,0xff,0xd4,
0xff,0xd8,0xff,0xd8,0xff,0xc8,0xff,0xd3,0xff,0xb1,0xff,0xc0,0xff,0xa6,0xff,0xae,
0xff,0xb9,0xff,0xb0,0xff,0xe5,0xff,0xd1,0xff,0x13,0x0,0x1,0x0,0x2a,0x0,0x20,
0x0,0x1c,0x0,0x19,0x0,0xf4,0xff,0xed,0xff,0xd1,0xff,0xc3,0xff,0xd4,0xff,0xc4,
0xff,0x7,0x0,0xf6,0xff,0x48,0x0,0x3c,0x0,0x6e,0x0,0x68,0x0,0x64,0x0,0x5b,
0x0,0x32,0x0,0x24,0x0,0x3,0x0,0xf7,0xff,0x6,0x0,0x0,0x0,0x40,0x0,0x47,
0x0,0x8e,0x0,0x9f,0x0,0xbb,0x0,0xc9,0x0,0xa1,0x0,0xa5,0x0,0x4f,0x0,0x4d,
0x0,0x0,0x0,0xfb,0xff,0xe8,0xff,0xe9,0xff,0x15,0x0,0x22,0x0,0x65,0x0,0x78,
0x0,0x9b,0x0,0xac,0x0,0x89,0x0,0x99,0x0,0x39,0x0,0x4a,0x0,0xde,0xff,0xf3,
0xff,0xb6,0xff,0xc7,0xff,0xd3,0xff,0xd6,0xff,0x13,0x0,0xa,0x0,0x42,0x0,0x36,
0x0,0x3a,0x0,0x35,0x0,0xfe,0xff,0x8,0x0,0xb7,0xff,0xcc,0xff,0x8e,0xff,0x9f,
0xff,0x92,0xff,0x95,0xff,0xb8,0xff,0xac,0xff,0xe3,0xff,0xd1,0xff,0xfd,0xff,0xed,
0xff,0xfd,0xff,0xf6,0xff,0xed,0xff,0xf0,0xff,0xdd,0xff,0xe2,0xff,0xd4,0xff,0xd8,
0xff,0xd8,0xff,0xd7,0xff,0xe5,0xff,0xdc,0xff,0xf3,0xff,0xe9,0xff,0xff,0xff,0xf9,
0xff,0xf,0x0,0x9,0x0,0x1e,0x0,0x1a,0x0,0x2a,0x0,0x2d,0x0,0x37,0x0,0x42,
0x0,0x3f,0x0,0x53,0x0,0x43,0x0,0x5c,0x0,0x4a,0x0,0x5e,0x0,0x51,0x0,0x58,
0x0,0x54,0x0,0x4f,0x0,0x4f,0x0,0x46,0x0,0x40,0x0,0x3b,0x0,0x27,0x0,0x2f,
0x0,0xf,0x0,0x22,0x0,0xfe,0xff,0x11,0x0,0xf2,0xff,0xff,0xff,0xe7,0xff,0xef,
0xff,0xdd,0xff,0xdf,0xff,0xda,0xff,0xd5,0xff,0xe3,0xff,0xd8,0xff,0xed,0xff,0xdf,
0xff,0xec,0xff,0xda,0xff,0xd4,0xff,0xc2,0xff,0xa7,0xff,0x98,0xff,0x7c,0xff,0x77,
0xff,0x73,0xff,0x74,0xff,0x94,0xff,0x93,0xff,0xd3,0xff,0xcd,0xff,0x11,0x0,0x4,
0x0,0x2d,0x0,0x16,0x0,0x1e,0x0,0x2,0x0,0xfe,0xff,0xe5,0xff,0xee,0xff,0xdd,
0xff,0xfd,0xff,0xfb,0xff,0x25,0x0,0x36,0x0,0x4e,0x0,0x6a,0x0,0x64,0x0,0x81,
0x0,0x6b,0x0,0x77,0x0,0x6a,0x0,0x5c,0x0,0x65,0x0,0x4c,0x0,0x65,0x0,0x54,
0x0,0x69,0x0,0x6c,0x0,0x70,0x0,0x87,0x0,0x78,0x0,0x9b,0x0,0x7c,0x0,0x9e,
0x0,0x6f,0x0,0x88,0x0,0x3f,0x0,0x4e,0x0,0xf2,0xff,0xfa,0xff,0xad,0xff,0xb2,
0xff,0x9d,0xff,0x9d,0xff,0xca,0xff,0xc6,0xff,0x17,0x0,0x10,0x0,0x42,0x0,0x3a,
0x0,0x14,0x0,0x10,0x0,0x9c,0xff,0x9a,0xff,0x23,0xff,0x1d,0xff,0xf3,0xfe,0xeb,
0xfe,0x22,0xff,0x1e,0xff,0x82,0xff,0x82,0xff,0xcb,0xff,0xcd,0xff,0xd0,0xff,0xcf,
0xff,0x9f,0xff,0x96,0xff,0x73,0xff,0x62,0xff,0x79,0xff,0x66,0xff,0xaa,0xff,0xa0,
0xff,0xde,0xff,0xe3,0xff,0xf5,0xff,0x1,0x0,0xed,0xff,0xf2,0xff,0xe0,0xff,0xdb,
0xff,0xec,0xff,0xe0,0xff,0x11,0x0,0x8,0x0,0x3a,0x0,0x3d,0x0,0x54,0x0,0x64,
0x0,0x62,0x0,0x79,0x0,0x75,0x0,0x8a,0x0,0x8e,0x0,0x9d,0x0,0x9b,0x0,0xa5,
0x0,0x86,0x0,0x8b,0x0,0x49,0x0,0x51,0x0,0xa,0x0,0x15,0x0,0xf7,0xff,0x0,
0x0,0x1d,0x0,0x23,0x0,0x5b,0x0,0x61,0x0,0x7c,0x0,0x7e,0x0,0x5c,0x0,0x58,
0x0,0xb,0x0,0x4,0x0,0xbe,0xff,0xb6,0xff,0xa5,0xff,0x9e,0xff,0xc4,0xff,0xbe,
0xff,0xe9,0xff,0xe5,0xff,0xe4,0xff,0xdf,0xff,0xb2,0xff,0xa6,0xff,0x72,0xff,0x61,
0xff,0x51,0xff,0x3d,0xff,0x66,0xff,0x4f,0xff,0x99,0xff,0x86,0xff,0xc7,0xff,0xbc,
0xff,0xdb,0xff,0xd3,0xff,0xd6,0xff,0xcd,0xff,0xce,0xff,0xc3,0xff,0xd0,0xff,0xcb,
0xff,0xd8,0xff,0xe3,0xff,0xe3,0xff,0xf8,0xff,0xec,0xff,0x0,0x0,0xf4,0xff,0x1,
0x0,0x7,0x0,0x6,0x0,0x21,0x0,0x18,0x0,0x34,0x0,0x36,0x0,0x3d,0x0,0x55,
0x0,0x40,0x0,0x6e,0x0,0x46,0x0,0x7f,0x0,0x54,0x0,0x84,0x0,0x5e,0x0,0x78,
0x0,0x57,0x0,0x5e,0x0,0x3d,0x0,0x3e,0x0,0x21,0x0,0x27,0x0,0x1b,0x0,0x29,
0x0,0x2e,0x0,0x41,0x0,0x43,0x0,0x56,0x0,0x47,0x0,0x4d,0x0,0x29,0x0,0x21,
0x0,0xf4,0xff,0xe8,0xff,0xcb,0xff,0xbe,0xff,0xc0,0xff,0xb2,0xff,0xcd,0xff,0xbd,
0xff,0xdd,0xff,0xcc,0xff,0xdc,0xff,0xca,0xff,0xc2,0xff,0xb3,0xff,0xa3,0xff,0x95,
0xff,0x93,0xff,0x82,0xff,0x9c,0xff,0x87,0xff,0xb3,0xff,0x9d,0xff,0xc9,0xff,0xb7,
0xff,0xd4,0xff,0xcd,0xff,0xd7,0xff,0xda,0xff,0xd5,0xff,0xda,0xff,0xd8,0xff,0xd4,
0xff,0xdf,0xff,0xd0,0xff,0xe6,0xff,0xd2,0xff,0xf4,0xff,0xe2,0xff,0xb,0x0,0x1,
0x0,0x25,0x0,0x27,0x0,0x43,0x0,0x4b,0x0,0x5e,0x0,0x67,0x0,0x6f,0x0,0x78,
0x0,0x76,0x0,0x7a,0x0,0x70,0x0,0x6c,0x0,0x63,0x0,0x54,0x0,0x53,0x0,0x3f,
0x0,0x3f,0x0,0x33,0x0,0x2d,0x0,0x32,0x0,0x24,0x0,0x3a,0x0,0x23,0x0,0x43,
0x0,0x28,0x0,0x43,0x0,0x29,0x0,0x34,0x0,0x18,0x0,0x14,0x0,0xf2,0xff,0xea,
0xff,0xbd,0xff,0xbd,0xff,0x87,0xff,0x95,0xff,0x65,0xff,0x78,0xff,0x5d,0xff,0x6b,
0xff,0x68,0xff,0x74,0xff,0x78,0xff,0x88,0xff,0x79,0xff,0x91,0xff,0x63,0xff,0x85,
0xff,0x46,0xff,0x67,0xff,0x33,0xff,0x46,0xff,0x37,0xff,0x3a,0xff,0x52,0xff,0x4d,
0xff,0x74,0xff,0x71,0xff,0x8e,0xff,0x94,0xff,0x9c,0xff,0xaa,0xff,0xa7,0xff,0xb8,
0xff,0xc4,0xff,0xd4,0xff,0xf6,0xff,0x7,0x0,0x29,0x0,0x36,0x0,0x3e,0x0,0x42,
0x0,0x27,0x0,0x1c,0x0,0x2,0x0,0xe5,0xff,0x9,0x0,0xe4,0xff,0x68,0x0,0x48,
0x0,0x8,0x1,0xf7,0x0,0x95,0x1,0x98,0x1,0xab,0x1,0xb6,0x1,0x2a,0x1,0x26,
0x1,0x56,0x0,0x39,0x0,0xb2,0xff,0x88,0xff,0xa3,0xff,0x7e,0xff,0x26,0x0,0x10,
0x0,0xdb,0x0,0xd0,0x0,0x46,0x1,0x40,0x1,0x20,0x1,0x19,0x1,0x8d,0x0,0x7a,
0x0,0xec,0xff,0xcf,0xff,0x84,0xff,0x6b,0xff,0x63,0xff,0x56,0xff,0x63,0xff,0x61,
0xff,0x4f,0xff,0x57,0xff,0x1f,0xff,0x29,0xff,0xf7,0xfe,0xfe,0xfe,0xf6,0xfe,0xfe,
0xfe,0x21,0xff,0x30,0xff,0x61,0xff,0x75,0xff,0x8b,0xff,0x9d,0xff,0x7c,0xff,0x8d,
0xff,0x3e,0xff,0x51,0xff,0xf7,0xfe,0xa,0xff,0xd0,0xfe,0xe3,0xfe,0xe3,0xfe,0xf8,
0xfe,0x30,0xff,0x4a,0xff,0xa4,0xff,0xc2,0xff,0x22,0x0,0x42,0x0,0x84,0x0,0xa2,
0x0,0xad,0x0,0xc3,0x0,0x94,0x0,0x9c,0x0,0x4c,0x0,0x4a,0x0,0x2,0x0,0x2,
0x0,0xe6,0xff,0xef,0xff,0xf,0x0,0x1b,0x0,0x68,0x0,0x73,0x0,0xc1,0x0,0xc9,
0x0,0xf0,0x0,0xf2,0x0,0xe4,0x0,0xe5,0x0,0xa5,0x0,0xb0,0x0,0x56,0x0,0x67,
0x0,0x19,0x0,0x1e,0x0,0xef,0xff,0xdd,0xff,0xcd,0xff,0xa8,0xff,0xae,0xff,0x88,
0xff,0x98,0xff,0x86,0xff,0x95,0xff,0x9c,0xff,0xa6,0xff,0xb9,0xff,0xbb,0xff,0xc7,
0xff,0xba,0xff,0xb4,0xff,0x94,0xff,0x83,0xff,0x54,0xff,0x47,0xff,0x14,0xff,0x1a,
0xff,0xf7,0xfe,0xb,0xff,0xc,0xff,0x22,0xff,0x4c,0xff,0x57,0xff,0x9f,0xff,0x9d,
0xff,0xe7,0xff,0xdf,0xff,0x9,0x0,0x8,0x0,0x7,0x0,0xc,0x0,0xf6,0xff,0xfd,
0xff,0xec,0xff,0xf2,0xff,0xfb,0xff,0xfe,0xff,0x24,0x0,0x26,0x0,0x5c,0x0,0x5c,
0x0,0x99,0x0,0x94,0x0,0xd4,0x0,0xc5,0x0,0x0,0x1,0xe6,0x0,0x12,0x1,0xf4,
0x0,0x5,0x1,0xef,0x0,0xd5,0x0,0xcb,0x0,0x90,0x0,0x91,0x0,0x50,0x0,0x5a,
0x0,0x2c,0x0,0x36,0x0,0x2d,0x0,0x30,0x0,0x4f,0x0,0x46,0x0,0x6e,0x0,0x5a,
0x0,0x5f,0x0,0x4b,0x0,0x18,0x0,0xd,0x0,0xa1,0xff,0xaa,0xff,0x1e,0xff,0x40,
0xff,0xc5,0xfe,0xf5,0xfe,0xb3,0xfe,0xda,0xfe,0xcd,0xfe,0xe4,0xfe,0xef,0xfe,0xf3,
0xfe,0xf0,0xfe,0xec,0xfe,0xbf,0xfe,0xc9,0xfe,0x7e,0xfe,0x9f,0xfe,0x63,0xfe,0x90,
0xfe,0x88,0xfe,0xb3,0xfe,0xdc,0xfe,0xf7,0xfe,0x32,0xff,0x39,0xff,0x58,0xff,0x5c,
0xff,0x46,0xff,0x50,0xff,0x22,0xff,0x32,0xff,0x21,0xff,0x34,0xff,0x65,0xff,0x70,
0xff,0xe3,0xff,0xe1,0xff,0x6e,0x0,0x65,0x0,0xdb,0x0,0xca,0x0,0x18,0x1,0xfd,
0x0,0x2b,0x1,0xa,0x1,0x29,0x1,0x4,0x1,0x1f,0x1,0xfa,0x0,0xe,0x1,0xef,
0x0,0xfb,0x0,0xe3,0x0,0xfc,0x0,0xe4,0x0,0x21,0x1,0xff,0x0,0x5e,0x1,0x37,
0x1,0x8d,0x1,0x6f,0x1,0x7f,0x1,0x70,0x1,0x16,0x1,0x11,0x1,0x73,0x0,0x73,
0x0,0xe2,0xff,0xdb,0xff,0x9b,0xff,0x8a,0xff,0xa1,0xff,0x92,0xff,0xc6,0xff,0xc4,
0xff,0xc9,0xff,0xd9,0xff,0x8a,0xff,0xaf,0xff,0x28,0xff,0x58,0xff,0xdd,0xfe,0x9,
0xff,0xc7,0xfe,0xe8,0xfe,0xc9,0xfe,0xe2,0xfe,0xb4,0xfe,0xc5,0xfe,0x6e,0xfe,0x81,
0xfe,0x1b,0xfe,0x3a,0xfe,0x5,0xfe,0x30,0xfe,0x5e,0xfe,0x8f,0xfe,0xc,0xff,0x3d,
0xff,0xc0,0xff,0xe7,0xff,0x1d,0x0,0x31,0x0,0xfd,0xff,0x0,0x0,0x94,0xff,0x91,
0xff,0x43,0xff,0x41,0xff,0x4e,0xff,0x4f,0xff,0xbd,0xff,0xbc,0xff,0x5f,0x0,0x55,
0x0,0xee,0x0,0xd9,0x0,0x38,0x1,0x1c,0x1,0x39,0x1,0x1c,0x1,0xd,0x1,0xf7,
0x0,0xdd,0x0,0xcb,0x0,0xbe,0x0,0xaa,0x0,0xb1,0x0,0x99,0x0,0xaa,0x0,0x92,
0x0,0x9f,0x0,0x85,0x0,0x8b,0x0,0x6c,0x0,0x6d,0x0,0x48,0x0,0x44,0x0,0x20,
0x0,0xa,0x0,0xf7,0xff,0xc3,0xff,0xc8,0xff,0x7b,0xff,0x92,0xff,0x3b,0xff,0x54,
0xff,0xb,0xff,0x17,0xff,0xef,0xfe,0xec,0xfe,0xe2,0xfe,0xdb,0xfe,0xd9,0xfe,0xd9,
0xfe,0xca,0xfe,0xda,0xfe,0xb0,0xfe,0xce,0xfe,0x96,0xfe,0xb4,0xfe,0x90,0xfe,0xa1,
0xfe,0x9e,0xfe,0xa4,0xfe,0xbc,0xfe,0xc7,0xfe,0xf6,0xfe,0xe,0xff,0x54,0xff,0x77,
0xff,0xcf,0xff,0xf3,0xff,0x52,0x0,0x6e,0x0,0xb2,0x0,0xc1,0x0,0xc8,0x0,0xd1,
0x0,0x9a,0x0,0xa5,0x0,0x61,0x0,0x6d,0x0,0x72,0x0,0x7b,0x0,0xff,0x0,0x5,
0x1,0xea,0x1,0xea,0x1,0xc6,0x2,0xc3,0x2,0x12,0x3,0x12,0x3,0x9a,0x2,0x9d,
0x2,0xa9,0x1,0xaa,0x1,0xca,0x0,0xc4,0x0,0x66,0x0,0x58,0x0,0x8b,0x0,0x7d,
0x0,0xed,0x0,0xe3,0x0,0x1f,0x1,0x15,0x1,0xe5,0x0,0xd4,0x0,0x4b,0x0,0x30,
0x0,0x8c,0xff,0x6e,0xff,0xe3,0xfe,0xd2,0xfe,0x67,0xfe,0x65,0xfe,0xa,0xfe,0x13,
0xfe,0xc1,0xfd,0xcc,0xfd,0x8c,0xfd,0x8a,0xfd,0x6f,0xfd,0x62,0xfd,0x70,0xfd,0x68,
0xfd,0x88,0xfd,0x89,0xfd,0xa3,0xfd,0xae,0xfd,0xb5,0xfd,0xc5,0xfd,0xbe,0xfd,0xc7,
0xfd,0xc6,0xfd,0xc9,0xfd,0xde,0xfd,0xe7,0xfd,0x1c,0xfe,0x2c,0xfe,0x89,0xfe,0xa0,
0xfe,0x21,0xff,0x3c,0xff,0xcf,0xff,0xe2,0xff,0x6c,0x0,0x73,0x0,0xd7,0x0,0xd4,
0x0,0xb,0x1,0x3,0x1,0x26,0x1,0x26,0x1,0x60,0x1,0x6b,0x1,0xd3,0x1,0xe5,
0x1,0x64,0x2,0x75,0x2,0xd6,0x2,0xde,0x2,0xf3,0x2,0xed,0x2,0xba,0x2,0xa6,
0x2,0x63,0x2,0x40,0x2,0x21,0x2,0xf8,0x1,0x1,0x2,0xdf,0x1,0xe9,0x1,0xd8,
0x1,0xb1,0x1,0xb1,0x1,0x49,0x1,0x53,0x1,0xd4,0x0,0xdb,0x0,0x7c,0x0,0x75,
0x0,0x42,0x0,0x2d,0x0,0xff,0xff,0xe5,0xff,0x82,0xff,0x6b,0xff,0xc2,0xfe,0xb3,
0xfe,0xf5,0xfd,0xf2,0xfd,0x70,0xfd,0x73,0xfd,0x5e,0xfd,0x5c,0xfd,0x9d,0xfd,0x9a,
0xfd,0xe4,0xfd,0xea,0xfd,0xf9,0xfd,0x9,0xfe,0xd7,0xfd,0xe9,0xfd,0xa9,0xfd,0xb7,
0xfd,0x9c,0xfd,0xa6,0xfd,0xb9,0xfd,0xc2,0xfd,0xef,0xfd,0xfe,0xfd,0x37,0xfe,0x52,
0xfe,0x99,0xfe,0xb9,0xfe,0x23,0xff,0x3a,0xff,0xce,0xff,0xdf,0xff,0x79,0x0,0x85,
0x0,0xed,0x0,0xfa,0x0,0x11,0x1,0x28,0x1,0x6,0x1,0x24,0x1,0x8,0x1,0x21,
0x1,0x40,0x1,0x4e,0x1,0xa7,0x1,0xa8,0x1,0xd,0x2,0x4,0x2,0x3f,0x2,0x33,
0x2,0x2e,0x2,0x28,0x2,0xf6,0x1,0xf9,0x1,0xc4,0x1,0xca,0x1,0xa1,0x1,0xa1,
0x1,0x71,0x1,0x67,0x1,0x17,0x1,0x0,0x1,0x94,0x0,0x77,0x0,0x17,0x0,0xf8,
0xff,0xd2,0xff,0xaf,0xff,0xcb,0xff,0xa9,0xff,0xd2,0xff,0xb9,0xff,0xa6,0xff,0x95,
0xff,0x27,0xff,0x1a,0xff,0x7a,0xfe,0x72,0xfe,0xf7,0xfd,0xf1,0xfd,0xda,0xfd,0xda,
0xfd,0x23,0xfe,0x2a,0xfe,0x93,0xfe,0x9f,0xfe,0xda,0xfe,0xea,0xfe,0xd5,0xfe,0xe3,
0xfe,0xa5,0xfe,0xaa,0xfe,0x84,0xfe,0x81,0xfe,0x98,0xfe,0x93,0xfe,0xe1,0xfe,0xdf,
0xfe,0x41,0xff,0x48,0xff,0x97,0xff,0xad,0xff,0xdb,0xff,0x1,0x0,0x18,0x0,0x46,
0x0,0x5d,0x0,0x87,0x0,0xaa,0x0,0xc9,0x0,0xf4,0x0,0x2,0x1,0x29,0x1,0x28,
0x1,0x32,0x1,0x30,0x1,0x14,0x1,0x17,0x1,0xe5,0x0,0xe8,0x0,0xbb,0x0,0xbe,
0x0,0xb3,0x0,0xb1,0x0,0xdd,0x0,0xd7,0x0,0x24,0x1,0x21,0x1,0x59,0x1,0x59,
0x1,0x49,0x1,0x47,0x1,0xdd,0x0,0xd2,0x0,0x31,0x0,0x1e,0x0,0x8c,0xff,0x79,
0xff,0x31,0xff,0x27,0xff,0x33,0xff,0x36,0xff,0x6f,0xff,0x7a,0xff,0xa1,0xff,0xa6,
0xff,0x96,0xff,0x92,0xff,0x56,0xff,0x49,0xff,0x10,0xff,0x1,0xff,0xef,0xfe,0xeb,
0xfe,0x1,0xff,0xa,0xff,0x2a,0xff,0x38,0xff,0x3c,0xff,0x4b,0xff,0x2d,0xff,0x40,
0xff,0x1e,0xff,0x3c,0xff,0x3d,0xff,0x65,0xff,0x9b,0xff,0xc0,0xff,0x1d,0x0,0x33,
0x0,0x8d,0x0,0x91,0x0,0xbc,0x0,0xb5,0x0,0xa7,0x0,0xa0,0x0,0x6c,0x0,0x73,
0x0,0x36,0x0,0x50,0x0,0x2a,0x0,0x4a,0x0,0x4f,0x0,0x65,0x0,0x92,0x0,0x9c,
0x0,0xe0,0x0,0xda,0x0,0x17,0x1,0xfd,0x0,0xc,0x1,0xf0,0x0,0xbd,0x0,0xaa,
0x0,0x43,0x0,0x34,0x0,0xc5,0xff,0xb8,0xff,0x70,0xff,0x61,0xff,0x56,0xff,0x3c,
0xff,0x60,0xff,0x3f,0xff,0x6b,0xff,0x50,0xff,0x59,0xff,0x48,0xff,0x22,0xff,0x1c,
0xff,0xdf,0xfe,0xe3,0xfe,0xb1,0xfe,0xb2,0xfe,0xa9,0xfe,0x99,0xfe,0xbf,0xfe,0xa3,
0xfe,0xde,0xfe,0xc3,0xfe,0xf3,0xfe,0xe4,0xfe,0xf5,0xfe,0x0,0xff,0xf9,0xfe,0x1b,
0xff,0x24,0xff,0x47,0xff,0x83,0xff,0xa0,0xff,0xf,0x0,0x24,0x0,0xa6,0x0,0xaf,
0x0,0xb,0x1,0xe,0x1,0x1b,0x1,0x25,0x1,0xef,0x0,0x3,0x1,0xbc,0x0,0xdc,
0x0,0xc3,0x0,0xea,0x0,0x22,0x1,0x47,0x1,0xb3,0x1,0xcd,0x1,0x2a,0x2,0x39,
0x2,0x4b,0x2,0x56,0x2,0xfd,0x1,0x9,0x2,0x63,0x1,0x72,0x1,0xc9,0x0,0xd7,
0x0,0x5e,0x0,0x68,0x0,0x2c,0x0,0x35,0x0,0x29,0x0,0x2e,0x0,0x2b,0x0,0x28,
0x0,0xc,0x0,0x4,0x0,0xc8,0xff,0xbe,0xff,0x6a,0xff,0x5a,0xff,0x5,0xff,0xeb,
0xfe,0xa6,0xfe,0x88,0xfe,0x56,0xfe,0x3a,0xfe,0x1b,0xfe,0x5,0xfe,0xf9,0xfd,0xe9,
0xfd,0xf0,0xfd,0xe1,0xfd,0xff,0xfd,0xed,0xfd,0x20,0xfe,0xc,0xfe,0x4e,0xfe,0x3c,
0xfe,0x87,0xfe,0x7a,0xfe,0xc4,0xfe,0xbe,0xfe,0x6,0xff,0x7,0xff,0x47,0xff,0x47,
0xff,0x7c,0xff,0x75,0xff,0xa9,0xff,0xa0,0xff,0xd3,0xff,0xd3,0xff,0x2,0x0,0x14,
0x0,0x51,0x0,0x72,0x0,0xbe,0x0,0xdf,0x0,0x22,0x1,0x39,0x1,0x5d,0x1,0x6c,
0x1,0x56,0x1,0x65,0x1,0x1b,0x1,0x32,0x1,0xe6,0x0,0x5,0x1,0xdf,0x0,0xfc,
0x0,0xff,0x0,0x13,0x1,0x21,0x1,0x28,0x1,0xd,0x1,0x7,0x1,0xac,0x0,0xa7,
0x0,0x2d,0x0,0x32,0x0,0xd1,0xff,0xe5,0xff,0xbc,0xff,0xda,0xff,0xd6,0xff,0xec,
0xff,0xd6,0xff,0xdd,0xff,0x96,0xff,0x93,0xff,0x36,0xff,0x2f,0xff,0x1,0xff,0xff,
0xfe,0x36,0xff,0x33,0xff,0xa8,0xff,0x9c,0xff,0xe1,0xff,0xd6,0xff,0x97,0xff,0x94,
0xff,0xeb,0xfe,0xee,0xfe,0x82,0xfe,0x8f,0xfe,0xa,0xff,0x16,0xff,0x6d,0x0,0x76,
0x0,0xea,0x1,0xf9,0x1,0x9e,0x2,0xa8,0x2,0x10,0x2,0xc,0x2,0xc7,0x0,0xb8,
0x0,0xd9,0xff,0xbb,0xff,0xe1,0xff,0xc3,0xff,0xc0,0x0,0xb3,0x0,0xbd,0x1,0xc5,
0x1,0xff,0x1,0x1f,0x2,0x5f,0x1,0x8a,0x1,0x74,0x0,0x87,0x0,0xe3,0xff,0xd1,
0xff,0xee,0xff,0xbe,0xff,0x35,0x0,0xfa,0xff,0xa,0x0,0xe2,0xff,0x25,0xff,0x1b,
0xff,0xe1,0xfd,0xed,0xfd,0xed,0xfc,0xff,0xfc,0xc8,0xfc,0xcc,0xfc,0x5d,0xfd,0x4f,
0xfd,0x21,0xfe,0xc,0xfe,0x81,0xfe,0x6b,0xfe,0x3a,0xfe,0x2c,0xfe,0x8e,0xfd,0x8c,
0xfd,0xfc,0xfc,0x4,0xfd,0xe6,0xfc,0xf4,0xfc,0x61,0xfd,0x6f,0xfd,0x33,0xfe,0x3f,
0xfe,0xb,0xff,0x20,0xff,0xbb,0xff,0xd6,0xff,0x37,0x0,0x51,0x0,0x94,0x0,0xb1,
0x0,0xf6,0x0,0x11,0x1,0x67,0x1,0x7f,0x1,0xe0,0x1,0xf9,0x1,0x4e,0x2,0x67,
0x2,0x9d,0x2,0xb5,0x2,0xcb,0x2,0xe5,0x2,0xec,0x2,0x9,0x3,0x11,0x3,0x35,
0x3,0x3f,0x3,0x6b,0x3,0x5d,0x3,0x89,0x3,0x40,0x3,0x62,0x3,0xd0,0x2,0xdb,
0x2,0x1c,0x2,0xc,0x2,0x5a,0x1,0x3e,0x1,0xc2,0x0,0xab,0x0,0x62,0x0,0x56,
0x0,0x1e,0x0,0x20,0x0,0xc8,0xff,0xcc,0xff,0x3a,0xff,0x33,0xff,0x80,0xfe,0x70,
0xfe,0xce,0xfd,0xb9,0xfd,0x4c,0xfd,0x33,0xfd,0x0,0xfd,0xe7,0xfc,0xdc,0xfc,0xc0,
0xfc,0xd0,0xfc,0xa8,0xfc,0xe0,0xfc,0xaa,0xfc,0x10,0xfd,0xd4,0xfc,0x51,0xfd,0x20,
0xfd,0x8e,0xfd,0x75,0xfd,0xbe,0xfd,0xc0,0xfd,0xec,0xfd,0xfd,0xfd,0x35,0xfe,0x41,
0xfe,0xb5,0xfe,0xb1,0xfe,0x6a,0xff,0x56,0xff,0x28,0x0,0xd,0x0,0xbf,0x0,0xad,
0x0,0x1b,0x1,0x1e,0x1,0x4b,0x1,0x60,0x1,0x71,0x1,0x8f,0x1,0xa2,0x1,0xbf,
0x1,0xdc,0x1,0xf0,0x1,0xb,0x2,0x1c,0x2,0x1b,0x2,0x34,0x2,0xb,0x2,0x28,
0x2,0xe6,0x1,0x3,0x2,0xbc,0x1,0xd5,0x1,0x8d,0x1,0x99,0x1,0x4c,0x1,0x50,
0x1,0xf4,0x0,0xfd,0x0,0x85,0x0,0x91,0x0,0x5,0x0,0x12,0x0,0x8c,0xff,0x9c,
0xff,0x35,0xff,0x3f,0xff,0x8,0xff,0x6,0xff,0xfb,0xfe,0xf5,0xfe,0xfa,0xfe,0xee,
0xfe,0xeb,0xfe,0xd4,0xfe,0xc5,0xfe,0xa6,0xfe,0x89,0xfe,0x6e,0xfe,0x4d,0xfe,0x46,
0xfe,0x37,0xfe,0x46,0xfe,0x5c,0xfe,0x79,0xfe,0xbc,0xfe,0xd4,0xfe,0x3d,0xff,0x3d,
0xff,0xb2,0xff,0x97,0xff,0xf8,0xff,0xd5,0xff,0x16,0x0,0x1,0x0,0x29,0x0,0x2b,
0x0,0x52,0x0,0x61,0x0,0x9b,0x0,0xa7,0x0,0xea,0x0,0xed,0x0,0x26,0x1,0x1c,
0x1,0x41,0x1,0x32,0x1,0x3e,0x1,0x3c,0x1,0x31,0x1,0x41,0x1,0x28,0x1,0x3f,
0x1,0x1b,0x1,0x2c,0x1,0xf5,0x0,0xf8,0x0,0xad,0x0,0xa5,0x0,0x52,0x0,0x4e,
0x0,0x3,0x0,0x6,0x0,0xd2,0xff,0xd6,0xff,0xb4,0xff,0xb2,0xff,0x86,0xff,0x79,
0xff,0x33,0xff,0x20,0xff,0xd2,0xfe,0xc2,0xfe,0x8f,0xfe,0x82,0xfe,0x79,0xfe,0x6b,
0xfe,0x81,0xfe,0x72,0xfe,0x8a,0xfe,0x7e,0xfe,0x7e,0xfe,0x78,0xfe,0x68,0xfe,0x64,
0xfe,0x71,0xfe,0x65,0xfe,0xb3,0xfe,0x9d,0xfe,0x1f,0xff,0x5,0xff,0x8a,0xff,0x74,
0xff,0xc9,0xff,0xc1,0xff,0xd3,0xff,0xd8,0xff,0xcf,0xff,0xd1,0xff,0xe8,0xff,0xe2,
0xff,0x2b,0x0,0x24,0x0,0x8a,0x0,0x83,0x0,0xd8,0x0,0xdc,0x0,0xf4,0x0,0xd,
0x1,0xeb,0x0,0x11,0x1,0xe3,0x0,0xe,0x1,0xf5,0x0,0x22,0x1,0x18,0x1,0x41,
0x1,0x28,0x1,0x4e,0x1,0x6,0x1,0x29,0x1,0xb8,0x0,0xcd,0x0,0x65,0x0,0x6b,
0x0,0x3b,0x0,0x38,0x0,0x43,0x0,0x3f,0x0,0x59,0x0,0x67,0x0,0x57,0x0,0x78,
0x0,0x25,0x0,0x47,0x0,0xcb,0xff,0xe2,0xff,0x73,0xff,0x77,0xff,0x3a,0xff,0x2e,
0xff,0x1c,0xff,0xd,0xff,0x8,0xff,0xfa,0xfe,0xf3,0xfe,0xe1,0xfe,0xe4,0xfe,0xc9,
0xfe,0xf2,0xfe,0xc8,0xfe,0x25,0xff,0xf3,0xfe,0x69,0xff,0x3e,0xff,0x9d,0xff,0x82,
0xff,0xa9,0xff,0x96,0xff,0x87,0xff,0x70,0xff,0x4e,0xff,0x33,0xff,0x2b,0xff,0x12,
0xff,0x3f,0xff,0x25,0xff,0x80,0xff,0x62,0xff,0xd5,0xff,0xb4,0xff,0x1a,0x0,0xfc,
0xff,0x35,0x0,0x26,0x0,0x2e,0x0,0x34,0x0,0x1e,0x0,0x31,0x0,0x9,0x0,0x20,
0x0,0xf2,0xff,0x0,0x0,0xdb,0xff,0xde,0xff,0xc5,0xff,0xc5,0xff,0xb9,0xff,0xbc,
0xff,0xbc,0xff,0xce,0xff,0xd0,0xff,0xf5,0xff,0xf2,0xff,0x1c,0x0,0x11,0x0,0x2f,
0x0,0x17,0x0,0x22,0x0,0xff,0xff,0xfb,0xff,0xd0,0xff,0xcf,0xff,0xa1,0xff,0xad,
0xff,0x89,0xff,0x9f,0xff,0x92,0xff,0xa9,0xff,0xba,0xff,0xc5,0xff,0xed,0xff,0xec,
0xff,0x13,0x0,0x10,0x0,0x23,0x0,0x23,0x0,0x1d,0x0,0x20,0x0,0x5,0x0,0xd,
0x0,0xea,0xff,0xee,0xff,0xd6,0xff,0xd4,0xff,0xcf,0xff,0xca,0xff,0xd9,0xff,0xcd,
0xff,0xec,0xff,0xdd,0xff,0xfb,0xff,0xf0,0xff,0x5,0x0,0xf8,0xff,0x6,0x0,0xf7,
0xff,0xfb,0xff,0xf2,0xff,0xec,0xff,0xea,0xff,0xe3,0xff,0xe2,0xff,0xe7,0xff,0xdd,
0xff,0xf4,0xff,0xe1,0xff,0xf3,0xff,0xe4,0xff,0xd5,0xff,0xd3,0xff,0xa3,0xff,0xa6,
0xff,0x7c,0xff,0x73,0xff,0x75,0xff,0x59,0xff,0x8e,0xff,0x63,0xff,0xa6,0xff,0x81,
0xff,0x9b,0xff,0x93,0xff,0x6f,0xff,0x85,0xff,0x4d,0xff,0x67,0xff,0x61,0xff,0x65,
0xff,0xae,0xff,0x94,0xff,0x2,0x0,0xda,0xff,0x1c,0x0,0x0,0x0,0xe1,0xff,0xdb,
0xff,0x7d,0xff,0x83,0xff,0x3f,0xff,0x43,0xff,0x5f,0xff,0x55,0xff,0xc9,0xff,0xb8,
0xff,0x34,0x0,0x31,0x0,0x5c,0x0,0x70,0x0,0x40,0x0,0x5b,0x0,0x16,0x0,0x21,
0x0,0x13,0x0,0x5,0x0,0x35,0x0,0x18,0x0,0x42,0x0,0x29,0x0,0x2,0x0,0xfe,
0xff,0x81,0xff,0x95,0xff,0xc,0xff,0x2a,0xff,0xf9,0xfe,0x11,0xff,0x56,0xff,0x66,
0xff,0xde,0xff,0xe8,0xff,0x29,0x0,0x39,0x0,0xf9,0xff,0x12,0x0,0x72,0xff,0x83,
0xff,0xf2,0xfe,0xf5,0xfe,0xb3,0xfe,0xae,0xfe,0xb4,0xfe,0xb0,0xfe,0xcf,0xfe,0xde,
0xfe,0xe2,0xfe,0x3,0xff,0xfc,0xfe,0x18,0xff,0x38,0xff,0x49,0xff,0x96,0xff,0x9b,
0xff,0xfb,0xff,0xf1,0xff,0x35,0x0,0x26,0x0,0x29,0x0,0x20,0x0,0x10,0x0,0x7,
0x0,0x1c,0x0,0x18,0x0,0x47,0x0,0x47,0x0,0x72,0x0,0x6b,0x0,0x64,0x0,0x59,
0x0,0x1d,0x0,0x15,0x0,0x1a,0x0,0x12,0x0,0xcc,0x0,0xc5,0x0,0x25,0x2,0x1a,
0x2,0x79,0x3,0x66,0x3,0xba,0x3,0xa4,0x3,0x73,0x2,0x5c,0x2,0x5c,0x0,0x3e,
0x0,0xa0,0xfe,0x83,0xfe,0x24,0xfe,0x10,0xfe,0xe,0xff,0x2,0xff,0x8b,0x0,0x8b,
0x0,0x81,0x1,0x85,0x1,0x46,0x1,0x49,0x1,0xf7,0xff,0xfe,0xff,0x67,0xfe,0x6f,
0xfe,0x64,0xfd,0x69,0xfd,0x1d,0xfd,0x1e,0xfd,0x49,0xfd,0x42,0xfd,0x6f,0xfd,0x65,
0xfd,0x56,0xfd,0x56,0xfd,0x34,0xfd,0x40,0xfd,0x58,0xfd,0x6c,0xfd,0xd9,0xfd,0xee,
0xfd,0x85,0xfe,0x92,0xfe,0xf3,0xfe,0xf1,0xfe,0xe1,0xfe,0xd5,0xfe,0x7d,0xfe,0x71,
0xfe,0x32,0xfe,0x2e,0xfe,0x68,0xfe,0x66,0xfe,0x3c,0xff,0x35,0xff,0x5d,0x0,0x53,
0x0,0x4e,0x1,0x46,0x1,0xc1,0x1,0xbf,0x1,0xbe,0x1,0xbf,0x1,0x91,0x1,0x8e,
0x1,0x85,0x1,0x7f,0x1,0xb5,0x1,0xad,0x1,0xff,0x1,0xf7,0x1,0x25,0x2,0x26,
0x2,0xd,0x2,0x14,0x2,0xd2,0x1,0xd4,0x1,0x92,0x1,0x96,0x1,0x66,0x1,0x70,
0x1,0x44,0x1,0x51,0x1,0x1,0x1,0x10,0x1,0x7b,0x0,0x86,0x0,0xc1,0xff,0xbf,
0xff,0x8,0xff,0xff,0xfe,0x90,0xfe,0x8a,0xfe,0x75,0xfe,0x7c,0xfe,0x91,0xfe,0xb0,
0xfe,0x97,0xfe,0xc6,0xfe,0x4e,0xfe,0x7b,0xfe,0xbd,0xfd,0xd9,0xfd,0x24,0xfd,0x2a,
0xfd,0xd7,0xfc,0xcf,0xfc,0x8,0xfd,0x1,0xfd,0xa4,0xfd,0xa3,0xfd,0x6d,0xfe,0x72,
0xfe,0x1e,0xff,0x20,0xff,0x82,0xff,0x7f,0xff,0x9f,0xff,0x9c,0xff,0xa0,0xff,0x9e,
0xff,0xae,0xff,0x9b,0xff,0xd8,0xff,0xae,0xff,0x1f,0x0,0xe8,0xff,0x7c,0x0,0x46,
0x0,0xe9,0x0,0xc4,0x0,0x5c,0x1,0x52,0x1,0xc0,0x1,0xc7,0x1,0xff,0x1,0x1,
0x2,0x2,0x2,0xf2,0x1,0xba,0x1,0x96,0x1,0x2f,0x1,0x9,0x1,0x88,0x0,0x7b,
0x0,0x2,0x0,0x10,0x0,0xcb,0xff,0xe7,0xff,0xdd,0xff,0x1,0x0,0x4,0x0,0x2a,
0x0,0xf9,0xff,0x1e,0x0,0x93,0xff,0xb7,0xff,0xe2,0xfe,0x5,0xff,0x24,0xfe,0x44,
0xfe,0x9b,0xfd,0xc0,0xfd,0x6f,0xfd,0x98,0xfd,0x99,0xfd,0xc1,0xfd,0xfa,0xfd,0x1b,
0xfe,0x60,0xfe,0x71,0xfe,0x9c,0xfe,0x9b,0xfe,0xa1,0xfe,0x9e,0xfe,0x85,0xfe,0x8f,
0xfe,0x7b,0xfe,0x8f,0xfe,0xb1,0xfe,0xc2,0xfe,0x31,0xff,0x2e,0xff,0xe1,0xff,0xc2,
0xff,0x94,0x0,0x5c,0x0,0x18,0x1,0xda,0x0,0x54,0x1,0x29,0x1,0x61,0x1,0x4d,
0x1,0x67,0x1,0x5e,0x1,0x83,0x1,0x78,0x1,0xad,0x1,0x9a,0x1,0xcb,0x1,0xae,
0x1,0xc7,0x1,0xa8,0x1,0xa0,0x1,0x83,0x1,0x5f,0x1,0x45,0x1,0x16,0x1,0x6,
0x1,0xce,0x0,0xcd,0x0,0x7f,0x0,0x90,0x0,0x22,0x0,0x45,0x0,0xba,0xff,0xe7,
0xff,0x4e,0xff,0x79,0xff,0xe7,0xfe,0x14,0xff,0x93,0xfe,0xc1,0xfe,0x56,0xfe,0x79,
0xfe,0x23,0xfe,0x39,0xfe,0xf3,0xfd,0xfe,0xfd,0xcd,0xfd,0xcd,0xfd,0xb5,0xfd,0xb9,
0xfd,0xb1,0xfd,0xc8,0xfd,0xc5,0xfd,0xe8,0xfd,0xe8,0xfd,0xb,0xfe,0x1b,0xfe,0x2a,
0xfe,0x60,0xfe,0x49,0xfe,0xa5,0xfe,0x72,0xfe,0xe3,0xfe,0xb0,0xfe,0x22,0xff,0x6,
0xff,0x66,0xff,0x6a,0xff,0xb8,0xff,0xd0,0xff,0x2a,0x0,0x35,0x0,0xae,0x0,0x9d,
0x0,0x24,0x1,0x1,0x1,0x71,0x1,0x4b,0x1,0x85,0x1,0x69,0x1,0x6b,0x1,0x5b,
0x1,0x41,0x1,0x34,0x1,0x23,0x1,0x14,0x1,0x1b,0x1,0xc,0x1,0x1a,0x1,0x13,
0x1,0xd,0x1,0x15,0x1,0xf0,0x0,0x6,0x1,0xcf,0x0,0xe9,0x0,0xae,0x0,0xc3,
0x0,0x7c,0x0,0x8a,0x0,0x21,0x0,0x31,0x0,0x9d,0xff,0xb6,0xff,0x15,0xff,0x32,
0xff,0xba,0xfe,0xd0,0xfe,0xa2,0xfe,0xa9,0xfe,0xbd,0xfe,0xbd,0xfe,0xd9,0xfe,0xe9,
0xfe,0xd6,0xfe,0xfa,0xfe,0xae,0xfe,0xd8,0xfe,0x7b,0xfe,0x98,0xfe,0x63,0xfe,0x5f,
0xfe,0x6f,0xfe,0x46,0xfe,0x7e,0xfe,0x45,0xfe,0x73,0xfe,0x41,0xfe,0x56,0xfe,0x36,
0xfe,0x51,0xfe,0x46,0xfe,0x96,0xfe,0x91,0xfe,0x28,0xff,0x1b,0xff,0xda,0xff,0xc4,
0xff,0x6c,0x0,0x55,0x0,0xa6,0x0,0x95,0x0,0x80,0x0,0x7a,0x0,0x33,0x0,0x29,
0x0,0xf9,0xff,0xe2,0xff,0xf6,0xff,0xdd,0xff,0x32,0x0,0x2a,0x0,0x92,0x0,0xa1,
0x0,0xe9,0x0,0xd,0x1,0x18,0x1,0x49,0x1,0x17,0x1,0x41,0x1,0xf2,0x0,0x6,
0x1,0xb9,0x0,0xb8,0x0,0x75,0x0,0x70,0x0,0x31,0x0,0x30,0x0,0xea,0xff,0xf1,
0xff,0xa9,0xff,0xb6,0xff,0x84,0xff,0x93,0xff,0x8d,0xff,0xa0,0xff,0xc3,0xff,0xdc,
0xff,0xd,0x0,0x26,0x0,0x33,0x0,0x40,0x0,0xa,0x0,0xff,0xff,0x9f,0xff,0x75,
0xff,0x27,0xff,0xf0,0xfe,0xe9,0xfe,0xbd,0xfe,0x8,0xff,0xf0,0xfe,0x57,0xff,0x54,
0xff,0x87,0xff,0x95,0xff,0x6c,0xff,0x7c,0xff,0x16,0xff,0x1d,0xff,0xc4,0xfe,0xbe,
0xfe,0xb8,0xfe,0xa0,0xfe,0xfc,0xfe,0xd5,0xfe,0x56,0xff,0x35,0xff,0x80,0xff,0x75,
0xff,0x5e,0xff,0x6f,0xff,0x13,0xff,0x3d,0xff,0xe0,0xfe,0x18,0xff,0xeb,0xfe,0x22,
0xff,0x1a,0xff,0x47,0xff,0x38,0xff,0x5e,0xff,0x34,0xff,0x54,0xff,0x2e,0xff,0x49,
0xff,0x60,0xff,0x74,0xff,0xe2,0xff,0xe8,0xff,0x7b,0x0,0x74,0x0,0xca,0x0,0xcd,
0x0,0x9d,0x0,0xbb,0x0,0x1c,0x0,0x4e,0x0,0xab,0xff,0xdf,0xff,0x9d,0xff,0xb9,
0xff,0xfa,0xff,0xe9,0xff,0x80,0x0,0x4c,0x0,0xe3,0x0,0xa9,0x0,0xb,0x1,0xd8,
0x0,0x5,0x1,0xdb,0x0,0xe2,0x0,0xc1,0x0,0xae,0x0,0x92,0x0,0x66,0x0,0x52,
0x0,0x12,0x0,0x5,0x0,0xcd,0xff,0xc2,0xff,0xb3,0xff,0xa7,0xff,0xcb,0xff,0xb5,
0xff,0xfc,0xff,0xd3,0xff,0xf,0x0,0xe5,0xff,0xe2,0xff,0xcd,0xff,0x8b,0xff,0x8c,
0xff,0x38,0xff,0x44,0xff,0x8,0xff,0x17,0xff,0xf4,0xfe,0x0,0xff,0xe2,0xfe,0xea,
0xfe,0xc1,0xfe,0xcc,0xfe,0x9e,0xfe,0xaf,0xfe,0x97,0xfe,0xaa,0xfe,0xc1,0xfe,0xd1,
0xfe,0xc,0xff,0x1e,0xff,0x55,0xff,0x70,0xff,0x7e,0xff,0xa5,0xff,0x7b,0xff,0xac,
0xff,0x5b,0xff,0x88,0xff,0x44,0xff,0x55,0xff,0x49,0xff,0x3e,0xff,0x73,0xff,0x61,
0xff,0xbf,0xff,0xb6,0xff,0x13,0x0,0x1b,0x0,0x54,0x0,0x66,0x0,0x78,0x0,0x7e,
0x0,0x78,0x0,0x6b,0x0,0x62,0x0,0x4a,0x0,0x4e,0x0,0x39,0x0,0x43,0x0,0x3f,
0x0,0x39,0x0,0x45,0x0,0x28,0x0,0x2f,0x0,0x6,0x0,0xfc,0xff,0xe3,0xff,0xcd,
0xff,0xde,0xff,0xc7,0xff,0xf5,0xff,0xee,0xff,0x8,0x0,0x17,0x0,0xf4,0xff,0x10,
0x0,0xab,0xff,0xc3,0xff,0x4a,0xff,0x53,0xff,0xd,0xff,0x5,0xff,0x15,0xff,0x4,
0xff,0x4f,0xff,0x40,0xff,0x82,0xff,0x7d,0xff,0x7a,0xff,0x85,0xff,0x37,0xff,0x54,
0xff,0xf6,0xfe,0x17,0xff,0xf5,0xfe,0xf,0xff,0x45,0xff,0x50,0xff,0xb9,0xff,0xb3,
0xff,0x9,0x0,0xf7,0xff,0x10,0x0,0xfb,0xff,0xe5,0xff,0xcf,0xff,0xbe,0xff,0xaa,
0xff,0xc4,0xff,0xbb,0xff,0xf2,0xff,0xf5,0xff,0x2c,0x0,0x36,0x0,0x5b,0x0,0x62,
0x0,0x79,0x0,0x6e,0x0,0x89,0x0,0x69,0x0,0x8b,0x0,0x5c,0x0,0x73,0x0,0x43,
0x0,0x3b,0x0,0x19,0x0,0xf4,0xff,0xe6,0xff,0xc0,0xff,0xbb,0xff,0xb5,0xff,0xaa,
0xff,0xc8,0xff,0xb6,0xff,0xde,0xff,0xcb,0xff,0xd5,0xff,0xcb,0xff,0x9d,0xff,0xa2,
0xff,0x4d,0xff,0x5d,0xff,0xd,0xff,0x20,0xff,0xf2,0xfe,0xff,0xfe,0xf3,0xfe,0xf9,
0xfe,0xf9,0xfe,0x0,0xff,0xf3,0xfe,0x0,0xff,0xe4,0xfe,0xf6,0xfe,0xd8,0xfe,0xf1,
0xfe,0xdb,0xfe,0xfc,0xfe,0xf9,0xfe,0x1d,0xff,0x2b,0xff,0x4a,0xff,0x66,0xff,0x75,
0xff,0x9a,0xff,0x95,0xff,0xb2,0xff,0xa6,0xff,0xb6,0xff,0xb3,0xff,0xc1,0xff,0xd2,
0xff,0xeb,0xff,0x9,0x0,0x3b,0x0,0x4b,0x0,0x8e,0x0,0x82,0x0,0xb7,0x0,0x94,
0x0,0xa6,0x0,0x7c,0x0,0x71,0x0,0x56,0x0,0x4a,0x0,0x47,0x0,0x59,0x0,0x63,
0x0,0x9a,0x0,0x9e,0x0,0xe0,0x0,0xd1,0x0,0xf4,0x0,0xd3,0x0,0xb3,0x0,0x93,
0x0,0x3c,0x0,0x2c,0x0,0xcc,0xff,0xcd,0xff,0x8d,0xff,0x97,0xff,0x84,0xff,0x89,
0xff,0x93,0xff,0x8f,0xff,0x94,0xff,0x91,0xff,0x83,0xff,0x89,0xff,0x6a,0xff,0x7c,
0xff,0x53,0xff,0x6b,0xff,0x42,0xff,0x54,0xff,0x2b,0xff,0x36,0xff,0xd,0xff,0x10,
0xff,0xf7,0xfe,0xf3,0xfe,0xf1,0xfe,0xf5,0xfe,0x3,0xff,0x11,0xff,0x2a,0xff,0x36,
0xff,0x4c,0xff,0x53,0xff,0x5e,0xff,0x5e,0xff,0x65,0xff,0x5d,0xff,0x67,0xff,0x5d,
0xff,0x74,0xff,0x69,0xff,0x8c,0xff,0x7d,0xff,0xa0,0xff,0x91,0xff,0xb1,0xff,0xa2,
0xff,0xcc,0xff,0xbc,0xff,0xfa,0xff,0xec,0xff,0x35,0x0,0x2e,0x0,0x60,0x0,0x63,
0x0,0x5d,0x0,0x6a,0x0,0x2f,0x0,0x42,0x0,0xfd,0xff,0x9,0x0,0xec,0xff,0xe9,
0xff,0x2,0x0,0xf5,0xff,0x2d,0x0,0x25,0x0,0x56,0x0,0x5f,0x0,0x69,0x0,0x88,
0x0,0x68,0x0,0x91,0x0,0x60,0x0,0x82,0x0,0x57,0x0,0x66,0x0,0x47,0x0,0x43,
0x0,0x28,0x0,0x17,0x0,0xf0,0xff,0xe0,0xff,0xab,0xff,0xa6,0xff,0x72,0xff,0x7a,
0xff,0x5d,0xff,0x6b,0xff,0x79,0xff,0x81,0xff,0xb5,0xff,0xb3,0xff,0xec,0xff,0xe2,
0xff,0xfa,0xff,0xe8,0xff,0xc7,0xff,0xb0,0xff,0x5c,0xff,0x46,0xff,0xec,0xfe,0xdc,
0xfe,0xaa,0xfe,0xa3,0xfe,0xae,0xfe,0xb0,0xfe,0xf1,0xfe,0xec,0xfe,0x42,0xff,0x2b,
0xff,0x6f,0xff,0x48,0xff,0x6d,0xff,0x43,0xff,0x4e,0xff,0x33,0xff,0x34,0xff,0x33,
0xff,0x34,0xff,0x47,0xff,0x44,0xff,0x60,0xff,0x56,0xff,0x6e,0xff,0x5f,0xff,0x6e,
0xff,0x6b,0xff,0x77,0xff,0x97,0xff,0xa2,0xff,0xe7,0xff,0xf2,0xff,0x43,0x0,0x4e,
0x0,0x84,0x0,0x93,0x0,0x95,0x0,0xa7,0x0,0x7d,0x0,0x92,0x0,0x5e,0x0,0x75,
0x0,0x4f,0x0,0x67,0x0,0x5b,0x0,0x6a,0x0,0x78,0x0,0x7b,0x0,0x96,0x0,0x91,
0x0,0xae,0x0,0xa4,0x0,0xbe,0x0,0xb6,0x0,0xc2,0x0,0xc4,0x0,0xb8,0x0,0xc1,
0x0,0x9d,0x0,0xa2,0x0,0x6c,0x0,0x68,0x0,0x33,0x0,0x22,0x0,0xfd,0xff,0xe4,
0xff,0xd5,0xff,0xbd,0xff,0xbd,0xff,0xac,0xff,0xae,0xff,0x9e,0xff,0x98,0xff,0x83,
0xff,0x73,0xff,0x59,0xff,0x47,0xff,0x30,0xff,0x27,0xff,0x19,0xff,0x1a,0xff,0x14,
0xff,0xf,0xff,0xd,0xff,0xf6,0xfe,0xf2,0xfe,0xd1,0xfe,0xc2,0xfe,0xad,0xfe,0x91,
0xfe,0x9d,0xfe,0x7e,0xfe,0xa9,0xfe,0x99,0xfe,0xc8,0xfe,0xd5,0xfe,0xf4,0xfe,0x18,
0xff,0x22,0xff,0x4e,0xff,0x48,0xff,0x6f,0xff,0x67,0xff,0x7e,0xff,0x82,0xff,0x8b,
0xff,0x9f,0xff,0xa1,0xff,0xcb,0xff,0xc8,0xff,0x3,0x0,0x0,0x0,0x41,0x0,0x40,
0x0,0x7b,0x0,0x7e,0x0,0x9d,0x0,0xa7,0x0,0xa6,0x0,0xb1,0x0,0xa5,0x0,0xae,
0x0,0xa8,0x0,0xb0,0x0,0xbc,0x0,0xbb,0x0,0xda,0x0,0xc8,0x0,0xe5,0x0,0xca,
0x0,0xcc,0x0,0xb0,0x0,0x93,0x0,0x85,0x0,0x4e,0x0,0x59,0x0,0x14,0x0,0x34,
0x0,0xef,0xff,0x11,0x0,0xd4,0xff,0xe3,0xff,0xb5,0xff,0xab,0xff,0x8c,0xff,0x7a,
0xff,0x65,0xff,0x5e,0xff,0x4c,0xff,0x55,0xff,0x3e,0xff,0x54,0xff,0x33,0xff,0x44,
0xff,0x1f,0xff,0x1b,0xff,0xfa,0xfe,0xe9,0xfe,0xd9,0xfe,0xcd,0xfe,0xd7,0xfe,0xdc,
0xfe,0xfe,0xfe,0x1d,0xff,0x44,0xff,0x6e,0xff,0x8d,0xff,0xa6,0xff,0xb3,0xff,0xb5,
0xff,0xb3,0xff,0xa8,0xff,0xaf,0xff,0xa2,0xff,0xc4,0xff,0xbd,0xff,0xf8,0xff,0xf3,
0xff,0x37,0x0,0x31,0x0,0x5d,0x0,0x57,0x0,0x58,0x0,0x50,0x0,0x3d,0x0,0x34,
0x0,0x2a,0x0,0x28,0x0,0x32,0x0,0x34,0x0,0x4d,0x0,0x4a,0x0,0x63,0x0,0x59,
0x0,0x59,0x0,0x50,0x0,0x2b,0x0,0x2a,0x0,0xed,0xff,0xef,0xff,0xb7,0xff,0xb8,
0xff,0x96,0xff,0x9c,0xff,0x87,0xff,0x93,0xff,0x7d,0xff,0x8a,0xff,0x6e,0xff,0x7a,
0xff,0x5d,0xff,0x60,0xff,0x4d,0xff,0x3e,0xff,0x38,0xff,0x1d,0xff,0x1e,0xff,0x4,
0xff,0x5,0xff,0xfa,0xfe,0xfd,0xfe,0x5,0xff,0x10,0xff,0x20,0xff,0x3b,0xff,0x40,
0xff,0x65,0xff,0x56,0xff,0x72,0xff,0x56,0xff,0x65,0xff,0x4d,0xff,0x5b,0xff,0x54,
0xff,0x75,0xff,0x7e,0xff,0xc0,0xff,0xc9,0xff,0x24,0x0,0x1f,0x0,0x70,0x0,0x5d,
0x0,0x84,0x0,0x6f,0x0,0x61,0x0,0x59,0x0,0x2e,0x0,0x36,0x0,0x19,0x0,0x25,
0x0,0x30,0x0,0x32,0x0,0x5e,0x0,0x56,0x0,0x7f,0x0,0x78,0x0,0x79,0x0,0x7e,
0x0,0x55,0x0,0x6b,0x0,0x35,0x0,0x55,0x0,0x2a,0x0,0x44,0x0,0x26,0x0,0x36,
0x0,0x12,0x0,0x1e,0x0,0xdd,0xff,0xec,0xff,0x91,0xff,0xa6,0xff,0x54,0xff,0x6c,
0xff,0x44,0xff,0x54,0xff,0x63,0xff,0x67,0xff,0x99,0xff,0x93,0xff,0xbc,0xff,0xba,
0xff,0xb5,0xff,0xc4,0xff,0x89,0xff,0xa6,0xff,0x4f,0xff,0x68,0xff,0x1e,0xff,0x29,
0xff,0x8,0xff,0xfe,0xfe,0x8,0xff,0xef,0xfe,0x19,0xff,0x0,0xff,0x39,0xff,0x26,
0xff,0x65,0xff,0x52,0xff,0x95,0xff,0x7e,0xff,0xbb,0xff,0xa4,0xff,0xc8,0xff,0xbb,
0xff,0xbc,0xff,0xc0,0xff,0xa3,0xff,0xb5,0xff,0x8e,0xff,0x9b,0xff,0x8a,0xff,0x7f,
0xff,0x9b,0xff,0x74,0xff,0xc4,0xff,0x8a,0xff,0xfe,0xff,0xc5,0xff,0x3a,0x0,0x15,
0x0,0x60,0x0,0x59,0x0,0x57,0x0,0x66,0x0,0x16,0x0,0x2a,0x0,0xb4,0xff,0xbe,
0xff,0x63,0xff,0x5e,0xff,0x53,0xff,0x42,0xff,0x8d,0xff,0x7f,0xff,0xf3,0xff,0xf0,
0xff,0x52,0x0,0x58,0x0,0x74,0x0,0x80,0x0,0x45,0x0,0x4f,0x0,0xe4,0xff,0xe5,
0xff,0x86,0xff,0x87,0xff,0x57,0xff,0x64,0xff,0x66,0xff,0x80,0xff,0xa0,0xff,0xc3,
0xff,0xdf,0xff,0x1,0x0,0x4,0x0,0x15,0x0,0x4,0x0,0x0,0x0,0xed,0xff,0xda,
0xff,0xcf,0xff,0xb2,0xff,0xb0,0xff,0x95,0xff,0x92,0xff,0x84,0xff,0x78,0xff,0x80,
0xff,0x68,0xff,0x89,0xff,0x68,0xff,0x97,0xff,0x76,0xff,0xa2,0xff,0x86,0xff,0xa2,
0xff,0x8e,0xff,0x8f,0xff,0x8c,0xff,0x75,0xff,0x89,0xff,0x6e,0xff,0x95,0xff,0x87,
0xff,0xae,0xff,0xb2,0xff,0xc3,0xff,0xd8,0xff,0xc0,0xff,0xde,0xff,0x9f,0xff,0xbd,
0xff,0x7b,0xff,0x91,0xff,0x77,0xff,0x7e,0xff,0xa0,0xff,0x98,0xff,0xe0,0xff,0xcd,
0xff,0xe,0x0,0xf9,0xff,0xa,0x0,0xf9,0xff,0xd9,0xff,0xcf,0xff,0x9b,0xff,0x98,
0xff,0x74,0xff,0x77,0xff,0x7b,0xff,0x7a,0xff,0xa9,0xff,0x9f,0xff,0xde,0xff,0xd4,
0xff,0xfc,0xff,0xf6,0xff,0xf8,0xff,0xf6,0xff,0xe0,0xff,0xe1,0xff,0xcc,0xff,0xc9,
0xff,0xc5,0xff,0xbb,0xff,0xc7,0xff,0xba,0xff,0xc9,0xff,0xb5,0xff,0xbe,0xff,0xa9,
0xff,0xaf,0xff,0xa1,0xff,0xb5,0xff,0xad,0xff,0xd1,0xff,0xd2,0xff,0xef,0xff,0xfe,
0xff,0xf8,0xff,0x12,0x0,0xe7,0xff,0x0,0x0,0xc8,0xff,0xdb,0xff,0xb0,0xff,0xba,
0xff,0xa8,0xff,0xaa,0xff,0xb6,0xff,0xa7,0xff,0xc5,0xff,0xaa,0xff,0xb9,0xff,0xa4,
0xff,0x94,0xff,0x93,0xff,0x73,0xff,0x85,0xff,0x6f,0xff,0x86,0xff,0x8b,0xff,0x98,
0xff,0xb3,0xff,0xb2,0xff,0xca,0xff,0xbd,0xff,0xc3,0xff,0xaf,0xff,0xa9,0xff,0x98,
0xff,0x92,0xff,0x87,0xff,0x95,0xff,0x89,0xff,0xac,0xff,0xa5,0xff,0xc2,0xff,0xca,
0xff,0xcd,0xff,0xe7,0xff,0xcc,0xff,0xf2,0xff,0xc6,0xff,0xea,0xff,0xc9,0xff,0xe1,
0xff,0xdc,0xff,0xde,0xff,0xf5,0xff,0xda,0xff,0xfe,0xff,0xd2,0xff,0xeb,0xff,0xca,
0xff,0xcc,0xff,0xc2,0xff,0xbc,0xff,0xc4,0xff,0xcd,0xff,0xe1,0xff,0x7,0x0,0x1e,
0x0,0x5a,0x0,0x68,0x0,0x99,0x0,0x9f,0x0,0xa0,0x0,0xa1,0x0,0x68,0x0,0x62,
0x0,0x2,0x0,0xf2,0xff,0x8f,0xff,0x77,0xff,0x34,0xff,0x17,0xff,0x5,0xff,0xe6,
0xfe,0x3,0xff,0xf0,0xfe,0x21,0xff,0x26,0xff,0x46,0xff,0x63,0xff,0x60,0xff,0x84,
0xff,0x60,0xff,0x74,0xff,0x41,0xff,0x3a,0xff,0xc,0xff,0xf7,0xfe,0xde,0xfe,0xca,
0xfe,0xd1,0xfe,0xc6,0xfe,0xe6,0xfe,0xe7,0xfe,0xd,0xff,0x15,0xff,0x34,0xff,0x3e,
0xff,0x4f,0xff,0x5b,0xff,0x67,0xff,0x74,0xff,0x8a,0xff,0x95,0xff,0xb5,0xff,0xc1,
0xff,0xe4,0xff,0xf7,0xff,0x17,0x0,0x27,0x0,0x47,0x0,0x49,0x0,0x72,0x0,0x65,
0x0,0x96,0x0,0x85,0x0,0xb2,0x0,0xa8,0x0,0xbe,0x0,0xc5,0x0,0xb5,0x0,0xcd,
0x0,0x8f,0x0,0xab,0x0,0x5e,0x0,0x74,0x0,0x43,0x0,0x50,0x0,0x51,0x0,0x55,
0x0,0x76,0x0,0x79,0x0,0x91,0x0,0x8f,0x0,0x78,0x0,0x6d,0x0,0x20,0x0,0xe,
0x0,0xa7,0xff,0x90,0xff,0x3b,0xff,0x20,0xff,0xf1,0xfe,0xe0,0xfe,0xc6,0xfe,0xc7,
0xfe,0xaf,0xfe,0xbd,0xfe,0xa6,0xfe,0xb6,0xfe,0xaf,0xfe,0xb8,0xfe,0xcc,0xfe,0xcb,
0xfe,0xec,0xfe,0xea,0xfe,0xf9,0xfe,0xfc,0xfe,0xe9,0xfe,0xec,0xfe,0xc7,0xfe,0xc1,
0xfe,0xaf,0xfe,0xa4,0xfe,0xc7,0xfe,0xb9,0xfe,0x17,0xff,0x8,0xff,0x87,0xff,0x79,
0xff,0xf2,0xff,0xe8,0xff,0x43,0x0,0x3c,0x0,0x7b,0x0,0x7c,0x0,0xa3,0x0,0xac,
0x0,0xb9,0x0,0xc0,0x0,0xad,0x0,0xab,0x0,0x7c,0x0,0x6f,0x0,0x3f,0x0,0x2b,
0x0,0x24,0x0,0x16,0x0,0x48,0x0,0x4d,0x0,0x9e,0x0,0xb3,0x0,0xe9,0x0,0x5,
0x1,0xef,0x0,0x4,0x1,0x9b,0x0,0xa0,0x0,0x19,0x0,0x10,0x0,0xb1,0xff,0xa0,
0xff,0x84,0xff,0x76,0xff,0x87,0xff,0x83,0xff,0x97,0xff,0x93,0xff,0x85,0xff,0x7e,
0xff,0x45,0xff,0x41,0xff,0xf8,0xfe,0xfb,0xfe,0xc0,0xfe,0xcb,0xfe,0xac,0xfe,0xbd,
0xfe,0xb7,0xfe,0xc7,0xfe,0xcc,0xfe,0xd3,0xfe,0xdb,0xfe,0xd8,0xfe,0xe6,0xfe,0xd5,
0xfe,0xf0,0xfe,0xdb,0xfe,0x6,0xff,0xff,0xfe,0x33,0xff,0x3b,0xff,0x6d,0xff,0x7e,
0xff,0xa7,0xff,0xb9,0xff,0xe2,0xff,0xe4,0xff,0x15,0x0,0x8,0x0,0x3a,0x0,0x33,
0x0,0x5a,0x0,0x5d,0x0,0x71,0x0,0x7c,0x0,0x7d,0x0,0x8e,0x0,0x8d,0x0,0x92,
0x0,0xa1,0x0,0x91,0x0,0xae,0x0,0x8d,0x0,0xa7,0x0,0x7f,0x0,0x88,0x0,0x6c,
0x0,0x57,0x0,0x59,0x0,0x2d,0x0,0x44,0x0,0x19,0x0,0x37,0x0,0x16,0x0,0x29,
0x0,0x17,0x0,0xf,0x0,0x6,0x0,0xea,0xff,0xd2,0xff,0xb4,0xff,0x83,0xff,0x6f,
0xff,0x2f,0xff,0x2d,0xff,0xf4,0xfe,0x3,0xff,0xed,0xfe,0x5,0xff,0x15,0xff,0x31,
0xff,0x49,0xff,0x5b,0xff,0x5e,0xff,0x62,0xff,0x3c,0xff,0x40,0xff,0xf9,0xfe,0x0,
0xff,0xc2,0xfe,0xc8,0xfe,0xb9,0xfe,0xbb,0xfe,0xe6,0xfe,0xe6,0xfe,0x35,0xff,0x3d,
0xff,0x87,0xff,0x96,0xff,0xc9,0xff,0xd9,0xff,0xfa,0xff,0xc,0x0,0x21,0x0,0x2c,
0x0,0x45,0x0,0x3d,0x0,0x64,0x0,0x54,0x0,0x75,0x0,0x74,0x0,0x7e,0x0,0x92,
0x0,0x84,0x0,0xa6,0x0,0x8a,0x0,0xa1,0x0,0x8d,0x0,0x86,0x0,0x84,0x0,0x5e,
0x0,0x62,0x0,0x2d,0x0,0x33,0x0,0x7,0x0,0xe,0x0,0xf5,0xff,0xfa,0xff,0xeb,
0xff,0xef,0xff,0xe0,0xff,0xdf,0xff,0xcb,0xff,0xb4,0xff,0xa2,0xff,0x69,0xff,0x63,
0xff,0x13,0xff,0x17,0xff,0xcf,0xfe,0xd4,0xfe,0xb1,0xfe,0xad,0xfe,0xb3,0xfe,0x9e,
0xfe,0xbe,0xfe,0x9f,0xfe,0xc5,0xfe,0xb5,0xfe,0xd3,0xfe,0xdd,0xfe,0xf1,0xfe,0x11,
0xff,0x18,0xff,0x41,0xff,0x38,0xff,0x57,0xff,0x3f,0xff,0x4e,0xff,0x2e,0xff,0x34,
0xff,0x23,0xff,0x2a,0xff,0x3f,0xff,0x49,0xff,0x85,0xff,0x8e,0xff,0xde,0xff,0xe8,
0xff,0x31,0x0,0x47,0x0,0x70,0x0,0x99,0x0,0x8e,0x0,0xc8,0x0,0x8c,0x0,0xc7,
0x0,0x7c,0x0,0xa9,0x0,0x79,0x0,0x8f,0x0,0x8d,0x0,0x8a,0x0,0xab,0x0,0x95,
0x0,0xbf,0x0,0x9f,0x0,0xbd,0x0,0x9f,0x0,0xaa,0x0,0x93,0x0,0x93,0x0,0x85,
0x0,0x7f,0x0,0x7c,0x0,0x68,0x0,0x6d,0x0,0x3d,0x0,0x3c,0x0,0xf3,0xff,0xdd,
0xff,0x93,0xff,0x67,0xff,0x34,0xff,0xff,0xfe,0xf9,0xfe,0xcd,0xfe,0xf4,0xfe,0xdb,
0xfe,0x16,0xff,0xd,0xff,0x36,0xff,0x33,0xff,0x2a,0xff,0x25,0xff,0xeb,0xfe,0xe5,
0xfe,0x9e,0xfe,0x9c,0xfe,0x6f,0xfe,0x6f,0xfe,0x73,0xfe,0x70,0xfe,0xa1,0xfe,0x98,
0xfe,0xdc,0xfe,0xd0,0xfe,0xa,0xff,0x8,0xff,0x2a,0xff,0x3e,0xff,0x4a,0xff,0x70,
0xff,0x76,0xff,0xa5,0xff,0xb0,0xff,0xdc,0xff,0xf3,0xff,0xa,0x0,0x2e,0x0,0x30,
0x0,0x56,0x0,0x50,0x0,0x6f,0x0,0x6c,0x0,0x84,0x0,0x8d,0x0,0x9d,0x0,0xaf,
0x0,0xb6,0x0,0xcc,0x0,0xcd,0x0,0xe8,0x0,0xe4,0x0,0xfc,0x0,0xf2,0x0,0xfe,
0x0,0xf2,0x0,0xea,0x0,0xdc,0x0,0xbb,0x0,0xa3,0x0,0x7a,0x0,0x4f,0x0,0x34,
0x0,0x0,0x0,0xf4,0xff,0xcc,0xff,0xc7,0xff,0xba,0xff,0xad,0xff,0xb1,0xff,0x96,
0xff,0x8e,0xff,0x74,0xff,0x52,0xff,0x45,0xff,0x14,0xff,0x12,0xff,0xe3,0xfe,0xe8,
0xfe,0xc8,0xfe,0xca,0xfe,0xc3,0xfe,0xb8,0xfe,0xb9,0xfe,0xac,0xfe,0xa4,0xfe,0xa6,
0xfe,0xa0,0xfe,0xb5,0xfe,0xbf,0xfe,0xe3,0xfe,0x0,0xff,0x25,0xff,0x4c,0xff,0x61,
0xff,0x7d,0xff,0x80,0xff,0x90,0xff,0x89,0xff,0x9a,0xff,0x9b,0xff,0xb4,0xff,0xc1,
0xff,0xf0,0xff,0xfc,0xff,0x44,0x0,0x49,0x0,0x8b,0x0,0x8d,0x0,0xa7,0x0,0xac,
0x0,0x9f,0x0,0xa8,0x0,0x8d,0x0,0x93,0x0,0x8a,0x0,0x89,0x0,0x9d,0x0,0x93,
0x0,0xbb,0x0,0xa3,0x0,0xcd,0x0,0xab,0x0,0xbf,0x0,0x9d,0x0,0x8d,0x0,0x74,
0x0,0x49,0x0,0x41,0x0,0x5,0x0,0xb,0x0,0xc8,0xff,0xd3,0xff,0x93,0xff,0x9d,
0xff,0x6b,0xff,0x69,0xff,0x55,0xff,0x42,0xff,0x4d,0xff,0x30,0xff,0x49,0xff,0x2e,
0xff,0x3c,0xff,0x30,0xff,0x22,0xff,0x29,0xff,0x7,0xff,0x13,0xff,0xf5,0xfe,0xfe,
0xfe,0xf4,0xfe,0xfd,0xfe,0x5,0xff,0xf,0xff,0x1c,0xff,0x2d,0xff,0x28,0xff,0x3f,
0xff,0x26,0xff,0x3a,0xff,0x1e,0xff,0x2d,0xff,0x27,0xff,0x33,0xff,0x4e,0xff,0x5f,
0xff,0x8e,0xff,0xac,0xff,0xdc,0xff,0xfa,0xff,0x1e,0x0,0x2d,0x0,0x3f,0x0,0x41,
0x0,0x45,0x0,0x41,0x0,0x46,0x0,0x48,0x0,0x53,0x0,0x61,0x0,0x6f,0x0,0x80,
0x0,0x8c,0x0,0x94,0x0,0x99,0x0,0x93,0x0,0x96,0x0,0x82,0x0,0x8e,0x0,0x70,
0x0,0x89,0x0,0x65,0x0,0x88,0x0,0x60,0x0,0x7d,0x0,0x57,0x0,0x5a,0x0,0x3b,
0x0,0x2c,0x0,0x13,0x0,0x10,0x0,0xfc,0xff,0x10,0x0,0xfd,0xff,0x19,0x0,0x3,
0x0,0xc,0x0,0xf4,0xff,0xdb,0xff,0xc3,0xff,0x91,0xff,0x7b,0xff,0x48,0xff,0x3f,
0xff,0x1b,0xff,0x24,0xff,0x12,0xff,0x2b,0xff,0x26,0xff,0x41,0xff,0x3b,0xff,0x4c,
0xff,0x39,0xff,0x44,0xff,0x2a,0xff,0x3c,0xff,0x2b,0xff,0x46,0xff,0x44,0xff,0x65,
0xff,0x6c,0xff,0x8d,0xff,0x8b,0xff,0xa4,0xff,0x89,0xff,0x99,0xff,0x66,0xff,0x6f,
0xff,0x3e,0xff,0x45,0xff,0x34,0xff,0x40,0xff,0x5f,0xff,0x72,0xff,0xb4,0xff,0xc9,
0xff,0x11,0x0,0x1b,0x0,0x59,0x0,0x47,0x0,0x79,0x0,0x48,0x0,0x68,0x0,0x2d,
0x0,0x38,0x0,0x11,0x0,0xd,0x0,0x8,0x0,0x0,0x0,0x13,0x0,0x12,0x0,0x27,
0x0,0x35,0x0,0x36,0x0,0x58,0x0,0x37,0x0,0x6e,0x0,0x33,0x0,0x72,0x0,0x3b,
0x0,0x68,0x0,0x4f,0x0,0x55,0x0,0x61,0x0,0x3f,0x0,0x60,0x0,0x28,0x0,0x46,
0x0,0x15,0x0,0x23,0x0,0xb,0x0,0x7,0x0,0x4,0x0,0xfa,0xff,0xf8,0xff,0xfb,
0xff,0xf9,0xff,0xb,0x0,0x9,0x0,0x20,0x0,0xe,0x0,0x27,0x0,0x1,0x0,0x1a,
0x0,0xe4,0xff,0xfe,0xff,0xb8,0xff,0xd7,0xff,0x8c,0xff,0xa9,0xff,0x67,0xff,0x7d,
0xff,0x4c,0xff,0x5d,0xff,0x49,0xff,0x4f,0xff,0x58,0xff,0x55,0xff,0x6b,0xff,0x6a,
0xff,0x80,0xff,0x81,0xff,0x8d,0xff,0x8d,0xff,0x83,0xff,0x86,0xff,0x71,0xff,0x72,
0xff,0x68,0xff,0x61,0xff,0x68,0xff,0x54,0xff,0x71,0xff,0x4e,0xff,0x7c,0xff,0x56,
0xff,0x89,0xff,0x6e,0xff,0xa7,0xff,0x98,0xff,0xd5,0xff,0xcc,0xff,0xc,0x0,0x5,
0x0,0x40,0x0,0x36,0x0,0x5c,0x0,0x4e,0x0,0x5a,0x0,0x4d,0x0,0x43,0x0,0x3e,
0x0,0x2a,0x0,0x2c,0x0,0x26,0x0,0x28,0x0,0x41,0x0,0x3f,0x0,0x6d,0x0,0x6b,
0x0,0x95,0x0,0x99,0x0,0xa6,0x0,0xb5,0x0,0x9b,0x0,0xb4,0x0,0x7e,0x0,0x98,
0x0,0x5a,0x0,0x69,0x0,0x33,0x0,0x33,0x0,0xb,0x0,0xa,0x0,0xe5,0xff,0xf5,
0xff,0xd1,0xff,0xec,0xff,0xd6,0xff,0xec,0xff,0xe4,0xff,0xec,0xff,0xe1,0xff,0xe0,
0xff,0xc1,0xff,0xbe,0xff,0x8a,0xff,0x8a,0xff,0x56,0xff,0x58,0xff,0x38,0xff,0x3c,
0xff,0x37,0xff,0x40,0xff,0x51,0xff,0x5c,0xff,0x6e,0xff,0x74,0xff,0x76,0xff,0x74,
0xff,0x6a,0xff,0x60,0xff,0x5a,0xff,0x4b,0xff,0x5e,0xff,0x4c,0xff,0x7f,0xff,0x6c,
0xff,0xac,0xff,0xa1,0xff,0xce,0xff,0xd7,0xff,0xda,0xff,0xf8,0xff,0xd8,0xff,0xfa,
0xff,0xe3,0xff,0xf5,0xff,0x8,0x0,0x1,0x0,0x38,0x0,0x1b,0x0,0x64,0x0,0x3f,
0x0,0x84,0x0,0x66,0x0,0x8e,0x0,0x87,0x0,0x83,0x0,0x93,0x0,0x6d,0x0,0x85,
0x0,0x57,0x0,0x65,0x0,0x45,0x0,0x43,0x0,0x2f,0x0,0x28,0x0,0xf,0x0,0x14,
0x0,0xf4,0xff,0x8,0x0,0xe9,0xff,0x2,0x0,0xe7,0xff,0xf7,0xff,0xdf,0xff,0xe1,
0xff,0xc9,0xff,0xbf,0xff,0xa8,0xff,0x96,0xff,0x88,0xff,0x76,0xff,0x77,0xff,0x6f,
0xff,0x79,0xff,0x7b,0xff,0x7e,0xff,0x80,0xff,0x7c,0xff,0x76,0xff,0x75,0xff,0x65,
0xff,0x77,0xff,0x5e,0xff,0x8b,0xff,0x6f,0xff,0xb0,0xff,0x96,0xff,0xd5,0xff,0xbe,
0xff,0xec,0xff,0xd6,0xff,0xef,0xff,0xda,0xff,0xe5,0xff,0xd8,0xff,0xe7,0xff,0xe5,
0xff,0x8,0x0,0xa,0x0,0x42,0x0,0x41,0x0,0x79,0x0,0x75,0x0,0x8e,0x0,0x8d,
0x0,0x82,0x0,0x84,0x0,0x6e,0x0,0x6e,0x0,0x6a,0x0,0x67,0x0,0x7b,0x0,0x75,
0x0,0x8f,0x0,0x8c,0x0,0x8a,0x0,0x97,0x0,0x6b,0x0,0x8b,0x0,0x41,0x0,0x67,
0x0,0x14,0x0,0x34,0x0,0xec,0xff,0x3,0x0,0xcc,0xff,0xd9,0xff,0xa9,0xff,0xb3,
0xff,0x83,0xff,0x8d,0xff,0x61,0xff,0x6e,0xff,0x48,0xff,0x5f,0xff,0x42,0xff,0x61,
0xff,0x45,0xff,0x67,0xff,0x42,0xff,0x61,0xff,0x39,0xff,0x49,0xff,0x2f,0xff,0x29,
0xff,0x2d,0xff,0x1b,0xff,0x3e,0xff,0x2d,0xff,0x5b,0xff,0x4d,0xff,0x72,0xff,0x65,
0xff,0x82,0xff,0x74,0xff,0x95,0xff,0x85,0xff,0xb5,0xff,0xa2,0xff,0xe1,0xff,0xd2,
0xff,0x12,0x0,0xd,0x0,0x3e,0x0,0x3d,0x0,0x58,0x0,0x54,0x0,0x5c,0x0,0x50,
0x0,0x54,0x0,0x41,0x0,0x56,0x0,0x44,0x0,0x71,0x0,0x66,0x0,0x9e,0x0,0x9c,
0x0,0xca,0x0,0xcb,0x0,0xe2,0x0,0xd8,0x0,0xd1,0x0,0xc0,0x0,0x97,0x0,0x91,
0x0,0x56,0x0,0x61,0x0,0x29,0x0,0x44,0x0,0x18,0x0,0x3f,0x0,0x1d,0x0,0x44,
0x0,0x21,0x0,0x45,0x0,0x15,0x0,0x31,0x0,0xfc,0xff,0xb,0x0,0xde,0xff,0xe6,
0xff,0xc5,0xff,0xcd,0xff,0xb6,0xff,0xc5,0xff,0xa1,0xff,0xbf,0xff,0x7d,0xff,0xa1,
0xff,0x52,0xff,0x69,0xff,0x2d,0xff,0x31,0xff,0x24,0xff,0x15,0xff,0x48,0xff,0x2e,
0xff,0x8e,0xff,0x7c,0xff,0xd6,0xff,0xd3,0xff,0xf6,0xff,0xfe,0xff,0xde,0xff,0xe7,
0xff,0xae,0xff,0xaa,0xff,0x8d,0xff,0x7b,0xff,0x88,0xff,0x74,0xff,0x96,0xff,0x88,
0xff,0xac,0xff,0xa7,0xff,0xc5,0xff,0xc5,0xff,0xe3,0xff,0xdf,0xff,0x0,0x0,0xfc,
0xff,0x19,0x0,0x1f,0x0,0x2e,0x0,0x3f,0x0,0x39,0x0,0x44,0x0,0x31,0x0,0x34,
0x0,0x23,0x0,0x27,0x0,0x1a,0x0,0x23,0x0,0x15,0x0,0x26,0x0,0xe,0x0,0x29,
0x0,0xa,0x0,0x25,0x0,0x14,0x0,0x1b,0x0,0x25,0x0,0xf,0x0,0x32,0x0,0x9,
0x0,0x34,0x0,0x15,0x0,0x2f,0x0,0x27,0x0,0x23,0x0,0x26,0x0,0x12,0x0,0x10,
0x0,0xff,0xff,0xf2,0xff,0xf3,0xff,0xe0,0xff,0xf6,0xff,0xe5,0xff,0x0,0x0,0xf8,
0xff,0xf,0x0,0x9,0x0,0x25,0x0,0x17,0x0,0x3e,0x0,0x23,0x0,0x4f,0x0,0x2b,
0x0,0x45,0x0,0x22,0x0,0x19,0x0,0x4,0x0,0xe0,0xff,0xe7,0xff,0xb9,0xff,0xd6,
0xff,0xb4,0xff,0xce,0xff,0xc6,0xff,0xcd,0xff,0xda,0xff,0xce,0xff,0xe0,0xff,0xcc,
0xff,0xe0,0xff,0xce,0xff,0xe0,0xff,0xda,0xff,0xe5,0xff,0xef,0xff,0xeb,0xff,0x7,
0x0,0xe3,0xff,0x11,0x0,0xce,0xff,0x6,0x0,0xb7,0xff,0xe8,0xff,0xad,0xff,0xc8,
0xff,0xbc,0xff,0xbd,0xff,0xde,0xff,0xcd,0xff,0xf6,0xff,0xe0,0xff,0xf3,0xff,0xe1,
0xff,0xd5,0xff,0xcc,0xff,0xad,0xff,0xad,0xff,0x9b,0xff,0xa1,0xff,0xb6,0xff,0xb7,
0xff,0xf0,0xff,0xe4,0xff,0x20,0x0,0xa,0x0,0x25,0x0,0xa,0x0,0x7,0x0,0xf2,
0xff,0xe7,0xff,0xe4,0xff,0xdb,0xff,0xe8,0xff,0xe5,0xff,0xf4,0xff,0x0,0x0,0x7,
0x0,0x26,0x0,0x1f,0x0,0x49,0x0,0x37,0x0,0x5a,0x0,0x4c,0x0,0x57,0x0,0x58,
0x0,0x4b,0x0,0x54,0x0,0x3b,0x0,0x44,0x0,0x29,0x0,0x2f,0x0,0x1e,0x0,0x22,
0x0,0x20,0x0,0x28,0x0,0x2c,0x0,0x38,0x0,0x2f,0x0,0x3c,0x0,0x16,0x0,0x26,
0x0,0xed,0xff,0xfb,0xff,0xcf,0xff,0xd5,0xff,0xc9,0xff,0xc9,0xff,0xd5,0xff,0xcf,
0xff,0xe1,0xff,0xd1,0xff,0xdc,0xff,0xcd,0xff,0xcc,0xff,0xcb,0xff,0xc9,0xff,0xd3,
0xff,0xd9,0xff,0xe9,0xff,0xf5,0xff,0x0,0x0,0x6,0x0,0xff,0xff,0xf9,0xff,0xde,
0xff,0xd5,0xff,0xb1,0xff,0xb2,0xff,0x91,0xff,0xa5,0xff,0x8e,0xff,0xb9,0xff,0xa6,
0xff,0xdd,0xff,0xcd,0xff,0xf4,0xff,0xe9,0xff,0xf6,0xff,0xf1,0xff,0xf7,0xff,0xf8,
0xff,0x4,0x0,0xe,0x0,0x1e,0x0,0x32,0x0,0x2e,0x0,0x4d,0x0,0x29,0x0,0x47,
0x0,0x15,0x0,0x2a,0x0,0x0,0x0,0x15,0x0,0xf7,0xff,0xe,0x0,0xff,0xff,0x17,
0x0,0x9,0x0,0x28,0x0,0x5,0x0,0x2b,0x0,0xf2,0xff,0x18,0x0,0xd6,0xff,0xfb,
0xff,0xc2,0xff,0xe1,0xff,0xb5,0xff,0xcc,0xff,0xa6,0xff,0xb7,0xff,0x96,0xff,0xa1,
0xff,0x8e,0xff,0x90,0xff,0x92,0xff,0x89,0xff,0x9f,0xff,0x90,0xff,0xb4,0xff,0xa9,
0xff,0xc8,0xff,0xbf,0xff,0xce,0xff,0xc1,0xff,0xc0,0xff,0xae,0xff,0xb1,0xff,0x98,
0xff,0xb8,0xff,0x97,0xff,0xdd,0xff,0xba,0xff,0xd,0x0,0xef,0xff,0x27,0x0,0x15,
0x0,0x1c,0x0,0x14,0x0,0xf9,0xff,0xf5,0xff,0xd7,0xff,0xd4,0xff,0xc8,0xff,0xc6,
0xff,0xd5,0xff,0xd3,0xff,0xfc,0xff,0xfe,0xff,0x2c,0x0,0x38,0x0,0x4e,0x0,0x5a,
0x0,0x50,0x0,0x57,0x0,0x39,0x0,0x40,0x0,0x27,0x0,0x31,0x0,0x33,0x0,0x40,
0x0,0x53,0x0,0x5d,0x0,0x64,0x0,0x67,0x0,0x4e,0x0,0x4f,0x0,0x17,0x0,0x1f,
0x0,0xe0,0xff,0xf5,0xff,0xd1,0xff,0xeb,0xff,0xea,0xff,0xfd,0xff,0x1,0x0,0xb,
0x0,0xf1,0xff,0xf4,0xff,0xb1,0xff,0xb4,0xff,0x67,0xff,0x6d,0xff,0x47,0xff,0x4c,
0xff,0x62,0xff,0x5a,0xff,0xa6,0xff,0x89,0xff,0xe7,0xff,0xbb,0xff,0xef,0xff,0xc4,
0xff,0xb2,0xff,0x9a,0xff,0x69,0xff,0x6b,0xff,0x52,0xff,0x63,0xff,0x79,0xff,0x88,
0xff,0xbc,0xff,0xb9,0xff,0xed,0xff,0xd3,0xff,0xfc,0xff,0xdb,0xff,0x3,0x0,0xe5,
0xff,0x17,0x0,0xfe,0xff,0x32,0x0,0x21,0x0,0x42,0x0,0x35,0x0,0x3a,0x0,0x26,
0x0,0x1c,0x0,0x4,0x0,0xfe,0xff,0xea,0xff,0xfc,0xff,0xec,0xff,0x1f,0x0,0x14,
0x0,0x55,0x0,0x50,0x0,0x7c,0x0,0x7e,0x0,0x74,0x0,0x81,0x0,0x4d,0x0,0x63,
0x0,0x39,0x0,0x4c,0x0,0x3e,0x0,0x46,0x0,0x3d,0x0,0x3b,0x0,0x29,0x0,0x25,
0x0,0xfb,0xff,0x7,0x0,0xbe,0xff,0xe5,0xff,0x8e,0xff,0xc3,0xff,0x73,0xff,0x9e,
0xff,0x6b,0xff,0x82,0xff,0x78,0xff,0x83,0xff,0x89,0xff,0x8a,0xff,0x91,0xff,0x88,
0xff,0x92,0xff,0x84,0xff,0x88,0xff,0x78,0xff,0x6e,0xff,0x61,0xff,0x59,0xff,0x52,
0xff,0x58,0xff,0x58,0xff,0x76,0xff,0x78,0xff,0xb7,0xff,0xb1,0xff,0xfa,0xff,0xe7,
0xff,0x16,0x0,0xf8,0xff,0x5,0x0,0xe1,0xff,0xe5,0xff,0xc6,0xff,0xd9,0xff,0xc3,
0xff,0xe8,0xff,0xd5,0xff,0x5,0x0,0xed,0xff,0x20,0x0,0x6,0x0,0x2d,0x0,0x17,
0x0,0x1f,0x0,0x14,0x0,0x2,0x0,0x0,0x0,0xfa,0xff,0xfb,0xff,0x19,0x0,0x16,
0x0,0x48,0x0,0x3b,0x0,0x64,0x0,0x4e,0x0,0x60,0x0,0x4f,0x0,0x49,0x0,0x42,
0x0,0x27,0x0,0x2e,0x0,0x1,0x0,0x1c,0x0,0xdd,0xff,0x7,0x0,0xc2,0xff,0xef,
0xff,0xb7,0xff,0xde,0xff,0xc2,0xff,0xda,0xff,0xd7,0xff,0xdd,0xff,0xe4,0xff,0xe4,
0xff,0xe3,0xff,0xe4,0xff,0xd6,0xff,0xdb,0xff,0xc3,0xff,0xcf,0xff,0xb0,0xff,0xbf,
0xff,0x94,0xff,0xa5,0xff,0x73,0xff,0x85,0xff,0x66,0xff,0x73,0xff,0x82,0xff,0x86,
0xff,0xc4,0xff,0xbc,0xff,0x5,0x0,0xf6,0xff,0x1c,0x0,0xa,0x0,0x0,0x0,0xf5,
0xff,0xcd,0xff,0xd1,0xff,0xa5,0xff,0xb4,0xff,0x9f,0xff,0xaa,0xff,0xb6,0xff,0xaf,
0xff,0xd2,0xff,0xb9,0xff,0xdd,0xff,0xb8,0xff,0xcd,0xff,0xa3,0xff,0xac,0xff,0x86,
0xff,0x99,0xff,0x82,0xff,0xab,0xff,0xa5,0xff,0xd1,0xff,0xd3,0xff,0xdf,0xff,0xe0,
0xff,0xbf,0xff,0xb8,0xff,0x95,0xff,0x81,0xff,0x95,0xff,0x78,0xff,0xc4,0xff,0xa9,
0xff,0xfd,0xff,0xed,0xff,0x18,0x0,0x18,0x0,0x7,0x0,0x11,0x0,0xe1,0xff,0xec,
0xff,0xc8,0xff,0xce,0xff,0xc1,0xff,0xbf,0xff,0xc3,0xff,0xc0,0xff,0xce,0xff,0xd0,
0xff,0xe5,0xff,0xe9,0xff,0x1,0x0,0x0,0x0,0x15,0x0,0xc,0x0,0x17,0x0,0x10,
0x0,0x10,0x0,0x15,0x0,0xc,0x0,0x1d,0x0,0x1e,0x0,0x2e,0x0,0x52,0x0,0x55,
0x0,0x9a,0x0,0x8f,0x0,0xcb,0x0,0xbb,0x0,0xba,0x0,0xa9,0x0,0x66,0x0,0x52,
0x0,0xff,0xff,0xea,0xff,0xbb,0xff,0xa9,0xff,0xab,0xff,0xa1,0xff,0xbb,0xff,0xc3,
0xff,0xca,0xff,0xe3,0xff,0xc6,0xff,0xe3,0xff,0xb3,0xff,0xca,0xff,0x9b,0xff,0xa9,
0xff,0x8f,0xff,0x91,0xff,0x94,0xff,0x88,0xff,0x95,0xff,0x80,0xff,0x7e,0xff,0x6d,
0xff,0x56,0xff,0x54,0xff,0x30,0xff,0x3c,0xff,0x28,0xff,0x36,0xff,0x4b,0xff,0x52,
0xff,0x8b,0xff,0x8d,0xff,0xc9,0xff,0xc7,0xff,0xe3,0xff,0xda,0xff,0xc7,0xff,0xbc,
0xff,0x97,0xff,0x8f,0xff,0x80,0xff,0x7e,0xff,0x96,0xff,0x95,0xff,0xcd,0xff,0xc4,
0xff,0x9,0x0,0xf4,0xff,0x2b,0x0,0x14,0x0,0x2d,0x0,0x1c,0x0,0x1b,0x0,0xf,
0x0,0x3,0x0,0xfe,0xff,0xf6,0xff,0xf4,0xff,0xfd,0xff,0xf8,0xff,0xb,0x0,0x4,
0x0,0xb,0x0,0x4,0x0,0xf5,0xff,0xea,0xff,0xd3,0xff,0xc8,0xff,0xc4,0xff,0xb8,
0xff,0xce,0xff,0xc3,0xff,0xd7,0xff,0xd5,0xff,0xc6,0xff,0xd1,0xff,0x9a,0xff,0xaa,
0xff,0x5d,0xff,0x6c,0xff,0x35,0xff,0x39,0xff,0x43,0xff,0x38,0xff,0x83,0xff,0x6f,
0xff,0xca,0xff,0xb9,0xff,0xe9,0xff,0xe4,0xff,0xd1,0xff,0xdc,0xff,0xa4,0xff,0xbf,
0xff,0x8e,0xff,0xb3,0xff,0xa2,0xff,0xc5,0xff,0xdd,0xff,0xf8,0xff,0x18,0x0,0x2e,
0x0,0x2d,0x0,0x3b,0x0,0x27,0x0,0x26,0x0,0x24,0x0,0x1e,0x0,0x32,0x0,0x3b,
0x0,0x51,0x0,0x69,0x0,0x6c,0x0,0x81,0x0,0x65,0x0,0x67,0x0,0x3f,0x0,0x26,
0x0,0x11,0x0,0xe7,0xff,0xf6,0xff,0xd1,0xff,0xf2,0xff,0xe4,0xff,0xeb,0xff,0xee,
0xff,0xd5,0xff,0xd7,0xff,0xc3,0xff,0xb2,0xff,0xb6,0xff,0x94,0xff,0xa5,0xff,0x81,
0xff,0x8d,0xff,0x77,0xff,0x69,0xff,0x66,0xff,0x3b,0xff,0x3a,0xff,0xe,0xff,0xff,
0xfe,0xf0,0xfe,0xd6,0xfe,0xf2,0xfe,0xd5,0xfe,0xf,0xff,0xf5,0xfe,0x22,0xff,0x17,
0xff,0x1d,0xff,0x26,0xff,0x16,0xff,0x2f,0xff,0x24,0xff,0x40,0xff,0x3f,0xff,0x5b,
0xff,0x4d,0xff,0x6f,0xff,0x4a,0xff,0x73,0xff,0x57,0xff,0x77,0xff,0x8c,0xff,0x9e,
0xff,0xd6,0xff,0xe3,0xff,0xe,0x0,0x1d,0x0,0x22,0x0,0x30,0x0,0x20,0x0,0x23,
0x0,0x21,0x0,0x1e,0x0,0x3c,0x0,0x40,0x0,0x77,0x0,0x83,0x0,0xbe,0x0,0xc8,
0x0,0xf2,0x0,0xea,0x0,0xf0,0x0,0xd3,0x0,0xbb,0x0,0x9c,0x0,0x7b,0x0,0x6e,
0x0,0x4a,0x0,0x4f,0x0,0x26,0x0,0x31,0x0,0x14,0x0,0x14,0x0,0x19,0x0,0x6,
0x0,0x26,0x0,0x7,0x0,0x2a,0x0,0x5,0x0,0x20,0x0,0x0,0x0,0x13,0x0,0xfe,
0xff,0x3,0x0,0xf0,0xff,0xde,0xff,0xc2,0xff,0xa4,0xff,0x82,0xff,0x6f,0xff,0x4a,
0xff,0x48,0xff,0x2d,0xff,0x2f,0xff,0x2c,0xff,0x2b,0xff,0x32,0xff,0x37,0xff,0x40,
0xff,0x48,0xff,0x58,0xff,0x56,0xff,0x6d,0xff,0x5a,0xff,0x7e,0xff,0x5c,0xff,0x8c,
0xff,0x67,0xff,0x8e,0xff,0x7f,0xff,0x8e,0xff,0x97,0xff,0x95,0xff,0xa8,0xff,0xa0,
0xff,0xb6,0xff,0xbd,0xff,0xce,0xff,0xef,0xff,0xef,0xff,0x13,0x0,0x5,0x0,0x15,
0x0,0x6,0x0,0xfe,0xff,0xfb,0xff,0xe1,0xff,0xf8,0xff,0xe1,0xff,0x5,0x0,0xff,
0xff,0x18,0x0,0x13,0x0,0x19,0x0,0x5,0x0,0xfb,0xff,0xe1,0xff,0xd0,0xff,0xc2,
0xff,0xb6,0xff,0xb9,0xff,0xb9,0xff,0xc3,0xff,0xcf,0xff,0xd2,0xff,0xe2,0xff,0xd2,
0xff,0xe3,0xff,0xba,0xff,0xd1,0xff,0x9d,0xff,0xb9,0xff,0x93,0xff,0x9f,0xff,0x95,
0xff,0x85,0xff,0x8c,0xff,0x71,0xff,0x77,0xff,0x6d,0xff,0x6a,0xff,0x77,0xff,0x71,
0xff,0x82,0xff,0x81,0xff,0x90,0xff,0x92,0xff,0xae,0xff,0xb1,0xff,0xdd,0xff,0xe5,
0xff,0x7,0x0,0x1a,0x0,0x11,0x0,0x32,0x0,0xff,0xff,0x28,0x0,0xe1,0xff,0xe,
0x0,0xca,0xff,0xf6,0xff,0xc9,0xff,0xee,0xff,0xe8,0xff,0x0,0x0,0x1c,0x0,0x2b,
0x0,0x4b,0x0,0x51,0x0,0x5a,0x0,0x54,0x0,0x40,0x0,0x38,0x0,0x13,0x0,0x13,
0x0,0xee,0xff,0xf4,0xff,0xe0,0xff,0xe5,0xff,0xdf,0xff,0xe1,0xff,0xdb,0xff,0xdc,
0xff,0xcf,0xff,0xcb,0xff,0xc5,0xff,0xb9,0xff,0xc1,0xff,0xb3,0xff,0xba,0xff,0xb1,
0xff,0xaa,0xff,0xa5,0xff,0x8a,0xff,0x87,0xff,0x5a,0xff,0x5c,0xff,0x29,0xff,0x31,
0xff,0x10,0xff,0x17,0xff,0x1b,0xff,0x16,0xff,0x36,0xff,0x26,0xff,0x49,0xff,0x36,
0xff,0x4d,0xff,0x34,0xff,0x47,0xff,0x25,0xff,0x42,0xff,0x29,0xff,0x49,0xff,0x48,
0xff,0x5c,0xff,0x6d,0xff,0x70,0xff,0x88,0xff,0x7b,0xff,0x91,0xff,0x81,0xff,0x92,
0xff,0x90,0xff,0x9b,0xff,0xa2,0xff,0xa8,0xff,0xaf,0xff,0xb0,0xff,0xbb,0xff,0xbd,
0xff,0xd0,0xff,0xd7,0xff,0xed,0xff,0xfa,0xff,0x11,0x0,0x23,0x0,0x3c,0x0,0x4c,
0x0,0x6f,0x0,0x74,0x0,0x9e,0x0,0x9b,0x0,0xbb,0x0,0xb8,0x0,0xc2,0x0,0xc2,
0x0,0xb0,0x0,0xb0,0x0,0x82,0x0,0x7c,0x0,0x49,0x0,0x42,0x0,0x1a,0x0,0x1d,
0x0,0x9,0x0,0xf,0x0,0x16,0x0,0x13,0x0,0x2a,0x0,0x1f,0x0,0x2d,0x0,0x27,
0x0,0x19,0x0,0x20,0x0,0xee,0xff,0xfe,0xff,0xbb,0xff,0xc6,0xff,0x91,0xff,0x90,
0xff,0x73,0xff,0x6a,0xff,0x62,0xff,0x59,0xff,0x67,0xff,0x64,0xff,0x80,0xff,0x83,
0xff,0xa6,0xff,0xad,0xff,0xce,0xff,0xd5,0xff,0xe8,0xff,0xe8,0xff,0xe7,0xff,0xe1,
0xff,0xcd,0xff,0xcc,0xff,0xb1,0xff,0xb5,0xff,0xae,0xff,0xb0,0xff,0xc2,0xff,0xc2,
0xff,0xe0,0xff,0xde,0xff,0x0,0x0,0xfc,0xff,0x17,0x0,0x11,0x0,0x16,0x0,0xe,
0x0,0x2,0x0,0xfc,0xff,0xf1,0xff,0xec,0xff,0xea,0xff,0xe1,0xff,0xe3,0xff,0xd3,
0xff,0xdf,0xff,0xca,0xff,0xe8,0xff,0xd0,0xff,0xf0,0xff,0xdb,0xff,0xdf,0xff,0xd9,
0xff,0xc1,0xff,0xc9,0xff,0xb2,0xff,0xba,0xff,0xaf,0xff,0xb2,0xff,0xa2,0xff,0xa6,
0xff,0x8a,0xff,0x96,0xff,0x7a,0xff,0x82,0xff,0x6b,0xff,0x65,0xff,0x4d,0xff,0x41,
0xff,0x2b,0xff,0x2e,0xff,0x1d,0xff,0x34,0xff,0x2b,0xff,0x45,0xff,0x40,0xff,0x4d,
0xff,0x40,0xff,0x40,0xff,0x24,0xff,0x2b,0xff,0x2,0xff,0x24,0xff,0xf5,0xfe,0x33,
0xff,0x15,0xff,0x57,0xff,0x57,0xff,0x85,0xff,0x9d,0xff,0xb4,0xff,0xd3,0xff,0xe1,
0xff,0xf7,0xff,0x5,0x0,0x10,0x0,0x22,0x0,0x3d,0x0,0x4d,0x0,0x7d,0x0,0x8b,
0x0,0xae,0x0,0xb8,0x0,0xb3,0x0,0xb8,0x0,0x95,0x0,0x95,0x0,0x7a,0x0,0x77,
0x0,0x81,0x0,0x77,0x0,0x9c,0x0,0x8a,0x0,0xb5,0x0,0x9f,0x0,0xba,0x0,0x9c,
0x0,0x95,0x0,0x70,0x0,0x59,0x0,0x33,0x0,0x33,0x0,0x10,0x0,0x1e,0x0,0xb,
0x0,0xf6,0xff,0xfd,0xff,0xbc,0xff,0xd1,0xff,0x8d,0xff,0x97,0xff,0x79,0xff,0x74,
0xff,0x85,0xff,0x7c,0xff,0xb4,0xff,0xab,0xff,0xde,0xff,0xd4,0xff,0x91,0xff,0x8b,
0xff,0x8f,0xfe,0x97,0xfe,0x67,0xfd,0x79,0xfd,0xe4,0xfc,0xf4,0xfc,0x11,0xfd,0x1f,
0xfd,0x64,0xfd,0x73,0xfd,0x84,0xfd,0x95,0xfd,0x80,0xfd,0x93,0xfd,0x93,0xfd,0xa9,
0xfd,0xee,0xfd,0xb,0xfe,0xa9,0xfe,0xcd,0xfe,0xa9,0xff,0xd1,0xff,0x95,0x0,0xbd,
0x0,0x25,0x1,0x46,0x1,0x73,0x1,0x8a,0x1,0xb5,0x1,0xc7,0x1,0xdb,0x1,0xf0,
0x1,0xd2,0x1,0xe4,0x1,0xb4,0x1,0xba,0x1,0x9a,0x1,0x90,0x1,0x80,0x1,0x70,
0x1,0x61,0x1,0x59,0x1,0x48,0x1,0x4c,0x1,0x45,0x1,0x4f,0x1,0x57,0x1,0x5e,
0x1,0x67,0x1,0x63,0x1,0x66,0x1,0x5c,0x1,0x4d,0x1,0x42,0x1,0x10,0x1,0xff,
0x0,0xb6,0x0,0x9e,0x0,0x5c,0x0,0x47,0x0,0xb,0x0,0xff,0xff,0xb4,0xff,0xab,
0xff,0x51,0xff,0x41,0xff,0xe7,0xfe,0xd2,0xfe,0x87,0xfe,0x74,0xfe,0x3c,0xfe,0x2b,
0xfe,0xf7,0xfd,0xef,0xfd,0xa4,0xfd,0xb0,0xfd,0x52,0xfd,0x69,0xfd,0x1f,0xfd,0x36,
0xfd,0x17,0xfd,0x32,0xfd,0x3e,0xfd,0x5d,0xfd,0x98,0xfd,0xb1,0xfd,0x1f,0xfe,0x2e,
0xfe,0xc7,0xfe,0xcb,0xfe,0x6f,0xff,0x74,0xff,0xf6,0xff,0x7,0x0,0x54,0x0,0x6e,
0x0,0x91,0x0,0xaa,0x0,0xb9,0x0,0xcd,0x0,0xee,0x0,0xf4,0x0,0x36,0x1,0x34,
0x1,0x79,0x1,0x79,0x1,0xab,0x1,0xa1,0x1,0xd2,0x1,0xb6,0x1,0xe5,0x1,0xc6,
0x1,0xd1,0x1,0xc2,0x1,0x9a,0x1,0xa0,0x1,0x67,0x1,0x72,0x1,0x48,0x1,0x40,
0x1,0x16,0x1,0xf9,0x0,0xba,0x0,0x9f,0x0,0x62,0x0,0x57,0x0,0x39,0x0,0x38,
0x0,0x21,0x0,0x21,0x0,0xf0,0xff,0xed,0xff,0xa9,0xff,0xa2,0xff,0x5e,0xff,0x59,
0xff,0xf,0xff,0xe,0xff,0xbd,0xfe,0xc5,0xfe,0x81,0xfe,0x96,0xfe,0x65,0xfe,0x80,
0xfe,0x52,0xfe,0x66,0xfe,0x41,0xfe,0x4b,0xfe,0x47,0xfe,0x4a,0xfe,0x59,0xfe,0x5e,
0xfe,0x51,0xfe,0x5b,0xfe,0x2e,0xfe,0x3a,0xfe,0x33,0xfe,0x41,0xfe,0x96,0xfe,0xaa,
0xfe,0x3e,0xff,0x56,0xff,0xe6,0xff,0xf8,0xff,0x5f,0x0,0x6a,0x0,0xa1,0x0,0xac,
0x0,0xc7,0x0,0xd2,0x0,0xf7,0x0,0xfd,0x0,0x31,0x1,0x38,0x1,0x51,0x1,0x65,
0x1,0x43,0x1,0x5e,0x1,0x15,0x1,0x27,0x1,0xe1,0x0,0xe2,0x0,0xb3,0x0,0xa9,
0x0,0x86,0x0,0x7e,0x0,0x4f,0x0,0x4c,0x0,0xb,0x0,0x9,0x0,0xc3,0xff,0xc1,
0xff,0x8d,0xff,0x88,0xff,0x7d,0xff,0x71,0xff,0x88,0xff,0x7b,0xff,0x90,0xff,0x90,
0xff,0x94,0xff,0x9d,0xff,0x9b,0xff,0xa1,0xff,0x96,0xff,0x9a,0xff,0x73,0xff,0x77,
0xff,0x3c,0xff,0x37,0xff,0x9,0xff,0xf8,0xfe,0xec,0xfe,0xdb,0xfe,0xee,0xfe,0xeb,
0xfe,0xc,0xff,0x16,0xff,0x2d,0xff,0x3a,0xff,0x35,0xff,0x3e,0xff,0x27,0xff,0x2d,
0xff,0x1f,0xff,0x24,0xff,0x39,0xff,0x3d,0xff,0x83,0xff,0x87,0xff,0xec,0xff,0xf2,
0xff,0x52,0x0,0x5f,0x0,0xa6,0x0,0xbc,0x0,0xe7,0x0,0x3,0x1,0x1b,0x1,0x39,
0x1,0x4a,0x1,0x5f,0x1,0x60,0x1,0x5d,0x1,0x47,0x1,0x32,0x1,0x12,0x1,0xfd,
0x0,0xe1,0x0,0xd5,0x0,0xbb,0x0,0xba,0x0,0x8d,0x0,0x99,0x0,0x43,0x0,0x54,
0x0,0xec,0xff,0xf8,0xff,0xa8,0xff,0xae,0xff,0x84,0xff,0x8b,0xff,0x85,0xff,0x90,
0xff,0xa6,0xff,0xb1,0xff,0xbc,0xff,0xc0,0xff,0xa7,0xff,0xa1,0xff,0x74,0xff,0x68,
0xff,0x4b,0xff,0x3c,0xff,0x43,0xff,0x31,0xff,0x50,0xff,0x41,0xff,0x57,0xff,0x50,
0xff,0x49,0xff,0x4c,0xff,0x31,0xff,0x3a,0xff,0x2d,0xff,0x33,0xff,0x4c,0xff,0x47,
0xff,0x7c,0xff,0x71,0xff,0xa0,0xff,0x95,0xff,0xa9,0xff,0x9d,0xff,0x9c,0xff,0x90,
0xff,0x9e,0xff,0x97,0xff,0xd3,0xff,0xd5,0xff,0x31,0x0,0x37,0x0,0x84,0x0,0x87,
0x0,0xa3,0x0,0xa1,0x0,0x97,0x0,0x91,0x0,0x82,0x0,0x7f,0x0,0x81,0x0,0x87,
0x0,0x9d,0x0,0xab,0x0,0xc4,0x0,0xd2,0x0,0xd0,0x0,0xd9,0x0,0xab,0x0,0xb4,
0x0,0x6f,0x0,0x7c,0x0,0x49,0x0,0x51,0x0,0x40,0x0,0x3b,0x0,0x3d,0x0,0x2a,
0x0,0x29,0x0,0xe,0x0,0x7,0x0,0xf1,0xff,0xe1,0xff,0xde,0xff,0xb9,0xff,0xcb,
0xff,0x9f,0xff,0xb9,0xff,0xa0,0xff,0xb6,0xff,0xa6,0xff,0xb7,0xff,0x8f,0xff,0x9e,
0xff,0x66,0xff,0x6d,0xff,0x53,0xff,0x51,0xff,0x60,0xff,0x63,0xff,0x7a,0xff,0x8c,
0xff,0x90,0xff,0xb0,0xff,0x99,0xff,0xbd,0xff,0x87,0xff,0xa3,0xff,0x60,0xff,0x70,
0xff,0x46,0xff,0x4d,0xff,0x56,0xff,0x5b,0xff,0x7d,0xff,0x84,0xff,0x9d,0xff,0x9e,
0xff,0xb2,0xff,0xa9,0xff,0xd0,0xff,0xc4,0xff,0xf9,0xff,0xef,0xff,0x1c,0x0,0x15,
0x0,0x30,0x0,0x32,0x0,0x3c,0x0,0x48,0x0,0x45,0x0,0x4d,0x0,0x4f,0x0,0x47,
0x0,0x5d,0x0,0x4e,0x0,0x67,0x0,0x5d,0x0,0x5a,0x0,0x53,0x0,0x3b,0x0,0x2a,
0x0,0x1d,0x0,0x1,0x0,0xc,0x0,0xed,0xff,0x4,0x0,0xe8,0xff,0xf7,0xff,0xdf,
0xff,0xdb,0xff,0xcd,0xff,0xbd,0xff,0xbc,0xff,0xab,0xff,0xb0,0xff,0xa8,0xff,0xab,
0xff,0xb8,0xff,0xb8,0xff,0xd4,0xff,0xcf,0xff,0xe2,0xff,0xe3,0xff,0xda,0xff,0xef,
0xff,0xd0,0xff,0xf8,0xff,0xd4,0xff,0xff,0xff,0xda,0xff,0xf9,0xff,0xc8,0xff,0xd9,
0xff,0xa1,0xff,0xae,0xff,0x8c,0xff,0x99,0xff,0xa5,0xff,0xa7,0xff,0xc9,0xff,0xcb,
0xff,0xce,0xff,0xe4,0xff,0xb8,0xff,0xde,0xff,0xaa,0xff,0xc9,0xff,0xb6,0xff,0xc9,
0xff,0xd8,0xff,0xea,0xff,0xa,0x0,0x1d,0x0,0x3d,0x0,0x4d,0x0,0x5c,0x0,0x6b,
0x0,0x56,0x0,0x6d,0x0,0x3f,0x0,0x5b,0x0,0x3d,0x0,0x50,0x0,0x4e,0x0,0x50,
0x0,0x5b,0x0,0x4b,0x0,0x57,0x0,0x40,0x0,0x45,0x0,0x2e,0x0,0x2a,0x0,0xf,
0x0,0x10,0x0,0xeb,0xff,0x0,0x0,0xd9,0xff,0xfe,0xff,0xe2,0xff,0x10,0x0,0x0,
0x0,0x2a,0x0,0x1c,0x0,0x2d,0x0,0x20,0x0,0xf,0x0,0x9,0x0,0xe5,0xff,0xe6,
0xff,0xcf,0xff,0xd0,0xff,0xd9,0xff,0xe1,0xff,0xf5,0xff,0x7,0x0,0x9,0x0,0x18,
0x0,0x8,0x0,0x7,0x0,0xf5,0xff,0xe5,0xff,0xda,0xff,0xc6,0xff,0xbf,0xff,0xb0,
0xff,0xa9,0xff,0x9f,0xff,0x95,0xff,0x91,0xff,0x81,0xff,0x81,0xff,0x6c,0xff,0x6f,
0xff,0x69,0xff,0x76,0xff,0x94,0xff,0xaa,0xff,0xdd,0xff,0xf2,0xff,0x14,0x0,0x18,
0x0,0x2b,0x0,0x19,0x0,0x37,0x0,0x19,0x0,0x49,0x0,0x30,0x0,0x5f,0x0,0x58,
0x0,0x6a,0x0,0x7c,0x0,0x67,0x0,0x89,0x0,0x63,0x0,0x7c,0x0,0x61,0x0,0x62,
0x0,0x5c,0x0,0x4b,0x0,0x52,0x0,0x3d,0x0,0x4c,0x0,0x36,0x0,0x52,0x0,0x3d,
0x0,0x65,0x0,0x52,0x0,0x6e,0x0,0x63,0x0,0x5c,0x0,0x60,0x0,0x38,0x0,0x4f,
0x0,0x1c,0x0,0x43,0x0,0x17,0x0,0x40,0x0,0x20,0x0,0x3c,0x0,0x24,0x0,0x34,
0x0,0x1d,0x0,0x27,0x0,0x5,0x0,0xd,0x0,0xd8,0xff,0xdf,0xff,0xab,0xff,0xb9,
0xff,0x9e,0xff,0xb8,0xff,0xad,0xff,0xcd,0xff,0xb8,0xff,0xd2,0xff,0xb4,0xff,0xc1,
0xff,0xaa,0xff,0xb1,0xff,0x9b,0xff,0xa9,0xff,0x7f,0xff,0x9a,0xff,0x67,0xff,0x80,
0xff,0x61,0xff,0x67,0xff,0x62,0xff,0x56,0xff,0x65,0xff,0x57,0xff,0x7f,0xff,0x77,
0xff,0xad,0xff,0xa5,0xff,0xcd,0xff,0xb9,0xff,0xd3,0xff,0xae,0xff,0xe1,0xff,0xb0,
0xff,0xb,0x0,0xd9,0xff,0x39,0x0,0x16,0x0,0x53,0x0,0x41,0x0,0x5f,0x0,0x50,
0x0,0x6a,0x0,0x4e,0x0,0x6e,0x0,0x44,0x0,0x6f,0x0,0x3d,0x0,0x78,0x0,0x46,
0x0,0x86,0x0,0x5e,0x0,0x83,0x0,0x6b,0x0,0x6e,0x0,0x62,0x0,0x57,0x0,0x4f,
0x0,0x44,0x0,0x3a,0x0,0x2f,0x0,0x25,0x0,0x19,0x0,0x16,0x0,0xb,0x0,0x18,
0x0,0xc,0x0,0x27,0x0,0x1c,0x0,0x37,0x0,0x2b,0x0,0x41,0x0,0x26,0x0,0x44,
0x0,0x9,0x0,0x39,0x0,0xe2,0xff,0x1e,0x0,0xbe,0xff,0xfa,0xff,0x9d,0xff,0xd2,
0xff,0x7e,0xff,0xa8,0xff,0x66,0xff,0x85,0xff,0x59,0xff,0x6e,0xff,0x5a,0xff,0x65,
0xff,0x69,0xff,0x6f,0xff,0x81,0xff,0x8c,0xff,0x99,0xff,0xae,0xff,0xaf,0xff,0xc1,
0xff,0xcd,0xff,0xca,0xff,0xfc,0xff,0xe0,0xff,0x30,0x0,0xc,0x0,0x51,0x0,0x3a,
0x0,0x54,0x0,0x4d,0x0,0x42,0x0,0x3f,0x0,0x2a,0x0,0x25,0x0,0x1e,0x0,0x14,
0x0,0x26,0x0,0xb,0x0,0x33,0x0,0x5,0x0,0x36,0x0,0x9,0x0,0x2f,0x0,0x18,
0x0,0x27,0x0,0x25,0x0,0x24,0x0,0x1f,0x0,0x27,0x0,0x15,0x0,0x38,0x0,0x21,
0x0,0x52,0x0,0x45,0x0,0x63,0x0,0x65,0x0,0x5e,0x0,0x6c,0x0,0x4a,0x0,0x60,
0x0,0x3d,0x0,0x4f,0x0,0x3c,0x0,0x41,0x0,0x36,0x0,0x32,0x0,0x19,0x0,0x16,
0x0,0xe2,0xff,0xea,0xff,0xa6,0xff,0xbd,0xff,0x85,0xff,0xa8,0xff,0x98,0xff,0xb4,
0xff,0xcd,0xff,0xd4,0xff,0xf3,0xff,0xe9,0xff,0xee,0xff,0xe1,0xff,0xcf,0xff,0xc5,
0xff,0xb9,0xff,0xb4,0xff,0xc6,0xff,0xc8,0xff,0xfb,0xff,0xff,0xff,0x43,0x0,0x46,
0x0,0x7a,0x0,0x77,0x0,0x83,0x0,0x7b,0x0,0x66,0x0,0x5f,0x0,0x4f,0x0,0x50,
0x0,0x60,0x0,0x5f,0x0,0x8c,0x0,0x72,0x0,0xa8,0x0,0x72,0x0,0xa0,0x0,0x69,
0x0,0x7c,0x0,0x5f,0x0,0x57,0x0,0x53,0x0,0x4d,0x0,0x50,0x0,0x62,0x0,0x64,
0x0,0x78,0x0,0x7d,0x0,0x71,0x0,0x7b,0x0,0x4e,0x0,0x5d,0x0,0x27,0x0,0x3f,
0x0,0xb,0x0,0x29,0x0,0xfb,0xff,0x13,0x0,0xec,0xff,0xfe,0xff,0xd9,0xff,0xed,
0xff,0xbf,0xff,0xda,0xff,0x9c,0xff,0xba,0xff,0x77,0xff,0x9a,0xff,0x64,0xff,0x88,
0xff,0x65,0xff,0x7b,0xff,0x66,0xff,0x66,0xff,0x60,0xff,0x5b,0xff,0x6a,0xff,0x72,
0xff,0x91,0xff,0xa4,0xff,0xca,0xff,0xd5,0xff,0x2,0x0,0xfe,0xff,0x28,0x0,0x1c,
0x0,0x2e,0x0,0x27,0x0,0x1f,0x0,0x23,0x0,0x17,0x0,0x22,0x0,0x2b,0x0,0x2e,
0x0,0x54,0x0,0x3a,0x0,0x77,0x0,0x3f,0x0,0x7f,0x0,0x41,0x0,0x6d,0x0,0x43,
0x0,0x5a,0x0,0x43,0x0,0x56,0x0,0x45,0x0,0x61,0x0,0x4c,0x0,0x6b,0x0,0x52,
0x0,0x65,0x0,0x50,0x0,0x51,0x0,0x46,0x0,0x41,0x0,0x3e,0x0,0x40,0x0,0x3e,
0x0,0x46,0x0,0x47,0x0,0x48,0x0,0x4e,0x0,0x41,0x0,0x4b,0x0,0x30,0x0,0x39,
0x0,0x11,0x0,0x1d,0x0,0xeb,0xff,0xfa,0xff,0xc1,0xff,0xcf,0xff,0x93,0xff,0x9f,
0xff,0x67,0xff,0x78,0xff,0x49,0xff,0x66,0xff,0x3b,0xff,0x5e,0xff,0x35,0xff,0x58,
0xff,0x3d,0xff,0x64,0xff,0x62,0xff,0x8a,0xff,0x9c,0xff,0xb8,0xff,0xca,0xff,0xd5,
0xff,0xde,0xff,0xde,0xff,0xf0,0xff,0xeb,0xff,0xb,0x0,0x0,0x0,0x1c,0x0,0x13,
0x0,0x18,0x0,0x1d,0x0,0x19,0x0,0x27,0x0,0x37,0x0,0x3a,0x0,0x60,0x0,0x4d,
0x0,0x79,0x0,0x5a,0x0,0x83,0x0,0x65,0x0,0x8a,0x0,0x72,0x0,0x8c,0x0,0x77,
0x0,0x85,0x0,0x70,0x0,0x7e,0x0,0x6a,0x0,0x84,0x0,0x79,0x0,0x97,0x0,0x98,
0x0,0xaa,0x0,0xab,0x0,0xaa,0x0,0x9d,0x0,0x92,0x0,0x7c,0x0,0x6e,0x0,0x5e,
0x0,0x4a,0x0,0x44,0x0,0x20,0x0,0x1e,0x0,0xeb,0xff,0xef,0xff,0xbb,0xff,0xc8,
0xff,0xa9,0xff,0xb9,0xff,0xb0,0xff,0xbd,0xff,0xb4,0xff,0xc4,0xff,0xa5,0xff,0xb6,
0xff,0x83,0xff,0x8f,0xff,0x63,0xff,0x6d,0xff,0x5f,0xff,0x69,0xff,0x76,0xff,0x7c,
0xff,0x8e,0xff,0x90,0xff,0xa0,0xff,0xa4,0xff,0xbe,0xff,0xc8,0xff,0xe9,0xff,0xf2,
0xff,0xc,0x0,0xe,0x0,0x20,0x0,0x1d,0x0,0x34,0x0,0x35,0x0,0x49,0x0,0x56,
0x0,0x53,0x0,0x63,0x0,0x53,0x0,0x5a,0x0,0x57,0x0,0x53,0x0,0x65,0x0,0x58,
0x0,0x75,0x0,0x5b,0x0,0x84,0x0,0x62,0x0,0x97,0x0,0x81,0x0,0xae,0x0,0xad,
0x0,0xbd,0x0,0xc5,0x0,0xb8,0x0,0xbc,0x0,0xa2,0x0,0x9c,0x0,0x81,0x0,0x73,
0x0,0x5c,0x0,0x4c,0x0,0x40,0x0,0x32,0x0,0x38,0x0,0x28,0x0,0x3a,0x0,0x22,
0x0,0x34,0x0,0x19,0x0,0x25,0x0,0x9,0x0,0x12,0x0,0xf6,0xff,0xf2,0xff,0xdd,
0xff,0xc0,0xff,0xb8,0xff,0x90,0xff,0x8f,0xff,0x78,0xff,0x78,0xff,0x7b,0xff,0x7d,
0xff,0x86,0xff,0x8d,0xff,0x8f,0xff,0x96,0xff,0x9a,0xff,0x9c,0xff,0xae,0xff,0xac,
0xff,0xca,0xff,0xce,0xff,0xec,0xff,0xff,0xff,0x15,0x0,0x33,0x0,0x3e,0x0,0x5c,
0x0,0x5b,0x0,0x7a,0x0,0x6b,0x0,0x8b,0x0,0x75,0x0,0x88,0x0,0x7a,0x0,0x77,
0x0,0x77,0x0,0x67,0x0,0x6b,0x0,0x5f,0x0,0x5a,0x0,0x53,0x0,0x42,0x0,0x3e,
0x0,0x24,0x0,0x27,0x0,0x6,0x0,0x13,0x0,0xef,0xff,0x1,0x0,0xe2,0xff,0xf4,
0xff,0xdf,0xff,0xea,0xff,0xe5,0xff,0xe7,0xff,0xeb,0xff,0xe9,0xff,0xe8,0xff,0xe8,
0xff,0xd7,0xff,0xd9,0xff,0xbd,0xff,0xc0,0xff,0xa7,0xff,0xaa,0xff,0xa3,0xff,0xa4,
0xff,0xad,0xff,0xb0,0xff,0xba,0xff,0xbd,0xff,0xbd,0xff,0xb8,0xff,0xb5,0xff,0xa9,
0xff,0xb1,0xff,0xa6,0xff,0xb8,0xff,0xaf,0xff,0xca,0xff,0xb5,0xff,0xe1,0xff,0xbe,
0xff,0x1,0x0,0xe3,0xff,0x28,0x0,0x1c,0x0,0x49,0x0,0x45,0x0,0x5b,0x0,0x53,
0x0,0x69,0x0,0x5f,0x0,0x80,0x0,0x7b,0x0,0x9f,0x0,0x99,0x0,0xb4,0x0,0xa9,
0x0,0xb4,0x0,0xaf,0x0,0xa6,0x0,0xaf,0x0,0x8f,0x0,0x9f,0x0,0x6e,0x0,0x75,
0x0,0x40,0x0,0x41,0x0,0x17,0x0,0x18,0x0,0x1,0x0,0x3,0x0,0xf5,0xff,0xfb,
0xff,0xe1,0xff,0xe9,0xff,0xc0,0xff,0xc3,0xff,0x9a,0xff,0x96,0xff,0x7b,0xff,0x77,
0xff,0x65,0xff,0x69,0xff,0x51,0xff,0x5a,0xff,0x43,0xff,0x4f,0xff,0x49,0xff,0x58,
0xff,0x69,0xff,0x72,0xff,0x91,0xff,0x90,0xff,0xb1,0xff,0xad,0xff,0xc2,0xff,0xc3,
0xff,0xc9,0xff,0xd3,0xff,0xce,0xff,0xe2,0xff,0xdb,0xff,0xf2,0xff,0xf3,0xff,0x0,
0x0,0x10,0x0,0xe,0x0,0x30,0x0,0x27,0x0,0x52,0x0,0x4f,0x0,0x76,0x0,0x7e,
0x0,0x98,0x0,0xae,0x0,0xb3,0x0,0xd7,0x0,0xc3,0x0,0xe4,0x0,0xc7,0x0,0xd2,
0x0,0xbe,0x0,0xb7,0x0,0xad,0x0,0xa6,0x0,0x9d,0x0,0x9f,0x0,0x94,0x0,0x92,
0x0,0x8d,0x0,0x7d,0x0,0x7f,0x0,0x68,0x0,0x66,0x0,0x55,0x0,0x48,0x0,0x3c,
0x0,0x26,0x0,0x1c,0x0,0xfe,0xff,0xfa,0xff,0xd5,0xff,0xd4,0xff,0xb5,0xff,0xa5,
0xff,0x9a,0xff,0x77,0xff,0x81,0xff,0x5f,0xff,0x6b,0xff,0x5c,0xff,0x63,0xff,0x61,
0xff,0x69,0xff,0x6e,0xff,0x6b,0xff,0x7f,0xff,0x66,0xff,0x81,0xff,0x6c,0xff,0x77,
0xff,0x85,0xff,0x79,0xff,0xac,0xff,0x91,0xff,0xce,0xff,0xad,0xff,0xdd,0xff,0xc1,
0xff,0xdf,0xff,0xd3,0xff,0xec,0xff,0xf0,0xff,0xe,0x0,0x1b,0x0,0x3d,0x0,0x4e,
0x0,0x6f,0x0,0x80,0x0,0x9f,0x0,0xa5,0x0,0xc1,0x0,0xc0,0x0,0xd5,0x0,0xd7,
0x0,0xed,0x0,0xeb,0x0,0x5,0x1,0xfa,0x0,0x8,0x1,0xfd,0x0,0xf3,0x0,0xf4,
0x0,0xd9,0x0,0xe7,0x0,0xc4,0x0,0xd5,0x0,0xba,0x0,0xbc,0x0,0xb0,0x0,0x9f,
0x0,0x97,0x0,0x80,0x0,0x68,0x0,0x5a,0x0,0x27,0x0,0x29,0x0,0xea,0xff,0xf2,
0xff,0xbd,0xff,0xc0,0xff,0x9b,0xff,0x97,0xff,0x77,0xff,0x71,0xff,0x4e,0xff,0x4c,
0xff,0x29,0xff,0x2b,0xff,0xf,0xff,0x11,0xff,0x1,0xff,0x6,0xff,0x1,0xff,0xa,
0xff,0x13,0xff,0x13,0xff,0x2a,0xff,0x1f,0xff,0x38,0xff,0x2d,0xff,0x3a,0xff,0x37,
0xff,0x37,0xff,0x3d,0xff,0x41,0xff,0x4b,0xff,0x60,0xff,0x6d,0xff,0x8c,0xff,0x99,
0xff,0xb5,0xff,0xbb,0xff,0xdc,0xff,0xe1,0xff,0xf,0x0,0x1b,0x0,0x4d,0x0,0x5c,
0x0,0x7c,0x0,0x88,0x0,0x95,0x0,0x99,0x0,0xa5,0x0,0xa1,0x0,0xb8,0x0,0xae,
0x0,0xcc,0x0,0xbe,0x0,0xd8,0x0,0xd1,0x0,0xdf,0x0,0xea,0x0,0xe2,0x0,0xf5,
0x0,0xd9,0x0,0xe5,0x0,0xc7,0x0,0xca,0x0,0xc0,0x0,0xba,0x0,0xc1,0x0,0xb7,
0x0,0xbb,0x0,0xac,0x0,0xa9,0x0,0x8d,0x0,0x8b,0x0,0x63,0x0,0x5d,0x0,0x37,
0x0,0x25,0x0,0x12,0x0,0xfe,0xff,0x2,0x0,0xf8,0xff,0xfd,0xff,0xf7,0xff,0xef,
0xff,0xd8,0xff,0xcc,0xff,0xa2,0xff,0x9f,0xff,0x75,0xff,0x7d,0xff,0x5f,0xff,0x6b,
0xff,0x52,0xff,0x5d,0xff,0x48,0xff,0x52,0xff,0x47,0xff,0x4b,0xff,0x4a,0xff,0x46,
0xff,0x4a,0xff,0x4a,0xff,0x54,0xff,0x5b,0xff,0x6b,0xff,0x75,0xff,0x84,0xff,0x8b,
0xff,0x9f,0xff,0x9b,0xff,0xbf,0xff,0xb4,0xff,0xdc,0xff,0xdf,0xff,0xf1,0xff,0x10,
0x0,0xa,0x0,0x3c,0x0,0x32,0x0,0x60,0x0,0x56,0x0,0x74,0x0,0x5f,0x0,0x75,
0x0,0x5b,0x0,0x71,0x0,0x5f,0x0,0x75,0x0,0x71,0x0,0x8b,0x0,0x88,0x0,0xa9,
0x0,0x9b,0x0,0xbd,0x0,0x9a,0x0,0xb4,0x0,0x84,0x0,0x89,0x0,0x64,0x0,0x59,
0x0,0x4f,0x0,0x47,0x0,0x4d,0x0,0x49,0x0,0x53,0x0,0x48,0x0,0x54,0x0,0x3b,
0x0,0x49,0x0,0x26,0x0,0x2a,0x0,0xb,0x0,0x3,0x0,0xed,0xff,0xee,0xff,0xda,
0xff,0xf1,0xff,0xd8,0xff,0xf6,0xff,0xd9,0xff,0xf0,0xff,0xd3,0xff,0xe8,0xff,0xd3,
0xff,0xec,0xff,0xdd,0xff,0xf4,0xff,0xe7,0xff,0xfb,0xff,0xee,0xff,0x1,0x0,0xfe,
0xff,0x6,0x0,0x19,0x0,0x9,0x0,0x2c,0x0,0xa,0x0,0x2c,0x0,0x16,0x0,0x28,
0x0,0x31,0x0,0x2e,0x0,0x4c,0x0,0x3d,0x0,0x5a,0x0,0x53,0x0,0x65,0x0,0x68,
0x0,0x6a,0x0,0x6e,0x0,0x5c,0x0,0x5f,0x0,0x3d,0x0,0x47,0x0,0x24,0x0,0x38,
0x0,0x20,0x0,0x2e,0x0,0x2a,0x0,0x26,0x0,0x31,0x0,0x29,0x0,0x33,0x0,0x3a,
0x0,0x33,0x0,0x45,0x0,0x2a,0x0,0x3b,0x0,0x19,0x0,0x1e,0x0,0x7,0x0,0xfc,
0xff,0xfb,0xff,0xe4,0xff,0xf7,0xff,0xdd,0xff,0xf5,0xff,0xe2,0xff,0xe9,0xff,0xe4,
0xff,0xc9,0xff,0xcc,0xff,0x9d,0xff,0xa3,0xff,0x7c,0xff,0x82,0xff,0x71,0xff,0x72,
0xff,0x77,0xff,0x6c,0xff,0x82,0xff,0x73,0xff,0x88,0xff,0x91,0xff,0x91,0xff,0xb5,
0xff,0xa6,0xff,0xc0,0xff,0xbe,0xff,0xb8,0xff,0xd0,0xff,0xc3,0xff,0xe5,0xff,0xe6,
0xff,0xfe,0xff,0x7,0x0,0x18,0x0,0x1e,0x0,0x30,0x0,0x2d,0x0,0x41,0x0,0x35,
0x0,0x4a,0x0,0x34,0x0,0x48,0x0,0x2f,0x0,0x3e,0x0,0x30,0x0,0x39,0x0,0x36,
0x0,0x40,0x0,0x41,0x0,0x4f,0x0,0x57,0x0,0x5c,0x0,0x6c,0x0,0x5c,0x0,0x6f,
0x0,0x50,0x0,0x64,0x0,0x4a,0x0,0x57,0x0,0x4c,0x0,0x4e,0x0,0x4d,0x0,0x42,
0x0,0x47,0x0,0x33,0x0,0x3e,0x0,0x2d,0x0,0x36,0x0,0x32,0x0,0x2f,0x0,0x30,
0x0,0x2a,0x0,0x28,0x0,0x23,0x0,0x25,0x0,0x13,0x0,0x1d,0x0,0xf8,0xff,0x2,
0x0,0xd6,0xff,0xda,0xff,0xbf,0xff,0xbf,0xff,0xbc,0xff,0xba,0xff,0xc0,0xff,0xbc,
0xff,0xb5,0xff,0xbb,0xff,0xa2,0xff,0xb4,0xff,0x8f,0xff,0xa1,0xff,0x86,0xff,0x8e,
0xff,0x8f,0xff,0x8a,0xff,0x9e,0xff,0x90,0xff,0x9d,0xff,0x8d,0xff,0x8d,0xff,0x84,
0xff,0x86,0xff,0x8a,0xff,0x99,0xff,0xa3,0xff,0xba,0xff,0xbf,0xff,0xd5,0xff,0xd5,
0xff,0xe7,0xff,0xea,0xff,0xf2,0xff,0xfa,0xff,0xf3,0xff,0xff,0xff,0xf2,0xff,0x1,
0x0,0x2,0x0,0x15,0x0,0x27,0x0,0x3b,0x0,0x4b,0x0,0x59,0x0,0x5a,0x0,0x60,
0x0,0x61,0x0,0x60,0x0,0x72,0x0,0x6a,0x0,0x87,0x0,0x7a,0x0,0x9d,0x0,0x91,
0x0,0xae,0x0,0xad,0x0,0xad,0x0,0xb7,0x0,0x92,0x0,0x9f,0x0,0x72,0x0,0x7c,
0x0,0x5f,0x0,0x6c,0x0,0x56,0x0,0x68,0x0,0x4b,0x0,0x5d,0x0,0x42,0x0,0x55,
0x0,0x42,0x0,0x56,0x0,0x40,0x0,0x4d,0x0,0x31,0x0,0x2e,0x0,0x1a,0x0,0x9,
0x0,0x8,0x0,0xec,0xff,0xf8,0xff,0xd3,0xff,0xe6,0xff,0xbe,0xff,0xdd,0xff,0xbd,
0xff,0xde,0xff,0xca,0xff,0xd2,0xff,0xc4,0xff,0xb4,0xff,0xa5,0xff,0x97,0xff,0x8d,
0xff,0x8c,0xff,0x92,0xff,0x96,0xff,0xa4,0xff,0xaf,0xff,0xac,0xff,0xc5,0xff,0xab,
0xff,0xc7,0xff,0xa3,0xff,0xb7,0xff,0x91,0xff,0xab,0xff,0x87,0xff,0xb4,0xff,0x9f,
0xff,0xcf,0xff,0xd1,0xff,0xec,0xff,0xfe,0xff,0x0,0x0,0x11,0x0,0x8,0x0,0x12,
0x0,0xe,0x0,0x14,0x0,0x22,0x0,0x25,0x0,0x41,0x0,0x43,0x0,0x53,0x0,0x60,
0x0,0x56,0x0,0x6c,0x0,0x56,0x0,0x69,0x0,0x58,0x0,0x65,0x0,0x59,0x0,0x6d,
0x0,0x65,0x0,0x84,0x0,0x7e,0x0,0x9e,0x0,0x92,0x0,0xa3,0x0,0x85,0x0,0x8c,
0x0,0x61,0x0,0x6b,0x0,0x44,0x0,0x58,0x0,0x32,0x0,0x51,0x0,0x18,0x0,0x3f,
0x0,0xf3,0xff,0x13,0x0,0xd4,0xff,0xe0,0xff,0xc2,0xff,0xc4,0xff,0xba,0xff,0xc2,
0xff,0xba,0xff,0xcd,0xff,0xc2,0xff,0xd4,0xff,0xce,0xff,0xd4,0xff,0xd0,0xff,0xc7,
0xff,0xc0,0xff,0xad,0xff,0xaa,0xff,0x94,0xff,0xa1,0xff,0x8c,0xff,0xa1,0xff,0x8e,
0xff,0x9c,0xff,0x8d,0xff,0x8c,0xff,0x81,0xff,0x7b,0xff,0x6d,0xff,0x75,0xff,0x5e,
0xff,0x7b,0xff,0x64,0xff,0x87,0xff,0x7f,0xff,0x95,0xff,0x9b,0xff,0xa2,0xff,0xa5,
0xff,0xac,0xff,0xa8,0xff,0xba,0xff,0xb6,0xff,0xd4,0xff,0xc8,0xff,0xf1,0xff,0xdc,
0xff,0x5,0x0,0xfc,0xff,0x10,0x0,0x22,0x0,0x10,0x0,0x36,0x0,0xb,0x0,0x30,
0x0,0xe,0x0,0x30,0x0,0x25,0x0,0x4d,0x0,0x48,0x0,0x71,0x0,0x66,0x0,0x88,
0x0,0x7b,0x0,0x98,0x0,0x8b,0x0,0xa5,0x0,0x8c,0x0,0xa0,0x0,0x7d,0x0,0x87,
0x0,0x6b,0x0,0x6b,0x0,0x5f,0x0,0x58,0x0,0x57,0x0,0x49,0x0,0x55,0x0,0x3d,
0x0,0x55,0x0,0x3b,0x0,0x4e,0x0,0x39,0x0,0x3a,0x0,0x27,0x0,0x22,0x0,0x11,
0x0,0x12,0x0,0x3,0x0,0xd,0x0,0xf7,0xff,0x2,0x0,0xe2,0xff,0xee,0xff,0xcc,
0xff,0xd9,0xff,0xc7,0xff,0xcb,0xff,0xca,0xff,0xc5,0xff,0xca,0xff,0xd2,0xff,0xcf,
0xff,0xe3,0xff,0xd7,0xff,0xda,0xff,0xce,0xff,0xb7,0xff,0xb2,0xff,0x99,0xff,0x9c,
0xff,0x93,0xff,0xa1,0xff,0xa4,0xff,0xb8,0xff,0xc5,0xff,0xce,0xff,0xe5,0xff,0xdf,
0xff,0xf2,0xff,0xf0,0xff,0xef,0xff,0xfb,0xff,0xed,0xff,0x4,0x0,0xf6,0xff,0xd,
0x0,0x7,0x0,0x16,0x0,0x15,0x0,0x1f,0x0,0x27,0x0,0x31,0x0,0x3f,0x0,0x49,
0x0,0x4c,0x0,0x5e,0x0,0x4a,0x0,0x61,0x0,0x47,0x0,0x54,0x0,0x4c,0x0,0x4a,
0x0,0x52,0x0,0x44,0x0,0x57,0x0,0x40,0x0,0x56,0x0,0x3f,0x0,0x4f,0x0,0x39,
0x0,0x44,0x0,0x2f,0x0,0x38,0x0,0x23,0x0,0x37,0x0,0x1a,0x0,0x3e,0x0,0x1f,
0x0,0x44,0x0,0x31,0x0,0x4d,0x0,0x4a,0x0,0x59,0x0,0x5e,0x0,0x58,0x0,0x5e,
0x0,0x44,0x0,0x48,0x0,0x2a,0x0,0x32,0x0,0x1b,0x0,0x29,0x0,0x11,0x0,0x25,
0x0,0x3,0x0,0x1a,0x0,0xf5,0xff,0x8,0x0,0xec,0xff,0xfa,0xff,0xe1,0xff,0xef,
0xff,0xcd,0xff,0xdc,0xff,0xb7,0xff,0xc9,0xff,0xb5,0xff,0xc5,0xff,0xc2,0xff,0xcd,
0xff,0xd0,0xff,0xe0,0xff,0xe5,0xff,0xfa,0xff,0x0,0x0,0x17,0x0,0x13,0x0,0x30,
0x0,0x1f,0x0,0x39,0x0,0x2e,0x0,0x37,0x0,0x3c,0x0,0x35,0x0,0x40,0x0,0x32,
0x0,0x34,0x0,0x30,0x0,0x27,0x0,0x27,0x0,0x1e,0x0,0x13,0x0,0xd,0x0,0xfa,
0xff,0xf4,0xff,0xe9,0xff,0xe9,0xff,0xe3,0xff,0xed,0xff,0xe7,0xff,0xec,0xff,0xed,
0xff,0xe1,0xff,0xf0,0xff,0xd5,0xff,0xec,0xff,0xca,0xff,0xdd,0xff,0xc2,0xff,0xce,
0xff,0xc9,0xff,0xce,0xff,0xde,0xff,0xda,0xff,0xec,0xff,0xe8,0xff,0xed,0xff,0xf1,
0xff,0xee,0xff,0xf4,0xff,0xf7,0xff,0xf7,0xff,0x1,0x0,0x0,0x0,0xc,0x0,0x10,
0x0,0x10,0x0,0x1a,0x0,0x3,0x0,0xd,0x0,0xe8,0xff,0xf2,0xff,0xd9,0xff,0xe8,
0xff,0xe7,0xff,0xf0,0xff,0xf7,0xff,0xf4,0xff,0xf3,0xff,0xeb,0xff,0xe8,0xff,0xe3,
0xff,0xed,0xff,0xf2,0xff,0x6,0x0,0x16,0x0,0x2e,0x0,0x40,0x0,0x59,0x0,0x60,
0x0,0x7a,0x0,0x6b,0x0,0x88,0x0,0x63,0x0,0x8a,0x0,0x60,0x0,0x8e,0x0,0x66,
0x0,0x8b,0x0,0x6c,0x0,0x77,0x0,0x6a,0x0,0x58,0x0,0x5e,0x0,0x3a,0x0,0x4a,
0x0,0x21,0x0,0x30,0x0,0xa,0x0,0x10,0x0,0xf4,0xff,0xee,0xff,0xdf,0xff,0xce,
0xff,0xcd,0xff,0xb6,0xff,0xc4,0xff,0xb6,0xff,0xc7,0xff,0xc7,0xff,0xd0,0xff,0xd9,
0xff,0xd8,0xff,0xe5,0xff,0xe5,0xff,0xed,0xff,0xf8,0xff,0xef,0xff,0x7,0x0,0xf2,
0xff,0xb,0x0,0x0,0x0,0x6,0x0,0x13,0x0,0xfd,0xff,0x18,0x0,0xf1,0xff,0x6,
0x0,0xe5,0xff,0xf4,0xff,0xe0,0xff,0xee,0xff,0xe4,0xff,0xec,0xff,0xe9,0xff,0xea,
0xff,0xeb,0xff,0xec,0xff,0xf0,0xff,0xec,0xff,0xfc,0xff,0xe9,0xff,0xf,0x0,0xef,
0xff,0x21,0x0,0x8,0x0,0x33,0x0,0x26,0x0,0x46,0x0,0x3d,0x0,0x57,0x0,0x51,
0x0,0x64,0x0,0x6a,0x0,0x72,0x0,0x7e,0x0,0x7e,0x0,0x86,0x0,0x85,0x0,0x83,
0x0,0x7c,0x0,0x6e,0x0,0x64,0x0,0x52,0x0,0x4c,0x0,0x3f,0x0,0x38,0x0,0x34,
0x0,0x27,0x0,0x28,0x0,0x14,0x0,0x11,0x0,0xf9,0xff,0xf7,0xff,0xdb,0xff,0xe5,
0xff,0xcb,0xff,0xe1,0xff,0xce,0xff,0xea,0xff,0xdb,0xff,0xf8,0xff,0xe5,0xff,0xfd,
0xff,0xef,0xff,0x2,0x0,0x2,0x0,0x16,0x0,0x18,0x0,0x2c,0x0,0x25,0x0,0x30,
0x0,0x29,0x0,0x2a,0x0,0x34,0x0,0x34,0x0,0x4a,0x0,0x4d,0x0,0x61,0x0,0x58,
0x0,0x6a,0x0,0x4e,0x0,0x60,0x0,0x3e,0x0,0x48,0x0,0x2e,0x0,0x2c,0x0,0x16,
0x0,0x1c,0x0,0x1,0x0,0x15,0x0,0xfa,0xff,0x2,0x0,0xf7,0xff,0xe1,0xff,0xe8,
0xff,0xcb,0xff,0xd8,0xff,0xc4,0xff,0xd6,0xff,0xc0,0xff,0xd6,0xff,0xbd,0xff,0xcd,
0xff,0xc6,0xff,0xcc,0xff,0xdc,0xff,0xdc,0xff,0xf5,0xff,0xf4,0xff,0xb,0x0,0x10,
0x0,0x16,0x0,0x1e,0x0,0x9,0x0,0x11,0x0,0xf2,0xff,0xf8,0xff,0xea,0xff,0xef,
0xff,0xf0,0xff,0xf5,0xff,0xef,0xff,0xf7,0xff,0xe6,0xff,0xfc,0xff,0xe3,0xff,0x10,
0x0,0xe4,0xff,0x1c,0x0,0xe1,0xff,0xc,0x0,0xe3,0xff,0xf8,0xff,0xf7,0xff,0xfd,
0xff,0x12,0x0,0x13,0x0,0x27,0x0,0x25,0x0,0x37,0x0,0x35,0x0,0x49,0x0,0x4c,
0x0,0x5f,0x0,0x61,0x0,0x77,0x0,0x6a,0x0,0x89,0x0,0x6d,0x0,0x89,0x0,0x68,
0x0,0x74,0x0,0x50,0x0,0x52,0x0,0x2f,0x0,0x33,0x0,0x19,0x0,0x18,0x0,0x7,
0x0,0xfa,0xff,0xeb,0xff,0xde,0xff,0xd6,0xff,0xcc,0xff,0xd5,0xff,0xc5,0xff,0xda,
0xff,0xc2,0xff,0xcb,0xff,0xbd,0xff,0xb3,0xff,0xb1,0xff,0xa9,0xff,0xa4,0xff,0xa8,
0xff,0xa6,0xff,0xa5,0xff,0xb7,0xff,0xac,0xff,0xc2,0xff,0xbb,0xff,0xbd,0xff,0xbf,
0xff,0xb6,0xff,0xb6,0xff,0xb9,0xff,0xb9,0xff,0xc5,0xff,0xce,0xff,0xd6,0xff,0xe6,
0xff,0xea,0xff,0xfb,0xff,0xfb,0xff,0x11,0x0,0x3,0x0,0x24,0x0,0x7,0x0,0x2f,
0x0,0x17,0x0,0x3b,0x0,0x3e,0x0,0x56,0x0,0x70,0x0,0x79,0x0,0x95,0x0,0x8f,
0x0,0xab,0x0,0x96,0x0,0xbe,0x0,0x9a,0x0,0xce,0x0,0xa3,0x0,0xcf,0x0,0xa5,
0x0,0xbd,0x0,0x98,0x0,0xa3,0x0,0x86,0x0,0x8e,0x0,0x7b,0x0,0x83,0x0,0x78,
0x0,0x7b,0x0,0x72,0x0,0x68,0x0,0x60,0x0,0x43,0x0,0x3e,0x0,0x13,0x0,0x10,
0x0,0xe2,0xff,0xe2,0xff,0xbe,0xff,0xc3,0xff,0xab,0xff,0xb6,0xff,0x9e,0xff,0xad,
0xff,0x8c,0xff,0x9e,0xff,0x74,0xff,0x8c,0xff,0x68,0xff,0x83,0xff,0x6f,0xff,0x81,
0xff,0x7f,0xff,0x80,0xff,0x8b,0xff,0x80,0xff,0x90,0xff,0x84,0xff,0x92,0xff,0x8c,
0xff,0x9c,0xff,0x9d,0xff,0xb0,0xff,0xbf,0xff,0xcd,0xff,0xeb,0xff,0xf0,0xff,0xa,
0x0,0x12,0x0,0x15,0x0,0x2b,0x0,0x15,0x0,0x43,0x0,0x24,0x0,0x63,0x0,0x47,
0x0,0x82,0x0,0x71,0x0,0x99,0x0,0x8d,0x0,0xa7,0x0,0x97,0x0,0xa6,0x0,0x98,
0x0,0xa2,0x0,0x9d,0x0,0xa6,0x0,0xa4,0x0,0xb0,0x0,0xa8,0x0,0xb9,0x0,0xab,
0x0,0xb9,0x0,0xac,0x0,0xaf,0x0,0xa2,0x0,0x9b,0x0,0x8c,0x0,0x7e,0x0,0x75,
0x0,0x60,0x0,0x66,0x0,0x4c,0x0,0x5b,0x0,0x41,0x0,0x52,0x0,0x30,0x0,0x48,
0x0,0x16,0x0,0x33,0x0,0xf6,0xff,0xe,0x0,0xd9,0xff,0xed,0xff,0xcb,0xff,0xdd,
0xff,0xca,0xff,0xd7,0xff,0xbe,0xff,0xc9,0xff,0x9c,0xff,0xae,0xff,0x71,0xff,0x8f,
0xff,0x54,0xff,0x76,0xff,0x51,0xff,0x6a,0xff,0x6c,0xff,0x73,0xff,0x9c,0xff,0x91,
0xff,0xcd,0xff,0xb7,0xff,0xf5,0xff,0xe1,0xff,0x15,0x0,0xb,0x0,0x2b,0x0,0x28,
0x0,0x30,0x0,0x29,0x0,0x2c,0x0,0x1e,0x0,0x34,0x0,0x1e,0x0,0x4c,0x0,0x2c,
0x0,0x57,0x0,0x35,0x0,0x4a,0x0,0x36,0x0,0x3a,0x0,0x37,0x0,0x32,0x0,0x37,
0x0,0x2f,0x0,0x2d,0x0,0x2e,0x0,0x1e,0x0,0x35,0x0,0x1b,0x0,0x3e,0x0,0x2b,
0x0,0x39,0x0,0x3c,0x0,0x29,0x0,0x3c,0x0,0x1d,0x0,0x2e,0x0,0x18,0x0,0x21,
0x0,0x12,0x0,0x1f,0x0,0xd,0x0,0x23,0x0,0xf,0x0,0x23,0x0,0x14,0x0,0x23,
0x0,0x14,0x0,0x29,0x0,0x17,0x0,0x33,0x0,0x1d,0x0,0x35,0x0,0x12,0x0,0x2b,
0x0,0xfc,0xff,0x1a,0x0,0xf5,0xff,0x14,0x0,0x0,0x0,0x1d,0x0,0x13,0x0,0x27,
0x0,0x23,0x0,0x28,0x0,0x2a,0x0,0x27,0x0,0x2c,0x0,0x26,0x0,0x2f,0x0,0x20,
0x0,0x33,0x0,0x15,0x0,0x3c,0x0,0x11,0x0,0x3e,0x0,0x14,0x0,0x2e,0x0,0xa,
0x0,0x15,0x0,0xf4,0xff,0x2,0x0,0xec,0xff,0xfe,0xff,0xf9,0xff,0x9,0x0,0x8,
0x0,0x11,0x0,0x7,0x0,0x4,0x0,0xf8,0xff,0xeb,0xff,0xe1,0xff,0xd8,0xff,0xd0,
0xff,0xd7,0xff,0xcd,0xff,0xda,0xff,0xd2,0xff,0xd0,0xff,0xce,0xff,0xc6,0xff,0xc2,
0xff,0xd2,0xff,0xc6,0xff,0xef,0xff,0xe3,0xff,0xe,0x0,0xd,0x0,0x20,0x0,0x2f,
0x0,0x23,0x0,0x3a,0x0,0x25,0x0,0x35,0x0,0x37,0x0,0x36,0x0,0x53,0x0,0x48,
0x0,0x64,0x0,0x62,0x0,0x6a,0x0,0x75,0x0,0x72,0x0,0x83,0x0,0x82,0x0,0x8f,
0x0,0x89,0x0,0x91,0x0,0x7d,0x0,0x84,0x0,0x6d,0x0,0x71,0x0,0x6c,0x0,0x61,
0x0,0x6b,0x0,0x4f,0x0,0x53,0x0,0x3a,0x0,0x38,0x0,0x2f,0x0,0x31,0x0,0x32,
0x0,0x33,0x0,0x2f,0x0,0x31,0x0,0x21,0x0,0x2d,0x0,0x1c,0x0,0x2e,0x0,0x25,
0x0,0x2b,0x0,0x25,0x0,0x1a,0x0,0x12,0x0,0x1,0x0,0xf2,0xff,0xe2,0xff,0xc8,
0xff,0xb5,0xff,0xa0,0xff,0x92,0xff,0x8d,0xff,0x8e,0xff,0x8f,0xff,0x91,0xff,0x90,
0xff,0x84,0xff,0x82,0xff,0x71,0xff,0x78,0xff,0x6f,0xff,0x7e,0xff,0x84,0xff,0x8c,
0xff,0xa4,0xff,0xa5,0xff,0xca,0xff,0xd5,0xff,0xf7,0xff,0xc,0x0,0x1e,0x0,0x2b,
0x0,0x39,0x0,0x35,0x0,0x4e,0x0,0x3e,0x0,0x5e,0x0,0x4d,0x0,0x6d,0x0,0x65,
0x0,0x85,0x0,0x88,0x0,0x9f,0x0,0xa9,0x0,0xac,0x0,0xad,0x0,0xa0,0x0,0x91,
0x0,0x87,0x0,0x6f,0x0,0x76,0x0,0x5a,0x0,0x69,0x0,0x50,0x0,0x54,0x0,0x48,
0x0,0x46,0x0,0x40,0x0,0x44,0x0,0x3a,0x0,0x44,0x0,0x36,0x0,0x42,0x0,0x32,
0x0,0x3c,0x0,0x2d,0x0,0x2d,0x0,0x20,0x0,0x16,0x0,0x7,0x0,0xf6,0xff,0xec,
0xff,0xdb,0xff,0xd7,0xff,0xce,0xff,0xc8,0xff,0xc3,0xff,0xc5,0xff,0xb2,0xff,0xcd,
0xff,0xa9,0xff,0xd4,0xff,0xa7,0xff,0xd3,0xff,0xa3,0xff,0xcd,0xff,0xa0,0xff,0xc4,
0xff,0xa8,0xff,0xbd,0xff,0xb7,0xff,0xc0,0xff,0xc5,0xff,0xcf,0xff,0xd9,0xff,0xe3,
0xff,0xf9,0xff,0xf6,0xff,0x13,0x0,0x6,0x0,0x1f,0x0,0x15,0x0,0x28,0x0,0x25,
0x0,0x3c,0x0,0x37,0x0,0x56,0x0,0x4a,0x0,0x69,0x0,0x56,0x0,0x72,0x0,0x58,
0x0,0x74,0x0,0x56,0x0,0x68,0x0,0x55,0x0,0x53,0x0,0x52,0x0,0x47,0x0,0x4b,
0x0,0x46,0x0,0x43,0x0,0x46,0x0,0x3e,0x0,0x3a,0x0,0x36,0x0,0x29,0x0,0x25,
0x0,0x1c,0x0,0xd,0x0,0x19,0x0,0xf8,0xff,0x1c,0x0,0xec,0xff,0x1e,0x0,0xec,
0xff,0x10,0x0,0xe9,0xff,0xee,0xff,0xd7,0xff,0xc3,0xff,0xbe,0xff,0xa5,0xff,0xb0,
0xff,0xaa,0xff,0xaf,0xff,0xc4,0xff,0xb9,0xff,0xd3,0xff,0xcb,0xff,0xcd,0xff,0xde,
0xff,0xc4,0xff,0xe3,0xff,0xd5,0xff,0xe8,0xff,0xfb,0xff,0xfd,0xff,0x10,0x0,0x15,
0x0,0x8,0x0,0x1b,0x0,0xfd,0xff,0x15,0x0,0xfe,0xff,0x1b,0x0,0x13,0x0,0x35,
0x0,0x35,0x0,0x4f,0x0,0x4d,0x0,0x56,0x0,0x55,0x0,0x52,0x0,0x55,0x0,0x57,
0x0,0x5d,0x0,0x68,0x0,0x72,0x0,0x7f,0x0,0x84,0x0,0x89,0x0,0x7e,0x0,0x7b,
0x0,0x70,0x0,0x62,0x0,0x6e,0x0,0x58,0x0,0x76,0x0,0x5c,0x0,0x7a,0x0,0x5c,
0x0,0x76,0x0,0x51,0x0,0x68,0x0,0x46,0x0,0x50,0x0,0x3f,0x0,0x36,0x0,0x34,
0x0,0x24,0x0,0x20,0x0,0x12,0x0,0x8,0x0,0xfa,0xff,0xef,0xff,0xe5,0xff,0xd2,
0xff,0xd5,0xff,0xb9,0xff,0xc7,0xff,0xb5,0xff,0xbc,0xff,0xbb,0xff,0xb7,0xff,0xbf,
0xff,0xbb,0xff,0xc7,0xff,0xc7,0xff,0xd6,0xff,0xcd,0xff,0xda,0xff,0xca,0xff,0xd1,
0xff,0xcd,0xff,0xce,0xff,0xd7,0xff,0xd4,0xff,0xe3,0xff,0xdd,0xff,0xee,0xff,0xed,
0xff,0xfd,0xff,0x5,0x0,0x12,0x0,0x18,0x0,0x26,0x0,0x1f,0x0,0x37,0x0,0x23,
0x0,0x48,0x0,0x37,0x0,0x56,0x0,0x4f,0x0,0x57,0x0,0x52,0x0,0x50,0x0,0x44,
0x0,0x4c,0x0,0x40,0x0,0x50,0x0,0x4b,0x0,0x5c,0x0,0x57,0x0,0x61,0x0,0x5b,
0x0,0x5b,0x0,0x58,0x0,0x52,0x0,0x50,0x0,0x4f,0x0,0x46,0x0,0x4e,0x0,0x44,
0x0,0x4c,0x0,0x4c,0x0,0x4b,0x0,0x56,0x0,0x4a,0x0,0x56,0x0,0x49,0x0,0x4d,
0x0,0x4a,0x0,0x47,0x0,0x4c,0x0,0x46,0x0,0x4a,0x0,0x46,0x0,0x3c,0x0,0x41,
0x0,0x25,0x0,0x32,0x0,0x11,0x0,0x1a,0x0,0x8,0x0,0x5,0x0,0xff,0xff,0xfa,
0xff,0xe9,0xff,0xef,0xff,0xc8,0xff,0xdf,0xff,0xac,0xff,0xce,0xff,0xa4,0xff,0xc7,
0xff,0xaf,0xff,0xcc,0xff,0xc0,0xff,0xcf,0xff,0xcb,0xff,0xcf,0xff,0xd0,0xff,0xd3,
0xff,0xd3,0xff,0xd4,0xff,0xda,0xff,0xc9,0xff,0xeb,0xff,0xc2,0xff,0xfe,0xff,0xcf,
0xff,0x6,0x0,0xe5,0xff,0xfa,0xff,0xed,0xff,0xf1,0xff,0xea,0xff,0x1,0x0,0xf1,
0xff,0x22,0x0,0x8,0x0,0x3c,0x0,0x1d,0x0,0x40,0x0,0x22,0x0,0x33,0x0,0x1f,
0x0,0x24,0x0,0x1e,0x0,0x20,0x0,0x26,0x0,0x30,0x0,0x37,0x0,0x4c,0x0,0x4b,
0x0,0x5d,0x0,0x57,0x0,0x5b,0x0,0x56,0x0,0x54,0x0,0x55,0x0,0x4e,0x0,0x58,
0x0,0x4a,0x0,0x57,0x0,0x43,0x0,0x4e,0x0,0x2f,0x0,0x3e,0x0,0x11,0x0,0x2d,
0x0,0xfb,0xff,0x1f,0x0,0xfd,0xff,0x1d,0x0,0x12,0x0,0x2b,0x0,0x2b,0x0,0x40,
0x0,0x38,0x0,0x46,0x0,0x39,0x0,0x3d,0x0,0x2f,0x0,0x30,0x0,0x13,0x0,0x1c,
0x0,0xf1,0xff,0x4,0x0,0xe1,0xff,0xfa,0xff,0xed,0xff,0x5,0x0,0x5,0x0,0x18,
0x0,0x19,0x0,0x1f,0x0,0x20,0x0,0x1c,0x0,0x20,0x0,0x1a,0x0,0x20,0x0,0x19,
0x0,0x20,0x0,0x15,0x0,0x1e,0x0,0xd,0x0,0x1b,0x0,0xd,0x0,0x1c,0x0,0x18,
0x0,0x25,0x0,0x29,0x0,0x3a,0x0,0x3b,0x0,0x50,0x0,0x4a,0x0,0x5b,0x0,0x4b,
0x0,0x5b,0x0,0x3f,0x0,0x51,0x0,0x2e,0x0,0x3e,0x0,0x1f,0x0,0x29,0x0,0x11,
0x0,0x14,0x0,0x5,0x0,0x3,0x0,0xfa,0xff,0xf8,0xff,0xef,0xff,0xf0,0xff,0xe7,
0xff,0xed,0xff,0xef,0xff,0xf4,0xff,0x2,0x0,0xfd,0xff,0xa,0x0,0x0,0x0,0xfe,
0xff,0x1,0x0,0xf8,0xff,0x9,0x0,0x5,0x0,0x13,0x0,0x1a,0x0,0x1b,0x0,0x2d,
0x0,0x1c,0x0,0x32,0x0,0x17,0x0,0x26,0x0,0xd,0x0,0x13,0x0,0x9,0x0,0xb,
0x0,0xf,0x0,0x10,0x0,0xe,0x0,0x13,0x0,0x5,0x0,0x14,0x0,0x18,0x0,0x28,
0x0,0x51,0x0,0x5a,0x0,0x84,0x0,0x8e,0x0,0x88,0x0,0xa4,0x0,0x7b,0x0,0xa2,
0x0,0x7e,0x0,0x96,0x0,0x87,0x0,0x7f,0x0,0x80,0x0,0x67,0x0,0x75,0x0,0x66,
0x0,0x73,0x0,0x76,0x0,0x73,0x0,0x7b,0x0,0x70,0x0,0x6f,0x0,0x6e,0x0,0x60,
0x0,0x5e,0x0,0x4f,0x0,0x33,0x0,0x2c,0x0,0xef,0xff,0xf3,0xff,0xa8,0xff,0xb1,
0xff,0x72,0xff,0x7c,0xff,0x5f,0xff,0x65,0xff,0x70,0xff,0x70,0xff,0x99,0xff,0x91,
0xff,0xc2,0xff,0xac,0xff,0xd3,0xff,0xb5,0xff,0xcf,0xff,0xb2,0xff,0xbe,0xff,0xa1,
0xff,0xa2,0xff,0x86,0xff,0x8e,0xff,0x77,0xff,0x97,0xff,0x80,0xff,0xab,0xff,0x91,
0xff,0xb9,0xff,0xa1,0xff,0xce,0xff,0xc0,0xff,0xf3,0xff,0xef,0xff,0x22,0x0,0x20,
0x0,0x49,0x0,0x47,0x0,0x59,0x0,0x62,0x0,0x58,0x0,0x6d,0x0,0x55,0x0,0x6c,
0x0,0x57,0x0,0x6b,0x0,0x5d,0x0,0x70,0x0,0x63,0x0,0x78,0x0,0x71,0x0,0x82,
0x0,0x8d,0x0,0x98,0x0,0xa7,0x0,0xb5,0x0,0xad,0x0,0xc2,0x0,0x9d,0x0,0xb5,
0x0,0x86,0x0,0x9e,0x0,0x75,0x0,0x85,0x0,0x63,0x0,0x62,0x0,0x41,0x0,0x3a,
0x0,0x19,0x0,0x1c,0x0,0xfe,0xff,0xc,0x0,0xf2,0xff,0x4,0x0,0xe8,0xff,0xf6,
0xff,0xd5,0xff,0xd5,0xff,0xb4,0xff,0xa7,0xff,0x8b,0xff,0x79,0xff,0x62,0xff,0x52,
0xff,0x48,0xff,0x38,0xff,0x45,0xff,0x34,0xff,0x5c,0xff,0x4a,0xff,0x82,0xff,0x70,
0xff,0xa2,0xff,0x97,0xff,0xb1,0xff,0xb0,0xff,0xa8,0xff,0xac,0xff,0x8b,0xff,0x95,
0xff,0x7e,0xff,0x8a,0xff,0x9f,0xff,0xa2,0xff,0xde,0xff,0xd7,0xff,0x19,0x0,0x10,
0x0,0x44,0x0,0x3a,0x0,0x63,0x0,0x50,0x0,0x7a,0x0,0x5c,0x0,0x82,0x0,0x6c,
0x0,0x88,0x0,0x89,0x0,0x9e,0x0,0xa7,0x0,0xb3,0x0,0xb2,0x0,0xaf,0x0,0xa9,
0x0,0xa7,0x0,0xa4,0x0,0xb6,0x0,0xb3,0x0,0xcc,0x0,0xcc,0x0,0xd1,0x0,0xd5,
0x0,0xbc,0x0,0xc2,0x0,0x97,0x0,0x99,0x0,0x70,0x0,0x6b,0x0,0x49,0x0,0x45,
0x0,0x2a,0x0,0x2c,0x0,0x19,0x0,0x19,0x0,0xe,0x0,0xa,0x0,0x4,0x0,0xfe,
0xff,0xfc,0xff,0xf0,0xff,0xf1,0xff,0xdd,0xff,0xdf,0xff,0xca,0xff,0xc6,0xff,0xba,
0xff,0xaf,0xff,0xa9,0xff,0xa3,0xff,0x97,0xff,0x9d,0xff,0x8f,0xff,0x9c,0xff,0x95,
0xff,0xa1,0xff,0xa3,0xff,0xac,0xff,0xb0,0xff,0xbb,0xff,0xc1,0xff,0xd1,0xff,0xd8,
0xff,0xea,0xff,0xf6,0xff,0x6,0x0,0x19,0x0,0x21,0x0,0x37,0x0,0x34,0x0,0x44,
0x0,0x39,0x0,0x42,0x0,0x37,0x0,0x41,0x0,0x36,0x0,0x47,0x0,0x3a,0x0,0x52,
0x0,0x44,0x0,0x5e,0x0,0x57,0x0,0x6c,0x0,0x70,0x0,0x77,0x0,0x82,0x0,0x7b,
0x0,0x84,0x0,0x78,0x0,0x75,0x0,0x6f,0x0,0x63,0x0,0x5e,0x0,0x52,0x0,0x47,
0x0,0x3d,0x0,0x32,0x0,0x2d,0x0,0x25,0x0,0x2e,0x0,0x1f,0x0,0x37,0x0,0x20,
0x0,0x3d,0x0,0x2a,0x0,0x39,0x0,0x30,0x0,0x27,0x0,0x1f,0x0,0x8,0x0,0xf5,
0xff,0xe0,0xff,0xc8,0xff,0xc1,0xff,0xaf,0xff,0xb8,0xff,0xa9,0xff,0xb7,0xff,0xac,
0xff,0xb7,0xff,0xb0,0xff,0xb7,0xff,0xb8,0xff,0xb6,0xff,0xc6,0xff,0xba,0xff,0xd4,
0xff,0xcc,0xff,0xe4,0xff,0xe6,0xff,0xf8,0xff,0xfe,0xff,0x7,0x0,0x7,0x0,0xc,
0x0,0x7,0x0,0x10,0x0,0x10,0x0,0x20,0x0,0x1e,0x0,0x37,0x0,0x28,0x0,0x45,
0x0,0x39,0x0,0x49,0x0,0x55,0x0,0x51,0x0,0x6d,0x0,0x5f,0x0,0x74,0x0,0x67,
0x0,0x67,0x0,0x61,0x0,0x52,0x0,0x50,0x0,0x41,0x0,0x3c,0x0,0x31,0x0,0x2d,
0x0,0x23,0x0,0x23,0x0,0x16,0x0,0x17,0x0,0x5,0x0,0x8,0x0,0xf4,0xff,0xf8,
0xff,0xed,0xff,0xeb,0xff,0xf1,0xff,0xdf,0xff,0xee,0xff,0xcf,0xff,0xd8,0xff,0xbe,
0xff,0xbc,0xff,0xb1,0xff,0xa8,0xff,0xa4,0xff,0x9a,0xff,0x93,0xff,0x91,0xff,0x89,
0xff,0x8f,0xff,0x8e,0xff,0x91,0xff,0x9a,0xff,0x98,0xff,0xa6,0xff,0xa4,0xff,0xb3,
0xff,0xae,0xff,0xc5,0xff,0xb6,0xff,0xd7,0xff,0xc1,0xff,0xe6,0xff,0xce,0xff,0xf3,
0xff,0xdb,0xff,0xfd,0xff,0xeb,0xff,0x4,0x0,0x0,0x0,0xa,0x0,0x14,0x0,0x14,
0x0,0x2a,0x0,0x25,0x0,0x46,0x0,0x3a,0x0,0x60,0x0,0x53,0x0,0x6d,0x0,0x69,
0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x78,0x0,0x80,0x0,0x7e,0x0,0x94,0x0,0x8d,
0x0,0xa5,0x0,0x9c,0x0,0xa6,0x0,0x9c,0x0,0x9d,0x0,0x8b,0x0,0x9d,0x0,0x7f,
0x0,0xa5,0x0,0x82,0x0,0x9e,0x0,0x82,0x0,0x79,0x0,0x6d,0x0,0x4b,0x0,0x45,
0x0,0x29,0x0,0x1d,0x0,0x10,0x0,0xf8,0xff,0xef,0xff,0xd5,0xff,0xcb,0xff,0xb4,
0xff,0xb5,0xff,0xa1,0xff,0xac,0xff,0x9f,0xff,0xa4,0xff,0xa4,0xff,0x96,0xff,0xa2,
0xff,0x7e,0xff,0x94,0xff,0x60,0xff,0x7f,0xff,0x4a,0xff,0x70,0xff,0x48,0xff,0x6c,
0xff,0x50,0xff,0x6a,0xff,0x59,0xff,0x6e,0xff,0x70,0xff,0x86,0xff,0x9b,0xff,0xad,
0xff,0xc6,0xff,0xd0,0xff,0xe3,0xff,0xe9,0xff,0xfa,0xff,0x1,0x0,0x10,0x0,0x1c,
0x0,0x27,0x0,0x35,0x0,0x43,0x0,0x4b,0x0,0x61,0x0,0x60,0x0,0x82,0x0,0x7a,
0x0,0xa7,0x0,0x98,0x0,0xcc,0x0,0xb6,0x0,0xe4,0x0,0xcc,0x0,0xdf,0x0,0xcc,
0x0,0xc0,0x0,0xba,0x0,0xab,0x0,0xaa,0x0,0xac,0x0,0xa3,0x0,0xb1,0x0,0xa1,
0x0,0xb0,0x0,0xa1,0x0,0xab,0x0,0x9f,0x0,0x9f,0x0,0x97,0x0,0x92,0x0,0x8b,
0x0,0x7f,0x0,0x7c,0x0,0x57,0x0,0x5c,0x0,0x18,0x0,0x21,0x0,0xc7,0xff,0xd3,
0xff,0x7b,0xff,0x8f,0xff,0x54,0xff,0x6b,0xff,0x54,0xff,0x61,0xff,0x63,0xff,0x63,
0xff,0x71,0xff,0x6d,0xff,0x72,0xff,0x75,0xff,0x5f,0xff,0x6b,0xff,0x43,0xff,0x4a,
0xff,0x29,0xff,0x26,0xff,0x14,0xff,0x12,0xff,0xa,0xff,0x11,0xff,0x1a,0xff,0x25,
0xff,0x51,0xff,0x56,0xff,0xa2,0xff,0x9d,0xff,0xf1,0xff,0xea,0xff,0x3a,0x0,0x39,
0x0,0x7a,0x0,0x82,0x0,0xa2,0x0,0xaa,0x0,0xa8,0x0,0xa5,0x0,0x95,0x0,0x80,
0x0,0x80,0x0,0x5d,0x0,0x80,0x0,0x57,0x0,0x93,0x0,0x73,0x0,0xac,0x0,0x9e,
0x0,0xc0,0x0,0xbf,0x0,0xc5,0x0,0xc7,0x0,0xb8,0x0,0xb8,0x0,0xa1,0x0,0xa2,
0x0,0x86,0x0,0x88,0x0,0x64,0x0,0x66,0x0,0x3a,0x0,0x41,0x0,0x16,0x0,0x23,
0x0,0x2,0x0,0xe,0x0,0xf6,0xff,0x0,0x0,0xdf,0xff,0xec,0xff,0xc0,0xff,0xd3,
0xff,0xa9,0xff,0xba,0xff,0x9a,0xff,0xa2,0xff,0x83,0xff,0x8c,0xff,0x5e,0xff,0x70,
0xff,0x37,0xff,0x47,0xff,0x17,0xff,0x1c,0xff,0x6,0xff,0x1,0xff,0xd,0xff,0x6,
0xff,0x2b,0xff,0x2c,0xff,0x57,0xff,0x5f,0xff,0x80,0xff,0x84,0xff,0x98,0xff,0x96,
0xff,0xa4,0xff,0xa0,0xff,0xb8,0xff,0xb8,0xff,0xec,0xff,0xef,0xff,0x39,0x0,0x36,
0x0,0x7e,0x0,0x70,0x0,0xa9,0x0,0x97,0x0,0xc4,0x0,0xb1,0x0,0xd7,0x0,0xc4,
0x0,0xe0,0x0,0xd2,0x0,0xd7,0x0,0xd1,0x0,0xbf,0x0,0xbe,0x0,0xae,0x0,0xad,
0x0,0xa3,0x0,0xa1,0x0,0x84,0x0,0x88,0x0,0x55,0x0,0x57,0x0,0x26,0x0,0x19,
0x0,0xef,0xff,0xde,0xff,0xb2,0xff,0xb3,0xff,0x88,0xff,0x9e,0xff,0x87,0xff,0x9e,
0xff,0xae,0xff,0xbf,0xff,0xe2,0xff,0xf8,0xff,0xc,0x0,0x27,0x0,0x22,0x0,0x2e,
0x0,0x18,0x0,0xe,0x0,0xf0,0xff,0xe1,0xff,0xc6,0xff,0xc0,0xff,0xa4,0xff,0xa9,
0xff,0x84,0xff,0x91,0xff,0x73,0xff,0x81,0xff,0x80,0xff,0x8b,0xff,0xad,0xff,0xb1,
0xff,0xeb,0xff,0xe4,0xff,0x28,0x0,0x19,0x0,0x50,0x0,0x3c,0x0,0x4c,0x0,0x39,
0x0,0x1d,0x0,0x10,0x0,0xe6,0xff,0xdd,0xff,0xcc,0xff,0xc4,0xff,0xde,0xff,0xda,
0xff,0x1e,0x0,0x1d,0x0,0x7b,0x0,0x77,0x0,0xda,0x0,0xd7,0x0,0x1e,0x1,0x20,
0x1,0x28,0x1,0x26,0x1,0xea,0x0,0xdc,0x0,0x78,0x0,0x63,0x0,0xf1,0xff,0xe5,
0xff,0x7d,0xff,0x80,0xff,0x3e,0xff,0x4d,0xff,0x3f,0xff,0x50,0xff,0x73,0xff,0x78,
0xff,0xb7,0xff,0xaf,0xff,0xee,0xff,0xe7,0xff,0xe,0x0,0x15,0x0,0x14,0x0,0x25,
0x0,0xf6,0xff,0x1,0x0,0xb4,0xff,0xb3,0xff,0x6c,0xff,0x63,0xff,0x40,0xff,0x3a,
0xff,0x3e,0xff,0x40,0xff,0x61,0xff,0x6e,0xff,0xad,0xff,0xba,0xff,0x18,0x0,0x1a,
0x0,0x7b,0x0,0x73,0x0,0xa4,0x0,0x9f,0x0,0x8d,0x0,0x91,0x0,0x56,0x0,0x5f,
0x0,0x1c,0x0,0x25,0x0,0xea,0xff,0xf5,0xff,0xd9,0xff,0xe0,0xff,0xf9,0xff,0xeb,
0xff,0x36,0x0,0x15,0x0,0x79,0x0,0x5a,0x0,0xb0,0x0,0x9f,0x0,0xc3,0x0,0xbc,
0x0,0xa2,0x0,0x9f,0x0,0x56,0x0,0x58,0x0,0xf6,0xff,0xff,0xff,0xa3,0xff,0xb0,
0xff,0x71,0xff,0x81,0xff,0x65,0xff,0x77,0xff,0x7d,0xff,0x87,0xff,0xa3,0xff,0xa4,
0xff,0xc3,0xff,0xca,0xff,0xd6,0xff,0xed,0xff,0xd6,0xff,0xf1,0xff,0xb8,0xff,0xc8,
0xff,0x82,0xff,0x89,0xff,0x4e,0xff,0x50,0xff,0x2e,0xff,0x27,0xff,0x29,0xff,0x1c,
0xff,0x4b,0xff,0x45,0xff,0xa2,0xff,0x9f,0xff,0x10,0x0,0xd,0x0,0x5d,0x0,0x5f,
0x0,0x70,0x0,0x79,0x0,0x5d,0x0,0x64,0x0,0x3c,0x0,0x39,0x0,0x10,0x0,0x5,
0x0,0xde,0xff,0xd7,0xff,0xc3,0xff,0xc0,0xff,0xd4,0xff,0xca,0xff,0x3,0x0,0xf1,
0xff,0x33,0x0,0x27,0x0,0x4f,0x0,0x53,0x0,0x56,0x0,0x64,0x0,0x53,0x0,0x5c,
0x0,0x46,0x0,0x3e,0x0,0x2b,0x0,0x14,0x0,0x5,0x0,0xed,0xff,0xe2,0xff,0xd4,
0xff,0xc9,0xff,0xc5,0xff,0xc3,0xff,0xc4,0xff,0xd1,0xff,0xd5,0xff,0xe3,0xff,0xf1,
0xff,0xe3,0xff,0xfb,0xff,0xc3,0xff,0xdd,0xff,0x90,0xff,0xa3,0xff,0x63,0xff,0x71,
0xff,0x4a,0xff,0x54,0xff,0x48,0xff,0x4b,0xff,0x60,0xff,0x5e,0xff,0x92,0xff,0x93,
0xff,0xd1,0xff,0xd8,0xff,0x4,0x0,0x11,0x0,0x1e,0x0,0x30,0x0,0x27,0x0,0x30,
0x0,0x1e,0x0,0x16,0x0,0x4,0x0,0xee,0xff,0xf2,0xff,0xdb,0xff,0x6,0x0,0xf8,
0xff,0x4b,0x0,0x4a,0x0,0xb1,0x0,0xb8,0x0,0x8,0x1,0x13,0x1,0x23,0x1,0x2f,
0x1,0xf4,0x0,0xfb,0x0,0x8d,0x0,0x89,0x0,0x13,0x0,0x8,0x0,0xbd,0xff,0xac,
0xff,0xae,0xff,0x90,0xff,0xdf,0xff,0xb2,0xff,0x26,0x0,0xf9,0xff,0x61,0x0,0x42,
0x0,0x87,0x0,0x7a,0x0,0x91,0x0,0x8f,0x0,0x64,0x0,0x69,0x0,0xf8,0xff,0x5,
0x0,0x7a,0xff,0x81,0xff,0x16,0xff,0xb,0xff,0xdd,0xfe,0xc9,0xfe,0xcc,0xfe,0xc4,
0xfe,0xea,0xfe,0xf3,0xfe,0x3f,0xff,0x4b,0xff,0xb5,0xff,0xba,0xff,0xd,0x0,0x12,
0x0,0xf,0x0,0x1f,0x0,0xbb,0xff,0xd1,0xff,0x44,0xff,0x51,0xff,0xeb,0xfe,0xeb,
0xfe,0xdf,0xfe,0xd4,0xfe,0x2a,0xff,0x17,0xff,0xaa,0xff,0x98,0xff,0x2d,0x0,0x25,
0x0,0x86,0x0,0x8f,0x0,0xa9,0x0,0xc1,0x0,0xa0,0x0,0xb6,0x0,0x75,0x0,0x84,
0x0,0x45,0x0,0x52,0x0,0x31,0x0,0x3f,0x0,0x48,0x0,0x53,0x0,0x75,0x0,0x7c,
0x0,0x98,0x0,0x95,0x0,0xa0,0x0,0x93,0x0,0x9e,0x0,0x8b,0x0,0x9b,0x0,0x89,
0x0,0x86,0x0,0x83,0x0,0x62,0x0,0x72,0x0,0x4b,0x0,0x61,0x0,0x44,0x0,0x54,
0x0,0x40,0x0,0x4a,0x0,0x43,0x0,0x46,0x0,0x47,0x0,0x3f,0x0,0x38,0x0,0x2a,
0x0,0x13,0x0,0x5,0x0,0xe1,0xff,0xd6,0xff,0xb1,0xff,0xa9,0xff,0x8a,0xff,0x83,
0xff,0x65,0xff,0x62,0xff,0x4c,0xff,0x50,0xff,0x54,0xff,0x5a,0xff,0x77,0xff,0x7b,
0xff,0xa0,0xff,0xa0,0xff,0xba,0xff,0xb4,0xff,0xb7,0xff,0xad,0xff,0x94,0xff,0x8d,
0xff,0x6d,0xff,0x6d,0xff,0x5b,0xff,0x60,0xff,0x60,0xff,0x6d,0xff,0x7d,0xff,0x92,
0xff,0xb9,0xff,0xc6,0xff,0xfb,0xff,0xf7,0xff,0x18,0x0,0x11,0x0,0x7,0x0,0x4,
0x0,0xe5,0xff,0xdd,0xff,0xc6,0xff,0xc0,0xff,0xaf,0xff,0xb4,0xff,0x9f,0xff,0xaf,
0xff,0xa7,0xff,0xbc,0xff,0xdd,0xff,0xe9,0xff,0x2a,0x0,0x28,0x0,0x5e,0x0,0x56,
0x0,0x60,0x0,0x57,0x0,0x3d,0x0,0x38,0x0,0x1f,0x0,0x25,0x0,0x27,0x0,0x33,
0x0,0x4c,0x0,0x4e,0x0,0x6c,0x0,0x5f,0x0,0x7d,0x0,0x64,0x0,0x85,0x0,0x69,
0x0,0x81,0x0,0x70,0x0,0x71,0x0,0x6f,0x0,0x5d,0x0,0x60,0x0,0x3f,0x0,0x41,
0x0,0x13,0x0,0x13,0x0,0xdc,0xff,0xdb,0xff,0xb0,0xff,0xae,0xff,0xb3,0xff,0xb2,
0xff,0xef,0xff,0xf1,0xff,0x44,0x0,0x47,0x0,0x83,0x0,0x85,0x0,0x87,0x0,0x8c,
0x0,0x4a,0x0,0x51,0x0,0xdf,0xff,0xe2,0xff,0x68,0xff,0x69,0xff,0x13,0xff,0x15,
0xff,0xe,0xff,0x11,0xff,0x61,0xff,0x67,0xff,0xe1,0xff,0xea,0xff,0x46,0x0,0x51,
0x0,0x58,0x0,0x63,0x0,0x18,0x0,0x20,0x0,0xb8,0xff,0xbd,0xff,0x67,0xff,0x6b,
0xff,0x44,0xff,0x47,0xff,0x5a,0xff,0x5d,0xff,0x93,0xff,0x99,0xff,0xd4,0xff,0xd8,
0xff,0x13,0x0,0xd,0x0,0x47,0x0,0x3c,0x0,0x65,0x0,0x57,0x0,0x66,0x0,0x5a,
0x0,0x53,0x0,0x4f,0x0,0x42,0x0,0x42,0x0,0x37,0x0,0x37,0x0,0x32,0x0,0x31,
0x0,0x3c,0x0,0x38,0x0,0x57,0x0,0x54,0x0,0x73,0x0,0x76,0x0,0x86,0x0,0x84,
0x0,0x8a,0x0,0x7f,0x0,0x79,0x0,0x6f,0x0,0x4d,0x0,0x4a,0x0,0x14,0x0,0xf,
0x0,0xe9,0xff,0xdc,0xff,0xdf,0xff,0xd2,0xff,0xf7,0xff,0xf4,0xff,0x2a,0x0,0x2a,
0x0,0x5c,0x0,0x57,0x0,0x6a,0x0,0x66,0x0,0x4a,0x0,0x4f,0x0,0xc,0x0,0x19,
0x0,0xce,0xff,0xde,0xff,0xac,0xff,0xbb,0xff,0xae,0xff,0xba,0xff,0xcf,0xff,0xd7,
0xff,0x1,0x0,0x2,0x0,0x2d,0x0,0x26,0x0,0x49,0x0,0x39,0x0,0x49,0x0,0x3d,
0x0,0x23,0x0,0x2b,0x0,0xe7,0xff,0xff,0xff,0xb3,0xff,0xca,0xff,0xa1,0xff,0xad,
0xff,0xc1,0xff,0xc0,0xff,0xfc,0xff,0xf5,0xff,0x30,0x0,0x24,0x0,0x4a,0x0,0x34,
0x0,0x43,0x0,0x2c,0x0,0x28,0x0,0x1d,0x0,0xb,0x0,0x4,0x0,0xeb,0xff,0xe1,
0xff,0xcc,0xff,0xbf,0xff,0xbd,0xff,0xb0,0xff,0xc6,0xff,0xbf,0xff,0xe3,0xff,0xe3,
0xff,0x8,0x0,0x4,0x0,0x1c,0x0,0x12,0x0,0x21,0x0,0x16,0x0,0x1f,0x0,0x1b,
0x0,0x12,0x0,0x15,0x0,0xf2,0xff,0xf6,0xff,0xbe,0xff,0xc2,0xff,0x92,0xff,0x9b,
0xff,0xa2,0xff,0xb1,0xff,0xf6,0xff,0x6,0x0,0x61,0x0,0x6f,0x0,0xab,0x0,0xb5,
0x0,0xac,0x0,0xaf,0x0,0x65,0x0,0x64,0x0,0xc,0x0,0xd,0x0,0xd1,0xff,0xd7,
0xff,0xbe,0xff,0xc7,0xff,0xcb,0xff,0xd9,0xff,0xfa,0xff,0x8,0x0,0x44,0x0,0x4c,
0x0,0x8d,0x0,0x96,0x0,0xbc,0x0,0xcb,0x0,0xc4,0x0,0xd0,0x0,0x9f,0x0,0xa2,
0x0,0x5c,0x0,0x54,0x0,0x10,0x0,0x5,0x0,0xcc,0xff,0xcb,0xff,0xa6,0xff,0xac,
0xff,0xac,0xff,0xaf,0xff,0xdd,0xff,0xda,0xff,0x28,0x0,0x21,0x0,0x61,0x0,0x5a,
0x0,0x5b,0x0,0x59,0x0,0x17,0x0,0x15,0x0,0xb7,0xff,0xb5,0xff,0x64,0xff,0x60,
0xff,0x33,0xff,0x2f,0xff,0x2d,0xff,0x31,0xff,0x54,0xff,0x61,0xff,0x9b,0xff,0xab,
0xff,0xe7,0xff,0xf7,0xff,0x25,0x0,0x2d,0x0,0x4c,0x0,0x42,0x0,0x55,0x0,0x3b,
0x0,0x48,0x0,0x26,0x0,0x2c,0x0,0x12,0x0,0xd,0x0,0x7,0x0,0x1,0x0,0x6,
0x0,0x14,0x0,0x17,0x0,0x3c,0x0,0x3b,0x0,0x5d,0x0,0x59,0x0,0x67,0x0,0x62,
0x0,0x66,0x0,0x61,0x0,0x68,0x0,0x5b,0x0,0x60,0x0,0x50,0x0,0x4a,0x0,0x3f,
0x0,0x32,0x0,0x2b,0x0,0x1d,0x0,0x1d,0x0,0x19,0x0,0x1e,0x0,0x2a,0x0,0x28,
0x0,0x4b,0x0,0x3e,0x0,0x71,0x0,0x5a,0x0,0x7c,0x0,0x64,0x0,0x5a,0x0,0x48,
0x0,0x23,0x0,0x16,0x0,0xf3,0xff,0xeb,0xff,0xd9,0xff,0xd9,0xff,0xd3,0xff,0xd6,
0xff,0xd3,0xff,0xd8,0xff,0xd4,0xff,0xe0,0xff,0xdc,0xff,0xee,0xff,0xe8,0xff,0xff,
0xff,0xfa,0xff,0xf,0x0,0xfe,0xff,0xa,0x0,0xe3,0xff,0xe9,0xff,0xc5,0xff,0xcd,
0xff,0xc5,0xff,0xd0,0xff,0xdb,0xff,0xe8,0xff,0xf6,0xff,0x2,0x0,0x16,0x0,0x1c,
0x0,0x44,0x0,0x40,0x0,0x71,0x0,0x6b,0x0,0x88,0x0,0x83,0x0,0x80,0x0,0x7a,
0x0,0x62,0x0,0x62,0x0,0x3f,0x0,0x47,0x0,0x27,0x0,0x2e,0x0,0x15,0x0,0x1a,
0x0,0x7,0x0,0x8,0x0,0x8,0x0,0xf9,0xff,0x1a,0x0,0xf8,0xff,0x2a,0x0,0x3,
0x0,0x26,0x0,0x7,0x0,0xc,0x0,0xf9,0xff,0xf6,0xff,0xe6,0xff,0xf3,0xff,0xe3,
0xff,0xf0,0xff,0xeb,0xff,0xdf,0xff,0xe4,0xff,0xd2,0xff,0xd4,0xff,0xd4,0xff,0xd2,
0xff,0xde,0xff,0xde,0xff,0xe0,0xff,0xe6,0xff,0xda,0xff,0xe6,0xff,0xde,0xff,0xee,
0xff,0xfb,0xff,0xb,0x0,0x24,0x0,0x32,0x0,0x41,0x0,0x4a,0x0,0x44,0x0,0x4d,
0x0,0x2f,0x0,0x3d,0x0,0x12,0x0,0x21,0x0,0x0,0x0,0x7,0x0,0x1,0x0,0x1,
0x0,0xc,0x0,0xf,0x0,0x20,0x0,0x2b,0x0,0x46,0x0,0x58,0x0,0x79,0x0,0x90,
0x0,0xa5,0x0,0xbb,0x0,0xb6,0x0,0xc4,0x0,0xad,0x0,0xb0,0x0,0x93,0x0,0x90,
0x0,0x6a,0x0,0x64,0x0,0x2d,0x0,0x21,0x0,0xf3,0xff,0xde,0xff,0xd7,0xff,0xbf,
0xff,0xd9,0xff,0xc8,0xff,0xf1,0xff,0xe7,0xff,0x12,0x0,0xd,0x0,0x2a,0x0,0x2a,
0x0,0x30,0x0,0x2d,0x0,0x11,0x0,0x9,0x0,0xca,0xff,0xc3,0xff,0x7e,0xff,0x77,
0xff,0x55,0xff,0x3e,0xff,0x51,0xff,0x2f,0xff,0x6b,0xff,0x55,0xff,0x9c,0xff,0x9e,
0xff,0xd6,0xff,0xeb,0xff,0xb,0x0,0x25,0x0,0x2c,0x0,0x40,0x0,0x30,0x0,0x3f,
0x0,0x1c,0x0,0x2a,0x0,0x6,0x0,0x14,0x0,0x6,0x0,0xf,0x0,0x20,0x0,0x22,
0x0,0x48,0x0,0x42,0x0,0x6e,0x0,0x66,0x0,0x87,0x0,0x8d,0x0,0x92,0x0,0xaa,
0x0,0x96,0x0,0xb4,0x0,0x9c,0x0,0xb1,0x0,0xa2,0x0,0xa8,0x0,0x9e,0x0,0x93,
0x0,0x86,0x0,0x6f,0x0,0x6a,0x0,0x50,0x0,0x64,0x0,0x4f,0x0,0x74,0x0,0x6a,
0x0,0x87,0x0,0x8b,0x0,0x93,0x0,0xa0,0x0,0x8d,0x0,0x94,0x0,0x64,0x0,0x61,
0x0,0x22,0x0,0x1b,0x0,0xe6,0xff,0xdf,0xff,0xcc,0xff,0xbc,0xff,0xcc,0xff,0xb4,
0xff,0xd1,0xff,0xb8,0xff,0xcc,0xff,0xb5,0xff,0xc5,0xff,0xb4,0xff,0xc8,0xff,0xc3,
0xff,0xc6,0xff,0xd2,0xff,0xad,0xff,0xc3,0xff,0x8b,0xff,0x9e,0xff,0x84,0xff,0x90,
0xff,0xac,0xff,0xae,0xff,0xee,0xff,0xe5,0xff,0x2b,0x0,0x1b,0x0,0x51,0x0,0x49,
0x0,0x66,0x0,0x70,0x0,0x76,0x0,0x8c,0x0,0x89,0x0,0xa0,0x0,0x92,0x0,0xa8,
0x0,0x84,0x0,0x98,0x0,0x72,0x0,0x7b,0x0,0x84,0x0,0x7d,0x0,0xc4,0x0,0xb0,
0x0,0xf7,0x0,0xde,0x0,0xe5,0x0,0xce,0x0,0xaa,0x0,0x9b,0x0,0x82,0x0,0x7c,
0x0,0x71,0x0,0x71,0x0,0x56,0x0,0x55,0x0,0x2e,0x0,0x2c,0x0,0x13,0x0,0x1f,
0x0,0x20,0x0,0x3a,0x0,0x51,0x0,0x63,0x0,0x7e,0x0,0x7f,0x0,0x78,0x0,0x68,
0x0,0x28,0x0,0x11,0x0,0xb5,0xff,0xa5,0xff,0x5b,0xff,0x59,0xff,0x27,0xff,0x30,
0xff,0x6,0xff,0x14,0xff,0xfc,0xfe,0x8,0xff,0x1b,0xff,0x22,0xff,0x64,0xff,0x67,
0xff,0xbf,0xff,0xbb,0xff,0x9,0x0,0x1,0x0,0x31,0x0,0x2b,0x0,0x34,0x0,0x2e,
0x0,0xe,0x0,0x8,0x0,0xd0,0xff,0xce,0xff,0x9e,0xff,0xa5,0xff,0x9d,0xff,0xb0,
0xff,0xe4,0xff,0xf4,0xff,0x64,0x0,0x62,0x0,0xeb,0x0,0xe1,0x0,0x4e,0x1,0x4a,
0x1,0x7d,0x1,0x7a,0x1,0x71,0x1,0x70,0x1,0x33,0x1,0x38,0x1,0xda,0x0,0xde,
0x0,0x86,0x0,0x83,0x0,0x57,0x0,0x51,0x0,0x5d,0x0,0x58,0x0,0x86,0x0,0x89,
0x0,0xb9,0x0,0xc2,0x0,0xe1,0x0,0xe5,0x0,0xe3,0x0,0xdd,0x0,0xb2,0x0,0xa5,
0x0,0x5a,0x0,0x4e,0x0,0xea,0xff,0xe4,0xff,0x73,0xff,0x72,0xff,0x19,0xff,0x19,
0xff,0x4,0xff,0x8,0xff,0x36,0xff,0x42,0xff,0x82,0xff,0x92,0xff,0xba,0xff,0xc8,
0xff,0xd9,0xff,0xe0,0xff,0xe5,0xff,0xe4,0xff,0xe0,0xff,0xdd,0xff,0xcc,0xff,0xcc,
0xff,0xa7,0xff,0xa9,0xff,0x6e,0xff,0x75,0xff,0x4a,0xff,0x53,0xff,0x71,0xff,0x7a,
0xff,0xe2,0xff,0xea,0xff,0x5c,0x0,0x5f,0x0,0x96,0x0,0x96,0x0,0x82,0x0,0x86,
0x0,0x5b,0x0,0x58,0x0,0x4c,0x0,0x40,0x0,0x55,0x0,0x50,0x0,0x71,0x0,0x77,
0x0,0xa3,0x0,0xa4,0x0,0xe2,0x0,0xdf,0x0,0x24,0x1,0x27,0x1,0x52,0x1,0x5a,
0x1,0x4b,0x1,0x4e,0x1,0x9,0x1,0x3,0x1,0xaf,0x0,0xac,0x0,0x68,0x0,0x72,
0x0,0x3f,0x0,0x50,0x0,0x25,0x0,0x37,0x0,0x12,0x0,0x1b,0x0,0x7,0x0,0x5,
0x0,0xc,0x0,0xff,0xff,0x1d,0x0,0x9,0x0,0x2a,0x0,0x15,0x0,0x1d,0x0,0x17,
0x0,0xf2,0xff,0xfa,0xff,0xb4,0xff,0xbf,0xff,0x82,0xff,0x85,0xff,0x75,0xff,0x70,
0xff,0x89,0xff,0x87,0xff,0xbc,0xff,0xc1,0xff,0xd,0x0,0x11,0x0,0x60,0x0,0x5a,
0x0,0x90,0x0,0x7d,0x0,0x8b,0x0,0x76,0x0,0x65,0x0,0x58,0x0,0x42,0x0,0x39,
0x0,0x2d,0x0,0x29,0x0,0x2b,0x0,0x32,0x0,0x47,0x0,0x55,0x0,0x78,0x0,0x89,
0x0,0xa2,0x0,0xb0,0x0,0xb5,0x0,0xb4,0x0,0xaa,0x0,0x99,0x0,0x85,0x0,0x75,
0x0,0x62,0x0,0x62,0x0,0x58,0x0,0x66,0x0,0x5e,0x0,0x72,0x0,0x5e,0x0,0x77,
0x0,0x57,0x0,0x76,0x0,0x54,0x0,0x70,0x0,0x58,0x0,0x65,0x0,0x54,0x0,0x4d,
0x0,0x3a,0x0,0x23,0x0,0x8,0x0,0xf1,0xff,0xd2,0xff,0xc1,0xff,0xab,0xff,0x98,
0xff,0x8e,0xff,0x7e,0xff,0x7e,0xff,0x79,0xff,0x81,0xff,0x86,0xff,0x94,0xff,0x9d,
0xff,0xac,0xff,0xb6,0xff,0xc3,0xff,0xcd,0xff,0xcc,0xff,0xd4,0xff,0xc3,0xff,0xbf,
0xff,0xb4,0xff,0x9f,0xff,0xb6,0xff,0x9e,0xff,0xd9,0xff,0xd2,0xff,0x13,0x0,0x1e,
0x0,0x53,0x0,0x67,0x0,0x98,0x0,0xab,0x0,0xdb,0x0,0xe8,0x0,0x2,0x1,0xe,
0x1,0x5,0x1,0x11,0x1,0xe6,0x0,0xf1,0x0,0xb0,0x0,0xb3,0x0,0x80,0x0,0x7a,
0x0,0x76,0x0,0x6d,0x0,0x90,0x0,0x8d,0x0,0xaf,0x0,0xb3,0x0,0xb4,0x0,0xbf,
0x0,0xa7,0x0,0xb6,0x0,0x9e,0x0,0xaf,0x0,0x9b,0x0,0xa8,0x0,0x8b,0x0,0x90,
0x0,0x66,0x0,0x62,0x0,0x33,0x0,0x2c,0x0,0x3,0x0,0xfe,0xff,0xdf,0xff,0xdd,
0xff,0xc0,0xff,0xc3,0xff,0xa4,0xff,0xaa,0xff,0x94,0xff,0x95,0xff,0x93,0xff,0x92,
0xff,0x9c,0xff,0x9d,0xff,0xa1,0xff,0x9c,0xff,0x8f,0xff,0x81,0xff,0x6d,0xff,0x5d,
0xff,0x57,0xff,0x49,0xff,0x5a,0xff,0x54,0xff,0x72,0xff,0x76,0xff,0x92,0xff,0x9a,
0xff,0xad,0xff,0xb8,0xff,0xca,0xff,0xda,0xff,0xf4,0xff,0x8,0x0,0x2b,0x0,0x3e,
0x0,0x5f,0x0,0x6d,0x0,0x81,0x0,0x8b,0x0,0x90,0x0,0x9b,0x0,0x98,0x0,0xa6,
0x0,0xa0,0x0,0xaa,0x0,0xa1,0x0,0xa6,0x0,0x97,0x0,0x9e,0x0,0x8d,0x0,0x96,
0x0,0x8c,0x0,0x92,0x0,0x95,0x0,0x97,0x0,0xa1,0x0,0x9d,0x0,0xa1,0x0,0x96,
0x0,0x91,0x0,0x84,0x0,0x7a,0x0,0x74,0x0,0x5f,0x0,0x65,0x0,0x3c,0x0,0x4e,
0x0,0x15,0x0,0x2c,0x0,0x3,0x0,0x10,0x0,0xc,0x0,0x9,0x0,0x1e,0x0,0x13,
0x0,0x22,0x0,0x15,0x0,0x14,0x0,0x7,0x0,0x0,0x0,0xee,0xff,0xee,0xff,0xd5,
0xff,0xdd,0xff,0xc0,0xff,0xc9,0xff,0xb6,0xff,0xb9,0xff,0xba,0xff,0xb8,0xff,0xc5,
0xff,0xcb,0xff,0xd6,0xff,0xee,0xff,0xf2,0xff,0x12,0x0,0x14,0x0,0x2c,0x0,0x2e,
0x0,0x46,0x0,0x45,0x0,0x6a,0x0,0x62,0x0,0x88,0x0,0x82,0x0,0x8f,0x0,0x95,
0x0,0x8a,0x0,0x98,0x0,0x8d,0x0,0x9b,0x0,0x9a,0x0,0xa9,0x0,0xa3,0x0,0xb4,
0x0,0xa2,0x0,0xaf,0x0,0x96,0x0,0x9c,0x0,0x83,0x0,0x81,0x0,0x66,0x0,0x63,
0x0,0x47,0x0,0x47,0x0,0x2b,0x0,0x2d,0x0,0x15,0x0,0x17,0x0,0x6,0x0,0x0,
0x0,0xf0,0xff,0xe9,0xff,0xda,0xff,0xdb,0xff,0xd3,0xff,0xd8,0xff,0xd2,0xff,0xd2,
0xff,0xc9,0xff,0xc5,0xff,0xc2,0xff,0xbd,0xff,0xc9,0xff,0xca,0xff,0xda,0xff,0xe5,
0xff,0xf1,0xff,0xfc,0xff,0xfc,0xff,0x1,0x0,0xf0,0xff,0xf4,0xff,0xdb,0xff,0xe3,
0xff,0xd7,0xff,0xde,0xff,0xe8,0xff,0xea,0xff,0xfe,0xff,0xf8,0xff,0x7,0x0,0xfc,
0xff,0x10,0x0,0x9,0x0,0x2f,0x0,0x34,0x0,0x65,0x0,0x72,0x0,0xa1,0x0,0xad,
0x0,0xc9,0x0,0xcd,0x0,0xcc,0x0,0xca,0x0,0xb7,0x0,0xaf,0x0,0xa7,0x0,0x98,
0x0,0xa5,0x0,0x95,0x0,0xa7,0x0,0x9e,0x0,0xa1,0x0,0xa0,0x0,0x9c,0x0,0x9d,
0x0,0xac,0x0,0xae,0x0,0xd2,0x0,0xd7,0x0,0xe3,0x0,0xeb,0x0,0xb3,0x0,0xb9,
0x0,0x46,0x0,0x44,0x0,0xcb,0xff,0xc5,0xff,0x75,0xff,0x72,0xff,0x51,0xff,0x52,
0xff,0x52,0xff,0x52,0xff,0x6c,0xff,0x68,0xff,0x98,0xff,0x8e,0xff,0xc7,0xff,0xbf,
0xff,0xe8,0xff,0xea,0xff,0xe8,0xff,0xf3,0xff,0xbe,0xff,0xc8,0xff,0x7b,0xff,0x82,
0xff,0x45,0xff,0x4b,0xff,0x3b,0xff,0x41,0xff,0x60,0xff,0x61,0xff,0xa0,0xff,0xa0,
0xff,0xee,0xff,0xf8,0xff,0x3b,0x0,0x53,0x0,0x72,0x0,0x8c,0x0,0x7f,0x0,0x90,
0x0,0x67,0x0,0x6e,0x0,0x41,0x0,0x42,0x0,0x24,0x0,0x1e,0x0,0x15,0x0,0xd,
0x0,0x17,0x0,0x15,0x0,0x3a,0x0,0x45,0x0,0x8d,0x0,0x9d,0x0,0xf7,0x0,0x0,
0x1,0x37,0x1,0x35,0x1,0x1c,0x1,0x1e,0x1,0xc0,0x0,0xcb,0x0,0x65,0x0,0x6a,
0x0,0x2b,0x0,0x22,0x0,0x13,0x0,0x0,0x0,0x14,0x0,0xf9,0xff,0x20,0x0,0xfe,
0xff,0x36,0x0,0x16,0x0,0x59,0x0,0x43,0x0,0x64,0x0,0x57,0x0,0x33,0x0,0x2b,
0x0,0xd8,0xff,0xd0,0xff,0x86,0xff,0x7e,0xff,0x5e,0xff,0x5d,0xff,0x56,0xff,0x5d,
0xff,0x58,0xff,0x65,0xff,0x6c,0xff,0x74,0xff,0xa4,0xff,0x9e,0xff,0xf2,0xff,0xe7,
0xff,0x33,0x0,0x31,0x0,0x45,0x0,0x49,0x0,0x19,0x0,0x15,0x0,0xce,0xff,0xc1,
0xff,0xa0,0xff,0x95,0xff,0xa7,0xff,0xa5,0xff,0xcb,0xff,0xd5,0xff,0xfc,0xff,0x6,
0x0,0x3b,0x0,0x39,0x0,0x7c,0x0,0x76,0x0,0xab,0x0,0xb0,0x0,0xb4,0x0,0xc9,
0x0,0x98,0x0,0xaf,0x0,0x6b,0x0,0x79,0x0,0x45,0x0,0x52,0x0,0x36,0x0,0x4a,
0x0,0x48,0x0,0x59,0x0,0x6a,0x0,0x73,0x0,0x81,0x0,0x87,0x0,0x8d,0x0,0x8c,
0x0,0x93,0x0,0x8d,0x0,0x91,0x0,0x8d,0x0,0x7b,0x0,0x7a,0x0,0x4b,0x0,0x46,
0x0,0xc,0x0,0xfe,0xff,0xdb,0xff,0xc5,0xff,0xcb,0xff,0xb9,0xff,0xdb,0xff,0xd2,
0xff,0xfa,0xff,0xf0,0xff,0xd,0x0,0x3,0x0,0x6,0x0,0x7,0x0,0xf1,0xff,0xf7,
0xff,0xd9,0xff,0xd9,0xff,0xc2,0xff,0xbc,0xff,0xb3,0xff,0xab,0xff,0xb2,0xff,0xad,
0xff,0xc1,0xff,0xbd,0xff,0xd3,0xff,0xd5,0xff,0xe9,0xff,0xf5,0xff,0xa,0x0,0x19,
0x0,0x2d,0x0,0x31,0x0,0x3f,0x0,0x3b,0x0,0x37,0x0,0x34,0x0,0x1c,0x0,0x1d,
0x0,0x6,0x0,0x7,0x0,0xb,0x0,0xb,0x0,0x27,0x0,0x2c,0x0,0x47,0x0,0x4e,
0x0,0x5b,0x0,0x5e,0x0,0x63,0x0,0x66,0x0,0x6e,0x0,0x7c,0x0,0x83,0x0,0x9b,
0x0,0x92,0x0,0xa6,0x0,0x8b,0x0,0x8d,0x0,0x6e,0x0,0x65,0x0,0x57,0x0,0x4d,
0x0,0x57,0x0,0x45,0x0,0x55,0x0,0x45,0x0,0x41,0x0,0x41,0x0,0x2c,0x0,0x33,
0x0,0x28,0x0,0x2c,0x0,0x33,0x0,0x38,0x0,0x34,0x0,0x3d,0x0,0x12,0x0,0x1c,
0x0,0xdf,0xff,0xdf,0xff,0xbd,0xff,0xb1,0xff,0xb5,0xff,0xac,0xff,0xc8,0xff,0xbe,
0xff,0xde,0xff,0xc9,0xff,0xdd,0xff,0xca,0xff,0xd7,0xff,0xd2,0xff,0xf0,0xff,0xf4,
0xff,0x12,0x0,0x22,0x0,0xb,0x0,0x2d,0x0,0xd7,0xff,0xfe,0xff,0xa7,0xff,0xbd,
0xff,0xa6,0xff,0xa5,0xff,0xc7,0xff,0xbb,0xff,0xe0,0xff,0xd7,0xff,0xe7,0xff,0xe5,
0xff,0xf7,0xff,0xf8,0xff,0x20,0x0,0x22,0x0,0x47,0x0,0x52,0x0,0x53,0x0,0x6b,
0x0,0x51,0x0,0x67,0x0,0x52,0x0,0x55,0x0,0x59,0x0,0x48,0x0,0x62,0x0,0x43,
0x0,0x5a,0x0,0x3e,0x0,0x45,0x0,0x37,0x0,0x45,0x0,0x3c,0x0,0x66,0x0,0x58,
0x0,0x84,0x0,0x74,0x0,0x74,0x0,0x67,0x0,0x36,0x0,0x31,0x0,0x2,0x0,0x1,
0x0,0xff,0xff,0xfe,0xff,0x10,0x0,0x15,0x0,0x9,0x0,0x13,0x0,0xe3,0xff,0xec,
0xff,0xc3,0xff,0xc6,0xff,0xc5,0xff,0xc0,0xff,0xda,0xff,0xd1,0xff,0xe0,0xff,0xdc,
0xff,0xd6,0xff,0xd8,0xff,0xd1,0xff,0xd7,0xff,0xdd,0xff,0xea,0xff,0xed,0xff,0x6,
0x0,0xed,0xff,0xf,0x0,0xe3,0xff,0xfc,0xff,0xe2,0xff,0xe5,0xff,0xf0,0xff,0xe8,
0xff,0xa,0x0,0x5,0x0,0x24,0x0,0x1a,0x0,0x26,0x0,0x14,0x0,0x11,0x0,0xa,
0x0,0x7,0x0,0x17,0x0,0x1e,0x0,0x3b,0x0,0x42,0x0,0x5f,0x0,0x58,0x0,0x6d,
0x0,0x56,0x0,0x61,0x0,0x50,0x0,0x49,0x0,0x52,0x0,0x38,0x0,0x57,0x0,0x36,
0x0,0x51,0x0,0x3b,0x0,0x3f,0x0,0x38,0x0,0x30,0x0,0x33,0x0,0x32,0x0,0x38,
0x0,0x44,0x0,0x4b,0x0,0x5b,0x0,0x62,0x0,0x62,0x0,0x63,0x0,0x51,0x0,0x46,
0x0,0x31,0x0,0x1a,0x0,0x10,0x0,0xf8,0xff,0xf4,0xff,0xe6,0xff,0xe1,0xff,0xe1,
0xff,0xd4,0xff,0xe1,0xff,0xcc,0xff,0xe5,0xff,0xcb,0xff,0xe6,0xff,0xcf,0xff,0xe0,
0xff,0xd6,0xff,0xdf,0xff,0xe4,0xff,0xe8,0xff,0xf3,0xff,0xf1,0xff,0xfc,0xff,0xf3,
0xff,0xfc,0xff,0xf1,0xff,0xf7,0xff,0xec,0xff,0xf2,0xff,0xee,0xff,0xf2,0xff,0xf6,
0xff,0x2,0x0,0x8,0x0,0x22,0x0,0x21,0x0,0x39,0x0,0x2d,0x0,0x38,0x0,0x29,
0x0,0x2e,0x0,0x29,0x0,0x2a,0x0,0x30,0x0,0x23,0x0,0x2f,0x0,0x18,0x0,0x24,
0x0,0x11,0x0,0x1b,0x0,0xf,0x0,0x1f,0x0,0x14,0x0,0x2d,0x0,0x21,0x0,0x35,
0x0,0x28,0x0,0x2f,0x0,0x20,0x0,0x1f,0x0,0x1a,0x0,0x18,0x0,0x21,0x0,0x21,
0x0,0x23,0x0,0x26,0x0,0xe,0x0,0x11,0x0,0xe8,0xff,0xeb,0xff,0xca,0xff,0xd1,
0xff,0xc8,0xff,0xd5,0xff,0xdd,0xff,0xea,0xff,0xf5,0xff,0xfa,0xff,0x3,0x0,0xff,
0xff,0x3,0x0,0xff,0xff,0xff,0xff,0x2,0x0,0xfd,0xff,0x9,0x0,0xf2,0xff,0x3,
0x0,0xd6,0xff,0xe0,0xff,0xbb,0xff,0xbd,0xff,0xc0,0xff,0xbf,0xff,0xf0,0xff,0xe8,
0xff,0x2d,0x0,0x1d,0x0,0x49,0x0,0x3a,0x0,0x3e,0x0,0x32,0x0,0x2a,0x0,0x1a,
0x0,0x1f,0x0,0xd,0x0,0x1a,0x0,0xd,0x0,0x1a,0x0,0xf,0x0,0x1b,0x0,0xf,
0x0,0x18,0x0,0xa,0x0,0x17,0x0,0xf,0x0,0x24,0x0,0x21,0x0,0x35,0x0,0x32,
0x0,0x3d,0x0,0x38,0x0,0x31,0x0,0x35,0x0,0x16,0x0,0x29,0x0,0x0,0x0,0x1c,
0x0,0xf8,0xff,0x12,0x0,0xf7,0xff,0x9,0x0,0xf7,0xff,0x1,0x0,0xf8,0xff,0xfb,
0xff,0xf7,0xff,0xf9,0xff,0xf6,0xff,0xfc,0xff,0xef,0xff,0xf6,0xff,0xdb,0xff,0xe2,
0xff,0xbe,0xff,0xc4,0xff,0xa6,0xff,0xa5,0xff,0x9d,0xff,0x9c,0xff,0xa8,0xff,0xb5,
0xff,0xbe,0xff,0xd7,0xff,0xd7,0xff,0xe7,0xff,0xed,0xff,0xeb,0xff,0x0,0x0,0xf7,
0xff,0x10,0x0,0xf,0x0,0x17,0x0,0x1b,0x0,0x13,0x0,0xf,0x0,0x11,0x0,0xfe,
0xff,0x1b,0x0,0xff,0xff,0x36,0x0,0x24,0x0,0x62,0x0,0x62,0x0,0x83,0x0,0x8d,
0x0,0x79,0x0,0x86,0x0,0x53,0x0,0x63,0x0,0x3c,0x0,0x49,0x0,0x42,0x0,0x40,
0x0,0x4a,0x0,0x37,0x0,0x36,0x0,0x1a,0x0,0xf,0x0,0xfb,0xff,0xfa,0xff,0xfa,
0xff,0x2,0x0,0x18,0x0,0x12,0x0,0x3b,0x0,0x1b,0x0,0x46,0x0,0x16,0x0,0x35,
0x0,0x9,0x0,0x15,0x0,0xf6,0xff,0xeb,0xff,0xde,0xff,0xbe,0xff,0xc4,0xff,0xa1,
0xff,0xb0,0xff,0x9b,0xff,0xb1,0xff,0xa7,0xff,0xc6,0xff,0xc3,0xff,0xda,0xff,0xe7,
0xff,0xe2,0xff,0xfb,0xff,0xdf,0xff,0xf3,0xff,0xd8,0xff,0xdb,0xff,0xdd,0xff,0xd0,
0xff,0xf2,0xff,0xd8,0xff,0xff,0xff,0xe2,0xff,0xfa,0xff,0xe4,0xff,0xf8,0xff,0xe9,
0xff,0xd,0x0,0x5,0x0,0x39,0x0,0x3b,0x0,0x61,0x0,0x73,0x0,0x71,0x0,0x8c,
0x0,0x6b,0x0,0x7d,0x0,0x5b,0x0,0x5b,0x0,0x50,0x0,0x48,0x0,0x54,0x0,0x4c,
0x0,0x5c,0x0,0x4f,0x0,0x50,0x0,0x43,0x0,0x37,0x0,0x3c,0x0,0x2c,0x0,0x4d,
0x0,0x38,0x0,0x68,0x0,0x39,0x0,0x66,0x0,0x17,0x0,0x37,0x0,0xeb,0xff,0xf9,
0xff,0xd9,0xff,0xd4,0xff,0xe3,0xff,0xd0,0xff,0xe9,0xff,0xd0,0xff,0xd5,0xff,0xc4,
0xff,0xbe,0xff,0xb6,0xff,0xbd,0xff,0xb8,0xff,0xca,0xff,0xc8,0xff,0xd0,0xff,0xd4,
0xff,0xc7,0xff,0xca,0xff,0xaf,0xff,0xac,0xff,0x99,0xff,0x94,0xff,0x9b,0xff,0x98,
0xff,0xb7,0xff,0xb4,0xff,0xda,0xff,0xc9,0xff,0xf4,0xff,0xcf,0xff,0x3,0x0,0xd6,
0xff,0x9,0x0,0xec,0xff,0x10,0x0,0xc,0x0,0x1e,0x0,0x2a,0x0,0x2b,0x0,0x3c,
0x0,0x32,0x0,0x42,0x0,0x3c,0x0,0x46,0x0,0x49,0x0,0x50,0x0,0x53,0x0,0x65,
0x0,0x61,0x0,0x74,0x0,0x6d,0x0,0x73,0x0,0x70,0x0,0x6d,0x0,0x67,0x0,0x67,
0x0,0x50,0x0,0x57,0x0,0x33,0x0,0x3b,0x0,0x19,0x0,0x22,0x0,0x4,0x0,0x11,
0x0,0xf5,0xff,0x7,0x0,0xf5,0xff,0x1,0x0,0xf6,0xff,0xfa,0xff,0xf1,0xff,0xef,
0xff,0xef,0xff,0xe3,0xff,0xe5,0xff,0xd7,0xff,0xc7,0xff,0xc3,0xff,0x9e,0xff,0xa7,
0xff,0x82,0xff,0x96,0xff,0x8e,0xff,0xa3,0xff,0xbe,0xff,0xc6,0xff,0xf0,0xff,0xe5,
0xff,0x11,0x0,0xf9,0xff,0x25,0x0,0xe,0x0,0x28,0x0,0x21,0x0,0x1d,0x0,0x23,
0x0,0xc,0x0,0x16,0x0,0xf8,0xff,0x0,0x0,0xf0,0xff,0xeb,0xff,0x0,0x0,0xf3,
0xff,0x26,0x0,0x1d,0x0,0x51,0x0,0x48,0x0,0x69,0x0,0x5c,0x0,0x6b,0x0,0x61,
0x0,0x68,0x0,0x66,0x0,0x61,0x0,0x6a,0x0,0x4a,0x0,0x5b,0x0,0x21,0x0,0x31,
0x0,0xf8,0xff,0x0,0x0,0xe7,0xff,0xe8,0xff,0xf2,0xff,0xf1,0xff,0x9,0x0,0xa,
0x0,0x1a,0x0,0x17,0x0,0x14,0x0,0xe,0x0,0xf8,0xff,0xf9,0xff,0xd4,0xff,0xe0,
0xff,0xb0,0xff,0xbb,0xff,0x91,0xff,0x8e,0xff,0x7e,0xff,0x6b,0xff,0x7a,0xff,0x5e,
0xff,0x80,0xff,0x69,0xff,0x94,0xff,0x89,0xff,0xbc,0xff,0xba,0xff,0xe5,0xff,0xe9,
0xff,0xf4,0xff,0xff,0xff,0xe3,0xff,0xf8,0xff,0xcc,0xff,0xea,0xff,0xc8,0xff,0xe6,
0xff,0xd8,0xff,0xef,0xff,0xfa,0xff,0x6,0x0,0x30,0x0,0x2d,0x0,0x6f,0x0,0x60,
0x0,0x98,0x0,0x8e,0x0,0xa6,0x0,0xa3,0x0,0x9f,0x0,0xa3,0x0,0x8c,0x0,0x9d,
0x0,0x77,0x0,0x98,0x0,0x67,0x0,0x8a,0x0,0x59,0x0,0x70,0x0,0x55,0x0,0x59,
0x0,0x64,0x0,0x4f,0x0,0x78,0x0,0x4c,0x0,0x7a,0x0,0x48,0x0,0x5c,0x0,0x3d,
0x0,0x2b,0x0,0x27,0x0,0x3,0x0,0x12,0x0,0xeb,0xff,0xfc,0xff,0xc9,0xff,0xd3,
0xff,0x95,0xff,0x92,0xff,0x6f,0xff,0x5b,0xff,0x76,0xff,0x51,0xff,0x93,0xff,0x6e,
0xff,0x97,0xff,0x80,0xff,0x73,0xff,0x6d,0xff,0x50,0xff,0x59,0xff,0x57,0xff,0x6a,
0xff,0x7a,0xff,0x8e,0xff,0x8c,0xff,0xa3,0xff,0x7e,0xff,0x97,0xff,0x70,0xff,0x7d,
0xff,0x84,0xff,0x84,0xff,0xbb,0xff,0xb8,0xff,0xf3,0xff,0xf0,0xff,0x6,0x0,0x4,
0x0,0xf7,0xff,0xfe,0xff,0xf3,0xff,0x8,0x0,0x10,0x0,0x31,0x0,0x32,0x0,0x54,
0x0,0x38,0x0,0x4f,0x0,0x25,0x0,0x2e,0x0,0x17,0x0,0x16,0x0,0x27,0x0,0x1e,
0x0,0x49,0x0,0x3e,0x0,0x65,0x0,0x57,0x0,0x6d,0x0,0x59,0x0,0x64,0x0,0x4e,
0x0,0x56,0x0,0x48,0x0,0x53,0x0,0x49,0x0,0x52,0x0,0x44,0x0,0x44,0x0,0x39,
0x0,0x2e,0x0,0x2d,0x0,0x1a,0x0,0x1f,0x0,0x13,0x0,0x11,0x0,0x1b,0x0,0xb,
0x0,0x20,0x0,0xc,0x0,0x19,0x0,0xd,0x0,0xf,0x0,0xa,0x0,0x2,0x0,0x4,
0x0,0xef,0xff,0xf8,0xff,0xd6,0xff,0xe5,0xff,0xbf,0xff,0xd5,0xff,0xb8,0xff,0xd1,
0xff,0xc1,0xff,0xd8,0xff,0xce,0xff,0xe0,0xff,0xdf,0xff,0xec,0xff,0xf3,0xff,0xff,
0xff,0x4,0x0,0x10,0x0,0x9,0x0,0x13,0x0,0xf5,0xff,0xfd,0xff,0xcf,0xff,0xdd,
0xff,0xb4,0xff,0xcb,0xff,0xb7,0xff,0xcb,0xff,0xc7,0xff,0xcd,0xff,0xc8,0xff,0xc1,
0xff,0xb8,0xff,0xa7,0xff,0xb2,0xff,0x9e,0xff,0xc6,0xff,0xb4,0xff,0xd7,0xff,0xca,
0xff,0xc5,0xff,0xbe,0xff,0x98,0xff,0x95,0xff,0x79,0xff,0x70,0xff,0x83,0xff,0x6b,
0xff,0xa2,0xff,0x80,0xff,0xb4,0xff,0x96,0xff,0xb9,0xff,0xab,0xff,0xca,0xff,0xcd,
0xff,0xf5,0xff,0xfe,0xff,0x21,0x0,0x2c,0x0,0x31,0x0,0x3f,0x0,0x25,0x0,0x32,
0x0,0x14,0x0,0x1c,0x0,0xb,0x0,0x10,0x0,0xd,0x0,0x14,0x0,0x1e,0x0,0x2e,
0x0,0x43,0x0,0x56,0x0,0x6c,0x0,0x78,0x0,0x80,0x0,0x88,0x0,0x7f,0x0,0x8c,
0x0,0x85,0x0,0x92,0x0,0x92,0x0,0x9c,0x0,0x92,0x0,0x94,0x0,0x7d,0x0,0x74,
0x0,0x64,0x0,0x55,0x0,0x57,0x0,0x50,0x0,0x53,0x0,0x5c,0x0,0x46,0x0,0x59,
0x0,0x2c,0x0,0x3a,0x0,0xd,0x0,0xf,0x0,0xf5,0xff,0xee,0xff,0xe6,0xff,0xdb,
0xff,0xd0,0xff,0xbb,0xff,0xa6,0xff,0x85,0xff,0x75,0xff,0x52,0xff,0x56,0xff,0x3b,
0xff,0x52,0xff,0x43,0xff,0x5b,0xff,0x58,0xff,0x58,0xff,0x5f,0xff,0x4a,0xff,0x4e,
0xff,0x47,0xff,0x3a,0xff,0x52,0xff,0x37,0xff,0x60,0xff,0x43,0xff,0x6e,0xff,0x57,
0xff,0x77,0xff,0x6e,0xff,0x81,0xff,0x8f,0xff,0x9a,0xff,0xbd,0xff,0xc3,0xff,0xe7,
0xff,0xef,0xff,0x6,0x0,0xd,0x0,0x1d,0x0,0x15,0x0,0x24,0x0,0x16,0x0,0x1f,
0x0,0x1f,0x0,0x1d,0x0,0x2e,0x0,0x23,0x0,0x3c,0x0,0x2e,0x0,0x48,0x0,0x42,
0x0,0x4b,0x0,0x56,0x0,0x4c,0x0,0x63,0x0,0x52,0x0,0x67,0x0,0x57,0x0,0x5e,
0x0,0x54,0x0,0x4e,0x0,0x4e,0x0,0x3f,0x0,0x42,0x0,0x28,0x0,0x22,0x0,0x0,
0x0,0xf2,0xff,0xd5,0xff,0xe0,0xff,0xd4,0xff,0xa,0x0,0xa,0x0,0x39,0x0,0x37,
0x0,0x1f,0x0,0x15,0x0,0xcb,0xff,0xc0,0xff,0x93,0xff,0x8c,0xff,0x9d,0xff,0x92,
0xff,0xb1,0xff,0x9d,0xff,0x92,0xff,0x80,0xff,0x51,0xff,0x4d,0xff,0x30,0xff,0x41,
0xff,0x57,0xff,0x78,0xff,0xb3,0xff,0xd0,0xff,0x3,0x0,0xe,0x0,0x17,0x0,0x15,
0x0,0x2,0x0,0xfa,0xff,0xf1,0xff,0xe9,0xff,0xf8,0xff,0xf7,0xff,0x5,0x0,0x13,
0x0,0x9,0x0,0x29,0x0,0xf,0x0,0x37,0x0,0x2a,0x0,0x46,0x0,0x48,0x0,0x54,
0x0,0x52,0x0,0x56,0x0,0x40,0x0,0x3e,0x0,0x17,0x0,0x11,0x0,0xf3,0xff,0xe7,
0xff,0xe5,0xff,0xda,0xff,0xe2,0xff,0xe4,0xff,0xde,0xff,0xef,0xff,0xd9,0xff,0xe9,
0xff,0xd3,0xff,0xd5,0xff,0xcf,0xff,0xc8,0xff,0xcf,0xff,0xc6,0xff,0xcf,0xff,0xca,
0xff,0xce,0xff,0xca,0xff,0xbe,0xff,0xb6,0xff,0x9d,0xff,0x8e,0xff,0x81,0xff,0x6c,
0xff,0x7a,0xff,0x66,0xff,0x87,0xff,0x78,0xff,0x9b,0xff,0x94,0xff,0xae,0xff,0xad,
0xff,0xbe,0xff,0xbf,0xff,0xd0,0xff,0xd2,0xff,0xe5,0xff,0xe4,0xff,0xf8,0xff,0xf3,
0xff,0xfb,0xff,0xfb,0xff,0xea,0xff,0xfa,0xff,0xe6,0xff,0xff,0xff,0xb,0x0,0x21,
0x0,0x48,0x0,0x5d,0x0,0x76,0x0,0x89,0x0,0x7e,0x0,0x88,0x0,0x67,0x0,0x69,
0x0,0x51,0x0,0x4e,0x0,0x4a,0x0,0x4d,0x0,0x50,0x0,0x59,0x0,0x51,0x0,0x55,
0x0,0x3b,0x0,0x37,0x0,0x19,0x0,0x19,0x0,0xe,0x0,0x16,0x0,0x22,0x0,0x2d,
0x0,0x35,0x0,0x3d,0x0,0x20,0x0,0x24,0x0,0xe7,0xff,0xe8,0xff,0xb7,0xff,0xb8,
0xff,0xb1,0xff,0xaf,0xff,0xc2,0xff,0xba,0xff,0xc4,0xff,0xb9,0xff,0xb0,0xff,0xa7,
0xff,0xa2,0xff,0x97,0xff,0xb1,0xff,0x9e,0xff,0xce,0xff,0xb9,0xff,0xd8,0xff,0xce,
0xff,0xbf,0xff,0xc0,0xff,0x95,0xff,0x93,0xff,0x85,0xff,0x77,0xff,0xaa,0xff,0x96,
0xff,0xea,0xff,0xda,0xff,0xd,0x0,0x3,0x0,0xfc,0xff,0xf8,0xff,0xde,0xff,0xde,
0xff,0xda,0xff,0xdd,0xff,0xe8,0xff,0xee,0xff,0xee,0xff,0xf3,0xff,0xe3,0xff,0xeb,
0xff,0xdf,0xff,0xe7,0xff,0xf0,0xff,0xf2,0xff,0xb,0x0,0xf,0x0,0x27,0x0,0x34,
0x0,0x3b,0x0,0x49,0x0,0x37,0x0,0x3f,0x0,0x1b,0x0,0x1f,0x0,0xfc,0xff,0x3,
0x0,0xeb,0xff,0xfb,0xff,0xea,0xff,0xfc,0xff,0xf2,0xff,0xfb,0xff,0xf9,0xff,0x0,
0x0,0xfd,0xff,0x6,0x0,0x1,0x0,0x2,0x0,0xff,0xff,0xf5,0xff,0xfb,0xff,0xea,
0xff,0xf4,0xff,0xeb,0xff,0xe6,0xff,0xe9,0xff,0xdd,0xff,0xdd,0xff,0xed,0xff,0xdc,
0xff,0xd,0x0,0xf6,0xff,0x24,0x0,0x19,0x0,0x29,0x0,0x30,0x0,0x27,0x0,0x39,
0x0,0x29,0x0,0x3c,0x0,0x28,0x0,0x36,0x0,0x18,0x0,0x1b,0x0,0xfd,0xff,0xf0,
0xff,0xe8,0xff,0xd1,0xff,0xea,0xff,0xc9,0xff,0xfc,0xff,0xdc,0xff,0x9,0x0,0x2,
0x0,0x6,0x0,0x1c,0x0,0xf7,0xff,0x11,0x0,0xe1,0xff,0xf3,0xff,0xce,0xff,0xda,
0xff,0xc5,0xff,0xcb,0xff,0xc1,0xff,0xbc,0xff,0xb6,0xff,0xa4,0xff,0xa5,0xff,0x91,
0xff,0xa2,0xff,0x9b,0xff,0xbc,0xff,0xc4,0xff,0xdd,0xff,0xef,0xff,0xe6,0xff,0xfb,
0xff,0xda,0xff,0xeb,0xff,0xcf,0xff,0xdb,0xff,0xc7,0xff,0xd5,0xff,0xc5,0xff,0xd0,
0xff,0xd4,0xff,0xd1,0xff,0xf3,0xff,0xe0,0xff,0x12,0x0,0xfc,0xff,0x27,0x0,0x1d,
0x0,0x32,0x0,0x31,0x0,0x36,0x0,0x36,0x0,0x35,0x0,0x35,0x0,0x32,0x0,0x35,
0x0,0x3d,0x0,0x3d,0x0,0x4a,0x0,0x44,0x0,0x47,0x0,0x39,0x0,0x39,0x0,0x25,
0x0,0x33,0x0,0x26,0x0,0x38,0x0,0x38,0x0,0x42,0x0,0x42,0x0,0x46,0x0,0x3f,
0x0,0x3c,0x0,0x37,0x0,0x25,0x0,0x2d,0x0,0xc,0x0,0x1c,0x0,0xfd,0xff,0x5,
0x0,0xf4,0xff,0xf0,0xff,0xe4,0xff,0xdf,0xff,0xcf,0xff,0xce,0xff,0xc3,0xff,0xc2,
0xff,0xc1,0xff,0xc0,0xff,0xc1,0xff,0xbe,0xff,0xba,0xff,0xb0,0xff,0xae,0xff,0x9d,
0xff,0xac,0xff,0xa0,0xff,0xbc,0xff,0xc0,0xff,0xd5,0xff,0xe5,0xff,0xe6,0xff,0xf7,
0xff,0xec,0xff,0xf8,0xff,0xf7,0xff,0xf8,0xff,0xa,0x0,0xfe,0xff,0xf,0x0,0x0,
0x0,0x1,0x0,0xfd,0xff,0x5,0x0,0x8,0x0,0x31,0x0,0x2b,0x0,0x65,0x0,0x58,
0x0,0x70,0x0,0x71,0x0,0x51,0x0,0x66,0x0,0x2d,0x0,0x47,0x0,0x20,0x0,0x2f,
0x0,0x29,0x0,0x2e,0x0,0x3c,0x0,0x38,0x0,0x4a,0x0,0x38,0x0,0x47,0x0,0x2d,
0x0,0x35,0x0,0x24,0x0,0x22,0x0,0x21,0x0,0x12,0x0,0x1e,0x0,0x5,0x0,0x18,
0x0,0xfc,0xff,0x10,0x0,0xfc,0xff,0xb,0x0,0xfe,0xff,0x8,0x0,0xf6,0xff,0xfd,
0xff,0xe6,0xff,0xe1,0xff,0xdf,0xff,0xc9,0xff,0xea,0xff,0xcc,0xff,0xf1,0xff,0xe0,
0xff,0xdc,0xff,0xe5,0xff,0xb9,0xff,0xd5,0xff,0xac,0xff,0xc8,0xff,0xc1,0xff,0xd7,
0xff,0xeb,0xff,0xf6,0xff,0x7,0x0,0x7,0x0,0x7,0x0,0x0,0x0,0x1,0x0,0xf6,
0xff,0x11,0x0,0xff,0xff,0x34,0x0,0x1f,0x0,0x4d,0x0,0x40,0x0,0x3f,0x0,0x46,
0x0,0x1d,0x0,0x37,0x0,0x1e,0x0,0x38,0x0,0x4a,0x0,0x55,0x0,0x76,0x0,0x71,
0x0,0x80,0x0,0x70,0x0,0x66,0x0,0x55,0x0,0x49,0x0,0x3e,0x0,0x42,0x0,0x3d,
0x0,0x3c,0x0,0x42,0x0,0x21,0x0,0x2f,0x0,0xf8,0xff,0x5,0x0,0xde,0xff,0xe6,
0xff,0xe8,0xff,0xe8,0xff,0x1,0x0,0xf7,0xff,0x1,0x0,0xf8,0xff,0xeb,0xff,0xe9,
0xff,0xdb,0xff,0xdd,0xff,0xde,0xff,0xe2,0xff,0xed,0xff,0xee,0xff,0xf1,0xff,0xee,
0xff,0xdd,0xff,0xdc,0xff,0xc7,0xff,0xc7,0xff,0xc8,0xff,0xc8,0xff,0xe8,0xff,0xe6,
0xff,0x13,0x0,0xc,0x0,0x25,0x0,0x1f,0x0,0x18,0x0,0x1e,0x0,0x6,0x0,0x19,
0x0,0x3,0x0,0x17,0x0,0xf,0x0,0x14,0x0,0x24,0x0,0x1a,0x0,0x31,0x0,0x28,
0x0,0x31,0x0,0x30,0x0,0x38,0x0,0x33,0x0,0x4c,0x0,0x42,0x0,0x5b,0x0,0x5e,
0x0,0x5c,0x0,0x72,0x0,0x5a,0x0,0x73,0x0,0x5e,0x0,0x66,0x0,0x5f,0x0,0x52,
0x0,0x4a,0x0,0x39,0x0,0x2b,0x0,0x24,0x0,0x20,0x0,0x1c,0x0,0x28,0x0,0x1a,
0x0,0x2a,0x0,0x19,0x0,0x1e,0x0,0x20,0x0,0xf,0x0,0x28,0x0,0x3,0x0,0x1a,
0x0,0xf8,0xff,0xf2,0xff,0xe5,0xff,0xc9,0xff,0xcd,0xff,0xb3,0xff,0xc1,0xff,0xb1,
0xff,0xc9,0xff,0xbc,0xff,0xdf,0xff,0xcf,0xff,0xf3,0xff,0xe4,0xff,0xfc,0xff,0xfc,
0xff,0x4,0x0,0x17,0x0,0x16,0x0,0x26,0x0,0x26,0x0,0x1f,0x0,0x27,0x0,0xb,
0x0,0x1a,0x0,0x1,0x0,0x11,0x0,0xd,0x0,0x23,0x0,0x27,0x0,0x43,0x0,0x3f,
0x0,0x53,0x0,0x4f,0x0,0x4a,0x0,0x52,0x0,0x3c,0x0,0x4a,0x0,0x3c,0x0,0x49,
0x0,0x4e,0x0,0x58,0x0,0x5a,0x0,0x67,0x0,0x52,0x0,0x5e,0x0,0x3f,0x0,0x3d,
0x0,0x28,0x0,0x1d,0x0,0x19,0x0,0x18,0x0,0x20,0x0,0x2f,0x0,0x32,0x0,0x49,
0x0,0x35,0x0,0x4b,0x0,0x23,0x0,0x36,0x0,0xe,0x0,0x20,0x0,0x6,0x0,0x11,
0x0,0x8,0x0,0x3,0x0,0x2,0x0,0xf3,0xff,0xf3,0xff,0xe2,0xff,0xe8,0xff,0xd9,
0xff,0xf1,0xff,0xe2,0xff,0x9,0x0,0xf9,0xff,0x18,0x0,0xf,0x0,0x17,0x0,0x15,
0x0,0xe,0x0,0xe,0x0,0x8,0x0,0x8,0x0,0x10,0x0,0xf,0x0,0x23,0x0,0x1f,
0x0,0x3b,0x0,0x39,0x0,0x58,0x0,0x5a,0x0,0x6e,0x0,0x71,0x0,0x77,0x0,0x75,
0x0,0x7e,0x0,0x75,0x0,0x82,0x0,0x7f,0x0,0x80,0x0,0x88,0x0,0x7a,0x0,0x7e,
0x0,0x6b,0x0,0x64,0x0,0x55,0x0,0x4d,0x0,0x45,0x0,0x43,0x0,0x42,0x0,0x44,
0x0,0x49,0x0,0x4a,0x0,0x52,0x0,0x50,0x0,0x4d,0x0,0x50,0x0,0x3c,0x0,0x43,
0x0,0x25,0x0,0x2a,0x0,0xd,0x0,0x10,0x0,0xf6,0xff,0xf5,0xff,0xe1,0xff,0xdc,
0xff,0xd4,0xff,0xd1,0xff,0xd6,0xff,0xcf,0xff,0xdd,0xff,0xd4,0xff,0xe3,0xff,0xe4,
0xff,0xf0,0xff,0xf5,0xff,0xf9,0xff,0xf9,0xff,0xf0,0xff,0xeb,0xff,0xd8,0xff,0xd4,
0xff,0xc5,0xff,0xc5,0xff,0xc7,0xff,0xc5,0xff,0xd9,0xff,0xd2,0xff,0xf1,0xff,0xef,
0xff,0x14,0x0,0x1b,0x0,0x3e,0x0,0x49,0x0,0x5a,0x0,0x63,0x0,0x61,0x0,0x66,
0x0,0x5e,0x0,0x5e,0x0,0x61,0x0,0x63,0x0,0x6e,0x0,0x7b,0x0,0x7c,0x0,0x90,
0x0,0x82,0x0,0x8e,0x0,0x79,0x0,0x7d,0x0,0x6a,0x0,0x78,0x0,0x70,0x0,0x8f,
0x0,0x8e,0x0,0xaf,0x0,0xa6,0x0,0xb4,0x0,0x9f,0x0,0xa1,0x0,0x80,0x0,0x85,
0x0,0x5e,0x0,0x67,0x0,0x4c,0x0,0x53,0x0,0x4d,0x0,0x4d,0x0,0x52,0x0,0x4b,
0x0,0x4b,0x0,0x46,0x0,0x3b,0x0,0x3e,0x0,0x33,0x0,0x32,0x0,0x34,0x0,0x26,
0x0,0x2d,0x0,0x12,0x0,0x10,0x0,0xf3,0xff,0xf0,0xff,0xdd,0xff,0xe0,0xff,0xd4,
0xff,0xe1,0xff,0xd4,0xff,0xeb,0xff,0xdf,0xff,0xfa,0xff,0xf4,0xff,0xff,0xff,0x0,
0x0,0xef,0xff,0xf1,0xff,0xd2,0xff,0xd2,0xff,0xc2,0xff,0xc1,0xff,0xcd,0xff,0xc7,
0xff,0xe2,0xff,0xd6,0xff,0xf2,0xff,0xe7,0xff,0x4,0x0,0x0,0x0,0x1e,0x0,0x1c,
0x0,0x32,0x0,0x33,0x0,0x37,0x0,0x3d,0x0,0x37,0x0,0x40,0x0,0x3e,0x0,0x4a,
0x0,0x48,0x0,0x4f,0x0,0x45,0x0,0x44,0x0,0x34,0x0,0x31,0x0,0x2f,0x0,0x2f,
0x0,0x44,0x0,0x4f,0x0,0x67,0x0,0x7e,0x0,0x75,0x0,0x91,0x0,0x62,0x0,0x80,
0x0,0x50,0x0,0x69,0x0,0x55,0x0,0x57,0x0,0x56,0x0,0x47,0x0,0x48,0x0,0x38,
0x0,0x41,0x0,0x39,0x0,0x4a,0x0,0x4a,0x0,0x5a,0x0,0x5c,0x0,0x5f,0x0,0x64,
0x0,0x56,0x0,0x60,0x0,0x51,0x0,0x59,0x0,0x54,0x0,0x4f,0x0,0x4c,0x0,0x3d,
0x0,0x34,0x0,0x20,0x0,0x1a,0x0,0x6,0x0,0x13,0x0,0xff,0xff,0x24,0x0,0x11,
0x0,0x3a,0x0,0x31,0x0,0x42,0x0,0x3f,0x0,0x33,0x0,0x2f,0x0,0x18,0x0,0x19,
0x0,0x7,0x0,0x12,0x0,0x9,0x0,0x14,0x0,0x14,0x0,0x14,0x0,0x1e,0x0,0x14,
0x0,0x20,0x0,0x1b,0x0,0x1f,0x0,0x24,0x0,0x25,0x0,0x2b,0x0,0x33,0x0,0x34,
0x0,0x3c,0x0,0x41,0x0,0x36,0x0,0x47,0x0,0x27,0x0,0x40,0x0,0x1c,0x0,0x31,
0x0,0x1f,0x0,0x20,0x0,0x28,0x0,0x14,0x0,0x2f,0x0,0xf,0x0,0x2f,0x0,0x12,
0x0,0x25,0x0,0x13,0x0,0x17,0x0,0xd,0x0,0xb,0x0,0x9,0x0,0xfd,0xff,0x8,
0x0,0xed,0xff,0x1,0x0,0xe2,0xff,0xf0,0xff,0xe1,0xff,0xe4,0xff,0xea,0xff,0xe5,
0xff,0xf2,0xff,0xe6,0xff,0xf5,0xff,0xe3,0xff,0xf4,0xff,0xe6,0xff,0xf5,0xff,0xf5,
0xff,0xfd,0xff,0x4,0x0,0xa,0x0,0x9,0x0,0x10,0x0,0xb,0x0,0xd,0x0,0x11,
0x0,0xe,0x0,0x1a,0x0,0x1c,0x0,0x20,0x0,0x2f,0x0,0x24,0x0,0x39,0x0,0x29,
0x0,0x38,0x0,0x2d,0x0,0x38,0x0,0x35,0x0,0x3d,0x0,0x42,0x0,0x43,0x0,0x4e,
0x0,0x4f,0x0,0x59,0x0,0x63,0x0,0x65,0x0,0x71,0x0,0x6d,0x0,0x71,0x0,0x6f,
0x0,0x70,0x0,0x76,0x0,0x71,0x0,0x81,0x0,0x6c,0x0,0x7f,0x0,0x5e,0x0,0x63,
0x0,0x4c,0x0,0x44,0x0,0x3c,0x0,0x3c,0x0,0x2d,0x0,0x3d,0x0,0x20,0x0,0x2c,
0x0,0x15,0x0,0x11,0x0,0xc,0x0,0x2,0x0,0x6,0x0,0x1,0x0,0xfc,0xff,0xfc,
0xff,0xe9,0xff,0xe7,0xff,0xd2,0xff,0xcd,0xff,0xbf,0xff,0xb6,0xff,0xb1,0xff,0xa4,
0xff,0xa2,0xff,0x9d,0xff,0x99,0xff,0xa1,0xff,0xa3,0xff,0xab,0xff,0xbb,0xff,0xb3,
0xff,0xc8,0xff,0xba,0xff,0xc7,0xff,0xc6,0xff,0xcd,0xff,0xd9,0xff,0xe1,0xff,0xec,
0xff,0xf4,0xff,0xf6,0xff,0xf6,0xff,0xf1,0xff,0xeb,0xff,0xea,0xff,0xef,0xff,0xf4,
0xff,0xd,0x0,0x12,0x0,0x36,0x0,0x3c,0x0,0x56,0x0,0x5d,0x0,0x66,0x0,0x67,
0x0,0x67,0x0,0x64,0x0,0x64,0x0,0x5f,0x0,0x5e,0x0,0x56,0x0,0x52,0x0,0x49,
0x0,0x49,0x0,0x45,0x0,0x49,0x0,0x50,0x0,0x52,0x0,0x5f,0x0,0x5b,0x0,0x5f,
0x0,0x5a,0x0,0x55,0x0,0x52,0x0,0x52,0x0,0x4b,0x0,0x53,0x0,0x40,0x0,0x49,
0x0,0x27,0x0,0x30,0x0,0x3,0x0,0xc,0x0,0xe0,0xff,0xe6,0xff,0xcb,0xff,0xcc,
0xff,0xc7,0xff,0xc8,0xff,0xcf,0xff,0xd9,0xff,0xde,0xff,0xeb,0xff,0xee,0xff,0xf0,
0xff,0xf7,0xff,0xf1,0xff,0xf1,0xff,0xed,0xff,0xdb,0xff,0xd7,0xff,0xbe,0xff,0xb5,
0xff,0xab,0xff,0xa2,0xff,0xb1,0xff,0xb2,0xff,0xd0,0xff,0xda,0xff,0xf5,0xff,0xfe,
0xff,0x10,0x0,0x13,0x0,0x1f,0x0,0x1c,0x0,0x2d,0x0,0x24,0x0,0x3c,0x0,0x2b,
0x0,0x3b,0x0,0x29,0x0,0x24,0x0,0x18,0x0,0xd,0x0,0x4,0x0,0x6,0x0,0xfa,
0xff,0x10,0x0,0x2,0x0,0x27,0x0,0x1a,0x0,0x41,0x0,0x36,0x0,0x4c,0x0,0x43,
0x0,0x3f,0x0,0x37,0x0,0x22,0x0,0x1b,0x0,0x11,0x0,0x8,0x0,0x13,0x0,0x2,
0x0,0xe,0x0,0xfa,0xff,0xf9,0xff,0xeb,0xff,0xe6,0xff,0xe3,0xff,0xe0,0xff,0xec,
0xff,0xed,0xff,0xfc,0xff,0xfc,0xff,0xff,0xff,0xfa,0xff,0xee,0xff,0xe2,0xff,0xd6,
0xff,0xc0,0xff,0xc1,0xff,0xa8,0xff,0xb3,0xff,0xa0,0xff,0xab,0xff,0x9d,0xff,0xa7,
0xff,0x9a,0xff,0xa8,0xff,0xa2,0xff,0xb2,0xff,0xbf,0xff,0xca,0xff,0xdc,0xff,0xe4,
0xff,0xe2,0xff,0xec,0xff,0xd4,0xff,0xda,0xff,0xc5,0xff,0xc4,0xff,0xc2,0xff,0xc5,
0xff,0xcb,0xff,0xd9,0xff,0xe4,0xff,0xef,0xff,0xfe,0xff,0xfc,0xff,0xc,0x0,0x6,
0x0,0xe,0x0,0x10,0x0,0xc,0x0,0x10,0x0,0xe,0x0,0x6,0x0,0xe,0x0,0xfc,
0xff,0x4,0x0,0xf8,0xff,0xfa,0xff,0xf4,0xff,0xfa,0xff,0xf1,0xff,0xff,0xff,0xf4,
0xff,0x3,0x0,0xf9,0xff,0x7,0x0,0xfa,0xff,0xa,0x0,0xfa,0xff,0x8,0x0,0xfe,
0xff,0x1,0x0,0x2,0x0,0xfb,0xff,0xfe,0xff,0xf4,0xff,0xf2,0xff,0xea,0xff,0xe3,
0xff,0xe3,0xff,0xdc,0xff,0xe3,0xff,0xde,0xff,0xe4,0xff,0xe1,0xff,0xe4,0xff,0xe4,
0xff,0xe1,0xff,0xe0,0xff,0xd8,0xff,0xd7,0xff,0xc8,0xff,0xd1,0xff,0xbb,0xff,0xd0,
0xff,0xb9,0xff,0xcb,0xff,0xbb,0xff,0xc4,0xff,0xbd,0xff,0xc7,0xff,0xc7,0xff,0xd1,
0xff,0xd7,0xff,0xdb,0xff,0xdc,0xff,0xdd,0xff,0xd6,0xff,0xdc,0xff,0xd2,0xff,0xde,
0xff,0xd5,0xff,0xdc,0xff,0xd1,0xff,0xd0,0xff,0xc3,0xff,0xc7,0xff,0xbb,0xff,0xc9,
0xff,0xc2,0xff,0xd1,0xff,0xcf,0xff,0xd7,0xff,0xdc,0xff,0xd9,0xff,0xe1,0xff,0xd9,
0xff,0xdb,0xff,0xd5,0xff,0xcf,0xff,0xce,0xff,0xc2,0xff,0xc9,0xff,0xb9,0xff,0xc5,
0xff,0xbe,0xff,0xc2,0xff,0xc9,0xff,0xc8,0xff,0xd5,0xff,0xd5,0xff,0xdf,0xff,0xe0,
0xff,0xe3,0xff,0xe3,0xff,0xe1,0xff,0xde,0xff,0xe1,0xff,0xd6,0xff,0xe0,0xff,0xd5,
0xff,0xda,0xff,0xd9,0xff,0xd4,0xff,0xdf,0xff,0xd5,0xff,0xdd,0xff,0xd8,0xff,0xd4,
0xff,0xd7,0xff,0xd3,0xff,0xd7,0xff,0xe1,0xff,0xde,0xff,0xee,0xff,0xe6,0xff,0xea,
0xff,0xe7,0xff,0xe1,0xff,0xe0,0xff,0xd9,0xff,0xd5,0xff,0xd3,0xff,0xd0,0xff,0xd4,
0xff,0xd8,0xff,0xe5,0xff,0xe3,0xff,0xf7,0xff,0xe6,0xff,0xf9,0xff,0xe2,0xff,0xed,
0xff,0xdb,0xff,0xe3,0xff,0xdb,0xff,0xe0,0xff,0xdf,0xff,0xde,0xff,0xdf,0xff,0xdb,
0xff,0xd8,0xff,0xde,0xff,0xd5,0xff,0xe2,0xff,0xdc,0xff,0xe3,0xff,0xe4,0xff,0xe3,
0xff,0xe0,0xff,0xe3,0xff,0xd8,0xff,0xe0,0xff,0xd4,0xff,0xd9,0xff,0xcd,0xff,0xcd,
0xff,0xb3,0xff,0xb8,0xff,0x95,0xff,0x9f,0xff,0x98,0xff,0x97,0xff,0xbf,0xff,0xb5,
0xff,0xdc,0xff,0xdd,0xff,0xc6,0xff,0xd8,0xff,0x8a,0xff,0xa2,0xff,0x68,0xff,0x76,
0xff,0x85,0xff,0x83,0xff,0xba,0xff,0xb5,0xff,0xc4,0xff,0xc0,0xff,0x93,0xff,0x8f,
0xff,0x65,0xff,0x5d,0xff,0x72,0xff,0x64,0xff,0xaa,0xff,0x9d,0xff,0xd8,0xff,0xda,
0xff,0xe1,0xff,0xf1,0xff,0xc6,0xff,0xd9,0xff,0x9f,0xff,0xad,0xff,0x98,0xff,0x9a,
0xff,0xc3,0xff,0xbf,0xff,0x0,0x0,0xfb,0xff,0x15,0x0,0xb,0x0,0xf5,0xff,0xea,
0xff,0xd4,0xff,0xcd,0xff,0xd0,0xff,0xcf,0xff,0xd0,0xff,0xd9,0xff,0xcb,0xff,0xd6,
0xff,0xcf,0xff,0xd7,0xff,0xd9,0xff,0xe5,0xff,0xdd,0xff,0xe9,0xff,0xdb,0xff,0xdd,
0xff,0xda,0xff,0xd0,0xff,0xd6,0xff,0xcd,0xff,0xcc,0xff,0xce,0xff,0xce,0xff,0xd5,
0xff,0xdf,0xff,0xe3,0xff,0xe3,0xff,0xea,0xff,0xc6,0xff,0xd7,0xff,0x9c,0xff,0xb0,
0xff,0x88,0xff,0x91,0xff,0x93,0xff,0x8d,0xff,0xa8,0xff,0xa2,0xff,0xb6,0xff,0xbb,
0xff,0xbd,0xff,0xc0,0xff,0xb6,0xff,0xb1,0xff,0xa2,0xff,0xa0,0xff,0x8b,0xff,0x94,
0xff,0x7c,0xff,0x8d,0xff,0x80,0xff,0x87,0xff,0x92,0xff,0x88,0xff,0xa0,0xff,0x98,
0xff,0xa8,0xff,0xab,0xff,0xb6,0xff,0xbe,0xff,0xc8,0xff,0xd3,0xff,0xd2,0xff,0xd6,
0xff,0xc6,0xff,0xbc,0xff,0xae,0xff,0xa1,0xff,0xa2,0xff,0x9d,0xff,0xaa,0xff,0xac,
0xff,0xb7,0xff,0xb9,0xff,0xb5,0xff,0xb1,0xff,0x9c,0xff,0x9a,0xff,0x87,0xff,0x89,
0xff,0x93,0xff,0x90,0xff,0xb4,0xff,0xae,0xff,0xc2,0xff,0xc2,0xff,0xa9,0xff,0xaa,
0xff,0x79,0xff,0x76,0xff,0x67,0xff,0x5b,0xff,0x83,0xff,0x71,0xff,0xa2,0xff,0x96,
0xff,0x9b,0xff,0xa5,0xff,0x7f,0xff,0x99,0xff,0x7b,0xff,0x8f,0xff,0xa6,0xff,0xa5,
0xff,0xd9,0xff,0xd5,0xff,0xe0,0xff,0xe5,0xff,0xb3,0xff,0xb5,0xff,0x81,0xff,0x7c,
0xff,0x83,0xff,0x7e,0xff,0xb8,0xff,0xba,0xff,0xe3,0xff,0xea,0xff,0xd9,0xff,0xe2,
0xff,0xb7,0xff,0xc2,0xff,0xb6,0xff,0xc1,0xff,0xd9,0xff,0xe1,0xff,0xf4,0xff,0xfd,
0xff,0xef,0xff,0xf7,0xff,0xe0,0xff,0xe0,0xff,0xe2,0xff,0xdc,0xff,0xec,0xff,0xea,
0xff,0xe4,0xff,0xe9,0xff,0xcf,0xff,0xd2,0xff,0xcf,0xff,0xc8,0xff,0xe7,0xff,0xdf,
0xff,0xf9,0xff,0xf4,0xff,0xed,0xff,0xde,0xff,0xcb,0xff,0xb1,0xff,0xac,0xff,0x96,
0xff,0x9c,0xff,0x91,0xff,0x8f,0xff,0x8b,0xff,0x7d,0xff,0x7a,0xff,0x71,0xff,0x68,
0xff,0x76,0xff,0x63,0xff,0x88,0xff,0x72,0xff,0x96,0xff,0x8d,0xff,0x97,0xff,0xa1,
0xff,0x8e,0xff,0x98,0xff,0x83,0xff,0x80,0xff,0x81,0xff,0x7a,0xff,0x8b,0xff,0x89,
0xff,0x93,0xff,0x97,0xff,0x93,0xff,0x95,0xff,0x8f,0xff,0x8e,0xff,0x8f,0xff,0x8f,
0xff,0x97,0xff,0x9a,0xff,0xa3,0xff,0xa2,0xff,0xa6,0xff,0xa6,0xff,0xa6,0xff,0xaa,
0xff,0xaf,0xff,0xb1,0xff,0xc3,0xff,0xbd,0xff,0xd0,0xff,0xc8,0xff,0xc9,0xff,0xc9,
0xff,0xbf,0xff,0xc7,0xff,0xca,0xff,0xd1,0xff,0xe8,0xff,0xe7,0xff,0xff,0xff,0xf8,
0xff,0xf7,0xff,0xf2,0xff,0xd3,0xff,0xda,0xff,0xbd,0xff,0xcd,0xff,0xce,0xff,0xd9,
0xff,0xed,0xff,0xed,0xff,0xee,0xff,0xed,0xff,0xcd,0xff,0xd5,0xff,0xb3,0xff,0xbb,
0xff,0xbc,0xff,0xb1,0xff,0xcb,0xff,0xb4,0xff,0xc2,0xff,0xb3,0xff,0xab,0xff,0xaf,
0xff,0xa3,0xff,0xae,0xff,0xb2,0xff,0xb3,0xff,0xc7,0xff,0xbd,0xff,0xd1,0xff,0xc7,
0xff,0xce,0xff,0xc6,0xff,0xc1,0xff,0xb9,0xff,0xb8,0xff,0xb3,0xff,0xc2,0xff,0xc0,
0xff,0xd2,0xff,0xd4,0xff,0xdb,0xff,0xda,0xff,0xde,0xff,0xd4,0xff,0xdd,0xff,0xd2,
0xff,0xd2,0xff,0xcd,0xff,0xbf,0xff,0xbc,0xff,0xbb,0xff,0xb2,0xff,0xcf,0xff,0xbe,
0xff,0xde,0xff,0xcc,0xff,0xcf,0xff,0xc0,0xff,0xb5,0xff,0xa7,0xff,0xab,0xff,0xa0,
0xff,0xb7,0xff,0xb1,0xff,0xca,0xff,0xc3,0xff,0xd0,0xff,0xc1,0xff,0xc3,0xff,0xb0,
0xff,0xb2,0xff,0xa6,0xff,0xaa,0xff,0xad,0xff,0xac,0xff,0xbb,0xff,0xae,0xff,0xc0,
0xff,0xa9,0xff,0xb7,0xff,0xa2,0xff,0xad,0xff,0xa6,0xff,0xad,0xff,0xb2,0xff,0xaf,
0xff,0xba,0xff,0xab,0xff,0xb0,0xff,0xa0,0xff,0x9b,0xff,0x94,0xff,0x9a,0xff,0x9c,
0xff,0xb9,0xff,0xbc,0xff,0xd6,0xff,0xd8,0xff,0xd3,0xff,0xd6,0xff,0xbd,0xff,0xbd,
0xff,0xbd,0xff,0xb4,0xff,0xdf,0xff,0xd2,0xff,0x6,0x0,0xf9,0xff,0xf,0x0,0x0,
0x0,0xfa,0xff,0xee,0xff,0xe3,0xff,0xe7,0xff,0xe5,0xff,0xf6,0xff,0x3,0x0,0xd,
0x0,0x1c,0x0,0x12,0x0,0x10,0x0,0xf9,0xff,0xef,0xff,0xd4,0xff,0xe4,0xff,0xc9,
0xff,0xf1,0xff,0xdc,0xff,0xf5,0xff,0xe3,0xff,0xdd,0xff,0xc7,0xff,0xbd,0xff,0xa6,
0xff,0xc0,0xff,0xae,0xff,0xe4,0xff,0xdb,0xff,0xf5,0xff,0xf7,0xff,0xd8,0xff,0xdb,
0xff,0xaa,0xff,0xa5,0xff,0x9f,0xff,0x94,0xff,0xc1,0xff,0xb6,0xff,0xdb,0xff,0xd8,
0xff,0xc9,0xff,0xca,0xff,0xa9,0xff,0xa2,0xff,0xa3,0xff,0x9a,0xff,0xb8,0xff,0xb8,
0xff,0xce,0xff,0xd6,0xff,0xd3,0xff,0xdd,0xff,0xd0,0xff,0xd1,0xff,0xd2,0xff,0xc0,
0xff,0xd3,0xff,0xbb,0xff,0xce,0xff,0xc6,0xff,0xd0,0xff,0xd8,0xff,0xda,0xff,0xe2,
0xff,0xe5,0xff,0xe1,0xff,0xe7,0xff,0xe0,0xff,0xe4,0xff,0xe8,0xff,0xed,0xff,0xf1,
0xff,0x6,0x0,0xf6,0xff,0x15,0x0,0xfe,0xff,0xb,0x0,0x0,0x0,0xf4,0xff,0xf2,
0xff,0xe4,0xff,0xe0,0xff,0xe5,0xff,0xdd,0xff,0xe9,0xff,0xe4,0xff,0xec,0xff,0xe6,
0xff,0xf2,0xff,0xdf,0xff,0xf1,0xff,0xd7,0xff,0xe3,0xff,0xd1,0xff,0xd8,0xff,0xd2,
0xff,0xe1,0xff,0xe2,0xff,0xf3,0xff,0xf3,0xff,0xf0,0xff,0xe5,0xff,0xcd,0xff,0xbc,
0xff,0xae,0xff,0xab,0xff,0xb6,0xff,0xc4,0xff,0xd8,0xff,0xe9,0xff,0xf3,0xff,0xfb,
0xff,0xf7,0xff,0xfa,0xff,0xee,0xff,0xf5,0xff,0xee,0xff,0xfc,0xff,0xfe,0xff,0x5,
0x0,0xc,0x0,0x7,0x0,0xc,0x0,0x2,0x0,0x1,0x0,0xf5,0xff,0xf7,0xff,0xeb,
0xff,0xfc,0xff,0xf0,0xff,0xb,0x0,0x2,0x0,0x19,0x0,0x14,0x0,0x1f,0x0,0x19,
0x0,0x21,0x0,0x16,0x0,0x24,0x0,0x17,0x0,0x25,0x0,0x1a,0x0,0x17,0x0,0xd,
0x0,0xfd,0xff,0xf1,0xff,0xf1,0xff,0xe0,0xff,0x3,0x0,0xf2,0xff,0x20,0x0,0x13,
0x0,0x28,0x0,0x18,0x0,0x12,0x0,0x0,0x0,0xfc,0xff,0xf2,0xff,0xfd,0xff,0xfe,
0xff,0x9,0x0,0xb,0x0,0x8,0x0,0xff,0xff,0xf6,0xff,0xe8,0xff,0xe8,0xff,0xdc,
0xff,0xe9,0xff,0xdf,0xff,0xf3,0xff,0xee,0xff,0xfe,0xff,0xfd,0xff,0x0,0x0,0xfb,
0xff,0xf3,0xff,0xf0,0xff,0xeb,0xff,0xf2,0xff,0xfc,0xff,0x6,0x0,0x19,0x0,0x1b,
0x0,0x1f,0x0,0x1a,0x0,0x9,0x0,0x3,0x0,0xf9,0xff,0xf5,0xff,0x4,0x0,0xfd,
0xff,0x1b,0x0,0x11,0x0,0x26,0x0,0x1d,0x0,0x1d,0x0,0x18,0x0,0xc,0x0,0xc,
0x0,0xa,0x0,0xa,0x0,0x17,0x0,0x12,0x0,0x24,0x0,0x17,0x0,0x27,0x0,0x15,
0x0,0x25,0x0,0x19,0x0,0x28,0x0,0x28,0x0,0x26,0x0,0x2b,0x0,0x18,0x0,0x14,
0x0,0xe,0x0,0xfe,0xff,0x1b,0x0,0x6,0x0,0x2f,0x0,0x24,0x0,0x38,0x0,0x35,
0x0,0x35,0x0,0x2f,0x0,0x32,0x0,0x25,0x0,0x33,0x0,0x26,0x0,0x2c,0x0,0x28,
0x0,0x1e,0x0,0x24,0x0,0x1d,0x0,0x1e,0x0,0x25,0x0,0x1a,0x0,0x27,0x0,0x1c,
0x0,0x1f,0x0,0x19,0x0,0x12,0x0,0xd,0x0,0xf,0x0,0xf,0x0,0x22,0x0,0x27,
0x0,0x37,0x0,0x3d,0x0,0x33,0x0,0x35,0x0,0x15,0x0,0xe,0x0,0xf5,0xff,0xed,
0xff,0xf6,0xff,0xf5,0xff,0x16,0x0,0x13,0x0,0x34,0x0,0x2a,0x0,0x3d,0x0,0x30,
0x0,0x30,0x0,0x21,0x0,0x1d,0x0,0x8,0x0,0x1c,0x0,0x3,0x0,0x2b,0x0,0x17,
0x0,0x2d,0x0,0x29,0x0,0x1b,0x0,0x1b,0x0,0x3,0x0,0xf7,0xff,0xfd,0xff,0xeb,
0xff,0x14,0x0,0x7,0x0,0x30,0x0,0x27,0x0,0x37,0x0,0x2f,0x0,0x2e,0x0,0x27,
0x0,0x26,0x0,0x2a,0x0,0x30,0x0,0x42,0x0,0x44,0x0,0x52,0x0,0x41,0x0,0x3e,
0x0,0x25,0x0,0x1a,0x0,0x12,0x0,0xe,0x0,0x22,0x0,0x29,0x0,0x44,0x0,0x4c,
0x0,0x4e,0x0,0x4c,0x0,0x36,0x0,0x2e,0x0,0x22,0x0,0x1b,0x0,0x2a,0x0,0x25,
0x0,0x33,0x0,0x36,0x0,0x24,0x0,0x2f,0x0,0xa,0x0,0x15,0x0,0x9,0x0,0xd,
0x0,0x26,0x0,0x23,0x0,0x3d,0x0,0x36,0x0,0x35,0x0,0x2d,0x0,0x24,0x0,0x1a,
0x0,0x25,0x0,0x19,0x0,0x38,0x0,0x29,0x0,0x46,0x0,0x32,0x0,0x40,0x0,0x30,
0x0,0x2e,0x0,0x2e,0x0,0x26,0x0,0x2a,0x0,0x34,0x0,0x29,0x0,0x4b,0x0,0x32,
0x0,0x54,0x0,0x40,0x0,0x47,0x0,0x42,0x0,0x37,0x0,0x36,0x0,0x3b,0x0,0x2d,
0x0,0x4e,0x0,0x34,0x0,0x58,0x0,0x49,0x0,0x56,0x0,0x5b,0x0,0x54,0x0,0x60,
0x0,0x5b,0x0,0x5d,0x0,0x63,0x0,0x56,0x0,0x62,0x0,0x4e,0x0,0x55,0x0,0x46,
0x0,0x49,0x0,0x40,0x0,0x4d,0x0,0x3f,0x0,0x5b,0x0,0x4b,0x0,0x5b,0x0,0x5c,
0x0,0x43,0x0,0x5f,0x0,0x2c,0x0,0x4d,0x0,0x2b,0x0,0x32,0x0,0x32,0x0,0x22,
0x0,0x29,0x0,0x22,0x0,0x10,0x0,0x1d,0x0,0xfe,0xff,0xb,0x0,0x2,0x0,0xfb,
0xff,0x17,0x0,0x5,0x0,0x2b,0x0,0x28,0x0,0x32,0x0,0x3f,0x0,0x31,0x0,0x33,
0x0,0x31,0x0,0x24,0x0,0x35,0x0,0x2f,0x0,0x34,0x0,0x3e,0x0,0x2b,0x0,0x35,
0x0,0x27,0x0,0x1d,0x0,0x37,0x0,0x21,0x0,0x56,0x0,0x4c,0x0,0x73,0x0,0x79,
0x0,0x84,0x0,0x8d,0x0,0x89,0x0,0x90,0x0,0x86,0x0,0x8a,0x0,0x83,0x0,0x7f,
0x0,0x85,0x0,0x78,0x0,0x85,0x0,0x7b,0x0,0x7c,0x0,0x86,0x0,0x77,0x0,0x8b,
0x0,0x8d,0x0,0x90,0x0,0xb4,0x0,0xa4,0x0,0xc6,0x0,0xb5,0x0,0xb3,0x0,0xac,
0x0,0x8f,0x0,0x93,0x0,0x70,0x0,0x75,0x0,0x59,0x0,0x5a,0x0,0x4b,0x0,0x47,
0x0,0x42,0x0,0x36,0x0,0x34,0x0,0x22,0x0,0x20,0x0,0x16,0x0,0x1f,0x0,0x1b,
0x0,0x30,0x0,0x2b,0x0,0x2a,0x0,0x25,0x0,0xfb,0xff,0xf8,0xff,0xdb,0xff,0xd7,
0xff,0xf8,0xff,0xf5,0xff,0x28,0x0,0x25,0x0,0x21,0x0,0x19,0x0,0xe9,0xff,0xd8,
0xff,0xcf,0xff,0xb6,0xff,0x1,0x0,0xec,0xff,0x52,0x0,0x4b,0x0,0x71,0x0,0x6e,
0x0,0x4b,0x0,0x3d,0x0,0x1a,0x0,0xe,0x0,0x23,0x0,0x27,0x0,0x5b,0x0,0x6a,
0x0,0x81,0x0,0x8f,0x0,0x78,0x0,0x83,0x0,0x6d,0x0,0x74,0x0,0x89,0x0,0x89,
0x0,0xb4,0x0,0xaf,0x0,0xc2,0x0,0xbd,0x0,0xb1,0x0,0xb5,0x0,0x99,0x0,0xae,
0x0,0x8d,0x0,0xaf,0x0,0x8f,0x0,0xad,0x0,0x98,0x0,0x9d,0x0,0xa0,0x0,0x8c,
0x0,0xa3,0x0,0x8f,0x0,0x98,0x0,0x8c,0x0,0x6f,0x0,0x5c,0x0,0x28,0x0,0xe,
0x0,0xf7,0xff,0xe6,0xff,0x14,0x0,0x13,0x0,0x5b,0x0,0x65,0x0,0x64,0x0,0x6e,
0x0,0x10,0x0,0x17,0x0,0xbf,0xff,0xc3,0xff,0xd6,0xff,0xd1,0xff,0x33,0x0,0x1e,
0x0,0x50,0x0,0x39,0x0,0x1,0x0,0xf4,0xff,0xa6,0xff,0xa4,0xff,0xa5,0xff,0xb1,
0xff,0xf6,0xff,0x7,0x0,0x42,0x0,0x47,0x0,0x4e,0x0,0x46,0x0,0x33,0x0,0x2a,
0x0,0x29,0x0,0x20,0x0,0x3f,0x0,0x32,0x0,0x5e,0x0,0x4f,0x0,0x5f,0x0,0x55,
0x0,0x37,0x0,0x39,0x0,0x20,0x0,0x23,0x0,0x53,0x0,0x50,0x0,0xae,0x0,0xad,
0x0,0xc9,0x0,0xcd,0x0,0x83,0x0,0x89,0x0,0x49,0x0,0x50,0x0,0x7d,0x0,0x7e,
0x0,0xce,0x0,0xc7,0x0,0xbc,0x0,0xb0,0x0,0x5a,0x0,0x4d,0x0,0x2a,0x0,0x1d,
0x0,0x69,0x0,0x63,0x0,0xce,0x0,0xda,0x0,0xe9,0x0,0x6,0x1,0xa8,0x0,0xba,
0x0,0x52,0x0,0x4a,0x0,0x2f,0x0,0x1c,0x0,0x45,0x0,0x3b,0x0,0x5f,0x0,0x63,
0x0,0x5a,0x0,0x61,0x0,0x4a,0x0,0x4a,0x0,0x44,0x0,0x45,0x0,0x42,0x0,0x47,
0x0,0x4b,0x0,0x4d,0x0,0x60,0x0,0x67,0x0,0x65,0x0,0x76,0x0,0x42,0x0,0x56,
0x0,0x1c,0x0,0x27,0x0,0x33,0x0,0x2a,0x0,0x7d,0x0,0x68,0x0,0xa3,0x0,0x9e,
0x0,0x7d,0x0,0x8c,0x0,0x3b,0x0,0x4e,0x0,0x1a,0x0,0x27,0x0,0x2f,0x0,0x35,
0x0,0x65,0x0,0x6d,0x0,0x83,0x0,0x91,0x0,0x60,0x0,0x69,0x0,0x20,0x0,0x1c,
0x0,0x6,0x0,0xff,0xff,0x22,0x0,0x18,0x0,0x40,0x0,0x34,0x0,0x3f,0x0,0x34,
0x0,0x35,0x0,0x2b,0x0,0x38,0x0,0x32,0x0,0x38,0x0,0x35,0x0,0x28,0x0,0x21,
0x0,0x1a,0x0,0xc,0x0,0x25,0x0,0x12,0x0,0x42,0x0,0x2d,0x0,0x52,0x0,0x3a,
0x0,0x42,0x0,0x27,0x0,0x28,0x0,0xe,0x0,0x29,0x0,0x17,0x0,0x48,0x0,0x42,
0x0,0x64,0x0,0x65,0x0,0x61,0x0,0x5c,0x0,0x54,0x0,0x48,0x0,0x63,0x0,0x5c,
0x0,0x87,0x0,0x8c,0x0,0x93,0x0,0x9f,0x0,0x81,0x0,0x84,0x0,0x74,0x0,0x6f,
0x0,0x84,0x0,0x89,0x0,0xa4,0x0,0xb2,0x0,0xb2,0x0,0xbb,0x0,0x9e,0x0,0xa3,
0x0,0x7e,0x0,0x8d,0x0,0x72,0x0,0x8f,0x0,0x80,0x0,0x9e,0x0,0x8e,0x0,0x9e,
0x0,0x7b,0x0,0x7f,0x0,0x52,0x0,0x53,0x0,0x43,0x0,0x41,0x0,0x59,0x0,0x54,
0x0,0x63,0x0,0x61,0x0,0x3c,0x0,0x40,0x0,0xfb,0xff,0x2,0x0,0xe1,0xff,0xe5,
0xff,0xe,0x0,0xd,0x0,0x4c,0x0,0x46,0x0,0x3b,0x0,0x2e,0x0,0xc9,0xff,0xb9,
0xff,0x71,0xff,0x5f,0xff,0xbb,0xff,0xa8,0xff,0x64,0x0,0x58,0x0,0x8c,0x0,0x8a,
0x0,0xf0,0xff,0xf4,0xff,0x59,0xff,0x5a,0xff,0x87,0xff,0x81,0xff,0x35,0x0,0x31,
0x0,0x8d,0x0,0x91,0x0,0x3b,0x0,0x3e,0x0,0xc4,0xff,0xbc,0xff,0xba,0xff,0xa6,
0xff,0x18,0x0,0x4,0x0,0x74,0x0,0x75,0x0,0x82,0x0,0x9d,0x0,0x5a,0x0,0x78,
0x0,0x42,0x0,0x4a,0x0,0x4b,0x0,0x43,0x0,0x5b,0x0,0x5d,0x0,0x66,0x0,0x76,
0x0,0x6b,0x0,0x75,0x0,0x6d,0x0,0x66,0x0,0x76,0x0,0x68,0x0,0x86,0x0,0x7e,
0x0,0x8a,0x0,0x90,0x0,0x71,0x0,0x7e,0x0,0x4c,0x0,0x55,0x0,0x4b,0x0,0x49,
0x0,0x6b,0x0,0x61,0x0,0x77,0x0,0x6a,0x0,0x61,0x0,0x54,0x0,0x51,0x0,0x40,
0x0,0x5a,0x0,0x49,0x0,0x68,0x0,0x5d,0x0,0x5e,0x0,0x58,0x0,0x3e,0x0,0x3e,
0x0,0x24,0x0,0x2b,0x0,0x1d,0x0,0x22,0x0,0x1e,0x0,0x21,0x0,0x23,0x0,0x28,
0x0,0x31,0x0,0x3a,0x0,0x3f,0x0,0x4b,0x0,0x34,0x0,0x3c,0x0,0x0,0x0,0x4,
0x0,0xd3,0xff,0xdd,0xff,0xea,0xff,0xfc,0xff,0x2d,0x0,0x3d,0x0,0x3c,0x0,0x47,
0x0,0xf6,0xff,0xfe,0xff,0xab,0xff,0xb6,0xff,0xc0,0xff,0xcb,0xff,0x28,0x0,0x2a,
0x0,0x6f,0x0,0x6c,0x0,0x4c,0x0,0x48,0x0,0xe4,0xff,0xe5,0xff,0xa3,0xff,0xa6,
0xff,0xcd,0xff,0xc7,0xff,0x30,0x0,0x23,0x0,0x61,0x0,0x56,0x0,0x35,0x0,0x31,
0x0,0xef,0xff,0xf0,0xff,0xe0,0xff,0xdf,0xff,0x18,0x0,0x7,0x0,0x5e,0x0,0x3c,
0x0,0x6d,0x0,0x45,0x0,0x41,0x0,0x20,0x0,0x18,0x0,0x4,0x0,0x2a,0x0,0x1f,
0x0,0x61,0x0,0x5b,0x0,0x7f,0x0,0x79,0x0,0x6e,0x0,0x62,0x0,0x53,0x0,0x42,
0x0,0x49,0x0,0x41,0x0,0x4b,0x0,0x4d,0x0,0x56,0x0,0x52,0x0,0x6a,0x0,0x62,
0x0,0x72,0x0,0x7b,0x0,0x5b,0x0,0x76,0x0,0x3d,0x0,0x4e,0x0,0x40,0x0,0x38,
0x0,0x5a,0x0,0x52,0x0,0x57,0x0,0x68,0x0,0x25,0x0,0x45,0x0,0xf8,0xff,0xa,
0x0,0xfe,0xff,0xfc,0xff,0x24,0x0,0x1f,0x0,0x38,0x0,0x35,0x0,0x21,0x0,0x1b,
0x0,0xef,0xff,0xea,0xff,0xd1,0xff,0xd3,0xff,0xdd,0xff,0xe6,0xff,0x0,0x0,0x6,
0x0,0xa,0x0,0x3,0x0,0xe8,0xff,0xd4,0xff,0xbd,0xff,0xa9,0xff,0xc2,0xff,0xb1,
0xff,0xf3,0xff,0xeb,0xff,0x22,0x0,0x1c,0x0,0x24,0x0,0x16,0x0,0xf2,0xff,0xde,
0xff,0xb8,0xff,0xab,0xff,0xb5,0xff,0xb7,0xff,0xf2,0xff,0xfa,0xff,0x29,0x0,0x26,
0x0,0x16,0x0,0x5,0x0,0xe5,0xff,0xd1,0xff,0xf4,0xff,0xec,0xff,0x42,0x0,0x48,
0x0,0x72,0x0,0x76,0x0,0x53,0x0,0x48,0x0,0x14,0x0,0x2,0x0,0xfd,0xff,0xf8,
0xff,0x25,0x0,0x32,0x0,0x61,0x0,0x70,0x0,0x69,0x0,0x6a,0x0,0x23,0x0,0x18,
0x0,0xde,0xff,0xd2,0xff,0xc,0x0,0x9,0x0,0x8c,0x0,0x9b,0x0,0xac,0x0,0xc3,
0x0,0x24,0x0,0x30,0x0,0x98,0xff,0x8e,0xff,0xaf,0xff,0x96,0xff,0x36,0x0,0x22,
0x0,0x7f,0x0,0x7f,0x0,0x43,0x0,0x49,0x0,0xcf,0xff,0xcd,0xff,0x92,0xff,0x8d,
0xff,0xbe,0xff,0xbd,0xff,0x21,0x0,0x24,0x0,0x48,0x0,0x4e,0x0,0x3,0x0,0x9,
0x0,0xa6,0xff,0xaa,0xff,0x92,0xff,0x97,0xff,0xce,0xff,0xd2,0xff,0x1a,0x0,0x17,
0x0,0x2a,0x0,0x25,0x0,0xe3,0xff,0xed,0xff,0x8f,0xff,0xa9,0xff,0x9a,0xff,0xb0,
0xff,0x1,0x0,0x6,0x0,0x48,0x0,0x42,0x0,0x22,0x0,0x1d,0x0,0xde,0xff,0xd8,
0xff,0xda,0xff,0xd1,0xff,0x3,0x0,0xfd,0xff,0x1e,0x0,0x1c,0x0,0x28,0x0,0x1f,
0x0,0x25,0x0,0x13,0x0,0x0,0x0,0xee,0xff,0xd5,0xff,0xcc,0xff,0xf1,0xff,0xf0,
0xff,0x4e,0x0,0x4b,0x0,0x75,0x0,0x6a,0x0,0x2b,0x0,0x21,0x0,0xcd,0xff,0xcb,
0xff,0xc9,0xff,0xc9,0xff,0xb,0x0,0x5,0x0,0x34,0x0,0x27,0x0,0x19,0x0,0x15,
0x0,0xe7,0xff,0xf0,0xff,0xd7,0xff,0xe0,0xff,0xf6,0xff,0xf5,0xff,0x21,0x0,0x1e,
0x0,0x2d,0x0,0x2f,0x0,0xc,0x0,0x13,0x0,0xdb,0xff,0xe5,0xff,0xca,0xff,0xd4,
0xff,0xea,0xff,0xef,0xff,0x17,0x0,0x1b,0x0,0x19,0x0,0x22,0x0,0xe5,0xff,0xef,
0xff,0xc1,0xff,0xc5,0xff,0xed,0xff,0xf6,0xff,0x41,0x0,0x54,0x0,0x4e,0x0,0x5d,
0x0,0xfa,0xff,0xfa,0xff,0xad,0xff,0x99,0xff,0xc5,0xff,0xa8,0xff,0x1b,0x0,0xb,
0x0,0x46,0x0,0x46,0x0,0x1f,0x0,0x22,0x0,0xe0,0xff,0xdc,0xff,0xd3,0xff,0xc2,
0xff,0xf7,0xff,0xe2,0xff,0x13,0x0,0xa,0x0,0x7,0x0,0x4,0x0,0xe4,0xff,0xdc,
0xff,0xc8,0xff,0xb7,0xff,0xc9,0xff,0xb0,0xff,0xe9,0xff,0xd0,0xff,0x10,0x0,0xff,
0xff,0xd,0x0,0xf,0x0,0xdd,0xff,0xea,0xff,0xbb,0xff,0xb9,0xff,0xd3,0xff,0xc3,
0xff,0x0,0x0,0xff,0xff,0x4,0x0,0x13,0x0,0xdb,0xff,0xe5,0xff,0xc0,0xff,0xbe,
0xff,0xde,0xff,0xd9,0xff,0x19,0x0,0x1d,0x0,0x39,0x0,0x46,0x0,0x24,0x0,0x2f,
0x0,0xf2,0xff,0xfa,0xff,0xd3,0xff,0xdd,0xff,0xe0,0xff,0xf1,0xff,0x6,0x0,0x1e,
0x0,0x22,0x0,0x38,0x0,0x22,0x0,0x2d,0x0,0x6,0x0,0x9,0x0,0xe8,0xff,0xe3,
0xff,0xec,0xff,0xdf,0xff,0x1b,0x0,0xc,0x0,0x3d,0x0,0x3a,0x0,0x16,0x0,0x24,
0x0,0xc6,0xff,0xd8,0xff,0xac,0xff,0xb3,0xff,0xe5,0xff,0xde,0xff,0x22,0x0,0x10,
0x0,0x15,0x0,0xfd,0xff,0xd1,0xff,0xbb,0xff,0xa6,0xff,0x95,0xff,0xba,0xff,0xab,
0xff,0xe8,0xff,0xd9,0xff,0xfa,0xff,0xec,0xff,0xd6,0xff,0xd3,0xff,0xa0,0xff,0xa7,
0xff,0x97,0xff,0xa0,0xff,0xcc,0xff,0xd4,0xff,0xff,0xff,0x5,0x0,0xf1,0xff,0xf0,
0xff,0xbc,0xff,0xb2,0xff,0xaa,0xff,0x9c,0xff,0xd2,0xff,0xc9,0xff,0x1,0x0,0x3,
0x0,0x3,0x0,0x11,0x0,0xe0,0xff,0xf6,0xff,0xc7,0xff,0xd6,0xff,0xd3,0xff,0xcb,
0xff,0xf2,0xff,0xdf,0xff,0xc,0x0,0x4,0x0,0x16,0x0,0x1c,0x0,0xc,0x0,0x10,
0x0,0xf2,0xff,0xeb,0xff,0xdf,0xff,0xcf,0xff,0xe8,0xff,0xd7,0xff,0x5,0x0,0xfd,
0xff,0x15,0x0,0x1d,0x0,0x4,0x0,0x14,0x0,0xe7,0xff,0xe9,0xff,0xdd,0xff,0xc8,
0xff,0xe3,0xff,0xce,0xff,0xe9,0xff,0xe8,0xff,0xef,0xff,0xf3,0xff,0xf4,0xff,0xe7,
0xff,0xe8,0xff,0xd4,0xff,0xc6,0xff,0xc1,0xff,0xb5,0xff,0xba,0xff,0xcc,0xff,0xcf,
0xff,0xde,0xff,0xe4,0xff,0xc1,0xff,0xd1,0xff,0x9d,0xff,0xad,0xff,0xab,0xff,0xb1,
0xff,0xe2,0xff,0xdf,0xff,0xf8,0xff,0xf5,0xff,0xd0,0xff,0xd0,0xff,0x9c,0xff,0x9f,
0xff,0x99,0xff,0xa1,0xff,0xc9,0xff,0xd8,0xff,0xff,0xff,0x10,0x0,0xc,0x0,0x15,
0x0,0xe6,0xff,0xe6,0xff,0xbd,0xff,0xb7,0xff,0xc2,0xff,0xb9,0xff,0xed,0xff,0xe8,
0xff,0x9,0x0,0x8,0x0,0x2,0x0,0xf7,0xff,0xee,0xff,0xdb,0xff,0xe5,0xff,0xd9,
0xff,0xe2,0xff,0xe1,0xff,0xde,0xff,0xd9,0xff,0xdf,0xff,0xd2,0xff,0xe7,0xff,0xe0,
0xff,0xf5,0xff,0xf6,0xff,0x1,0x0,0xf8,0xff,0xf8,0xff,0xde,0xff,0xda,0xff,0xc1,
0xff,0xc8,0xff,0xc4,0xff,0xd9,0xff,0xe6,0xff,0xfa,0xff,0xfe,0xff,0x1,0x0,0xf1,
0xff,0xe5,0xff,0xdd,0xff,0xce,0xff,0xdb,0xff,0xd4,0xff,0xe0,0xff,0xe3,0xff,0xe2,
0xff,0xe3,0xff,0xe1,0xff,0xd9,0xff,0xde,0xff,0xce,0xff,0xd6,0xff,0xc4,0xff,0xcb,
0xff,0xbf,0xff,0xcb,0xff,0xcc,0xff,0xdf,0xff,0xea,0xff,0xf9,0xff,0x0,0x0,0x6,
0x0,0xf7,0xff,0x3,0x0,0xda,0xff,0xe9,0xff,0xc5,0xff,0xc9,0xff,0xc9,0xff,0xc7,
0xff,0xdd,0xff,0xe6,0xff,0xea,0xff,0xfb,0xff,0xe6,0xff,0xf4,0xff,0xdd,0xff,0xe2,
0xff,0xd8,0xff,0xd7,0xff,0xd5,0xff,0xd5,0xff,0xd5,0xff,0xda,0xff,0xda,0xff,0xdc,
0xff,0xde,0xff,0xd5,0xff,0xd9,0xff,0xc9,0xff,0xcf,0xff,0xc2,0xff,0xce,0xff,0xc8,
0xff,0xe1,0xff,0xd7,0xff,0xfb,0xff,0xe7,0xff,0xff,0xff,0xf0,0xff,0xe6,0xff,0xe4,
0xff,0xcc,0xff,0xcb,0xff,0xd3,0xff,0xc9,0xff,0xf8,0xff,0xe7,0xff,0x11,0x0,0xfb,
0xff,0x2,0x0,0xec,0xff,0xe0,0xff,0xd7,0xff,0xd3,0xff,0xde,0xff,0xe5,0xff,0xf9,
0xff,0xfd,0xff,0x5,0x0,0xfc,0xff,0xf8,0xff,0xe4,0xff,0xe2,0xff,0xd2,0xff,0xd3,
0xff,0xdb,0xff,0xda,0xff,0xf3,0xff,0xf5,0xff,0x0,0x0,0x5,0x0,0xf1,0xff,0xf3,
0xff,0xd8,0xff,0xda,0xff,0xd4,0xff,0xdd,0xff,0xe1,0xff,0xef,0xff,0xe6,0xff,0xf0,
0xff,0xd8,0xff,0xdb,0xff,0xcb,0xff,0xca,0xff,0xd2,0xff,0xcc,0xff,0xe2,0xff,0xde,
0xff,0xe6,0xff,0xed,0xff,0xdb,0xff,0xe8,0xff,0xd2,0xff,0xda,0xff,0xd7,0xff,0xd6,
0xff,0xe3,0xff,0xe0,0xff,0xe4,0xff,0xe9,0xff,0xdb,0xff,0xe3,0xff,0xde,0xff,0xde,
0xff,0xf3,0xff,0xea,0xff,0x0,0x0,0xf4,0xff,0xee,0xff,0xe6,0xff,0xd2,0xff,0xd5,
0xff,0xdb,0xff,0xe3,0xff,0xe,0x0,0xd,0x0,0x31,0x0,0x23,0x0,0xd,0x0,0x0,
0x0,0xc9,0xff,0xc9,0xff,0xc3,0xff,0xcb,0xff,0xa,0x0,0xe,0x0,0x35,0x0,0x36,
0x0,0x3,0x0,0x3,0x0,0xb5,0xff,0xb6,0xff,0xae,0xff,0xb0,0xff,0xe9,0xff,0xeb,
0xff,0x13,0x0,0xc,0x0,0xfe,0xff,0xec,0xff,0xcd,0xff,0xbf,0xff,0xc2,0xff,0xbb,
0xff,0xe6,0xff,0xdc,0xff,0xff,0xff,0xef,0xff,0xe8,0xff,0xdc,0xff,0xbe,0xff,0xbf,
0xff,0xb3,0xff,0xbd,0xff,0xcc,0xff,0xd5,0xff,0xe7,0xff,0xe8,0xff,0xeb,0xff,0xe6,
0xff,0xdb,0xff,0xde,0xff,0xcf,0xff,0xde,0xff,0xdc,0xff,0xe5,0xff,0xf3,0xff,0xea,
0xff,0xfb,0xff,0xf1,0xff,0xee,0xff,0xf4,0xff,0xd9,0xff,0xeb,0xff,0xcf,0xff,0xe1,
0xff,0xdd,0xff,0xe8,0xff,0xf8,0xff,0xf3,0xff,0xa,0x0,0xfd,0xff,0xe,0x0,0xd,
0x0,0xa,0x0,0x13,0x0,0xfe,0xff,0x0,0x0,0xec,0xff,0xe4,0xff,0xe0,0xff,0xdf,
0xff,0xe4,0xff,0xf4,0xff,0xf3,0xff,0x2,0x0,0xfb,0xff,0xf2,0xff,0xea,0xff,0xd8,
0xff,0xcf,0xff,0xce,0xff,0xc9,0xff,0xd4,0xff,0xe0,0xff,0xe2,0xff,0xf2,0xff,0xea,
0xff,0xe6,0xff,0xde,0xff,0xcd,0xff,0xca,0xff,0xc2,0xff,0xc9,0xff,0xc7,0xff,0xd5,
0xff,0xd1,0xff,0xd2,0xff,0xd9,0xff,0xc2,0xff,0xd8,0xff,0xc3,0xff,0xd9,0xff,0xe1,
0xff,0xf0,0xff,0x4,0x0,0x7,0x0,0x7,0x0,0xe2,0xff,0xd7,0xff,0x96,0xff,0x9a,
0xff,0x97,0xff,0xaa,0xff,0x13,0x0,0x1d,0x0,0x7c,0x0,0x75,0x0,0x47,0x0,0x37,
0x0,0xbc,0xff,0xaf,0xff,0x95,0xff,0x96,0xff,0xff,0xff,0xe,0x0,0x74,0x0,0x82,
0x0,0x71,0x0,0x6f,0x0,0x9,0x0,0xfe,0xff,0xb5,0xff,0xb5,0xff,0xc9,0xff,0xd3,
0xff,0x1c,0x0,0x1e,0x0,0x4a,0x0,0x3d,0x0,0x2a,0x0,0x1a,0x0,0xef,0xff,0xe9,
0xff,0xd3,0xff,0xdb,0xff,0xde,0xff,0xef,0xff,0xee,0xff,0xfc,0xff,0xe9,0xff,0xe5,
0xff,0xcb,0xff,0xbc,0xff,0xaf,0xff,0xab,0xff,0xb7,0xff,0xc1,0xff,0xdb,0xff,0xe5,
0xff,0xea,0xff,0xf1,0xff,0xcb,0xff,0xd7,0xff,0xaf,0xff,0xbc,0xff,0xbc,0xff,0xc6,
0xff,0xd2,0xff,0xe4,0xff,0xce,0xff,0xea,0xff,0xca,0xff,0xdb,0xff,0xe7,0xff,0xe1,
0xff,0xb,0x0,0xfc,0xff,0xa,0x0,0x7,0x0,0xea,0xff,0xf6,0xff,0xda,0xff,0xe8,
0xff,0xf6,0xff,0xfa,0xff,0x20,0x0,0x1c,0x0,0x28,0x0,0x26,0x0,0xc,0x0,0x13,
0x0,0xf9,0xff,0x5,0x0,0xe,0x0,0x14,0x0,0x31,0x0,0x2a,0x0,0x3d,0x0,0x2b,
0x0,0x2d,0x0,0x1c,0x0,0x1c,0x0,0x12,0x0,0x1e,0x0,0x18,0x0,0x28,0x0,0x20,
0x0,0x26,0x0,0x1c,0x0,0x19,0x0,0x10,0x0,0xf,0x0,0xc,0x0,0x12,0x0,0x12,
0x0,0x1f,0x0,0x18,0x0,0x1e,0x0,0xe,0x0,0xff,0xff,0xf1,0xff,0xd8,0xff,0xda,
0xff,0xd9,0xff,0xe0,0xff,0x1,0x0,0xfa,0xff,0x1b,0x0,0x10,0x0,0x1,0x0,0x6,
0x0,0xd1,0xff,0xdf,0xff,0xc4,0xff,0xc8,0xff,0xec,0xff,0xe9,0xff,0x18,0x0,0x15,
0x0,0xb,0x0,0xa,0x0,0xcb,0xff,0xcd,0xff,0xb1,0xff,0xb0,0xff,0xe8,0xff,0xe1,
0xff,0x2b,0x0,0x21,0x0,0x21,0x0,0x1d,0x0,0xe1,0xff,0xe6,0xff,0xc2,0xff,0xc7,
0xff,0xe3,0xff,0xe2,0xff,0x15,0x0,0x18,0x0,0x2b,0x0,0x35,0x0,0x1a,0x0,0x1a,
0x0,0xf3,0xff,0xe4,0xff,0xdd,0xff,0xda,0xff,0x0,0x0,0x10,0x0,0x3b,0x0,0x44,
0x0,0x41,0x0,0x33,0x0,0x3,0x0,0xf0,0xff,0xd1,0xff,0xce,0xff,0xe7,0xff,0xf4,
0xff,0x28,0x0,0x35,0x0,0x45,0x0,0x48,0x0,0x1b,0x0,0xf,0x0,0xd6,0xff,0xc2,
0xff,0xc9,0xff,0xc1,0xff,0xc,0x0,0x13,0x0,0x4b,0x0,0x4e,0x0,0x2e,0x0,0x26,
0x0,0xd7,0xff,0xd9,0xff,0xb9,0xff,0xce,0xff,0xf2,0xff,0x3,0x0,0x2f,0x0,0x28,
0x0,0x2a,0x0,0x1d,0x0,0xfb,0xff,0xff,0xff,0xdd,0xff,0xec,0xff,0xe5,0xff,0xeb,
0xff,0x2,0x0,0xf7,0xff,0x17,0x0,0x4,0x0,0x12,0x0,0x7,0x0,0x0,0x0,0xa,
0x0,0xfc,0xff,0xe,0x0,0x4,0x0,0x8,0x0,0xfd,0xff,0xf4,0xff,0xed,0xff,0xe7,
0xff,0xef,0xff,0xf2,0xff,0xfe,0xff,0x1,0x0,0xfc,0xff,0xfb,0xff,0xed,0xff,0xef,
0xff,0xf2,0xff,0xf9,0xff,0xb,0x0,0xf,0x0,0x10,0x0,0x13,0x0,0xfa,0xff,0x3,
0x0,0xed,0xff,0xf0,0xff,0xfb,0xff,0xed,0xff,0xe,0x0,0xfb,0xff,0x16,0x0,0x14,
0x0,0x16,0x0,0x21,0x0,0x7,0x0,0xc,0x0,0xec,0xff,0xea,0xff,0xe9,0xff,0xef,
0xff,0x7,0x0,0x1d,0x0,0x1a,0x0,0x33,0x0,0x2,0x0,0xd,0x0,0xe5,0xff,0xe1,
0xff,0xed,0xff,0xe8,0xff,0x1,0x0,0x8,0x0,0xfa,0xff,0x9,0x0,0xe4,0xff,0xef,
0xff,0xe5,0xff,0xe8,0xff,0xfe,0xff,0x4,0x0,0xf,0x0,0x1f,0x0,0x1,0x0,0x13,
0x0,0xe1,0xff,0xec,0xff,0xd2,0xff,0xd6,0xff,0xef,0xff,0xec,0xff,0x1e,0x0,0x17,
0x0,0x25,0x0,0x24,0x0,0xfb,0xff,0xff,0xff,0xd3,0xff,0xd5,0xff,0xdd,0xff,0xe0,
0xff,0x5,0x0,0xe,0x0,0x1e,0x0,0x27,0x0,0x1b,0x0,0x16,0x0,0xc,0x0,0xf6,
0xff,0x1,0x0,0xed,0xff,0xa,0x0,0xc,0x0,0x27,0x0,0x32,0x0,0x3b,0x0,0x37,
0x0,0x2d,0x0,0x21,0x0,0x13,0x0,0x11,0x0,0x16,0x0,0x1e,0x0,0x31,0x0,0x3b,
0x0,0x3b,0x0,0x3d,0x0,0x2c,0x0,0x23,0x0,0x1c,0x0,0x13,0x0,0x17,0x0,0x17,
0x0,0x14,0x0,0x20,0x0,0x19,0x0,0x23,0x0,0x27,0x0,0x21,0x0,0x26,0x0,0x1d,
0x0,0xa,0x0,0x14,0x0,0xf0,0xff,0x9,0x0,0xf8,0xff,0x7,0x0,0x15,0x0,0x10,
0x0,0x1f,0x0,0x10,0x0,0x9,0x0,0x4,0x0,0xf2,0xff,0xfe,0xff,0xf3,0xff,0x8,
0x0,0x2,0x0,0x17,0x0,0xb,0x0,0x12,0x0,0x6,0x0,0xfb,0xff,0xfa,0xff,0xf0,
0xff,0xf2,0xff,0xf6,0xff,0xf2,0xff,0x1,0x0,0xfb,0xff,0x9,0x0,0xc,0x0,0x11,
0x0,0x1b,0x0,0x17,0x0,0x1b,0x0,0x17,0x0,0xa,0x0,0x15,0x0,0xff,0xff,0x16,
0x0,0x9,0x0,0x18,0x0,0x1e,0x0,0x1b,0x0,0x29,0x0,0x24,0x0,0x2c,0x0,0x32,
0x0,0x31,0x0,0x35,0x0,0x2f,0x0,0x2d,0x0,0x20,0x0,0x26,0x0,0x14,0x0,0x21,
0x0,0x16,0x0,0x1b,0x0,0x20,0x0,0x1e,0x0,0x2a,0x0,0x27,0x0,0x2c,0x0,0x27,
0x0,0x1f,0x0,0x1a,0x0,0x4,0x0,0x8,0x0,0xf0,0xff,0xfe,0xff,0xfd,0xff,0x3,
0x0,0x23,0x0,0x1a,0x0,0x33,0x0,0x2f,0x0,0xa,0x0,0x20,0x0,0xc7,0xff,0xe9,
0xff,0xb3,0xff,0xc6,0xff,0xe9,0xff,0xe9,0xff,0x2a,0x0,0x20,0x0,0x29,0x0,0x24,
0x0,0xf2,0xff,0xfd,0xff,0xd2,0xff,0xe5,0xff,0xe9,0xff,0xf4,0xff,0xf,0x0,0x14,
0x0,0x1c,0x0,0x29,0x0,0x11,0x0,0x27,0x0,0xff,0xff,0x8,0x0,0xf2,0xff,0xe6,
0xff,0xfd,0xff,0xef,0xff,0x23,0x0,0x1d,0x0,0x3a,0x0,0x38,0x0,0x25,0x0,0x26,
0x0,0x1,0x0,0xb,0x0,0x1,0x0,0x11,0x0,0x27,0x0,0x2d,0x0,0x41,0x0,0x3b,
0x0,0x2f,0x0,0x2b,0x0,0xb,0x0,0xe,0x0,0x3,0x0,0x6,0x0,0x1b,0x0,0x21,
0x0,0x33,0x0,0x3a,0x0,0x34,0x0,0x2f,0x0,0x22,0x0,0x16,0x0,0x14,0x0,0x12,
0x0,0x13,0x0,0x23,0x0,0x16,0x0,0x29,0x0,0x11,0x0,0x19,0x0,0x4,0x0,0x7,
0x0,0xff,0xff,0x1,0x0,0x6,0x0,0x0,0x0,0x10,0x0,0xb,0x0,0x17,0x0,0x22,
0x0,0x1d,0x0,0x29,0x0,0x1c,0x0,0x19,0x0,0xa,0x0,0xa,0x0,0xf5,0xff,0x6,
0x0,0xf2,0xff,0x2,0x0,0x5,0x0,0x3,0x0,0x17,0x0,0x10,0x0,0x15,0x0,0x18,
0x0,0xe,0x0,0x14,0x0,0x13,0x0,0x13,0x0,0x1d,0x0,0x1e,0x0,0x23,0x0,0x22,
0x0,0x1e,0x0,0x15,0x0,0x11,0x0,0x8,0x0,0xa,0x0,0xd,0x0,0x12,0x0,0x1c,
0x0,0x21,0x0,0x25,0x0,0x27,0x0,0x23,0x0,0x1f,0x0,0x15,0x0,0x12,0x0,0x3,
0x0,0x12,0x0,0x1,0x0,0x28,0x0,0x1e,0x0,0x42,0x0,0x46,0x0,0x3d,0x0,0x44,
0x0,0x12,0x0,0xd,0x0,0xf1,0xff,0xe1,0xff,0x8,0x0,0xfd,0xff,0x42,0x0,0x3d,
0x0,0x54,0x0,0x54,0x0,0x2a,0x0,0x30,0x0,0xff,0xff,0x3,0x0,0x5,0x0,0x0,
0x0,0x2a,0x0,0x21,0x0,0x3a,0x0,0x3b,0x0,0x2d,0x0,0x34,0x0,0x1a,0x0,0x1b,
0x0,0xd,0x0,0xa,0x0,0xf,0x0,0x14,0x0,0x27,0x0,0x2c,0x0,0x3d,0x0,0x38,
0x0,0x33,0x0,0x2f,0x0,0x1b,0x0,0x1e,0x0,0x17,0x0,0x1a,0x0,0x27,0x0,0x27,
0x0,0x2f,0x0,0x34,0x0,0x29,0x0,0x33,0x0,0x23,0x0,0x29,0x0,0x24,0x0,0x21,
0x0,0x24,0x0,0x23,0x0,0x23,0x0,0x2f,0x0,0x27,0x0,0x36,0x0,0x25,0x0,0x2c,
0x0,0x16,0x0,0x18,0x0,0xb,0x0,0x9,0x0,0x11,0x0,0x4,0x0,0x1d,0x0,0xe,
0x0,0x24,0x0,0x28,0x0,0x27,0x0,0x3a,0x0,0x2b,0x0,0x2f,0x0,0x26,0x0,0x13,
0x0,0x17,0x0,0x2,0x0,0x14,0x0,0xb,0x0,0x23,0x0,0x1d,0x0,0x30,0x0,0x20,
0x0,0x2c,0x0,0x16,0x0,0x1f,0x0,0xd,0x0,0x19,0x0,0xd,0x0,0x1c,0x0,0x16,
0x0,0x1f,0x0,0x1b,0x0,0x1b,0x0,0x11,0x0,0x11,0x0,0xff,0xff,0xc,0x0,0xfe,
0xff,0x17,0x0,0xf,0x0,0x29,0x0,0x1a,0x0,0x25,0x0,0xf,0x0,0xc,0x0,0x0,
0x0,0xfa,0xff,0x2,0x0,0x4,0x0,0x16,0x0,0x1a,0x0,0x27,0x0,0x21,0x0,0x28,
0x0,0x16,0x0,0x1d,0x0,0xd,0x0,0x10,0x0,0xe,0x0,0x9,0x0,0x16,0x0,0x12,
0x0,0x1f,0x0,0x28,0x0,0x25,0x0,0x31,0x0,0x22,0x0,0x23,0x0,0x14,0x0,0x10,
0x0,0x5,0x0,0xe,0x0,0x6,0x0,0x1b,0x0,0x14,0x0,0x20,0x0,0x20,0x0,0x17,
0x0,0x25,0x0,0x13,0x0,0x28,0x0,0x1e,0x0,0x25,0x0,0x24,0x0,0x1c,0x0,0x1c,
0x0,0x17,0x0,0x12,0x0,0x17,0x0,0xe,0x0,0x1c,0x0,0x10,0x0,0x27,0x0,0x1d,
0x0,0x31,0x0,0x2a,0x0,0x2a,0x0,0x20,0x0,0x19,0x0,0x1,0x0,0x18,0x0,0xfd,
0xff,0x30,0x0,0x24,0x0,0x46,0x0,0x3f,0x0,0x38,0x0,0x28,0x0,0x15,0x0,0x5,
0x0,0xc,0x0,0x8,0x0,0x2b,0x0,0x27,0x0,0x48,0x0,0x35,0x0,0x41,0x0,0x28,
0x0,0x24,0x0,0x17,0x0,0x17,0x0,0x1a,0x0,0x22,0x0,0x2a,0x0,0x2f,0x0,0x32,
0x0,0x2f,0x0,0x26,0x0,0x2a,0x0,0x1a,0x0,0x22,0x0,0x23,0x0,0x1c,0x0,0x31,
0x0,0x1b,0x0,0x27,0x0,0x1c,0x0,0x15,0x0,0x1e,0x0,0x15,0x0,0x23,0x0,0x25,
0x0,0x27,0x0,0x2e,0x0,0x26,0x0,0x26,0x0,0x19,0x0,0x13,0x0,0xb,0x0,0x6,
0x0,0xd,0x0,0x4,0x0,0x19,0x0,0xd,0x0,0x21,0x0,0x1b,0x0,0x26,0x0,0x1e,
0x0,0x29,0x0,0x1a,0x0,0x27,0x0,0x21,0x0,0x24,0x0,0x2b,0x0,0x27,0x0,0x2a,
0x0,0x2c,0x0,0x28,0x0,0x2c,0x0,0x2b,0x0,0x27,0x0,0x29,0x0,0x2b,0x0,0x24,
0x0,0x38,0x0,0x29,0x0,0x3b,0x0,0x37,0x0,0x3a,0x0,0x42,0x0,0x43,0x0,0x45,
0x0,0x4a,0x0,0x41,0x0,0x3b,0x0,0x34,0x0,0x24,0x0,0x24,0x0,0x29,0x0,0x29,
0x0,0x4c,0x0,0x45,0x0,0x63,0x0,0x59,0x0,0x58,0x0,0x4c,0x0,0x41,0x0,0x35,
0x0,0x36,0x0,0x30,0x0,0x3b,0x0,0x3a,0x0,0x48,0x0,0x45,0x0,0x50,0x0,0x48,
0x0,0x4b,0x0,0x39,0x0,0x3a,0x0,0x21,0x0,0x2a,0x0,0x17,0x0,0x28,0x0,0x22,
0x0,0x34,0x0,0x2d,0x0,0x3f,0x0,0x29,0x0,0x3c,0x0,0x1c,0x0,0x28,0x0,0x1d,
0x0,0x13,0x0,0x23,0x0,0x13,0x0,0x1b,0x0,0x27,0x0,0x10,0x0,0x31,0x0,0x10,
0x0,0x22,0x0,0x10,0x0,0x14,0x0,0x10,0x0,0x1c,0x0,0x1a,0x0,0x2c,0x0,0x26,
0x0,0x2a,0x0,0x23,0x0,0x1a,0x0,0x15,0x0,0x10,0x0,0x10,0x0,0x11,0x0,0x17,
0x0,0x15,0x0,0x1d,0x0,0x1e,0x0,0x1d,0x0,0x27,0x0,0x1f,0x0,0x26,0x0,0x26,
0x0,0x1f,0x0,0x2c,0x0,0x20,0x0,0x32,0x0,0x21,0x0,0x30,0x0,0x1a,0x0,0x21,
0x0,0x17,0x0,0x13,0x0,0x24,0x0,0x1d,0x0,0x36,0x0,0x36,0x0,0x37,0x0,0x3f,
0x0,0x2d,0x0,0x32,0x0,0x2d,0x0,0x1f,0x0,0x33,0x0,0x1c,0x0,0x2f,0x0,0x2a,
0x0,0x2a,0x0,0x34,0x0,0x2d,0x0,0x27,0x0,0x2d,0x0,0x11,0x0,0x28,0x0,0xc,
0x0,0x29,0x0,0x23,0x0,0x2d,0x0,0x34,0x0,0x2e,0x0,0x22,0x0,0x29,0x0,0xb,
0x0,0x29,0x0,0x10,0x0,0x2f,0x0,0x24,0x0,0x2e,0x0,0x2a,0x0,0x28,0x0,0x20,
0x0,0x2b,0x0,0x20,0x0,0x2f,0x0,0x27,0x0,0x29,0x0,0x22,0x0,0x27,0x0,0x1d,
0x0,0x32,0x0,0x2b,0x0,0x3c,0x0,0x36,0x0,0x33,0x0,0x30,0x0,0x21,0x0,0x23,
0x0,0x17,0x0,0x16,0x0,0x1b,0x0,0x11,0x0,0x25,0x0,0x1a,0x0,0x30,0x0,0x2f,
0x0,0x2f,0x0,0x39,0x0,0x1e,0x0,0x26,0x0,0x11,0x0,0xc,0x0,0x19,0x0,0xb,
0x0,0x24,0x0,0x1c,0x0,0x28,0x0,0x24,0x0,0x25,0x0,0x1e,0x0,0x1d,0x0,0x16,
0x0,0x11,0x0,0x13,0x0,0xc,0x0,0x18,0x0,0x11,0x0,0x1d,0x0,0x16,0x0,0x1f,
0x0,0x1a,0x0,0x1a,0x0,0x1d,0x0,0xe,0x0,0x18,0x0,0xa,0x0,0xd,0x0,0x13,
0x0,0x12,0x0,0x1e,0x0,0x2e,0x0,0x26,0x0,0x44,0x0,0x2d,0x0,0x34,0x0,0x2c,
0x0,0x19,0x0,0x23,0x0,0x1e,0x0,0x24,0x0,0x3f,0x0,0x39,0x0,0x52,0x0,0x40,
0x0,0x40,0x0,0x28,0x0,0x26,0x0,0x15,0x0,0x2a,0x0,0x26,0x0,0x4c,0x0,0x47,
0x0,0x5f,0x0,0x53,0x0,0x47,0x0,0x3d,0x0,0x1e,0x0,0x1b,0x0,0x1a,0x0,0x15,
0x0,0x40,0x0,0x32,0x0,0x5c,0x0,0x4a,0x0,0x4d,0x0,0x3f,0x0,0x2a,0x0,0x1f,
0x0,0x1d,0x0,0x10,0x0,0x2b,0x0,0x24,0x0,0x3d,0x0,0x40,0x0,0x3d,0x0,0x42,
0x0,0x25,0x0,0x2a,0x0,0x9,0x0,0x10,0x0,0x7,0x0,0x9,0x0,0x21,0x0,0x19,
0x0,0x35,0x0,0x2b,0x0,0x28,0x0,0x28,0x0,0xc,0x0,0x16,0x0,0x5,0x0,0x11,
0x0,0x15,0x0,0x19,0x0,0x1f,0x0,0x22,0x0,0x16,0x0,0x25,0x0,0xa,0x0,0x26,
0x0,0x11,0x0,0x25,0x0,0x23,0x0,0x1f,0x0,0x2a,0x0,0x1d,0x0,0x1e,0x0,0x21,
0x0,0x15,0x0,0x1d,0x0,0x1f,0x0,0x1a,0x0,0x2f,0x0,0x2e,0x0,0x2d,0x0,0x3d,
0x0,0x1a,0x0,0x26,0x0,0xa,0x0,0x9,0x0,0x8,0x0,0xc,0x0,0x18,0x0,0x21,
0x0,0x37,0x0,0x2c,0x0,0x4a,0x0,0x2e,0x0,0x35,0x0,0x2c,0x0,0xb,0x0,0x1d,
0x0,0xf7,0xff,0x1,0x0,0xb,0x0,0xff,0xff,0x29,0x0,0x1e,0x0,0x2f,0x0,0x34,
0x0,0x1b,0x0,0x26,0x0,0x8,0x0,0xa,0x0,0x9,0x0,0x2,0x0,0x1e,0x0,0x10,
0x0,0x31,0x0,0x1c,0x0,0x25,0x0,0x18,0x0,0x2,0x0,0x9,0x0,0xed,0xff,0xfe,
0xff,0xfe,0xff,0x3,0x0,0x1d,0x0,0x16,0x0,0x28,0x0,0x21,0x0,0x19,0x0,0x1b,
0x0,0x4,0x0,0x14,0x0,0xff,0xff,0x12,0x0,0x11,0x0,0x12,0x0,0x2b,0x0,0x14,
0x0,0x2c,0x0,0x17,0x0,0xe,0x0,0x14,0x0,0xf3,0xff,0xd,0x0,0xfa,0xff,0xd,
0x0,0x18,0x0,0x14,0x0,0x2c,0x0,0x1b,0x0,0x27,0x0,0x1d,0x0,0x17,0x0,0x1f,
0x0,0xd,0x0,0x22,0x0,0x11,0x0,0x17,0x0,0x19,0x0,0x8,0x0,0x1b,0x0,0xe,
0x0,0x1e,0x0,0x1f,0x0,0x1f,0x0,0x22,0x0,0x12,0x0,0x17,0x0,0x4,0x0,0xd,
0x0,0x6,0x0,0xa,0x0,0x15,0x0,0xd,0x0,0x19,0x0,0x12,0x0,0xf,0x0,0x16,
0x0,0xc,0x0,0x11,0x0,0x17,0x0,0x7,0x0,0x15,0x0,0x6,0x0,0xfe,0xff,0xa,
0x0,0xea,0xff,0x3,0x0,0xeb,0xff,0xf6,0xff,0xfe,0xff,0xf8,0xff,0x13,0x0,0xb,
0x0,0x18,0x0,0x18,0x0,0xa,0x0,0x11,0x0,0xfa,0xff,0x0,0x0,0xfc,0xff,0xfa,
0xff,0x10,0x0,0x1,0x0,0x1c,0x0,0xd,0x0,0x10,0x0,0x15,0x0,0xff,0xff,0x16,
0x0,0xfe,0xff,0x11,0x0,0xd,0x0,0xb,0x0,0x22,0x0,0x12,0x0,0x2d,0x0,0x24,
0x0,0x23,0x0,0x29,0x0,0xe,0x0,0x17,0x0,0x8,0x0,0x1,0x0,0x15,0x0,0xfe,
0xff,0x21,0x0,0x11,0x0,0x1d,0x0,0x1e,0x0,0xd,0x0,0x12,0x0,0x0,0x0,0xfe,
0xff,0xff,0xff,0xf9,0xff,0xf,0x0,0x4,0x0,0x23,0x0,0x15,0x0,0x1b,0x0,0x13,
0x0,0xf4,0xff,0xfb,0xff,0xde,0xff,0xe7,0xff,0xf5,0xff,0xec,0xff,0x15,0x0,0x2,
0x0,0x12,0x0,0xd,0x0,0xf7,0xff,0x4,0x0,0xe7,0xff,0xf9,0xff,0xef,0xff,0xfa,
0xff,0x1,0x0,0x0,0x0,0x9,0x0,0x6,0x0,0x7,0x0,0x9,0x0,0xff,0xff,0x0,
0x0,0xf2,0xff,0xf0,0xff,0xee,0xff,0xec,0xff,0xfc,0xff,0xf8,0xff,0xd,0x0,0x8,
0x0,0x12,0x0,0xc,0x0,0x8,0x0,0x4,0x0,0xfe,0xff,0x2,0x0,0x8,0x0,0x12,
0x0,0x17,0x0,0x1f,0x0,0x15,0x0,0x16,0x0,0x4,0x0,0x2,0x0,0xfd,0xff,0x1,
0x0,0xe,0x0,0x12,0x0,0x23,0x0,0x1c,0x0,0x1d,0x0,0x11,0x0,0x2,0x0,0x4,
0x0,0xf5,0xff,0x5,0x0,0x1,0x0,0x9,0x0,0xf,0x0,0x6,0x0,0x8,0x0,0x9,
0x0,0xf6,0xff,0xd,0x0,0xf4,0xff,0x6,0x0,0xff,0xff,0xfa,0xff,0xff,0xff,0xf5,
0xff,0xf6,0xff,0xfe,0xff,0xf6,0xff,0x8,0x0,0xfb,0xff,0x2,0x0,0xf5,0xff,0xf0,
0xff,0xe4,0xff,0xe9,0xff,0xe1,0xff,0xf4,0xff,0xf3,0xff,0x1,0x0,0xff,0xff,0xff,
0xff,0xf7,0xff,0xee,0xff,0xe5,0xff,0xe2,0xff,0xdc,0xff,0xeb,0xff,0xe5,0xff,0xf7,
0xff,0xf4,0xff,0xf4,0xff,0xf7,0xff,0xf0,0xff,0xf0,0xff,0xf1,0xff,0xeb,0xff,0xf5,
0xff,0xf3,0xff,0xfc,0xff,0x0,0x0,0x0,0x0,0x2,0x0,0xfc,0xff,0xf9,0xff,0xf9,
0xff,0xf6,0xff,0xfa,0xff,0xfe,0xff,0xf9,0xff,0xc,0x0,0xfc,0xff,0x13,0x0,0x7,
0x0,0xa,0x0,0x10,0x0,0xf8,0xff,0xc,0x0,0xf3,0xff,0xfc,0xff,0xfd,0xff,0xf6,
0xff,0x4,0x0,0x1,0x0,0xf7,0xff,0x3,0x0,0xe8,0xff,0xf1,0xff,0xea,0xff,0xe9,
0xff,0xf1,0xff,0xf4,0xff,0xf3,0xff,0xfc,0xff,0xf6,0xff,0xfd,0xff,0xff,0xff,0x3,
0x0,0xff,0xff,0x6,0x0,0xe9,0xff,0xfb,0xff,0xd3,0xff,0xe6,0xff,0xd9,0xff,0xdb,
0xff,0xee,0xff,0xe3,0xff,0xf8,0xff,0xec,0xff,0xf4,0xff,0xee,0xff,0xed,0xff,0xf2,
0xff,0xea,0xff,0xf2,0xff,0xeb,0xff,0xdf,0xff,0xe4,0xff,0xd1,0xff,0xd6,0xff,0xda,
0xff,0xcd,0xff,0xea,0xff,0xd6,0xff,0xed,0xff,0xec,0xff,0xe7,0xff,0xf4,0xff,0xe4,
0xff,0xe8,0xff,0xe8,0xff,0xe4,0xff,0xee,0xff,0xf7,0xff,0xf9,0xff,0x8,0x0,0x2,
0x0,0xfe,0xff,0xfb,0xff,0xe9,0xff,0xf1,0xff,0xea,0xff,0xf7,0xff,0xfd,0xff,0x0,
0x0,0x3,0x0,0xfe,0xff,0xf8,0xff,0xf9,0xff,0xf6,0xff,0xfd,0xff,0x5,0x0,0x6,
0x0,0xb,0x0,0x4,0x0,0xfd,0xff,0xf8,0xff,0xe9,0xff,0xee,0xff,0xe2,0xff,0xe8,
0xff,0xea,0xff,0xec,0xff,0xf7,0xff,0xfc,0xff,0xfb,0xff,0x7,0x0,0xef,0xff,0xfc,
0xff,0xe0,0xff,0xe7,0xff,0xdb,0xff,0xdb,0xff,0xe4,0xff,0xe2,0xff,0xee,0xff,0xef,
0xff,0xe9,0xff,0xf0,0xff,0xdd,0xff,0xe4,0xff,0xd1,0xff,0xd6,0xff,0xc6,0xff,0xce,
0xff,0xd0,0xff,0xd6,0xff,0xed,0xff,0xe5,0xff,0xf6,0xff,0xe8,0xff,0xe1,0xff,0xe0,
0xff,0xd0,0xff,0xda,0xff,0xd7,0xff,0xd9,0xff,0xe2,0xff,0xd6,0xff,0xe0,0xff,0xd7,
0xff,0xde,0xff,0xe2,0xff,0xe4,0xff,0xec,0xff,0xe5,0xff,0xeb,0xff,0xe2,0xff,0xea,
0xff,0xef,0xff,0xec,0xff,0xf9,0xff,0xed,0xff,0xf4,0xff,0xf0,0xff,0xee,0xff,0xf0,
0xff,0xea,0xff,0xe6,0xff,0xe1,0xff,0xdb,0xff,0xdb,0xff,0xd9,0xff,0xe1,0xff,0xe5,
0xff,0xf2,0xff,0xf1,0xff,0xf7,0xff,0xed,0xff,0xdf,0xff,0xe1,0xff,0xc4,0xff,0xd7,
0xff,0xc4,0xff,0xcf,0xff,0xda,0xff,0xd5,0xff,0xeb,0xff,0xe6,0xff,0xe4,0xff,0xe6,
0xff,0xc7,0xff,0xd0,0xff,0xb1,0xff,0xbf,0xff,0xbb,0xff,0xc5,0xff,0xdc,0xff,0xdd,
0xff,0xf1,0xff,0xec,0xff,0xe2,0xff,0xe9,0xff,0xc4,0xff,0xdc,0xff,0xbc,0xff,0xcd,
0xff,0xcc,0xff,0xcb,0xff,0xdb,0xff,0xd8,0xff,0xdf,0xff,0xe1,0xff,0xdd,0xff,0xd9,
0xff,0xe0,0xff,0xd4,0xff,0xe8,0xff,0xe7,0xff,0xe8,0xff,0x0,0x0,0xda,0xff,0xf7,
0xff,0xcc,0xff,0xd5,0xff,0xd0,0xff,0xc9,0xff,0xe4,0xff,0xe0,0xff,0xf2,0xff,0xf7,
0xff,0xea,0xff,0xf1,0xff,0xd9,0xff,0xda,0xff,0xdb,0xff,0xd7,0xff,0xef,0xff,0xe9,
0xff,0xf3,0xff,0xf5,0xff,0xdc,0xff,0xea,0xff,0xc4,0xff,0xd0,0xff,0xc2,0xff,0xc2,
0xff,0xd2,0xff,0xcf,0xff,0xdc,0xff,0xe6,0xff,0xda,0xff,0xe7,0xff,0xda,0xff,0xd3,
0xff,0xd6,0xff,0xc3,0xff,0xc7,0xff,0xc5,0xff,0xbf,0xff,0xd3,0xff,0xcd,0xff,0xdf,
0xff,0xe1,0xff,0xe4,0xff,0xde,0xff,0xd8,0xff,0xc1,0xff,0xc0,0xff,0xb0,0xff,0xba,
0xff,0xc0,0xff,0xd1,0xff,0xe2,0xff,0xef,0xff,0xfb,0xff,0xf4,0xff,0xed,0xff,0xdb,
0xff,0xbf,0xff,0xbf,0xff,0xab,0xff,0xbb,0xff,0xce,0xff,0xd1,0xff,0xf9,0xff,0xef,
0xff,0xf8,0xff,0xf3,0xff,0xd4,0xff,0xdc,0xff,0xc5,0xff,0xd4,0xff,0xdd,0xff,0xe2,
0xff,0xf1,0xff,0xeb,0xff,0xec,0xff,0xea,0xff,0xe1,0xff,0xe6,0xff,0xdb,0xff,0xe3,
0xff,0xda,0xff,0xe2,0xff,0xe3,0xff,0xe3,0xff,0xec,0xff,0xe6,0xff,0xe7,0xff,0xe6,
0xff,0xdc,0xff,0xda,0xff,0xd8,0xff,0xd2,0xff,0xd9,0xff,0xda,0xff,0xd3,0xff,0xe0,
0xff,0xca,0xff,0xdb,0xff,0xd1,0xff,0xd5,0xff,0xdf,0xff,0xd5,0xff,0xdf,0xff,0xd8,
0xff,0xdb,0xff,0xd9,0xff,0xe2,0xff,0xde,0xff,0xe9,0xff,0xe7,0xff,0xe0,0xff,0xe3,
0xff,0xc8,0xff,0xd3,0xff,0xbb,0xff,0xc6,0xff,0xcb,0xff,0xc7,0xff,0xea,0xff,0xda,
0xff,0xfc,0xff,0xf3,0xff,0xec,0xff,0xf4,0xff,0xc1,0xff,0xcd,0xff,0xa1,0xff,0x9a,
0xff,0xb4,0xff,0x9f,0xff,0xec,0xff,0xe5,0xff,0x3,0x0,0xf,0x0,0xd5,0xff,0xe2,
0xff,0x97,0xff,0x98,0xff,0x8a,0xff,0x84,0xff,0xb7,0xff,0xb7,0xff,0xed,0xff,0xfb,
0xff,0xed,0xff,0xfe,0xff,0xb4,0xff,0xba,0xff,0x84,0xff,0x7e,0xff,0x90,0xff,0x8b,
0xff,0xc3,0xff,0xd2,0xff,0xde,0xff,0xf9,0xff,0xc6,0xff,0xd3,0xff,0xa8,0xff,0x9e,
0xff,0xa7,0xff,0x99,0xff,0xb8,0xff,0xba,0xff,0xc8,0xff,0xd6,0xff,0xc8,0xff,0xd4,
0xff,0xba,0xff,0xbd,0xff,0xaf,0xff,0xad,0xff,0xb1,0xff,0xb5,0xff,0xc8,0xff,0xd0,
0xff,0xec,0xff,0xec,0xff,0xf6,0xff,0xed,0xff,0xd9,0xff,0xd4,0xff,0xba,0xff,0xba,
0xff,0xbc,0xff,0xb9,0xff,0xdc,0xff,0xd1,0xff,0xf4,0xff,0xee,0xff,0xeb,0xff,0xf1,
0xff,0xd5,0xff,0xdd,0xff,0xd3,0xff,0xd3,0xff,0xdd,0xff,0xdf,0xff,0xe2,0xff,0xe2,
0xff,0xd4,0xff,0xca,0xff,0xc0,0xff,0xb9,0xff,0xc3,0xff,0xcc,0xff,0xd7,0xff,0xe3,
0xff,0xdc,0xff,0xda,0xff,0xcc,0xff,0xc2,0xff,0xba,0xff,0xbf,0xff,0xb8,0xff,0xd0,
0xff,0xc7,0xff,0xd7,0xff,0xd1,0xff,0xcd,0xff,0xca,0xff,0xc0,0xff,0xb5,0xff,0xbb,
0xff,0xa6,0xff,0xbb,0xff,0xb5,0xff,0xbc,0xff,0xd4,0xff,0xbe,0xff,0xd9,0xff,0xc6,
0xff,0xc1,0xff,0xcc,0xff,0xb5,0xff,0xcb,0xff,0xc3,0xff,0xc3,0xff,0xca,0xff,0xb2,
0xff,0xc0,0xff,0xab,0xff,0xc7,0xff,0xc8,0xff,0xe9,0xff,0xef,0xff,0xf0,0xff,0xe6,
0xff,0xc1,0xff,0xae,0xff,0xa4,0xff,0x96,0xff,0xd5,0xff,0xcd,0xff,0x12,0x0,0xf,
0x0,0xf9,0xff,0xfc,0xff,0xad,0xff,0xae,0xff,0x9c,0xff,0x93,0xff,0xdb,0xff,0xd0,
0xff,0x10,0x0,0x15,0x0,0xf8,0xff,0x2,0x0,0xbb,0xff,0xb2,0xff,0xa5,0xff,0x92,
0xff,0xc7,0xff,0xc2,0xff,0xfa,0xff,0x4,0x0,0x12,0x0,0x19,0x0,0xf4,0xff,0xf5,
0xff,0xc1,0xff,0xc0,0xff,0xaf,0xff,0xb1,0xff,0xc7,0xff,0xce,0xff,0xe4,0xff,0xee,
0xff,0xe9,0xff,0xef,0xff,0xdb,0xff,0xd9,0xff,0xd1,0xff,0xce,0xff,0xc5,0xff,0xcf,
0xff,0xb9,0xff,0xcf,0xff,0xcc,0xff,0xdb,0xff,0xea,0xff,0xed,0xff,0xe4,0xff,0xe4,
0xff,0xc0,0xff,0xc1,0xff,0xab,0xff,0xab,0xff,0xc0,0xff,0xc4,0xff,0xee,0xff,0xf3,
0xff,0x6,0x0,0x4,0x0,0xf3,0xff,0xec,0xff,0xc9,0xff,0xc8,0xff,0xaa,0xff,0xaf,
0xff,0xb8,0xff,0xb1,0xff,0xe9,0xff,0xd3,0xff,0x5,0x0,0xf7,0xff,0xf2,0xff,0xf4,
0xff,0xd0,0xff,0xcd,0xff,0xc9,0xff,0xb9,0xff,0xea,0xff,0xd7,0xff,0xff,0xff,0xf6,
0xff,0xe5,0xff,0xea,0xff,0xc8,0xff,0xd1,0xff,0xdc,0xff,0xd9,0xff,0x8,0x0,0xfa,
0xff,0xd,0x0,0x2,0x0,0xe0,0xff,0xe8,0xff,0xcb,0xff,0xde,0xff,0xfd,0xff,0x3,
0x0,0x2b,0x0,0x27,0x0,0x8,0x0,0xc,0x0,0xc2,0xff,0xcb,0xff,0xbb,0xff,0xbf,
0xff,0xfe,0xff,0xfd,0xff,0x31,0x0,0x2f,0x0,0x13,0x0,0x12,0x0,0xd0,0xff,0xd0,
0xff,0xbc,0xff,0xbb,0xff,0xe5,0xff,0xe4,0xff,0xd,0x0,0x8,0x0,0xfd,0xff,0xf3,
0xff,0xca,0xff,0xc9,0xff,0xb4,0xff,0xc2,0xff,0xd9,0xff,0xe4,0xff,0xf,0x0,0x8,
0x0,0x15,0x0,0x4,0x0,0xd6,0xff,0xd0,0xff,0x8a,0xff,0x99,0xff,0x8a,0xff,0x9d,
0xff,0xdb,0xff,0xd9,0xff,0x14,0x0,0x1,0x0,0xeb,0xff,0xdf,0xff,0xa1,0xff,0xab,
0xff,0x9a,0xff,0xad,0xff,0xcf,0xff,0xd2,0xff,0xf0,0xff,0xe5,0xff,0xde,0xff,0xdb,
0xff,0xbe,0xff,0xc8,0xff,0xb7,0xff,0xba,0xff,0xd3,0xff,0xc8,0xff,0x7,0x0,0xfb,
0xff,0x20,0x0,0x26,0x0,0xff,0xff,0x16,0x0,0xd9,0xff,0xe5,0xff,0xe6,0xff,0xd4,
0xff,0xb,0x0,0xef,0xff,0x11,0x0,0xd,0x0,0xf7,0xff,0xa,0x0,0xea,0xff,0xf7,
0xff,0xfb,0xff,0xf2,0xff,0x10,0x0,0xfb,0xff,0x18,0x0,0xc,0x0,0x13,0x0,0x15,
0x0,0x0,0x0,0x7,0x0,0xf2,0xff,0xf0,0xff,0xfe,0xff,0xef,0xff,0xc,0x0,0xfb,
0xff,0xf9,0xff,0xf3,0xff,0xcf,0xff,0xd1,0xff,0xc2,0xff,0xc2,0xff,0xf0,0xff,0xe4,
0xff,0x19,0x0,0xc,0x0,0xf8,0xff,0xf8,0xff,0xb1,0xff,0xb9,0xff,0x95,0xff,0x95,
0xff,0xbf,0xff,0xb7,0xff,0x1,0x0,0xf5,0xff,0xb,0x0,0xfe,0xff,0xcd,0xff,0xca,
0xff,0x9d,0xff,0xa5,0xff,0xbd,0xff,0xc0,0xff,0x1,0x0,0xf0,0xff,0x7,0x0,0xf1,
0xff,0xcd,0xff,0xc9,0xff,0xb4,0xff,0xc1,0xff,0xe2,0xff,0xea,0xff,0xe,0x0,0xa,
0x0,0x1,0x0,0xfc,0xff,0xe0,0xff,0xe0,0xff,0xe9,0xff,0xe9,0xff,0x1a,0x0,0x1c,
0x0,0x35,0x0,0x3f,0x0,0x14,0x0,0x24,0x0,0xdc,0xff,0xe7,0xff,0xd3,0xff,0xcf,
0xff,0xb,0x0,0x4,0x0,0x48,0x0,0x49,0x0,0x33,0x0,0x3a,0x0,0xd5,0xff,0xdd,
0xff,0x9e,0xff,0xa3,0xff,0xd3,0xff,0xcf,0xff,0x31,0x0,0x23,0x0,0x39,0x0,0x35,
0x0,0xdb,0xff,0xeb,0xff,0x8e,0xff,0x9e,0xff,0xac,0xff,0xa7,0xff,0x9,0x0,0xf7,
0xff,0x2f,0x0,0x2b,0x0,0xf3,0xff,0x0,0x0,0xa7,0xff,0xa7,0xff,0xa9,0xff,0x8c,
0xff,0xed,0xff,0xcb,0xff,0x1b,0x0,0xe,0x0,0x1,0x0,0x2,0x0,0xc9,0xff,0xc3,
0xff,0xbf,0xff,0xac,0xff,0xf0,0xff,0xd9,0xff,0x22,0x0,0x13,0x0,0x25,0x0,0x1f,
0x0,0x6,0x0,0x6,0x0,0xf4,0xff,0xf4,0xff,0x4,0x0,0xff,0xff,0x25,0x0,0x1a,
0x0,0x3b,0x0,0x2f,0x0,0x3a,0x0,0x32,0x0,0x2b,0x0,0x2a,0x0,0x21,0x0,0x24,
0x0,0x22,0x0,0x20,0x0,0x24,0x0,0x17,0x0,0x1c,0x0,0xe,0x0,0x11,0x0,0x13,
0x0,0x11,0x0,0x1c,0x0,0x1a,0x0,0x1a,0x0,0x12,0x0,0x3,0x0,0xef,0xff,0xe6,
0xff,0xd6,0xff,0xe2,0xff,0xe9,0xff,0xfb,0xff,0x11,0x0,0x13,0x0,0x12,0x0,0x6,
0x0,0xe6,0xff,0xdf,0xff,0xc7,0xff,0xcb,0xff,0xd4,0xff,0xda,0xff,0xf4,0xff,0xf4,
0xff,0x1,0x0,0xf5,0xff,0xf2,0xff,0xe2,0xff,0xdf,0xff,0xdc,0xff,0xde,0xff,0xec,
0xff,0xec,0xff,0xfa,0xff,0xf9,0xff,0xf3,0xff,0xfb,0xff,0xe9,0xff,0xfe,0xff,0xf4,
0xff,0x9,0x0,0xc,0x0,0xe,0x0,0x14,0x0,0x8,0x0,0xa,0x0,0xb,0x0,0x6,
0x0,0x1b,0x0,0x17,0x0,0x33,0x0,0x31,0x0,0x45,0x0,0x42,0x0,0x43,0x0,0x3d,
0x0,0x2a,0x0,0x27,0x0,0xc,0x0,0x15,0x0,0xf,0x0,0x1d,0x0,0x38,0x0,0x35,
0x0,0x4c,0x0,0x39,0x0,0x25,0x0,0x1d,0x0,0xfb,0xff,0x6,0x0,0x3,0x0,0x10,
0x0,0x25,0x0,0x21,0x0,0x29,0x0,0x16,0x0,0xa,0x0,0xf7,0xff,0xee,0xff,0xe7,
0xff,0xe7,0xff,0xea,0xff,0xec,0xff,0xec,0xff,0x0,0x0,0xef,0xff,0x16,0x0,0xf9,
0xff,0x9,0x0,0xf6,0xff,0xe2,0xff,0xe2,0xff,0xd0,0xff,0xd4,0xff,0xe1,0xff,0xd9,
0xff,0xf9,0xff,0xeb,0xff,0x3,0x0,0xf9,0xff,0x2,0x0,0xfa,0xff,0x0,0x0,0xf6,
0xff,0xf8,0xff,0xf2,0xff,0xf7,0xff,0xf6,0xff,0xf,0x0,0x9,0x0,0x2a,0x0,0x1a,
0x0,0x26,0x0,0x16,0x0,0xf,0x0,0x10,0x0,0x9,0x0,0x16,0x0,0x1e,0x0,0x20,
0x0,0x3a,0x0,0x2e,0x0,0x46,0x0,0x43,0x0,0x3f,0x0,0x4f,0x0,0x2e,0x0,0x40,
0x0,0x1d,0x0,0x1c,0x0,0x18,0x0,0xc,0x0,0x23,0x0,0x1e,0x0,0x31,0x0,0x30,
0x0,0x33,0x0,0x2f,0x0,0x26,0x0,0x27,0x0,0x16,0x0,0x1c,0x0,0xe,0x0,0xf,
0x0,0xe,0x0,0x8,0x0,0xf,0x0,0x7,0x0,0xa,0x0,0x3,0x0,0x3,0x0,0xfa,
0xff,0x2,0x0,0xfd,0xff,0xc,0x0,0x9,0x0,0xf,0x0,0x2,0x0,0xfc,0xff,0xea,
0xff,0xea,0xff,0xe5,0xff,0xfa,0xff,0xfd,0xff,0x19,0x0,0xf,0x0,0x20,0x0,0x4,
0x0,0x5,0x0,0xef,0xff,0xe7,0xff,0xeb,0xff,0xef,0xff,0xfc,0xff,0x1f,0x0,0x1d,
0x0,0x4a,0x0,0x3a,0x0,0x44,0x0,0x36,0x0,0x16,0x0,0x11,0x0,0xfb,0xff,0xfc,
0xff,0x1e,0x0,0x18,0x0,0x53,0x0,0x42,0x0,0x56,0x0,0x48,0x0,0x2e,0x0,0x2d,
0x0,0x14,0x0,0x1d,0x0,0x27,0x0,0x2b,0x0,0x49,0x0,0x3d,0x0,0x4f,0x0,0x3c,
0x0,0x36,0x0,0x2f,0x0,0x1f,0x0,0x29,0x0,0x17,0x0,0x27,0x0,0x20,0x0,0x1f,
0x0,0x2c,0x0,0x1a,0x0,0x25,0x0,0x20,0x0,0x12,0x0,0x22,0x0,0xd,0x0,0x14,
0x0,0x13,0x0,0x5,0x0,0x12,0x0,0x4,0x0,0x4,0x0,0x8,0x0,0xfa,0xff,0x4,
0x0,0x7,0x0,0x3,0x0,0x1e,0x0,0x10,0x0,0x1f,0x0,0x19,0x0,0x9,0x0,0xb,
0x0,0xf4,0xff,0xfb,0xff,0xfe,0xff,0x3,0x0,0x24,0x0,0x22,0x0,0x42,0x0,0x3a,
0x0,0x3c,0x0,0x33,0x0,0x1d,0x0,0x18,0x0,0xc,0x0,0xc,0x0,0x22,0x0,0x1e,
0x0,0x43,0x0,0x38,0x0,0x41,0x0,0x3c,0x0,0x22,0x0,0x2c,0x0,0x1a,0x0,0x23,
0x0,0x3c,0x0,0x30,0x0,0x5d,0x0,0x43,0x0,0x4c,0x0,0x3f,0x0,0x18,0x0,0x24,
0x0,0xfe,0xff,0x11,0x0,0x1d,0x0,0x1d,0x0,0x49,0x0,0x38,0x0,0x43,0x0,0x35,
0x0,0x12,0x0,0xb,0x0,0xf8,0xff,0xf4,0xff,0x14,0x0,0x14,0x0,0x38,0x0,0x37,
0x0,0x2d,0x0,0x23,0x0,0xfb,0xff,0xf3,0xff,0xe2,0xff,0xe3,0xff,0xfe,0xff,0xfc,
0xff,0x25,0x0,0x19,0x0,0x28,0x0,0x1f,0x0,0x9,0x0,0x14,0x0,0xf1,0xff,0x3,
0x0,0xff,0xff,0xf8,0xff,0x23,0x0,0xa,0x0,0x36,0x0,0x28,0x0,0x2b,0x0,0x2b,
0x0,0x1a,0x0,0x1d,0x0,0x23,0x0,0x23,0x0,0x3b,0x0,0x39,0x0,0x3e,0x0,0x3d,
0x0,0x2c,0x0,0x25,0x0,0x29,0x0,0x17,0x0,0x3a,0x0,0x30,0x0,0x43,0x0,0x46,
0x0,0x2e,0x0,0x34,0x0,0x19,0x0,0x19,0x0,0x26,0x0,0x1d,0x0,0x42,0x0,0x3a,
0x0,0x48,0x0,0x4d,0x0,0x36,0x0,0x3f,0x0,0x23,0x0,0x23,0x0,0x1f,0x0,0x18,
0x0,0x2b,0x0,0x22,0x0,0x3a,0x0,0x37,0x0,0x3c,0x0,0x3a,0x0,0x2e,0x0,0x20,
0x0,0x21,0x0,0x7,0x0,0x25,0x0,0x11,0x0,0x34,0x0,0x2d,0x0,0x3a,0x0,0x35,
0x0,0x29,0x0,0x1b,0x0,0x12,0x0,0xff,0xff,0x15,0x0,0xb,0x0,0x35,0x0,0x2e,
0x0,0x43,0x0,0x32,0x0,0x27,0x0,0x12,0x0,0x12,0x0,0x0,0x0,0x27,0x0,0x19,
0x0,0x48,0x0,0x41,0x0,0x4a,0x0,0x49,0x0,0x36,0x0,0x34,0x0,0x2a,0x0,0x24,
0x0,0x30,0x0,0x25,0x0,0x40,0x0,0x33,0x0,0x4b,0x0,0x48,0x0,0x4b,0x0,0x51,
0x0,0x45,0x0,0x48,0x0,0x44,0x0,0x3e,0x0,0x4c,0x0,0x44,0x0,0x53,0x0,0x4e,
0x0,0x47,0x0,0x4b,0x0,0x33,0x0,0x3e,0x0,0x32,0x0,0x37,0x0,0x3e,0x0,0x36,
0x0,0x46,0x0,0x3d,0x0,0x4d,0x0,0x4e,0x0,0x4d,0x0,0x54,0x0,0x33,0x0,0x32,
0x0,0xe,0x0,0x3,0x0,0x12,0x0,0x9,0x0,0x48,0x0,0x48,0x0,0x69,0x0,0x6e,
0x0,0x46,0x0,0x48,0x0,0x4,0x0,0xfb,0xff,0xe1,0xff,0xd4,0xff,0x1,0x0,0xfe,
0xff,0x52,0x0,0x56,0x0,0x7d,0x0,0x7f,0x0,0x43,0x0,0x45,0x0,0xe7,0xff,0xe5,
0xff,0xd9,0xff,0xd1,0xff,0x28,0x0,0x21,0x0,0x74,0x0,0x74,0x0,0x6d,0x0,0x6d,
0x0,0x35,0x0,0x29,0x0,0x1e,0x0,0x9,0x0,0x3d,0x0,0x33,0x0,0x66,0x0,0x6f,
0x0,0x66,0x0,0x73,0x0,0x3f,0x0,0x3c,0x0,0x23,0x0,0x11,0x0,0x30,0x0,0x23,
0x0,0x4f,0x0,0x55,0x0,0x5a,0x0,0x6c,0x0,0x47,0x0,0x57,0x0,0x30,0x0,0x2f,
0x0,0x27,0x0,0x15,0x0,0x25,0x0,0x17,0x0,0x29,0x0,0x2d,0x0,0x39,0x0,0x42,
0x0,0x46,0x0,0x47,0x0,0x3c,0x0,0x35,0x0,0x22,0x0,0x1c,0x0,0x16,0x0,0x1a,
0x0,0x2d,0x0,0x34,0x0,0x49,0x0,0x4a,0x0,0x3a,0x0,0x35,0x0,0xc,0x0,0x3,
0x0,0x3,0x0,0xfd,0xff,0x39,0x0,0x3c,0x0,0x6e,0x0,0x6a,0x0,0x59,0x0,0x48,
0x0,0x11,0x0,0x7,0x0,0xfc,0xff,0x3,0x0,0x3c,0x0,0x40,0x0,0x84,0x0,0x74,
0x0,0x81,0x0,0x67,0x0,0x3e,0x0,0x2e,0x0,0x9,0x0,0xfc,0xff,0x1d,0x0,0xb,
0x0,0x61,0x0,0x5b,0x0,0x87,0x0,0x90,0x0,0x5f,0x0,0x5c,0x0,0x12,0x0,0xfb,
0xff,0xf7,0xff,0xe3,0xff,0x2d,0x0,0x2b,0x0,0x6c,0x0,0x6f,0x0,0x5d,0x0,0x55,
0x0,0x6,0x0,0xfc,0xff,0xc3,0xff,0xc5,0xff,0xe2,0xff,0xe3,0xff,0x3d,0x0,0x33,
0x0,0x5e,0x0,0x59,0x0,0x21,0x0,0x27,0x0,0xe5,0xff,0xe9,0xff,0xf2,0xff,0xf2,
0xff,0x22,0x0,0x28,0x0,0x34,0x0,0x3c,0x0,0x1d,0x0,0x1d,0x0,0x8,0x0,0x6,
0x0,0x15,0x0,0x1f,0x0,0x32,0x0,0x3b,0x0,0x3f,0x0,0x36,0x0,0x37,0x0,0x2b,
0x0,0x35,0x0,0x33,0x0,0x49,0x0,0x48,0x0,0x5c,0x0,0x56,0x0,0x57,0x0,0x54,
0x0,0x4e,0x0,0x4e,0x0,0x57,0x0,0x52,0x0,0x69,0x0,0x60,0x0,0x6f,0x0,0x6e,
0x0,0x62,0x0,0x65,0x0,0x51,0x0,0x4b,0x0,0x54,0x0,0x47,0x0,0x67,0x0,0x61,
0x0,0x6a,0x0,0x6b,0x0,0x47,0x0,0x46,0x0,0x12,0x0,0xf,0x0,0x4,0x0,0x3,
0x0,0x31,0x0,0x32,0x0,0x5e,0x0,0x63,0x0,0x4f,0x0,0x57,0x0,0x1a,0x0,0x1e,
0x0,0x1,0x0,0xfb,0xff,0x1c,0x0,0x14,0x0,0x40,0x0,0x41,0x0,0x41,0x0,0x49,
0x0,0x23,0x0,0x2b,0x0,0xe,0x0,0x12,0x0,0x25,0x0,0x23,0x0,0x54,0x0,0x4a,
0x0,0x62,0x0,0x53,0x0,0x41,0x0,0x35,0x0,0x24,0x0,0x1f,0x0,0x2d,0x0,0x2d,
0x0,0x4a,0x0,0x47,0x0,0x59,0x0,0x4d,0x0,0x52,0x0,0x3e,0x0,0x42,0x0,0x31,
0x0,0x3e,0x0,0x38,0x0,0x56,0x0,0x59,0x0,0x79,0x0,0x7b,0x0,0x7d,0x0,0x6e,
0x0,0x4f,0x0,0x33,0x0,0x22,0x0,0x10,0x0,0x32,0x0,0x36,0x0,0x6a,0x0,0x7a,
0x0,0x87,0x0,0x8a,0x0,0x66,0x0,0x56,0x0,0x2a,0x0,0x1a,0x0,0x14,0x0,0x16,
0x0,0x35,0x0,0x45,0x0,0x54,0x0,0x60,0x0,0x3b,0x0,0x38,0x0,0xc,0x0,0xfc,
0xff,0x0,0x0,0xfe,0xff,0x1b,0x0,0x33,0x0,0x32,0x0,0x4d,0x0,0x34,0x0,0x34,
0x0,0x2d,0x0,0x12,0x0,0x1d,0x0,0x7,0x0,0xc,0x0,0x12,0x0,0x1c,0x0,0x2a,
0x0,0x44,0x0,0x41,0x0,0x4d,0x0,0x3f,0x0,0x32,0x0,0x22,0x0,0x23,0x0,0x15,
0x0,0x34,0x0,0x33,0x0,0x4d,0x0,0x4e,0x0,0x4d,0x0,0x3b,0x0,0x34,0x0,0x1a,
0x0,0x24,0x0,0x1c,0x0,0x33,0x0,0x3f,0x0,0x55,0x0,0x5f,0x0,0x6c,0x0,0x65,
0x0,0x60,0x0,0x4f,0x0,0x38,0x0,0x2e,0x0,0x1e,0x0,0x19,0x0,0x25,0x0,0x28,
0x0,0x3e,0x0,0x47,0x0,0x4a,0x0,0x4a,0x0,0x39,0x0,0x30,0x0,0x21,0x0,0x24,
0x0,0x20,0x0,0x30,0x0,0x33,0x0,0x38,0x0,0x3f,0x0,0x2d,0x0,0x2d,0x0,0x1c,
0x0,0x12,0x0,0x15,0x0,0x14,0x0,0x1e,0x0,0x23,0x0,0x26,0x0,0x1e,0x0,0x1f,
0x0,0x10,0x0,0x14,0x0,0x19,0x0,0x1f,0x0,0x2e,0x0,0x33,0x0,0x2d,0x0,0x31,
0x0,0x13,0x0,0x17,0x0,0x5,0x0,0x5,0x0,0x13,0x0,0xd,0x0,0x28,0x0,0x26,
0x0,0x35,0x0,0x37,0x0,0x34,0x0,0x32,0x0,0x22,0x0,0x22,0x0,0x18,0x0,0x18,
0x0,0x2a,0x0,0x20,0x0,0x42,0x0,0x2d,0x0,0x41,0x0,0x2b,0x0,0x2b,0x0,0x21,
0x0,0x1d,0x0,0x22,0x0,0x2b,0x0,0x2e,0x0,0x43,0x0,0x3e,0x0,0x50,0x0,0x44,
0x0,0x4b,0x0,0x36,0x0,0x2a,0x0,0x19,0x0,0xf8,0xff,0xfc,0xff,0xea,0xff,0xf8,
0xff,0x16,0x0,0x1c,0x0,0x47,0x0,0x45,0x0,0x3c,0x0,0x3b,0x0,0x2,0x0,0x9,
0x0,0xe8,0xff,0xf0,0xff,0xa,0x0,0xc,0x0,0x29,0x0,0x2c,0x0,0x1c,0x0,0x21,
0x0,0x8,0x0,0x8,0x0,0x14,0x0,0x12,0x0,0x2e,0x0,0x33,0x0,0x32,0x0,0x3d,
0x0,0x24,0x0,0x2c,0x0,0x25,0x0,0x25,0x0,0x3a,0x0,0x2f,0x0,0x38,0x0,0x2a,
0x0,0x18,0x0,0x10,0x0,0xd,0x0,0xa,0x0,0x2d,0x0,0x30,0x0,0x52,0x0,0x5b,
0x0,0x55,0x0,0x5e,0x0,0x3d,0x0,0x3f,0x0,0x21,0x0,0x17,0x0,0x18,0x0,0x5,
0x0,0x2c,0x0,0x22,0x0,0x51,0x0,0x58,0x0,0x61,0x0,0x68,0x0,0x43,0x0,0x40,
0x0,0x17,0x0,0xe,0x0,0xe,0x0,0x4,0x0,0x2e,0x0,0x24,0x0,0x4c,0x0,0x44,
0x0,0x44,0x0,0x48,0x0,0x22,0x0,0x2e,0x0,0xc,0x0,0xa,0x0,0x13,0x0,0x3,
0x0,0x27,0x0,0x20,0x0,0x2c,0x0,0x32,0x0,0x1d,0x0,0x24,0x0,0xe,0x0,0xc,
0x0,0xe,0x0,0x4,0x0,0x10,0x0,0x6,0x0,0x6,0x0,0x7,0x0,0xfa,0xff,0x8,
0x0,0x1,0x0,0x8,0x0,0x14,0x0,0x3,0x0,0x19,0x0,0x2,0x0,0xe,0x0,0xc,
0x0,0x7,0x0,0x12,0x0,0x8,0x0,0x9,0x0,0xc,0x0,0xfd,0xff,0x10,0x0,0x4,
0x0,0x14,0x0,0x1d,0x0,0x25,0x0,0x34,0x0,0x3e,0x0,0x3e,0x0,0x3f,0x0,0x3a,
0x0,0x1e,0x0,0x2b,0x0,0xa,0x0,0x22,0x0,0x26,0x0,0x2f,0x0,0x4d,0x0,0x44,
0x0,0x47,0x0,0x47,0x0,0x20,0x0,0x34,0x0,0x13,0x0,0x23,0x0,0x30,0x0,0x2f,
0x0,0x4b,0x0,0x46,0x0,0x43,0x0,0x43,0x0,0x20,0x0,0x26,0x0,0x5,0x0,0xa,
0x0,0x8,0x0,0x6,0x0,0x24,0x0,0x22,0x0,0x3a,0x0,0x3c,0x0,0x2e,0x0,0x33,
0x0,0x8,0x0,0x10,0x0,0xf5,0xff,0xf3,0xff,0xe,0x0,0xfb,0xff,0x29,0x0,0x1b,
0x0,0x17,0x0,0x1c,0x0,0xf4,0xff,0xfc,0xff,0xf6,0xff,0xf0,0xff,0x13,0x0,0x8,
0x0,0x18,0x0,0x1c,0x0,0x3,0x0,0x13,0x0,0xf7,0xff,0x0,0x0,0x5,0x0,0x3,
0x0,0x17,0x0,0x13,0x0,0x13,0x0,0x14,0x0,0x5,0x0,0xc,0x0,0xb,0x0,0x11,
0x0,0x1f,0x0,0x22,0x0,0x27,0x0,0x2e,0x0,0x1e,0x0,0x28,0x0,0x12,0x0,0x1b,
0x0,0x12,0x0,0x1a,0x0,0x1b,0x0,0x22,0x0,0x1a,0x0,0x20,0x0,0xd,0x0,0x14,
0x0,0xc,0x0,0x17,0x0,0x22,0x0,0x31,0x0,0x35,0x0,0x40,0x0,0x27,0x0,0x2a,
0x0,0x4,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x2a,0x0,0x27,0x0,0x55,0x0,0x49,
0x0,0x47,0x0,0x43,0x0,0xd,0x0,0x18,0x0,0xe6,0xff,0xf5,0xff,0xfa,0xff,0xfd,
0xff,0x29,0x0,0x21,0x0,0x3b,0x0,0x36,0x0,0x22,0x0,0x1f,0x0,0xf8,0xff,0xf8,
0xff,0xe8,0xff,0xf3,0xff,0x6,0x0,0x14,0x0,0x30,0x0,0x34,0x0,0x2e,0x0,0x2b,
0x0,0x2,0x0,0x2,0x0,0xea,0xff,0xea,0xff,0xb,0x0,0x5,0x0,0x41,0x0,0x37,
0x0,0x48,0x0,0x43,0x0,0x16,0x0,0x15,0x0,0xe5,0xff,0xe6,0xff,0xf0,0xff,0xf2,
0xff,0x26,0x0,0x25,0x0,0x43,0x0,0x42,0x0,0x28,0x0,0x2b,0x0,0xf6,0xff,0xfa,
0xff,0xdf,0xff,0xe4,0xff,0xf8,0xff,0xfb,0xff,0x27,0x0,0x24,0x0,0x3d,0x0,0x3a,
0x0,0x26,0x0,0x2b,0x0,0xfd,0xff,0x8,0x0,0xee,0xff,0xf7,0xff,0xd,0x0,0x7,
0x0,0x39,0x0,0x20,0x0,0x42,0x0,0x2e,0x0,0x27,0x0,0x28,0x0,0xa,0x0,0x17,
0x0,0x4,0x0,0xa,0x0,0x12,0x0,0xd,0x0,0x25,0x0,0x1d,0x0,0x29,0x0,0x26,
0x0,0x18,0x0,0x1a,0x0,0xfe,0xff,0x7,0x0,0xf8,0xff,0x1,0x0,0x11,0x0,0xe,
0x0,0x2b,0x0,0x21,0x0,0x26,0x0,0x24,0x0,0x7,0x0,0xd,0x0,0xf1,0xff,0xf7,
0xff,0xfb,0xff,0xfb,0xff,0x18,0x0,0x11,0x0,0x21,0x0,0x1c,0x0,0xb,0x0,0xd,
0x0,0xf6,0xff,0xfa,0xff,0xf7,0xff,0xfb,0xff,0x1,0x0,0x5,0x0,0x3,0x0,0x7,
0x0,0xff,0xff,0x4,0x0,0xfd,0xff,0x2,0x0,0x2,0x0,0xff,0xff,0x9,0x0,0xfd,
0xff,0xa,0x0,0x1,0x0,0xa,0x0,0xb,0x0,0xe,0x0,0x13,0x0,0xe,0x0,0x10,
0x0,0x7,0x0,0x7,0x0,0x8,0x0,0x0,0x0,0x17,0x0,0x7,0x0,0x27,0x0,0x17,
0x0,0x20,0x0,0x1b,0x0,0x5,0x0,0xa,0x0,0xfa,0xff,0xff,0xff,0x12,0x0,0x10,
0x0,0x2b,0x0,0x2b,0x0,0x21,0x0,0x28,0x0,0x3,0x0,0xc,0x0,0x4,0x0,0x1,
0x0,0x29,0x0,0x1d,0x0,0x47,0x0,0x43,0x0,0x3d,0x0,0x44,0x0,0x21,0x0,0x21,
0x0,0x18,0x0,0x9,0x0,0x2a,0x0,0x17,0x0,0x3c,0x0,0x33,0x0,0x36,0x0,0x3b,
0x0,0x21,0x0,0x27,0x0,0x17,0x0,0xe,0x0,0x17,0x0,0x7,0x0,0x16,0x0,0x12,
0x0,0x13,0x0,0x1b,0x0,0xd,0x0,0x14,0x0,0x2,0x0,0x3,0x0,0xfb,0xff,0xfc,
0xff,0x0,0x0,0xff,0xff,0x8,0x0,0x2,0x0,0x3,0x0,0xfd,0xff,0xf0,0xff,0xef,
0xff,0xe0,0xff,0xe2,0xff,0xe4,0xff,0xe4,0xff,0xf6,0xff,0xf0,0xff,0x0,0x0,0xf9,
0xff,0xf3,0xff,0xf5,0xff,0xde,0xff,0xe5,0xff,0xd9,0xff,0xdf,0xff,0xea,0xff,0xed,
0xff,0x5,0x0,0x0,0x0,0x11,0x0,0xa,0x0,0x5,0x0,0x9,0x0,0xfb,0xff,0x8,
0x0,0x9,0x0,0x11,0x0,0x23,0x0,0x20,0x0,0x39,0x0,0x2a,0x0,0x3a,0x0,0x2d,
0x0,0x28,0x0,0x25,0x0,0x1d,0x0,0x24,0x0,0x2d,0x0,0x31,0x0,0x43,0x0,0x3a,
0x0,0x45,0x0,0x38,0x0,0x35,0x0,0x32,0x0,0x2a,0x0,0x32,0x0,0x2e,0x0,0x38,
0x0,0x2b,0x0,0x2d,0x0,0x18,0x0,0x16,0x0,0xd,0x0,0x16,0x0,0x13,0x0,0x23,
0x0,0x18,0x0,0x1a,0x0,0x8,0x0,0xfe,0xff,0xed,0xff,0xec,0xff,0xeb,0xff,0xf9,
0xff,0x7,0x0,0x15,0x0,0x15,0x0,0x17,0x0,0x5,0x0,0xfd,0xff,0xf6,0xff,0xef,
0xff,0x1,0x0,0x2,0x0,0x15,0x0,0x22,0x0,0xf,0x0,0x23,0x0,0xf3,0xff,0xfc,
0xff,0xf1,0xff,0xe5,0xff,0x17,0x0,0x5,0x0,0x38,0x0,0x38,0x0,0x34,0x0,0x44,
0x0,0x18,0x0,0x22,0x0,0x9,0x0,0x4,0x0,0x15,0x0,0xc,0x0,0x29,0x0,0x21,
0x0,0x29,0x0,0x24,0x0,0x14,0x0,0x14,0x0,0x0,0x0,0xff,0xff,0xfc,0xff,0xf5,
0xff,0x2,0x0,0xfb,0xff,0x3,0x0,0xff,0xff,0xf8,0xff,0xf2,0xff,0xe5,0xff,0xdf,
0xff,0xda,0xff,0xdc,0xff,0xe7,0xff,0xec,0xff,0x3,0x0,0xfa,0xff,0x3,0x0,0xf1,
0xff,0xdb,0xff,0xd6,0xff,0xbf,0xff,0xc5,0xff,0xdb,0xff,0xd7,0xff,0xe,0x0,0x0,
0x0,0xf,0x0,0x12,0x0,0xda,0xff,0xf1,0xff,0xbd,0xff,0xc9,0xff,0xdd,0xff,0xd5,
0xff,0xe,0x0,0x9,0x0,0x18,0x0,0x1d,0x0,0xf2,0xff,0xfe,0xff,0xd3,0xff,0xe2,
0xff,0xef,0xff,0xf5,0xff,0x2f,0x0,0x27,0x0,0x49,0x0,0x41,0x0,0x27,0x0,0x2e,
0x0,0x8,0x0,0x18,0x0,0x2b,0x0,0x2b,0x0,0x6a,0x0,0x55,0x0,0x72,0x0,0x63,
0x0,0x44,0x0,0x44,0x0,0x24,0x0,0x25,0x0,0x2f,0x0,0x2a,0x0,0x4b,0x0,0x40,
0x0,0x51,0x0,0x3e,0x0,0x2f,0x0,0x1e,0x0,0xf6,0xff,0xf7,0xff,0xd5,0xff,0xe3,
0xff,0xe1,0xff,0xe6,0xff,0xfe,0xff,0xf0,0xff,0xf8,0xff,0xea,0xff,0xc6,0xff,0xcb,
0xff,0x99,0xff,0xa7,0xff,0xa1,0xff,0xaa,0xff,0xce,0xff,0xcf,0xff,0xe9,0xff,0xe3,
0xff,0xd2,0xff,0xcf,0xff,0xad,0xff,0xb5,0xff,0xb0,0xff,0xbc,0xff,0xd6,0xff,0xda,
0xff,0xed,0xff,0xe9,0xff,0xe0,0xff,0xdc,0xff,0xc5,0xff,0xc8,0xff,0xcc,0xff,0xcf,
0xff,0x5,0x0,0xfb,0xff,0x3c,0x0,0x2b,0x0,0x32,0x0,0x2b,0x0,0xfc,0xff,0x0,
0x0,0xea,0xff,0xee,0xff,0x1d,0x0,0x18,0x0,0x5e,0x0,0x53,0x0,0x69,0x0,0x61,
0x0,0x42,0x0,0x42,0x0,0x25,0x0,0x28,0x0,0x37,0x0,0x34,0x0,0x57,0x0,0x50,
0x0,0x56,0x0,0x51,0x0,0x2f,0x0,0x29,0x0,0x9,0x0,0xf9,0xff,0x7,0x0,0xf7,
0xff,0x1a,0x0,0x1c,0x0,0x17,0x0,0x26,0x0,0xfa,0xff,0xfd,0xff,0xe2,0xff,0xd4,
0xff,0xd5,0xff,0xcf,0xff,0xca,0xff,0xdc,0xff,0xc1,0xff,0xd9,0xff,0xc5,0xff,0xcf,
0xff,0xcf,0xff,0xd0,0xff,0xcb,0xff,0xd5,0xff,0xbc,0xff,0xca,0xff,0xb2,0xff,0xba,
0xff,0xb1,0xff,0xb7,0xff,0xbc,0xff,0xc8,0xff,0xd7,0xff,0xe8,0xff,0xf3,0xff,0xff,
0xff,0xee,0xff,0xf1,0xff,0xd1,0xff,0xd3,0xff,0xd3,0xff,0xdc,0xff,0xb,0x0,0x15,
0x0,0x46,0x0,0x47,0x0,0x49,0x0,0x42,0x0,0x20,0x0,0x19,0x0,0x8,0x0,0x8,
0x0,0x29,0x0,0x28,0x0,0x68,0x0,0x5c,0x0,0x7c,0x0,0x72,0x0,0x43,0x0,0x4b,
0x0,0xfa,0xff,0x8,0x0,0xf9,0xff,0xf5,0xff,0x3a,0x0,0x24,0x0,0x5e,0x0,0x50,
0x0,0x2e,0x0,0x36,0x0,0xdf,0xff,0xed,0xff,0xc2,0xff,0xc7,0xff,0xe4,0xff,0xe4,
0xff,0x10,0x0,0xc,0x0,0xc,0x0,0xa,0x0,0xd6,0xff,0xe1,0xff,0xa6,0xff,0xb4,
0xff,0xab,0xff,0xab,0xff,0xd7,0xff,0xcd,0xff,0xec,0xff,0xeb,0xff,0xc8,0xff,0xda,
0xff,0x96,0xff,0xb1,0xff,0x98,0xff,0xa4,0xff,0xc3,0xff,0xbd,0xff,0xde,0xff,0xd6,
0xff,0xd3,0xff,0xd4,0xff,0xc3,0xff,0xce,0xff,0xcc,0xff,0xd7,0xff,0xe3,0xff,0xe2,
0xff,0xf0,0xff,0xe9,0xff,0xfb,0xff,0xf6,0xff,0xb,0x0,0xa,0x0,0x1a,0x0,0x17,
0x0,0x1f,0x0,0x18,0x0,0x1e,0x0,0x18,0x0,0x24,0x0,0x22,0x0,0x34,0x0,0x2f,
0x0,0x39,0x0,0x31,0x0,0x25,0x0,0x26,0x0,0x16,0x0,0x20,0x0,0x25,0x0,0x29,
0x0,0x35,0x0,0x2d,0x0,0x1c,0x0,0x15,0x0,0xe4,0xff,0xec,0xff,0xcc,0xff,0xdc,
0xff,0xeb,0xff,0xf6,0xff,0xa,0x0,0xe,0x0,0xf4,0xff,0xfb,0xff,0xc4,0xff,0xcf,
0xff,0xae,0xff,0xac,0xff,0xb9,0xff,0xa7,0xff,0xc5,0xff,0xbd,0xff,0xca,0xff,0xd7,
0xff,0xcf,0xff,0xe0,0xff,0xc7,0xff,0xd0,0xff,0xab,0xff,0xa9,0xff,0x9e,0xff,0x9a,
0xff,0xca,0xff,0xcd,0xff,0xd,0x0,0xf,0x0,0xe,0x0,0x8,0x0,0xc1,0xff,0xba,
0xff,0x94,0xff,0x92,0xff,0xd8,0xff,0xdc,0xff,0x40,0x0,0x43,0x0,0x4f,0x0,0x48,
0x0,0x0,0x0,0xf3,0xff,0xc0,0xff,0xb7,0xff,0xd6,0xff,0xd5,0xff,0x22,0x0,0x20,
0x0,0x4b,0x0,0x46,0x0,0x2b,0x0,0x27,0x0,0xec,0xff,0xeb,0xff,0xcf,0xff,0xd1,
0xff,0xea,0xff,0xeb,0xff,0xf,0x0,0xa,0x0,0x9,0x0,0x4,0x0,0xdf,0xff,0xe3,
0xff,0xbc,0xff,0xc6,0xff,0xbb,0xff,0xbd,0xff,0xd2,0xff,0xc7,0xff,0xdc,0xff,0xd5,
0xff,0xc0,0xff,0xc8,0xff,0x96,0xff,0x9d,0xff,0x8b,0xff,0x80,0xff,0xa8,0xff,0x96,
0xff,0xbc,0xff,0xb7,0xff,0xad,0xff,0xbb,0xff,0xa8,0xff,0xb8,0xff,0xd1,0xff,0xc9,
0xff,0xec,0xff,0xd2,0xff,0xc9,0xff,0xc2,0xff,0xb0,0xff,0xc4,0xff,0xe9,0xff,0xf9,
0xff,0x39,0x0,0x27,0x0,0x3a,0x0,0x1b,0x0,0x9,0x0,0x6,0x0,0x7,0x0,0x1d,
0x0,0x3b,0x0,0x41,0x0,0x59,0x0,0x43,0x0,0x40,0x0,0x2d,0x0,0x15,0x0,0x1f,
0x0,0x7,0x0,0x1c,0x0,0x20,0x0,0x21,0x0,0x3b,0x0,0x2d,0x0,0x27,0x0,0x25,
0x0,0xe1,0xff,0xf1,0xff,0xa6,0xff,0xbf,0xff,0xb5,0xff,0xc6,0xff,0xf1,0xff,0xf0,
0xff,0x6,0x0,0xfd,0xff,0xd3,0xff,0xd3,0xff,0x8c,0xff,0x99,0xff,0x7b,0xff,0x82,
0xff,0xad,0xff,0x9e,0xff,0xdb,0xff,0xc7,0xff,0xc2,0xff,0xc4,0xff,0x7b,0xff,0x8a,
0xff,0x63,0xff,0x63,0xff,0x99,0xff,0x86,0xff,0xd1,0xff,0xbc,0xff,0xc1,0xff,0xb9,
0xff,0x96,0xff,0x99,0xff,0xa0,0xff,0xa5,0xff,0xd2,0xff,0xd5,0xff,0xeb,0xff,0xec,
0xff,0xeb,0xff,0xe7,0xff,0xf3,0xff,0xee,0xff,0x1,0x0,0xfd,0xff,0x6,0x0,0x7,
0x0,0x11,0x0,0x19,0x0,0x29,0x0,0x32,0x0,0x36,0x0,0x39,0x0,0x2c,0x0,0x2c,
0x0,0x1b,0x0,0x1c,0x0,0xe,0x0,0x15,0x0,0xc,0x0,0x17,0x0,0x1b,0x0,0x1e,
0x0,0x26,0x0,0x1e,0x0,0x19,0x0,0x10,0x0,0x8,0x0,0x0,0x0,0xa,0x0,0x6,
0x0,0x14,0x0,0x18,0x0,0x7,0x0,0xb,0x0,0xe7,0xff,0xdf,0xff,0xda,0xff,0xcd,
0xff,0xe5,0xff,0xe4,0xff,0xe8,0xff,0xf7,0xff,0xdc,0xff,0xe8,0xff,0xd9,0xff,0xd0,
0xff,0xd9,0xff,0xc5,0xff,0xc6,0xff,0xbe,0xff,0xb1,0xff,0xb6,0xff,0xbc,0xff,0xba,
0xff,0xd4,0xff,0xc8,0xff,0xd5,0xff,0xcd,0xff,0xcc,0xff,0xcc,0xff,0xd2,0xff,0xd5,
0xff,0xe0,0xff,0xdd,0xff,0xe9,0xff,0xdf,0xff,0xf0,0xff,0xe6,0xff,0xf0,0xff,0xed,
0xff,0xee,0xff,0xef,0xff,0xf6,0xff,0xf3,0xff,0x8,0x0,0xfc,0xff,0x15,0x0,0x9,
0x0,0x11,0x0,0xe,0x0,0xfd,0xff,0x3,0x0,0xe8,0xff,0xf2,0xff,0xe3,0xff,0xe9,
0xff,0xf3,0xff,0xef,0xff,0xc,0x0,0x3,0x0,0xa,0x0,0xe,0x0,0xee,0xff,0x1,
0x0,0xdd,0xff,0xed,0xff,0xe5,0xff,0xe5,0xff,0xeb,0xff,0xe4,0xff,0xe5,0xff,0xe6,
0xff,0xe2,0xff,0xe8,0xff,0xe8,0xff,0xea,0xff,0xe3,0xff,0xe3,0xff,0xc9,0xff,0xc7,
0xff,0xb8,0xff,0xb3,0xff,0xca,0xff,0xcd,0xff,0xe9,0xff,0xf1,0xff,0xeb,0xff,0xe6,
0xff,0xcc,0xff,0xbe,0xff,0xb7,0xff,0xb5,0xff,0xcb,0xff,0xd3,0xff,0xef,0xff,0xe9,
0xff,0xf5,0xff,0xdc,0xff,0xd8,0xff,0xc6,0xff,0xc7,0xff,0xce,0xff,0xe6,0xff,0xf4,
0xff,0x13,0x0,0x11,0x0,0x16,0x0,0x9,0x0,0xfc,0xff,0xf3,0xff,0xf5,0xff,0xf7,
0xff,0x4,0x0,0xa,0x0,0xa,0x0,0x14,0x0,0xb,0x0,0x1a,0x0,0x14,0x0,0x23,
0x0,0x19,0x0,0x24,0x0,0x11,0x0,0x1b,0x0,0x8,0x0,0x12,0x0,0x3,0x0,0xb,
0x0,0xf6,0xff,0x3,0x0,0xe6,0xff,0xf8,0xff,0xe7,0xff,0xec,0xff,0xf3,0xff,0xea,
0xff,0xf3,0xff,0xee,0xff,0xe2,0xff,0xe5,0xff,0xd2,0xff,0xd2,0xff,0xca,0xff,0xbb,
0xff,0xc5,0xff,0xac,0xff,0xc6,0xff,0xb9,0xff,0xd5,0xff,0xd7,0xff,0xdf,0xff,0xda,
0xff,0xd8,0xff,0xc4,0xff,0xcc,0xff,0xba,0xff,0xcc,0xff,0xc5,0xff,0xd2,0xff,0xd3,
0xff,0xdc,0xff,0xde,0xff,0xf7,0xff,0xf0,0xff,0x11,0x0,0xfc,0xff,0xfc,0xff,0xeb,
0xff,0xce,0xff,0xcd,0xff,0xcc,0xff,0xd8,0xff,0x0,0x0,0xb,0x0,0x2b,0x0,0x2a,
0x0,0x24,0x0,0x1c,0x0,0x3,0x0,0x0,0x0,0xf2,0xff,0xf6,0xff,0x3,0x0,0xb,
0x0,0x2a,0x0,0x33,0x0,0x3e,0x0,0x42,0x0,0x19,0x0,0x1c,0x0,0xe2,0xff,0xe9,
0xff,0xe4,0xff,0xea,0xff,0x16,0x0,0x18,0x0,0x28,0x0,0x28,0x0,0x3,0x0,0xfc,
0xff,0xd2,0xff,0xc8,0xff,0xba,0xff,0xbb,0xff,0xbf,0xff,0xc7,0xff,0xd0,0xff,0xce,
0xff,0xdb,0xff,0xcb,0xff,0xd1,0xff,0xbf,0xff,0xb2,0xff,0xb3,0xff,0xa7,0xff,0xb5,
0xff,0xc2,0xff,0xc1,0xff,0xd4,0xff,0xc5,0xff,0xc6,0xff,0xc0,0xff,0xb8,0xff,0xc5,
0xff,0xbd,0xff,0xd3,0xff,0xcf,0xff,0xd9,0xff,0xe3,0xff,0xdd,0xff,0xf4,0xff,0xf0,
0xff,0xfb,0xff,0x3,0x0,0xf8,0xff,0xff,0xff,0xf6,0xff,0xf9,0xff,0x6,0x0,0x9,
0x0,0x1b,0x0,0x1d,0x0,0x1c,0x0,0x1c,0x0,0x15,0x0,0x10,0x0,0x15,0x0,0x14,
0x0,0x1a,0x0,0x28,0x0,0x2a,0x0,0x34,0x0,0x3b,0x0,0x2b,0x0,0x2c,0x0,0x1a,
0x0,0x2,0x0,0xa,0x0,0xed,0xff,0xff,0xff,0xfe,0xff,0x3,0x0,0x15,0x0,0x7,
0x0,0xd,0x0,0xf9,0xff,0xed,0xff,0xe3,0xff,0xd3,0xff,0xd2,0xff,0xc6,0xff,0xc4,
0xff,0xc5,0xff,0xbc,0xff,0xd0,0xff,0xbd,0xff,0xd5,0xff,0xc5,0xff,0xc9,0xff,0xc9,
0xff,0xbe,0xff,0xbf,0xff,0xc2,0xff,0xb3,0xff,0xcc,0xff,0xba,0xff,0xcd,0xff,0xc9,
0xff,0xc5,0xff,0xc9,0xff,0xbe,0xff,0xbe,0xff,0xc0,0xff,0xbc,0xff,0xd4,0xff,0xcf,
0xff,0xf0,0xff,0xeb,0xff,0xf8,0xff,0xf7,0xff,0xe1,0xff,0xea,0xff,0xcd,0xff,0xd9,
0xff,0xd8,0xff,0xd6,0xff,0xf6,0xff,0xec,0xff,0xf,0x0,0x12,0x0,0x17,0x0,0x27,
0x0,0x12,0x0,0x16,0x0,0xa,0x0,0xf9,0xff,0x6,0x0,0xf7,0xff,0xa,0x0,0x14,
0x0,0x13,0x0,0x2f,0x0,0x18,0x0,0x27,0x0,0x13,0x0,0x6,0x0,0x7,0x0,0xf5,
0xff,0x6,0x0,0x6,0x0,0x15,0x0,0x1a,0x0,0x1a,0x0,0x13,0x0,0x4,0x0,0xf3,
0xff,0xe3,0xff,0xdb,0xff,0xd8,0xff,0xdf,0xff,0xef,0xff,0xf2,0xff,0x8,0x0,0xf7,
0xff,0xf9,0xff,0xe8,0xff,0xd1,0xff,0xd8,0xff,0xc1,0xff,0xd6,0xff,0xd5,0xff,0xdd,
0xff,0xf2,0xff,0xe3,0xff,0xff,0xff,0xe7,0xff,0xf5,0xff,0xef,0xff,0xe2,0xff,0xf5,
0xff,0xde,0xff,0xf2,0xff,0xed,0xff,0xf4,0xff,0x1,0x0,0x7,0x0,0x2,0x0,0xd,
0x0,0xf7,0xff,0xfa,0xff,0xfb,0xff,0xf7,0xff,0x15,0x0,0x14,0x0,0x21,0x0,0x29,
0x0,0xc,0x0,0x18,0x0,0xef,0xff,0xf6,0xff,0xed,0xff,0xeb,0xff,0x9,0x0,0x5,
0x0,0x21,0x0,0x21,0x0,0x1a,0x0,0x1e,0x0,0xff,0xff,0x6,0x0,0xf0,0xff,0xf0,
0xff,0xf2,0xff,0xf0,0xff,0xf9,0xff,0x2,0x0,0xfc,0xff,0x6,0x0,0xf6,0xff,0xf1,
0xff,0xea,0xff,0xe3,0xff,0xe2,0xff,0xe8,0xff,0xdc,0xff,0xe8,0xff,0xce,0xff,0xd4,
0xff,0xc4,0xff,0xbe,0xff,0xc4,0xff,0xbe,0xff,0xc8,0xff,0xca,0xff,0xc9,0xff,0xcb,
0xff,0xcb,0xff,0xce,0xff,0xd1,0xff,0xd8,0xff,0xd3,0xff,0xd7,0xff,0xcc,0xff,0xd2,
0xff,0xd2,0xff,0xd7,0xff,0xe5,0xff,0xdc,0xff,0xea,0xff,0xdd,0xff,0xe8,0xff,0xe9,
0xff,0xfc,0xff,0xff,0xff,0x18,0x0,0x12,0x0,0x1a,0x0,0x13,0x0,0x1,0x0,0x5,
0x0,0xf3,0xff,0xfd,0xff,0xe,0x0,0xa,0x0,0x33,0x0,0x24,0x0,0x33,0x0,0x34,
0x0,0xf,0x0,0x1e,0x0,0xf0,0xff,0xf3,0xff,0xf6,0xff,0xf1,0xff,0x1d,0x0,0x1e,
0x0,0x36,0x0,0x3f,0x0,0x27,0x0,0x2f,0x0,0x0,0x0,0x1,0x0,0xdf,0xff,0xde,
0xff,0xde,0xff,0xe1,0xff,0x5,0x0,0x9,0x0,0x31,0x0,0x36,0x0,0x2b,0x0,0x37,
0x0,0xe6,0xff,0xf1,0xff,0xa6,0xff,0xa7,0xff,0xc6,0xff,0xc6,0xff,0x28,0x0,0x36,
0x0,0x46,0x0,0x5e,0x0,0xfb,0xff,0x6,0x0,0xb8,0xff,0xa7,0xff,0xd4,0xff,0xbf,
0xff,0x23,0x0,0x24,0x0,0x3b,0x0,0x4c,0x0,0x4,0x0,0x8,0x0,0xc7,0xff,0xb9,
0xff,0xd1,0xff,0xbe,0xff,0x13,0x0,0x7,0x0,0x38,0x0,0x36,0x0,0xb,0x0,0xc,
0x0,0xb4,0xff,0xb4,0xff,0x97,0xff,0x92,0xff,0xd4,0xff,0xcd,0xff,0x1d,0x0,0x1f,
0x0,0x20,0x0,0x2c,0x0,0xea,0xff,0xee,0xff,0xbe,0xff,0xb4,0xff,0xc0,0xff,0xb8,
0xff,0xe1,0xff,0xe4,0xff,0x2,0x0,0xa,0x0,0x7,0x0,0x12,0x0,0xf0,0xff,0xfd,
0xff,0xe3,0xff,0xeb,0xff,0xf8,0xff,0xfd,0xff,0x13,0x0,0x19,0x0,0x15,0x0,0x18,
0x0,0x14,0x0,0xe,0x0,0x1a,0x0,0x16,0x0,0x18,0x0,0x25,0x0,0x15,0x0,0x2a,
0x0,0x2d,0x0,0x2d,0x0,0x52,0x0,0x40,0x0,0x56,0x0,0x52,0x0,0x30,0x0,0x48,
0x0,0x19,0x0,0x31,0x0,0x32,0x0,0x31,0x0,0x50,0x0,0x44,0x0,0x4a,0x0,0x4b,
0x0,0x2a,0x0,0x38,0x0,0xc,0x0,0x14,0x0,0x7,0x0,0xfa,0xff,0x1f,0x0,0x7,
0x0,0x2d,0x0,0x2b,0x0,0x14,0x0,0x2b,0x0,0xe7,0xff,0xf8,0xff,0xd2,0xff,0xcb,
0xff,0xe6,0xff,0xd6,0xff,0x1,0x0,0xf9,0xff,0xfd,0xff,0xfc,0xff,0xdb,0xff,0xde,
0xff,0xbd,0xff,0xc7,0xff,0xc5,0xff,0xcf,0xff,0xf1,0xff,0xef,0xff,0xe,0x0,0x7,
0x0,0xf3,0xff,0xf2,0xff,0xcb,0xff,0xd1,0xff,0xe1,0xff,0xe7,0xff,0x20,0x0,0x1f,
0x0,0x2a,0x0,0x26,0x0,0xf7,0xff,0xf7,0xff,0xea,0xff,0xe8,0xff,0x26,0x0,0x1b,
0x0,0x5b,0x0,0x4e,0x0,0x51,0x0,0x4f,0x0,0x30,0x0,0x38,0x0,0x2d,0x0,0x2e,
0x0,0x47,0x0,0x37,0x0,0x51,0x0,0x46,0x0,0x3e,0x0,0x45,0x0,0x2e,0x0,0x37,
0x0,0x3f,0x0,0x3c,0x0,0x5e,0x0,0x56,0x0,0x4c,0x0,0x4f,0x0,0xfe,0xff,0xf,
0x0,0xce,0xff,0xd8,0xff,0xf0,0xff,0xf0,0xff,0x26,0x0,0x2e,0x0,0x23,0x0,0x35,
0x0,0xec,0xff,0xfa,0xff,0xbd,0xff,0xbd,0xff,0xbb,0xff,0xb0,0xff,0xdf,0xff,0xd9,
0xff,0xff,0xff,0xc,0x0,0xec,0xff,0x0,0x0,0xb3,0xff,0xbb,0xff,0xa6,0xff,0xa6,
0xff,0xe4,0xff,0xe6,0xff,0xd,0x0,0x18,0x0,0xe8,0xff,0xf8,0xff,0xc4,0xff,0xd0,
0xff,0xeb,0xff,0xf1,0xff,0x34,0x0,0x32,0x0,0x47,0x0,0x41,0x0,0x20,0x0,0x21,
0x0,0xff,0xff,0xa,0x0,0x13,0x0,0x1b,0x0,0x59,0x0,0x54,0x0,0x9a,0x0,0x90,
0x0,0x96,0x0,0x8e,0x0,0x54,0x0,0x4a,0x0,0x2a,0x0,0x22,0x0,0x48,0x0,0x47,
0x0,0x71,0x0,0x76,0x0,0x61,0x0,0x5f,0x0,0x2a,0x0,0x19,0x0,0x7,0x0,0xf5,
0xff,0x14,0x0,0xe,0x0,0x35,0x0,0x35,0x0,0x3a,0x0,0x36,0x0,0x5,0x0,0x4,
0x0,0xb5,0xff,0xb9,0xff,0x9c,0xff,0x9e,0xff,0xd7,0xff,0xd4,0xff,0xe,0x0,0xff,
0xff,0xdd,0xff,0xca,0xff,0x79,0xff,0x7a,0xff,0x77,0xff,0x8e,0xff,0xd3,0xff,0xe8,
0xff,0xfa,0xff,0xfd,0xff,0xbb,0xff,0xb1,0xff,0x85,0xff,0x81,0xff,0xc3,0xff,0xc8,
0xff,0x36,0x0,0x3a,0x0,0x4f,0x0,0x4d,0x0,0x2,0x0,0x0,0x0,0xd4,0xff,0xd4,
0xff,0x11,0x0,0xe,0x0,0x63,0x0,0x5f,0x0,0x66,0x0,0x6b,0x0,0x37,0x0,0x44,
0x0,0x3e,0x0,0x45,0x0,0x87,0x0,0x81,0x0,0xaa,0x0,0xa9,0x0,0x7c,0x0,0x86,
0x0,0x39,0x0,0x44,0x0,0x21,0x0,0x22,0x0,0x3a,0x0,0x32,0x0,0x53,0x0,0x51,
0x0,0x50,0x0,0x58,0x0,0x44,0x0,0x49,0x0,0x32,0x0,0x37,0x0,0x16,0x0,0x1f,
0x0,0xf7,0xff,0xfc,0xff,0xe6,0xff,0xe4,0xff,0xf6,0xff,0xf1,0xff,0x16,0x0,0x13,
0x0,0x16,0x0,0x16,0x0,0xe3,0xff,0xe6,0xff,0xb7,0xff,0xb9,0xff,0xc8,0xff,0xc4,
0xff,0xf8,0xff,0xee,0xff,0x3,0x0,0xff,0xff,0xe5,0xff,0xe8,0xff,0xd5,0xff,0xcb,
0xff,0xe2,0xff,0xca,0xff,0xf4,0xff,0xe9,0xff,0x14,0x0,0x17,0x0,0x2f,0x0,0x34,
0x0,0x25,0x0,0x1d,0x0,0x9,0x0,0xed,0xff,0xc,0x0,0xf4,0xff,0x3e,0x0,0x3c,
0x0,0x69,0x0,0x72,0x0,0x5a,0x0,0x5c,0x0,0x29,0x0,0x1f,0x0,0xa,0x0,0x6,
0x0,0x21,0x0,0x2a,0x0,0x55,0x0,0x59,0x0,0x68,0x0,0x61,0x0,0x40,0x0,0x40,
0x0,0x0,0x0,0xf,0x0,0xe8,0xff,0xf3,0xff,0x7,0x0,0x5,0x0,0x32,0x0,0x2a,
0x0,0x2e,0x0,0x31,0x0,0xf8,0xff,0x12,0x0,0xd1,0xff,0xea,0xff,0xdf,0xff,0xe1,
0xff,0xc,0x0,0xfc,0xff,0x1d,0x0,0xe,0x0,0xef,0xff,0xf8,0xff,0xba,0xff,0xd2,
0xff,0xbd,0xff,0xc8,0xff,0xe7,0xff,0xda,0xff,0xfb,0xff,0xe4,0xff,0xe9,0xff,0xda,
0xff,0xe0,0xff,0xd3,0xff,0xf1,0xff,0xe1,0xff,0x1,0x0,0xf6,0xff,0x10,0x0,0x0,
0x0,0x21,0x0,0x7,0x0,0x24,0x0,0x10,0x0,0x13,0x0,0x12,0x0,0xf,0x0,0x1d,
0x0,0x32,0x0,0x40,0x0,0x51,0x0,0x59,0x0,0x4c,0x0,0x48,0x0,0x34,0x0,0x30,
0x0,0x38,0x0,0x40,0x0,0x56,0x0,0x6a,0x0,0x5c,0x0,0x73,0x0,0x47,0x0,0x50,
0x0,0x3e,0x0,0x3c,0x0,0x45,0x0,0x4a,0x0,0x3e,0x0,0x42,0x0,0x26,0x0,0x23,
0x0,0x23,0x0,0x23,0x0,0x2f,0x0,0x3f,0x0,0x30,0x0,0x46,0x0,0x1f,0x0,0x1c,
0x0,0xf7,0xff,0xe2,0xff,0xd9,0xff,0xd1,0xff,0xf1,0xff,0xfa,0xff,0x22,0x0,0x28,
0x0,0x17,0x0,0x11,0x0,0xcb,0xff,0xbe,0xff,0xa4,0xff,0x9b,0xff,0xdb,0xff,0xdf,
0xff,0x24,0x0,0x2c,0x0,0x1f,0x0,0x15,0x0,0xd0,0xff,0xbc,0xff,0x9a,0xff,0x94,
0xff,0xc0,0xff,0xca,0xff,0x1e,0x0,0x22,0x0,0x4c,0x0,0x42,0x0,0x14,0x0,0x11,
0x0,0xca,0xff,0xd2,0xff,0xd2,0xff,0xd7,0xff,0x26,0x0,0x26,0x0,0x64,0x0,0x63,
0x0,0x46,0x0,0x45,0x0,0x7,0x0,0x4,0x0,0x3,0x0,0x7,0x0,0x3c,0x0,0x4c,
0x0,0x71,0x0,0x7c,0x0,0x66,0x0,0x64,0x0,0x24,0x0,0x29,0x0,0xf8,0xff,0xd,
0x0,0x1e,0x0,0x28,0x0,0x6d,0x0,0x55,0x0,0x7e,0x0,0x64,0x0,0x42,0x0,0x44,
0x0,0xc,0x0,0x1c,0x0,0x1e,0x0,0x1e,0x0,0x54,0x0,0x3b,0x0,0x5a,0x0,0x3d,
0x0,0x2e,0x0,0x1f,0x0,0x2,0x0,0x1,0x0,0xfa,0xff,0xfa,0xff,0x15,0x0,0x8,
0x0,0x28,0x0,0x18,0x0,0x19,0x0,0x16,0x0,0xf8,0xff,0x1,0x0,0xe5,0xff,0xea,
0xff,0xf8,0xff,0xf2,0xff,0x17,0x0,0x15,0x0,0x24,0x0,0x23,0x0,0xc,0x0,0x9,
0x0,0xe2,0xff,0xe7,0xff,0xd8,0xff,0xdc,0xff,0xea,0xff,0xea,0xff,0xf7,0xff,0xfd,
0xff,0xf9,0xff,0xa,0x0,0x6,0x0,0x22,0x0,0x1f,0x0,0x37,0x0,0x15,0x0,0x1b,
0x0,0xe0,0xff,0xde,0xff,0xc9,0xff,0xcf,0xff,0x8,0x0,0x12,0x0,0x62,0x0,0x65,
0x0,0x64,0x0,0x68,0x0,0x16,0x0,0x17,0x0,0xe1,0xff,0xda,0xff,0x0,0x0,0xf9,
0xff,0x49,0x0,0x3f,0x0,0x59,0x0,0x4f,0x0,0x22,0x0,0x17,0x0,0xf7,0xff,0xea,
0xff,0x16,0x0,0xf,0x0,0x64,0x0,0x58,0x0,0x78,0x0,0x60,0x0,0x30,0x0,0x14,
0x0,0xe1,0xff,0xd1,0xff,0xe3,0xff,0xed,0xff,0x31,0x0,0x46,0x0,0x64,0x0,0x66,
0x0,0x39,0x0,0x21,0x0,0xdf,0xff,0xca,0xff,0xbf,0xff,0xc5,0xff,0x3,0x0,0x18,
0x0,0x4e,0x0,0x5e,0x0,0x3d,0x0,0x37,0x0,0xd9,0xff,0xca,0xff,0x9c,0xff,0x9e,
0xff,0xda,0xff,0xdf,0xff,0x40,0x0,0x3a,0x0,0x4e,0x0,0x4a,0x0,0xfc,0xff,0x9,
0x0,0xb3,0xff,0xcb,0xff,0xc7,0xff,0xd5,0xff,0xb,0x0,0xb,0x0,0x30,0x0,0x2d,
0x0,0x1e,0x0,0x23,0x0,0xfc,0xff,0xc,0x0,0x3,0x0,0x11,0x0,0x1d,0x0,0x2a,
0x0,0x23,0x0,0x2b,0x0,0x18,0x0,0x10,0x0,0x15,0x0,0xd,0x0,0x32,0x0,0x33,
0x0,0x4d,0x0,0x4e,0x0,0x45,0x0,0x3c,0x0,0x2f,0x0,0x20,0x0,0x27,0x0,0x1e,
0x0,0x2e,0x0,0x21,0x0,0x31,0x0,0x1c,0x0,0x35,0x0,0x22,0x0,0x35,0x0,0x35,
0x0,0x28,0x0,0x2f,0x0,0x1b,0x0,0x9,0x0,0x11,0x0,0xf7,0xff,0x14,0x0,0xb,
0x0,0xe,0x0,0x13,0x0,0xf9,0xff,0x2,0x0,0xff,0xff,0xfd,0xff,0xb,0x0,0x7,
0x0,0xfc,0xff,0x6,0x0,0xea,0xff,0xf7,0xff,0xea,0xff,0xf0,0xff,0xf5,0xff,0xfd,
0xff,0xfa,0xff,0xb,0x0,0x2,0x0,0x14,0x0,0x11,0x0,0x1e,0x0,0xa,0x0,0x14,
0x0,0xf2,0xff,0xf5,0xff,0xed,0xff,0xf0,0xff,0x8,0x0,0xc,0x0,0x1f,0x0,0x1e,
0x0,0x19,0x0,0x14,0x0,0x11,0x0,0xb,0x0,0x1a,0x0,0x1d,0x0,0x30,0x0,0x2f,
0x0,0x34,0x0,0x23,0x0,0x17,0x0,0x8,0x0,0xff,0xff,0xf6,0xff,0x1,0x0,0xf9,
0xff,0x22,0x0,0x14,0x0,0x49,0x0,0x34,0x0,0x3e,0x0,0x2e,0x0,0xf,0x0,0x5,
0x0,0xf1,0xff,0xe8,0xff,0xfa,0xff,0xf5,0xff,0x1f,0x0,0x15,0x0,0x33,0x0,0x26,
0x0,0x22,0x0,0x1e,0x0,0xfe,0xff,0x7,0x0,0xee,0xff,0xf4,0xff,0xf9,0xff,0xf4,
0xff,0x1,0x0,0xff,0xff,0xfe,0xff,0x1,0x0,0xf5,0xff,0xfe,0xff,0xf0,0xff,0xfb,
0xff,0xf3,0xff,0xf7,0xff,0xfa,0xff,0xf8,0xff,0x8,0x0,0x1,0x0,0x2,0x0,0x4,
0x0,0xec,0xff,0xfa,0xff,0xe4,0xff,0xf1,0xff,0xf3,0xff,0xf8,0xff,0xe,0x0,0x9,
0x0,0xd,0x0,0xd,0x0,0xf0,0xff,0xfc,0xff,0xed,0xff,0xf7,0xff,0xe,0x0,0x10,
0x0,0x28,0x0,0x24,0x0,0x18,0x0,0x17,0x0,0xf6,0xff,0xff,0xff,0xe9,0xff,0xef,
0xff,0xee,0xff,0xf2,0xff,0x7,0x0,0xa,0x0,0x1d,0x0,0x21,0x0,0x1d,0x0,0x27,
0x0,0x15,0x0,0x1e,0x0,0x6,0x0,0xa,0x0,0xf8,0xff,0xf9,0xff,0xf9,0xff,0xfb,
0xff,0x6,0x0,0x9,0x0,0xd,0x0,0xd,0x0,0x9,0x0,0x2,0x0,0x6,0x0,0xfa,
0xff,0xf5,0xff,0xff,0xff,0xe6,0xff,0xf5,0xff,0xe6,0xff,0xda,0xff,0xef,0xff,0xe0,
0xff,0x6,0x0,0x2,0x0,0x5,0x0,0x3,0x0,0xe0,0xff,0xdb,0xff,0xd8,0xff,0xc5,
0xff,0xf6,0xff,0xdb,0xff,0x11,0x0,0xfa,0xff,0x2,0x0,0xfb,0xff,0xd6,0xff,0xe2,
0xff,0xcf,0xff,0xd5,0xff,0xf5,0xff,0xe5,0xff,0xd,0x0,0xff,0xff,0x0,0x0,0xe,
0x0,0xe7,0xff,0x2,0x0,0xd8,0xff,0xe4,0xff,0xe8,0xff,0xe7,0xff,0x1a,0x0,0x1b,
0x0,0x2b,0x0,0x3f,0x0,0x10,0x0,0x29,0x0,0xf9,0xff,0x2,0x0,0xfe,0xff,0xfe,
0xff,0x1b,0x0,0x14,0x0,0x25,0x0,0x1f,0x0,0x18,0x0,0x23,0x0,0x26,0x0,0x37,
0x0,0x2b,0x0,0x32,0x0,0x1,0x0,0xff,0xff,0xda,0xff,0xdd,0xff,0xf2,0xff,0xfd,
0xff,0x2e,0x0,0x2f,0x0,0x3b,0x0,0x36,0x0,0x7,0x0,0x8,0x0,0xd5,0xff,0xe1,
0xff,0xe1,0xff,0xf0,0xff,0xe,0x0,0x15,0x0,0x1c,0x0,0x18,0x0,0x10,0x0,0xf6,
0xff,0xf9,0xff,0xd9,0xff,0xe9,0xff,0xe7,0xff,0xf5,0xff,0xd,0x0,0x3,0x0,0x13,
0x0,0x0,0x0,0xf3,0xff,0xec,0xff,0xd3,0xff,0xd8,0xff,0xce,0xff,0xdc,0xff,0xe5,
0xff,0xed,0xff,0xf9,0xff,0xf6,0xff,0xee,0xff,0xe6,0xff,0xd6,0xff,0xd8,0xff,0xd5,
0xff,0xf3,0xff,0xf7,0xff,0x15,0x0,0x17,0x0,0xb,0x0,0x1,0x0,0xd9,0xff,0xce,
0xff,0xc1,0xff,0xcb,0xff,0xeb,0xff,0xfe,0xff,0x19,0x0,0x23,0x0,0x1d,0x0,0x1b,
0x0,0x7,0x0,0x3,0x0,0xf9,0xff,0xf9,0xff,0xfd,0xff,0xfe,0xff,0xf5,0xff,0xfe,
0xff,0xf4,0xff,0xfa,0xff,0x14,0x0,0xa,0x0,0x2f,0x0,0x28,0x0,0x21,0x0,0x2b,
0x0,0xfe,0xff,0x6,0x0,0xf2,0xff,0xe7,0xff,0xff,0xff,0xf8,0xff,0x13,0x0,0x23,
0x0,0x1a,0x0,0x29,0x0,0xa,0x0,0x4,0x0,0xfc,0xff,0xe6,0xff,0xf4,0xff,0xe9,
0xff,0xef,0xff,0xf7,0xff,0xee,0xff,0xef,0xff,0xdc,0xff,0xd5,0xff,0xd7,0xff,0xd2,
0xff,0xed,0xff,0xf1,0xff,0xf6,0xff,0x3,0x0,0xe7,0xff,0xea,0xff,0xca,0xff,0xc8,
0xff,0xc7,0xff,0xc2,0xff,0xec,0xff,0xde,0xff,0x2,0x0,0xf8,0xff,0xf6,0xff,0xf7,
0xff,0xe7,0xff,0xea,0xff,0xe6,0xff,0xe1,0xff,0xdf,0xff,0xd3,0xff,0xd1,0xff,0xcb,
0xff,0xda,0xff,0xe1,0xff,0xfa,0xff,0x1,0x0,0xb,0x0,0xfd,0xff,0xe9,0xff,0xd8,
0xff,0xc5,0xff,0xc5,0xff,0xd5,0xff,0xda,0xff,0xec,0xff,0xf4,0xff,0xf4,0xff,0xf9,
0xff,0xf9,0xff,0xf6,0xff,0xf1,0xff,0xf0,0xff,0xd9,0xff,0xd9,0xff,0xc7,0xff,0xcc,
0xff,0xe5,0xff,0xf3,0xff,0x15,0x0,0x23,0x0,0xff,0xff,0xc,0x0,0xc3,0xff,0xcf,
0xff,0xc9,0xff,0xd3,0xff,0x18,0x0,0x17,0x0,0x35,0x0,0x31,0x0,0xe8,0xff,0xed,
0xff,0x9f,0xff,0xa6,0xff,0xbc,0xff,0xc3,0xff,0x17,0x0,0x16,0x0,0x36,0x0,0x2a,
0x0,0xef,0xff,0xeb,0xff,0x9f,0xff,0xae,0xff,0x9f,0xff,0xb3,0xff,0xeb,0xff,0xe6,
0xff,0x22,0x0,0x8,0x0,0xff,0xff,0xf5,0xff,0xbb,0xff,0xca,0xff,0xae,0xff,0xc1,
0xff,0xec,0xff,0xe7,0xff,0x1a,0x0,0xff,0xff,0xf3,0xff,0xdc,0xff,0xbf,0xff,0xb5,
0xff,0xbd,0xff,0xc6,0xff,0xee,0xff,0xf1,0xff,0x18,0x0,0x3,0x0,0x7,0x0,0xf7,
0xff,0xda,0xff,0xdf,0xff,0xc5,0xff,0xd1,0xff,0xe4,0xff,0xdb,0xff,0x9,0x0,0xf1,
0xff,0xfd,0xff,0xf7,0xff,0xdc,0xff,0xeb,0xff,0xdc,0xff,0xee,0xff,0xfb,0xff,0xff,
0xff,0x7,0x0,0xff,0xff,0xee,0xff,0xed,0xff,0xe2,0xff,0xea,0xff,0xf0,0xff,0xff,
0xff,0x2,0x0,0x9,0x0,0xfa,0xff,0xf7,0xff,0xe9,0xff,0xea,0xff,0xf4,0xff,0xfc,
0xff,0x0,0x0,0xf,0x0,0xfb,0xff,0x4,0x0,0xed,0xff,0xe5,0xff,0xdb,0xff,0xd2,
0xff,0xd0,0xff,0xcf,0xff,0xca,0xff,0xd6,0xff,0xd0,0xff,0xd9,0xff,0xd1,0xff,0xc9,
0xff,0xc0,0xff,0xb1,0xff,0xb7,0xff,0xb0,0xff,0xc5,0xff,0xc9,0xff,0xdd,0xff,0xdc,
0xff,0xe0,0xff,0xd1,0xff,0xd1,0xff,0xc3,0xff,0xca,0xff,0xc6,0xff,0xcf,0xff,0xd1,
0xff,0xe9,0xff,0xe4,0xff,0xfd,0xff,0xfb,0xff,0xf0,0xff,0xfc,0xff,0xdc,0xff,0xdd,
0xff,0xd6,0xff,0xca,0xff,0xf0,0xff,0xf1,0xff,0x19,0x0,0x2b,0x0,0x1b,0x0,0x29,
0x0,0xf5,0xff,0xf1,0xff,0xdd,0xff,0xda,0xff,0xf5,0xff,0xf9,0xff,0x12,0x0,0x12,
0x0,0xa,0x0,0x9,0x0,0xee,0xff,0xf4,0xff,0xe2,0xff,0xec,0xff,0xf3,0xff,0xf1,
0xff,0xf6,0xff,0xee,0xff,0xdc,0xff,0xe4,0xff,0xcb,0xff,0xdd,0xff,0xd8,0xff,0xe3,
0xff,0xf9,0xff,0xef,0xff,0xf8,0xff,0xe6,0xff,0xd0,0xff,0xce,0xff,0xc3,0xff,0xc9,
0xff,0xcd,0xff,0xd5,0xff,0xd6,0xff,0xd6,0xff,0xde,0xff,0xd0,0xff,0xdf,0xff,0xd9,
0xff,0xe2,0xff,0xee,0xff,0xe4,0xff,0xf3,0xff,0xd3,0xff,0xdc,0xff,0xc3,0xff,0xc3,
0xff,0xce,0xff,0xcc,0xff,0xea,0xff,0xed,0xff,0xf2,0xff,0xf8,0xff,0xeb,0xff,0xe3,
0xff,0xe2,0xff,0xd4,0xff,0xd9,0xff,0xdd,0xff,0xe0,0xff,0xe9,0xff,0xf0,0xff,0xf1,
0xff,0xfe,0xff,0xf3,0xff,0xfd,0xff,0xeb,0xff,0xe9,0xff,0xe4,0xff,0xe8,0xff,0xea,
0xff,0xf7,0xff,0xf9,0xff,0xff,0xff,0x4,0x0,0xfe,0xff,0xfb,0xff,0xf1,0xff,0xe6,
0xff,0xe6,0xff,0xe9,0xff,0xdf,0xff,0xf5,0xff,0xde,0xff,0xe7,0xff,0xed,0xff,0xe4,
0xff,0xf2,0xff,0xf4,0xff,0xe6,0xff,0xef,0xff,0xd1,0xff,0xd8,0xff,0xc7,0xff,0xc5,
0xff,0xd7,0xff,0xcd,0xff,0xdd,0xff,0xe2,0xff,0xd0,0xff,0xe1,0xff,0xc7,0xff,0xd7,
0xff,0xd3,0xff,0xda,0xff,0xed,0xff,0xed,0xff,0xf0,0xff,0xf4,0xff,0xdd,0xff,0xdf,
0xff,0xd6,0xff,0xd2,0xff,0xe2,0xff,0xe0,0xff,0xf3,0xff,0xf4,0xff,0xf7,0xff,0xf4,
0xff,0xed,0xff,0xd9,0xff,0xe1,0xff,0xc7,0xff,0xe3,0xff,0xd4,0xff,0xec,0xff,0xf0,
0xff,0xec,0xff,0xfe,0xff,0xf1,0xff,0xf7,0xff,0xf5,0xff,0xee,0xff,0xf5,0xff,0xec,
0xff,0x2,0x0,0xf6,0xff,0xf4,0xff,0xfe,0xff,0xd5,0xff,0xf1,0xff,0xe2,0xff,0xee,
0xff,0x8,0x0,0xf3,0xff,0x18,0x0,0xff,0xff,0x9,0x0,0x10,0x0,0xf5,0xff,0x7,
0x0,0xf4,0xff,0xf2,0xff,0xf7,0xff,0xe8,0xff,0xf5,0xff,0xeb,0xff,0xff,0xff,0x4,
0x0,0xc,0x0,0xd,0x0,0xf0,0xff,0xea,0xff,0xcb,0xff,0xc8,0xff,0xd5,0xff,0xce,
0xff,0xf2,0xff,0xe9,0xff,0xf6,0xff,0xeb,0xff,0xde,0xff,0xd3,0xff,0xca,0xff,0xc9,
0xff,0xd8,0xff,0xdc,0xff,0xf3,0xff,0xf4,0xff,0xfb,0xff,0xf4,0xff,0xdc,0xff,0xd7,
0xff,0xab,0xff,0xae,0xff,0xa5,0xff,0xa7,0xff,0xe3,0xff,0xe4,0xff,0x33,0x0,0x2c,
0x0,0x33,0x0,0x33,0x0,0xe9,0xff,0xfa,0xff,0xc0,0xff,0xc6,0xff,0xdc,0xff,0xd7,
0xff,0x21,0x0,0x15,0x0,0x3f,0x0,0x3b,0x0,0x15,0x0,0x26,0x0,0xe4,0xff,0xf7,
0xff,0xda,0xff,0xe6,0xff,0xfa,0xff,0xfb,0xff,0x13,0x0,0xe,0x0,0x3,0x0,0xf9,
0xff,0xdf,0xff,0xcf,0xff,0xc2,0xff,0xbf,0xff,0xcc,0xff,0xd2,0xff,0xec,0xff,0xf4,
0xff,0xf,0x0,0x12,0x0,0x14,0x0,0x7,0x0,0xd8,0xff,0xc7,0xff,0xb9,0xff,0xa5,
0xff,0xe1,0xff,0xda,0xff,0x12,0x0,0x17,0x0,0x1e,0x0,0x12,0x0,0xf5,0xff,0xdc,
0xff,0xe1,0xff,0xca,0xff,0x2,0x0,0x4,0x0,0x24,0x0,0x34,0x0,0x1a,0x0,0x11,
0x0,0xd7,0xff,0xc2,0xff,0xaa,0xff,0xa7,0xff,0xd9,0xff,0xea,0xff,0x44,0x0,0x46,
0x0,0x68,0x0,0x58,0x0,0xf5,0xff,0x0,0x0,0x85,0xff,0x9e,0xff,0xa1,0xff,0xb6,
0xff,0x7,0x0,0xe,0x0,0x33,0x0,0x22,0x0,0xf4,0xff,0xe1,0xff,0xae,0xff,0xad,
0xff,0xcc,0xff,0xed,0xff,0x37,0x0,0x5c,0x0,0x5c,0x0,0x59,0x0,0xe0,0xff,0xcb,
0xff,0x50,0xff,0x4d,0xff,0x79,0xff,0x8f,0xff,0x58,0x0,0x5c,0x0,0xdc,0x0,0xc6,
0x0,0x3e,0x0,0x35,0x0,0x50,0xff,0x49,0xff,0x46,0xff,0x32,0xff,0xd,0x0,0xee,
0xff,0x9a,0x0,0x83,0x0,0x48,0x0,0x45,0x0,0x81,0xff,0x7a,0xff,0x2b,0xff,0x20,
0xff,0xa9,0xff,0xa0,0xff,0x5d,0x0,0x5c,0x0,0x72,0x0,0x7f,0x0,0xdf,0xff,0xdd,
0xff,0x6c,0xff,0x59,0xff,0xbc,0xff,0xaa,0xff,0x5d,0x0,0x5a,0x0,0x81,0x0,0x95,
0x0,0x15,0x0,0x24,0x0,0xa9,0xff,0x9a,0xff,0xbb,0xff,0x9b,0xff,0x2a,0x0,0x21,
0x0,0x74,0x0,0x8a,0x0,0x41,0x0,0x4f,0x0,0xc8,0xff,0xc7,0xff,0xa8,0xff,0x9c,
0xff,0xf4,0xff,0xf6,0xff,0x3f,0x0,0x56,0x0,0x2c,0x0,0x38,0x0,0xdb,0xff,0xdf,
0xff,0xcd,0xff,0xcc,0xff,0x3,0x0,0x0,0x0,0x2a,0x0,0x35,0x0,0x23,0x0,0x28,
0x0,0xfa,0xff,0xec,0xff,0xde,0xff,0xcf,0xff,0xe2,0xff,0xe3,0xff,0xf5,0xff,0x3,
0x0,0xf2,0xff,0xfc,0xff,0xcc,0xff,0xcd,0xff,0xc2,0xff,0xbe,0xff,0xed,0xff,0xec,
0xff,0xb,0x0,0x4,0x0,0xe5,0xff,0xd4,0xff,0xad,0xff,0xaa,0xff,0xbf,0xff,0xc1,
0xff,0xfc,0xff,0xfa,0xff,0x14,0x0,0xd,0x0,0xf8,0xff,0xe7,0xff,0xcd,0xff,0xc6,
0xff,0xd0,0xff,0xda,0xff,0xfb,0xff,0x8,0x0,0x10,0x0,0x1a,0x0,0xfd,0xff,0xf8,
0xff,0xe1,0xff,0xd1,0xff,0xf1,0xff,0xec,0xff,0x39,0x0,0x44,0x0,0x66,0x0,0x6a,
0x0,0x39,0x0,0x33,0x0,0xef,0xff,0xe6,0xff,0xe2,0xff,0xdd,0xff,0x2a,0x0,0x2d,
0x0,0x64,0x0,0x5e,0x0,0x4f,0x0,0x34,0x0,0xe,0x0,0xf4,0xff,0xcc,0xff,0xc1,
0xff,0xbe,0xff,0xc2,0xff,0xf5,0xff,0x5,0x0,0x26,0x0,0x28,0x0,0xfe,0xff,0xec,
0xff,0x95,0xff,0x8f,0xff,0x81,0xff,0x89,0xff,0xd1,0xff,0xd2,0xff,0x7,0x0,0xfd,
0xff,0xeb,0xff,0xdf,0xff,0x97,0xff,0x96,0xff,0x7a,0xff,0x7d,0xff,0xc6,0xff,0xc6,
0xff,0x2c,0x0,0x31,0x0,0x4d,0x0,0x4b,0x0,0xf0,0xff,0xe2,0xff,0x7e,0xff,0x84,
0xff,0x93,0xff,0xb1,0xff,0x21,0x0,0x33,0x0,0x91,0x0,0x8f,0x0,0x62,0x0,0x5d,
0x0,0xe7,0xff,0xe7,0xff,0xad,0xff,0xc3,0xff,0xe3,0xff,0xf8,0xff,0x4f,0x0,0x49,
0x0,0x62,0x0,0x5e,0x0,0x15,0x0,0x1e,0x0,0xbf,0xff,0xcc,0xff,0xa7,0xff,0xb1,
0xff,0xf0,0xff,0xf4,0xff,0x32,0x0,0x35,0x0,0x24,0x0,0x21,0x0,0xea,0xff,0xe4,
0xff,0xac,0xff,0xab,0xff,0xa9,0xff,0xa6,0xff,0xe9,0xff,0xe9,0xff,0x1f,0x0,0x2a,
0x0,0xf,0x0,0x14,0x0,0xe0,0xff,0xc2,0xff,0xd2,0xff,0xab,0xff,0xe8,0xff,0xd7,
0xff,0x5,0x0,0x1,0x0,0x4,0x0,0xe,0x0,0xec,0xff,0xee,0xff,0xd7,0xff,0xc9,
0xff,0xdb,0xff,0xdb,0xff,0x13,0x0,0x1b,0x0,0x46,0x0,0x55,0x0,0x38,0x0,0x49,
0x0,0x0,0x0,0x5,0x0,0xd8,0xff,0xd7,0xff,0xff,0xff,0x0,0x0,0x56,0x0,0x66,
0x0,0x80,0x0,0x95,0x0,0x59,0x0,0x5d,0x0,0xf,0x0,0x4,0x0,0xe5,0xff,0xdf,
0xff,0x3,0x0,0x3,0x0,0x59,0x0,0x45,0x0,0x79,0x0,0x64,0x0,0x20,0x0,0x25,
0x0,0x9e,0xff,0xaa,0xff,0x84,0xff,0x8f,0xff,0x15,0x0,0x13,0x0,0x6c,0x0,0x6c,
0x0,0xba,0xff,0xc6,0xff,0xb9,0xfe,0xb4,0xfe,0xa1,0xfe,0x9d,0xfe,0xbf,0xff,0xcf,
0xff,0xb8,0x0,0xc2,0x0,0x3a,0x0,0x27,0x0,0x7,0xff,0xef,0xfe,0xa9,0xfe,0xb5,
0xfe,0x72,0xff,0x8c,0xff,0x51,0x0,0x60,0x0,0x53,0x0,0x55,0x0,0xb1,0xff,0xa8,
0xff,0x52,0xff,0x52,0xff,0xe4,0xff,0xeb,0xff,0xbd,0x0,0xd3,0x0,0xc7,0x0,0xd7,
0x0,0x14,0x0,0x5,0x0,0x93,0xff,0x8b,0xff,0x11,0x0,0x15,0x0,0x0,0x1,0x4,
0x1,0x27,0x1,0x2c,0x1,0x65,0x0,0x71,0x0,0xb9,0xff,0xcf,0xff,0xc,0x0,0x15,
0x0,0xd4,0x0,0xcc,0x0,0xe8,0x0,0xd4,0x0,0x4f,0x0,0x40,0x0,0xe2,0xff,0xed,
0xff,0x18,0x0,0x2e,0x0,0x7e,0x0,0x94,0x0,0x67,0x0,0x63,0x0,0xf1,0xff,0xd6,
0xff,0xb4,0xff,0xaf,0xff,0xea,0xff,0xef,0xff,0x17,0x0,0x16,0x0,0xda,0xff,0xcb,
0xff,0x8f,0xff,0x7a,0xff,0x8e,0xff,0x96,0xff,0xaf,0xff,0xc1,0xff,0xa9,0xff,0xaa,
0xff,0x7d,0xff,0x6b,0xff,0x62,0xff,0x54,0xff,0x85,0xff,0x89,0xff,0xcd,0xff,0xd3,
0xff,0xe5,0xff,0xf0,0xff,0xac,0xff,0xae,0xff,0x6a,0xff,0x5b,0xff,0x86,0xff,0x79,
0xff,0xfa,0xff,0xf6,0xff,0x5e,0x0,0x72,0x0,0x6b,0x0,0x7e,0x0,0x1d,0x0,0x25,
0x0,0xe9,0xff,0xf1,0xff,0x1f,0x0,0x22,0x0,0x7d,0x0,0x8e,0x0,0xa4,0x0,0xb4,
0x0,0x70,0x0,0x70,0x0,0x37,0x0,0x34,0x0,0x51,0x0,0x43,0x0,0xa0,0x0,0x8d,
0x0,0xb8,0x0,0xb0,0x0,0x4d,0x0,0x5e,0x0,0xd1,0xff,0xde,0xff,0xc9,0xff,0xa3,
0xff,0x26,0x0,0xec,0xff,0x77,0x0,0x5a,0x0,0x3a,0x0,0x4c,0x0,0xb9,0xff,0xd2,
0xff,0x8b,0xff,0x87,0xff,0xc0,0xff,0xb8,0xff,0x17,0x0,0x12,0x0,0x1b,0x0,0x1b,
0x0,0xd7,0xff,0xd3,0xff,0xba,0xff,0x9f,0xff,0xcf,0xff,0xb7,0xff,0xf8,0xff,0xff,
0xff,0x17,0x0,0x42,0x0,0xf,0x0,0x2f,0x0,0xc6,0xff,0xb9,0xff,0x7e,0xff,0x6f,
0xff,0xad,0xff,0xbc,0xff,0x24,0x0,0x4d,0x0,0x6a,0x0,0x87,0x0,0x4c,0x0,0x4e,
0x0,0xf2,0xff,0xfb,0xff,0xba,0xff,0xc9,0xff,0xcc,0xff,0xd6,0xff,0x19,0x0,0x1d,
0x0,0x5b,0x0,0x5c,0x0,0x43,0x0,0x4a,0x0,0xf4,0xff,0xf5,0xff,0xd8,0xff,0xcb,
0xff,0xc,0x0,0xf7,0xff,0x49,0x0,0x32,0x0,0x38,0x0,0x26,0x0,0xe0,0xff,0xda,
0xff,0xbd,0xff,0xc3,0xff,0x2,0x0,0xee,0xff,0x47,0x0,0x21,0x0,0x48,0x0,0x33,
0x0,0x8,0x0,0xff,0xff,0xc4,0xff,0xc5,0xff,0xca,0xff,0xca,0xff,0x17,0x0,0xb,
0x0,0x47,0x0,0x49,0x0,0x6,0x0,0x1b,0x0,0xbe,0xff,0xd5,0xff,0xd7,0xff,0xec,
0xff,0x13,0x0,0x24,0x0,0x2d,0x0,0x35,0x0,0xc,0x0,0x23,0x0,0xe9,0xff,0x1a,
0x0,0xe3,0xff,0x9,0x0,0xf2,0xff,0xf7,0xff,0x40,0x0,0x2f,0x0,0x7a,0x0,0x6c,
0x0,0x54,0x0,0x5a,0x0,0x17,0x0,0x20,0x0,0xff,0xff,0xf9,0xff,0x1a,0x0,0x7,
0x0,0x3e,0x0,0x20,0x0,0x4c,0x0,0x32,0x0,0x2e,0x0,0x20,0x0,0xd5,0xff,0xc7,
0xff,0x94,0xff,0x7c,0xff,0xad,0xff,0x94,0xff,0x28,0x0,0x19,0x0,0x6e,0x0,0x71,
0x0,0xf3,0xff,0xff,0xff,0x6b,0xff,0x63,0xff,0x6d,0xff,0x5d,0xff,0xcd,0xff,0xce,
0xff,0x20,0x0,0x27,0x0,0xfc,0xff,0xfb,0xff,0x83,0xff,0x87,0xff,0x43,0xff,0x53,
0xff,0xbe,0xff,0xcc,0xff,0x93,0x0,0x9c,0x0,0x90,0x0,0x9c,0x0,0xba,0xff,0xc7,
0xff,0x69,0xff,0x6d,0xff,0xf,0x0,0xb,0x0,0xa4,0x0,0xb2,0x0,0x7d,0x0,0x93,
0x0,0x16,0x0,0x1b,0x0,0x1,0x0,0x0,0x0,0x53,0x0,0x51,0x0,0xa3,0x0,0x9d,
0x0,0x97,0x0,0x84,0x0,0x52,0x0,0x33,0x0,0x2c,0x0,0x1c,0x0,0x69,0x0,0x70,
0x0,0xc9,0x0,0xce,0x0,0xc1,0x0,0xb5,0x0,0x56,0x0,0x48,0x0,0xf,0x0,0xfa,
0xff,0x27,0x0,0xe,0x0,0x53,0x0,0x5d,0x0,0x53,0x0,0x6a,0x0,0x27,0x0,0x1d,
0x0,0xb,0x0,0xe8,0xff,0xb,0x0,0xf4,0xff,0xe7,0xff,0xfa,0xff,0xb9,0xff,0xd2,
0xff,0x9e,0xff,0x98,0xff,0xae,0xff,0x91,0xff,0xec,0xff,0xd3,0xff,0xe2,0xff,0xea,
0xff,0x8b,0xff,0x99,0xff,0x65,0xff,0x5d,0xff,0xb4,0xff,0xa3,0xff,0x24,0x0,0x1d,
0x0,0x6,0x0,0x8,0x0,0x95,0xff,0x84,0xff,0x85,0xff,0x70,0xff,0xec,0xff,0xe6,
0xff,0x61,0x0,0x5f,0x0,0x6b,0x0,0x6e,0x0,0x23,0x0,0x26,0x0,0xf1,0xff,0xf9,
0xff,0x2f,0x0,0x2c,0x0,0xbd,0x0,0xa9,0x0,0xdf,0x0,0xe1,0x0,0x7f,0x0,0x89,
0x0,0x11,0x0,0x7,0x0,0xfe,0xff,0xe0,0xff,0x5e,0x0,0x4d,0x0,0x9f,0x0,0xbb,
0x0,0x77,0x0,0x95,0x0,0x1f,0x0,0x21,0x0,0xdd,0xff,0xcc,0xff,0xf2,0xff,0xdf,
0xff,0x40,0x0,0x37,0x0,0x6b,0x0,0x5f,0x0,0x2a,0x0,0x2a,0x0,0xb6,0xff,0xc0,
0xff,0xa7,0xff,0xac,0xff,0x9,0x0,0xf,0x0,0x66,0x0,0x68,0x0,0x4b,0x0,0x55,
0x0,0xd3,0xff,0xdc,0xff,0x99,0xff,0x9b,0xff,0xe0,0xff,0xe8,0xff,0x59,0x0,0x5e,
0x0,0x81,0x0,0x95,0x0,0x34,0x0,0x46,0x0,0xd6,0xff,0xd6,0xff,0xd7,0xff,0xd1,
0xff,0x16,0x0,0xb,0x0,0x3a,0x0,0x44,0x0,0x3b,0x0,0x4a,0x0,0x27,0x0,0x25,
0x0,0xc,0x0,0x9,0x0,0x1,0x0,0xfb,0xff,0x22,0x0,0x20,0x0,0x66,0x0,0x5d,
0x0,0x63,0x0,0x58,0x0,0x13,0x0,0xc,0x0,0xd8,0xff,0xc1,0xff,0xd5,0xff,0xc3,
0xff,0x9,0x0,0x1,0x0,0x38,0x0,0x3d,0x0,0x31,0x0,0x39,0x0,0xfb,0xff,0xeb,
0xff,0xd0,0xff,0xb9,0xff,0xdf,0xff,0xcd,0xff,0x7,0x0,0xe,0x0,0x37,0x0,0x4a,
0x0,0x3c,0x0,0x33,0x0,0x1,0x0,0xfb,0xff,0xf6,0xff,0x2,0x0,0x13,0x0,0x2b,
0x0,0x24,0x0,0x3b,0x0,0x1e,0x0,0x25,0x0,0xfd,0xff,0x9,0x0,0xf,0x0,0x16,
0x0,0x56,0x0,0x55,0x0,0x89,0x0,0x8a,0x0,0x6a,0x0,0x70,0x0,0x13,0x0,0x25,
0x0,0xff,0xff,0xb,0x0,0x37,0x0,0x41,0x0,0x73,0x0,0x70,0x0,0x80,0x0,0x68,
0x0,0x58,0x0,0x56,0x0,0x3e,0x0,0x54,0x0,0x33,0x0,0x50,0x0,0x38,0x0,0x3b,
0x0,0x48,0x0,0x2d,0x0,0x2c,0x0,0x26,0x0,0xf5,0xff,0x9,0x0,0xd9,0xff,0xeb,
0xff,0xed,0xff,0xe0,0xff,0xf,0x0,0xf3,0xff,0xf,0x0,0x16,0x0,0xf5,0xff,0x15,
0x0,0xd5,0xff,0xeb,0xff,0xc7,0xff,0xbe,0xff,0xd4,0xff,0xc2,0xff,0xf6,0xff,0xf3,
0xff,0xc,0x0,0xe,0x0,0xed,0xff,0x1,0x0,0xbe,0xff,0xd4,0xff,0xc7,0xff,0xcb,
0xff,0x8,0x0,0x4,0x0,0x2f,0x0,0x1f,0x0,0x19,0x0,0x14,0x0,0xf6,0xff,0x9,
0x0,0xf5,0xff,0x3,0x0,0x26,0x0,0x16,0x0,0x5a,0x0,0x38,0x0,0x6e,0x0,0x5f,
0x0,0x67,0x0,0x6f,0x0,0x57,0x0,0x69,0x0,0x6d,0x0,0x77,0x0,0x7f,0x0,0x76,
0x0,0x6d,0x0,0x62,0x0,0x63,0x0,0x58,0x0,0x67,0x0,0x66,0x0,0x78,0x0,0x8b,
0x0,0x78,0x0,0x79,0x0,0x68,0x0,0x50,0x0,0x68,0x0,0x55,0x0,0x5f,0x0,0x66,
0x0,0x51,0x0,0x69,0x0,0x2b,0x0,0x35,0x0,0xf9,0xff,0xf6,0xff,0xef,0xff,0xef,
0xff,0x1,0x0,0x3,0x0,0x9,0x0,0x7,0x0,0xbe,0xff,0xc0,0xff,0x64,0xff,0x68,
0xff,0x96,0xff,0x89,0xff,0x17,0x0,0x6,0x0,0x4b,0x0,0x4e,0x0,0xde,0xff,0xee,
0xff,0x41,0xff,0x49,0xff,0x4b,0xff,0x3f,0xff,0xfc,0xff,0xee,0xff,0x94,0x0,0x92,
0x0,0x61,0x0,0x60,0x0,0xb2,0xff,0xb6,0xff,0x80,0xff,0x8e,0xff,0xfd,0xff,0xe,
0x0,0x93,0x0,0x98,0x0,0x87,0x0,0x86,0x0,0xf3,0xff,0x0,0x0,0xba,0xff,0xd5,
0xff,0x2e,0x0,0x43,0x0,0xb9,0x0,0xc3,0x0,0xa4,0x0,0xad,0x0,0x19,0x0,0x1a,
0x0,0xdc,0xff,0xd7,0xff,0x2f,0x0,0x2f,0x0,0xa7,0x0,0xa6,0x0,0xbf,0x0,0xba,
0x0,0x70,0x0,0x6a,0x0,0x22,0x0,0x1c,0x0,0x27,0x0,0x1c,0x0,0x5b,0x0,0x53,
0x0,0x70,0x0,0x70,0x0,0x57,0x0,0x59,0x0,0x25,0x0,0x25,0x0,0x12,0x0,0x2,
0x0,0x32,0x0,0x17,0x0,0x4e,0x0,0x44,0x0,0x3d,0x0,0x43,0x0,0xfa,0xff,0xfc,
0xff,0xbb,0xff,0xb4,0xff,0xb0,0xff,0xb5,0xff,0xd9,0xff,0xea,0xff,0x4,0x0,0x10,
0x0,0xed,0xff,0xf2,0xff,0xb7,0xff,0xb3,0xff,0x96,0xff,0x95,0xff,0xa5,0xff,0xad,
0xff,0xe9,0xff,0xf0,0xff,0xd,0x0,0x13,0x0,0xf7,0xff,0xfc,0xff,0xcc,0xff,0xd6,
0xff,0xc0,0xff,0xc2,0xff,0xfa,0xff,0xea,0xff,0x2e,0x0,0x2a,0x0,0x3c,0x0,0x3e,
0x0,0x34,0x0,0x2e,0x0,0x24,0x0,0x19,0x0,0x29,0x0,0x22,0x0,0x31,0x0,0x42,
0x0,0x55,0x0,0x67,0x0,0x85,0x0,0x7b,0x0,0x81,0x0,0x64,0x0,0x60,0x0,0x51,
0x0,0x3d,0x0,0x48,0x0,0x40,0x0,0x46,0x0,0x5b,0x0,0x60,0x0,0x4f,0x0,0x52,
0x0,0x26,0x0,0x29,0x0,0xa,0x0,0x19,0x0,0x21,0x0,0x28,0x0,0x4a,0x0,0x4a,
0x0,0x45,0x0,0x45,0x0,0x2d,0x0,0x2f,0x0,0x1f,0x0,0x2f,0x0,0x1b,0x0,0x28,
0x0,0x10,0x0,0x14,0x0,0xfa,0xff,0xe8,0xff,0xe9,0xff,0xcf,0xff,0xf1,0xff,0xec,
0xff,0x2a,0x0,0x1d,0x0,0x5f,0x0,0x49,0x0,0x54,0x0,0x46,0x0,0x2b,0x0,0x2e,
0x0,0xb,0x0,0x1a,0x0,0xf4,0xff,0xeb,0xff,0xf1,0xff,0xda,0xff,0xd,0x0,0x0,
0x0,0x24,0x0,0x28,0x0,0x12,0x0,0x1e,0x0,0xd7,0xff,0xe1,0xff,0xad,0xff,0xc4,
0xff,0xd5,0xff,0xe3,0xff,0x18,0x0,0x12,0x0,0x23,0x0,0x15,0x0,0xf5,0xff,0xe1,
0xff,0xbe,0xff,0xbf,0xff,0xcb,0xff,0xcb,0xff,0xfe,0xff,0xf7,0xff,0x7,0x0,0x10,
0x0,0xd8,0xff,0xe0,0xff,0xba,0xff,0xc6,0xff,0x6,0x0,0x11,0x0,0x60,0x0,0x63,
0x0,0x56,0x0,0x54,0x0,0x12,0x0,0x6,0x0,0x9,0x0,0xfd,0xff,0x52,0x0,0x46,
0x0,0x72,0x0,0x6b,0x0,0x59,0x0,0x5b,0x0,0x4d,0x0,0x50,0x0,0x37,0x0,0x42,
0x0,0x2c,0x0,0x2f,0x0,0x4f,0x0,0x57,0x0,0x8d,0x0,0xa2,0x0,0x9d,0x0,0xa3,
0x0,0x5f,0x0,0x59,0x0,0x38,0x0,0x27,0x0,0x3b,0x0,0x29,0x0,0x2e,0x0,0x17,
0x0,0x9,0x0,0xf1,0xff,0xf0,0xff,0xf1,0xff,0xb,0x0,0x7,0x0,0x1c,0x0,0x10,
0x0,0xf6,0xff,0xfa,0xff,0xc7,0xff,0xca,0xff,0xb1,0xff,0xab,0xff,0xda,0xff,0xc6,
0xff,0x24,0x0,0x17,0x0,0x46,0x0,0x4f,0x0,0x1f,0x0,0x36,0x0,0xe0,0xff,0xf4,
0xff,0xe6,0xff,0xe2,0xff,0x16,0x0,0x15,0x0,0x28,0x0,0x33,0x0,0x23,0x0,0x2d,
0x0,0x22,0x0,0x2b,0x0,0x21,0x0,0x21,0x0,0x1d,0x0,0x22,0x0,0x15,0x0,0x15,
0x0,0xf8,0xff,0xe6,0xff,0xd7,0xff,0xd0,0xff,0xdc,0xff,0xe3,0xff,0xe,0x0,0x16,
0x0,0x34,0x0,0x2b,0x0,0x6,0x0,0xf7,0xff,0xa9,0xff,0xa7,0xff,0x86,0xff,0x79,
0xff,0xc0,0xff,0xae,0xff,0x1c,0x0,0x10,0x0,0x26,0x0,0x2a,0x0,0xde,0xff,0xf4,
0xff,0xa0,0xff,0xb1,0xff,0xb7,0xff,0xbb,0xff,0x9,0x0,0x6,0x0,0x41,0x0,0x49,
0x0,0x52,0x0,0x72,0x0,0x43,0x0,0x63,0x0,0x3c,0x0,0x3e,0x0,0x60,0x0,0x48,
0x0,0x7b,0x0,0x79,0x0,0x78,0x0,0x98,0x0,0x5d,0x0,0x70,0x0,0x48,0x0,0x3f,
0x0,0x61,0x0,0x43,0x0,0x77,0x0,0x5a,0x0,0x75,0x0,0x6c,0x0,0x59,0x0,0x61,
0x0,0x39,0x0,0x4a,0x0,0x30,0x0,0x2e,0x0,0x24,0x0,0x1,0x0,0x21,0x0,0xfd,
0xff,0x15,0x0,0x4,0x0,0xf8,0xff,0xe8,0xff,0xd,0x0,0xec,0xff,0x3b,0x0,0x27,
0x0,0x37,0x0,0x40,0x0,0xf7,0xff,0x1,0x0,0xca,0xff,0xcf,0xff,0xeb,0xff,0xef,
0xff,0xd,0x0,0x10,0x0,0xf9,0xff,0x3,0x0,0xd8,0xff,0xea,0xff,0xdf,0xff,0xf1,
0xff,0xf8,0xff,0x12,0x0,0xec,0xff,0xb,0x0,0xe1,0xff,0xe3,0xff,0xef,0xff,0xe1,
0xff,0x3,0x0,0xc,0x0,0x5,0x0,0x1e,0x0,0xdf,0xff,0xfa,0xff,0xcf,0xff,0xdf,
0xff,0xf8,0xff,0xf1,0xff,0x8,0x0,0xff,0xff,0xdd,0xff,0xdd,0xff,0xc4,0xff,0xb7,
0xff,0xf0,0xff,0xd8,0xff,0x3a,0x0,0x2e,0x0,0x60,0x0,0x5e,0x0,0x44,0x0,0x49,
0x0,0x26,0x0,0x23,0x0,0x45,0x0,0x24,0x0,0x8e,0x0,0x60,0x0,0xd2,0x0,0xb3,
0x0,0xcf,0x0,0xc7,0x0,0x89,0x0,0x8c,0x0,0x4d,0x0,0x45,0x0,0x4b,0x0,0x36,
0x0,0x75,0x0,0x75,0x0,0x89,0x0,0xaa,0x0,0x6a,0x0,0x90,0x0,0x2d,0x0,0x4b,
0x0,0xff,0xff,0x8,0x0,0xf9,0xff,0xe8,0xff,0xf7,0xff,0xfe,0xff,0xf3,0xff,0x1f,
0x0,0xe4,0xff,0x0,0x0,0xcc,0xff,0xbb,0xff,0xde,0xff,0xbc,0xff,0xe3,0xff,0xd5,
0xff,0xb7,0xff,0xbb,0xff,0x9d,0xff,0x96,0xff,0xb4,0xff,0x99,0xff,0xcf,0xff,0xcc,
0xff,0xc9,0xff,0xf3,0xff,0xd3,0xff,0xe6,0xff,0xee,0xff,0xd4,0xff,0xf4,0xff,0xe0,
0xff,0x6,0x0,0x8,0x0,0x21,0x0,0x26,0x0,0x2a,0x0,0x2c,0x0,0x1d,0x0,0x22,
0x0,0x14,0x0,0x18,0x0,0x42,0x0,0x4a,0x0,0x74,0x0,0x88,0x0,0x61,0x0,0x77,
0x0,0x19,0x0,0x34,0x0,0xea,0xff,0xfb,0xff,0x3,0x0,0xf5,0xff,0x1b,0x0,0xc,
0x0,0x2,0x0,0x2,0x0,0xe1,0xff,0xef,0xff,0xe0,0xff,0xf3,0xff,0xa,0x0,0x13,
0x0,0x37,0x0,0x24,0x0,0x26,0x0,0xfc,0xff,0xe8,0xff,0xce,0xff,0xd8,0xff,0xd2,
0xff,0x3,0x0,0xf7,0xff,0x1c,0x0,0x0,0x0,0x6,0x0,0xe2,0xff,0xed,0xff,0xdc,
0xff,0x2,0x0,0xfe,0xff,0x2b,0x0,0x29,0x0,0x33,0x0,0x3c,0x0,0x21,0x0,0x34,
0x0,0x3,0x0,0x1f,0x0,0xea,0xff,0x3,0x0,0xa,0x0,0x17,0x0,0x45,0x0,0x4b,
0x0,0x37,0x0,0x3e,0x0,0xec,0xff,0xfd,0xff,0xae,0xff,0xba,0xff,0x8a,0xff,0x92,
0xff,0x9f,0xff,0xb3,0xff,0xe5,0xff,0xf6,0xff,0x3,0x0,0xb,0x0,0xe2,0xff,0xe1,
0xff,0xa2,0xff,0x9c,0xff,0x90,0xff,0x87,0xff,0xd2,0xff,0xcd,0xff,0x22,0x0,0x2e,
0x0,0x5b,0x0,0x57,0x0,0x7d,0x0,0x54,0x0,0x86,0x0,0x5e,0x0,0x8e,0x0,0x89,
0x0,0xa5,0x0,0xb6,0x0,0xcb,0x0,0xc2,0x0,0xd7,0x0,0xb8,0x0,0xc1,0x0,0xa8,
0x0,0xb4,0x0,0xa2,0x0,0xac,0x0,0x99,0x0,0x78,0x0,0x5d,0x0,0xf8,0xff,0xf3,
0xff,0x80,0xff,0x9d,0xff,0x75,0xff,0x8a,0xff,0xb0,0xff,0xab,0xff,0xcb,0xff,0xbb,
0xff,0x8c,0xff,0x8f,0xff,0x26,0xff,0x3d,0xff,0xd7,0xfe,0xf0,0xfe,0xa8,0xfe,0xc1,
0xfe,0xbb,0xfe,0xcb,0xfe,0xe9,0xfe,0x3,0xff,0x1,0xff,0x32,0xff,0x22,0xff,0x46,
0xff,0x45,0xff,0x46,0xff,0x65,0xff,0x5c,0xff,0xad,0xff,0xcd,0xff,0x23,0x0,0x61,
0x0,0x9f,0x0,0xc0,0x0,0xfe,0x0,0xeb,0x0,0x26,0x1,0x7,0x1,0x25,0x1,0x39,
0x1,0x2a,0x1,0x55,0x1,0x35,0x1,0x3d,0x1,0x41,0x1,0x2d,0x1,0x5b,0x1,0x3c,
0x1,0x5d,0x1,0x4b,0x1,0x1f,0x1,0x1d,0x1,0xbd,0x0,0xac,0x0,0x65,0x0,0x44,
0x0,0x31,0x0,0xc,0x0,0x1c,0x0,0xfc,0xff,0x7,0x0,0xf6,0xff,0xd0,0xff,0xcf,
0xff,0x7d,0xff,0x76,0xff,0x38,0xff,0x21,0xff,0x1a,0xff,0x8,0xff,0x4,0xff,0xf3,
0xfe,0xe1,0xfe,0xcb,0xfe,0xe7,0xfe,0xd6,0xfe,0x12,0xff,0xb,0xff,0x1e,0xff,0x2b,
0xff,0x6,0xff,0x21,0xff,0x5,0xff,0x1f,0xff,0x47,0xff,0x65,0xff,0xa2,0xff,0xc3,
0xff,0xd5,0xff,0xec,0xff,0xe9,0xff,0xe3,0xff,0xfd,0xff,0xf7,0xff,0x3d,0x0,0x5e,
0x0,0x99,0x0,0xcd,0x0,0xd9,0x0,0xfc,0x0,0xe5,0x0,0xed,0x0,0xb0,0x0,0xb4,
0x0,0x81,0x0,0x93,0x0,0x9a,0x0,0xb4,0x0,0xc3,0x0,0xdf,0x0,0xb2,0x0,0xc8,
0x0,0x76,0x0,0x79,0x0,0x52,0x0,0x3b,0x0,0x4e,0x0,0x34,0x0,0x4e,0x0,0x4b,
0x0,0x44,0x0,0x4c,0x0,0x28,0x0,0x2b,0x0,0x10,0x0,0xe,0x0,0xee,0xff,0xe9,
0xff,0xae,0xff,0xa5,0xff,0x67,0xff,0x5e,0xff,0x31,0xff,0x2c,0xff,0x3c,0xff,0x2c,
0xff,0x74,0xff,0x56,0xff,0x80,0xff,0x6a,0xff,0x74,0xff,0x64,0xff,0x9d,0xff,0x87,
0xff,0xea,0xff,0xdd,0xff,0x15,0x0,0x21,0x0,0x4,0x0,0x1d,0x0,0xd9,0xff,0xe3,
0xff,0xe4,0xff,0xdb,0xff,0x36,0x0,0x32,0x0,0x63,0x0,0x64,0x0,0x16,0x0,0xa,
0x0,0xae,0xff,0xa2,0xff,0xcf,0xff,0xd7,0xff,0x6c,0x0,0x79,0x0,0xbf,0x0,0xc0,
0x0,0x68,0x0,0x63,0x0,0xd9,0xff,0xda,0xff,0xa3,0xff,0xb9,0xff,0xde,0xff,0x5,
0x0,0x2c,0x0,0x47,0x0,0x30,0x0,0x32,0x0,0xed,0xff,0xdf,0xff,0xc0,0xff,0xba,
0xff,0xf8,0xff,0x11,0x0,0x7d,0x0,0x96,0x0,0xd2,0x0,0xbc,0x0,0xa3,0x0,0x7c,
0x0,0x43,0x0,0x46,0x0,0x1d,0x0,0x3e,0x0,0x25,0x0,0x30,0x0,0xd,0x0,0xf3,
0xff,0xcd,0xff,0xab,0xff,0xd1,0xff,0xb8,0xff,0x1b,0x0,0xc,0x0,0x2a,0x0,0x26,
0x0,0x0,0x0,0x4,0x0,0xe0,0xff,0xed,0xff,0xc8,0xff,0xe1,0xff,0xb1,0xff,0xc6,
0xff,0x9c,0xff,0x9f,0xff,0x83,0xff,0x84,0xff,0x45,0xff,0x5c,0xff,0xce,0xfe,0xfc,
0xfe,0x8f,0xfe,0xbf,0xfe,0x6,0xff,0x19,0xff,0xa1,0xff,0xa2,0xff,0xbb,0xff,0xd1,
0xff,0xc0,0xff,0xe7,0xff,0xf7,0xff,0x13,0x0,0xff,0xff,0x1,0x0,0xcd,0xff,0xc0,
0xff,0xca,0xff,0xcf,0xff,0x38,0x0,0x45,0x0,0x97,0x0,0x91,0x0,0x69,0x0,0x5c,
0x0,0x5e,0x0,0x52,0x0,0xe4,0x0,0xd5,0x0,0x20,0x1,0x14,0x1,0xd1,0x0,0xc3,
0x0,0xb1,0x0,0x9a,0x0,0xe6,0x0,0xd7,0x0,0xa,0x1,0xd,0x1,0xd4,0x0,0xd9,
0x0,0x48,0x0,0x3c,0x0,0xe4,0xff,0xb9,0xff,0xf0,0xff,0xca,0xff,0x2d,0x0,0x2d,
0x0,0x5a,0x0,0x60,0x0,0x1c,0x0,0x22,0x0,0x91,0xff,0xa5,0xff,0x89,0xff,0x93,
0xff,0x7,0x0,0xf7,0xff,0x8,0x0,0xf7,0xff,0x49,0xff,0x50,0xff,0xb2,0xfe,0xcb,
0xfe,0x2,0xff,0x8,0xff,0xb9,0xff,0xa9,0xff,0xc0,0xff,0xc3,0xff,0x33,0xff,0x45,
0xff,0xfe,0xfe,0xfe,0xfe,0x2a,0xff,0x24,0xff,0x56,0xff,0x5e,0xff,0x6b,0xff,0x7d,
0xff,0x61,0xff,0x77,0xff,0x77,0xff,0x89,0xff,0xdb,0xff,0xe0,0xff,0x2a,0x0,0x26,
0x0,0x3b,0x0,0x37,0x0,0x42,0x0,0x4f,0x0,0x53,0x0,0x78,0x0,0x7d,0x0,0xab,
0x0,0xb3,0x0,0xd8,0x0,0xc3,0x0,0xdd,0x0,0xb2,0x0,0xc9,0x0,0x8c,0x0,0xa1,
0x0,0x67,0x0,0x7e,0x0,0x89,0x0,0xa2,0x0,0xc6,0x0,0xd0,0x0,0xb6,0x0,0xa1,
0x0,0x7f,0x0,0x5c,0x0,0x62,0x0,0x54,0x0,0x40,0x0,0x54,0x0,0xf9,0xff,0xe,
0x0,0xa6,0xff,0x94,0xff,0x95,0xff,0x73,0xff,0xd5,0xff,0xc5,0xff,0xf6,0xff,0xe9,
0xff,0xcf,0xff,0xae,0xff,0x92,0xff,0x66,0xff,0x2d,0xff,0x11,0xff,0xba,0xfe,0xb9,
0xfe,0xb8,0xfe,0xb2,0xfe,0x26,0xff,0xe,0xff,0x85,0xff,0x7a,0xff,0x92,0xff,0x96,
0xff,0x70,0xff,0x64,0xff,0x44,0xff,0x33,0xff,0x16,0xff,0x1d,0xff,0xe,0xff,0x23,
0xff,0x6c,0xff,0x75,0xff,0xfd,0xff,0xfe,0xff,0x4c,0x0,0x5d,0x0,0x5d,0x0,0x76,
0x0,0x6b,0x0,0x78,0x0,0x7b,0x0,0x85,0x0,0x96,0x0,0xa8,0x0,0xd5,0x0,0xe3,
0x0,0x22,0x1,0x1f,0x1,0x3d,0x1,0x36,0x1,0x2,0x1,0x8,0x1,0x9c,0x0,0xa1,
0x0,0x5b,0x0,0x55,0x0,0x4c,0x0,0x56,0x0,0x44,0x0,0x5d,0x0,0x2b,0x0,0x37,
0x0,0x25,0x0,0x26,0x0,0x40,0x0,0x43,0x0,0x32,0x0,0x3b,0x0,0xcc,0xff,0xe0,
0xff,0x59,0xff,0x6d,0xff,0x29,0xff,0x25,0xff,0x2a,0xff,0x8,0xff,0x21,0xff,0xfa,
0xfe,0x0,0xff,0xff,0xfe,0xea,0xfe,0xfe,0xfe,0x2,0xff,0xe7,0xfe,0x47,0xff,0xb,
0xff,0x8f,0xff,0x79,0xff,0x98,0xff,0x9d,0xff,0x64,0xff,0x55,0xff,0x59,0xff,0x42,
0xff,0xaa,0xff,0xa2,0xff,0xf7,0xff,0xfd,0xff,0xf9,0xff,0xff,0xff,0xdc,0xff,0xda,
0xff,0xe4,0xff,0xd5,0xff,0x10,0x0,0xff,0xff,0x3b,0x0,0x3f,0x0,0x51,0x0,0x6f,
0x0,0x59,0x0,0x7a,0x0,0x5c,0x0,0x71,0x0,0x5e,0x0,0x70,0x0,0x60,0x0,0x78,
0x0,0x6b,0x0,0x7f,0x0,0x79,0x0,0x76,0x0,0x63,0x0,0x4c,0x0,0x2a,0x0,0x17,
0x0,0x13,0x0,0x10,0x0,0x2b,0x0,0x38,0x0,0x4a,0x0,0x5b,0x0,0x63,0x0,0x68,
0x0,0x6b,0x0,0x5e,0x0,0x54,0x0,0x3f,0x0,0x3f,0x0,0x39,0x0,0x4c,0x0,0x60,
0x0,0x65,0x0,0x6b,0x0,0x51,0x0,0x2b,0x0,0xfe,0xff,0xda,0xff,0xae,0xff,0xb1,
0xff,0x99,0xff,0xa2,0xff,0xa1,0xff,0x9e,0xff,0x9d,0xff,0x98,0xff,0x75,0xff,0x75,
0xff,0x21,0xff,0x31,0xff,0xd4,0xfe,0xf1,0xfe,0xca,0xfe,0xd8,0xfe,0xf0,0xfe,0xef,
0xfe,0x13,0xff,0x1d,0xff,0x1f,0xff,0x32,0xff,0x29,0xff,0x36,0xff,0x48,0xff,0x4e,
0xff,0x6f,0xff,0x70,0xff,0x91,0xff,0x95,0xff,0xd4,0xff,0xdc,0xff,0x3f,0x0,0x4d,
0x0,0x8f,0x0,0xa6,0x0,0xa0,0x0,0xac,0x0,0x9d,0x0,0x8b,0x0,0xa1,0x0,0x85,
0x0,0xa0,0x0,0x95,0x0,0xb4,0x0,0xb4,0x0,0xf0,0x0,0xe5,0x0,0x1d,0x1,0xf9,
0x0,0x1d,0x1,0xe8,0x0,0x4,0x1,0xd8,0x0,0xc3,0x0,0xb7,0x0,0x56,0x0,0x6c,
0x0,0xf8,0xff,0x7,0x0,0xbe,0xff,0xa3,0xff,0x94,0xff,0x72,0xff,0x84,0xff,0x89,
0xff,0x89,0xff,0xa3,0xff,0x6b,0xff,0x77,0xff,0x2b,0xff,0x35,0xff,0x25,0xff,0x3d,
0xff,0x52,0xff,0x76,0xff,0x3b,0xff,0x5f,0xff,0xe9,0xfe,0x2,0xff,0xf0,0xfe,0xfc,
0xfe,0x61,0xff,0x70,0xff,0xb5,0xff,0xce,0xff,0xb3,0xff,0xce,0xff,0xc4,0xff,0xda,
0xff,0x19,0x0,0x1a,0x0,0x40,0x0,0x2d,0x0,0x2f,0x0,0x23,0x0,0x6e,0x0,0x6d,
0x0,0xc3,0x0,0xc3,0x0,0xa1,0x0,0xab,0x0,0x6c,0x0,0x6e,0x0,0x80,0x0,0x5c,
0x0,0x51,0x0,0x21,0x0,0xc5,0xff,0x9f,0xff,0x9a,0xff,0x7b,0xff,0x13,0x0,0xd,
0x0,0x6d,0x0,0x7e,0x0,0x15,0x0,0x1a,0x0,0xa9,0xff,0xa3,0xff,0xc8,0xff,0xcd,
0xff,0xd9,0xff,0xeb,0xff,0x6f,0xff,0x7c,0xff,0x46,0xff,0x3c,0xff,0xbd,0xff,0xad,
0xff,0x2c,0x0,0x31,0x0,0x16,0x0,0x29,0x0,0xd7,0xff,0xe3,0xff,0xea,0xff,0xec,
0xff,0x22,0x0,0x1b,0x0,0x1b,0x0,0x1a,0x0,0xfc,0xff,0xf,0x0,0xfe,0xff,0x19,
0x0,0x6,0x0,0x10,0x0,0xb,0x0,0x6,0x0,0xfd,0xff,0x1,0x0,0xb5,0xff,0xbd,
0xff,0x6c,0xff,0x5d,0xff,0x83,0xff,0x6b,0xff,0xd1,0xff,0xd8,0xff,0xd0,0xff,0xfa,
0xff,0x71,0xff,0x9b,0xff,0x4c,0xff,0x51,0xff,0x92,0xff,0x88,0xff,0xc7,0xff,0xd7,
0xff,0xba,0xff,0xd0,0xff,0xb3,0xff,0xb8,0xff,0xea,0xff,0xfb,0xff,0x5c,0x0,0x80,
0x0,0xb0,0x0,0xc3,0x0,0x94,0x0,0x9a,0x0,0x67,0x0,0x75,0x0,0x92,0x0,0x97,
0x0,0xbe,0x0,0xaa,0x0,0x89,0x0,0x67,0x0,0x46,0x0,0x23,0x0,0x7e,0x0,0x56,
0x0,0xe5,0x0,0xb3,0x0,0xa1,0x0,0x68,0x0,0xdc,0xff,0xab,0xff,0xaa,0xff,0x8c,
0xff,0x1b,0x0,0x3,0x0,0x3d,0x0,0x1f,0x0,0xc4,0xff,0xb6,0xff,0x49,0xff,0x55,
0xff,0x2d,0xff,0x2f,0xff,0x26,0xff,0xd,0xff,0xff,0xfe,0xf2,0xfe,0x19,0xff,0x2e,
0xff,0x80,0xff,0x94,0xff,0xae,0xff,0xa5,0xff,0x99,0xff,0x96,0xff,0x8f,0xff,0xb5,
0xff,0x6b,0xff,0xaa,0xff,0x39,0xff,0x77,0xff,0x8f,0xff,0xc1,0xff,0x6e,0x0,0x87,
0x0,0xe2,0x0,0xe6,0x0,0x6e,0x0,0x87,0x0,0xf9,0xff,0x38,0x0,0x46,0x0,0x78,
0x0,0x89,0x0,0x81,0x0,0x14,0x0,0xee,0xff,0xcf,0xff,0xbd,0xff,0x70,0x0,0x6e,
0x0,0xf4,0x0,0xe8,0x0,0x61,0x0,0x54,0x0,0x9a,0xff,0x8f,0xff,0xce,0xff,0xb7,
0xff,0x57,0x0,0x42,0x0,0x7,0x0,0xc,0x0,0x81,0xff,0x8e,0xff,0xd2,0xff,0xc4,
0xff,0x44,0x0,0x2e,0x0,0x11,0x0,0x15,0x0,0x4,0x0,0x11,0x0,0x9b,0x0,0x8a,
0x0,0x4,0x1,0xe0,0x0,0xcc,0x0,0xc8,0x0,0x82,0x0,0xa2,0x0,0x6e,0x0,0x91,
0x0,0x2e,0x0,0x4d,0x0,0xd5,0xff,0xef,0xff,0x2,0x0,0xf,0x0,0x70,0x0,0x6f,
0x0,0x19,0x0,0x16,0x0,0x6e,0xff,0x76,0xff,0xb6,0xff,0xbc,0xff,0x2f,0x0,0x26,
0x0,0x75,0xff,0x77,0xff,0xa6,0xfe,0xaa,0xfe,0x22,0xff,0x0,0xff,0xac,0xff,0x83,
0xff,0xf9,0xfe,0xf6,0xfe,0x28,0xfe,0x22,0xfe,0x96,0xfe,0x73,0xfe,0xa9,0xff,0x8d,
0xff,0x10,0x0,0x15,0x0,0xc9,0xff,0xe6,0xff,0xaf,0xff,0xc7,0xff,0xe0,0xff,0xed,
0xff,0x16,0x0,0x25,0x0,0x79,0x0,0x7e,0x0,0xcf,0x0,0xc4,0x0,0x99,0x0,0x99,
0x0,0x6f,0x0,0x7c,0x0,0x11,0x1,0xc,0x1,0xb2,0x1,0x9c,0x1,0x66,0x1,0x5c,
0x1,0xce,0x0,0xe3,0x0,0xe5,0x0,0x0,0x1,0x4b,0x1,0x57,0x1,0x4,0x1,0x10,
0x1,0x36,0x0,0x45,0x0,0xfa,0xff,0xfd,0xff,0x57,0x0,0x5e,0x0,0x47,0x0,0x5d,
0x0,0xb3,0xff,0xc6,0xff,0x3f,0xff,0x47,0xff,0xf2,0xfe,0xf7,0xfe,0xe2,0xfe,0xe7,
0xfe,0x5c,0xff,0x5e,0xff,0xbf,0xff,0xb5,0xff,0x51,0xff,0x41,0xff,0x9a,0xfe,0x94,
0xfe,0x6f,0xfe,0x78,0xfe,0xcf,0xfe,0xde,0xfe,0x47,0xff,0x59,0xff,0x95,0xff,0xa8,
0xff,0xbd,0xff,0xc4,0xff,0xbc,0xff,0xad,0xff,0x82,0xff,0x6f,0xff,0x6c,0xff,0x64,
0xff,0xc7,0xff,0xc1,0xff,0x16,0x0,0xf,0x0,0xfc,0xff,0xea,0xff,0xe3,0xff,0xc2,
0xff,0x5,0x0,0xf5,0xff,0x1d,0x0,0x26,0x0,0xf,0x0,0xa,0x0,0x16,0x0,0x0,
0x0,0x92,0x0,0x7d,0x0,0x73,0x1,0x5e,0x1,0xf0,0x1,0xe4,0x1,0xa9,0x1,0xa5,
0x1,0x52,0x1,0x3e,0x1,0x83,0x1,0x58,0x1,0xe4,0x1,0xb9,0x1,0xf3,0x1,0xe8,
0x1,0xb8,0x1,0xd3,0x1,0x99,0x1,0xa4,0x1,0xb3,0x1,0x8e,0x1,0x94,0x1,0x7a,
0x1,0x1,0x1,0xf,0x1,0x5e,0x0,0x5f,0x0,0xf5,0xff,0xde,0xff,0x8e,0xff,0x99,
0xff,0xe2,0xfe,0x1d,0xff,0x29,0xfe,0x65,0xfe,0xf5,0xfd,0x12,0xfe,0x30,0xfe,0x3d,
0xfe,0x5,0xfe,0x14,0xfe,0x57,0xfd,0x6d,0xfd,0x5,0xfd,0x28,0xfd,0x69,0xfd,0x97,
0xfd,0xd9,0xfd,0xfb,0xfd,0xcb,0xfd,0xd7,0xfd,0x7e,0xfd,0x93,0xfd,0x73,0xfd,0xa6,
0xfd,0xd2,0xfd,0x8,0xfe,0x87,0xfe,0xa0,0xfe,0x6a,0xff,0x6b,0xff,0xff,0xff,0xff,
0xff,0x22,0x0,0x2d,0x0,0xa5,0x0,0xab,0x0,0xeb,0x1,0xcf,0x1,0x2,0x3,0xbf,
0x2,0x43,0x3,0x3,0x3,0x53,0x3,0x37,0x3,0xa8,0x3,0xa0,0x3,0xc0,0x3,0xa4,
0x3,0x58,0x3,0x23,0x3,0x14,0x3,0xe2,0x2,0x36,0x3,0x11,0x3,0xfe,0x2,0xd7,
0x2,0x29,0x2,0x5,0x2,0x7f,0x1,0x75,0x1,0x51,0x1,0x5e,0x1,0xd,0x1,0x11,
0x1,0x67,0x0,0x59,0x0,0x9d,0xff,0x93,0xff,0xb4,0xfe,0xc3,0xfe,0xc6,0xfd,0xde,
0xfd,0x69,0xfd,0x74,0xfd,0x96,0xfd,0xa7,0xfd,0x60,0xfd,0x8a,0xfd,0xbe,0xfc,0xe3,
0xfc,0xbc,0xfc,0xc4,0xfc,0x83,0xfd,0x86,0xfd,0x22,0xfe,0x32,0xfe,0x29,0xfe,0x3e,
0xfe,0x11,0xfe,0x20,0xfe,0x4f,0xfe,0x50,0xfe,0xae,0xfe,0xa8,0xfe,0xf2,0xfe,0xfc,
0xfe,0x6b,0xff,0x7c,0xff,0x1f,0x0,0x24,0x0,0x88,0x0,0x90,0x0,0xb5,0x0,0xce,
0x0,0xd,0x1,0x2c,0x1,0x5b,0x1,0x73,0x1,0x4c,0x1,0x50,0x1,0xf,0x1,0x12,
0x1,0xf,0x1,0x33,0x1,0x65,0x1,0x8b,0x1,0x95,0x1,0x8e,0x1,0x46,0x1,0x34,
0x1,0xeb,0x0,0xfc,0x0,0x18,0x1,0x3a,0x1,0xae,0x1,0xbd,0x1,0xe5,0x1,0xdd,
0x1,0x45,0x1,0x3d,0x1,0x8f,0x0,0x95,0x0,0x9b,0x0,0xa0,0x0,0xd2,0x0,0xda,
0x0,0x6e,0x0,0x7d,0x0,0xcf,0xff,0xd2,0xff,0x84,0xff,0x7e,0xff,0x8f,0xff,0x85,
0xff,0xc8,0xff,0xa5,0xff,0x9,0x0,0xd6,0xff,0x26,0x0,0xf5,0xff,0xea,0xff,0xb1,
0xff,0x65,0xff,0x2d,0xff,0xf8,0xfe,0xd6,0xfe,0xaa,0xfe,0x9b,0xfe,0x39,0xfe,0x3b,
0xfe,0xff,0xfd,0x6,0xfe,0x56,0xfe,0x4c,0xfe,0xcf,0xfe,0xc4,0xfe,0x5,0xff,0xd,
0xff,0x18,0xff,0x22,0xff,0x2d,0xff,0x2e,0xff,0x5d,0xff,0x60,0xff,0xd5,0xff,0xe0,
0xff,0x83,0x0,0x90,0x0,0xef,0x0,0xfe,0x0,0xc9,0x0,0xd9,0x0,0x73,0x0,0x75,
0x0,0x86,0x0,0x78,0x0,0xff,0x0,0xfd,0x0,0x6a,0x1,0x87,0x1,0x8a,0x1,0xb1,
0x1,0x7c,0x1,0x8c,0x1,0x72,0x1,0x64,0x1,0x65,0x1,0x5e,0x1,0x1b,0x1,0x3c,
0x1,0x82,0x0,0xb8,0x0,0xde,0xff,0x8,0x0,0xa0,0xff,0xba,0xff,0xe0,0xff,0xe2,
0xff,0x14,0x0,0xf8,0xff,0xd8,0xff,0xc3,0xff,0x85,0xff,0x98,0xff,0x72,0xff,0x90,
0xff,0x80,0xff,0x7c,0xff,0x77,0xff,0x61,0xff,0x3b,0xff,0x3e,0xff,0xd0,0xfe,0xea,
0xfe,0x81,0xfe,0x80,0xfe,0x9a,0xfe,0x70,0xfe,0xf8,0xfe,0xd3,0xfe,0x36,0xff,0x29,
0xff,0x49,0xff,0x31,0xff,0x89,0xff,0x5d,0xff,0xfc,0xff,0xd6,0xff,0x2e,0x0,0x14,
0x0,0xf6,0xff,0xee,0xff,0xc1,0xff,0xcb,0xff,0xf3,0xff,0xff,0xff,0x71,0x0,0x72,
0x0,0xd8,0x0,0xd6,0x0,0xf7,0x0,0x0,0x1,0xef,0x0,0x0,0x1,0xe8,0x0,0xf2,
0x0,0xf9,0x0,0x7,0x1,0x3e,0x1,0x62,0x1,0xab,0x1,0xc8,0x1,0xe1,0x1,0xe3,
0x1,0x93,0x1,0x96,0x1,0xfe,0x0,0xb,0x1,0x91,0x0,0x8f,0x0,0x66,0x0,0x4d,
0x0,0x64,0x0,0x46,0x0,0x73,0x0,0x63,0x0,0x4d,0x0,0x4f,0x0,0xcb,0xff,0xde,
0xff,0x47,0xff,0x66,0xff,0x20,0xff,0x31,0xff,0x23,0xff,0x24,0xff,0xfa,0xfe,0xd,
0xff,0xa9,0xfe,0xd1,0xfe,0x6e,0xfe,0x8d,0xfe,0x65,0xfe,0x63,0xfe,0x75,0xfe,0x53,
0xfe,0x99,0xfe,0x88,0xfe,0xf0,0xfe,0x4,0xff,0x51,0xff,0x57,0xff,0x65,0xff,0x48,
0xff,0x5d,0xff,0x3b,0xff,0x94,0xff,0x7c,0xff,0xc2,0xff,0xc4,0xff,0xa8,0xff,0xc5,
0xff,0xb9,0xff,0xcb,0xff,0x1e,0x0,0x21,0x0,0x5d,0x0,0x67,0x0,0x63,0x0,0x60,
0x0,0x8e,0x0,0x77,0x0,0xd6,0x0,0xcb,0x0,0xeb,0x0,0xff,0x0,0xdc,0x0,0xf8,
0x0,0xfc,0x0,0xfb,0x0,0x3e,0x1,0x28,0x1,0x3e,0x1,0x3c,0x1,0xc,0x1,0x23,
0x1,0x19,0x1,0x2e,0x1,0x35,0x1,0x44,0x1,0xf4,0x0,0xfd,0x0,0xb4,0x0,0xb0,
0x0,0xeb,0x0,0xe8,0x0,0x39,0x1,0x40,0x1,0x28,0x1,0x1e,0x1,0xcb,0x0,0xa5,
0x0,0x6c,0x0,0x52,0x0,0x32,0x0,0x2f,0x0,0xe,0x0,0xf8,0xff,0xe1,0xff,0xb2,
0xff,0x93,0xff,0x72,0xff,0x8,0xff,0xfb,0xfe,0x62,0xfe,0x5b,0xfe,0x17,0xfe,0xe,
0xfe,0x2a,0xfe,0x27,0xfe,0x22,0xfe,0x3a,0xfe,0xf9,0xfd,0x1e,0xfe,0x9,0xfe,0x15,
0xfe,0x39,0xfe,0x38,0xfe,0x48,0xfe,0x55,0xfe,0x60,0xfe,0x75,0xfe,0xa1,0xfe,0xc2,
0xfe,0xdf,0xfe,0x11,0xff,0xd,0xff,0x3b,0xff,0x56,0xff,0x72,0xff,0xca,0xff,0xe5,
0xff,0x65,0x0,0x8c,0x0,0x1b,0x1,0x3c,0x1,0xb1,0x1,0xb4,0x1,0xde,0x1,0xd0,
0x1,0xa9,0x1,0xa2,0x1,0x7e,0x1,0x7e,0x1,0xb2,0x1,0xb0,0x1,0x1f,0x2,0xc,
0x2,0x65,0x2,0x3f,0x2,0x74,0x2,0x53,0x2,0x6d,0x2,0x57,0x2,0x3d,0x2,0x30,
0x2,0xce,0x1,0xcb,0x1,0x51,0x1,0x3c,0x1,0xf6,0x0,0xbf,0x0,0xa6,0x0,0x66,
0x0,0x2c,0x0,0xf5,0xff,0x9a,0xff,0x72,0xff,0x47,0xff,0x2a,0xff,0x49,0xff,0x25,
0xff,0x41,0xff,0x25,0xff,0xee,0xfe,0xf5,0xfe,0x82,0xfe,0x9a,0xfe,0x30,0xfe,0x4f,
0xfe,0xee,0xfd,0x21,0xfe,0xbb,0xfd,0xeb,0xfd,0x98,0xfd,0xb8,0xfd,0x70,0xfd,0xa0,
0xfd,0x69,0xfd,0xb3,0xfd,0xc7,0xfd,0xa,0xfe,0x67,0xfe,0x82,0xfe,0xe3,0xfe,0xe5,
0xfe,0x30,0xff,0x56,0xff,0x9f,0xff,0xe3,0xff,0x46,0x0,0x62,0x0,0xca,0x0,0xc1,
0x0,0xf1,0x0,0xf5,0x0,0x7,0x1,0x14,0x1,0x66,0x1,0x6e,0x1,0xf3,0x1,0xf8,
0x1,0x5b,0x2,0x42,0x2,0x66,0x2,0x31,0x2,0x2b,0x2,0x2,0x2,0xff,0x1,0xe4,
0x1,0xf1,0x1,0xd8,0x1,0xbf,0x1,0xa9,0x1,0x5b,0x1,0x42,0x1,0x2,0x1,0xf4,
0x0,0xd7,0x0,0xe5,0x0,0xb7,0x0,0xc0,0x0,0x5f,0x0,0x5b,0x0,0xe9,0xff,0xe9,
0xff,0xa2,0xff,0x91,0xff,0x66,0xff,0x51,0xff,0xef,0xfe,0x2,0xff,0x83,0xfe,0x9d,
0xfe,0x6d,0xfe,0x67,0xfe,0x7d,0xfe,0x72,0xfe,0x5f,0xfe,0x6a,0xfe,0x16,0xfe,0x30,
0xfe,0x2,0xfe,0x10,0xfe,0x58,0xfe,0x4e,0xfe,0xbe,0xfe,0xbd,0xfe,0xdc,0xfe,0xf0,
0xfe,0xd5,0xfe,0xdf,0xfe,0xf7,0xfe,0xf3,0xfe,0x55,0xff,0x4e,0xff,0xc7,0xff,0xb1,
0xff,0x1e,0x0,0x3,0x0,0x5c,0x0,0x54,0x0,0x91,0x0,0xa2,0x0,0xc2,0x0,0xd0,
0x0,0xf7,0x0,0xdd,0x0,0x2c,0x1,0xfe,0x0,0x58,0x1,0x52,0x1,0x8d,0x1,0x9d,
0x1,0xc2,0x1,0xb3,0x1,0xd6,0x1,0xb6,0x1,0xd6,0x1,0xcd,0x1,0xce,0x1,0xe3,
0x1,0x9c,0x1,0xb9,0x1,0x36,0x1,0x40,0x1,0xc6,0x0,0xbf,0x0,0x7f,0x0,0x75,
0x0,0x5e,0x0,0x53,0x0,0x2c,0x0,0x36,0x0,0xc8,0xff,0xf2,0xff,0x3b,0xff,0x65,
0xff,0xb8,0xfe,0xcc,0xfe,0x7a,0xfe,0x89,0xfe,0x7d,0xfe,0x9b,0xfe,0x88,0xfe,0xb3,
0xfe,0x84,0xfe,0xa4,0xfe,0x72,0xfe,0x7f,0xfe,0x64,0xfe,0x75,0xfe,0x77,0xfe,0x89,
0xfe,0x8c,0xfe,0x83,0xfe,0x82,0xfe,0x5c,0xfe,0x88,0xfe,0x5d,0xfe,0xd3,0xfe,0xba,
0xfe,0x67,0xff,0x65,0xff,0x23,0x0,0x1e,0x0,0xa5,0x0,0x8f,0x0,0xb0,0x0,0x92,
0x0,0x92,0x0,0x65,0x0,0x9b,0x0,0x6c,0x0,0xd4,0x0,0xbd,0x0,0x32,0x1,0x21,
0x1,0x95,0x1,0x7a,0x1,0xda,0x1,0xc6,0x1,0xf7,0x1,0xe3,0x1,0xe8,0x1,0xdc,
0x1,0xb3,0x1,0xcf,0x1,0x5a,0x1,0x91,0x1,0xe3,0x0,0xd,0x1,0x7d,0x0,0x93,
0x0,0x60,0x0,0x5f,0x0,0x78,0x0,0x64,0x0,0x6d,0x0,0x63,0x0,0x15,0x0,0x25,
0x0,0xc4,0xff,0xd8,0xff,0xdb,0xff,0xd4,0xff,0x21,0x0,0x12,0x0,0x2c,0x0,0x4d,
0x0,0xfa,0xff,0x3c,0x0,0xa6,0xff,0xc2,0xff,0x34,0xff,0x2c,0xff,0xcd,0xfe,0xdf,
0xfe,0xa9,0xfe,0xda,0xfe,0xcb,0xfe,0xeb,0xfe,0xfb,0xfe,0xfd,0xfe,0x7,0xff,0x16,
0xff,0xfb,0xfe,0x2b,0xff,0xe0,0xfe,0x9,0xff,0xae,0xfe,0xb2,0xfe,0xa2,0xfe,0x8a,
0xfe,0x8,0xff,0xe8,0xfe,0xa4,0xff,0x97,0xff,0xfc,0xff,0xfb,0xff,0xf0,0xff,0xd6,
0xff,0xbe,0xff,0x95,0xff,0xb8,0xff,0xa4,0xff,0x5,0x0,0xfa,0xff,0x79,0x0,0x61,
0x0,0xc2,0x0,0x9d,0x0,0xc0,0x0,0x96,0x0,0x99,0x0,0x78,0x0,0x99,0x0,0x89,
0x0,0xde,0x0,0xda,0x0,0x1c,0x1,0x26,0x1,0x1d,0x1,0x28,0x1,0x1a,0x1,0x16,
0x1,0x24,0x1,0x27,0x1,0x6,0x1,0x10,0x1,0xcf,0x0,0xc9,0x0,0xb7,0x0,0xab,
0x0,0xa3,0x0,0xae,0x0,0x73,0x0,0x8f,0x0,0x3c,0x0,0x55,0x0,0x1d,0x0,0x33,
0x0,0x24,0x0,0x3c,0x0,0x38,0x0,0x50,0x0,0x36,0x0,0x4c,0x0,0x1d,0x0,0x2a,
0x0,0xe3,0xff,0xe1,0xff,0x95,0xff,0x87,0xff,0x7e,0xff,0x6f,0xff,0xad,0xff,0x9c,
0xff,0xc2,0xff,0xb4,0xff,0x8d,0xff,0x85,0xff,0x33,0xff,0x28,0xff,0xe4,0xfe,0xd3,
0xfe,0xce,0xfe,0xc1,0xfe,0xdf,0xfe,0xe4,0xfe,0xd1,0xfe,0xed,0xfe,0xaf,0xfe,0xc3,
0xfe,0xa6,0xfe,0x95,0xfe,0xb8,0xfe,0x9c,0xfe,0xeb,0xfe,0xf1,0xfe,0x2b,0xff,0x56,
0xff,0x2e,0xff,0x64,0xff,0x9,0xff,0x25,0xff,0x11,0xff,0x0,0xff,0x53,0xff,0x2b,
0xff,0xb4,0xff,0x9c,0xff,0x29,0x0,0x33,0x0,0x95,0x0,0xbd,0x0,0xe6,0x0,0x19,
0x1,0x19,0x1,0x3b,0x1,0x21,0x1,0x29,0x1,0x27,0x1,0x22,0x1,0x61,0x1,0x6b,
0x1,0x9f,0x1,0xbf,0x1,0x9b,0x1,0xb4,0x1,0x74,0x1,0x6b,0x1,0x61,0x1,0x4a,
0x1,0x6d,0x1,0x6a,0x1,0x8b,0x1,0x98,0x1,0x89,0x1,0x92,0x1,0x44,0x1,0x48,
0x1,0xd7,0x0,0xca,0x0,0x53,0x0,0x31,0x0,0xda,0xff,0xbe,0xff,0xae,0xff,0xa4,
0xff,0xb3,0xff,0xa3,0xff,0x8b,0xff,0x69,0xff,0x3d,0xff,0x1c,0xff,0xb,0xff,0xfc,
0xfe,0xf8,0xfe,0xed,0xfe,0xd2,0xfe,0xbc,0xfe,0x85,0xfe,0x80,0xfe,0x46,0xfe,0x61,
0xfe,0x4a,0xfe,0x61,0xfe,0x6e,0xfe,0x74,0xfe,0x7d,0xfe,0x8c,0xfe,0x78,0xfe,0x9c,
0xfe,0x71,0xfe,0x99,0xfe,0x74,0xfe,0x85,0xfe,0x82,0xfe,0x81,0xfe,0x8d,0xfe,0xa5,
0xfe,0xa0,0xfe,0xd3,0xfe,0xeb,0xfe,0x7,0xff,0x76,0xff,0x68,0xff,0xff,0xff,0xea,
0xff,0x4f,0x0,0x5a,0x0,0x9d,0x0,0xba,0x0,0x39,0x1,0x2f,0x1,0xe2,0x1,0xbc,
0x1,0x19,0x2,0x13,0x2,0xec,0x1,0x5,0x2,0xd4,0x1,0xe9,0x1,0x2,0x2,0x0,
0x2,0x44,0x2,0x28,0x2,0x71,0x2,0x59,0x2,0x7d,0x2,0x84,0x2,0x47,0x2,0x64,
0x2,0xc8,0x1,0xf1,0x1,0x53,0x1,0x75,0x1,0x2e,0x1,0x28,0x1,0x1d,0x1,0xf5,
0x0,0xa4,0x0,0x7e,0x0,0xc0,0xff,0xaf,0xff,0xe5,0xfe,0xec,0xfe,0x51,0xfe,0x59,
0xfe,0xf1,0xfd,0xeb,0xfd,0xc6,0xfd,0xc0,0xfd,0xb4,0xfd,0xaf,0xfd,0x68,0xfd,0x5e,
0xfd,0xef,0xfc,0xe2,0xfc,0xbe,0xfc,0x9f,0xfc,0xfa,0xfc,0xd1,0xfc,0x55,0xfd,0x4c,
0xfd,0x85,0xfd,0xa5,0xfd,0xbd,0xfd,0xe3,0xfd,0x4e,0xfe,0x5c,0xfe,0x4,0xff,0xf5,
0xfe,0x84,0xff,0x6e,0xff,0xee,0xff,0xdc,0xff,0x74,0x0,0x60,0x0,0x11,0x1,0x1,
0x1,0xc3,0x1,0xb4,0x1,0x56,0x2,0x3e,0x2,0x86,0x2,0x70,0x2,0x72,0x2,0x66,
0x2,0x55,0x2,0x4f,0x2,0x47,0x2,0x50,0x2,0x51,0x2,0x68,0x2,0x41,0x2,0x59,
0x2,0xf4,0x1,0x8,0x2,0xaa,0x1,0xb1,0x1,0x6f,0x1,0x75,0x1,0x9,0x1,0x2f,
0x1,0x84,0x0,0xbd,0x0,0x8,0x0,0x34,0x0,0xb1,0xff,0xd8,0xff,0x86,0xff,0xac,
0xff,0x56,0xff,0x6a,0xff,0x12,0xff,0x18,0xff,0xf6,0xfe,0xf6,0xfe,0xfb,0xfe,0xf8,
0xfe,0xf4,0xfe,0xec,0xfe,0xe6,0xfe,0xce,0xfe,0xc4,0xfe,0xa1,0xfe,0x85,0xfe,0x76,
0xfe,0x6a,0xfe,0x70,0xfe,0x90,0xfe,0x90,0xfe,0xc4,0xfe,0xb5,0xfe,0xe8,0xfe,0xd1,
0xfe,0x1c,0xff,0x2,0xff,0x77,0xff,0x63,0xff,0xcb,0xff,0xc2,0xff,0xd3,0xff,0xd5,
0xff,0x98,0xff,0xa3,0xff,0x65,0xff,0x76,0xff,0x5d,0xff,0x70,0xff,0x69,0xff,0x6a,
0xff,0x7a,0xff,0x5d,0xff,0xa4,0xff,0x88,0xff,0xfa,0xff,0x1,0x0,0x68,0x0,0x81,
0x0,0xbb,0x0,0xc1,0x0,0xe8,0x0,0xe2,0x0,0x2b,0x1,0x29,0x1,0x88,0x1,0x80,
0x1,0xa1,0x1,0x97,0x1,0x62,0x1,0x64,0x1,0x3b,0x1,0x31,0x1,0x6d,0x1,0x46,
0x1,0xbe,0x1,0xa3,0x1,0xfd,0x1,0x6,0x2,0x21,0x2,0x3f,0x2,0xc,0x2,0x24,
0x2,0x8a,0x1,0x94,0x1,0xb8,0x0,0xc3,0x0,0x4,0x0,0x14,0x0,0xa9,0xff,0xa8,
0xff,0x72,0xff,0x63,0xff,0x21,0xff,0x1b,0xff,0xb3,0xfe,0xb4,0xfe,0x39,0xfe,0x45,
0xfe,0xc1,0xfd,0xe0,0xfd,0x6a,0xfd,0x7e,0xfd,0x45,0xfd,0x46,0xfd,0x3d,0xfd,0x3b,
0xfd,0x45,0xfd,0x3a,0xfd,0x70,0xfd,0x72,0xfd,0xd6,0xfd,0xf9,0xfd,0x70,0xfe,0x89,
0xfe,0xc,0xff,0xa,0xff,0x99,0xff,0x96,0xff,0x3b,0x0,0x2a,0x0,0xe0,0x0,0xb9,
0x0,0x4d,0x1,0x28,0x1,0x85,0x1,0x73,0x1,0xc3,0x1,0xc6,0x1,0x30,0x2,0x34,
0x2,0xc1,0x2,0xac,0x2,0x29,0x3,0x11,0x3,0x35,0x3,0x3f,0x3,0x17,0x3,0x31,
0x3,0xee,0x2,0xfe,0x2,0x8b,0x2,0x8e,0x2,0xe8,0x1,0xd5,0x1,0x35,0x1,0x15,
0x1,0x8a,0x0,0x75,0x0,0xd9,0xff,0xd4,0xff,0x12,0xff,0x1a,0xff,0x58,0xfe,0x69,
0xfe,0xe5,0xfd,0xf9,0xfd,0xac,0xfd,0xc1,0xfd,0x67,0xfd,0x83,0xfd,0x15,0xfd,0x29,
0xfd,
// /home/pcook/code_practice/qtapps/snakegame/imgs/apple.png
0x0,0x0,0x2,0x59,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x8,0x6,0x0,0x0,0x0,0x1f,0xf3,0xff,0x61,
0x0,0x0,0x0,0x9,0x70,0x48,0x59,0x73,0x0,0x19,0x44,0xc0,0x0,0x19,0x44,0xc0,
0x1,0xb9,0x45,0x99,0x3d,0x0,0x0,0x2,0xb,0x49,0x44,0x41,0x54,0x38,0xcb,0x8d,
0x93,0x4d,0x68,0x13,0x51,0x14,0x85,0x23,0xd8,0x85,0xb8,0x77,0xe1,0x4e,0x4,0xc1,
0x8d,0x8,0xa5,0x2e,0xd2,0x9a,0x69,0x9d,0x9f,0x37,0x99,0x4c,0x9a,0xa6,0x10,0x93,
0x34,0x49,0xa7,0x86,0x8,0x9a,0x52,0x8a,0x50,0x8b,0x16,0x2c,0x8a,0x3b,0x41,0x5a,
0x10,0x2b,0x8,0x5,0x9,0xd8,0x82,0x52,0xc,0x41,0xdd,0x14,0x71,0xd3,0x85,0x88,
0x54,0xa4,0xa6,0xa0,0x44,0x44,0xac,0x60,0x37,0x16,0x15,0x51,0xf0,0xe7,0x78,0xde,
0x74,0x46,0x6a,0x48,0x48,0x7,0x3e,0x78,0xbc,0x77,0xef,0xb9,0xf7,0xbd,0x7b,0x26,
0x10,0xf0,0x3e,0xdd,0xc,0xef,0x23,0xa3,0xe4,0x3a,0x99,0x26,0xc2,0x30,0x2d,0xb9,
0x7f,0x84,0xcc,0x7,0x5a,0x7d,0xc,0x2a,0x29,0xf9,0x38,0x42,0x57,0x4f,0x42,0xb9,
0x52,0x80,0x9a,0xeb,0x7,0xf7,0xae,0x91,0x77,0x64,0x9c,0xec,0x6a,0x25,0xa0,0x87,
0x52,0x36,0xe,0xcc,0x66,0xd1,0xbe,0x30,0x82,0xce,0xf2,0x18,0xb4,0x98,0xd,0x47,
0x44,0x51,0x14,0xbd,0x88,0x98,0xd6,0xf,0xc6,0xdc,0x25,0x87,0x1a,0x25,0x4b,0x2e,
0x87,0xcd,0x30,0x3a,0x86,0x63,0xd8,0x3f,0x73,0x1c,0x7,0x6f,0xe6,0xd0,0x93,0xed,
0xc3,0x3d,0x2d,0x8d,0xf7,0xea,0x9,0xbc,0x51,0x87,0x30,0xa7,0xa7,0x90,0x10,0x91,
0x9f,0x8c,0x3d,0x5d,0x2f,0x50,0x2c,0x8a,0x18,0x56,0xd4,0x41,0x4c,0x1a,0x71,0x98,
0x96,0x5,0x3b,0x6c,0x21,0x26,0x2c,0x3c,0xd2,0x32,0xa8,0xaa,0x8e,0x7b,0x26,0x85,
0xe4,0x7a,0xc0,0xb0,0xff,0x30,0x27,0xea,0x27,0xef,0x66,0x7b,0x1b,0xd5,0xc4,0x8,
0xbe,0x56,0x1e,0xbb,0x41,0x25,0x3d,0x89,0x94,0xb0,0x91,0x24,0xa3,0x46,0x4c,0x56,
0x45,0xc5,0xeb,0x44,0xf2,0x40,0x19,0x90,0xef,0x53,0x23,0x3b,0xa4,0x40,0x7c,0x82,
0x55,0xe5,0xc1,0xfa,0xa9,0x8b,0xd8,0x98,0x2e,0xb9,0xeb,0x67,0x5a,0xe,0xf3,0x6c,
0xf9,0xe,0x79,0xe1,0x55,0xf7,0x59,0x51,0x6,0xe1,0x68,0x51,0x29,0xd2,0x2e,0x5,
0xce,0xcf,0xe8,0x9,0xf7,0x60,0x4d,0xcb,0xe3,0xf3,0xad,0x32,0xbe,0x2f,0x57,0xf1,
0x65,0xee,0xfe,0x7f,0x49,0x5b,0x79,0x49,0x81,0xb1,0x63,0x7d,0x52,0x20,0x23,0x5,
0x26,0x6e,0x78,0x2,0x3e,0x6b,0x46,0x1,0x1f,0x7a,0x87,0x9b,0xa,0x3c,0xf,0xfd,
0x13,0xc8,0x4a,0x81,0xd4,0xa4,0xd1,0xdf,0x34,0xb8,0x11,0x4b,0x9d,0x59,0xe4,0x37,
0xaf,0x10,0x94,0x2,0x7b,0xe2,0x22,0xf2,0xeb,0x2d,0xc7,0xb4,0x9d,0xe4,0x5a,0xcf,
0x10,0x2a,0xc1,0x34,0x84,0x8,0x7f,0x62,0x6e,0x9b,0x3f,0x89,0x5,0xf9,0x60,0xdb,
0x11,0x78,0xd2,0x95,0xc3,0xa5,0x6e,0xd7,0xa5,0x53,0x5b,0x7d,0x70,0x98,0x23,0xfb,
0x5d,0x6b,0xd1,0xc5,0xaa,0xe2,0xa0,0xcc,0xea,0xb6,0xb0,0xbe,0x31,0x67,0x6f,0xbd,
0x99,0xa6,0x2e,0x78,0xe3,0x6c,0xc4,0xab,0x6e,0x7,0x8b,0xc1,0xc,0xa,0x9b,0x77,
0x3f,0xd3,0xc8,0xce,0x6d,0xe4,0xe1,0x39,0x8a,0x3c,0xa5,0x7,0x5e,0xd3,0x71,0xd2,
0xc6,0x65,0x35,0x8d,0xa5,0xa3,0x59,0xdc,0xee,0x4a,0xfa,0xf,0x37,0x2b,0xad,0xdf,
0xec,0x87,0xda,0x49,0xce,0x92,0x55,0xf2,0x91,0x54,0xc8,0x22,0x59,0x27,0xcb,0xa4,
0x50,0x9f,0xfc,0x17,0x64,0xe3,0xba,0x6f,0x1c,0x52,0x5b,0x1f,0x0,0x0,0x0,0x0,
0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
// /home/pcook/code_practice/qtapps/snakegame/imgs/apple-lanczos3.png
0x0,0x0,0x4,0xfe,
0x89,
0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
0x0,0x0,0x14,0x0,0x0,0x0,0x14,0x8,0x6,0x0,0x0,0x0,0x8d,0x89,0x1d,0xd,
0x0,0x0,0x4,0xc5,0x49,0x44,0x41,0x54,0x78,0xda,0x85,0x94,0x7f,0x6c,0x13,0x65,
0x18,0xc7,0x6f,0xeb,0x18,0xc3,0x98,0xf8,0xc7,0x6,0x9,0xb8,0xa0,0x2,0x61,0x9b,
0xd0,0x76,0x64,0x30,0xb6,0xae,0xdd,0xf5,0xfa,0xde,0xbd,0xf7,0xa3,0xbf,0xee,0x6e,
0x6d,0x69,0x3b,0xdb,0xb5,0x1d,0x4,0x84,0x10,0x14,0xc3,0x1c,0x4a,0x86,0xb,0x1a,
0x34,0xb2,0x1,0x21,0x8e,0x28,0x51,0xfc,0xbd,0x41,0x40,0xd,0x51,0x99,0xe,0x35,
0x44,0x45,0xd,0xa0,0x80,0x2e,0x84,0xc0,0x80,0xad,0x1b,0x8,0xf2,0x4b,0x18,0x71,
0x5b,0xb7,0x7b,0x7c,0xaf,0x6c,0xb8,0x4,0x95,0x37,0xf9,0xe6,0xb9,0xdc,0xbd,0xef,
0x27,0xdf,0xe7,0xb9,0xf7,0x79,0x28,0x6a,0x74,0xcd,0x31,0x1a,0x1f,0x74,0xcb,0x2a,
0x8d,0x30,0xff,0x3c,0x27,0x88,0xaf,0x11,0x6d,0x27,0x5a,0x41,0xf4,0x28,0x16,0x24,
0x8a,0xc4,0x52,0xa7,0x57,0x6e,0x9d,0xf6,0x70,0xbe,0xa8,0xef,0xcf,0xcc,0xcc,0x9c,
0x40,0xfd,0xd7,0x22,0x1f,0x29,0xe3,0x5c,0x93,0xe2,0xf4,0x57,0x7d,0x53,0x99,0x50,
0x7a,0x1d,0xeb,0x62,0x97,0x98,0x86,0x9a,0x8b,0x8e,0x98,0x7a,0x9e,0x15,0xc5,0xf,
0x38,0x41,0x7a,0x9a,0x0,0x3b,0x58,0x41,0xdc,0xc2,0x61,0x21,0x7f,0xd6,0x63,0x33,
0xee,0x1e,0xcd,0xc8,0xc8,0xc8,0x22,0xca,0xb8,0x87,0x59,0x58,0x58,0xb4,0xd0,0xeb,
0xf3,0x1d,0xb0,0xac,0x50,0xc0,0xfc,0xfe,0x62,0x58,0xb8,0x7b,0x25,0xd0,0xef,0x3e,
0x5,0x68,0x4d,0x4,0x30,0xcb,0x5f,0x76,0x9,0x12,0x78,0xb0,0xf0,0x9b,0xa0,0xaa,
0xbb,0x8b,0x91,0xfd,0xd5,0x2,0xb3,0xd9,0x63,0x34,0x9a,0xc6,0x5c,0x66,0x18,0xc,
0x86,0xcc,0x3b,0x4f,0x4,0x3e,0x79,0xca,0x14,0xaa,0xac,0xc2,0xf2,0x10,0xeb,0x74,
0x6f,0x2b,0xe,0x4b,0xc3,0xb3,0x9a,0xfc,0xc3,0x85,0x6d,0x89,0x94,0xe9,0xe0,0xea,
0x54,0x49,0xcb,0x62,0x70,0x3a,0x9d,0xd0,0x80,0xd5,0x91,0x1d,0x5c,0x0,0x9a,0x59,
0x15,0xd6,0xa,0x2a,0x2c,0x55,0x83,0x47,0x78,0x59,0x6e,0x9c,0x51,0x50,0x30,0x27,
0x7b,0x42,0xf6,0x58,0xa6,0x77,0x9c,0x5a,0x6d,0x74,0xb6,0xdb,0xef,0x8f,0x7a,0x69,
0xf6,0x78,0x84,0x15,0xb5,0xca,0xb8,0x7,0x66,0x37,0xca,0x5a,0xd1,0xd6,0x0,0x18,
0xeb,0x7d,0x9a,0x5f,0x91,0x87,0xf,0xb0,0xd5,0xda,0x35,0x26,0x31,0x7c,0xb,0x2d,
0x1e,0x3c,0x8d,0x6a,0x6,0x5b,0x1d,0x1,0x58,0xc6,0xba,0x40,0x51,0x7d,0xbb,0x66,
0xce,0x2e,0x98,0x9b,0x9d,0x9d,0x86,0x1a,0xd2,0xc0,0xd2,0x72,0xb,0xef,0x97,0xab,
0x4e,0xec,0x40,0x3e,0x38,0x8e,0x22,0xa9,0x6,0xac,0x80,0x4b,0x92,0x40,0x22,0x22,
0xb5,0x83,0x18,0x76,0xc3,0x57,0x6c,0x35,0x9c,0x44,0x35,0x70,0x2,0x45,0xd3,0xf1,
0x77,0x94,0xd0,0x3a,0x49,0x5c,0x89,0xdc,0x20,0xc9,0xca,0xeb,0x46,0x93,0x39,0x3f,
0xd,0xb3,0x58,0x6d,0x59,0x16,0x8c,0xf7,0x6c,0x66,0xab,0xb4,0x8b,0xd,0xdb,0xb4,
0xfe,0x1d,0x7b,0xb5,0xce,0x8a,0x10,0xec,0xa4,0x7d,0x90,0x10,0x55,0xe0,0xb0,0x4,
0x61,0xec,0x82,0x7a,0x2c,0x43,0x84,0x77,0xc3,0xcb,0x9c,0xa,0x3f,0x13,0xe8,0x1f,
0xa8,0x56,0xbb,0x48,0xa0,0xfb,0xe9,0x30,0x2c,0x11,0x95,0xdb,0x65,0x3c,0xb7,0xc6,
0x66,0xad,0xa4,0x28,0x97,0x57,0x2e,0xf1,0x4b,0x9e,0x53,0xed,0x74,0x0,0xfe,0x5a,
0xfe,0xe2,0xc0,0xd5,0xed,0xad,0x70,0x73,0xd5,0x46,0x38,0x55,0x16,0x80,0x8f,0x4d,
0x18,0x9a,0x18,0x2f,0x34,0xf2,0x55,0xf0,0x12,0x56,0xa1,0x89,0xf3,0xc1,0x7e,0x36,
0xc,0xa7,0x51,0xc,0x92,0x28,0xe,0x3d,0x44,0x5d,0x74,0x6c,0xa0,0xd1,0xae,0x0,
0x23,0x4a,0x7b,0x3c,0x5e,0x65,0x12,0x45,0xee,0xdd,0xd2,0x67,0x78,0xf9,0xec,0x8f,
0x28,0xa2,0x5d,0xb6,0x46,0x52,0x7d,0xb1,0x7a,0xb8,0xd1,0xf6,0x39,0xfc,0xb9,0xf9,
0x1d,0xb8,0xb1,0xb6,0x19,0xce,0xd4,0xd4,0xc1,0xb7,0xf6,0x10,0xfc,0xc4,0x46,0xa0,
0xcf,0x11,0x87,0x6b,0x28,0x1,0x17,0x46,0x61,0x3a,0xf4,0x9c,0x3d,0x36,0xd8,0xc2,
0xf8,0x87,0xbd,0x9c,0x74,0x80,0xc1,0xf8,0x71,0xfd,0xc2,0xae,0x6b,0xc4,0x6a,0xf2,
0x18,0x8e,0xc1,0x25,0x2,0x4c,0xba,0x9e,0x84,0xeb,0x5b,0xde,0x83,0xfe,0x83,0x87,
0xe1,0xd6,0xd7,0x3f,0xc0,0x95,0x67,0x9b,0xe1,0x42,0x45,0x35,0x90,0xf4,0xd2,0x90,
0xee,0x71,0x30,0x5d,0x5d,0xf6,0xd8,0xd0,0x9b,0xf6,0x0,0x84,0x39,0xd7,0xf7,0xe,
0x51,0x10,0x75,0xe0,0x73,0xeb,0xb1,0x92,0xfc,0x85,0xd4,0xe5,0x32,0x4a,0xa4,0xba,
0x47,0x37,0xf6,0xb2,0xb5,0xd0,0xe7,0x5e,0xe,0xbd,0xce,0x65,0x90,0x74,0xc4,0xee,
0x2,0xc6,0xd4,0x3b,0x1a,0x4f,0xd1,0xb1,0xd4,0x1b,0xa4,0x5c,0x21,0xce,0xf5,0x1d,
0x23,0xa,0x9c,0x9e,0x72,0xed,0x2a,0xec,0xed,0x3a,0x44,0x52,0x22,0x85,0x1e,0x3a,
0xaf,0x3b,0xa8,0x8c,0x40,0x8f,0xb5,0x3a,0x1d,0xff,0xd,0xd6,0x33,0xe,0x78,0xc2,
0x16,0x1d,0x6a,0xa2,0x7d,0x9a,0x8c,0xa5,0xe,0x6,0xf3,0x85,0x14,0xe9,0x5f,0x93,
0x22,0xba,0x4f,0x7e,0x86,0x42,0xa0,0xdf,0xb1,0x73,0xfa,0x46,0x2e,0x41,0x54,0xb,
0x49,0x36,0x71,0xf,0x2c,0x39,0x2e,0xe5,0xf3,0xa4,0xa6,0x87,0x2d,0xd1,0xc1,0x3a,
0xda,0xb,0xc8,0xe9,0xdc,0xe5,0x95,0xd5,0x1c,0x7d,0x28,0x4c,0x5c,0xc0,0x30,0xed,
0x6f,0xf1,0x41,0x52,0xa7,0x78,0xda,0x61,0xf2,0x7f,0x34,0xde,0x5d,0x27,0x5d,0x3,
0xfb,0x2c,0xa1,0xa1,0x25,0x9c,0xf7,0x66,0x31,0x6d,0x7d,0x81,0xb4,0xe2,0x9d,0x46,
0x9c,0x6f,0xa9,0x58,0xb1,0x56,0xd,0x5f,0xe9,0x60,0x42,0x24,0xed,0xc4,0x70,0xcf,
0xfd,0x80,0x2c,0xf9,0x39,0x4c,0x5c,0x3b,0x54,0x11,0x81,0xd,0x36,0x19,0x9e,0x50,
0x17,0x7d,0x59,0x64,0x36,0x59,0xf5,0x4e,0x4e,0x3,0xcb,0xcb,0x2d,0x79,0xa2,0xac,
0x7c,0xfa,0xa,0x52,0xe1,0x12,0x4a,0xc,0x25,0xef,0xe3,0x52,0x4f,0xf5,0x57,0x5b,
0x8d,0xf6,0x89,0x25,0x4,0x21,0x24,0x1,0xaf,0x28,0xab,0x4c,0x26,0xf3,0x3f,0xad,
0xf7,0xc0,0xa4,0x49,0x54,0xe1,0xbc,0x79,0xf1,0xa8,0x4b,0xe9,0xfa,0x10,0x5,0x46,
0x88,0xcb,0x14,0x69,0xad,0x91,0x2e,0x72,0x81,0x89,0x23,0xad,0xf,0xc5,0x47,0x74,
0x25,0xd9,0xb8,0x76,0x8e,0xbc,0x3b,0x6d,0x8b,0xa5,0xbe,0xb0,0x84,0x53,0xab,0x1d,
0x5e,0x90,0x9c,0xee,0x8f,0xa6,0xcf,0x9c,0x55,0x94,0x33,0x31,0x47,0x1f,0xe,0x59,
0x63,0xe3,0xcb,0x60,0x34,0x17,0xe7,0xa9,0xc1,0x60,0x7d,0x98,0x15,0x87,0x5a,0xb9,
0x20,0x9c,0x21,0x7,0x6f,0x3a,0x6a,0xa1,0x87,0xb8,0x39,0x82,0x22,0x70,0xcc,0x11,
0xd5,0xbb,0x2,0x3a,0xad,0x51,0xd8,0x6b,0xd,0x41,0x9d,0x9d,0xc0,0x78,0xb1,0x53,
0x5d,0x14,0xb4,0x4e,0x9d,0x3a,0x4d,0x1f,0x63,0x13,0x32,0xf5,0xc1,0x3a,0x3a,0x76,
0xb2,0xa6,0x4f,0x7f,0x84,0x2a,0xb3,0x55,0xe6,0x3b,0x24,0x69,0x63,0x88,0x77,0x1d,
0xdd,0x84,0x7d,0x57,0xda,0xb8,0xe0,0x40,0xb,0xe7,0xbf,0xbe,0x1e,0xab,0xdd,0x1b,
0x38,0xf5,0xc2,0x56,0xc6,0x7f,0x7b,0x13,0x5d,0xd5,0xbf,0xcc,0xe1,0xe9,0x16,0x5,
0xa9,0x9d,0xc,0xdc,0x50,0xc9,0xc2,0xd2,0x8c,0xdc,0xdc,0xdc,0x34,0xe3,0xee,0x9c,
0x1d,0x5,0x67,0xe7,0xe5,0x4e,0xa6,0x3c,0xb2,0x42,0x31,0x82,0x90,0x28,0x15,0xf9,
0x83,0xc5,0x22,0xbe,0x3a,0x5f,0xc4,0x47,0xcb,0x45,0xfe,0xed,0x32,0x91,0xdf,0xb7,
0x40,0xe2,0xcf,0x96,0x4a,0x7c,0xd2,0x26,0xf0,0x3b,0x5,0x97,0xbb,0x4,0x93,0xc6,
0xc8,0x34,0x18,0x74,0x8a,0x61,0xcc,0xdc,0xdf,0xf3,0x1a,0xb4,0x6e,0xd0,0x63,0xfe,
0x2f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
};
static const unsigned char qt_resource_name[] = {
// GameStop.qml
0x0,0xc,
0x2,0xd3,0x25,0x7c,
0x0,0x47,
0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x2e,0x0,0x71,0x0,0x6d,0x0,0x6c,
// GameStopForm.ui.qml
0x0,0x13,
0xf,0x30,0x31,0x9c,
0x0,0x47,
0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x53,0x0,0x74,0x0,0x6f,0x0,0x70,0x0,0x46,0x0,0x6f,0x0,0x72,0x0,0x6d,0x0,0x2e,0x0,0x75,0x0,0x69,0x0,0x2e,0x0,0x71,
0x0,0x6d,0x0,0x6c,
// imgs
0x0,0x4,
0x0,0x7,0x3,0xe3,
0x0,0x69,
0x0,0x6d,0x0,0x67,0x0,0x73,
// sounds
0x0,0x6,
0x7,0xa6,0xc4,0xb3,
0x0,0x73,
0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x73,
// apple_crunch.wav
0x0,0x10,
0x1,0xea,0x13,0x46,
0x0,0x61,
0x0,0x70,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x5f,0x0,0x63,0x0,0x72,0x0,0x75,0x0,0x6e,0x0,0x63,0x0,0x68,0x0,0x2e,0x0,0x77,0x0,0x61,0x0,0x76,
// apple.png
0x0,0x9,
0x7,0x28,0x87,0xa7,
0x0,0x61,
0x0,0x70,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
// apple-lanczos3.png
0x0,0x12,
0x4,0x33,0xb,0x27,
0x0,0x61,
0x0,0x70,0x0,0x70,0x0,0x6c,0x0,0x65,0x0,0x2d,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x7a,0x0,0x6f,0x0,0x73,0x0,0x33,0x0,0x2e,0x0,0x70,0x0,0x6e,
0x0,0x67,
};
static const unsigned char qt_resource_struct[] = {
// :
0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x1,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/imgs
0x0,0x0,0x0,0x4a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x7,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/GameStop.qml
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
0x0,0x0,0x1,0x74,0xfa,0xeb,0x42,0x4f,
// :/sounds
0x0,0x0,0x0,0x58,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/GameStopForm.ui.qml
0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x29,
0x0,0x0,0x1,0x74,0xfa,0xeb,0x42,0x9e,
// :/sounds/sounds
0x0,0x0,0x0,0x58,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x6,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/sounds/sounds/apple_crunch.wav
0x0,0x0,0x0,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x69,
0x0,0x0,0x1,0x74,0xfa,0x8e,0x91,0x47,
// :/imgs/imgs
0x0,0x0,0x0,0x4a,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,
0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
// :/imgs/imgs/apple-lanczos3.png
0x0,0x0,0x0,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xda,0xbc,
0x0,0x0,0x1,0x74,0xf0,0xdf,0xa6,0x1f,
// :/imgs/imgs/apple.png
0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xd8,0x5f,
0x0,0x0,0x1,0x74,0xf0,0xb9,0x9c,0x6c,
};
#ifdef QT_NAMESPACE
# define QT_RCC_PREPEND_NAMESPACE(name) ::QT_NAMESPACE::name
# define QT_RCC_MANGLE_NAMESPACE0(x) x
# define QT_RCC_MANGLE_NAMESPACE1(a, b) a##_##b
# define QT_RCC_MANGLE_NAMESPACE2(a, b) QT_RCC_MANGLE_NAMESPACE1(a,b)
# define QT_RCC_MANGLE_NAMESPACE(name) QT_RCC_MANGLE_NAMESPACE2( \
QT_RCC_MANGLE_NAMESPACE0(name), QT_RCC_MANGLE_NAMESPACE0(QT_NAMESPACE))
#else
# define QT_RCC_PREPEND_NAMESPACE(name) name
# define QT_RCC_MANGLE_NAMESPACE(name) name
#endif
#ifdef QT_NAMESPACE
namespace QT_NAMESPACE {
#endif
bool qRegisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
bool qUnregisterResourceData(int, const unsigned char *, const unsigned char *, const unsigned char *);
#ifdef QT_NAMESPACE
}
#endif
int QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)();
int QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)()
{
QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)();
int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)()
{
QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData)
(0x2, qt_resource_struct, qt_resource_name, qt_resource_data);
return 1;
}
namespace {
struct initializer {
initializer() { QT_RCC_MANGLE_NAMESPACE(qInitResources_resource)(); }
~initializer() { QT_RCC_MANGLE_NAMESPACE(qCleanupResources_resource)(); }
} dummy;
}
|
#include <mex.h>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <time.h>
#include "types.h"
#include "linscan.h"
// INPUTS --------------------
#define mxnlabels prhs[0] // number of class labels
#define mxcodes prhs[1] // db binary codes
#define mxlabels prhs[2] // class labels for db codes
#define mxqueries prhs[3] // query binary codes
#define mxlabels2 prhs[4] // class labels for query codes
#define mxN prhs[5] // number of data points to use
#define mxB prhs[6] // number of bits per code
#define mxK prhs[7] // k in hamming kNN classifier
// pointers labels and labels2 being identical means that this is a
// 1-leave-out cross validation for the training set.
// OUTPUTS --------------------
#define mxcorrect plhs[0]
#define mxcorrect2 plhs[1] // this output is optional. If it is
// provide then 1-leave-out cross
// validation results are reported.
void myAssert(int a, const char *b) {
if (!a)
mexErrMsgTxt(b);
}
void classify(unsigned int *correct, int maxk, int K, UINT32 *counter, int B, UINT32 *res, unsigned int *labels, unsigned int *labels_test, int NQ, int nlabels) {
int *label_count = new int[nlabels];
for (int i=0; i<NQ; i++) {
int dis = -1;
memset(label_count, 0, 10*sizeof(*label_count));
int cum_nn = 0;
int new_cum_nn = 0;
int lastk = 0;
int itsown = 0;
for (int hdis=0; hdis<=B; hdis++) {
new_cum_nn = cum_nn + counter[(B+1)*i + hdis];
if (new_cum_nn > K)
new_cum_nn = K;
for (int j=cum_nn; j<new_cum_nn; j++) {
int neighbor = res[i*K+j]; // make sure res is 0-based
if (labels == labels_test && neighbor == i) {
itsown = 1;
lastk++; // we will subtract "itsown" from "k" later, so lask++
} else
label_count[labels[neighbor]]++;
}
bool tie = 0;
int pred = 0;
int count_pred = 0;
for (int j=0; j<nlabels; j++)
if (count_pred < label_count[j]) {
count_pred = label_count[j];
pred = j;
tie = 0;
} else if (count_pred == label_count[j]) { // ties
tie = 1;
}
if (!tie || new_cum_nn == K) { // if it is not a tie, or the max number of neighbors is reached, we will update number of correct predictions for values of k from lastk up to min(maxk, new_cum_nn).
for (int k=lastk; k<std::min(maxk+itsown, new_cum_nn); k++) {
if (labels_test[i] == pred)
correct[k-itsown]++;
}
lastk = std::min(maxk+itsown, new_cum_nn);
}
if (lastk == maxk+itsown)
break;
cum_nn = new_cum_nn;
}
}
delete[] label_count;
}
void mexFunction( int nlhs, mxArray *plhs[],
int nrhs, const mxArray*prhs[] )
{
if (nrhs != 8)
mexErrMsgTxt("Wrong number of inputs\n");
if (nlhs != 2 && nlhs != 1)
mexErrMsgTxt("Wrong number of outputs\n");
int N = (int)(UINT32) *(mxGetPr(mxN));
int B = (int) *(mxGetPr(mxB));
int maxk = (int) *(mxGetPr(mxK));
int nlabels = (int) *(mxGetPr(mxnlabels));
UINT8 *codes_db = (UINT8*) mxGetPr(mxcodes);
unsigned int *label_db = (unsigned int *) (UINT32*) mxGetPr(mxlabels);
UINT8 *codes_query = (UINT8*) mxGetPr(mxqueries);
unsigned int *label_query = (unsigned int *) (UINT32*) mxGetPr(mxlabels2);
int NQ = mxGetN(mxqueries);
int dim1codes = mxGetM(mxcodes);
int dim1queries = mxGetM(mxqueries);
myAssert(mxIsUint8(mxqueries), "queries is not uint8");
myAssert(mxIsUint8(mxcodes), "codes is not uit8");
myAssert(mxIsUint32(mxlabels), "labels is not uint32");
myAssert(mxIsUint32(mxlabels2), "labels2 is not uint32");
myAssert(mxGetN(mxcodes) >= N, "number of codes < N");
myAssert(dim1codes >= B/8, "dim1codes < B/8");
myAssert(dim1queries >= B/8, "dim1queries < B/8"); // not sure about this
myAssert(B % 8 == 0, "mod(B,8) != 0");
myAssert(dim1codes == B/8, "dim1codes != B/8");
myAssert(dim1queries == B/8, "dim1queries != B/8"); // not sure about this
myAssert(N == mxGetM(mxlabels) * mxGetN(mxlabels),
"labels dimensionality != number of codes");
myAssert(NQ == mxGetM(mxlabels2) * mxGetN(mxlabels2),
"labels2 dimensionality != number of queries");
int K = maxk * 5 + 100;
if (K > N)
K = N;
mxcorrect = mxCreateNumericMatrix(maxk, 1, mxUINT32_CLASS, mxREAL);
unsigned int *correct = (unsigned int*) (UINT32 *) mxGetPr(mxcorrect);
UINT32 *counter = new UINT32[(B+1)*NQ];
UINT32 *res = new UINT32[K*NQ];
linscan_query(counter, res, codes_db, codes_query, N, NQ, B, K, B/8, B/8);
classify(correct, maxk, K, counter, B, res, label_db, label_query, NQ, nlabels);
delete[] counter;
delete[] res;
if (nlhs == 2) {
mxcorrect2 = mxCreateNumericMatrix(maxk, 1, mxUINT32_CLASS, mxREAL);
unsigned int *correct2 = (unsigned int*) (UINT32 *) mxGetPr(mxcorrect2);
counter = new UINT32[(B+1)*N];
res = new UINT32[K*N];
linscan_query(counter, res, codes_db, codes_db, N, N, B, K, B/8, B/8);
classify(correct2, maxk, K, counter, B, res, label_db, label_db, N, nlabels);
delete[] counter;
delete[] res;
}
}
|
#ifndef _BNE_H_
#define _BNE_H_
#pragma once
//Header for the Babonator-Engine
#include <iostream>
#include <string>
#include <sstream>
#include <math.h>
#endif
|
#include <System/TrueCandidates.h>
extern const QSet<QString> trueCandidates = {
QStringLiteral("1"),
QStringLiteral("true"),
QStringLiteral("yes")
};
|
#include <iostream>
using namespace std;
int rev(int a)
{
int ans=0,flag=0;
while(a>0)
{
if(a != 0 || flag==1)
{
ans =ans*10 +(a);
flag= 1;
}
a=a/10;
}
return ans;
}
int main() {
int t;
cin>>t;
while(t--)
{
int a,b;
cin>>a>>b;
int sum = rev(a)+rev(b);
cout<<rev(sum)<<endl;
}
return 0;
}
|
#include <iostream>
using std::cout;
int main()
{
int* ptr_num = new int(5); // declare and acquire new memory in heap
cout << &ptr_num << "\n";// address where ptr_num is stored
cout << ptr_num << "\n"; // address where 5 is strored
cout << *ptr_num;
delete ptr_num;
ptr_num = nullptr;
return 0;
}
|
#include "Stages.h"
Stages::Stages (int size, int rate)
: size_ (size),
rate_ (rate)
{
cur_ = 0;
}
Arrival::Arrival (int size, int rate)
: Stages (size, rate)
{
cur_ = 1;
}
int Arrival::next ()
{
cur_++;
if (cur_ > size_)
cur_ = 1;
return cur_;
}
Service::Service (int size, int rate)
: Stages (size, rate)
{
}
int Service::next ()
{
cur_++;
if (cur_ > size_)
cur_ = 0;
return cur_;
}
|
#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <string>
#include <queue>
#include <stack>
#include <sstream>
#include <cmath>
#include <numeric>
using namespace std;
class Solution {
public:
int findKthLargest(vector<int>& nums, int k) {
return quickSelect(0, nums.size() - 1, k, nums);
}
int quickSelect(int lo, int hi, int k, vector<int>& nums)
{
if (lo == hi) return nums[lo];
int pivot = nums[hi];
int i = lo - 1;
for (int j = lo; j < hi; ++j)
{
if (nums[j] > pivot)
{
swap(nums[++i], nums[j]);
}
}
swap(nums[i + 1], nums[hi]);
int partition = i + 1;
if (k <= partition - lo)
{
return quickSelect(lo, partition - 1, k, nums);
}
else if (k == partition - lo + 1)
{
return nums[partition];
}
else
{
return quickSelect(partition + 1, hi, k - (partition - lo + 1), nums);
}
}
};
int main()
{
Solution sol;
vector<int> nums = {3,2,1,5,6,4};
int k = 2;
nth_element(nums.begin(), nums.begin() + k - 1, nums.end(), greater<int>());
cout << nums[k - 1] << endl;
// cout << sol.findKthLargest(nums, k) << endl;
}
|
/*
* Copyright 2016-2017 Flatiron Institute, Simons Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "mvspikespraypanel.h"
#include <QList>
#include <QMutex>
#include <QPainter>
#include <QPen>
#include <QThread>
#include <QTime>
#include <QTimer>
#include "mda.h"
#include "mlcommon.h"
/*!
* \class MVSpikeSprayPanelControl
* \brief The MVSpikeSprayPanelControl class provides a way to render a spike spray panel
*
*/
/*!
* \property MVSpikeSprayPanelControl::amplitude
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::brightness
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::weight
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::legendVisible
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::labels
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::labelColors
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::progress
* \brief
*/
/*!
* \property MVSpikeSprayPanelControl::allocationProgress
* \brief
*/
/*!
* \class MVSSRenderer
* \brief The MVSSRenderer class represents an object used to perform rendering of a spike spray
* panel, likely in a separate thread.
*/
/*!
* \class MVSSRenderer::ClipsAllocator
* \brief The ClipsAllocator class performs an allocation and deep copy of Mda structure.
*
*/
namespace {
/*!
* \brief A RAII object executes a given function upon destruction
*
* Optionally it also executes another function upon construction.
*/
class RAII {
public:
using Callback = std::function<void()>;
RAII(const Callback& func, const Callback& cfunc = Callback())
{
m_func = func;
if (cfunc)
cfunc();
}
~RAII()
{
if (m_func)
m_func();
}
private:
Callback m_func;
};
}
class MVSpikeSprayPanelControlPrivate {
public:
MVSpikeSprayPanelControlPrivate(MVSpikeSprayPanelControl* qq)
: q(qq)
{
}
MVSpikeSprayPanelControl* q;
double amplitude = 1;
double brightness = 2;
double weight = 1;
bool legendVisible = true;
QSet<int> labels;
QList<QColor> labelColors;
Mda* clipsToRender = nullptr;
QVector<int> renderLabels;
bool needsRerender = true;
QThread* renderThread;
MVSSRenderer* renderer = nullptr;
QImage render;
int progress = 0;
int allocProgress = 0;
};
class MVSpikeSprayPanelPrivate {
public:
MVSpikeSprayPanel* q;
MVContext* m_context;
MVSpikeSprayPanelControl m_control;
};
MVSpikeSprayPanel::MVSpikeSprayPanel(MVContext* context)
{
d = new MVSpikeSprayPanelPrivate;
d->q = this;
d->m_context = context;
d->m_control.setLabelColors(context->clusterColors());
// rerender if cluster colors have changed
QObject::connect(context, SIGNAL(clusterColorsChanged(QList<QColor>)),
&d->m_control, SLOT(setLabelColors(QList<QColor>)));
// repaint if new render is available
connect(&d->m_control, SIGNAL(renderAvailable()), this, SLOT(update()));
// repaint if progress is updated
connect(&d->m_control, SIGNAL(progressChanged(int)), this, SLOT(update()));
// repaint if allocation progress is updated
connect(&d->m_control, SIGNAL(allocationProgressChanged(int)), this, SLOT(update()));
}
MVSpikeSprayPanel::~MVSpikeSprayPanel()
{
delete d;
}
void MVSpikeSprayPanel::setLabelsToUse(const QSet<int>& labels)
{
d->m_control.setLabels(labels);
}
void MVSpikeSprayPanel::setClipsToRender(Mda* X)
{
d->m_control.setClips(X);
}
void MVSpikeSprayPanel::setLabelsToRender(const QVector<int>& X)
{
d->m_control.setRenderLabels(X);
}
void MVSpikeSprayPanel::setAmplitudeFactor(double X)
{
d->m_control.setAmplitude(X);
}
void MVSpikeSprayPanel::setBrightnessFactor(double factor)
{
d->m_control.setBrightness(factor);
}
void MVSpikeSprayPanel::setWeightFactor(double factor)
{
d->m_control.setWeight(factor);
}
void MVSpikeSprayPanel::setLegendVisible(bool val)
{
d->m_control.setLegendVisible(val);
}
void MVSpikeSprayPanel::paintEvent(QPaintEvent* evt)
{
Q_UNUSED(evt)
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
/// TODO (LOW) this should be a configured color to match the cluster view
painter.fillRect(0, 0, width(), height(), QBrush(QColor(0, 0, 0)));
d->m_control.paint(&painter, rect());
// render progress: red stripe for memory allocation, white for rendering
int progress = d->m_control.progress();
int allocprogress = d->m_control.allocationProgress();
if (progress > 0 && progress < 100) {
QRect r(0, height() - 2, width() * progress * 1.0 / 100, 2);
painter.fillRect(r, Qt::white);
}
else if (!progress && allocprogress > 0 && allocprogress < 100) {
QRect r(0, height() - 2, width() * allocprogress * 1.0 / 100, 2);
painter.fillRect(r, Qt::red);
}
}
QColor brighten(QColor col, double factor)
{
// TODO: replace with QColor::lighter
double r = col.red() * factor;
double g = col.green() * factor;
double b = col.blue() * factor;
r = qMin(255.0, r);
g = qMin(255.0, g);
b = qMin(255.0, b);
return QColor(r, g, b);
}
/*!
* \brief MVSSRenderer::render starts the rendering operation.
*
* \warning This method can run for a int period of times.
*/
void MVSSRenderer::render()
{
RAII releaseRAII([this]() { release(); }); // make sure we call release while returning
if (isInterruptionRequested()) {
return; // if we're requested to stop, we bail out here.
}
m_processing = true;
clearInterrupt();
QImage image = QImage(W, H, QImage::Format_ARGB32); // create an empty image
image.fill(Qt::transparent); // and make it transparent
replaceImage(image); // replace the current image
emit imageUpdated(0); // and report we've just begun
QPainter painter(&image);
painter.setRenderHint(QPainter::Antialiasing);
// the algorithm is performing lazy memory allocation. This is the last spot we can
// do the actual allocation (and copy). Bail out if interruption is requested.
clips = allocator.allocate([this]() { return isInterruptionRequested(); });
const int L = clips.N3();
if (L != colors.count()) {
qWarning() << "Unexpected sizes: " << colors.count() << L;
return;
}
QTime timer;
timer.start();
for (int i = 0; i < L; i++) {
if (timer.elapsed() > 300) { // each 300ms report an intermediate result
replaceImage(image);
emit imageUpdated(100 * i / L);
timer.restart();
}
if (isInterruptionRequested()) {
return;
}
render_clip(&painter, i); // render one step
}
replaceImage(image); // we're done, expose the result
emit imageUpdated(100);
}
/*!
* \brief MVSSRenderer::render_clip performs rendering of a single clip
*
*/
void MVSSRenderer::render_clip(QPainter* painter, int i) const
{
QColor col = colors[i];
const int M = clips.N1();
const int T = clips.N2();
const double* ptr = clips.constDataPtr() + (M * T * i);
QPen pen = painter->pen();
pen.setColor(col); // set proper color
painter->setPen(pen);
for (int m = 0; m < M; m++) {
QPainterPath path; // we're setting up a painter path
for (int t = 0; t < T; t++) {
double val = ptr[m + M * t];
QPointF pt = coord2pix(m, t, val);
if (t == 0) {
path.moveTo(pt);
}
else {
path.lineTo(pt); // plotting a curve
}
}
painter->drawPath(path); // render the complete painter path
}
}
QPointF MVSSRenderer::coord2pix(int m, double t, double val) const
{
int M = clips.N1();
int clip_size = clips.N2();
double margin_left = 20, margin_right = 20;
double margin_top = 20, margin_bottom = 20;
/*
double max_width = 300;
if (q->width() - margin_left - margin_right > max_width) {
double diff = (q->width() - margin_left - margin_right) - max_width;
margin_left += diff / 2;
margin_right += diff / 2;
}
*/
QRectF rect(margin_left, margin_top, W - margin_left - margin_right, H - margin_top - margin_bottom);
double pctx = (t + 0.5) / clip_size;
double pcty = (m + 0.5) / M - val / M * amplitude_factor;
return QPointF(rect.left() + pctx * rect.width(), rect.top() + pcty * rect.height());
}
MVSpikeSprayPanelControl::MVSpikeSprayPanelControl(QObject* parent)
: QObject(parent)
, d(new MVSpikeSprayPanelControlPrivate(this))
{
d->renderThread = new QThread;
}
MVSpikeSprayPanelControl::~MVSpikeSprayPanelControl()
{
if (d->renderer) {
d->renderer->requestInterruption(); // stop the old rendering
d->renderer->wait(); // and wait for it to die
}
d->renderThread->quit();
if (!d->renderThread->wait(1000 * 10)) {
qWarning() << "Render thread wouldn't terminate";
}
if (d->renderer)
d->renderer->deleteLater();
d->renderThread->deleteLater();
}
double MVSpikeSprayPanelControl::amplitude() const
{
return d->amplitude;
}
void MVSpikeSprayPanelControl::setAmplitude(double amplitude)
{
if (d->amplitude == amplitude)
return;
d->amplitude = amplitude;
emit amplitudeChanged(amplitude);
updateRender();
}
double MVSpikeSprayPanelControl::brightness() const
{
return d->brightness;
}
void MVSpikeSprayPanelControl::setBrightness(double brightness)
{
if (d->brightness == brightness)
return;
d->brightness = brightness;
emit brightnessChanged(brightness);
updateRender();
}
double MVSpikeSprayPanelControl::weight() const
{
return d->weight;
}
void MVSpikeSprayPanelControl::setWeight(double weight)
{
if (d->weight == weight)
return;
d->weight = weight;
emit weightChanged(weight);
updateRender();
}
bool MVSpikeSprayPanelControl::legendVisible() const
{
return d->legendVisible;
}
void MVSpikeSprayPanelControl::setLegendVisible(bool legendVisible)
{
if (d->legendVisible == legendVisible)
return;
d->legendVisible = legendVisible;
emit legendVisibleChanged(legendVisible);
update();
}
QSet<int> MVSpikeSprayPanelControl::labels() const
{
return d->labels;
}
/*!
* \brief MVSpikeSprayPanelControl::paint renders the panel to a \a painter.
*
* The panel is rendered to the given \a rect in \a painter coordinate system.
* If the panel needs refreshing, a render operation is scheduled. The method will
* render the current content but will be called again when new content is available.
*
* \sa update(), rerender()
*/
void MVSpikeSprayPanelControl::paint(QPainter* painter, const QRectF& rect)
{
if (d->needsRerender)
rerender();
if (!d->render.isNull())
painter->drawImage(rect, d->render);
painter->save();
paintLegend(painter, rect);
painter->restore();
}
/*!
* \brief MVSpikeSprayPanelControl::paintLegend renders a view legend to \a painter.
*
*/
void MVSpikeSprayPanelControl::paintLegend(QPainter* painter, const QRectF& rect)
{
if (!legendVisible())
return;
double W = rect.width();
double spacing = 6;
double margin = 10;
double text_height = qBound(12.0, W * 1.0 / 10, 25.0);
double y0 = rect.top() + margin;
QFont font = painter->font();
font.setPixelSize(text_height - 1);
painter->setFont(font);
QSet<int> labels_used = labels();
QList<int> list = labels_used.toList();
qSort(list);
QPen pen = painter->pen();
for (int i = 0; i < list.count(); i++) {
QRectF r(rect.left(), y0, W - margin, text_height);
QString str = QString("%1").arg(list[i]);
pen.setColor(labelColors().at(list[i]));
painter->setPen(pen);
painter->drawText(r, Qt::AlignRight, str);
y0 += text_height + spacing;
}
}
void MVSpikeSprayPanelControl::setLabels(const QSet<int>& labels)
{
if (d->labels == labels)
return;
d->labels = labels;
emit labelsChanged(labels);
update();
}
const QList<QColor>& MVSpikeSprayPanelControl::labelColors() const
{
return d->labelColors;
}
/*!
* \brief setClips sets clip data to be rendered.
*
*/
void MVSpikeSprayPanelControl::setClips(Mda* X)
{
if (X == d->clipsToRender)
return;
d->clipsToRender = X;
updateRender();
}
void MVSpikeSprayPanelControl::setRenderLabels(const QVector<int>& X)
{
if (X == d->renderLabels)
return;
d->renderLabels = X;
updateRender();
}
/*!
* \brief The progress method returns the current rendering progress
*
*/
int MVSpikeSprayPanelControl::progress() const
{
return d->progress;
}
/*!
* \brief The allocationProgress method returns the current progress of memory allocation
*
*/
int MVSpikeSprayPanelControl::allocationProgress() const
{
return d->allocProgress;
}
/*!
* \brief The setLabelColors method sets colors for the labels.
*
*/
void MVSpikeSprayPanelControl::setLabelColors(const QList<QColor>& labelColors)
{
if (labelColors == d->labelColors)
return;
d->labelColors = labelColors;
emit labelColorsChanged(labelColors);
update();
}
/*!
* \brief The update method updates the control with the latest image from the renderer.
*
* The \a progress argument denotes the current progress reported by the renderer.
*/
void MVSpikeSprayPanelControl::update(int progress)
{
if (d->renderer) {
d->render = d->renderer->resultImage(); // get latest image from the renderer
emit renderAvailable();
}
if (progress != -1) {
d->progress = progress; // if rendering is in progress, report the progress
emit progressChanged(progress);
}
}
/*!
* \brief The updateRender method tells the control a rerender is required.
*/
void MVSpikeSprayPanelControl::updateRender()
{
d->needsRerender = true;
update();
}
void MVSpikeSprayPanelControl::rerender()
{
d->needsRerender = false;
if (!d->clipsToRender) {
return; // nothing to render
}
if (d->clipsToRender->N3() != d->renderLabels.count()) {
qWarning() << "Number of clips to render does not match the number of labels to render"
<< d->clipsToRender->N3() << d->renderLabels.count();
return; // data mismatch
}
if (!amplitude()) { // if amplitude is not given
double maxval = qMax(qAbs(d->clipsToRender->minimum()), qAbs(d->clipsToRender->maximum()));
if (maxval)
d->amplitude = 1.5 / maxval; // try to calculate it automatically
}
int K = MLCompute::max(d->renderLabels);
if (!K) {
return; // nothing to render
}
QVector<int> counts(K + 1, 0);
QList<int> inds;
for (int i = 0; i < d->renderLabels.count(); i++) {
int label0 = d->renderLabels[i];
if (label0 >= 0) {
if (this->d->labels.contains(label0)) {
counts[label0]++;
inds << i;
}
}
}
QVector<int> alphas(K + 1);
for (int k = 0; k <= K; k++) {
if ((counts[k]) && (weight())) {
alphas[k] = (int)(255.0 / counts[k] * 2 * weight());
alphas[k] = qBound(10, alphas[k], 255);
}
else
alphas[k] = 255;
}
if (d->renderer) { // since we're chainging the conditions
d->renderer->requestInterruption(); // stop the old rendering
d->renderer->wait(); // and wait for it to die
d->renderer->deleteLater();
d->renderer = nullptr;
}
d->renderer = new MVSSRenderer; // start a new renderer
if (!d->renderThread->isRunning())
d->renderThread->start(); // start the thread if not already started
int M = d->clipsToRender->N1();
int T = d->clipsToRender->N2();
// defer copying data until we're in a worker thread to keep GUI responsive
d->renderer->allocator = { d->clipsToRender, M, T, inds };
d->renderer->allocator.progressFunction = [this](int progress) {
emit d->renderer->allocateProgress(progress);
};
d->renderer->colors.clear();
for (int j = 0; j < inds.count(); j++) {
int label0 = d->renderLabels[inds[j]];
QColor col = d->labelColors[label0];
col = brighten(col, brightness());
if (label0 >= 0) {
col.setAlpha(alphas[label0]);
}
d->renderer->colors << col;
}
d->renderer->amplitude_factor = amplitude();
d->renderer->W = T * 4;
d->renderer->H = 1500;
connect(d->renderer, SIGNAL(imageUpdated(int)), this, SLOT(update(int)));
connect(d->renderer, SIGNAL(allocateProgress(int)), this, SLOT(updateAllocProgress(int)));
d->renderer->moveToThread(d->renderThread);
// schedule rendering
QMetaObject::invokeMethod(d->renderer, "render", Qt::QueuedConnection);
}
void MVSpikeSprayPanelControl::updateAllocProgress(int progress)
{
if (d->allocProgress == progress)
return;
d->allocProgress = progress;
emit allocationProgressChanged(d->allocProgress);
}
void MVSSRenderer::replaceImage(const QImage& img)
{
QMutexLocker locker(&image_in_progress_mutex);
image_in_progress = img;
}
QImage MVSSRenderer::resultImage() const
{
QMutexLocker locker(&image_in_progress_mutex);
return image_in_progress;
}
/*!
* \brief MVSSRenderer::wait method suspends the calling thread until processing is complete.
*/
void MVSSRenderer::wait()
{
m_condMutex.lock();
while (m_processing)
m_cond.wait(&m_condMutex);
m_condMutex.unlock();
}
/*!
* \brief MVSSRenderer::release method wakes all threads waiting for processing completion.
*/
void MVSSRenderer::release()
{
m_condMutex.lock();
m_processing = false;
m_cond.wakeAll();
m_condMutex.unlock();
}
/*!
* \brief Constructor which creates a no-op allocator
*/
MVSSRenderer::ClipsAllocator::ClipsAllocator() {}
/*!
* \brief Constructor which initializes the allocator
* \param src Mda structure to be copied
* \param _M 1st dim
* \param _T 2nd dim
* \param _inds 3rd dim
*/
MVSSRenderer::ClipsAllocator::ClipsAllocator(Mda* src, int _M, int _T, const QList<int>& _inds)
: source(src)
, M(_M)
, T(_T)
, inds(_inds)
{
}
Mda MVSSRenderer::ClipsAllocator::allocate(const std::function<bool()>& breakFunc)
{
Mda result(M, T, inds.count());
for (int j = 0; j < inds.count(); j++) {
for (int t = 0; t < T; t++) {
for (int m = 0; m < M; m++) {
result.setValue(source->value(m, t, inds[j]), m, t, j);
}
}
if (breakFunc && breakFunc())
return result; // bail out if requested
if (progressFunction)
progressFunction(j * 100 / inds.count()); // report progress
}
if (progressFunction)
progressFunction(100); // report completion
return result;
}
|
#include "Jugador.h"
Jugador::Jugador(){
piezas = 0;
nombre = "Sin definir";
puntaje = 0;
primero = actual = NULL;
}
Jugador::~Jugador(){
while (primero != NULL ){
actual = primero;
primero = primero->getSigNodo();
delete actual;
}
piezas = 0;
}
int Jugador::getPiezas(){
return piezas; //retorna la cantidad de piezas en el deck.
}
void Jugador::setPuntaje(int npuntaje){
puntaje += npuntaje; //Recibe puntaje y lo suma al anterior.
}
int Jugador::getPuntaje(){
return puntaje; //Retorna el puntaje.
}
char* Jugador::impPuntaje(){
stringstream ss; //Funcion que convierte el puntaje de tipo entero a un char.
ss << puntaje; //Necesario para imprimirlo en la pantalla.
string str = ss.str();
char* p = strdup(str.c_str());
return p;
}
void Jugador::setNombre(string nombre){
this->nombre = nombre;
}
string Jugador::getNombre(){
return nombre;
}
//Recibe una ficha con el axuliar.
//El auxiliar se define segun las coordenadas en las que di click.
//El auxiliar hace que se recorra la lista hasta que se de con la pieza elegida.
Pieza *Jugador::getFicha(int aux){
Pieza * p;
int i = 0;
actual = primero;
if(aux == 0){ //Si el aux es igual a 0 se retorna el primer elemento.
p = primero->getDato();
return primero->getDato();
}
while(i < aux){
actual = actual->getSigNodo(); //Se recorre mientras i sea menor al aux
i++;
}
p = actual->getDato();
return p;
}
void Jugador::borrarPrimeraPieza(){
actual = primero;
if (primero != NULL) {
primero = actual->getSigNodo();
delete actual;
}
}
void Jugador::borrarUltimaPieza(){
actual = primero;
Nodo *anterior = actual;
if (primero != NULL ){
if (primero->getSigNodo()==NULL ) {
delete primero;
primero = NULL;
}
else {
while (actual->getSigNodo() != NULL ) {
anterior = actual;
actual = actual->getSigNodo();
}
anterior->setSigNodo(NULL );
delete actual;
}
}
}
void Jugador::Deck(Pieza * ficha){
if(primero == NULL){
primero = new Nodo(ficha, NULL);
} else {
actual = primero;
while(actual->getSigNodo() != NULL){
actual = actual->getSigNodo();
}
actual->setSigNodo(new Nodo (ficha, NULL));
}
piezas++;
}
void Jugador::imprimirDeck(){
setcolor(15);
settextstyle(3, 0, 2);
outtextxy(50, 550, "Tu deck: ");
//Se establecen las coordenadas que en las que se van a pintar las piezas.
int x1 = 150;
int x2 = 200;
int y1 = 550;
int y2 = 600;
actual = primero;
if(piezas != 0){
for(int i = 0; i < piezas; i++){
if(actual == NULL){
setfillstyle(11, 15);
setcolor(0);
bar3d(x1, y1, x2, y2, 0, 0);
actual = actual->getSigNodo();
} else {
Pieza * ficha = actual->getDato();
setfillstyle(1, 0); //Dibuja el fondo de la figura.
setcolor(0);
bar3d(x1, y1, x2, y2, 0, 0);
int auxColor = ficha->getAux(); //Recibe el color para usarlo en la figura.
setcolor(auxColor);
setfillstyle(1, auxColor);
int x3 = (x1 + x2)/2;
int y3 = (y1 + y2)/2;
ficha->DibujarPieza(x3, y3); //Luego dibuja la figura.
}
actual = actual->getSigNodo(); //Luego procede a pintar el siguiente.
x1 += 50; //Luego procede setear las siguientes coordenadas.
x2 += 50;
}
}
}
void Jugador::imprimirNombre(){
setcolor(9);
settextstyle(3, 0, 2);
string str = nombre;
char* chr = strdup(str.c_str()); //funcion que convierte un string a char.
outtextxy(600, 205, chr); //Ya que solo puede imprimirse en la pantalla grafica con un char.
}
void Jugador::usarPieza(Pieza *borrar, int aux){
int aux2 = 0;
if(primero != NULL){
actual = primero;
Nodo * anterior = NULL; //Necesario un auxiliar para guardar el nodo anterior.
while((actual != NULL) && (actual->getDato() != borrar)){ //Recorre hasta que actual sea igual a la pieza recibida por parametros.
anterior = actual;
actual = actual->getSigNodo();
aux2++;
}
anterior->setSigNodo(actual->getSigNodo()); //Crea un tipo de puente que conecta el nodo anterior al que apunta el actual.
delete actual; //Luego borra el actual.
piezas--;
}
}
void Jugador::toString(){
actual = primero;
while(actual != NULL){
cout<<actual->toString()<<endl;
actual = actual->getSigNodo();
}
}
|
/*
* Copyright (C) 2007-2015 Frank Mertens.
*
* Use of this source is governed by a BSD-style license that can be
* found in the LICENSE file.
*
*/
#include <flux/testing/TestSuite>
#include <flux/stdio>
#include <flux/crypto/Md5>
using namespace flux;
using namespace flux::testing;
using namespace flux::crypto;
class Md5Examples: public TestCase
{
void run()
{
Ref<StringList> tests = StringList::create()
<< ""
<< "a"
<< "abc"
<< "message digest"
<< "abcdefghijklmnopqrstuvwxyz"
<< "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
<< "123456789012345678901234567890123456789" "01234567890123456789012345678901234567890";
Ref<StringList> results = StringList::create()
<< "d41d8cd98f00b204e9800998ecf8427e"
<< "0cc175b9c0f1b6a831c399e269772661"
<< "900150983cd24fb0d6963f7d28e17f72"
<< "f96b697d7cb7938d525a2f31aaf161d0"
<< "c3fcd3d76192e4007dfb496cca67e13b"
<< "d174ab98d277d9f5a5611c2c9f419d9f"
<< "57edf4a22be3c955ac49da2e2107b67a";
for (int i = 0; i < tests->count(); ++i) {
String requiredSum = results->at(i);
String sum = md5(tests->at(i))->hex();
fout("MD5 of \"%%\":") << tests->at(i) << nl;
fout() << " " << requiredSum << " (required)" << nl;
fout() << " " << sum << " (delivered)" << nl;
FLUX_VERIFY(sum == requiredSum);
}
}
};
int main(int argc, char **argv)
{
FLUX_TESTSUITE_ADD(Md5Examples);
return testSuite()->run(argc, argv);
}
|
/*
Copyright (c) 2005-2023, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef PETSCEXCEPTION_HPP_
#define PETSCEXCEPTION_HPP_
#include <petsc.h>
#include <petscksp.h>
/**
* Throw an exception if the PETSc error number (what is generally denoted 'ierr' in
* PETSc code) is non-zero - see PETSCEXCEPT
*
* @param petscError PETSc error number
* @param line
* @param funct
* @param file
*/
extern void PetscException(PetscInt petscError, unsigned line,
const char* funct, const char* file);
/**
* Throw an exception if the KSP error indicates linear solve failure - see
* KSPEXCEPT.
*
* @param kspError KSP error number (obtained using KSPGetConvergedReason)
* @param line
* @param funct
* @param file
*/
extern void KspException(PetscInt kspError, unsigned line,
const char* funct, const char* file);
/**
* Throw a warning if the KSP error indicates linear solve failure - see
* KSPWARNIFFAILED.
*
* @param kspError KSP error number (obtained using KSPGetConvergedReason)
*/
extern void KspWarnIfFailed(PetscInt kspError);
/** Helper function for above functions - convert a KSP error number into an error message */
std::string GetKspErrorMessage(PetscInt kspError);
/**
* Positive codes mean that there's an error.
* Zero means success.
* Negative codes should never happen, but we'll throw anyway.
*/
#define PETSCEXCEPT(n) PetscException(n, __LINE__, __func__, __FILE__)
/**
* Positive codes mean that the KSP converged.
* Negative codes mean that the KSP diverged, i.e. there's a problem.
*
* Throw an Exception if KSP failed to solve.
*/
#define KSPEXCEPT(n) KspException(n, __LINE__, __func__, __FILE__)
/**
* Positive codes mean that the KSP converged.
* Negative codes mean that the KSP diverged, i.e. there's a problem.
*
* Throw a Warning if KSP failed to solve.
*/
#define KSPWARNIFFAILED(n) KspWarnIfFailed(n)
#endif /*PETSCEXCEPTION_HPP_*/
|
set_output(qx_avg)= inputExt(qi_avg);
|
/*
* File: symbol.cpp
*
* Description: Constructor and accessors for Symbol class.
*
*
*/
# include <cstdlib>
# include <iostream>
# include "scope.h"
Symbol::Symbol(std::string name, Type t)
:_name(name),_type(t)
{
}
std::string Symbol::getName() {
return _name;
}
Type Symbol::getType() {
return _type;
}
|
#include <iostream>
using namespace std;
int main() {
cout << "print statement" << endl;
double arr[4] = {14.5, 4.0, 10.7, 78.5};
double *p1 = &arr[0];
double *p2 = p1 + 3;
cout << *p2 << " " << p2 - p1;
return 0;
}
// Testing whether it has changed or not
|
#pragma once
#ifndef INTERPRETER_H
#define INTERPRETER_H
#include <string>
#include <iostream>
#include <vector>
#include "Database.h"
#include "parser.h"
#include "Relation.h"
#include "DependencyGraph.h"
using namespace std;
//Process schemes into relations
class Interpreter {
public:
Interpreter(parser& datalogProgram);
//Set database should : turn each scheme into a relation and put it in the database
//turn each fact into a tuple and put it in a relation (which is in the database)
//seperate function to evalaute all queries... calls evaluate predicate and prints out final results
void evalQueries();
Relation evaluatePredicate(predicate pred);
bool evalSingleRule(rulez rule1, set<Tuple>& tupleTracker);
void evalAllRules(vector<set<int>>& sscInts);
private:
vector<rulez> ruleVect;
Graph graph;
parser dL;
Database db;
bool done = false;
};
#endif
|
#ifndef BSCHEDULER_PPL_BASIC_FACTORY_HH
#define BSCHEDULER_PPL_BASIC_FACTORY_HH
#if !defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_APPLICATION) && \
!defined(BSCHEDULER_SUBMIT)
#define BSCHEDULER_APPLICATION
#endif
#include <iosfwd>
#include <bscheduler/config.hh>
#include <bscheduler/ppl/basic_pipeline.hh>
#include <bscheduler/ppl/io_pipeline.hh>
#include <bscheduler/ppl/multi_pipeline.hh>
#include <bscheduler/ppl/parallel_pipeline.hh>
#if defined(BSCHEDULER_DAEMON) || defined(BSCHEDULER_SUBMIT)
#include <bscheduler/ppl/socket_pipeline.hh>
#include <unistdx/net/socket>
#endif
#include <bscheduler/ppl/process_pipeline.hh>
#if defined(BSCHEDULER_APPLICATION)
#include <bscheduler/ppl/child_process_pipeline.hh>
#endif
#if defined(BSCHEDULER_DAEMON)
#include <bscheduler/ppl/unix_domain_socket_pipeline.hh>
#endif
#include <bscheduler/ppl/application.hh>
#include <bscheduler/ppl/basic_router.hh>
#include <bscheduler/ppl/timer_pipeline.hh>
namespace bsc {
template <class T>
class Factory: public pipeline_base {
public:
typedef T kernel_type;
typedef parallel_pipeline<T> cpu_pipeline_type;
typedef timer_pipeline<T> timer_pipeline_type;
typedef io_pipeline<T> io_pipeline_type;
typedef Multi_pipeline<T> downstream_pipeline_type;
#if defined(BSCHEDULER_APPLICATION)
typedef child_process_pipeline<T, basic_router<T>>
parent_pipeline_type;
#elif defined(BSCHEDULER_DAEMON) || defined(BSCHEDULER_SUBMIT)
typedef socket_pipeline<T, sys::socket, basic_router<T>>
parent_pipeline_type;
#endif
#if defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
typedef unix_domain_socket_pipeline<T, basic_router<T>>
external_pipeline_type;
#endif
#if defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
typedef process_pipeline<T, basic_router<T>>
child_pipeline_type;
#endif
private:
cpu_pipeline_type _upstream;
downstream_pipeline_type _downstream;
timer_pipeline_type _timer;
#if !defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
io_pipeline_type _io;
#endif
parent_pipeline_type _parent;
#if defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
child_pipeline_type _child;
external_pipeline_type _external;
#endif
public:
Factory();
virtual
~Factory() = default;
Factory(const Factory&) = delete;
Factory(Factory&&) = delete;
inline void
send(kernel_type* k) {
if (k->scheduled()) {
this->_timer.send(k);
} else if (k->moves_downstream()) {
const size_t i = k->hash();
const size_t n = this->_downstream.size();
this->_downstream[i%n].send(k);
} else {
this->_upstream.send(k);
}
}
inline void
send_remote(kernel_type* k) {
this->_parent.send(k);
}
inline void
send_timer(kernel_type* k) {
this->_timer.send(k);
}
inline void
send_timer(kernel_type** k, size_t n) {
this->_timer.send(k, n);
}
#if defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
inline void
send_child(kernel_type* k) {
this->_child.send(k);
}
inline child_pipeline_type&
child() noexcept {
return this->_child;
}
inline const child_pipeline_type&
child() const noexcept {
return this->_child;
}
inline void
forward_child(foreign_kernel* hdr) {
this->_child.forward(hdr);
}
inline external_pipeline_type&
external() noexcept {
return this->_external;
}
inline const external_pipeline_type&
external() const noexcept {
return this->_external;
}
#endif
inline parent_pipeline_type&
parent() noexcept {
return this->_parent;
}
inline const parent_pipeline_type&
parent() const noexcept {
return this->_parent;
}
#if defined(BSCHEDULER_DAEMON)
inline parent_pipeline_type&
nic() noexcept {
return this->_parent;
}
inline const parent_pipeline_type&
nic() const noexcept {
return this->_parent;
}
inline void
forward_parent(foreign_kernel* hdr) {
this->_parent.forward(hdr);
}
#endif
inline timer_pipeline_type&
timer() noexcept {
return this->_timer;
}
inline const timer_pipeline_type&
timer() const noexcept {
return this->_timer;
}
void
start();
void
stop();
void
wait();
void
print_state(std::ostream& out);
};
typedef Factory<BSCHEDULER_KERNEL_TYPE> factory_type;
extern factory_type factory;
template <class T>
void
basic_router<T>
::send_local(T* rhs) {
factory.send(rhs);
}
template <class T>
void
basic_router<T>
::send_remote(T* rhs) {
factory.send_remote(rhs);
}
#if defined(BSCHEDULER_DAEMON) && \
!defined(BSCHEDULER_PROFILE_NODE_DISCOVERY)
template <class T>
void
basic_router<T>
::forward(foreign_kernel* hdr) {
factory.forward_child(hdr);
}
template <class T>
void
basic_router<T>
::forward_child(foreign_kernel* hdr) {
factory.forward_child(hdr);
}
template <class T>
void
basic_router<T>
::forward_parent(foreign_kernel* hdr) {
factory.forward_parent(hdr);
}
template <class T>
void
basic_router<T>
::execute(const application& app) {
factory.child().add(app);
}
#else
template <class T>
void
basic_router<T>
::forward(foreign_kernel* hdr) {}
template <class T>
void
basic_router<T>
::forward_child(foreign_kernel* hdr) {}
template <class T>
void
basic_router<T>
::forward_parent(foreign_kernel* hdr) {}
template <class T>
void
basic_router<T>
::execute(const application& app) {}
#endif // if defined(BSCHEDULER_DAEMON)
}
#endif // vim:filetype=cpp
|
#include <pthread.h>
#include <unistd.h>
#include <sys/syscall.h>
// #include "Thread.h"
#include "ThisThread.h"
USE_NAMESPACE
__thread int ThisThread::t_cachedTid = 0;
__thread char ThisThread::t_tidString[32];
__thread size_t ThisThread::t_tidStringSize;
__thread const char* ThisThread::t_threadName;
void ThisThread::cacheTid(){
t_cachedTid = ::syscall(SYS_gettid);
t_tidStringSize = sprintf(t_tidString, "%5d", t_cachedTid);
}
int ThisThread::tid()
{
if (t_cachedTid == 0)
cacheTid();
return t_cachedTid;
}
const char* ThisThread::tidString()
{
if (t_cachedTid == 0)
cacheTid();
return t_tidString;
}
size_t ThisThread::tidStringLength()
{
if (t_tidStringSize == 0) {
cacheTid();
}
return t_tidStringSize;
}
const char* ThisThread::name()
{
if (t_threadName == nullptr) {
cacheTid();
}
return t_threadName;
}
bool ThisThread::isMainThread()
{
return getpid() == tid();
}
|
#include "Board.h"
/**
*getInt(): Reads a postive interger from the user.
Only an interger is acceptable.
No strings and no characters.
*return: A postive interger
*@param: None
*/
int getInt()
{
std::string str;
int colNum = 0;
while (true)
{
try
{
std::getline(std::cin, str);
colNum = std::stoi(str);
break;
}
catch (...)
{
std::cout << ">> Invalid Input. No characters or strings. Can't be higher than 7.\n";
}
}
return colNum;
}
///initiateTurn(): Completes a turn given a player and a board
/**
*initiateTurn(): Asks user for a interger that represents column.
* Passes that column number to addPoint() to place the player symbol inside the board
* Checks three conditions for the user input:
* 1) If it's less than 0, indicate negative values aren't allowed
* 2) If it's 0 or greater than 7, indicate it's not in valid range of [1,7]
* 3) If it's greater than 0 and less than 8 add symbol to desired column.
*return: None
*@param: A Player and a Board.
*/
void initiateTurn(Player &p, Board &b)
{
//Player One's turn
std::cout << ">> " << p.getName() << "'s turn...\n";
int column;
while (true)
{
std::cout << ">> Enter a positive interger between 1-7\n";
column = getInt();
if (column < 0) std::cout << ">> Negative interger not valid\n";
else if (column == 0 || column > 7) std::cout << ">> Not in the range [1,7]\n";
else if (column > 0 && column < 8) break;
}
//add location and print board
b.addPoint(uint16_t(column - 1), p);
}
uint16_t main()
{
Board newBoard;
std::cout << ">> Player 1:\n";
Player p1;
std::cout << ">> Player 2:\n";
Player p2;
newBoard.print();
while (true) {
//player one's turn
initiateTurn(p1, newBoard);
newBoard.print();
std::cout << '\n';
//Check to see if user wins or if board is filled
//if (p1.getWin()) { std::cout << ">> " << p1.getName() << "wins!\n"; break; }
if (newBoard.checkBoardFill() == 6) { std::cout << ">> Board is filled. No winners\n"; break; }
// Player Two's turn
initiateTurn(p2, newBoard);
newBoard.print();
std::cout << '\n';
//Check to see if user wins or if board is filled
//if (p2.getWin()) { std::cout << ">> " << p2.getName() << "wins!\n"; break; }
if (newBoard.checkBoardFill()==6) { std::cout << "Board is filled. No winners\n"; break; }
}
system("pause");
return 0;
}
|
#ifndef CCMTEST_H
#define CCMTEST_H
#include <QDockWidget>
#include "ui_ccmtest.h"
#include <QLabel>
#include <QVBoxLayout>
#include <QTextEdit>
#include <QDateTime>
#include <QThread>
#include <QDialog>
#include <QComboBox>
#include <QPushButton>
#include "global_default.h"
class CCMLogBar : public QDockWidget
{
Q_OBJECT
public:
CCMLogBar(QWidget *parent = 0);
~CCMLogBar();
QTextEdit *m_pEditBar;
public slots:
void slot_addLog(QString, QColor);
};
class CCMViewBar :public QWidget {
Q_OBJECT
public:
CCMViewBar(QWidget *parent = 0);
~CCMViewBar();
protected:
QLabel *m_pImgView;
};
class CCMConnectStatusBar : public QThread
{
Q_OBJECT
public:
CCMConnectStatusBar(QObject *parent = 0);
~CCMConnectStatusBar();
signals:
void sig_statuschange(int);
protected:
virtual void run();
private:
int nDevNum;
};
class CCMConfigAddDlg :public QDialog {
Q_OBJECT
public:
CCMConfigAddDlg(QSqlDatabase *database, QWidget *parent = 0);
~CCMConfigAddDlg();
QPushButton *m_pbutCommit;
QPushButton *m_pbutCancel;
QLabel *m_plabConfigName;
QLineEdit *m_pledConfigName;
public slots:
void slot_butCommit();
void slot_butCancel();
};
class CCMConfigSelectDlg :public QDialog {
Q_OBJECT
public:
CCMConfigSelectDlg(QWidget *parent);
~CCMConfigSelectDlg();
QLabel *m_plabRule;
QComboBox *m_pcomboRule;
QPushButton *m_pbutSelect, *m_pbutAdd;
QVBoxLayout *m_pvlayMain;
protected:
CCMConfigAddDlg *m_pConfigAddDlg;
public slots:
void slot_butSelect();
void slot_butAdd();
};
#endif // CCMTEST_H
|
#include <iostream>
using namespace std;
// butuh array, angka cari, ujung kiri, ujung kanan.
void binary(int data[], int cari, int kiri, int kanan) {
int tengah = (kiri + kanan) /2;
if (data[tengah] == cari) {
cout << "Data ditemukan di array ke- " << tengah;
}
else if (data[tengah] < cari) {
// data tengah+1 ke kanan.
binary(data, cari, tengah+1, kanan);
}
else {
// data tengah-1 ke kiri.
binary(data, cari, kiri, kanan-1);
}
}
int main () {
int data[8] = {1, 2, 3, 4, 5, 6, 7, 8};
// 0 1 2 3 4 5 6 7
int cari = 5;
binary(data, cari, 0, 7);
}
|
#include<stdio.h>
#include<string.h>
#define maxn 1010
int next[maxn];
char s[maxn],t[maxn];
int m,n,sum;
int kmp_index(int x)
{
int i,j=0;
for(i=x;i<m;i++)
{
while(j!=-1&&s[i]!=t[j])
j=next[j];
j++;
if(j==n)
{
sum++;
break;
}
}
if(j==n)
kmp_index(i+1);
return 0;
}
void get_next()
{
int i=0,j=-1;
next[0]=-1;
while(i<n)
{
if(j==-1||t[i]==t[j])
next[++i]=++j;
else
j=next[j];
}
}
int main()
{
while( scanf("%s",s),s[0] != '#')
{
scanf("%s",t);
sum=0;
m=strlen(s);
n=strlen(t);
get_next();
kmp_index(0);
printf("%d\n",sum);
}
return 0;
}
|
#include "ros/ros.h"
#include "sensor_msgs/Imu.h"
#include "imu_3dm_gx4/FilterOutput.h"
#include "geometry_msgs/Accel.h"
#include "geometry_msgs/Vector3.h"
#include "riptide_msgs/ThrustStamped.h"
#include "tf/transform_listener.h"
#include <math.h>
#include <vector>
#include "ceres/ceres.h"
#include "glog/logging.h"
#undef debug
#undef report
#undef progress
tf::Matrix3x3 rotation_matrix;
tf::Vector3 ang_v;
// Thrust limits (N):
double MIN_THRUST = -18.0;
double MAX_THRUST = 18.0;
// Vehicle mass (kg):
double MASS = 34.47940950;
// Moments of inertia (kg*m^2)
double Ixx = 0.50862680;
double Iyy = 1.70892348;
double Izz = 1.77586420;
// Acceleration commands (m/s^):
double cmdSurge = 0.0;
double cmdSway = 0.0;
double cmdHeave = 0.0;
double cmdRoll = 0.0;
double cmdPitch = 0.0;
double cmdYaw = 0.0;
struct vector
{
double x;
double y;
double z;
};
void get_transform(vector &v, tf::StampedTransform tform)
{
v.x = tform.getOrigin().x();
v.y = tform.getOrigin().y();
v.z = tform.getOrigin().z();
return;
}
/*** Thruster Positions ***/
// Positions are in meters relative to the center of mass.
vector pos_surge_stbd_hi;
vector pos_surge_port_hi;
vector pos_surge_port_lo;
vector pos_surge_stbd_lo;
vector pos_sway_fwd;
vector pos_sway_aft;
vector pos_heave_port_aft;
vector pos_heave_stbd_aft;
vector pos_heave_stbd_fwd;
vector pos_heave_port_fwd;
/*** EQUATIONS ***/
// These equations solve for linear/angular acceleration in all axes
// Linear Equations
struct surge {
template <typename T> bool operator()(const T* const surge_port_hi,
const T* const surge_stbd_hi,
const T* const surge_port_lo,
const T* const surge_stbd_lo,
const T* const sway_fwd,
const T* const sway_aft,
const T* const heave_port_fwd,
const T* const heave_stbd_fwd,
const T* const heave_port_aft,
const T* const heave_stbd_aft,
T* residual) const
{
residual[0] = (rotation_matrix.getRow(0).x()*(surge_port_hi[0] + surge_stbd_hi[0] + surge_port_lo[0] + surge_stbd_lo[0]) + rotation_matrix.getRow(0).y()*(sway_fwd[0] + sway_aft[0]) + rotation_matrix.getRow(0).z()*(heave_port_fwd[0] + heave_stbd_fwd[0] + heave_port_aft[0] + heave_stbd_aft[0])) / T(MASS) - T(cmdSurge);
return true;
}
};
struct sway {
template <typename T> bool operator()(const T* const surge_port_hi,
const T* const surge_stbd_hi,
const T* const surge_port_lo,
const T* const surge_stbd_lo,
const T* const sway_fwd,
const T* const sway_aft,
const T* const heave_port_fwd,
const T* const heave_stbd_fwd,
const T* const heave_port_aft,
const T* const heave_stbd_aft,
T* residual) const
{
residual[0] = (rotation_matrix.getRow(1).x()*(surge_port_hi[0] + surge_stbd_hi[0] + surge_port_lo[0] + surge_stbd_lo[0]) + rotation_matrix.getRow(1).y()*(sway_fwd[0] + sway_aft[0]) + rotation_matrix.getRow(1).z()*(heave_port_fwd[0] + heave_stbd_fwd[0] + heave_stbd_aft[0] + heave_port_aft[0])) / T(MASS) - T(cmdSway);
return true;
}
};
struct heave {
template <typename T> bool operator()(const T* const surge_port_hi,
const T* const surge_stbd_hi,
const T* const surge_port_lo,
const T* const surge_stbd_lo,
const T* const sway_fwd,
const T* const sway_aft,
const T* const heave_port_fwd,
const T* const heave_stbd_fwd,
const T* const heave_port_aft,
const T* const heave_stbd_aft,
T* residual) const
{
residual[0] = (rotation_matrix.getRow(2).x()*(surge_port_hi[0] + surge_stbd_hi[0] + surge_port_lo[0] + surge_stbd_lo[0]) + rotation_matrix.getRow(2).y()*(sway_fwd[0] + sway_aft[0]) + rotation_matrix.getRow(2).z()*(heave_port_fwd[0] + heave_stbd_fwd[0] + heave_port_aft[0] + heave_stbd_aft[0])) / T(MASS) - T(cmdHeave);
return true;
}
};
// Angular equations
struct roll {
template <typename T> bool operator()(const T* const sway_fwd,
const T* const sway_aft,
const T* const heave_port_fwd,
const T* const heave_stbd_fwd,
const T* const heave_port_aft,
const T* const heave_stbd_aft,
T* residual) const
{
residual[0] = (heave_port_fwd[0]*T(pos_heave_port_fwd.y)+heave_stbd_fwd[0]*T(pos_heave_stbd_fwd.y)+heave_port_aft[0]*T(pos_heave_port_aft.y)+heave_stbd_aft[0]*T(pos_heave_stbd_aft.y)-(sway_fwd[0]*T(pos_sway_fwd.z)+sway_aft[0]*T(pos_sway_aft.z)) + T(Iyy) * T(ang_v.y()) * T(ang_v.z()) - T(Izz) * T(ang_v.y()) * T(ang_v.z())) / T(Ixx) - T(cmdRoll);
return true;
}
};
struct pitch {
template <typename T> bool operator()(const T* const surge_port_hi,
const T* const surge_stbd_hi,
const T* const surge_port_lo,
const T* const surge_stbd_lo,
const T* const heave_port_fwd,
const T* const heave_stbd_fwd,
const T* const heave_port_aft,
const T* const heave_stbd_aft,
T* residual) const
{
residual[0] = (surge_port_hi[0] * T(pos_surge_port_hi.z) + surge_stbd_hi[0]*T(pos_surge_stbd_hi.z) + surge_port_lo[0]*T(pos_surge_port_lo.z) + surge_stbd_lo[0]*T(pos_surge_stbd_lo.z) + heave_port_fwd[0]*T(-pos_heave_port_fwd.x) + heave_stbd_fwd[0]*T(-pos_heave_stbd_fwd.x) + heave_port_aft[0]*T(-pos_heave_port_aft.x) + heave_stbd_aft[0]*T(-pos_heave_stbd_aft.x) + T(Izz) * T(ang_v.x()) * T(ang_v.z()) - T(Ixx) * T(ang_v.x()) * T(ang_v.z())) / T(Iyy) - T(cmdPitch);
return true;
}
};
struct yaw{
template <typename T> bool operator()(const T* const surge_port_hi,
const T* const surge_stbd_hi,
const T* const surge_port_lo,
const T* const surge_stbd_lo,
const T* const sway_fwd,
const T* const sway_aft,
T* residual) const
{
residual[0] = (surge_port_hi[0]*T(-pos_surge_port_hi.y) + surge_stbd_hi[0]*T(-pos_surge_stbd_hi.y) + surge_port_lo[0]*T(-pos_surge_port_lo.y) + surge_stbd_lo[0]*T(-pos_surge_stbd_lo.y) + sway_fwd[0]*T(pos_sway_fwd.x) + sway_aft[0]*T(pos_sway_aft.x) + T(Ixx) * T(ang_v.x()) * T(ang_v.y()) - T(Iyy) * T(ang_v.x()) * T(ang_v.y())) / T(Izz) - T(cmdYaw);
return true;
}
};
class Solver
{
private:
// Comms
ros::NodeHandle nh;
ros::Subscriber state_sub;
ros::Subscriber cmd_sub;
ros::Publisher cmd_pub;
riptide_msgs::ThrustStamped thrust;
// Math
ceres::Problem problem;
ceres::Solver::Options options;
ceres::Solver::Summary summary;
// Results
double surge_stbd_hi, surge_port_hi, surge_port_lo, surge_stbd_lo;
double sway_fwd, sway_aft;
double heave_port_aft, heave_stbd_aft, heave_stbd_fwd, heave_port_fwd;
// TF
tf::TransformListener *listener;
tf::StampedTransform tf_surge[4];
tf::StampedTransform tf_sway[2];
tf::StampedTransform tf_heave[4];
public:
Solver(char** argv, tf::TransformListener& listener_adr);
void state(const sensor_msgs::Imu::ConstPtr& msg);
void callback(const geometry_msgs::Accel::ConstPtr& a);
void loop();
};
int main(int argc, char **argv)
{
ros::init(argc, argv, "thruster_controller");
tf::TransformListener tf_listener;
Solver solver(argv, tf_listener);
solver.loop();
}
Solver::Solver(char** argv, tf::TransformListener& listener_adr)
{
rotation_matrix.setIdentity();
ang_v.setZero();
listener = &listener_adr;
thrust.header.frame_id = "base_link";
state_sub = nh.subscribe<sensor_msgs::Imu>("state/imu", 1, &Solver::state, this);
cmd_sub = nh.subscribe<geometry_msgs::Accel>("command/accel", 1, &Solver::callback, this);
cmd_pub = nh.advertise<riptide_msgs::ThrustStamped>("command/thrust", 1);
listener->waitForTransform("/base_link", "/surge_port_hi_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/surge_port_hi_link", ros::Time(0), tf_surge[0]);
listener->waitForTransform("/base_link", "/surge_stbd_hi_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/surge_stbd_hi_link", ros::Time(0), tf_surge[1]);
listener->waitForTransform("/base_link", "/surge_port_lo_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/surge_port_lo_link", ros::Time(0), tf_surge[2]);
listener->waitForTransform("/base_link", "/surge_stbd_lo_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/surge_stbd_lo_link", ros::Time(0), tf_surge[3]);
listener->waitForTransform("/base_link", "/sway_fwd_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/sway_fwd_link", ros::Time(0), tf_sway[0]);
listener->waitForTransform("/base_link", "/sway_aft_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/sway_aft_link", ros::Time(0), tf_sway[1]);
listener->waitForTransform("/base_link", "/heave_port_fwd_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/heave_port_fwd_link", ros::Time(0), tf_heave[0]);
listener->waitForTransform("/base_link", "/heave_stbd_fwd_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/heave_stbd_fwd_link", ros::Time(0), tf_heave[1]);
listener->waitForTransform("/base_link", "/heave_port_aft_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/heave_port_aft_link", ros::Time(0), tf_heave[2]);
listener->waitForTransform("/base_link", "/heave_stbd_aft_link", ros::Time(0), ros::Duration(10.0) );
listener->lookupTransform("/base_link", "/heave_stbd_aft_link", ros::Time(0), tf_heave[3]);
get_transform(pos_surge_port_hi, tf_surge[0]);
get_transform(pos_surge_stbd_hi, tf_surge[1]);
get_transform(pos_surge_port_lo, tf_surge[2]);
get_transform(pos_surge_stbd_lo, tf_surge[3]);
get_transform(pos_sway_fwd, tf_sway[0]);
get_transform(pos_sway_aft, tf_sway[1]);
get_transform(pos_heave_port_fwd, tf_heave[0]);
get_transform(pos_heave_stbd_fwd, tf_heave[1]);
get_transform(pos_heave_port_aft, tf_heave[2]);
get_transform(pos_heave_stbd_aft, tf_heave[3]);
google::InitGoogleLogging(argv[0]);
// PROBLEM SETUP
// Add residual blocks (equations)
// Linear
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<surge, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1>(new surge),
NULL,
&surge_port_hi, &surge_stbd_hi, &surge_port_lo, &surge_stbd_lo, &sway_fwd, &sway_aft, &heave_port_fwd, &heave_stbd_fwd, &heave_port_aft, &heave_stbd_aft);
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<sway, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1>(new sway),
NULL,
&surge_port_hi, &surge_stbd_hi, &surge_port_lo, &surge_stbd_lo, &sway_fwd, &sway_aft, &heave_port_fwd, &heave_stbd_fwd, &heave_port_aft, &heave_stbd_aft);
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<heave, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1>(new heave),
NULL,
&surge_port_hi, &surge_stbd_hi, &surge_port_lo, &surge_stbd_lo, &sway_fwd, &sway_aft, &heave_port_fwd, &heave_stbd_fwd, &heave_stbd_aft, &heave_port_aft);
// Angular
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<roll, 1, 1, 1, 1, 1, 1, 1>(new roll),
NULL,
&sway_fwd, &sway_aft, &heave_port_fwd, &heave_stbd_fwd, &heave_port_aft, &heave_stbd_aft);
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<pitch, 1, 1, 1, 1, 1, 1, 1, 1, 1>(new pitch),
NULL,
&surge_port_hi, &surge_stbd_hi, &surge_port_lo, &surge_stbd_lo, &heave_port_fwd, &heave_stbd_fwd, &heave_port_aft, &heave_stbd_aft);
problem.AddResidualBlock(new ceres::AutoDiffCostFunction<yaw, 1, 1, 1, 1, 1, 1, 1>(new yaw),
NULL,
&surge_port_hi, &surge_stbd_hi, &surge_port_lo, &surge_stbd_lo, &sway_fwd, &sway_aft);
// Set constraints (min/max thruster force)
// Surge thrusters
problem.SetParameterLowerBound(&surge_port_hi, 0, MIN_THRUST);
problem.SetParameterUpperBound(&surge_port_hi, 0, MAX_THRUST);
problem.SetParameterLowerBound(&surge_stbd_hi, 0, MIN_THRUST);
problem.SetParameterUpperBound(&surge_stbd_hi, 0, MAX_THRUST);
problem.SetParameterLowerBound(&surge_port_lo, 0, MIN_THRUST);
problem.SetParameterUpperBound(&surge_port_lo, 0, MAX_THRUST);
problem.SetParameterLowerBound(&surge_stbd_lo, 0, MIN_THRUST);
problem.SetParameterUpperBound(&surge_stbd_lo, 0, MAX_THRUST);
// Sway thrusters
problem.SetParameterLowerBound(&sway_fwd, 0, MIN_THRUST);
problem.SetParameterUpperBound(&sway_fwd, 0, MAX_THRUST);
problem.SetParameterLowerBound(&sway_aft, 0, MIN_THRUST);
problem.SetParameterUpperBound(&sway_aft, 0, MAX_THRUST);
// Heave thrusters
problem.SetParameterLowerBound(&heave_port_fwd, 0, MIN_THRUST);
problem.SetParameterUpperBound(&heave_port_fwd, 0, MAX_THRUST);
problem.SetParameterLowerBound(&heave_stbd_fwd, 0, MIN_THRUST);
problem.SetParameterUpperBound(&heave_stbd_fwd, 0, MAX_THRUST);
problem.SetParameterLowerBound(&heave_port_aft, 0, MIN_THRUST);
problem.SetParameterUpperBound(&heave_port_aft, 0, MAX_THRUST);
problem.SetParameterLowerBound(&heave_stbd_aft, 0, MIN_THRUST);
problem.SetParameterUpperBound(&heave_stbd_aft, 0, MAX_THRUST);
// Configure solver
options.max_num_iterations = 100;
options.linear_solver_type = ceres::DENSE_QR;
#ifdef progress
options.minimizer_progress_to_stdout = true;
#endif
}
void Solver::state(const sensor_msgs::Imu::ConstPtr& msg)
{
tf::Quaternion tf;
quaternionMsgToTF(msg->orientation, tf);
rotation_matrix.setRotation(tf.normalized());
vector3MsgToTF(msg->angular_velocity, ang_v);
}
void Solver::callback(const geometry_msgs::Accel::ConstPtr& a)
{
cmdSurge = a->linear.x;
cmdSway = a->linear.y;
cmdHeave = a->linear.z;
cmdRoll = a->angular.x;
cmdPitch = a->angular.y;
cmdYaw = a->angular.z;
// These forced initial guesses don't make much of a difference.
// We currently experience a sort of gimbal lock w/ or w/o them.
surge_stbd_hi = 0.0;
surge_port_hi = 0.0;
surge_port_lo = 0.0;
surge_stbd_lo = 0.0;
sway_fwd = 0.0;
sway_aft = 0.0;
heave_port_aft = 0.0;
heave_stbd_aft = 0.0;
heave_stbd_fwd = 0.0;
heave_port_fwd = 0.0;
#ifdef debug
std::cout << "Initial surge_stbd_hi = " << surge_stbd_hi
<< ", surge_port_hi = " << surge_port_hi
<< ", surge_port_lo = " << surge_port_lo
<< ", surge_stbd_lo = " << surge_stbd_lo
<< ", sway_fwd = " << sway_fwd
<< ", sway_aft = " << sway_aft
<< ", heave_port_aft = " << heave_port_aft
<< ", heave_stbd_aft = " << heave_stbd_aft
<< ", heave_stbd_fwd = " << heave_stbd_fwd
<< ", heave_port_fwd = " << heave_port_fwd
<< std::endl;
#endif
// Solve all my problems
ceres::Solve(options, &problem, &summary);
#ifdef report
std::cout << summary.FullReport() << std::endl;
#endif
#ifdef debug
std::cout << "Final surge_stbd_hi = " << surge_stbd_hi
<< ", surge_port_hi = " << surge_port_hi
<< ", surge_port_lo = " << surge_port_lo
<< ", surge_stbd_lo = " << surge_stbd_lo
<< ", sway_fwd = " << sway_fwd
<< ", sway_aft = " << sway_aft
<< ", heave_port_aft = " << heave_port_aft
<< ", heave_stbd_aft = " << heave_stbd_aft
<< ", heave_stbd_fwd = " << heave_stbd_fwd
<< ", heave_port_fwd = " << heave_port_fwd
<< std::endl;
#endif
// Create stamped thrust message
thrust.header.stamp = ros::Time::now();;
thrust.force.surge_stbd_hi = surge_stbd_hi;
thrust.force.surge_port_hi = surge_port_hi;
thrust.force.surge_port_lo = surge_port_lo;
thrust.force.surge_stbd_lo = surge_stbd_lo;
thrust.force.sway_fwd = sway_fwd;
thrust.force.sway_aft = sway_aft;
thrust.force.heave_port_aft = heave_port_aft;
thrust.force.heave_stbd_aft = heave_stbd_aft;
thrust.force.heave_stbd_fwd = heave_stbd_fwd;
thrust.force.heave_port_fwd = heave_port_fwd;
cmd_pub.publish(thrust);
}
void Solver::loop()
{
ros::spin();
}
|
//CtrlXKey.cpp
#include "CtrlXKey.h"
#include "KeyActionCreator.h"
#include "MemoForm.h"
#include "Memo.h"
#include "Line.h"
#include "SelectedBuffer.h"
#include "CtrlCKey.h"
#include "DeleteKey.h"
CtrlXKey::CtrlXKey(Form *form)
:KeyAction(form) {
}
CtrlXKey::CtrlXKey(const CtrlXKey& source)
: KeyAction(source) {
}
CtrlXKey::~CtrlXKey() {
}
CtrlXKey& CtrlXKey::operator=(const CtrlXKey& source) {
KeyAction::operator=(source);
return *this;
}
void CtrlXKey::OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags) {
CtrlCKey ctrlCKey = CtrlCKey(this->form);
ctrlCKey.OnKeyDown(nChar, nRepCnt, nFlags);
DeleteKey deleteKey = DeleteKey(this->form);
deleteKey.OnKeyDown(nChar, nRepCnt, nFlags);
dynamic_cast<MemoForm*>(this->form)->GetSelectedBuffer()->SetIsSelecting(false);
}
|
#include <map>
#include <string>
#include <iostream>
#include <stdio.h>
#include <algorithm>
using namespace std;
struct Edge
{
int u, v;
double dis;
};
// cmp็ฑปๅๅๆ&ๆดไฝณ
bool cmp(Edge a, Edge b)
{
return a.dis < b.dis;
}
const int MAXN = 100010;
const int MAXM = 100010;
int n, m;
Edge edges[MAXM];
int father[MAXN];
void init()
{
for (int i = 0; i < n; i++)
father[i] = i;
}
int findFather(int x)
{
int s = x;
while (father[x] != x)
x = father[x];
int f;
while (father[s] != x)
{
f = father[s];
father[s] = x;
s = f;
}
return x;
}
double Kruskal()
{
sort(edges, edges + m, cmp);
init();
double ans = 0.0;
int num = 0;
for (int i = 0; i < m; i++)
{
int u = edges[i].u;
int v = edges[i].v;
int faU = findFather(u);
int faV = findFather(v);
if (faU != faV)
{
father[faV] = faU;
ans += edges[i].dis;
num++;
if (num == n - 1)
return ans;
}
}
return ans;
}
int main()
{
ios::sync_with_stdio(false);
double l;
cin >> l >> n;
map<string, int> s2i;
string s;
for (int i = 0; i < n; i++)
{
cin >> s;
s2i[s] = i;
}
cin >> m;
double d;
string s1, s2;
for (int i = 0; i < m; i++)
{
cin >> s1 >> s2 >> d;
edges[i] = {s2i[s1], s2i[s2], d};
}
double ans = Kruskal();
ans != -1 && ans <= l ? printf("Need %.1f miles of cable", ans) : printf("Not enough cable");
}
|
๏ปฟ#include <fstream>
#include <gtest/gtest.h>
#include <cereal/archives/portable_binary.hpp>
#include "hs_test_utility/test_toolkit/test_serialization.hpp"
#include "hs_sfm/sfm_utility/camera_type.hpp"
#include "hs_sfm/sfm_utility/key_type.hpp"
namespace
{
TEST(TestCameraType, SimpleTest)
{
typedef double Scalar;
typedef hs::sfm::CameraIntrinsicParams<Scalar> IntrinsicParams;
IntrinsicParams i0;
IntrinsicParams i1(2000);
IntrinsicParams i2(2000, 0.5, 20, 21, 1.5);
IntrinsicParams::KMatrix K0 = i2.GetKMatrix();
IntrinsicParams i3(K0);
IntrinsicParams::KMatrix K1 = IntrinsicParams::KMatrix(i3);
IntrinsicParams i4(i3);
IntrinsicParams i5 = i4;
}
TEST(TestCameraType, SerializationTest)
{
typedef double Scalar;
typedef hs::sfm::CameraIntrinsicParams<Scalar> IntrinsicParams;
typedef hs::sfm::CameraExtrinsicParams<Scalar> ExtrinsicParams;
IntrinsicParams intrinsic_params(4880.22,
0.0,
3026.11,
1992.36,
1.0,
-0.100423,
0.128487,
-0.0482081,
-3.17902e-05,
7.75629e-05);
hs::test::TestLocalSerialization<IntrinsicParams> intrinsic_params_tester;
ASSERT_EQ(true, intrinsic_params_tester(intrinsic_params,
"intrinsic_params.bin"));
ExtrinsicParams extrinsic_params;
extrinsic_params.rotation()[0] = 0.3;
extrinsic_params.rotation()[1] = 0.4;
extrinsic_params.rotation()[2] = 0.5;
extrinsic_params.position()[0] = 0.7;
extrinsic_params.position()[1] = 0.8;
extrinsic_params.position()[2] = 0.9;
hs::test::TestLocalSerialization<ExtrinsicParams> extrinsic_params_tester;
ASSERT_EQ(true, extrinsic_params_tester(extrinsic_params,
"extrinsic_params.bin"));
}
}
|
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main(int argc, char const *argv[]) {
int fd ;
char * myfifo = "~/myfifo";
char buf[1000] ;
mkfifo(myfifo,0666);
fd = open(myfifo, O_RDONLY);
read(fd,buf , sizeof(buf));
printf("REcieved :%s\n",buf );
close(fd);
unlink(myfifo);
return 0;
}
|
class rectangleNode:public Node
{
private:
int l;
int b;
public:
rectangleNode();
~rectangleNode();
int area();
void display();
};
rectangleNode::rectangleNode()
{
printf("Making a rectangle node\n");
l = 8;
b = 5;
}
rectangleNode::~rectangleNode()
{
printf("Destroying the rectangle node\n");
}
int rectangleNode::area()
{
return l * b;
}
void rectangleNode::display()
{
printf("Length is %d\n", l);
printf("Breadth is %d\n", b);
}
|
#include "GameManager.h"
#include "LevelManager.h"
#include <SFML\Graphics.hpp>
#include <cmath>
Position GameManager::convGridPos(Position pos)
{
GridBool obs = *levelManager->getLevel(0);
return Position(pos.x * (Config::gridDisplaySize / obs.getWidth()), pos.y * (Config::gridDisplaySize / obs.getHeight()));
}
Position GameManager::convScreenPos(Position pos)
{
GridBool obs = *levelManager->getLevel(0);
float tempx = pos.x / (Config::gridDisplaySize / obs.getWidth());
float tempy = pos.y / (Config::gridDisplaySize / obs.getHeight());
return Position(std::round(tempx), std::round(tempy));
}
void GameManager::init()
{
behaviorTree.loadFile("res/behaviortree.txt");
behaviorTree.init();
//behaviorTree.printTree();
}
void GameManager::eventUpdate(sf::Event& event)
{
}
void GameManager::update()
{
behaviorTree.update();
}
|
#ifndef UTILS_TREE_H
#define UTILS_TREE_H
#include <string>
#include "utils_linked.h"
#include "utils_vector.h"
template <class T = int>
class utils_tree
{
public:
utils_tree(std::string& str);
void clean();
void insert(T data);
void remove(T data);
bool search(T key);
bool is_bst();
bool is_pyramid();
int max_depth();
~utils_tree();
node<T>* root;
bool is_bst_stepped(utils_vector<node<T>*>& v, node<T>* n, T min, T max);
bool is_pyramid_stepped(utils_vector<node<T>*>& v, node<T>* n, int max);
private:
bool parse_tree(node<T>*& n, std::string &s, int &i);
void clean(node<T>* n);
void insert(node<T>*& n, T data);
void remove(node<T>*& n, T data);
node<T>* search(node<T>* n, T key);
bool is_bst(node<T>* n, T min, T max);
bool is_pyramid(node<T>* n, int max);
int max_depth(node<T>* n, int i);
};
template<class T>
utils_tree<T>::utils_tree(std::string &str)
: root(new node<T>())
{
int i = 0;
if(parse_tree(root, str, i))
{
delete root;
root = nullptr;
}
}
template<class T>
void utils_tree<T>::clean()
{
clean(root);
}
template<class T>
void utils_tree<T>::insert(T data)
{
insert(root, data);
}
template<class T>
void utils_tree<T>::remove(T data)
{
remove(root, data);
}
template<class T>
bool utils_tree<T>::search(T key)
{
return search(root, key) != nullptr;
}
template<class T>
bool utils_tree<T>::is_bst()
{
return is_bst(root->left, INT_MIN, root->data) && is_bst(root->right, root->data, INT_MAX);
// ะะพัััะปั. ะะฐะผะตะฝะธัั INT_MIN/MAX ะฝะฐ ะณะตะฝะดะตัะพ-ะฝะตะนััะฐะปัะฝัะน ัะธะฟ.
}
template<class T>
bool utils_tree<T>::is_pyramid()
{
return is_pyramid(root->left, root->data) && is_pyramid(root->right, root->data);
}
template<class T>
int utils_tree<T>::max_depth()
{
return max_depth(root, 1);
}
template<class T>
utils_tree<T>::~utils_tree()
{ // He protec
clean(); // He attak
} // He destroy
template<class T>
bool utils_tree<T>::is_bst_stepped(utils_vector<node<T>*> &v, node<T> *n, T min, T max)
{
if (!n) return true;
v.push_back(n);
if (n->data <= min || n->data >= max) return false;
return is_bst_stepped(v, n->left, min, n->data) && is_bst_stepped(v, n->right, n->data, max);
}
template<class T>
bool utils_tree<T>::is_pyramid_stepped(utils_vector<node<T>*> &v, node<T> *n, int max)
{
if (!n) return true;
v.push_back(n);
if (n->data >= max) return false;
return is_pyramid_stepped(v, n->left, n->data) && is_pyramid_stepped(v, n->right, n->data);
}
// PRIVATE
template<class T>
bool utils_tree<T>::parse_tree(node<T>*& n, std::string &s, int &i) {
if (i >= s.size() || s[static_cast<unsigned long>(i)] == ')')
{
delete n;
n = nullptr;
return false;
}
if (s[static_cast<unsigned long>(i)] == '(')
{
i++;
}
int num;
int start = i;
while (i != static_cast<int>(s.size()) && s[static_cast<unsigned long>(i)] != '(' && s[static_cast<unsigned long>(i)] != ')')
{
i++;
}
try
{
num = stoi(s.substr(static_cast<unsigned long>(start), static_cast<unsigned long>(i) - static_cast<unsigned long>(start)));
}
catch (...)
{
return true;
}
n->data = num;
n->left = new node<T>();
n->right = new node<T>();
if(parse_tree(n->left, s, i) || parse_tree(n->right, s, i)) return true;
if (s[static_cast<unsigned long>(i)] == ')')
{
i++;
}
return false;
}
template<class T>
void utils_tree<T>::clean(node<T> *n)
{
if (!n) return;
clean(n->left);
clean(n->right);
delete root;
}
template<class T>
void utils_tree<T>::insert(node<T>*& n, T data)
{
if (!n)
{
n = new node<T>(data);
}
else if (n->data < data)
{
insert(n->left, data);
}
else if (n->data > data)
{
insert(n->right, data);
}
}
template<class T>
void utils_tree<T>::remove(node<T>*& n, T data)
{
if (!n) return;
if (data < n->key)
{
deleteNode(n->left, data);
}
else if (data > n->key)
{
deleteNode(root->right, data);
}
else
{
if (!n->left)
{
node<T>* temp = n->right;
delete n;
n = temp;
}
else if (!n->right)
{
node<T>* temp = n->left;
delete n;
n = temp;
}
node<T>* min = n->right;
if (!min->left)
{
n->right = nullptr;
}
else
{
node<T>* t = min;
while(t->left->left)
{
t = n->left;
}
min = t->left;
t->left = nullptr;
}
n->data = min->data;
delete min;
}
}
template<class T>
node<T>* utils_tree<T>::search(node<T> *n, T key)
{
if (!n) return nullptr;
if (n->data == key) return n;
return search(n->left, key) | search(n->right, key);
}
template<class T>
bool utils_tree<T>::is_bst(node<T> *n, T min, T max)
{
if (!n) return true;
if (n->data <= min || n->data >= max) return false;
return is_bst(n->left, min, n->data) && is_bst(n->right, n->data, max);
}
template<class T>
bool utils_tree<T>::is_pyramid(node<T> *n, int max)
{
if (!n) return true;
if (n->data >= max) return false;
return is_pyramid(n->left, n->data) && is_pyramid(n->right, n->data);
}
template<class T>
int utils_tree<T>::max_depth(node<T> *n, int i)
{
if (!n) return i;
int l = max_depth(n->left, i + 1);
int r = max_depth(n->right, i + 1);
if (l > r) return l;
else return r;
}
#endif // UTILS_TREE_H
|
// C++ for the Windows Runtime vv1.0.170303.6
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "Windows.Devices.Gpio.1.h"
#include "Windows.Foundation.1.h"
WINRT_EXPORT namespace winrt {
namespace ABI::Windows::Foundation::Collections {
#ifndef WINRT_GENERIC_7fc72a82_2c57_5c01_a652_a8bdac685d30
#define WINRT_GENERIC_7fc72a82_2c57_5c01_a652_a8bdac685d30
template <> struct __declspec(uuid("7fc72a82-2c57-5c01-a652-a8bdac685d30")) __declspec(novtable) IVectorView<Windows::Devices::Gpio::GpioController> : impl_IVectorView<Windows::Devices::Gpio::GpioController> {};
#endif
}
namespace ABI::Windows::Foundation {
#ifndef WINRT_GENERIC_ed045917_96c7_5735_b4be_d79619d4835e
#define WINRT_GENERIC_ed045917_96c7_5735_b4be_d79619d4835e
template <> struct __declspec(uuid("ed045917-96c7-5735-b4be-d79619d4835e")) __declspec(novtable) IAsyncOperation<Windows::Devices::Gpio::GpioController> : impl_IAsyncOperation<Windows::Devices::Gpio::GpioController> {};
#endif
#ifndef WINRT_GENERIC_44ba689b_7d42_5374_add9_ab41e877a34b
#define WINRT_GENERIC_44ba689b_7d42_5374_add9_ab41e877a34b
template <> struct __declspec(uuid("44ba689b-7d42-5374-add9-ab41e877a34b")) __declspec(novtable) TypedEventHandler<Windows::Devices::Gpio::GpioPin, Windows::Devices::Gpio::GpioPinValueChangedEventArgs> : impl_TypedEventHandler<Windows::Devices::Gpio::GpioPin, Windows::Devices::Gpio::GpioPinValueChangedEventArgs> {};
#endif
}
namespace ABI::Windows::Foundation::Collections {
#ifndef WINRT_GENERIC_c8c443c2_f7d4_5386_ad15_31838882bd9e
#define WINRT_GENERIC_c8c443c2_f7d4_5386_ad15_31838882bd9e
template <> struct __declspec(uuid("c8c443c2-f7d4-5386-ad15-31838882bd9e")) __declspec(novtable) IVector<Windows::Devices::Gpio::GpioChangeRecord> : impl_IVector<Windows::Devices::Gpio::GpioChangeRecord> {};
#endif
#ifndef WINRT_GENERIC_ada84338_13b1_5367_9692_57b066badd6c
#define WINRT_GENERIC_ada84338_13b1_5367_9692_57b066badd6c
template <> struct __declspec(uuid("ada84338-13b1-5367-9692-57b066badd6c")) __declspec(novtable) IVector<Windows::Devices::Gpio::GpioController> : impl_IVector<Windows::Devices::Gpio::GpioController> {};
#endif
#ifndef WINRT_GENERIC_67944db0_6c56_5a2f_9e7b_63ca1aa8c411
#define WINRT_GENERIC_67944db0_6c56_5a2f_9e7b_63ca1aa8c411
template <> struct __declspec(uuid("67944db0-6c56-5a2f-9e7b-63ca1aa8c411")) __declspec(novtable) IIterator<Windows::Devices::Gpio::GpioController> : impl_IIterator<Windows::Devices::Gpio::GpioController> {};
#endif
#ifndef WINRT_GENERIC_415c3794_b2b6_5f5c_9a05_ae9268514726
#define WINRT_GENERIC_415c3794_b2b6_5f5c_9a05_ae9268514726
template <> struct __declspec(uuid("415c3794-b2b6-5f5c-9a05-ae9268514726")) __declspec(novtable) IIterable<Windows::Devices::Gpio::GpioController> : impl_IIterable<Windows::Devices::Gpio::GpioController> {};
#endif
}
namespace ABI::Windows::Foundation {
#ifndef WINRT_GENERIC_370167c0_0f7b_5e77_9bae_d35089a3db75
#define WINRT_GENERIC_370167c0_0f7b_5e77_9bae_d35089a3db75
template <> struct __declspec(uuid("370167c0-0f7b-5e77-9bae-d35089a3db75")) __declspec(novtable) AsyncOperationCompletedHandler<Windows::Devices::Gpio::GpioController> : impl_AsyncOperationCompletedHandler<Windows::Devices::Gpio::GpioController> {};
#endif
}
namespace ABI::Windows::Foundation::Collections {
#ifndef WINRT_GENERIC_a4c620b9_cb89_5a25_bf16_5f412c1a3388
#define WINRT_GENERIC_a4c620b9_cb89_5a25_bf16_5f412c1a3388
template <> struct __declspec(uuid("a4c620b9-cb89-5a25-bf16-5f412c1a3388")) __declspec(novtable) IIterator<Windows::Devices::Gpio::GpioChangeRecord> : impl_IIterator<Windows::Devices::Gpio::GpioChangeRecord> {};
#endif
#ifndef WINRT_GENERIC_b4afbf4f_620e_5725_878a_78c6ed10374e
#define WINRT_GENERIC_b4afbf4f_620e_5725_878a_78c6ed10374e
template <> struct __declspec(uuid("b4afbf4f-620e-5725-878a-78c6ed10374e")) __declspec(novtable) IIterable<Windows::Devices::Gpio::GpioChangeRecord> : impl_IIterable<Windows::Devices::Gpio::GpioChangeRecord> {};
#endif
#ifndef WINRT_GENERIC_d30ab625_1264_539e_acef_306dd214dc3b
#define WINRT_GENERIC_d30ab625_1264_539e_acef_306dd214dc3b
template <> struct __declspec(uuid("d30ab625-1264-539e-acef-306dd214dc3b")) __declspec(novtable) IVectorView<Windows::Devices::Gpio::GpioChangeRecord> : impl_IVectorView<Windows::Devices::Gpio::GpioChangeRecord> {};
#endif
}
namespace ABI::Windows::Foundation {
#ifndef WINRT_GENERIC_5da3faf4_60a7_5a14_9319_3941dfb13fed
#define WINRT_GENERIC_5da3faf4_60a7_5a14_9319_3941dfb13fed
template <> struct __declspec(uuid("5da3faf4-60a7-5a14-9319-3941dfb13fed")) __declspec(novtable) IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Devices::Gpio::GpioController>> : impl_IAsyncOperation<Windows::Foundation::Collections::IVectorView<Windows::Devices::Gpio::GpioController>> {};
#endif
#ifndef WINRT_GENERIC_ee427f2e_7d37_558f_9718_9cbcbff40c94
#define WINRT_GENERIC_ee427f2e_7d37_558f_9718_9cbcbff40c94
template <> struct __declspec(uuid("ee427f2e-7d37-558f-9718-9cbcbff40c94")) __declspec(novtable) AsyncOperationCompletedHandler<Windows::Foundation::Collections::IVectorView<Windows::Devices::Gpio::GpioController>> : impl_AsyncOperationCompletedHandler<Windows::Foundation::Collections::IVectorView<Windows::Devices::Gpio::GpioController>> {};
#endif
}
namespace Windows::Devices::Gpio {
struct IGpioChangeCounter :
Windows::Foundation::IInspectable,
impl::consume<IGpioChangeCounter>,
impl::require<IGpioChangeCounter, Windows::Foundation::IClosable>
{
IGpioChangeCounter(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioChangeCounterFactory :
Windows::Foundation::IInspectable,
impl::consume<IGpioChangeCounterFactory>
{
IGpioChangeCounterFactory(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioChangeReader :
Windows::Foundation::IInspectable,
impl::consume<IGpioChangeReader>,
impl::require<IGpioChangeReader, Windows::Foundation::IClosable>
{
IGpioChangeReader(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioChangeReaderFactory :
Windows::Foundation::IInspectable,
impl::consume<IGpioChangeReaderFactory>
{
IGpioChangeReaderFactory(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioController :
Windows::Foundation::IInspectable,
impl::consume<IGpioController>
{
IGpioController(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioControllerStatics :
Windows::Foundation::IInspectable,
impl::consume<IGpioControllerStatics>
{
IGpioControllerStatics(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioControllerStatics2 :
Windows::Foundation::IInspectable,
impl::consume<IGpioControllerStatics2>
{
IGpioControllerStatics2(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioPin :
Windows::Foundation::IInspectable,
impl::consume<IGpioPin>,
impl::require<IGpioPin, Windows::Foundation::IClosable>
{
IGpioPin(std::nullptr_t = nullptr) noexcept {}
};
struct IGpioPinValueChangedEventArgs :
Windows::Foundation::IInspectable,
impl::consume<IGpioPinValueChangedEventArgs>
{
IGpioPinValueChangedEventArgs(std::nullptr_t = nullptr) noexcept {}
};
}
}
|
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "model.h"
static model md; //ะะพะดะตะปั
int numbGraph = 0;
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
this->setWindowTitle("LabWork");
//ะัะฑะพั ัั
ะตะผั
ui->usageBox->addItems(QStringList() << "v ั ัะฐะณะพะผ h" << "v ั ัะฐะณะพะผ h/2"<<"v ะบะพััะตะบั.");
//ะะฝะธัะธะฐะปะธะทะฐัะธั ัะฐะฑะปะธัั
ui->tableWidget->setColumnCount(10);
ui->tableWidget->setHorizontalHeaderLabels(QStringList() << "x" << "v"<<"h"<<"v2"<<"S"<<"e"<<"u"<<"E"<<"v ะบะพัั."<<"v1");
//ะะฝะธัะธะฐะปะธะทะฐัะธั ะพัะฝะพะฒะฝะพะณะพ ะณัะฐัะธะบะฐ
ui->graph->xAxis->setLabel("x");
ui->graph->yAxis->setLabel("V");
ui->graph->setInteraction(QCP::iRangeZoom,true);
ui->graph->setInteraction(QCP::iRangeDrag, true); // ะะบะปััะฐะตะผ ะฒะทะฐะธะผะพะดะตะนััะฒะธะต ะฟะตัะตัะฐัะบะธะฒะฐะฝะธั ะณัะฐัะธะบะฐ
//ะะฝะธัะธะฐะปะธะทะฐัะธั ะณัะฐัะธะบะฐ ะฟะพะณัะตัะฝะพััะตะน
ui->errGraph->xAxis->setLabel("x");
ui->errGraph->yAxis->setLabel("err");
ui->errGraph->setInteraction(QCP::iRangeZoom,true);
ui->errGraph->setInteraction(QCP::iRangeDrag, true);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::paintGraph(int numbColumnX, int numbColumnY, int N, int numbGraph){
QVector<double> X(N);
QVector<double> Y(N);
QVector<double> E(N);
QVector<double> U(N);
QVector<double> e(N);
QVariant check;
QTableWidgetItem *itemX;
QTableWidgetItem *itemY;
QTableWidgetItem *itemE;
QTableWidgetItem *itemU;
QTableWidgetItem *iteme;
QPen pen;
QPen upen;
pen.setColor(Qt::GlobalColor(numbGraph+7));
upen.setStyle(Qt::DotLine);
upen.setColor(Qt::GlobalColor(numbGraph+7));
for(int i = 0; i < N; i++){
itemX = ui->tableWidget->item(i,numbColumnX);
itemY = ui->tableWidget->item(i,numbColumnY);
itemE = ui->tableWidget->item(i,7);
itemU = ui->tableWidget->item(i,6);
iteme = ui->tableWidget->item(i,5);
check = itemX->text();
X[i] = check.toDouble();
check = itemY->text();
Y[i] = check.toDouble();
check = itemE->text();
E[i] = check.toDouble();
check = itemU->text();
U[i] = check.toDouble();
check = iteme->text();
e[i] = check.toDouble();
}
ui->graph->addGraph();
ui->graph->addGraph();
ui->errGraph->addGraph();
ui->errGraph->addGraph();
ui->graph->graph(2*numbGraph)->setData(X,Y);
ui->graph->graph(2*numbGraph)->setPen(pen);
ui->graph->graph(2*numbGraph)->setName(QString("ะงะธัะป. ััะฐะตะบั %1 (e)").arg(numbGraph+1));
ui->graph->graph(2*numbGraph+1)->setData(X,U);
ui->graph->graph(2*numbGraph+1)->setPen(upen);
ui->graph->graph(2*numbGraph+1)->setName(QString("ะขะพัะฝ. ััะฐะตะบั %1 (E)").arg(numbGraph+1));
ui->errGraph->graph(2*numbGraph)->setData(X,E);
ui->errGraph->graph(2*numbGraph)->setPen(upen);
ui->errGraph->graph(2*numbGraph+1)->setData(X,e);
ui->errGraph->graph(2*numbGraph+1)->setPen(pen);
ui->graph->xAxis->setRange(X[0],X[N-1]);
ui->errGraph->xAxis->setRange(X[0],X[N-1]);
double minY = Y[0], maxY = Y[0], minE = E[0], maxE = E[0];
for(int i = 1; i < N; i++){
if(Y[i]<minY) minY = Y[i];
if(Y[i]>maxY) maxY = Y[i];
if(E[i]<minE) minE = E[i];
if(E[i]>maxE) maxE = E[i];
}
ui->graph->yAxis->setRange(minY, maxY);
ui->errGraph->yAxis->setRange(minE, maxE);
ui->graph->legend->setVisible(true);
ui->graph->replot();
ui->errGraph->replot();
}
void MainWindow::on_startCount_clicked()
{
QTableWidgetItem *tbl;
ui->tableWidget->clear();
ui->tableWidget->setHorizontalHeaderLabels(QStringList() << "x" << "v ะธัะพะณ"<<"h"<<"v2"<<"S"<<"e"<<"u"<<"E"<<"v ะบะพัั."<<"v1");
md.set(ui->mfd->text().toDouble(), ui->a1fd->text().toDouble(),
ui->a3fd->text().toDouble(), ui->isInfch->isChecked(),
ui->x0fd->text().toDouble(), ui->u0fd->text().toDouble(),
ui->stepfd->text().toDouble(), ui->endfd->text().toDouble(),
ui->epsBrdfd->text().toDouble(), ui->epsCtrlfd->text().toDouble(),
ui->maxStepfd->text().toInt(),ui->isStepFixedch->isChecked(),
ui->usageBox->currentIndex());
ui->task->setText(md.print());
md.start();
ui->tableWidget->setRowCount(50);
ui->Params->setDisabled(true);
tbl = new QTableWidgetItem(QString::number(md.x));
ui->tableWidget->setItem(0,0,tbl);
tbl = new QTableWidgetItem(QString::number(md.v));
ui->tableWidget->setItem(0,1,tbl);
tbl = new QTableWidgetItem(QString::number(md.hprev));
ui->tableWidget->setItem(0,2,tbl);
tbl = new QTableWidgetItem("-");
ui->tableWidget->setItem(0,3,tbl);
tbl = new QTableWidgetItem("0");
ui->tableWidget->setItem(0,4,tbl);
tbl = new QTableWidgetItem("0");
ui->tableWidget->setItem(0,5,tbl);
tbl = new QTableWidgetItem(QString::number(md.v));
ui->tableWidget->setItem(0,6,tbl);
tbl = new QTableWidgetItem("0");
ui->tableWidget->setItem(0,7,tbl);
tbl = new QTableWidgetItem("-");
ui->tableWidget->setItem(0,8,tbl);
tbl = new QTableWidgetItem("-");
ui->tableWidget->setItem(0,9,tbl);
int i = 1;
while(md.isRun && i<md.maxStep && (md.end-md.x > md.epsBrd || md.isInf ))
{
if(ui->tableWidget->rowCount() == i)
ui->tableWidget->setRowCount(2*ui->tableWidget->rowCount());
md.iterate();
tbl = new QTableWidgetItem(QString::number(md.x));
ui->tableWidget->setItem(i,0,tbl);
tbl = new QTableWidgetItem(QString::number(md.v));
ui->tableWidget->setItem(i,1,tbl);
tbl = new QTableWidgetItem(QString::number(md.hprev));
ui->tableWidget->setItem(i,2,tbl);
tbl = new QTableWidgetItem(QString::number(md.v2));
ui->tableWidget->setItem(i,3,tbl);
tbl = new QTableWidgetItem(QString::number(md.s));
ui->tableWidget->setItem(i,4,tbl);
tbl = new QTableWidgetItem(QString::number(md.s*16));
ui->tableWidget->setItem(i,5,tbl);
tbl = new QTableWidgetItem(QString::number(md.u));
ui->tableWidget->setItem(i,6,tbl);
tbl = new QTableWidgetItem(QString::number(md.E));
ui->tableWidget->setItem(i,7,tbl);
tbl = new QTableWidgetItem(QString::number(md.v1 + md.s*16));
ui->tableWidget->setItem(i,8,tbl);
tbl = new QTableWidgetItem(QString::number(md.v1));
ui->tableWidget->setItem(i,9,tbl);
QCoreApplication::processEvents();
i++;
}
ui->stepUp->setText(QString::number(md.stUp));
ui->stepDwn->setText(QString::number(md.stDwn));
ui->maxS->setText(QString::number(md.maxS));
ui->minS->setText(QString::number(md.minS));
ui->xmaxS->setText(QString::number(md.xmaxS));
ui->xminS->setText(QString::number(md.xminS));
ui->maxH->setText(QString::number(md.maxH));
ui->minH->setText(QString::number(md.minH));
ui->xmaxH->setText(QString::number(md.xmaxH));
ui->xminH->setText(QString::number(md.xminH));
ui->maxE->setText(QString::number(md.maxE));
ui->minE->setText(QString::number(md.minE));
ui->xmaxE->setText(QString::number(md.xmaxE));
ui->xminE->setText(QString::number(md.xminE));
md.avgS/=i;
ui->avgS->setText(QString::number(md.avgS));
ui->Params->setDisabled(false);
md.stop();
paintGraph(0,1,i,numbGraph);
numbGraph++;
}
void MainWindow::on_stopCount_clicked()
{
md.stop();
}
void MainWindow::on_clear_clicked()
{
ui->tableWidget->clear();
ui->tableWidget->setHorizontalHeaderLabels(QStringList() << "x" << "v"<<"h"<<"v2"<<"S");
ui->stepUp->setText("");
ui->stepDwn->setText("");
ui->xmaxS->setText("");
ui->maxS->setText("");
ui->xminS->setText("");
ui->minS->setText("");
ui->xmaxE->setText("");
ui->maxE->setText("");
ui->xminE->setText("");
ui->minE->setText("");
ui->xmaxH->setText("");
ui->maxH->setText("");
ui->xminH->setText("");
ui->minH->setText("");
ui->avgS->setText("");
ui->tableWidget->setRowCount(0); //ัััะฐะฝะฐะฒะปะธะฒะฐะตะผ ะบะพะปะธัะตััะฒะพ ัััะพะบ ะฒ ะฝะพะปั
ui->graph->clearGraphs();
ui->graph->replot();
ui->errGraph->clearGraphs();
ui->errGraph->replot();
numbGraph = 0;
}
void MainWindow::on_isInfch_stateChanged(int st)
{
if(st)
{
ui->endfd->setDisabled(true);
ui->epsBrdfd->setDisabled(true);
}
else
{
ui->endfd->setDisabled(false);
ui->epsBrdfd->setDisabled(false);
}
}
void MainWindow::on_exit_triggered()
{
QApplication::quit();
}
|
// Copyright (c) 2018-2019 Daniel Krawisz
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef COSMOS_EVALUATION_INTERPRETER
#define COSMOS_EVALUATION_INTERPRETER
#include <cosmos/workspace.hpp>
#include "operators.hpp"
namespace cosmos {
// namespace for evaluating user commands.
namespace evaluation {
struct error {
std::string Message;
static error unrecognized_name(name);
static error format();
error() : Message{} {}
error(string m) : Message{m} {};
bool operator==(const error e) const {
return Message == e.Message;
}
bool operator!=(const error e) const {
return Message != e.Message;
}
};
struct response {
// The new space that results from this operation.
work::space Result;
// The response which is returned to the user.
ptr<work::item> Return;
evaluation::error Error;
bool valid() const {
return Result.valid();
}
bool error() const {
return Error != evaluation::error{};
};
response(response& a) : Result{a.Result}, Return{a.Return}, Error{a.Error} {}
response& operator=(response&& a) {
Result = a.Result;
Return = a.Return;
Error = a.Error;
a.Return = nullptr;
return *this;
}
response() : Result{}, Return{nullptr}, Error{} {}
response(const work::space s) : Result{s}, Return{nullptr}, Error{} {};
response(const work::space s, ptr<work::item> i) : Result{s}, Return{i}, Error{} {}
response(struct error e) : Result{}, Return{nullptr}, Error{e} {}
response(const response& a) : Result{a.Result}, Return{a.Return}, Error(a.Error) {}
response(response&& a) : Result{a.Result}, Return{a.Return}, Error{a.Error} {
a.Return = nullptr;
}
};
struct close;
// representation of states of evaluation which are ready
// for new input and have possibly generated a response.
struct open {
work::space Workspace;
cosmos::list<ptr<open>> Stack;
open(work::space w, cosmos::list<ptr<open>> s) : Workspace{w}, Stack{s} {}
open(work::space w) : Workspace{w}, Stack{} {}
virtual ptr<close> read_name(cosmos::name n) const;
virtual ptr<close> read_number(N n) const;
virtual ptr<close> read_address(bitcoin::address a) const;
virtual ptr<close> read_pubkey(bitcoin::pubkey p) const;
virtual ptr<close> read_secret(bitcoin::secret s) const;
ptr<open> read_function(cosmos::function) const;
ptr<open> read_construction(constructor) const;
ptr<open> read_parenthesis() const;
virtual ~open() = 0;
};
// type generated at the start of an evaluation before
// any input has been read.
struct interpreter final : public open {
interpreter(work::space w) : open{w} {}
};
// representation of states of evaluation which necessarily
// require more input before a response can be generated.
struct close {
response Response;
cosmos::list<ptr<open>> Stack;
close(response r, cosmos::list<ptr<open>> stack) : Response{r}, Stack{stack} {}
ptr<open> next() const;
ptr<open> close_structure() const;
virtual ptr<open> read_operand(op) const = 0;
};
template <typename A>
struct atom final : public close {
ptr<work::atom<A>> Atom;
atom(ptr<work::atom<A>> a, work::space w, list<ptr<open>> stack) : close{response{w, a}, stack}, Atom{a} {}
ptr<open> read_operand(op) const override;
inline static ptr<atom> make(A a, work::space w, list<ptr<open>> stack) {
return std::make_shared<atom>(new atom{std::make_shared<work::atom<A>>(new work::atom<A>{a}), w, stack});
}
};
template <typename A, op o, typename B>
struct operation final : public close {
atom<A> Left;
atom<B> Right;
cosmos::operation<A, o, B> Operation;
operation(atom<A> a, atom<B> b) : Left{a}, Right{b}, Operation{} {}
ptr<open> read_operand(op) const override;
};
template <typename A, op o>
struct operand final : public open {
ptr<work::atom<A>> Left;
operand(ptr<work::atom<A>> a, work::space w, list<ptr<open>> stack) : open{w, stack}, Left{a} {}
ptr<close> read_name(name n) const override;
ptr<close> read_number(N n) const override;
ptr<close> read_address(bitcoin::address a) const override;
ptr<close> read_pubkey(bitcoin::pubkey p) const override;
ptr<close> read_secret(bitcoin::secret s) const override;
};
struct parenthesis final : public open {
const open* Previous;
parenthesis(work::space w, const open* p, list<ptr<open>> s) : open{w, s}, Previous{p} {}
parenthesis(work::space w, const open* p) : open{w}, Previous{p} {}
};
struct sequence : public open {
list<ptr<work::item>> Sequence;
sequence(list<ptr<work::item>> s, work::space w, list<ptr<open>> ss)
: open{w, ss}, Sequence{s} {}
ptr<sequence> next(ptr<work::item> p) const {
return std::make_shared<sequence>(new sequence{Sequence.prepend(p), Workspace, Stack});
}
};
struct list final : public sequence {};
struct function final : public sequence {
cosmos::function Function;
};
struct construction : public sequence {
cosmos::constructor Constructor;
};
inline ptr<close> open::read_name(cosmos::name n) const {
return atom<cosmos::name>::make(n, Workspace, Stack);
}
inline ptr<close> open::read_number(N n) const {
return atom<N>::make(n, Workspace, Stack);
}
inline ptr<close> open::read_address(bitcoin::address a) const {
return atom<bitcoin::address>::make(a, Workspace, Stack);
}
inline ptr<close> open::read_pubkey(bitcoin::pubkey p) const {
return atom<bitcoin::pubkey>::make(p, Workspace, Stack);
}
inline ptr<close> open::read_secret(bitcoin::secret s) const {
return atom<bitcoin::secret>::make(s, Workspace, Stack);
}
inline ptr<open> open::read_parenthesis() const {
return std::make_shared<open>(new parenthesis{Workspace, this, Stack});
}
open::~open() {};
template <typename A, op o>
inline ptr<close> operand<A, o>::read_name(name n) const {
return std::make_shared<close>(new operation<A, o, name>(Left, n));
}
template <typename A, op o>
inline ptr<close> operand<A, o>::read_number(N n) const {
return std::make_shared<close>(new operation<A, o, N>(Left, n));
}
template <typename A, op o>
inline ptr<close> operand<A, o>::read_address(bitcoin::address a) const {
return std::make_shared<close>(new operation<A, o, bitcoin::address>(Left, a));
}
template <typename A, op o>
inline ptr<close> operand<A, o>::read_pubkey(bitcoin::pubkey p) const {
return std::make_shared<close>(new operation<A, o, bitcoin::pubkey>(Left, p));
}
template <typename A, op o>
inline ptr<close> operand<A, o>::read_secret(bitcoin::secret s) const {
return std::make_shared<close>(new operation<A, o, bitcoin::secret>(Left, s));
}
}
evaluation::response evaluate(const work::space, stringstream& s);
}
#endif
|
class Solution {
public:
vector<vector<string>> res;
vector<vector<string>> partition(string s) {
if(s.length()==0) return res;
vector<string> temp;
helper(temp,s,0);
return res;
}
void helper(vector<string>& temp,string& s,int start){ // start่กจ็คบๅผๅงๅญ็ฌฆ็index
if(s.length()==start)
{
res.push_back(temp);
return;
}
for(int i=1;i+start-1<s.length();i++)
{
string x = s.substr(start,i);
if(!ispara(x))
continue;
temp.push_back(x);
helper(temp,s,start+i);
temp.pop_back();
}
}
bool ispara(string s){
// ๅคๆญๆฏไธๆฏๅๆ
for(int i=0;i<s.length()/2;i++)
{
if(s[i]!=s[s.length()-1-i])
return false;
}
return true;
}
};
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "remoting/host/session_event_executor_win.h"
#include <string>
#include "base/bind.h"
#include "base/command_line.h"
#include "base/compiler_specific.h"
#include "base/single_thread_task_runner.h"
#include "base/win/windows_version.h"
#include "ipc/ipc_channel.h"
#include "ipc/ipc_channel_proxy.h"
#include "remoting/host/chromoting_messages.h"
#include "remoting/host/win/desktop.h"
#include "remoting/host/win/scoped_thread_desktop.h"
#include "remoting/proto/event.pb.h"
namespace {
// The command line switch specifying the name of the Chromoting IPC channel.
const char kProcessChannelId[] = "chromoting-ipc";
const uint32 kUsbLeftControl = 0x0700e0;
const uint32 kUsbRightControl = 0x0700e4;
const uint32 kUsbLeftAlt = 0x0700e2;
const uint32 kUsbRightAlt = 0x0700e6;
const uint32 kUsbDelete = 0x07004c;
bool CheckCtrlAndAltArePressed(const std::set<uint32>& pressed_keys) {
size_t ctrl_keys = pressed_keys.count(kUsbLeftControl) +
pressed_keys.count(kUsbRightControl);
size_t alt_keys = pressed_keys.count(kUsbLeftAlt) +
pressed_keys.count(kUsbRightAlt);
return ctrl_keys != 0 && alt_keys != 0 &&
(ctrl_keys + alt_keys == pressed_keys.size());
}
// Emulates Secure Attention Sequence (Ctrl+Alt+Del) by switching to
// the Winlogon desktop and injecting Ctrl+Alt+Del as a hot key.
// N.B. Windows XP/W2K3 only.
void EmulateSecureAttentionSequence() {
const wchar_t kWinlogonDesktopName[] = L"Winlogon";
const wchar_t kSasWindowClassName[] = L"SAS window class";
const wchar_t kSasWindowTitle[] = L"SAS window";
scoped_ptr<remoting::Desktop> winlogon_desktop(
remoting::Desktop::GetDesktop(kWinlogonDesktopName));
if (!winlogon_desktop.get())
return;
remoting::ScopedThreadDesktop desktop;
if (!desktop.SetThreadDesktop(winlogon_desktop.Pass()))
return;
HWND window = FindWindow(kSasWindowClassName, kSasWindowTitle);
if (!window)
return;
PostMessage(window,
WM_HOTKEY,
0,
MAKELONG(MOD_ALT | MOD_CONTROL, VK_DELETE));
}
} // namespace
namespace remoting {
using protocol::ClipboardEvent;
using protocol::MouseEvent;
using protocol::KeyEvent;
SessionEventExecutorWin::SessionEventExecutorWin(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
scoped_ptr<EventExecutor> nested_executor)
: nested_executor_(nested_executor.Pass()),
task_runner_(main_task_runner),
ALLOW_THIS_IN_INITIALIZER_LIST(weak_ptr_factory_(this)),
weak_ptr_(weak_ptr_factory_.GetWeakPtr()) {
// Let |weak_ptr_| be used on the |task_runner_| thread.
// |weak_ptr_| and |weak_ptr_factory_| share a ThreadChecker, so the
// following line affects both of them.
weak_ptr_factory_.DetachFromThread();
std::string channel_name =
CommandLine::ForCurrentProcess()->GetSwitchValueASCII(kProcessChannelId);
// Connect to the Chromoting IPC channel if the name was passed in the command
// line.
if (!channel_name.empty()) {
chromoting_channel_.reset(new IPC::ChannelProxy(
channel_name, IPC::Channel::MODE_CLIENT, this, io_task_runner));
}
}
SessionEventExecutorWin::~SessionEventExecutorWin() {
DCHECK(task_runner_->BelongsToCurrentThread());
}
void SessionEventExecutorWin::OnSessionStarted(
scoped_ptr<protocol::ClipboardStub> client_clipboard) {
if (!task_runner_->BelongsToCurrentThread()) {
task_runner_->PostTask(
FROM_HERE,
base::Bind(&SessionEventExecutorWin::OnSessionStarted,
weak_ptr_, base::Passed(&client_clipboard)));
return;
}
nested_executor_->OnSessionStarted(client_clipboard.Pass());
}
void SessionEventExecutorWin::OnSessionFinished() {
if (!task_runner_->BelongsToCurrentThread()) {
task_runner_->PostTask(
FROM_HERE,
base::Bind(&SessionEventExecutorWin::OnSessionFinished,
weak_ptr_));
return;
}
nested_executor_->OnSessionFinished();
}
void SessionEventExecutorWin::InjectClipboardEvent(
const ClipboardEvent& event) {
if (!task_runner_->BelongsToCurrentThread()) {
task_runner_->PostTask(
FROM_HERE,
base::Bind(&SessionEventExecutorWin::InjectClipboardEvent,
weak_ptr_, event));
return;
}
nested_executor_->InjectClipboardEvent(event);
}
void SessionEventExecutorWin::InjectKeyEvent(const KeyEvent& event) {
if (!task_runner_->BelongsToCurrentThread()) {
task_runner_->PostTask(
FROM_HERE,
base::Bind(&SessionEventExecutorWin::InjectKeyEvent,
weak_ptr_, event));
return;
}
// HostEventDispatcher should drop events lacking the pressed field.
DCHECK(event.has_pressed());
if (event.has_usb_keycode()) {
if (event.pressed()) {
// Simulate secure attention sequence if Ctrl-Alt-Del was just pressed.
if (event.usb_keycode() == kUsbDelete &&
CheckCtrlAndAltArePressed(pressed_keys_)) {
VLOG(3) << "Sending Secure Attention Sequence to console";
if (base::win::GetVersion() == base::win::VERSION_XP) {
EmulateSecureAttentionSequence();
} else if (chromoting_channel_.get()) {
chromoting_channel_->Send(new ChromotingHostMsg_SendSasToConsole());
}
}
pressed_keys_.insert(event.usb_keycode());
} else {
pressed_keys_.erase(event.usb_keycode());
}
}
SwitchToInputDesktop();
nested_executor_->InjectKeyEvent(event);
}
void SessionEventExecutorWin::InjectMouseEvent(const MouseEvent& event) {
if (!task_runner_->BelongsToCurrentThread()) {
task_runner_->PostTask(
FROM_HERE,
base::Bind(&SessionEventExecutorWin::InjectMouseEvent,
weak_ptr_, event));
return;
}
SwitchToInputDesktop();
nested_executor_->InjectMouseEvent(event);
}
bool SessionEventExecutorWin::OnMessageReceived(const IPC::Message& message) {
return false;
}
void SessionEventExecutorWin::SwitchToInputDesktop() {
// Switch to the desktop receiving user input if different from the current
// one.
scoped_ptr<Desktop> input_desktop = Desktop::GetInputDesktop();
if (input_desktop.get() != NULL && !desktop_.IsSame(*input_desktop)) {
// If SetThreadDesktop() fails, the thread is still assigned a desktop.
// So we can continue capture screen bits, just from a diffected desktop.
desktop_.SetThreadDesktop(input_desktop.Pass());
}
}
} // namespace remoting
|
#include<stdio.h>
#include<algorithm>
#define SIZE 10
using namespace std;
long a[1000];
int r=0;
void ShiftUp(int x)
{
if(x==1)
return;
int par,large;
par=x/2;
large=par;
if (a[x] > a[large])
large = x;
if (large == par)
return;
else
{
swap(a[large], a[par]);
ShiftUp(par);
}
}
void ShiftDown(int index)
{
int left, right, large;
left = index * 2;
right = (index * 2) + 1;
large = index;
if (left <= r && a[left] > a[large])
large = left;
if (right <= r && a[right] > a[large])
large = right;
if (large == index)
return;
else
{
swap(a[large], a[index]);
ShiftDown(large);
}
}
void enque(int x)
{
if(r+1<SIZE)
{
r++;
a[r]=x;
ShiftUp(r);
}
else
printf("Queue Overflow\n");
}
int dequeue()
{
if(r>0)
{
int x=a[1];
a[1]=a[r];
r--;
ShiftDown(1);
return x;
}
else
printf("Queue Underflow\n");
}
int main()
{
int a,b,i;
while(1)
{
printf("1.Enqueue\n2.Dequeue\n3.Display\n4.Exit");
printf("\nEnter Your Choice : ");
scanf("%d",&a);
if(a==1)
{
printf("Enter Data : ");
scanf("%d",&b);
enque(b);
}
else if(a==2)
dequeue();
/*else if(a==3)
{
display(1);
printf("\n");
}*/
else
break;
}
while(r>=1)
{
printf("%d ",dequeue());
}
}
|
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
int isBalanced(TreeNode *root, bool &result) {
if (root == nullptr)
return 0;
if (result) {
int left = isBalanced(root->left, result);
int right = isBalanced(root->right, result);
if (abs(right - left) > 1)
result = false;
return max(left, right) + 1;
} else {
return -1;
}
}
public:
bool isBalanced(TreeNode* root) {
bool result = true;
isBalanced(root, result);
return result;
}
};
|
#include <cstdio>
#include <cstring>
int main() {
char dict[10][8] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight","nine"};
char tmp[10000];
int sum, len;
int sumarr[1000];
len = 0;
fgets(tmp, sizeof(tmp), stdin);
tmp[strlen(tmp)-1] = '\0';
for(int i = 0; tmp[i] != '\0';i++)
sum = sum + tmp[i] - '0';
do {
sumarr[len++] = sum % 10;
sum /= 10;
} while(sum);
for(int j = len-1; j > -1; j--) {
printf("%s", dict[sumarr[j]]);
if(j > 0)
printf(" ");
}
return 0;
}
|
#include "Player.h"
#include <iostream>
Player::Player(Ip remote, sf::UdpSocket *socket, sf::FloatRect shape, int layer, sf::Texture fond, int num, float speed, float poids, float vie) : Collision(shape, layer, fond),
Sync(remote, socket), m_num(num), m_speed(speed), m_poids(poids), m_vie(vie), m_enVie(true), m_vieBar((int)vie, (int)vie, sf::Color::Red, sf::FloatRect(0, -20, m_shape.width, 20))
{
m_gravity = 5.f;
m_spl = SpellList();
m_baseJump = 2000.f;
m_jumpHeight = m_baseJump;
m_jumping = false;
m_nomJoueur.setFont(Utils::baseFont);
m_nomJoueur.setFillColor(sf::Color::Black);
m_nomJoueur.setString("Player " + std::to_string(num + 1));
m_nomJoueur.setCharacterSize(20);
m_nomJoueur.setPosition(sf::Vector2f(m_shape.left, m_shape.top - m_nomJoueur.getGlobalBounds().height - m_vieBar.getSize().y));
CollisionList::getInstance()->addObject(this);
}
Player::~Player()
{
}
void Player::prepare(sf::Packet p)
{
sf::Vector2f playerPos;
sf::Vector2f mousePos;
int spType;
float px, py, mx, my;
p >> m_dir >> m_jump;
if (p >> spType >> px >> py >> mx >> my)
{
playerPos = sf::Vector2f(px, py);
mousePos = sf::Vector2f(mx, my);
m_spl.castSpell(static_cast<Spell::Type>(spType), m_remote, m_socket, playerPos, mousePos);
}
}
void Player::update(sf::Time delta)
{
std::vector<Collision*> otherObject = CollisionList::getInstance()->getObjects();
otherObject.erase(std::find(otherObject.begin(), otherObject.end(), this));
std::vector<Spell *> m_listSpell = m_spl.getObjects();
for (auto& sp : m_listSpell)
{
otherObject.erase(std::find(otherObject.begin(), otherObject.end(), sp));
}
//DEPLACEMENT---------------------------------------------------------------
sf::Vector2f dir;
//Choix de la direction
switch (m_dir)
{
case 1:
dir.x -= m_speed;
break;
case 2:
dir.x += m_speed;
break;
default:
break;
}
dir.x *= delta.asSeconds();
moveP(dir);
//On teste les collisions
if (collide(otherObject))
moveP(-dir); //On annule le mouvement
sf::Vector2f movement;
//Application de la gravitรฉ
movement.y += (m_gravity * m_poids);
//On uniformise le mouvement selon le temps passรฉ
movement.y *= delta.asSeconds();
moveP(movement);
//On teste les collisions
if (collide(otherObject))
{
m_jumpHeight = m_baseJump;
moveP(-movement); //On annule le mouvement
}
//Application du saut
sf::Vector2f saut;
if (m_jump || m_jumping)
{
if (m_jumpHeight <= 0)
m_jumping = false;
else
{
saut.y -= m_jumpHeight;
m_jumpHeight -= 200;
m_jumping = true;
}
}
saut.y *= delta.asSeconds();
moveP(saut);
//On teste les collisions
if (collide(otherObject))
moveP(-saut); //On annule le mouvement
m_dir = 0;
m_jump = false;
//FIN DEPLACEMENT---------------------------------------------------------------
//SORT---------------------------------------------------------------
int i = 0;
std::vector<int> listToDelete = std::vector<int>();
for (auto& sp : m_listSpell)
{
//On update tous les spells
Collision *c = sp->update(delta);
if (c != nullptr) //Si le spell ร touchรฉ qqc, on l'enleve
{
if (c == this) //Si il nous touche nous meme on annule
break;
if (c->getType() == Collision::Object::PLAYER)
damage((Player*)c, sp);
CollisionList::getInstance()->removeObject(sp);
m_spl.removeObject(sp);
}
if (!Utils::windowSize.contains((sf::Vector2i)sp->getPosition()))
{
CollisionList::getInstance()->removeObject(sp);
m_spl.removeObject(sp);
}
i++;
}
//On enlรจve les sorts qui doivent รชtre enlevรฉes
for (int i = listToDelete.size() - 1; i >= 0; i--)
{
m_listSpell.erase(m_listSpell.begin() + listToDelete[i]);
}
}
void Player::moveP(sf::Vector2f mouv)
{
Collision::moveP(mouv);
m_nomJoueur.move(mouv);
}
Collision::Object Player::getType()
{
return Object::PLAYER;
}
void Player::draw(sf::RenderTarget& target, sf::RenderStates states) const
{
if (m_enVie)
{
Collision::draw(target, states);
target.draw(m_nomJoueur);
target.draw(m_vieBar);
for (auto& sp : m_spl.getObjects())
{
target.draw(*sp);
}
}
}
SpellList * Player::getSpl()
{
return &m_spl;
}
bool Player::isEnVie()
{
return m_enVie;
}
void Player::damage(Player * p, Spell * sp)
{
p->receiveDamage(sp);
}
void Player::receiveDamage(Spell * sp)
{
m_vie -= sp->getDamage();
m_vieBar.setValue((int)m_vie);
if (m_vie <= 0)
{
m_enVie = false;
//on change de layer pour รฉviter les collisions
m_layer = -999;
}
}
|
#pragma once
#include <vector>
#include <list>
class MonoBehavior
{
public :
static std::list<MonoBehavior*> all;
public :
bool toDestroy;
virtual void Update() = 0;
MonoBehavior();
~MonoBehavior();
virtual void Destroy();
static std::list<MonoBehavior*> GetAllMonobehaviors();
};
|
#pragma once
#include "ofMain.h"
/*
In his 1999 paper โSteering Behaviors for Autonomous Characters,โ
Reynolds uses the word โvehicleโ to describe his autonomous agents,
so we will follow suit.
*/
class Vehicle
{
public:
// METHODS
Vehicle();
void seek(ofVec2f target);
void applyForce(ofVec2f force);
void update();
void draw();
~Vehicle();
// ATTRIBUTES
ofVec2f location;
ofVec2f velocity;
ofVec2f acceleration;
float maxSpeed;
float maxForce;
float mass;
};
|
#include<bits/stdc++.h>
using namespace std;
int main(){
int n, x, mod = 1e9 + 7;
cin >> n >> x;
vector<int>coins(n);
for(int i = 0; i < n; i ++){
cin >> coins[i];
}
vector<vector<int> >dp(n + 1, vector<int>(x+1, 0));
dp[0][0] = 1;
for(int i = 1; i <= n; i ++){
for(int j = 0; j <= x; j ++){
dp[i][j] = dp[i - 1][j];
int left = j - coins[i - 1];
if(left >= 0){
(dp[i][j] += dp[i][left]) %= mod;
}
}
}
cout << dp[n][x] << "\n";
return 0;
}
|
#include "foreach.h"
#include "resource.h"
#include <algorithm>
#include <crtdbg.h>
#include <fstream>
#include <iomanip>
#include <sstream>
#include <string>
#include <shlwapi.h>
#include <tchar.h>
#include <vector>
#include <windows.h>
#include <Wininet.h>
using namespace std;
typedef basic_string<TCHAR> tstring;
#define ri_cast reinterpret_cast
//---------------------------
// application implementation
//---------------------------
UINT Error(TCHAR *message, TCHAR *title)
{
_RPT0(_CRT_ERROR, message);
return MessageBox(NULL, message, title, MB_ABORTRETRYIGNORE | MB_ICONERROR);
}
UINT GetPRM(vector<tstring> &worlds_prm)
{
// get the executable's file name
TCHAR file_name[MAX_PATH];
GetModuleFileName(NULL, file_name, MAX_PATH);
PathStripPath(file_name);
// load the resource
HRSRC resource_info;
if (0 == strcmp("Perimeter.exe", file_name))
resource_info = FindResource(NULL, MAKEINTRESOURCE(IDR_WORLD_LIST), "TEXT");
else if (0 == strcmp("PerimeterET.exe", file_name))
resource_info = FindResource(NULL, MAKEINTRESOURCE(IDR_WORLD_LIST_ET), "TEXT");
else
return IDABORT;
HGLOBAL resource(LoadResource(NULL, resource_info));
char *text(ri_cast<char*>(LockResource(resource)));
istringstream text_stream(text);
copy(
istream_iterator<tstring>(text_stream),
istream_iterator<tstring>(),
inserter(worlds_prm, worlds_prm.begin()));
return IDOK;
}
bool Ping(LPCTSTR url)
{
const struct Pinger {
public:
Pinger(LPCTSTR url)
:url_(url)
{
DWORD thread_id;
HANDLE thread(CreateThread(NULL, 0, Thread, this, 0, &thread_id));
if (WaitForSingleObject(thread, 5000))
result_ = false;
}
static DWORD WINAPI Thread(LPVOID parameter)
{
Pinger *obj(ri_cast<Pinger*>(parameter));
obj->result_ = (TRUE == InternetCheckConnection(obj->url_.c_str(), FLAG_ICC_FORCE_CONNECTION, 0));
return 0;
}
bool Result() const
{
return result_;
}
private:
tstring url_;
bool result_;
} pinger(url);
return pinger.Result();
}
UINT GetMapList(vector<tstring> &map_list)
{
tstring map_list_string;
TCHAR *error_title(_T("Map Synchronization Error"));
// check connection status
if (!Ping(_T("http://www.rul-clan.ru/map_registration/list_maps.php")))
return IDIGNORE;
// register map
{
// establish connection
HINTERNET wi_handle(InternetOpen(
_T("Perimeter Map Compiler"),
INTERNET_OPEN_TYPE_PRECONFIG,
NULL,
NULL,
0));
if (NULL == wi_handle)
return Error(_T("InternetOpen failed"), error_title);
// open the list_maps.php
HINTERNET url_handle;
url_handle = InternetOpenUrl(
wi_handle,
#ifdef PRE_RELEASE
_T("http://www.rul-clan.ru/map_registration/pre_release/list_maps.php"),
#else
_T("http://www.rul-clan.ru/map_registration/list_maps.php"),
#endif
NULL,
0L,
0L,
0L);
if (NULL == url_handle)
{
InternetCloseHandle(wi_handle);
return Error(_T("InternetOpenUrl failed"), error_title);
}
// get data
{
const size_t buffer_size(1024);
TCHAR buffer[buffer_size];
DWORD bytes_read;
for (;;)
{
if (FALSE == InternetReadFile(
url_handle,
buffer,
buffer_size,
&bytes_read))
{
InternetCloseHandle(url_handle);
InternetCloseHandle(wi_handle);
return Error(_T("InternetReadFile failed"), error_title);
}
buffer[bytes_read] = _T('\0');
if (0 != bytes_read)
map_list_string += buffer;
else
break;
}
}
// wrap up
InternetCloseHandle(url_handle);
InternetCloseHandle(wi_handle);
}
// process result
if (map_list_string.c_str() == _T("falure"))
return Error(_T("Map could not be registered."), error_title);
istringstream text_stream(map_list_string);
copy(
istream_iterator<tstring>(text_stream),
istream_iterator<tstring>(),
inserter(map_list, map_list.begin()));
return IDOK;
}
UINT SavePRM(const vector<tstring> &worlds_prm, const vector<tstring> &map_list)
{
TCHAR *error_title(_T("Map Synchronization Error"));
// open WORLDS.PRM
ofstream worlds_prm_file(_T("RESOURCE\\Worlds\\WORLDS.PRM"));
if (!worlds_prm_file.is_open())
return Error(_T("Could not open WORLDS.PRM."), error_title);
// output data
worlds_prm_file << (128 + map_list.size()) << "\n\n";
foreach (const tstring &world, worlds_prm)
worlds_prm_file << setw(0) << world << setw(24) << world << "\n";
for (int i(0); i != 128 - worlds_prm.size(); ++i)
worlds_prm_file << setw(0) << "*" << setw(24) << "*" << "\n";
foreach (const tstring &world, map_list)
worlds_prm_file << setw(0) << world << setw(24) << world << "\n";
return IDOK;
}
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
UINT result;
// get WORLDS.PRM
vector<tstring> worlds_prm;
do
{
worlds_prm.clear();
result = GetPRM(worlds_prm);
} while (IDRETRY == result);
if (IDABORT == result)
return 0;
// get the list of maps
vector<tstring> map_list;
if (IDIGNORE != result)
{
do
{
map_list.clear();
result = GetMapList(map_list);
} while (IDRETRY == result);
if (IDABORT == result)
return 0;
}
// save the new WORLDS.PRM
if (IDIGNORE != result)
{
do
{
result = SavePRM(worlds_prm, map_list);
} while (IDRETRY == result);
if (IDABORT == result)
return 0;
}
// run RealPerimeter.exe with the parameters passed to us
PROCESS_INFORMATION process_info;
ZeroMemory(&process_info, sizeof(process_info));
do
{
STARTUPINFO startup_info;
ZeroMemory(&startup_info, sizeof(startup_info));
startup_info.cb = sizeof(startup_info);
if (FALSE == CreateProcess(
_T("RealPerimeter.exe"),
GetCommandLine(),
NULL,
NULL,
FALSE,
0L,
NULL,
NULL,
&startup_info,
&process_info))
result = Error(
_T("Could not start Perimeter. Make sure it is named RealPerimeter.exe and located in its default directory."),
_T("Startup Error"));
} while (IDRETRY == result);
if (IDABORT == result)
return 0;
// wait for Perimeter to exit
WaitForSingleObject(process_info.hProcess, INFINITE);
CloseHandle(process_info.hProcess);
CloseHandle(process_info.hThread);
return 0;
}
|
/*
* SPDX-FileCopyrightText: (C) 2015-2022 Daniel Nicoletti <dantti12@gmail.com>
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "viewemail_p.h"
#include <Cutelyst/application.h>
#include <Cutelyst/context.h>
#include <Cutelyst/response.h>
#include <SimpleMail/emailaddress.h>
#include <SimpleMail/mimemessage.h>
#include <SimpleMail/mimetext.h>
#include <SimpleMail/serverreply.h>
#include <QtCore/QLoggingCategory>
Q_LOGGING_CATEGORY(CUTELYST_VIEW_EMAIL, "cutelyst.view.email", QtWarningMsg)
using namespace Cutelyst;
using namespace SimpleMail;
ViewEmail::ViewEmail(QObject *parent, const QString &name)
: View(new ViewEmailPrivate, parent, name)
{
initSender();
}
QString ViewEmail::stashKey() const
{
Q_D(const ViewEmail);
return d->stashKey;
}
void ViewEmail::setStashKey(const QString &stashKey)
{
Q_D(ViewEmail);
d->stashKey = stashKey;
Q_EMIT changed();
}
QByteArray ViewEmail::defaultContentType() const
{
Q_D(const ViewEmail);
return d->defaultContentType;
}
void ViewEmail::setDefaultContentType(const QByteArray &contentType)
{
Q_D(ViewEmail);
d->defaultContentType = contentType;
Q_EMIT changed();
}
QByteArray ViewEmail::defaultCharset() const
{
Q_D(const ViewEmail);
return d->defaultCharset;
}
void ViewEmail::setDefaultCharset(const QByteArray &charset)
{
Q_D(ViewEmail);
d->defaultCharset = charset;
Q_EMIT changed();
}
QByteArray ViewEmail::defaultEncoding() const
{
Q_D(const ViewEmail);
return d->defaultEncoding;
}
void ViewEmail::setDefaultEncoding(const QByteArray &encoding)
{
Q_D(ViewEmail);
d->defaultEncoding = encoding;
Q_EMIT changed();
}
QString ViewEmail::senderHost() const
{
Q_D(const ViewEmail);
return d->sender->host();
}
void ViewEmail::setSenderHost(const QString &host)
{
Q_D(ViewEmail);
d->sender->setHost(host);
if (d->server) {
d->server->setHost(host);
}
}
int ViewEmail::senderPort() const
{
Q_D(const ViewEmail);
return d->sender->port();
}
void ViewEmail::setSenderPort(int port)
{
Q_D(ViewEmail);
d->sender->setPort(quint16(port));
if (d->server) {
d->server->setPort(quint16(port));
}
}
ViewEmail::ConnectionType ViewEmail::senderConnectionType() const
{
Q_D(const ViewEmail);
return static_cast<ViewEmail::ConnectionType>(d->sender->connectionType());
}
void ViewEmail::setSenderConnectionType(ViewEmail::ConnectionType ct)
{
Q_D(ViewEmail);
d->sender->setConnectionType(static_cast<Sender::ConnectionType>(ct));
if (d->server) {
d->server->setConnectionType(static_cast<Server::ConnectionType>(ct));
}
}
ViewEmail::AuthMethod ViewEmail::senderAuthMethod() const
{
Q_D(const ViewEmail);
return static_cast<ViewEmail::AuthMethod>(d->sender->authMethod());
}
void ViewEmail::setSenderAuthMethod(ViewEmail::AuthMethod method)
{
Q_D(ViewEmail);
d->sender->setAuthMethod(static_cast<Sender::AuthMethod>(method));
if (d->server) {
d->server->setAuthMethod(static_cast<Server::AuthMethod>(method));
}
}
QString ViewEmail::senderUser() const
{
Q_D(const ViewEmail);
return d->sender->user();
}
void ViewEmail::setSenderUser(const QString &user)
{
Q_D(ViewEmail);
d->sender->setUser(user);
if (d->server) {
d->server->setUsername(user);
}
}
QString ViewEmail::senderPassword() const
{
Q_D(const ViewEmail);
return d->sender->password();
}
void ViewEmail::setSenderPassword(const QString &password)
{
Q_D(ViewEmail);
d->sender->setPassword(password);
if (d->server) {
d->server->setPassword(password);
}
}
bool ViewEmail::async() const
{
Q_D(const ViewEmail);
return d->server;
}
void ViewEmail::setAsync(bool enable)
{
Q_D(ViewEmail);
if (enable) {
if (!d->server) {
d->server = new Server(this);
d->server->setHost(d->sender->host());
d->server->setPort(d->sender->port());
d->server->setUsername(d->sender->user());
d->server->setPassword(d->sender->password());
d->server->setAuthMethod(static_cast<Server::AuthMethod>(d->sender->authMethod()));
d->server->setConnectionType(static_cast<Server::ConnectionType>(d->sender->connectionType()));
}
} else {
delete d->server;
d->server = nullptr;
}
}
QByteArray ViewEmail::render(Context *c) const
{
Q_D(const ViewEmail);
QByteArray ret;
QVariantHash email = c->stash(d->stashKey).toHash();
if (email.isEmpty()) {
c->error(QStringLiteral("Cannot render template, template name or template stash key not defined"));
return ret;
}
MimeMessage message;
QVariant value;
value = email.value(QStringLiteral("to"));
if (value.type() == QVariant::String && !value.toString().isEmpty()) {
message.addTo(value.toString());
} else if (value.type() == QVariant::StringList) {
const auto rcpts = value.toStringList();
for (const QString &rcpt : rcpts) {
message.addTo(rcpt);
}
}
value = email.value(QStringLiteral("cc"));
if (value.type() == QVariant::String && !value.toString().isEmpty()) {
message.addCc(value.toString());
} else if (value.type() == QVariant::StringList) {
const auto rcpts = value.toStringList();
for (const QString &rcpt : rcpts) {
message.addCc(rcpt);
}
}
value = email.value(QStringLiteral("bcc"));
if (value.type() == QVariant::String && !value.toString().isEmpty()) {
message.addBcc(value.toString());
} else if (value.type() == QVariant::StringList) {
const auto rcpts = value.toStringList();
for (const QString &rcpt : rcpts) {
message.addBcc(rcpt);
}
}
message.setSender(email.value(QStringLiteral("from")).toString());
message.setSubject(email.value(QStringLiteral("subject")).toString());
QVariant body = email.value(QStringLiteral("body"));
QVariant parts = email.value(QStringLiteral("parts"));
if (body.isNull() && parts.isNull()) {
c->error(QStringLiteral("Can't send email without parts or body, check stash"));
return ret;
}
if (!parts.isNull()) {
const QVariantList partsVariant = parts.toList();
for (const QVariant &part : partsVariant) {
auto mime = part.value<MimePart *>();
if (mime) {
message.addPart(mime);
} else {
qCCritical(CUTELYST_VIEW_EMAIL) << "Failed to cast MimePart";
}
}
auto contentTypeIt = email.constFind(QStringLiteral("content_type"));
if (contentTypeIt != email.constEnd() && !contentTypeIt.value().isNull() && !contentTypeIt.value().toString().isEmpty()) {
const QByteArray contentType = contentTypeIt.value().toString().toLatin1();
qCDebug(CUTELYST_VIEW_EMAIL) << "Using specified content_type" << contentType;
message.getContent().setContentType(contentType);
} else if (!d->defaultContentType.isEmpty()) {
qCDebug(CUTELYST_VIEW_EMAIL) << "Using default content_type" << d->defaultContentType;
message.getContent().setContentType(d->defaultContentType);
}
} else {
auto part = new MimeText(body.toString());
d->setupAttributes(part, email);
message.setContent(part);
}
if (d->server) {
ServerReply *reply = d->server->sendMail(message);
connect(reply, &ServerReply::finished, reply, &ServerReply::deleteLater);
} else if (!d->sender->sendMail(message)) {
c->error(QString::fromLatin1(d->sender->responseText()));
return ret;
}
return ret;
}
ViewEmail::ViewEmail(ViewEmailPrivate *d, QObject *parent, const QString &name)
: View(d, parent, name)
{
initSender();
}
void ViewEmail::initSender()
{
Q_D(ViewEmail);
d->sender = new Sender(this);
QVariantHash config;
const auto app = qobject_cast<Application *>(parent());
if (app) {
config = app->config(QStringLiteral("VIEW_EMAIL")).toHash();
}
d->stashKey = config.value(QStringLiteral("stash_key"), QStringLiteral("email")).toString();
if (!config.value(QStringLiteral("sender_host")).isNull()) {
d->sender->setHost(config.value(QStringLiteral("sender_host")).toString());
}
if (!config.value(QStringLiteral("sender_port")).isNull()) {
d->sender->setPort(quint16(config.value(QStringLiteral("sender_port")).toInt()));
}
if (!config.value(QStringLiteral("sender_username")).isNull()) {
d->sender->setUser(config.value(QStringLiteral("sender_username")).toString());
}
if (!config.value(QStringLiteral("sender_password")).isNull()) {
d->sender->setPassword(config.value(QStringLiteral("sender_password")).toString());
}
}
void ViewEmailPrivate::setupAttributes(MimePart *part, const QVariantHash &attrs) const
{
auto contentTypeIt = attrs.constFind(QStringLiteral("content_type"));
if (contentTypeIt != attrs.constEnd() && !contentTypeIt.value().isNull() && !contentTypeIt.value().toString().isEmpty()) {
const QByteArray contentType = contentTypeIt.value().toString().toLatin1();
qCDebug(CUTELYST_VIEW_EMAIL) << "Using specified content_type" << contentType;
part->setContentType(contentType);
} else if (!defaultContentType.isEmpty()) {
qCDebug(CUTELYST_VIEW_EMAIL) << "Using default content_type" << defaultContentType;
part->setContentType(defaultContentType);
}
auto charsetIt = attrs.constFind(QStringLiteral("charset"));
if (charsetIt != attrs.constEnd() && !charsetIt.value().isNull() && !charsetIt.value().toString().isEmpty()) {
const QByteArray charset = charsetIt.value().toString().toLatin1();
qCDebug(CUTELYST_VIEW_EMAIL) << "Using specified charset" << charset;
part->setCharset(charset);
} else if (!defaultCharset.isEmpty()) {
qCDebug(CUTELYST_VIEW_EMAIL) << "Using default charset" << defaultCharset;
part->setCharset(defaultCharset);
}
auto encodingIt = attrs.constFind(QStringLiteral("encoding"));
if (encodingIt != attrs.constEnd() && !encodingIt.value().isNull() && !encodingIt.value().toString().isEmpty()) {
const QByteArray encoding = encodingIt.value().toString().toLatin1();
qCDebug(CUTELYST_VIEW_EMAIL) << "Using specified encoding" << encoding;
setupEncoding(part, encoding);
} else if (!defaultEncoding.isEmpty()) {
qCDebug(CUTELYST_VIEW_EMAIL) << "Using default charset" << defaultEncoding;
setupEncoding(part, defaultEncoding);
}
}
void ViewEmailPrivate::setupEncoding(MimePart *part, const QByteArray &encoding) const
{
if (encoding == "7bit") {
part->setEncoding(MimePart::_7Bit);
} else if (encoding == "8bit") {
part->setEncoding(MimePart::_8Bit);
} else if (encoding == "base64") {
part->setEncoding(MimePart::Base64);
} else if (encoding == "quoted-printable") {
part->setEncoding(MimePart::QuotedPrintable);
} else {
qCCritical(CUTELYST_VIEW_EMAIL) << "Unknown encoding" << encoding;
}
}
#include "moc_viewemail.cpp"
|
#include "stdafx.h"
#include "InnGold.h"
InnGold::InnGold()
{
}
InnGold::~InnGold()
{
}
|
#include "WordUnit.h"
WordUnit::WordUnit(string newWord){
setWord(newWord);
setCounter();
}
void WordUnit::setWord(string newWord){
word = newWord;
}
string WordUnit::getWord(void) const{
return word;
}
void WordUnit::setCounter(void){
//When a word is create, make sure the counter is started at 1
counter = 1;
}
void WordUnit::increaseCounter(void){
counter++;
}
int WordUnit::getCounter(void) const{
return counter;
}
|
#pragma once
#ifndef PARALLAX_BACKGROUND_HPP
#define PARALLAX_BACKGROUND_HPP
#include <array>
#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Graphics/Sprite.hpp>
#include "inc/texture_manager.hpp"
#include "inc/utility.hpp"
namespace astroblaster {
class ParallaxBackground {
public:
ParallaxBackground(sf::RenderWindow &window, TextureManager &tm);
void integrate();
void render();
private:
sf::RenderWindow &window;
std::array<sf::Sprite, 8> bg_sprites;
};
}
#endif
|
/**
* Copyright (C) 2017 Alibaba Group Holding Limited. All Rights Reserved.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "pipeline_videorecorder.h"
#include "multimedia/component_factory.h"
#include "multimedia/media_attr_str.h"
#include "multimedia/mm_debug.h"
namespace YUNOS_MM {
MM_LOG_DEFINE_MODULE_NAME("PLP-VPRV")
#define FUNC_TRACK() FuncTracker tracker(MM_LOG_TAG, __FUNCTION__, __LINE__)
// #define FUNC_TRACK()
static MediaMetaSP nilMeta;
PipelineVideoRecorder::PipelineVideoRecorder()
: mHasVideo(false)
, mHasAudio(false)
{
FUNC_TRACK();
}
PipelineVideoRecorder::~PipelineVideoRecorder()
{
FUNC_TRACK();
/*
ListenerPipeline* listener = DYNAMIC_CAST<ListenerPipeline*>(mListenerReceive.get());
listener->removeWatcher();
*/
}
mm_status_t PipelineVideoRecorder::prepareInternal()
{
FUNC_TRACK();
mm_status_t status = MM_ERROR_UNKNOWN;
mMediaMetaVideo->dump();
mMediaMetaAudio->dump();
mMediaMetaFile->dump();
ComponentSP audioSource;
ComponentSP videoSource;
//check recording stream
mHasVideo = (mUsage & RU_VideoRecorder) ? true : false;
mHasAudio = (mUsage & RU_AudioRecorder) ? true : false;
ASSERT(mComponents.size() == 0);
bool isRtp = false;
if ( strstr(mOutputFormat.c_str(), "rtp") ||
strstr(mOutputFormat.c_str(), "RTP"))
isRtp = true;
if (mHasAudio) {
audioSource = createComponentHelper(NULL,
Pipeline::getSourceUri(mAudioSourceUri.c_str(), true).c_str(),
mListenerReceive, false);
ASSERT(audioSource);
SourceComponent *recorderSource = DYNAMIC_CAST<SourceComponent*>(audioSource.get());
ASSERT(recorderSource);
recorderSource->setUri(mAudioSourceUri.c_str());
audioSource->setParameter(mMediaMetaAudio);
#ifdef __MM_YUNOS_LINUX_BSP_BUILD__
audioSource->setAudioConnectionId(mAudioConnectionId.c_str());
#endif
}
std::string videoSourceMime = Pipeline::getSourceUri(mVideoSourceUri.c_str(), false);
if (mHasVideo) {
videoSource = createComponentHelper(NULL, videoSourceMime.c_str(), mListenerReceive, false);
ASSERT(videoSource);
SourceComponent *recorderSource = DYNAMIC_CAST<SourceComponent*>(videoSource.get());
ASSERT(recorderSource);
recorderSource->setUri(mVideoSourceUri.c_str());
videoSource->setParameter(mMediaMetaVideo);
}
ComponentSP muxer, fileSink;
const char *muxerName = isRtp ? MEDIA_MIMETYPE_MEDIA_RTP_MUXER : MEDIA_MIMETYPE_MEDIA_MUXER;
muxer = createComponentHelper(NULL, muxerName, mListenerReceive, false);
ASSERT(muxer);
if ( !isRtp ) {
fileSink = createComponentHelper(NULL, MEDIA_MIMETYPE_MEDIA_FILE_SINK, mListenerReceive, false);
ASSERT(fileSink);
}
/*
* Sink and Source compoents should be ahead of codec component in vector.
* If codec component changes to prepared/started state first,
* codec will pull source data from source component right now,
* but source component have not change to prepared/started state, which may cause to read failed/error.
* it's the same to sink component.
*/
{
MMAutoLock locker(mLock);
mComponents.push_back(ComponentInfo(muxer, ComponentInfo::kComponentTypeFilter));
mMuxIndex = mComponents.size() - 1;
if (!isRtp) {
mComponents.push_back(ComponentInfo(fileSink, ComponentInfo::kComponentTypeSink));
mSinkIndex = mComponents.size() - 1;
mSinkClockIndex = mSinkIndex;
}
mConnectedStreamCount++;
}
ComponentSP audioEncoder;
ComponentSP mediaFission, videoEncoder, videoSink;
if (mHasAudio) {
// create components, setup pipeline
audioEncoder = createComponentHelper(NULL, mAudioEncoderMime.c_str(), mListenerReceive, true);
ASSERT(audioEncoder);
audioEncoder->setParameter(mMediaMetaAudio);
DEBUG("audio encoder: %p, muxer: %p, fileSink: %p\n", audioEncoder.get(), muxer.get(), fileSink.get());
if (!audioEncoder || !muxer || ((!fileSink)&&(!isRtp))) {
return MM_ERROR_NO_COMPONENT;
}
{
MMAutoLock locker(mLock);
mComponents.push_back(ComponentInfo(audioSource, ComponentInfo::kComponentTypeSource));
mAudioSourceIndex = mComponents.size()-1;
mComponents.push_back(ComponentInfo(audioEncoder, ComponentInfo::kComponentTypeFilter));
mAudioCodecIndex = mComponents.size()-1;
}
// need to prepare source first
setState(mComponents[mAudioSourceIndex].state, kComponentStatePreparing);
mm_status_t ret = audioSource->prepare();
if ( ret == MM_ERROR_SUCCESS)
setState(mComponents[mAudioSourceIndex].state, kComponentStatePrepared);
else if ( ret == MM_ERROR_ASYNC)
ret = waitUntilCondition(mComponents[mAudioSourceIndex].state,
kComponentStatePrepared, false/*pipeline state*/);
if (ret != MM_ERROR_SUCCESS) {
ERROR("source component prepare failed\n");
return MM_ERROR_OP_FAILED;
}
// construct pipeline graph
status = audioEncoder->addSource(audioSource.get(), Component::kMediaTypeAudio);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
status = audioEncoder->addSink(muxer.get(), Component::kMediaTypeAudio);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
}
bool addCameraRecordPreview = mSurface && !strcmp(videoSourceMime.c_str(), MEDIA_MIMETYPE_MEDIA_CAMERA_SOURCE);
if (mHasVideo) {
// create components, setup pipeline
if (addCameraRecordPreview) { // attach recording buffer to surface/BQProducer for preview
mediaFission = createComponentHelper("MediaFission", "media/all", mListenerReceive);
videoSink = createComponentHelper("VideoSinkSurface", "video/render", mListenerReceive);
ASSERT(mediaFission && videoSink);
}
videoEncoder = createComponentHelper(NULL, mVideoEncoderMime.c_str(), mListenerReceive, true);
ASSERT(videoEncoder);
DEBUG("video encoder: %p, muxer: %p, fileSink: %p\n", videoEncoder.get(), muxer.get(), fileSink.get());
if (!videoEncoder || !muxer || (!fileSink && !isRtp) || (addCameraRecordPreview && (!mediaFission || !videoSink))) {
return MM_ERROR_NO_COMPONENT;
}
status = videoEncoder->setParameter(mMediaMetaVideo);
if (videoSink)
status = videoSink->setParameter(mMediaMetaVideo);
{
MMAutoLock locker(mLock);
if (mediaFission && videoSink) {
mComponents.push_back(ComponentInfo(mediaFission, ComponentInfo::kComponentTypeFilter));
mComponents.push_back(ComponentInfo(videoSink, ComponentInfo::kComponentTypeSink));
}
// mVideoSinkIndex = mComponents.size()-1;
mComponents.push_back(ComponentInfo(videoSource, ComponentInfo::kComponentTypeSource));
mVideoSourceIndex = mComponents.size()-1;
mComponents.push_back(ComponentInfo(videoEncoder, ComponentInfo::kComponentTypeFilter));
mVideoCodecIndex = mComponents.size() - 1;
}
// need to prepare source first
setState(mComponents[mVideoSourceIndex].state, kComponentStatePreparing);
mm_status_t ret = videoSource->prepare();
if ( ret == MM_ERROR_SUCCESS)
setState(mComponents[mVideoSourceIndex].state, kComponentStatePrepared);
else if ( ret == MM_ERROR_ASYNC)
ret = waitUntilCondition(mComponents[mVideoSourceIndex].state,
kComponentStatePrepared, false/*pipeline state*/);
if (ret != MM_ERROR_SUCCESS) {
ERROR("source component prepare failed\n");
return MM_ERROR_OP_FAILED;
}
// construct pipeline graph
if (addCameraRecordPreview) {
// videoSource-->mediaFission-->videoSink; videoSource-->mediaFission-->videoEncoder-->
ASSERT(mediaFission && videoSink);
status = mediaFission->addSource(videoSource.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
status = videoEncoder->addSource(mediaFission.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
status = videoEncoder->addSink(muxer.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
status = mediaFission->addSink(videoSink.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
mConnectedStreamCount ++;
} else {
status = videoEncoder->addSource(videoSource.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
status = videoEncoder->addSink(muxer.get(), Component::kMediaTypeVideo);
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
}
}
if (mHasAudio | mHasVideo) {
if (!isRtp) {
status = muxer->addSink(fileSink.get(),
Component::MediaType(mHasVideo ? Component::kMediaTypeVideo : Component::kMediaTypeAudio));
ASSERT_RET(status == MM_ERROR_SUCCESS, MM_ERROR_COMPONENT_CONNECT_FAILED);
// setup components parameters
status = muxer->setParameter(mMediaMetaFile);
if (status != MM_ERROR_SUCCESS)
return status;
status = fileSink->setParameter(mMediaMetaFile);
if (status != MM_ERROR_SUCCESS)
return status;
} else {
status = muxer->setParameter(mMediaMetaFile);
if (status != MM_ERROR_SUCCESS)
return status;
}
}
return status;
}
mm_status_t PipelineVideoRecorder::stopInternal()
{
FUNC_TRACK();
mm_status_t status = MM_ERROR_SUCCESS;
//if audio exists
RecordSourceComponent *component = NULL;
if (mHasAudio) {
component = DYNAMIC_CAST<RecordSourceComponent*>(mComponents[mAudioSourceIndex].component.get());
if(!component){
ERROR("audio component DYNAMIC_CAST fail\n");
status = MM_ERROR_NO_COMPONENT;
}
else{
component->signalEOS();
}
}
//if video exists
if (mHasVideo) {
component = DYNAMIC_CAST<RecordSourceComponent*>(mComponents[mVideoSourceIndex].component.get());
if(!component){
ERROR("video component DYNAMIC_CAST fail\n");
status = MM_ERROR_NO_COMPONENT;
}
else{
component->signalEOS();
}
}
if (!mErrorCode) {
status = waitUntilCondition(mEosReceived, true, false/*pipeline state*/);
} else {
ERROR("mErrorCode %d", mErrorCode);
return MM_ERROR_UNKNOWN;
}
if (status != MM_ERROR_SUCCESS) {
ERROR("stop failed, status %d\n", status);
return MM_ERROR_OP_FAILED;
}
return status;
}
mm_status_t PipelineVideoRecorder::resetInternal()
{
FUNC_TRACK();
mAudioSourceIndex = -1;
mVideoSourceIndex = -1;
mSinkIndex = -1;
mHasVideo = false;
mHasAudio = false;
mConnectedStreamCount = 0;
mEOSStreamCount = 0;
mEosReceived = false;
return MM_ERROR_SUCCESS;
}
mm_status_t PipelineVideoRecorder::setParameter(const MediaMetaSP & meta)
{
FUNC_TRACK();
void* ptr = NULL;
if (meta->getPointer(MEDIA_ATTR_CAMERA_OBJECT, ptr)) {
mMediaMetaVideo->setPointer(MEDIA_ATTR_CAMERA_OBJECT, ptr);
DEBUG("camera %p\n", ptr);
}
if (meta->getPointer(MEDIA_ATTR_RECORDING_PROXY_OBJECT, ptr)) {
mMediaMetaVideo->setPointer(MEDIA_ATTR_RECORDING_PROXY_OBJECT, ptr);
DEBUG("recordingProxy %p\n", ptr);
}
mm_status_t status = PipelineRecorderBase::setParameter(meta);
if (status != MM_ERROR_SUCCESS) {
ERROR();
return status;
}
for (int32_t i = 0; i < (int32_t)mComponents.size(); i++) {
if (i == mAudioSourceIndex || i == mAudioCodecIndex) {
status = mComponents[i].component->setParameter(mMediaMetaAudio);
} else if (i == mVideoSourceIndex || i == mVideoCodecIndex) {
status = mComponents[i].component->setParameter(mMediaMetaVideo);
} else if (i == mMuxIndex || i == mSinkIndex) {
status = mComponents[i].component->setParameter(mMediaMetaFile);
}
if (status != MM_ERROR_SUCCESS) {
ERROR("set params failed, index %d", i);
return status;
}
}
return status;
}
mm_status_t PipelineVideoRecorder::getParameter(MediaMetaSP & meta)
{
return PipelineRecorderBase::getParameter(meta);
}
} // YUNOS_MM
/////////////////////////////////////////////////////////////////////////////////////
extern "C" {
YUNOS_MM::Pipeline* createPipeline()
{
YUNOS_MM::PipelineVideoRecorder *pipelineVideoRecorder = new YUNOS_MM::PipelineVideoRecorder();
if (pipelineVideoRecorder == NULL) {
return NULL;
}
if (pipelineVideoRecorder->init() != MM_ERROR_SUCCESS) {
delete pipelineVideoRecorder;
pipelineVideoRecorder = NULL;
return NULL;
}
return static_cast<YUNOS_MM::Pipeline*>(pipelineVideoRecorder);
}
void releasePipeline(YUNOS_MM::Pipeline *pipeline)
{
if (pipeline) {
pipeline->uninit();
delete pipeline;
pipeline = NULL;
}
}
}
|
//
// main.cpp
// https://open.kattis.com/problems/guess
//
// Created by Sofian Hadianto on 28/12/18.
// Copyright ยฉ 2018 Sofian Hadianto. All rights reserved.
//
#include <bits/stdc++.h>
using namespace std;
int main(int argc, const char * argv[]) {
ios::sync_with_stdio(false);
cin.tie(NULL);
int lo = 1;
int hi = 1001;
int max_step = 1;
bool found = false;
int guess = (1 + 1000) / 2;
string your_ans;
while (found == false) {
if (max_step > 10) {
break;
}
cout << guess << " ";
cin >> your_ans;
if (your_ans == "lower") {
hi = guess;
} else if (your_ans == "higher") {
lo = guess;
} else if (your_ans == "correct") {
found = true;
break;
}
guess = (lo + hi) / 2;
max_step++;
}
return 0;
}
|
// compile (for debugging): g++ -Wall -Wextra -fsanitize=undefined,address -D_GLIBCXX_DEBUG -g <file>
// compile (as on judge): g++ -x c++ -Wall -O2 -static -pipe <file>
// Output file will be a.out in both cases
#include <bits/stdc++.h>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <map>
using namespace std;
typedef long long ll;
/*
Print the total value of gold ingots you can collect when you can choose the start and end cave freely.
Sample Input 3 Sample Output 3
4 4
4 5 2 7
1 2
2 1
1 3
2 4
16
In this case the graph may contain circle
*/
#define debug(x) \
(cerr << #x << ": " << (x) << endl)
stack<int> S; // stack
const ll maxn=1000000;
map<ll,ll>nums;
vector<ll> counting;
int dp[maxn];
vector<vector<ll>> adj (maxn);
vector<vector<ll>> adj1 (maxn);
int dfs_counter = 0;
const int UNVISITED = -1;
vector<int> dfs_num (maxn, UNVISITED);
vector<int> dfs_min (maxn, UNVISITED);
vector<bool> on_stack (maxn, false);
vector<vector<int>> dfs_res;
void dfs(int u){
dfs_min[u]=dfs_num[u]=dfs_counter++;
S.push(u);
on_stack[u]=true;
for(auto v:adj[u]){
if(dfs_num[v]==UNVISITED) dfs(v);
if(on_stack[v]) dfs_min[u]=min(dfs_min[u],dfs_min[v]);
}
if(dfs_min[u]==dfs_num[u]){
vector<int> tmp;
int v=-1;
while(v!=u){
v=S.top();
S.pop();
on_stack[v]=false;
tmp.push_back(v);
}
dfs_res.push_back(tmp);
}
}
int main() {
ll n,m;
scanf("%lld%lld",&n,&m);
ll V=n;
ll len=0,a,b,c;
V=n;
counting.push_back(0);
while(len!=n){
scanf("%lld",&c);
counting.push_back(c);
nums.insert(std::pair<ll,ll>(len+1,c));
len++;
}
len=0;
while(len!=m){
scanf("%lld%lld",&a,&b);
adj[a].push_back(b);
len++;
}
for(int i=1;i<=V;i++){
if(dfs_num[i]==UNVISITED) dfs(i);
}
int res=0;
for(auto u:dfs_res){
if(u.size()>1){
}
if(u.size()==1){
int tmpa=u[0];
for(auto p:adj[tmpa]){
counting[tmpa]=max(counting[tmpa]+nums[p],counting[p]);
}
}
}
for(auto i:counting){
cout<<i<<endl;
if(res<i) res=i;
}
cout<<res;
return 0;
}
|
#include "DistorsionZone.h"
#include "Transform.h"
#include "Application.h"
#include "ModuleAudio.h"
#include "ModuleRenderer3D.h"
#include "ModuleImGui.h"
DistorsionZone::DistorsionZone(GameObject * own) : Component(own)
{
Setname("Distorsion Zone");
SetType(DIST_ZONE);
zone.SetNegativeInfinity();
App->audio->AddEnvironment(this);
}
DistorsionZone::DistorsionZone()
{
Setname("Distorsion Zone");
SetType(DIST_ZONE);
zone.SetNegativeInfinity();
App->audio->DeleteEnvironment(this);
}
void DistorsionZone::Update()
{
Transform* trans = (Transform*)owner->FindComponentbyType(TRANSFORM);
if (trans)
{
float3 pos = trans->GetPosition();
Quat rot = trans->GetRotation();
float3 scale = trans->GetScale()*size;
zone.pos = pos;
zone.axis[0] = rot.Transform(float3(1, 0, 0));
zone.axis[1] = rot.Transform(float3(0, 1, 0));
zone.axis[2] = rot.Transform(float3(0, 0, 1));
zone.r = scale;
DebugDraw();
}
}
void DistorsionZone::DebugDraw()
{
float3 corners[8];
OBB box = zone;
box.GetCornerPoints(corners);
const int s = 24;
float3* lines = new float3[s];
float3* colors = new float3[s];
lines[0] = float3(corners[0].x, corners[0].y, corners[0].z);
lines[1] = float3(corners[2].x, corners[2].y, corners[2].z);
lines[2] = float3(corners[2].x, corners[2].y, corners[2].z);
lines[3] = float3(corners[6].x, corners[6].y, corners[6].z);
lines[4] = float3(corners[4].x, corners[4].y, corners[4].z);
lines[5] = float3(corners[6].x, corners[6].y, corners[6].z);
lines[6] = float3(corners[4].x, corners[4].y, corners[4].z);
lines[7] = float3(corners[0].x, corners[0].y, corners[0].z);
//
lines[8] = float3(corners[1].x, corners[1].y, corners[1].z);
lines[9] = float3(corners[3].x, corners[3].y, corners[3].z);
lines[10] = float3(corners[3].x, corners[3].y, corners[3].z);
lines[11] = float3(corners[7].x, corners[7].y, corners[7].z);
lines[12] = float3(corners[5].x, corners[5].y, corners[5].z);
lines[13] = float3(corners[7].x, corners[7].y, corners[7].z);
lines[14] = float3(corners[5].x, corners[5].y, corners[5].z);
lines[15] = float3(corners[1].x, corners[1].y, corners[1].z);
//
lines[16] = float3(corners[0].x, corners[0].y, corners[0].z);
lines[17] = float3(corners[1].x, corners[1].y, corners[1].z);
lines[18] = float3(corners[2].x, corners[2].y, corners[2].z);
lines[19] = float3(corners[3].x, corners[3].y, corners[3].z);
lines[20] = float3(corners[4].x, corners[4].y, corners[4].z);
lines[21] = float3(corners[5].x, corners[5].y, corners[5].z);
lines[22] = float3(corners[6].x, corners[6].y, corners[6].z);
lines[23] = float3(corners[7].x, corners[7].y, corners[7].z);
for (int i = 0; i < s; i++)
{
colors[i] = float3(60, 60, 1);
}
// DrawLinesList(lines, s, 5, colors);
glLineWidth((float)5);
glEnableClientState(GL_VERTEX_ARRAY);
glVertexPointer(3, GL_FLOAT, 0, (float*)lines->ptr());
if (colors != nullptr)
{
glEnableClientState(GL_COLOR_ARRAY);
glColorPointer(3, GL_FLOAT, 0, (float*)colors->ptr());
}
glDrawArrays(GL_LINES, 0, s);
glDisableClientState(GL_VERTEX_ARRAY);
glDisableClientState(GL_COLOR_ARRAY);
glLineWidth(1);
delete[] lines;
delete[] colors;
}
bool DistorsionZone::CheckCollision(float3 target)
{
return zone.Contains(target);
}
void DistorsionZone::UI_draw()
{
if (ImGui::CollapsingHeader("Distorsion Zone")) {
char* bus_name = new char[41];
std::copy(bus.begin(), bus.end(), bus_name);
bus_name[bus.length()] = '\0';
ImGui::InputText("Target bus", bus_name, 40);
bus = bus_name;
ImGui::DragFloat("Value", &distorsion_value, 0.1, 0.0, 12.0, "%.1f");
ImGui::DragFloat("Size", &size, 0, 100);
delete[] bus_name;
}
}
|
/*
Copyright (c) 2005-2023, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef VERTEXBASEDPOPULATIONSRN_HPP_
#define VERTEXBASEDPOPULATIONSRN_HPP_
#include <VertexBasedCellPopulation.hpp>
#include "ChasteSerialization.hpp"
#include "CellSrnModel.hpp"
#include "EdgeRemapInfo.hpp"
#include "EdgeOperation.hpp"
#include "VertexElementMap.hpp"
#include <boost/serialization/base_object.hpp>
#include <boost/serialization/set.hpp>
#include <boost/serialization/vector.hpp>
template <unsigned DIM>
class VertexBasedCellPopulation;
/**
* After topological rearrangments, e.g. T1-3, node merges, or edge splits due to mitosis,
* junctional SRNs must be updated accordingly. For example, after edge split due to mitosis
* a new SRN must be created that inherits modified model variables.
* This class deals with Cell SRN update after a topological change occurs to the cell.
*/
template <unsigned DIM>
class VertexBasedPopulationSrn
{
private:
/** Pointer to a VertexBasedCellPopulation. */
VertexBasedCellPopulation<DIM>* mpCellPopulation;
friend class boost::serialization::access;
/**
* Serialize the object and its member variables.
*
* Note that serialization of the mesh and cells is handled by load/save_construct_data.
*
* Note also that member data related to writers is not saved - output must
* be set up again by the caller after a restart.
*
* @param archive the archive
* @param version the current version of this class
*/
template<class Archive>
void serialize(Archive & archive, const unsigned int version)
{
/*
* DO NOT archive & mpCellPopulation: the VertexBasedPopulationSrn is
* only ever archived from the VertexBasedCellPopulation, which knows
* this, and it is handled in the load_construct of VertexBasedCellPopulation.
*/
}
public:
/**
* Default constructor.
*/
VertexBasedPopulationSrn();
/**
* Destructor.
*/
~VertexBasedPopulationSrn();
/**
* Set the cell population.
*
* @param pCellPopulation pointer to a VertexBasedCellPopulation
*/
void SetVertexCellPopulation(VertexBasedCellPopulation<DIM>* pCellPopulation);
/**
* This method iterates over edge operations performed on the mesh and
* calls on RemapCellSrn() with appropriate arguments
*
* @param rElementMap the element map to take into account that some
* elements are deleted after an edge operation is recorded
*/
void UpdateSrnAfterBirthOrDeath(VertexElementMap& rElementMap);
/**
* Remaps cell SRN. If an edge has not been modified, the old edge SRN is mapped to its junction.
* Otherwise, edge SRNs are updated according to the operation performed.
*
* @param parentSrnEdges Edge SRNs before topology is changed
* @param pCellSrn pointer to CellSrnModel
* @param rEdgeChange Contains information about which edge changes occurred
*/
void RemapCellSrn(std::vector<AbstractSrnModelPtr> parentSrnEdges,
CellSrnModel* pCellSrn,
const EdgeRemapInfo& rEdgeChange);
};
#include "SerializationExportWrapper.hpp"
EXPORT_TEMPLATE_CLASS_SAME_DIMS(VertexBasedPopulationSrn)
#endif /* VERTEXBASEDPOPULATIONSRN_HPP_ */
|
/*
ID: zrh331
PROG: numtri
LANG: C++
*/
#include <fstream>
#include <iostream>
#include <vector>
#include <string.h>
#include <stdio.h>
using namespace std;
int a[1001][1001], f[1001][1001], n, ans=0;
int main () {
ifstream cin ("numtri.in");
ofstream cout ("numtri.out");
cin >> n;
for (int i=1; i<=n; i++)
for (int j=1; j<=i; j++)
cin >> a[i][j];
for (int i=1; i<=n; i++)
for (int j=1; j<=i; j++)
f[i][j] = max (f[i-1][j], f[i-1][j-1]) + a[i][j];
for (int i=1; i<=n; i++)
ans = max (ans, f[n][i]);
cout << ans << endl;
}
|
๏ปฟ
#include "SoundManager.h"
SoundManager* SoundManager::_instance;
SoundManager* SoundManager::getInstance()
{
if (_instance == nullptr)
{
_instance = new SoundManager();
}
return _instance;
}
void SoundManager::loadSound(HWND hWnd)
{
// Khแปi tแบกo CSoundManager.
DirectSound_Init(hWnd);
CSound* sound = nullptr;
sound = LoadSound("Resource//sound//BG_Map1.wav");
_listSound[eSoundId::BACKGROUND_STAGE1] = sound;
sound = LoadSound("Resource//sound//BG_Map2.wav");
_listSound[eSoundId::BACKGROUND_STAGE2] = sound;
sound = LoadSound("Resource//sound//BG_Map3.wav");
_listSound[eSoundId::BACKGROUND_STAGE3] = sound;
sound = LoadSound("Resource//sound//Attack_Cannon.wav");
_listSound[eSoundId::ATTACK_CANNON] = sound;
sound = LoadSound("Resource//sound//Base_Bullet.wav");
_listSound[eSoundId::BASE_BULLET_FIRE] = sound;
sound = LoadSound("Resource//sound//FBullet.wav");
_listSound[eSoundId::FBULLET_FIRE] = sound;
sound = LoadSound("Resource//sound//SBullet.wav");
_listSound[eSoundId::SBULLET_FIRE] = sound;
sound = LoadSound("Resource//sound//MBullet.wav");
_listSound[eSoundId::MBULLET_FIRE] = sound;
sound = LoadSound("Resource//sound//LBullet.wav");
_listSound[eSoundId::LBULLET_FIRE] = sound;
sound = LoadSound("Resource//sound//Boom.wav");
_listSound[eSoundId::BOOM] = sound;
sound = LoadSound("Resource//sound//Boss_1.wav");
_listSound[eSoundId::BOSS_SOUNG1] = sound;
sound = LoadSound("Resource//sound//Dead.wav");
_listSound[eSoundId::DEAD] = sound;
sound = LoadSound("Resource//sound//Destroy_Boss.wav");
_listSound[eSoundId::DESTROY_BOSS] = sound;
sound = LoadSound("Resource//sound//Destroy_Bridge.wav");
_listSound[eSoundId::DESTROY_BRIDGE] = sound;
sound = LoadSound("Resource//sound//Destroy_Enemy.wav");
_listSound[eSoundId::DESTROY_ENEMY] = sound;
sound = LoadSound("Resource//sound//Bridge_Burn.wav");
_listSound[eSoundId::BRIDGE_BURN] = sound;
sound = LoadSound("Resource//sound//Eat_Item.wav");
_listSound[eSoundId::EAT_ITEM] = sound;
sound = LoadSound("Resource//sound//Enemy_Attack.wav");
_listSound[eSoundId::ENEMY_ATTACK] = sound;
sound = LoadSound("Resource//sound//Game_Over.wav");
_listSound[eSoundId::GAME_OVER] = sound;
sound = LoadSound("Resource//sound//GoBoss.wav");
_listSound[eSoundId::GAMEOVER_BOSS] = sound;
sound = LoadSound("Resource//sound//Intro.wav");
_listSound[eSoundId::INTRO] = sound;
sound = LoadSound("Resource//sound//Jump.wav");
_listSound[eSoundId::JUMP_SOUND] = sound;
sound = LoadSound("Resource//sound//Pass_Boss.wav");
_listSound[eSoundId::PASS_BOSS] = sound;
sound = LoadSound("Resource//sound//WinGame.wav");
_listSound[eSoundId::WINGAME] = sound;
}
bool SoundManager::IsPlaying(eSoundId soundid)
{
auto sound = _listSound[soundid];
if (sound != nullptr)
{
return sound->IsSoundPlaying();
}
return false;
}
void SoundManager::Play(eSoundId soundid)
{
auto sound = _listSound[soundid];
if (sound != nullptr)
{
PlaySound(sound);
this->currentSound = sound;
}
}
void SoundManager::PlayLoop(eSoundId soundid)
{
auto sound = _listSound[soundid];
if (sound != nullptr)
{
sound->Play(0, DSBPLAY_LOOPING);
}
}
void SoundManager::Stop(eSoundId soundid)
{
auto sound = _listSound[soundid];
if (sound != nullptr)
{
StopSound(sound);
}
}
SoundManager::SoundManager()
{
currentSound = nullptr;
}
SoundManager::~SoundManager()
{
}
|
#include "ConvexShape3D.h"
namespace urchin
{
//explicit template
template class ConvexShape3D<float>;
template class ConvexShape3D<double>;
}
|
#pragma once
template <typename StructType>
struct COsStructQueue
{
public:
typedef COsStructManager<StructType> StructManager;
COsStructQueue(StructManager& items, uint32* headIdPtr)
: m_items(items)
, m_headIdPtr(headIdPtr)
{
}
void PushFront(uint32 id)
{
uint32 nextId = (*m_headIdPtr);
(*m_headIdPtr) = id;
auto item = m_items[id];
item->nextId = nextId;
}
void PushBack(uint32 id)
{
auto nextId = m_headIdPtr;
while(1)
{
if(*nextId == 0) break;
auto nextItem = m_items[*nextId];
nextId = &nextItem->nextId;
}
*nextId = id;
}
void AddBefore(uint32 beforeId, uint32 id)
{
auto newItem = m_items[id];
auto nextId = m_headIdPtr;
while(1)
{
if(*nextId == 0)
{
//Id not found
assert(false);
break;
}
auto nextItem = m_items[*nextId];
if((*nextId) == beforeId)
{
(*nextId) = id;
newItem->nextId = beforeId;
break;
}
nextId = &nextItem->nextId;
}
}
void Unlink(uint32 id)
{
auto nextId = m_headIdPtr;
while(1)
{
if(*nextId == 0)
{
//Id not found
assert(false);
break;
}
auto nextItem = m_items[*nextId];
if((*nextId) == id)
{
(*nextId) = nextItem->nextId;
nextItem->nextId = 0;
break;
}
nextId = &nextItem->nextId;
}
}
private:
uint32* m_headIdPtr = nullptr;
StructManager& m_items;
};
|
#ifndef TRIANGLE2D_H
#define TRIANGLE2D_H
#include "vector2.h"
#include "box2d.h"
class Triangle2D
{
public:
Triangle2D();
Triangle2D( const Vector2& Vec1, const Vector2& Vec2, const Vector2& Vec3 );
Box2D GetBound() const;
Vector2 m_Vec1;
Vector2 m_Vec2;
Vector2 m_Vec3;
};
#endif // TRIANGLE2D_H
|
#include "../HeaderFiles/StringtoInteger.hpp"
unsigned int CharToValue(char c)
{
if (c >='0' && c <= '9') { return c - '0';}
return -1;
}
int StringtoInteger::myAtoi(string str)
{
int ResultInt = 0;
int SignBit = 0;
bool GetValue = false;
for (int i=0; i<str.size(); i++)
{
if (str[i] == '-')
{
if (SignBit == 0)
SignBit = -1;
else
return 0;
}
else if (str[i] == '+')
{
if (SignBit == 0)
SignBit = 1;
else
return 0;
}
else if (str[i] == ' ')
{
if (GetValue)
break;
continue;
}
else if (CharToValue(str[i]) == -1)
{
if (GetValue)
break;
return 0;
}
else
{
GetValue = true;
if (SignBit == 0)
SignBit = 1;
if (SignBit*ResultInt >= INT_MAX/10 || SignBit*ResultInt <= INT_MIN/10)
{
if (SignBit == 1)
{
if (SignBit*ResultInt == INT_MAX/10 && CharToValue(str[i]) > 7)
return INT_MAX;
else if (SignBit*ResultInt > INT_MAX/10)
return INT_MAX;
}
else
{
if (SignBit*ResultInt == INT_MIN/10 && CharToValue(str[i]) > 8)
return INT_MIN;
else if (SignBit*ResultInt < INT_MIN/10)
return INT_MIN;
}
}
ResultInt = ResultInt*10 + CharToValue(str[i]);
}
}
if (SignBit == 0)
SignBit = 1;
return SignBit*ResultInt;
}
void StringtoInteger::Test()
{
string TestA = " -11919730356x";
cout << myAtoi(TestA) << endl;
}
/* Debug Mode
int main()
{
StringtoInteger StringtoInteger;
StringtoInteger.Test();
}
*/
|
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(string s) {
vector<int> answer;
int length = s.length();
string old, news, temp;
int counting;
/*์ฃผ์ด์ง ๋ฌธ์์ด ๊ธธ์ด๊ฐ 1์ด๋ฉด ๋ต์ 1*/
if(length == 1) return 1;
/*๋ฌธ์์ด ์ ์ฒด ๊ธธ์ด์ ์ ๋ฐ์ ๋๋ ๋จ์๋ก ์๋ฅผ ์
์์ผ๋ 1 ๋ถํฐ length/2 ๊น์ง ๋ฐ๋ณต๋ฌธ ์ํ*/
for(int standard = 1; standard <= length/2; standard++){
/*์์๋ก ๋ฌธ์์ด์ ๋ด์์ค temp์
๋ฐ๋ณต๋๋ ๋ฌธ์์ด์ ์๋ฅผ ๋ํ๋ด์ค
counting ๋ณ์ ์ด๊ธฐํ*/
temp = "";
counting = 1;
old = s.substr(0, standard);
temp += old;
int step = 0;
for(step = standard; step <= length-standard; step += standard){
news = s.substr(step, standard);
/*์ด์ ๊ณผ์ ์์ ๋จ์ ๊ธธ์ด๋ก ์๋ฅธ ๋ฌธ์์ด์ old,
ํ์ฌ ๊ณผ์ ์์ ๋จ์ ๊ธธ์ด๋ก ์๋ฅธ ๋ฌธ์์ด์ news๋ก ์ ํ๋ค.
๋ค๋ฅด๋ฉด temp์ ์ด์ด ๋ถ์ฌ์ฃผ๊ณ ๊ฐ์ผ๋ฉด counting๋ง ๋๋ฆฐ๋ค.*/
if(news == old){
counting++;
}else{
temp += news;
/*counting์ด 1 ์ด์์ผ ๋์๋ง ๋ฌธ์์ด๋ก ๋ณํ ํ
temp์ ์ด์ด ๋ถ์ฌ์ค๋ค.*/
if(counting != 1){
temp += to_string(counting);
}
counting = 1;
}
old = news;
}
/*๋ฐ๋ณต๋ฌธ์ด ๋๋ ์ดํ ๋ฏธ์ฒ ๋ถ์ด์ง ๋ชปํ๋ ์ซ์๋
๋ฌธ์์ด์ด ์์ผ๋ฉด ๋ถ์ฌ์ค๋ค.*/
if(counting != 1){
temp += to_string(counting);
}
for(int a = step; a < length; a++){
temp += s[a];
}
answer.push_back(temp.length());
}
/*๊ฐ์ฅ ์งง์ ๋ฌธ์์ด ํ์*/
sort(answer.begin(), answer.end());
return answer.front();
}
|
#include "FoundationPch.h"
#include "Foundation/Reflect/Registry.h"
#include "Foundation/Log.h"
#include "Foundation/Container/Insert.h"
#include "Foundation/Reflect/Enumeration.h"
#include "Foundation/Reflect/Data/DataDeduction.h"
#include "Foundation/Reflect/Version.h"
#include "Foundation/Reflect/DOM.h"
#include "Foundation/Math/SimdVector2.h"
#include "Foundation/Math/SimdVector3.h"
#include "Foundation/Math/SimdVector4.h"
#include "Foundation/Math/SimdAaBox.h"
#include "Foundation/Math/SimdMatrix44.h"
#include "Platform/Atomic.h"
#include "Platform/Thread.h"
#include <io.h>
// Prints the callstack for every init and cleanup call
// #define REFLECT_DEBUG_INIT_AND_CLEANUP
using namespace Helium;
using namespace Helium::Reflect;
// profile interface
#ifdef PROFILE_ACCUMULATION
Profile::Accumulator Reflect::g_CloneAccum ( "Reflect Clone" );
Profile::Accumulator Reflect::g_ParseAccum ( "Reflect Parse" );
Profile::Accumulator Reflect::g_AuthorAccum ( "Reflect Author" );
Profile::Accumulator Reflect::g_ChecksumAccum ( "Reflect Checksum" );
Profile::Accumulator Reflect::g_PreSerializeAccum ( "Reflect Serialize Pre-Process" );
Profile::Accumulator Reflect::g_PostSerializeAccum ( "Reflect Serialize Post-Process" );
Profile::Accumulator Reflect::g_PreDeserializeAccum ( "Reflect Deserialize Pre-Process" );
Profile::Accumulator Reflect::g_PostDeserializeAccum ( "Reflect Deserialize Post-Process" );
#endif
template< class T >
struct CaseInsensitiveCompare
{
const tstring& value;
CaseInsensitiveCompare( const tstring& str )
: value( str )
{
}
bool operator()( const std::pair< const tstring, T >& rhs )
{
return _tcsicmp( rhs.first.c_str(), value.c_str() ) == 0;
}
};
template< class T >
struct CaseInsensitiveNameCompare
{
const tchar_t* value;
CaseInsensitiveNameCompare( const tchar_t* name )
: value( name )
{
}
bool operator()( const KeyValue< const tchar_t*, T >& rhs )
{
return _tcsicmp( *rhs.First(), *value ) == 0;
}
};
namespace Helium
{
namespace Reflect
{
int32_t g_InitCount = 0;
Registry* g_Registry = NULL;
}
}
bool Reflect::IsInitialized()
{
return g_Registry != NULL;
}
void Reflect::Initialize()
{
if (++g_InitCount == 1)
{
g_Registry = new Registry();
TypeRegistrar::RegisterTypes( RegistrarTypes::Enumeration );
TypeRegistrar::RegisterTypes( RegistrarTypes::Structure );
TypeRegistrar::RegisterTypes( RegistrarTypes::Class );
Data::Initialize();
}
#ifdef REFLECT_DEBUG_INIT_AND_CLEANUP
std::vector<uintptr_t> trace;
Debug::GetStackTrace( trace );
std::string str;
Debug::TranslateStackTrace( trace, str );
Log::Print( "\n" );
Log::Print("%d\n\n%s\n", g_InitCount, str.c_str() );
#endif
}
void Reflect::Cleanup()
{
if ( --g_InitCount == 0 )
{
Data::Cleanup();
TypeRegistrar::UnregisterTypes( RegistrarTypes::Class );
TypeRegistrar::UnregisterTypes( RegistrarTypes::Structure );
TypeRegistrar::UnregisterTypes( RegistrarTypes::Enumeration );
delete g_Registry;
g_Registry = NULL;
}
#ifdef REFLECT_DEBUG_INIT_AND_CLEANUP
std::vector<uintptr_t> trace;
Debug::GetStackTrace( trace );
std::string str;
Debug::TranslateStackTrace( trace, str );
Log::Print( "\n" );
Log::Print("%d\n\n%s\n", g_InitCount, str.c_str() );
#endif
}
Profile::MemoryPoolHandle g_MemoryPool;
Profile::MemoryPoolHandle Reflect::MemoryPool()
{
return g_MemoryPool;
}
// private constructor
Registry::Registry()
{
if ( Profile::Settings::MemoryProfilingEnabled() )
{
g_MemoryPool = Profile::Memory::CreatePool( TXT( "Reflect Objects" ) );
}
}
Registry::~Registry()
{
m_TypesByHash.Clear();
}
Registry* Registry::GetInstance()
{
HELIUM_ASSERT(g_Registry != NULL);
return g_Registry;
}
bool Registry::RegisterType(const Type* type)
{
HELIUM_ASSERT( IsMainThread() );
uint32_t crc = Crc32( type->m_Name );
Insert< M_HashToType >::Result result = m_TypesByHash.Insert( M_HashToType::ValueType( crc, type ) );
if ( !result.Second() )
{
Log::Error( TXT( "Re-registration of type %s, could be ambigouous crc: 0x%08x\n" ), type->m_Name, crc );
HELIUM_BREAK();
return false;
}
type->Register();
return true;
}
void Registry::UnregisterType(const Type* type)
{
HELIUM_ASSERT( IsMainThread() );
type->Unregister();
uint32_t crc = Crc32( type->m_Name );
m_TypesByHash.Remove( crc );
}
void Registry::AliasType( const Type* type, const tchar_t* alias )
{
HELIUM_ASSERT( IsMainThread() );
uint32_t crc = Crc32( alias );
m_TypesByHash.Insert( M_HashToType::ValueType( crc, type ) );
}
void Registry::UnaliasType( const Type* type, const tchar_t* alias )
{
HELIUM_ASSERT( IsMainThread() );
uint32_t crc = Crc32( alias );
M_HashToType::Iterator found = m_TypesByHash.Find( crc );
if ( found != m_TypesByHash.End() && found->Second() == type )
{
m_TypesByHash.Remove( crc );
}
}
const Type* Registry::GetType( uint32_t crc ) const
{
M_HashToType::ConstIterator found = m_TypesByHash.Find( crc );
if ( found != m_TypesByHash.End() )
{
return found->Second();
}
return NULL;
}
const Class* Registry::GetClass( uint32_t crc ) const
{
return ReflectionCast< const Class >( GetType( crc ) );
}
const Enumeration* Registry::GetEnumeration( uint32_t crc ) const
{
return ReflectionCast< const Enumeration >( GetType( crc ) );
}
ObjectPtr Registry::CreateInstance( const Class* type ) const
{
if ( type && type->m_Creator )
{
return type->m_Creator();
}
else
{
return NULL;
}
}
ObjectPtr Registry::CreateInstance( uint32_t crc ) const
{
M_HashToType::ConstIterator found = m_TypesByHash.Find( crc );
if ( found != m_TypesByHash.End() )
{
const Class* type = ReflectionCast< const Class >( found->Second() );
if ( type )
{
return CreateInstance( type );
}
}
return NULL;
}
|
// C++ for the Windows Runtime vv1.0.170303.6
// Copyright (c) 2017 Microsoft Corporation. All rights reserved.
#pragma once
#include "Windows.Storage.AccessCache.1.h"
WINRT_EXPORT namespace winrt {
namespace ABI::Windows::Foundation {
#ifndef WINRT_GENERIC_5e52f8ce_aced_5a42_95b4_f674dd84885e
#define WINRT_GENERIC_5e52f8ce_aced_5a42_95b4_f674dd84885e
template <> struct __declspec(uuid("5e52f8ce-aced-5a42-95b4-f674dd84885e")) __declspec(novtable) IAsyncOperation<Windows::Storage::StorageFile> : impl_IAsyncOperation<Windows::Storage::StorageFile> {};
#endif
#ifndef WINRT_GENERIC_6be9e7d7_e83a_5cbc_802c_1768960b52c3
#define WINRT_GENERIC_6be9e7d7_e83a_5cbc_802c_1768960b52c3
template <> struct __declspec(uuid("6be9e7d7-e83a-5cbc-802c-1768960b52c3")) __declspec(novtable) IAsyncOperation<Windows::Storage::StorageFolder> : impl_IAsyncOperation<Windows::Storage::StorageFolder> {};
#endif
#ifndef WINRT_GENERIC_5fc9c137_ebb7_5e6c_9cba_686f2ec2b0bb
#define WINRT_GENERIC_5fc9c137_ebb7_5e6c_9cba_686f2ec2b0bb
template <> struct __declspec(uuid("5fc9c137-ebb7-5e6c-9cba-686f2ec2b0bb")) __declspec(novtable) IAsyncOperation<Windows::Storage::IStorageItem> : impl_IAsyncOperation<Windows::Storage::IStorageItem> {};
#endif
}
namespace ABI::Windows::Foundation::Collections {
#ifndef WINRT_GENERIC_42b49b8a_3014_5d27_8f2c_1ef5ee89ec00
#define WINRT_GENERIC_42b49b8a_3014_5d27_8f2c_1ef5ee89ec00
template <> struct __declspec(uuid("42b49b8a-3014-5d27-8f2c-1ef5ee89ec00")) __declspec(novtable) IVectorView<Windows::Storage::AccessCache::AccessListEntry> : impl_IVectorView<Windows::Storage::AccessCache::AccessListEntry> {};
#endif
#ifndef WINRT_GENERIC_4995c2b0_736b_588d_ae42_6f69b025b388
#define WINRT_GENERIC_4995c2b0_736b_588d_ae42_6f69b025b388
template <> struct __declspec(uuid("4995c2b0-736b-588d-ae42-6f69b025b388")) __declspec(novtable) IIterable<Windows::Storage::AccessCache::AccessListEntry> : impl_IIterable<Windows::Storage::AccessCache::AccessListEntry> {};
#endif
}
namespace ABI::Windows::Foundation {
#ifndef WINRT_GENERIC_029dace8_98d1_5bf7_b780_9717e95027ff
#define WINRT_GENERIC_029dace8_98d1_5bf7_b780_9717e95027ff
template <> struct __declspec(uuid("029dace8-98d1-5bf7-b780-9717e95027ff")) __declspec(novtable) TypedEventHandler<Windows::Storage::AccessCache::StorageItemMostRecentlyUsedList, Windows::Storage::AccessCache::ItemRemovedEventArgs> : impl_TypedEventHandler<Windows::Storage::AccessCache::StorageItemMostRecentlyUsedList, Windows::Storage::AccessCache::ItemRemovedEventArgs> {};
#endif
#ifndef WINRT_GENERIC_e521c894_2c26_5946_9e61_2b5e188d01ed
#define WINRT_GENERIC_e521c894_2c26_5946_9e61_2b5e188d01ed
template <> struct __declspec(uuid("e521c894-2c26-5946-9e61-2b5e188d01ed")) __declspec(novtable) AsyncOperationCompletedHandler<Windows::Storage::StorageFile> : impl_AsyncOperationCompletedHandler<Windows::Storage::StorageFile> {};
#endif
#ifndef WINRT_GENERIC_c211026e_9e63_5452_ba54_3a07d6a96874
#define WINRT_GENERIC_c211026e_9e63_5452_ba54_3a07d6a96874
template <> struct __declspec(uuid("c211026e-9e63-5452-ba54-3a07d6a96874")) __declspec(novtable) AsyncOperationCompletedHandler<Windows::Storage::StorageFolder> : impl_AsyncOperationCompletedHandler<Windows::Storage::StorageFolder> {};
#endif
#ifndef WINRT_GENERIC_92c3102f_a327_5318_a6c1_76f6b2a0abfb
#define WINRT_GENERIC_92c3102f_a327_5318_a6c1_76f6b2a0abfb
template <> struct __declspec(uuid("92c3102f-a327-5318-a6c1-76f6b2a0abfb")) __declspec(novtable) AsyncOperationCompletedHandler<Windows::Storage::IStorageItem> : impl_AsyncOperationCompletedHandler<Windows::Storage::IStorageItem> {};
#endif
}
namespace ABI::Windows::Foundation::Collections {
#ifndef WINRT_GENERIC_156b7b9d_7c0f_53b1_8844_e2ea9a083882
#define WINRT_GENERIC_156b7b9d_7c0f_53b1_8844_e2ea9a083882
template <> struct __declspec(uuid("156b7b9d-7c0f-53b1-8844-e2ea9a083882")) __declspec(novtable) IVector<Windows::Storage::AccessCache::AccessListEntry> : impl_IVector<Windows::Storage::AccessCache::AccessListEntry> {};
#endif
#ifndef WINRT_GENERIC_d1a0a6c4_889d_519b_8508_26241b329b7e
#define WINRT_GENERIC_d1a0a6c4_889d_519b_8508_26241b329b7e
template <> struct __declspec(uuid("d1a0a6c4-889d-519b-8508-26241b329b7e")) __declspec(novtable) IIterator<Windows::Storage::AccessCache::AccessListEntry> : impl_IIterator<Windows::Storage::AccessCache::AccessListEntry> {};
#endif
}
namespace Windows::Storage::AccessCache {
struct IItemRemovedEventArgs :
Windows::Foundation::IInspectable,
impl::consume<IItemRemovedEventArgs>
{
IItemRemovedEventArgs(std::nullptr_t = nullptr) noexcept {}
};
struct IStorageApplicationPermissionsStatics :
Windows::Foundation::IInspectable,
impl::consume<IStorageApplicationPermissionsStatics>
{
IStorageApplicationPermissionsStatics(std::nullptr_t = nullptr) noexcept {}
};
struct IStorageItemAccessList :
Windows::Foundation::IInspectable,
impl::consume<IStorageItemAccessList>
{
IStorageItemAccessList(std::nullptr_t = nullptr) noexcept {}
};
struct IStorageItemMostRecentlyUsedList :
Windows::Foundation::IInspectable,
impl::consume<IStorageItemMostRecentlyUsedList>,
impl::require<IStorageItemMostRecentlyUsedList, Windows::Storage::AccessCache::IStorageItemAccessList>
{
IStorageItemMostRecentlyUsedList(std::nullptr_t = nullptr) noexcept {}
};
struct IStorageItemMostRecentlyUsedList2 :
Windows::Foundation::IInspectable,
impl::consume<IStorageItemMostRecentlyUsedList2>,
impl::require<IStorageItemMostRecentlyUsedList2, Windows::Storage::AccessCache::IStorageItemAccessList, Windows::Storage::AccessCache::IStorageItemMostRecentlyUsedList>
{
IStorageItemMostRecentlyUsedList2(std::nullptr_t = nullptr) noexcept {}
using impl_IStorageItemAccessList::Add;
using impl_IStorageItemAccessList::AddOrReplace;
using impl_IStorageItemMostRecentlyUsedList2::Add;
using impl_IStorageItemMostRecentlyUsedList2::AddOrReplace;
};
}
}
|
class Solution {
void reverseVowels(string &s, int left, int right) {
string vowels = "AEIOUaeiou";
while(left < right) {
while(left < right && vowels.find(s[left]) == string::npos) {
left++;
}
while(left < right && vowels.find(s[right]) == string::npos) {
right--;
}
swap(s[left++], s[right--]);
}
}
public:
string reverseVowels(string s) {
int left = 0;
int right = s.length() - 1;
reverseVowels(s, left, right);
return s;
}
};
|
#ifndef EXAMPLE_CHESS_GAME_H
#define EXAMPLE_CHESS_GAME_H
#include <cstddef>
#include <cstdint>
#include <array>
#include <vector>
#include <map>
#include "opengl/model.h"
#include "opengl/renderer.h"
#include "engine/input.h"
#include "engine/event.h"
#include "engine/camera.h"
#include "engine/text.h"
#include "prefab/axes.h"
#include "prefab/light.h"
#include "prefab/ground.h"
#include "options.h"
#include "board.h"
#include "piece.h"
namespace example::chess {
class Game final
{
public:
Game(const Options* options);
void init();
void update(float time, float delta_time, const std::vector<apeiron::engine::Event>& events,
const apeiron::engine::Input* input = nullptr);
void render();
// Event handling
void operator()(const apeiron::engine::Mouse_motion_event& event);
void operator()(const apeiron::engine::Mouse_button_down_event& event);
void operator()(const apeiron::engine::Mouse_button_up_event& event);
void operator()(const apeiron::engine::Mouse_wheel_event& event);
private:
void update_camera(float delta_time, const apeiron::engine::Input* input);
void place_pieces();
std::vector<std::size_t> allowed_moves(std::size_t board_index, Piece::Type piece_type,
Piece::Chess_color chess_color) const;
const Options* options_;
apeiron::opengl::Renderer renderer_;
apeiron::opengl::Tileset roboto_mono_;
apeiron::opengl::Model bulb_;
std::map<Piece::Type, apeiron::opengl::Model> piece_models_;
apeiron::engine::Camera camera_;
apeiron::prefab::Axes axes_;
apeiron::prefab::Ground ground_;
apeiron::prefab::Light light_;
Board board_;
std::array<std::optional<Piece>, 64> field_;
int frame_ = 0;
};
} // namespace example::chess
#endif // EXAMPLE_CHESS_GAME_H
|
/*
* @file hcomms.cpp
* @author Artur Gilmutdinov <arturg000@gmail.com>
*/
#include "../include/hcomms.h"
// thread client serve
void *hcomms_thread_fnc(void *a)
{
hcomm_srv_t *b = (hcomm_srv_t*)a;
try
{
b->get_sock()->server<hcomm_srv_t>(b, b->get_srv_port());
} catch (string* s)
{
b->log->log(ERROR, "EXCEPTION hcomm_srv_t:: " + *s);
exit(0);
}
return 0;
}
// thread check heartbeats
void *check_hb_fnc(void *a)
{
hcomm_srv_t *ns = (hcomm_srv_t*)a;
//ns->start_hb();
return 0;
}
// serve ifs
void hcomm_srv_t::serve_ifs(send_channel_t *ch)
{
string obj_name = ch->crecv();
log->log(EVENT0 , "hcomm_srv_t::ifs " + obj_name);
node_t *target_node = NULL;
map<string, node_t*>::iterator node_it = node.begin();
while (node_it!=node.end())
{
map<string,obj_rec_t*>::iterator obj_it = node_it->second->object.begin();
while (obj_it!=node_it->second->object.end())
{
// log(node[i]->object[j]->name);
if (obj_name == obj_it->first)
{
target_node = node_it->second;
break;
}
obj_it++;
}
if (target_node!=NULL) break;
node_it++;
}
if (target_node==NULL)
{
ch->csend("error no such object");
ch->csend("error no such object");
//ch->close();
return;
}
ch->csend(target_node->ip);
char bf[255];
sprintf(bf, "%d\n", target_node->port);
ch->csend(string(bf));
//ch->close();
}
// add node
void hcomm_srv_t::addnode(send_channel_t *ch, const char *ip)
{
char port_s[255];
string name = ch->crecv();
log->log(EVENT0 , "hcomm_srv_t::addnode " + name);
// Create new node.
node_t *n = new node_t;
map<string, node_t*>::iterator node_it = node.find(name);
if (node_it==node.end())
{
n->name = name;
n->ip = ip;
node.insert(pair<string, node_t*>(name, n));
}
else
{
delete node_it->second;
n->name = name;
n->ip = ip;
node_it->second = n;
}
node_it = node.begin();
int offport = 0;
while (node_it!=node.end())
{
if (strsrav(node_it->second->ip.c_str(),ip)) offport++;
node_it++;
}
if (cliports.begin+offport>cliports.end)
{
strcpy(port_s, "not enough ports");
}
else
{
sprintf(port_s, "%d", cliports.begin+offport);
n->port = cliports.begin+offport;
}
cliports.begin++;
ch->csend(string(port_s));
log->log(EVENT0 , "hcomm_srv_t::addnode OK");
}
// add obj
void hcomm_srv_t::addobj(send_channel_t *ch)
{
log->log(EVENT0 , "hcomm_srv_t::addobj start");
string node_name = ch->crecv();
string obj_name = ch->crecv();
log->log(EVENT0 , "hcomm_srv_t::addobj " + obj_name + " on " + node_name);
bool ok = 0;
if (obj_name!="")
{
map<string, node_t*>::iterator node_it = node.find(node_name);
if (node_it!=node.end())
{
map<string,obj_rec_t*>::iterator obj_it = node_it->second->object.find(obj_name);
if (obj_it!=node_it->second->object.end())
{
log->log(EVENT0 , "hcomm_srv_t::addobj object already exist OK");
ch->csend("ok");
ok = 1;
}
else
{
obj_rec_t* obj = new obj_rec_t(obj_name, "");
node_it->second->object.insert(pair<string, obj_rec_t*>(obj_name, obj));
log->log(EVENT0 , "hcomm_srv_t::addobj OK");
ch->csend("ok");
ok = 1;
}
}
else
{
log->log(WARNING , "hcomm_srv_t::addobj " + node_name + " not found");
ch->csend("error");
}
}
if (!ok)
{
ch->csend("error");
}
log->log(EVENT0 , "hcomm_srv_t::addobj " + obj_name + " on " + node_name + " OK");
}
|
// Driver.cpp
// CSCE 463-500
// Luke Grammer
// 11/21/19
#include "pch.h"
#pragma comment(lib, "ws2_32.lib")
using namespace std;
int main(INT argc, CHAR** argv)
{
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h> // libraries to check for memory leaks
// debug flag to check for memory leaks
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
// ************* VALIDATE ARGUMENTS ************** //
int* test = new int[1];
if (argc != 8)
{
(argc < 8) ? printf("error: too few arguments\n\n") : printf("error: too many arguments\n\n");
printf("usage: hw3p3.exe <DSN> <PBS> <SWS> <RTT> <LPF> <LPR> <BLS>\n");
printf("DSN - Destination server IP or hostname\n");
printf("PBS - Power of two size for transmission buffer (bytes)\n");
printf("SWS - Sender window size (packets)\n");
printf("RTT - Simulated RTT propogation delay (seconds)\n");
printf("LPF - Simulated loss probability in forward direction\n");
printf("LPR - Simulated loss probability in reverse direction\n");
printf("BLS - Bottleneck link speed (Mbps)\n");
return INVALID_ARGUMENTS;
}
// ************ INITIALIZE VARIABLES ************* //
CHAR* destination = argv[1];
DWORD dwordBufSize = (DWORD) 1 << atoi(argv[2]); // Can't use UINT64 because allocation with new uses unsigned 32 bit int
DWORD senderWindow = atoi(argv[3]);
FLOAT RTT = (FLOAT) atof(argv[4]);
FLOAT fLossProb = (FLOAT) atof(argv[5]);
FLOAT rLossProb = (FLOAT) atof(argv[6]);
DWORD bottleneckSpeed = atoi(argv[7]);
Timer mainTimer;
struct LinkProperties lp;
lp.RTT = RTT;
lp.speed = (FLOAT) bottleneckSpeed * 1000000;
lp.pLoss[0] = fLossProb;
lp.pLoss[1] = rLossProb;
printf("Main: sender W = %d, RTT = %.3f sec, loss %g / %g, link %d Mbps\n" , senderWindow, RTT, fLossProb, rLossProb, bottleneckSpeed);
// ************* TIMED FILL OF BUFFER ************ //
printf("Main: initializing DWORD array with 2^%d elements... ", atoi(argv[2]));
mainTimer.Start();
DWORD* dwordBuf = new DWORD[dwordBufSize];
for (DWORD i = 0; i < dwordBufSize; i++)
dwordBuf[i] = i;
printf("done in %lld ms\n", mainTimer.ElapsedMilliseconds());
// ********** OPEN CONNECTION TO SERVER ********** //
INT status = -1;
Properties p(senderWindow);
SenderSocket socket(&p);
mainTimer.Start();
if ((status = socket.Open(destination, MAGIC_PORT, senderWindow, &lp)) != STATUS_OK)
{
printf("Main: open failed with status %d\n", status);
delete[] dwordBuf;
return status;
}
printf("Main: connected to %s in %0.3f sec, pkt size %d bytes\n", destination,
mainTimer.ElapsedMilliseconds() / 1000.0, MAX_PKT_SIZE);
mainTimer.Start();
// ************* SEND DATA TO SERVER ************* //
UINT64 charBufSize = (UINT64) dwordBufSize << 2;
CHAR* charBuf = (CHAR*)dwordBuf;
UINT64 offset = 0;
UINT numPackets = 0;
while (offset < charBufSize)
{
// decide the size of the next chunk
UINT64 bytes = min(charBufSize - offset, (MAX_PKT_SIZE - sizeof(SenderDataHeader)));
// send chunk into socket
//printf("DEBUG: Main sending %d bytes\n", bytes);
if ((status = socket.Send(charBuf + offset, (INT) bytes)) != STATUS_OK)
{
printf("Main: send failed with status %d\n", status);
delete[] dwordBuf;
return status;
}
numPackets++;
offset += bytes;
}
// ********** CLOSE CONNECTION TO SERVER ********* //
DOUBLE elapsedTime = 0.0;
if ((status = socket.Close(elapsedTime)) != STATUS_OK)
{
printf("Main: close failed with status %d\n", status);
delete[] dwordBuf;
return status;
}
mainTimer.Stop();
Checksum cs;
DWORD check = cs.CRC32((UCHAR*) charBuf, charBufSize);
DOUBLE secondsElapsed = mainTimer.ElapsedMilliseconds() / 1000.0;
printf("Main: transfer finished in %0.3f sec, %0.2f Kbps, checksum 0x%X\n", secondsElapsed, ((p.bytesAcked * 8) / (1000.0 * secondsElapsed)), check);
printf("Main: estRTT %0.3f, ideal rate %0.2f Kbps\n", p.estRTT / 1000.0, ((UINT64) senderWindow * MAX_PKT_SIZE * 8) / (FLOAT) p.estRTT);
delete[] dwordBuf;
return 0;
}
|
//ๆพๅฐ่ตท็น
//ๅฏน่ตท็นไนๅ็ฝฎ็ฉบ ่ตท็นๅๆๅnull็ๆๅๅคด
//star ไธบ0ๆ่
ไธบ้พ่กจ้ฟๅบฆ็นๆฎๅค็
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode* rotateRight(ListNode* head, int k) {
int count=1;
if(head==nullptr||head->next==nullptr)
{
return head;
}
ListNode* end=head,*preEnd=head;
while(end->next!=nullptr)
{
end=end->next;
count++;
}
int start=count-k%count;
if(start==0||start==count) //็นๆฎๅค็
{
return head;
}
end=head;
while(start)
{
preEnd=end;
end=end->next;
start--;
}
ListNode* res=end;
preEnd->next=nullptr;
while(end->next!=nullptr)
{
end=end->next;
}
end->next=head;
return res;
}
};
|
/*
* SpaceDefinition.h
*
* Created on: Dec 15, 2014
* Author: coppergate
*/
#ifndef SPACEDEFINITION_H_
#define SPACEDEFINITION_H_
#include <ostream>
#include <sstream>
using std::ostream;
using std::endl;
using std::string;
using std::stringstream;
#include "Definitions.h"
namespace Utilities
{
class Space
{
protected:
// Size of the total volume to be calculated
size_t calcXDim;
size_t calcYDim;
size_t calcZDim;
// Size of the chunks to calculate in (Probably the max size the processor will handle)
size_t blockXDim;
size_t blockYDim;
size_t blockZDim;
public:
Space(size_t calcDimX, size_t blockDimX, size_t calcDimY, size_t blockDimY, size_t calcDimZ, size_t blockDimZ)
: calcXDim(calcDimX),
calcYDim(calcDimY),
calcZDim(calcDimZ),
blockXDim(blockDimX),
blockYDim(blockDimY),
blockZDim(blockDimZ)
{
// TODO: Sanity check the calc size to the block size. The calc size should be a multiple of the block size in each dimension
// should have some semblance to the data alignment on the target calculation device.
}
Space(Space const& spaceIn)
: calcXDim {}, calcYDim {}, calcZDim {}, blockXDim {}, blockYDim {}, blockZDim {}
{
operator=(spaceIn);
}
Space& operator=(Space const& rhs)
{
calcXDim = rhs.calcXDim;
calcYDim = rhs.calcYDim;
calcZDim = rhs.calcZDim;
blockXDim = rhs.blockXDim;
blockYDim = rhs.blockYDim;
blockZDim = rhs.blockZDim;
return *this;
}
size_t blockDimX() const
{
return blockXDim;
}
size_t blockDimY() const
{
return blockYDim;
}
size_t blockDimZ() const
{
return blockZDim;
}
size_t calcDimX() const
{
return calcXDim;
}
size_t calcDimY() const
{
return calcYDim;
}
size_t calcDimZ() const
{
return calcZDim;
}
size_t blockCountX() const
{
return calcDimX() / blockDimX();
}
size_t blockCountY() const
{
return calcDimY() / blockDimY();
}
size_t blockCountZ() const
{
return calcDimZ() / blockDimZ();
}
size_t calcOffsetXZY(size_t x, size_t z, size_t y) const
{
return (z * calcDimX() + x) * calcDimY() + y;
}
size_t blockOffsetXZY(size_t x, size_t z, size_t y) const
{
return (z * blockDimX() + x) * blockDimY() + y;
}
size_t calcOffsetFromBlock(size_t blockX, size_t blockY, size_t blockZ) const
{
return calcOffsetXZY(blockX * blockDimX(), blockZ * blockDimZ(), blockY * blockDimY());
}
size_t blockOffsetFromBlock(size_t blockX, size_t blockY, size_t blockZ) const
{
return ((blockZ * blockCountX() + blockX) * blockCountY() + blockY);
}
size_t calcTotalPoints() const
{
return (calcDimX() * calcDimY() * calcDimZ());
}
size_t blockTotalPoints() const
{
return (blockDimX() * blockDimY() * blockDimZ());
}
size_t totalBlockCount() const
{
return (blockCountX() * blockCountY() * blockCountZ());
}
size_t calcZXSurfacePoints() const
{
return (calcDimX() * calcDimZ());
}
size_t blockZXSurfacePoints() const
{
return (blockDimX() * blockDimZ());
}
virtual size_t xOffsetFromBlock(size_t block) const
{
return (blockDimX() * block);
}
virtual size_t yOffsetFromBlock(size_t block) const
{
return (blockDimY() * block);
}
virtual size_t zOffsetFromBlock(size_t block) const
{
return (blockDimZ() * block);
}
virtual size_t calcXFromBlock(size_t block, size_t blockDimOffset) const
{
return (xOffsetFromBlock(block) + blockDimOffset);
}
virtual size_t calcYFromBlock(size_t block, size_t blockDimOffset) const
{
return (yOffsetFromBlock(block) + blockDimOffset);
}
virtual size_t calcZFromBlock(size_t block, size_t blockDimOffset) const
{
return (zOffsetFromBlock(block) + blockDimOffset);
}
size_t getRequiredCalculationCountX(size_t threadCountX) const
{
return (blockDimX() / threadCountX);
}
size_t getRequiredCalculationCountY(size_t threadCountY) const
{
return (blockDimY() / threadCountY);
}
size_t getRequiredCalculationCountZ(size_t threadCountZ) const
{
return (blockDimZ() / threadCountZ);
}
void Display(ostream& oStrm) const
{
oStrm << "Calculation Dimensions : (" << calcXDim << ", " << calcYDim << ", " << calcZDim << ")";
oStrm << " divided into chunks of : (" << blockXDim << ", " << blockYDim << ", " << blockZDim << ")" << endl;
}
std::string GenerateFileName()
{
std::stringstream strm;
strm << calcDimX() << "x" << calcDimY() << "x" <<calcDimZ();
return std::move(strm.str());
}
};
class BlockOffsetSpace: public Space
{
size_t xBlockOffset;
size_t yBlockOffset;
size_t zBlockOffset;
// Divide the containing space blocks into
// sub blocks of the following sizes
size_t xOffsetBlockDim;
size_t yOffsetBlockDim;
size_t zOffsetBlockDim;
public:
// TODO: Verify that the subblock dimensions divide the space blocks into integral sub block counts....
BlockOffsetSpace(const Space& inSpace,
size_t blockDimX,
size_t blockDimY,
size_t blockDimZ)
: Space(inSpace),
xBlockOffset{0}, yBlockOffset{0}, zBlockOffset{0},
xOffsetBlockDim{blockDimX},
yOffsetBlockDim{blockDimY},
zOffsetBlockDim{blockDimZ}
{
}
BlockOffsetSpace(const BlockOffsetSpace& inSpace)
: Space(inSpace),
xBlockOffset{inSpace.xBlockOffset},
yBlockOffset{inSpace.yBlockOffset},
zBlockOffset{inSpace.zBlockOffset},
xOffsetBlockDim{inSpace.xOffsetBlockDim},
yOffsetBlockDim{inSpace.yOffsetBlockDim},
zOffsetBlockDim{inSpace.zOffsetBlockDim}
{
}
void setBlockOffset(size_t x, size_t y, size_t z)
{
xBlockOffset = x;
yBlockOffset = y;
zBlockOffset = z;
}
size_t getXBlockOffset() const
{
return xBlockOffset;
}
size_t getYBlockOffset() const
{
return yBlockOffset;
}
size_t getZBlockOffset() const
{
return zBlockOffset;
}
size_t offsetBlockXDim() const
{
return xOffsetBlockDim;
}
size_t offsetBlockYDim() const
{
return yOffsetBlockDim;
}
size_t offsetBlockZDim() const
{
return zOffsetBlockDim;
}
size_t xTotalOffsetFromBlock(size_t block) const
{
return (xBlockOffset + block) * blockDimX();
}
size_t yTotalOffsetFromBlock(size_t block) const
{
return (yBlockOffset + block) * blockDimY();
}
size_t zTotalOffsetFromBlock(size_t block) const
{
return (zBlockOffset + block) * blockDimZ();
}
size_t getXSubBlockCount() const
{
return blockDimX() / xOffsetBlockDim;
}
size_t getYSubBlockCount() const
{
return blockDimY() / yOffsetBlockDim;
}
size_t getZSubBlockCount() const
{
return blockDimZ() / zOffsetBlockDim;
}
size_t subBlockOffsetFromBlock(size_t xBlock, size_t yBlock, size_t zBlock) const
{
return (zBlock * getXSubBlockCount() + xBlock) * getYSubBlockCount() + yBlock;
}
size_t subBlockTotalPoints() const
{
return xOffsetBlockDim * yOffsetBlockDim * zOffsetBlockDim;
}
size_t getXOffset() const
{
return xBlockOffset * blockDimX();
}
size_t getYOffset() const
{
return yBlockOffset * blockDimY();
}
size_t getZOffset() const
{
return zBlockOffset * blockDimZ();
}
void Display(ostream& oStrm) const
{
oStrm << "Calculation Dimensions : (" << calcXDim << ", " << calcYDim << ", " << calcZDim << ")";
oStrm << " divided into chunks of : (" << blockXDim << ", " << blockYDim << ", " << blockZDim << ")" << endl;
oStrm << " dividing calculation into ( "
<< blockCountX() << " , "
<< blockCountY() << " , "
<< blockCountZ() << " ) blocks ("
<< offsetBlockXDim() << " , "
<< offsetBlockYDim() << " , "
<< offsetBlockZDim() << " ) points each "
<< endl;
oStrm << " dividing Blocks into ( "
<< getXSubBlockCount() << " , "
<< getYSubBlockCount() << " , "
<< getZSubBlockCount() << " ) sub-blocks " << endl;
}
};
class OriginOffsetSpace
{
size_t _CalcXDim;
size_t _CalcYDim;
size_t _CalcZDim;
size_t _XOriginOffset;
size_t _YOriginOffset;
size_t _ZOriginOffset;
size_t _SizeInX;
size_t _SizeInY;
size_t _SizeInZ;
public:
OriginOffsetSpace(size_t calcDimX, size_t XOrigOffset, size_t calcDimY, size_t YOrigOffset, size_t calcDimZ, size_t ZOrigOffset)
: _CalcXDim(calcDimX),_CalcYDim(calcDimY), _CalcZDim(calcDimZ),
_XOriginOffset(XOrigOffset - 1), _YOriginOffset(YOrigOffset - 1), _ZOriginOffset(ZOrigOffset - 1),
_SizeInX(0), _SizeInY(0), _SizeInZ(0)
{
_SizeInZ = 2 * _CalcZDim - 1;
_SizeInY = 2 * _CalcYDim - 1;
_SizeInX = 2 * _CalcXDim - 1;
}
int calcDimX() const
{
return _CalcXDim - 1;
}
int calcDimY() const
{
return _CalcYDim - 1;
}
int calcDimZ() const
{
return _CalcZDim - 1;
}
int calcTotalPoints()
{
return _SizeInX * _SizeInY * _SizeInZ;
}
int GetCalcSpaceOffset(int x, int y, int z)
{
int transX = x + _XOriginOffset;
int transY = y + _YOriginOffset;
int transZ = z + _ZOriginOffset;
return transY + (transX + transZ * _SizeInX) * _SizeInY;
}
std::string GenerateFileName()
{
std::stringstream strm;
strm << _SizeInX << "x" << _SizeInY << "x" << _SizeInZ ;
return std::move(strm.str());
}
};
}
#endif /* SPACEDEFINITION_H_ */
|
#ifndef SPAN_SRC_SPAN_FIBERS_FIBERSYNCHRONIZATION_HH_
#define SPAN_SRC_SPAN_FIBERS_FIBERSYNCHRONIZATION_HH_
#include <list>
#include <memory>
#include <utility>
#include "absl/synchronization/mutex.h"
namespace span {
namespace fibers {
class Fiber;
class Scheduler;
/**
* Wraps an absl::Mutex specifically for fibers.
*
* FiberMutex will yield to a scheduler, instead of blocking if the mutex cannot be acquired,
* and will provide a FIFO mechanics for Fibers. Since normally mutex has no idea who to give
* it too first.
*/
struct FiberMutex {
friend struct FiberCondition;
public:
FiberMutex() = default;
~FiberMutex() noexcept(false);
void lock();
void unlock();
bool unlockIfNotUnique();
private:
void unlockNoLock();
FiberMutex(const FiberMutex& rhs) = delete;
absl::Mutex mutex_;
std::shared_ptr<Fiber> owner_;
std::list<std::pair<Scheduler *, std::shared_ptr<Fiber>>> waiters_;
};
// A semaphore for use by fibers that yields to a scheduler instead of blocking.
struct FiberSemaphore {
public:
explicit FiberSemaphore(size_t initialConcurrency = 0);
~FiberSemaphore() noexcept(false);
void wait();
void notify();
private:
FiberSemaphore(const FiberSemaphore& rhs) = delete;
absl::Mutex mutex_;
std::list<std::pair<Scheduler *, std::shared_ptr<Fiber>>> waiters_;
size_t concurrency_;
};
/**
* Scheduler based conidition variable for fibers.
*
* Yield to a scheduler instead of blocking.
*/
struct FiberCondition {
public:
explicit FiberCondition(FiberMutex *mutex) : fiberMutex_(mutex) {}
~FiberCondition() noexcept(false);
void wait();
void signal();
void broadcast();
private:
FiberCondition(const FiberCondition &rhs) = delete;
absl::Mutex mutex_;
FiberMutex *fiberMutex_;
std::list<std::pair<Scheduler *, std::shared_ptr<Fiber>>> waiters_;
};
struct FiberEvent {
public:
explicit FiberEvent(bool autoReset = true) : signalled_(false), autoReset_(autoReset) {}
~FiberEvent() noexcept(false);
void wait();
void set();
void reset();
private:
FiberEvent(const FiberEvent& rhs) = delete;
absl::Mutex mutex_;
bool signalled_, autoReset_;
std::list<std::pair<Scheduler *, std::shared_ptr<Fiber>>> waiters_;
};
} // namespace fibers
} // namespace span
#endif // SPAN_SRC_SPAN_FIBERS_FIBERSYNCHRONIZATION_HH_
|
/*
Copyright (c) 2005-2023, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of the University of Oxford nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef TESTGENERALIZEDRUSHLARSEN_HPP_
#define TESTGENERALIZEDRUSHLARSEN_HPP_
#include <cxxtest/TestSuite.h>
#include "CheckpointArchiveTypes.hpp" // Needed to avoid memory error on Boost 1.34
#include "LuoRudy1991.hpp"
#include "LuoRudy1991Opt.hpp"
#include "AbstractGeneralizedRushLarsenCardiacCell.hpp" // Needed for chaste_libs=0 build
#include "ZeroStimulus.hpp"
#include "SimpleStimulus.hpp"
#include "AbstractIvpOdeSolver.hpp"
#include "HeunIvpOdeSolver.hpp"
#include "GRL1IvpOdeSolver.hpp"
#include "GRL2IvpOdeSolver.hpp"
#include "FileFinder.hpp"
#include "OutputFileHandler.hpp"
#include "HeartConfig.hpp"
#include "CellMLToSharedLibraryConverter.hpp"
#include "DynamicCellModelLoader.hpp"
#include "Warnings.hpp"
#include "PetscSetupAndFinalize.hpp"
/*
Megan E. Marsh, Raymond J. Spiteri
Numerical Simulation Laboratory
University of Saskatchewan
December 2011
Partial support provided by research grants from the National
Science and Engineering Research Council (NSERC) of Canada
and the MITACS/Mprime Canadian Network of Centres of Excellence.
*/
/**
* This test is based on code TestRushLarsen and tests the GRL1 and GRL2
* autogenerated Luo--Rudy code
*/
class TestGeneralizedRushLarsen : public CxxTest::TestSuite
{
AbstractCardiacCell* mpGeneralizedRushLarsenCell;
// AbstractCardiacCell* mpGeneralizedRushLarsenCellOpt;
void GenerateCells()
{
// Do the conversions preserving generated sources
CellMLToSharedLibraryConverter converter(true);
std::string dirname = "TestGeneralizedRushLarsen";
std::string model = "LuoRudy1991";
boost::shared_ptr<AbstractIvpOdeSolver> p_solver;
boost::shared_ptr<ZeroStimulus> p_stimulus(new ZeroStimulus());
std::vector<std::string> args;
args.push_back("--grl1");
{ // No opt
// Copy CellML file into output dir
OutputFileHandler handler(dirname + "/normal");
FileFinder cellml_file("heart/src/odes/cellml/" + model + ".cellml", RelativeTo::ChasteSourceRoot);
FileFinder copied_file = handler.CopyFileTo(cellml_file);
// Create options file & convert
converter.SetOptions(args);
DynamicCellModelLoaderPtr p_loader = converter.Convert(copied_file);
mpGeneralizedRushLarsenCell = dynamic_cast<AbstractCardiacCell*>(p_loader->CreateCell(p_solver, p_stimulus));
}
}
void GenerateCells2()
{
// Do the conversions preserving generated sources
CellMLToSharedLibraryConverter converter(true);
std::string dirname = "TestGeneralizedRushLarsen2";
std::string model = "LuoRudy1991";
boost::shared_ptr<AbstractIvpOdeSolver> p_solver;
boost::shared_ptr<ZeroStimulus> p_stimulus(new ZeroStimulus());
std::vector<std::string> args;
args.push_back("--grl2");
{ // No opt
// Copy CellML file into output dir
OutputFileHandler handler(dirname + "/normal");
FileFinder cellml_file("heart/src/odes/cellml/" + model + ".cellml", RelativeTo::ChasteSourceRoot);
FileFinder copied_file = handler.CopyFileTo(cellml_file);
// Create options file & convert
converter.SetOptions(args);
DynamicCellModelLoaderPtr p_loader = converter.Convert(copied_file);
mpGeneralizedRushLarsenCell = dynamic_cast<AbstractCardiacCell*>(p_loader->CreateCell(p_solver, p_stimulus));
}
}
public:
void TestLuoRudyGeneralizedRushLarsenMethod()
{
EXIT_IF_PARALLEL;
HeartConfig::Instance()->SetOdeTimeStep(0.01);
GenerateCells();
// Check the models really use Rush-Larsen
TS_ASSERT_EQUALS(Warnings::Instance()->GetNumWarnings(), 0u);
// Some coverage
AbstractGeneralizedRushLarsenCardiacCell* p_grl_cell = dynamic_cast<AbstractGeneralizedRushLarsenCardiacCell*>(mpGeneralizedRushLarsenCell);
TS_ASSERT(p_grl_cell);
TS_ASSERT(!p_grl_cell->HasAnalyticJacobian());
TS_ASSERT(!p_grl_cell->GetUseAnalyticJacobian());
TS_ASSERT_THROWS_THIS(p_grl_cell->ForceUseOfNumericalJacobian(false),
"Using analytic Jacobian terms for generalised Rush-Larsen is not yet supported.");
TS_ASSERT_THROWS_NOTHING(p_grl_cell->ForceUseOfNumericalJacobian(true));
// Normal Luo-Rudy for comparison
boost::shared_ptr<HeunIvpOdeSolver> p_heun_solver(new HeunIvpOdeSolver());
CellLuoRudy1991FromCellML reference_model(p_heun_solver, mpGeneralizedRushLarsenCell->GetStimulusFunction());
// Check GetIIonic is identical
TS_ASSERT_DELTA(mpGeneralizedRushLarsenCell->GetIIonic(), reference_model.GetIIonic(), 1e-12);
// Test non-stimulated cell (using ComputeExceptVoltage)
mpGeneralizedRushLarsenCell->ComputeExceptVoltage(0.0, 1.0);
reference_model.ComputeExceptVoltage(0.0, 1.0);
TS_ASSERT_EQUALS(mpGeneralizedRushLarsenCell->GetNumberOfStateVariables(),
reference_model.GetNumberOfStateVariables());
for (unsigned i=0; i<reference_model.GetNumberOfStateVariables(); i++)
{
TS_ASSERT_DELTA(mpGeneralizedRushLarsenCell->rGetStateVariables()[i],
reference_model.rGetStateVariables()[i], 1e-6);
}
// Test stimulated cell (using Compute)
boost::shared_ptr<SimpleStimulus> p_stimulus(new SimpleStimulus(-25.5, 1.99, 0.0));
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
mpGeneralizedRushLarsenCell->SetStimulusFunction(p_stimulus);
OdeSolution solutions_GRL1 = mpGeneralizedRushLarsenCell->Compute(0.0, 1.0, 0.01);
TS_ASSERT_EQUALS(solutions_GRL1.GetNumberOfTimeSteps(), 100u);
reference_model.ResetToInitialConditions();
reference_model.SetStimulusFunction(p_stimulus);
OdeSolution solutions_ref = reference_model.Compute(0.0, 1.0, 0.01);
for (unsigned i=0; i<reference_model.GetNumberOfStateVariables(); i++)
{
TS_ASSERT_DELTA(solutions_GRL1.rGetSolutions().back()[i],
solutions_ref.rGetSolutions().back()[i], 1e-2);
}
//Compare LuoRudy solution with general GRL1 solver solution (should match)
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
boost::shared_ptr<ZeroStimulus> p_stimulus_zero(new ZeroStimulus());
mpGeneralizedRushLarsenCell->SetStimulusFunction(p_stimulus_zero);
mpGeneralizedRushLarsenCell->SetTimestep(1e-3);
mpGeneralizedRushLarsenCell->SetVoltage(-30);
OdeSolution solutions_GRL1_stimulated_cell_order1 = mpGeneralizedRushLarsenCell->Compute(0.0, 1e-3);
// Compare with SolveAndUpdateState for coverage
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
mpGeneralizedRushLarsenCell->SetVoltage(-30);
mpGeneralizedRushLarsenCell->SolveAndUpdateState(0.0, 1e-3);
for (unsigned i=0; i<mpGeneralizedRushLarsenCell->GetNumberOfStateVariables(); i++)
{
TS_ASSERT_DELTA(mpGeneralizedRushLarsenCell->rGetStateVariables()[i],
solutions_GRL1_stimulated_cell_order1.rGetSolutions().back()[i], 1e-12);
}
// Compare with general GRL1 method
boost::shared_ptr<GRL1IvpOdeSolver> p_grl1_solver(new GRL1IvpOdeSolver());
CellLuoRudy1991FromCellML reference_model_grl1(p_grl1_solver, mpGeneralizedRushLarsenCell->GetStimulusFunction());
reference_model_grl1.ResetToInitialConditions();
reference_model_grl1.SetStimulusFunction(p_stimulus_zero);
reference_model_grl1.SetTimestep(1e-3);
reference_model_grl1.SetVoltage(-30);
OdeSolution ref_solution_grl1 = reference_model_grl1.Compute(0.0, 1e-3);
for (unsigned i=0; i<reference_model_grl1.GetNumberOfStateVariables(); i++)
{
double error1 = solutions_GRL1_stimulated_cell_order1.rGetSolutions().back()[i] - ref_solution_grl1.rGetSolutions().back()[i];
TS_ASSERT_DELTA(fabs(error1),0,5e-7);
}
// Test order of convergence (first-order method)
// Get two solutions with halved stepsize
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
reference_model_grl1.SetStimulusFunction(p_stimulus_zero);
reference_model_grl1.SetVoltage(-30);
mpGeneralizedRushLarsenCell->SetTimestep(0.002);
solutions_GRL1_stimulated_cell_order1 = mpGeneralizedRushLarsenCell->Compute(0.0, 1.0);
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
reference_model_grl1.SetStimulusFunction(p_stimulus_zero);
reference_model_grl1.SetVoltage(-30);
mpGeneralizedRushLarsenCell->SetTimestep(0.001);
OdeSolution solutions_GRL1_stimulated_cell_order2 = mpGeneralizedRushLarsenCell->Compute(0.0, 1.0);
// Get accurate solution to be used as reference solution
//boost::shared_ptr<HeunIvpOdeSolver> p_heun_solver(new HeunIvpOdeSolver());
reference_model.SetStimulusFunction(p_stimulus_zero);
reference_model.SetVoltage(-30);
reference_model.ResetToInitialConditions();
reference_model.SetTimestep(1e-6);
OdeSolution ref_solution = reference_model.Compute(0.0, 1.0);
for (unsigned i=0; i<reference_model.GetNumberOfStateVariables(); i++)
{
double error1 = solutions_GRL1_stimulated_cell_order1.rGetSolutions().back()[i] - ref_solution.rGetSolutions().back()[i];
double error2 = solutions_GRL1_stimulated_cell_order2.rGetSolutions().back()[i] - ref_solution.rGetSolutions().back()[i];
TS_ASSERT_DELTA(error1/error2, 2, 0.1);
}
// Free memory
delete mpGeneralizedRushLarsenCell;
// delete mpGeneralizedRushLarsenCellOpt;
}
void TestLuoRudyGeneralizedRushLarsenMethod2()
{
EXIT_IF_PARALLEL;
HeartConfig::Instance()->SetOdeTimeStep(0.01);
GenerateCells2();
// Check the models really use Rush-Larsen
TS_ASSERT_EQUALS(Warnings::Instance()->GetNumWarnings(), 0u);
// Normal Luo-Rudy for comparison
boost::shared_ptr<HeunIvpOdeSolver> p_heun_solver(new HeunIvpOdeSolver());
CellLuoRudy1991FromCellML reference_model(p_heun_solver, mpGeneralizedRushLarsenCell->GetStimulusFunction());
// Check GetIIonic is identical
TS_ASSERT_DELTA(mpGeneralizedRushLarsenCell->GetIIonic(), reference_model.GetIIonic(), 1e-12);
// Test non-stimulated cell (using ComputeExceptVoltage)
mpGeneralizedRushLarsenCell->ComputeExceptVoltage(0.0, 1.0);
reference_model.ComputeExceptVoltage(0.0, 1.0);
TS_ASSERT_EQUALS(mpGeneralizedRushLarsenCell->GetNumberOfStateVariables(),
reference_model.GetNumberOfStateVariables());
for (unsigned i=0; i<reference_model.GetNumberOfStateVariables(); i++)
{
TS_ASSERT_DELTA(mpGeneralizedRushLarsenCell->rGetStateVariables()[i],
reference_model.rGetStateVariables()[i], 1e-6);
}
// Test stimulated cell (using Compute)
boost::shared_ptr<SimpleStimulus> p_stimulus(new SimpleStimulus(-25.5, 1.99, 0.0));
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
mpGeneralizedRushLarsenCell->SetStimulusFunction(p_stimulus);
OdeSolution solutions_GRL2 = mpGeneralizedRushLarsenCell->Compute(0.0, 1.0, 0.01);
TS_ASSERT_EQUALS(solutions_GRL2.GetNumberOfTimeSteps(), 100u);
reference_model.ResetToInitialConditions();
reference_model.SetStimulusFunction(p_stimulus);
OdeSolution solutions_ref = reference_model.Compute(0.0, 1.0, 0.01);
for (unsigned i=0; i<reference_model.GetNumberOfStateVariables(); i++)
{
TS_ASSERT_DELTA(solutions_GRL2.rGetSolutions().back()[i],
solutions_ref.rGetSolutions().back()[i], 1e-2);
}
//Compare LuoRudy solution with general GRL2 solver solution (should match)
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
boost::shared_ptr<ZeroStimulus> p_stimulus_zero(new ZeroStimulus());
mpGeneralizedRushLarsenCell->ResetToInitialConditions();
mpGeneralizedRushLarsenCell->SetStimulusFunction(p_stimulus_zero);
mpGeneralizedRushLarsenCell->SetTimestep(1e-3);
mpGeneralizedRushLarsenCell->SetVoltage(-30);
OdeSolution solutions_GRL2_stimulated_cell_order2 = mpGeneralizedRushLarsenCell->Compute(0.0, 1e-3);
boost::shared_ptr<GRL2IvpOdeSolver> p_grl2_solver(new GRL2IvpOdeSolver());
CellLuoRudy1991FromCellML reference_model_grl2(p_grl2_solver, mpGeneralizedRushLarsenCell->GetStimulusFunction());
// Compare with general GRL2 method
reference_model_grl2.ResetToInitialConditions();
reference_model_grl2.SetStimulusFunction(p_stimulus_zero);
reference_model_grl2.SetTimestep(1e-3);
reference_model_grl2.SetVoltage(-30);
OdeSolution ref_solution_grl2 = reference_model_grl2.Compute(0.0, 1e-3);
for (unsigned i=0; i<reference_model_grl2.GetNumberOfStateVariables(); i++)
{
double error1 = solutions_GRL2_stimulated_cell_order2.rGetSolutions().back()[i] - ref_solution_grl2.rGetSolutions().back()[i];
TS_ASSERT_DELTA(fabs(error1),0,5e-7);
}
// Free memory
delete mpGeneralizedRushLarsenCell;
// delete mpGeneralizedRushLarsenCellOpt;
}
};
#endif // TESTGENERALIZEDRUSHLARSEN_HPP_
|
#include <iostream>
#include <string>
#include <vector>
/*
Simple program that represents a guest list. User inputs names that are to be
added on a guest list. Then the programs tells the user how many people are
in the guest list and prints the names of each person.
*/
int main()
{
// declares a vector (similair to arrays)
std::vector<std::string> list;
// value to determine if user want to continue
std::string cont = "y";
// holds name of user
std::string name;
// holds users option of yes or no
std::string userIn;
// title for application
std::cout << "=======================" << "\n";
std::cout << " Electronic Guest List" << "\n";
std::cout << "=======================" << "\n";
std::cout << "\n\n\n\n";
do
{
// prompts user to enter name
std::cout << "Enter person you'd like to add to your guest list" << "\n>";
std::cin >> name;
// adds users name to vector
list.push_back(name);
std::cout << "\t" << name << " added" << "\n";
std::cout << "\n\n";
// asks user if they want to add another name
std::cout << "Would you like to add another person to your guest list? (y, n) : ";
std::cin >> userIn;
std::cout << "\n\n";
} while (userIn.compare(cont) == 0);
std::cout << "-------------------------------------------------------------------\n";
// Tells user how many people are on their guest list
std::cout << "There are " << list.size() << " people on your guest list. \n\n";
// iterates thru the vector and prints out names on guest list
for (unsigned int i = 0; i < list.size(); i++)
{
std::cout << "Guest " << (i + 1) << " : " << list.at(i) << "\n";
}
std::cout << "-------------------------------------------------------------------\n";
std::cout << "\n";
std::cout << "Click enter again to terminate program" << "\n";
std::cin.get();
std::cin.get();
return 0;
}
|
//-----------------------------------------------------------------------------
// Perimeter Map Compiler
// Copyright (c) 2005, Don Reba
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// โข Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// โข Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// โข Neither the name of Don Reba nor the names of his contributors may be used
// to endorse or promote products derived from this software without specific
// prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//-----------------------------------------------------------------------------
#include "stdafx.h"
#include "resource.h"
#include "btdb.h"
#include "info wnd.h"
#include "main wnd.h"
#include "preview wnd.h"
#include "project manager.h"
#include "project tasks.h"
#include "resource management.h"
#include "script creator.h"
#include "stat wnd.h"
#include "xml creator.h"
#include <algorithm>
#include <fstream>
#include <iomanip>
#include <limits>
#include <memory>
#include <numeric>
#include <set>
#include <shlobj.h>
#include <sstream>
#include <loki/ScopeGuard.h>
using namespace RsrcMgmt;
using namespace TaskCommon;
//----------------------------------------
// TaskData implementation
//----------------------------------------
TaskData::TaskData(SaveCallback::SaveHandler *save_handler, const HWND &error_hwnd)
:um_hardness_ (error_hwnd)
,um_heightmap_ (error_hwnd)
,um_script_ (error_hwnd)
,um_sky_ (error_hwnd)
,um_surface_ (error_hwnd)
,um_texture_ (error_hwnd)
,um_zero_layer_(error_hwnd)
,hardness_ (um_hardness_, manager_)
,heightmap_ (um_heightmap_, manager_)
,script_ (um_script_, manager_)
,sky_ (um_sky_, manager_)
,surface_ (um_surface_, manager_)
,texture_ (um_texture_, manager_)
,zero_layer_(um_zero_layer_, manager_)
,manager_(error_hwnd)
{
manager_.AddResource(&hardness_ );
manager_.AddResource(&heightmap_ );
manager_.AddResource(&script_ );
manager_.AddResource(&script_ );
manager_.AddResource(&sky_ );
manager_.AddResource(&surface_ );
manager_.AddResource(&texture_ );
manager_.AddResource(&zero_layer_);
um_hardness_.SetOnSave (save_handler);
um_heightmap_.SetOnSave (save_handler);
um_script_.SetOnSave (save_handler);
um_sky_.SetOnSave (save_handler);
um_surface_.SetOnSave (save_handler);
um_texture_.SetOnSave (save_handler);
um_zero_layer_.SetOnSave(save_handler);
}
void TaskData::SetResourceManagerEnabled(bool enable)
{
manager_.SetEnabled(enable);
}
//--------------------------------------
// CreateDefaultFilesTask implementation
//--------------------------------------
CreateDefaultFilesTask::CreateDefaultFilesTask(const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
{}
void CreateDefaultFilesTask::operator() (TaskData &data)
{
using namespace Loki;
TCHAR path[MAX_PATH];
::PathCombine(path, data.project_folder_.c_str(), _T("heightmap.png"));
::DeleteFile(path);
{
Heightmap::info_t &info(data.heightmap_.GetInfo());
info.path_ = path;
info.size_ = data.map_size_;
Heightmap &heightmap(data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
heightmap.MakeDefault();
heightmap.Save();
}
::PathCombine(path, data.project_folder_.c_str(), _T("texture.png"));
::DeleteFile(path);
{
Texture::info_t &info(data.texture_.GetInfo());
info.path_ = path;
info.size_ = data.map_size_;
info.fast_quantization_ = true;
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
texture.MakeDefault();
texture.Save();
}
}
//----------------------------------
// ChangeProjectTask implemenatation
//----------------------------------
ChangeProjectTask::ChangeProjectTask(PreviewWnd &preview_wnd)
:preview_wnd_(preview_wnd)
{}
void ChangeProjectTask::operator() (TaskData &data)
{
preview_wnd_.ProjectChanged();
}
//----------------------------------
// CreateResourceTask implementation
//----------------------------------
CreateResourceTask::CreateResourceTask(uint id, const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
,id_(id)
{}
void CreateResourceTask::operator() (TaskData &data)
{
using namespace Loki;
TCHAR path[MAX_PATH];
const TCHAR * const folder_path(data.project_folder_.c_str());
switch (id_)
{
case RS_HARDNESS:
::PathCombine(path, folder_path, _T("hardness.bmp"));
if (INVALID_FILE_ATTRIBUTES == ::GetFileAttributes(path))
{
Hardness::info_t &info(data.hardness_.GetInfo());
info.path_ = path;
info.size_ = data.map_size_;
Hardness &hardness(data.hardness_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.hardness_, &TaskResource<Hardness>::CheckIn);
hardness.MakeDefault();
hardness.Save();
}
break;
case RS_ZERO_LAYER:
::PathCombine(path, folder_path, _T("zero layer.bmp"));
if (INVALID_FILE_ATTRIBUTES == ::GetFileAttributes(path))
{
ZeroLayer::info_t &info(data.zero_layer_.GetInfo());
info.path_ = path;
info.size_ = data.map_size_;
ZeroLayer &zero_layer(data.zero_layer_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.zero_layer_, &TaskResource<ZeroLayer>::CheckIn);
zero_layer.MakeDefault();
zero_layer.Save();
}
break;
case RS_SKY:
::PathCombine(path, folder_path, _T("sky.bmp"));
if (INVALID_FILE_ATTRIBUTES == ::GetFileAttributes(path))
{
Sky::info_t &info(data.sky_.GetInfo());
info.path_ = path;
Sky &sky(data.sky_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.sky_, &TaskResource<Sky>::CheckIn);
sky.MakeDefault();
sky.Save();
}
break;
case RS_SURFACE:
::PathCombine(path, folder_path, _T("surface.bmp"));
if (INVALID_FILE_ATTRIBUTES == ::GetFileAttributes(path))
{
Surface::info_t &info(data.surface_.GetInfo());
info.path_ = path;
Surface &surface(data.surface_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.surface_, &TaskResource<Surface>::CheckIn);
surface.MakeDefault();
surface.Save();
}
break;
}
}
//--------------------------------
// ImportScriptTask implementation
//--------------------------------
ImportScriptTask::ImportScriptTask(LPCTSTR script_path, LPCTSTR xml_path)
:script_(script_path)
,xml_ (xml_path)
{}
void ImportScriptTask::operator() (TaskData &data)
{
XmlCreator xml_creator;
{
XmlCreator::LoadResult result(xml_creator.LoadFromFile(script_.c_str()));
if (!result.success_)
{
tstringstream stream;
stream << _T("Script could not be imported.\n");
stream << _T("Only ") << result.chars_consumed_ << _T(" characters have been read.");
throw TaskException(stream.str().c_str());
}
}
std::ofstream file(xml_.c_str());
if (!file)
{
vector<TCHAR> buffer_v(MAX_PATH);
TCHAR *buffer(&buffer_v[0]);
_tcscpy(buffer, xml_.c_str());
PathStripPath(buffer);
tstring error_message("Script could not be imported.\nFailed to create \"");
error_message += buffer;
error_message += "\".";
throw TaskException(error_message.c_str());
}
xml_creator.Read(file);
}
//--------------------------------
// InstallShrubTask implementation
//--------------------------------
InstallMapTask::InstallMapTask(
const HWND &hwnd,
LPCTSTR install_path,
uint version,
bool custom_zero_layer,
bool rename_to_unregistered)
:ErrorHandler (hwnd)
,hwnd_ (hwnd)
,install_path_ (install_path)
,version_ (version)
,custom_zero_layer_ (custom_zero_layer)
,rename_to_unregistered_(rename_to_unregistered)
{}
void InstallMapTask::operator() (TaskData &data)
{
using namespace Loki;
// get the heightmap
Heightmap &heightmap(data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
// get the texture
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
// initialize variables
TCHAR str [MAX_PATH];
TCHAR folder_path[MAX_PATH];
bool overwriting(false);
// get the name to use for stuff that needs a name
// this is the map name for a registered map, and "UNREGISTERED" otherwise
// ASSUME shrubs are registered
tstring folder_name(
(PS_SHRUB == data.project_state_ || !rename_to_unregistered_)
? data.map_name_
: _T("UNREGISTERED"));
// create a directory for the map
{
// create path
PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Worlds"));
PathCombine(folder_path, folder_path, folder_name.c_str());
// create directory
int result(SHCreateDirectoryEx(hwnd_, folder_path, NULL));
switch (result)
{
case ERROR_SUCCESS:
overwriting = true;
break;
case ERROR_ALREADY_EXISTS:
{
if (PS_SHRUB == data.project_state_ && IDCANCEL == MessageBox(
hwnd_,
_T("Map with this name already exists. Continuing will overwrite its contents."),
_T("Warning"),
MB_ICONWARNING | MB_OKCANCEL))
return;
} break;
default:
MacroDisplayError(_T("SHCreateDirectoryEx failed"));
return;
}
}
// create and save map.tga
{
Lightmap lightmap(error_hwnd_);
lightmap.Create(heightmap);
::PathCombine(str, folder_path, _T("map.tga"));
SIZE size = { 128, 128 };
SaveThumb(heightmap, lightmap, texture, str, size, *this);
}
// create and save world.ini
{
MapInfo &map_info(data.map_info_);
::PathCombine(str, folder_path, _T("world.ini"));
std::ofstream world_ini(str, std::ios_base::binary | std::ios_base::out);
world_ini << map_info.GenerateWorldIni();
}
// create and save output.vmp
{
ZeroLayer &zero_layer(data.zero_layer_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.zero_layer_, &TaskResource<ZeroLayer>::CheckIn);
::PathCombine(str, folder_path, _T("output.vmp"));
SaveVMP(heightmap, texture, custom_zero_layer_ ? NULL : &zero_layer, str, *this);
}
// create and save inDam.act
::PathCombine(str, folder_path, _T("inDam.act"));
SavePalette(texture, str, *this);
// append Texts.btdb
{
tstring language;
// get the language of the distribution
{
::PathCombine(str, install_path_.c_str(), "Perimeter.ini");
std::ifstream ini(str);
if (!ini.is_open())
{
MacroDisplayError(_T("Perimeter.ini could not be opened."));
return;
}
tstring line;
tstring target(_T("DefaultLanguage="));
while (ini)
{
getline(ini, line);
size_t pos(line.find(target));
if (line.npos != pos)
{
language = line.substr(pos + target.size(), line.size() - target.size());
break;
}
}
}
//GetPrivateProfileString("Game", "DefaultLanguage", "Russian--", language, language_size, str);
::PathCombine(str, install_path_.c_str(), "RESOURCE\\LocData");
::PathCombine(str, str, language.c_str());
::PathCombine(str, str, "Text\\Texts.btdb");
AppendBTDB(str, folder_name.c_str(), data.project_state_, data.map_name_);
}
// append WORLDS.PRM
::PathCombine(str, install_path_.c_str(), "RESOURCE\\Worlds\\WORLDS.PRM");
AppendWorldsPrm(str, folder_name.c_str(), version_);
// save up.tga
::PathCombine(str, folder_path, _T("up.tga"));
{
Sky &sky(data.sky_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.sky_, &TaskResource<Sky>::CheckIn);
sky.SaveAs(str);
}
// leveledSurfaceTexture.tga
::PathCombine(str, folder_path, _T("leveledSurfaceTexture.tga"));
{
Surface &surface(data.surface_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.surface_, &TaskResource<Surface>::CheckIn);
surface.SaveAs(str);
}
// create and save hardness.bin
::PathCombine(str, folder_path, _T("leveledSurfaceTexture.tga"));
{
Hardness &hardness(data.hardness_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.hardness_, &TaskResource<Hardness>::CheckIn);
hardness.SaveAs(str);
}
// generate mission files
{
MapInfo &map_info(data.map_info_);
switch (version_)
{
case 1:
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Battle"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission(map_info, folder_path, folder_name.c_str(), false);
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Multiplayer"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission(map_info, folder_path, folder_name.c_str(), false);
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Battle\\SURVIVAL"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission(map_info, folder_path, folder_name.c_str(), false);
break;
case 2:
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Battle"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission2(map_info, folder_path, folder_name.c_str(), false);
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Multiplayer"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission2(map_info, folder_path, folder_name.c_str(), false);
::PathCombine(folder_path, install_path_.c_str(), _T("RESOURCE\\Battle\\SURVIVAL"));
::PathCombine(folder_path, folder_path, folder_name.c_str()); // WARN: not compatible with Unicode
SaveMission2(map_info, folder_path, folder_name.c_str(), false);
break;
default:
DebugBreak();
}
}
}
// set the appropriate entry of Texts.btdb to the name of the map
void InstallMapTask::AppendBTDB(
LPCTSTR path,
LPCTSTR folder_name,
ProjectState project_state,
tstring map_name)
{
// set a prefix for the map name
const char * const prefix((PS_SHRUB == project_state) ? "" : "[U]");
const size_t prefix_size = strlen(prefix);
// prefix name of the map
map_name.insert(0, prefix);
// replace some characters in the name of the map by others
{
char *source("_");
char *target(" ");
for (size_t i(prefix_size); i != map_name.size(); ++i)
{
char *chr_i(strchr(source, map_name[i]));
if (NULL != chr_i)
map_name[i] = *(target + (chr_i - source));
}
}
Btdb btdb(path);
btdb.AddMapEntry(folder_name, map_name.c_str());
}
void InstallMapTask::AppendWorldsPrm(LPCTSTR path, LPCTSTR folder_name, uint version)
{
std::set<tstring> worlds;
// create a list of worlds
{
// read in strings from the worlds_list.txt resource
{
tistringstream worlds_list_stream;
// load the list of reserved names
{
size_t alloc(1024); // 1 KB
vector<TCHAR> result;
result.resize(alloc);
if (!UncompressResource(IDR_WORLDS_LIST, ri_cast<BYTE*>(&result[0]), alloc))
{
MacroDisplayError("Worlds list could not be loaded.");
return;
}
worlds_list_stream.str(&result[0]);
}
std::copy(
std::istream_iterator<tstring>(worlds_list_stream),
std::istream_iterator<tstring>(),
std::inserter(worlds, worlds.begin()));
}
if (2 == version)
{
tistringstream worlds_list_stream;
// load the list of reserved names
{
size_t alloc(1024); // 1 KB
vector<TCHAR> result;
result.resize(alloc);
if (!UncompressResource(IDR_WORLDS_LIST_2, ri_cast<BYTE*>(&result[0]), alloc))
{
MacroDisplayError("Worlds list could not be loaded.");
return;
}
worlds_list_stream.str(&result[0]);
}
std::copy(
std::istream_iterator<tstring>(worlds_list_stream),
std::istream_iterator<tstring>(),
std::inserter(worlds, worlds.begin()));
}
// open WORLDS.PRM
std::ifstream prm_file(path);
if (!prm_file.is_open())
{
MacroDisplayError(_T("Could not open WORLDS.PRM for reading."));
return;
}
// read in strings from WORLDS.PRM
{
DWORD num_worlds;
prm_file >> num_worlds;
tstring world;
while (prm_file)
{
prm_file >> world >> world;
if (!world.empty())
worlds.insert(world);
}
}
// append the new world
{
tstring new_world(folder_name);
worlds.insert(new_world);
}
}
// save the list of worlds
{
std::ofstream prm_file(path);
if (!prm_file.is_open())
{
MacroDisplayError(_T("Could not open WORLDS.PRM for writing."));
return;
}
std::set<tstring>::const_iterator i (worlds.begin());
const std::set<tstring>::const_iterator end(worlds.end());
prm_file << worlds.size() << _T("\n\n");
for (; i != end; ++i)
prm_file << std::setw(0) << *i << std::setw(24) << *i << _T("\n");
}
}
// v 1.01
void InstallMapTask::SaveMission(
MapInfo map_info,
LPCTSTR path,
LPCTSTR folder_name,
bool survival)
{
TCHAR str[MAX_PATH];
// create an empty ".dat" file
_tcscpy(str, path);
PathAddExtension(str, _T(".dat"));
SaveMemToFile(str, NULL, 0, *this);
// create an empty ".gmp" file
_tcscpy(str, path);
PathAddExtension(str, _T(".gmp"));
SaveMemToFile(str, NULL, 0, *this);
// create the ".spg" file
_tcscpy(str, path);
PathAddExtension(str, _T(".spg"));
// save
SaveSPG(map_info, str, folder_name, survival, *this);
// create the ".sph" file
_tcscpy(str, path);
PathAddExtension(str, _T(".sph"));
SaveSPH(str, folder_name, survival, *this);
}
// v 1.02
void InstallMapTask::SaveMission2(
MapInfo map_info,
LPCTSTR path,
LPCTSTR folder_name,
bool survival)
{
TCHAR str[MAX_PATH];
// create an empty ".dat" file
_tcscpy(str, path);
PathAddExtension(str, _T(".dat"));
SaveMemToFile(str, NULL, 0, *this);
// create an empty ".gmp" file
_tcscpy(str, path);
PathAddExtension(str, _T(".gmp"));
SaveMemToFile(str, NULL, 0, *this);
// create the ".spg" file
_tcscpy(str, path);
PathAddExtension(str, _T(".spg"));
// save
SaveSPG2(map_info, str, folder_name, survival, *this);
}
//-----------------------------------
// LoadProjectDataTask implementation
//-----------------------------------
//LoadProjectDataTask::LoadProjectDataTask(const IdsType &ids, HWND &error_hwnd)
// :ErrorHandler(error_hwnd)
// ,ids_ (ids)
//{}
//
//LoadProjectDataTask::LoadProjectDataTask(HWND &error_hwnd)
// :ErrorHandler(error_hwnd)
//{
// ids_.set();
//}
//
//void LoadProjectDataTask::operator() (TaskData &data)
//{
// // preconditions
// _ASSERTE(NULL == data.hardness_);
// _ASSERTE(NULL == data.heightmap_);
// _ASSERTE(NULL == data.script_);
// _ASSERTE(NULL == data.sky_);
// _ASSERTE(NULL == data.surface_);
// _ASSERTE(NULL == data.texture_);
// _ASSERTE(NULL == data.zero_layer_);
// // locals
// TCHAR path[MAX_PATH];
// // load
// const TCHAR * const folder_path(data.project_folder_.c_str());
// if (ids_[RS_ZERO_LAYER])
// {
// data.zero_layer_ = new ZeroLayer(data.map_size_, error_hwnd_);
// data.zero_layer_->Load(PathCombine(path, folder_path, data.file_names_[RS_ZERO_LAYER].c_str()));
// }
// if (ids_[RS_HARDNESS])
// {
// data.hardness_ = new Hardness(data.map_size_, error_hwnd_);
// data.hardness_->Load(PathCombine(path, folder_path, data.file_names_[RS_HARDNESS].c_str()));
// }
// if (ids_[RS_HEIGHTMAP])
// {
// data.heightmap_ = LoadHeightmap(
// data.map_size_,
// *this,
// PathCombine(path, folder_path, data.file_names_[RS_HEIGHTMAP].c_str()),
// ids_[RS_ZERO_LAYER] ? data.zero_layer_ : NULL,
// data.map_info_.zero_level_);
// }
// if (ids_[RS_SCRIPT])
// {
// data.script_ = new Script(error_hwnd_);
// if (!data.script_->Load(PathCombine(path, folder_path, data.file_names_[RS_SCRIPT].c_str())))
// {
// delete data.script_;
// data.script_ = NULL;
// }
// }
// if (ids_[RS_SKY])
// {
// data.sky_ = new Sky(error_hwnd_);
// data.sky_->Load(PathCombine(path, folder_path, data.file_names_[RS_SKY].c_str()));
// }
// if (ids_[RS_SURFACE])
// {
// data.surface_ = new Surface(error_hwnd_);
// data.surface_->Load(PathCombine(path, folder_path, data.file_names_[RS_SURFACE].c_str()));
// }
// if (ids_[RS_TEXTURE])
// {
// data.texture_ = new Texture(data.map_size_, error_hwnd_);
// data.texture_->Load(
// PathCombine(path, folder_path, data.file_names_[RS_TEXTURE].c_str()),
// data.fast_quantization_);
// }
//}
//-----------------------------------------
// NotifyResourceCreatedTask implementation
//-----------------------------------------
NotifyResourceCreatedTask::NotifyResourceCreatedTask(Resource id, HWND main_hwnd)
:id_ (id)
,main_hwnd_(main_hwnd)
{}
void NotifyResourceCreatedTask::operator() (TaskData &data)
{
SendResourceCreated(main_hwnd_, id_);
}
//-------------------------------------
// NotifyProjectOpenTask implementation
//-------------------------------------
NotifyProjectOpenTask::NotifyProjectOpenTask(HWND main_hwnd)
:main_hwnd_(main_hwnd)
{}
void NotifyProjectOpenTask::operator() (TaskData &data)
{
SendProjectOpen(main_hwnd_);
}
//-----------------------------------------
// NotifyProjectUnpackedTask implementation
//-----------------------------------------
NotifyProjectUnpackedTask::NotifyProjectUnpackedTask(HWND main_hwnd)
:main_hwnd_(main_hwnd)
{}
void NotifyProjectUnpackedTask::operator() (TaskData &data)
{
SendProjectUnpacked(main_hwnd_);
}
//-----------------------------
// PackShrubTask implementation
//-----------------------------
PackShrubTask::PackShrubTask(
bool custom_hardness,
bool custom_sky,
bool custom_surface,
bool custom_zero_layer,
bool use_registration,
const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
,custom_hardness_ (custom_hardness)
,custom_sky_ (custom_sky)
,custom_surface_ (custom_surface)
,custom_zero_layer_(custom_zero_layer)
,use_registration_ (use_registration)
{}
void PackShrubTask::operator() (TaskData &data)
{
using namespace Loki;
// check out hardness
Hardness &hardness(data.hardness_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.hardness_, &TaskResource<Hardness>::CheckIn);
// check out heightmap
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
// check out sky
Sky &sky(data.sky_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.sky_, &TaskResource<Sky>::CheckIn);
// check out surface
Surface &surface(data.surface_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.surface_, &TaskResource<Surface>::CheckIn);
// check out texture
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
// check out zero layer
ZeroLayer &zero_layer(data.zero_layer_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.zero_layer_, &TaskResource<ZeroLayer>::CheckIn);
// calculate the checksum and register the map
{
DWORD checksum(0);
BYTE *checksum_data;
size_t size;
// heightmap
switch (heightmap.bpp_)
{
case 8:
{
checksum_data = heightmap.data8_;
size = heightmap.info_.size_.cx * heightmap.info_.size_.cy;
checksum = CalculateChecksum(checksum_data, size, checksum);
} break;
case 16:
{
checksum_data = ri_cast<BYTE*>(heightmap.data16_);
size = heightmap.info_.size_.cx * heightmap.info_.size_.cy * 2;
checksum = CalculateChecksum(checksum_data, size, checksum);
} break;
}
// texture
checksum_data = texture.indices_;
size = texture.info_.size_.cx * texture.info_.size_.cy;
checksum = CalculateChecksum(checksum_data, size, checksum);
checksum_data = ri_cast<BYTE*>(texture.palette_);
size = 0x100 * sizeof(COLORREF);
checksum = CalculateChecksum(checksum_data, size, checksum);
// hardness
if (custom_hardness_)
{
checksum_data = hardness.data_;
size = hardness.info_.size_.cx * hardness.info_.size_.cy;
checksum = CalculateChecksum(checksum_data, size, checksum);
}
// map info
{
data.map_info_.GetRawData(&checksum_data, &size);
checksum = CalculateChecksum(checksum_data, size, checksum);
delete [] checksum_data;
// register the map
if (use_registration_)
if (!RegisterMap(data.map_name_.c_str(), checksum, *this))
return;
}
// script
{
Script &script(data.script_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.script_, &TaskResource<Script>::CheckIn);
std::stringstream stream;
stream << script.doc_;
string str(stream.str());
checksum_data = ri_cast<BYTE*>(&str[0]);
size = str.size();
checksum = CalculateChecksum(checksum_data, size, checksum);
}
// sky
if (custom_sky_)
{
checksum_data = ri_cast<BYTE*>(sky.pixels_);
size = sky.size_.cx * sky.size_.cy * sizeof(COLORREF);
checksum = CalculateChecksum(checksum_data, size, checksum);
}
// surface
if (custom_surface_)
{
checksum_data = surface.indices_;
size = surface.size_.cx * surface.size_.cy;
checksum = CalculateChecksum(checksum_data, size, checksum);
checksum_data = ri_cast<BYTE*>(surface.palette_);
size = 0x100 * sizeof(COLORREF);
checksum = CalculateChecksum(checksum_data, size, checksum);
}
// zero layer
if (custom_zero_layer_)
{
_ASSERTE(0 == zero_layer.data_.size() % 8);
checksum_data = ri_cast<BYTE*>(&zero_layer.data_._Myvec[0]);
size = zero_layer.data_.size() / 8;
checksum = CalculateChecksum(checksum_data, size, checksum);
}
}
// initialise an XML metadata document
TiXmlDocument doc;
TiXmlNode *content_node(doc.InsertEndChild(TiXmlElement("content")));
// allocate a buffer for the data
size_t buffer_size;
{
// compute the sum of the maximum sizes for each resource used
vector<size_t> sizes;
const size_t map_factor (data.map_size_.cx * data.map_size_.cy);
sizes.push_back(map_factor); // heightmap
sizes.push_back(map_factor + 0x100 * sizeof(COLORREF)); // texture
sizes.push_back(map_factor / 8); // mask
if (custom_hardness_)
sizes.push_back(hardness.info_.size_.cx * hardness.info_.size_.cy);
if (custom_sky_)
sizes.push_back(sky.size_.cx * sky.size_.cy * sizeof(COLORREF));
if (custom_surface_)
sizes.push_back(surface.size_.cx * surface.size_.cy + 0x100 * sizeof(COLORREF));
if (custom_zero_layer_)
sizes.push_back(map_factor / 8);
buffer_size = std::accumulate(sizes.begin(), sizes.end(), 0);
}
BYTE *buffer(new BYTE[buffer_size]);
// add packed data
{
BYTE *buffer_iter(buffer);
vector<bool> mask;
data.map_info_.Pack(*content_node->InsertEndChild(TiXmlElement("map_info")));
{
Script &script(data.script_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.script_, &TaskResource<Script>::CheckIn);
script.Pack(*content_node->InsertEndChild(TiXmlElement("script")));
}
buffer_iter += heightmap.Pack(
*content_node->InsertEndChild(TiXmlElement("heightmap")),
buffer_iter,
buffer,
mask);
buffer_iter += texture.Pack(
*content_node->InsertEndChild(TiXmlElement("texture")),
buffer_iter,
buffer,
mask);
if (custom_hardness_)
buffer_iter += hardness.Pack(
*content_node->InsertEndChild(TiXmlElement("hardness")),
buffer_iter,
buffer,
mask);
if (custom_sky_)
buffer_iter += sky.Pack(
*content_node->InsertEndChild(TiXmlElement("sky")),
buffer_iter,
buffer);
if (custom_surface_)
buffer_iter += surface.Pack(
*content_node->InsertEndChild(TiXmlElement("surface")),
buffer_iter,
buffer);
if (custom_zero_layer_)
buffer_iter += zero_layer.Pack(
*content_node->InsertEndChild(TiXmlElement("zero_layer")),
buffer_iter,
buffer);
// calculate how much of the buffer was used
buffer_size = static_cast<size_t>(buffer_iter - buffer);
}
// augment the buffer with metadata
{
{
std::ofstream dbg_file("shrub xml.xml");
dbg_file << doc;
}
// output the XML metadata into a string
string xml_string;
xml_string << doc;
size_t xml_string_size(xml_string.size() + 1);
// append the xml metadata to the buffer
BYTE *augmented_buffer(new BYTE[buffer_size + xml_string_size]);
CopyMemory(augmented_buffer, xml_string.c_str(), xml_string_size);
CopyMemory(augmented_buffer + xml_string_size, buffer, buffer_size);
// replace the old buffer
delete [] buffer;
buffer = augmented_buffer;
buffer_size += xml_string_size;
}
// allocate a new buffer for the compressed data
const size_t header_size(12);
size_t compressed_buffer_size(static_cast<size_t>(buffer_size * 1.01f) + 600); // as specified in bzip2 manual
BYTE *compressed_buffer(new BYTE[compressed_buffer_size + header_size]);
// compress the shrub
if (BZ_OK != BZ2_bzBuffToBuffCompress(
ri_cast<char*>(compressed_buffer + header_size),
&compressed_buffer_size,
ri_cast<char*>(buffer),
buffer_size,
9,
0,
0))
{
MacroDisplayError(_T("BZ2_bzBuffToBuffCompress failed"));
delete [] buffer;
delete [] compressed_buffer;
return;
}
delete [] buffer;
compressed_buffer_size += header_size;
// record header
{
#ifdef PRE_RELEASE
char header[8] = { 'S', 'H', 'R', 'B', 'B', 'Z', '2', 0 };
#else // PRE_RELEASE
char header[8] = { 'S', 'H', 'R', 0, 'B', 'Z', '2', 0 };
#endif // PRE_RELEASE
CopyMemory(compressed_buffer, header, 8);
CopyMemory(compressed_buffer + 8, &buffer_size, 4);
}
// save the packed Biboorat into a shrub file
TCHAR path[MAX_PATH];
PathCombine(path, data.project_folder_.c_str(), data.map_name_.c_str());
PathAddExtension(path, _T(".shrub"));
SaveMemToFile(path, compressed_buffer, compressed_buffer_size, *this);
delete [] compressed_buffer;
// reassure the user
MessageBox(
error_hwnd_,
_T("The map has been successfully packed, and saved to the project folder."),
_T("Success"),
MB_ICONINFORMATION | MB_OK); // HACK: error handle used for messaging
}
//-----------------------------
// SaveThumbTask implementation
//-----------------------------
SaveThumbTask::SaveThumbTask(const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
{}
void SaveThumbTask::operator() (TaskData &data)
{
using namespace Loki;
// check out heightmap
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
// check out texture
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
// create the lightmap
Lightmap lightmap(error_hwnd_);
lightmap.Create(heightmap);
TCHAR path[MAX_PATH];
PathCombine(path, data.project_folder_.c_str(), _T("thumbnail.png"));
SIZE size = { 256, 256 };
SaveThumb(heightmap, lightmap, texture, path, size, *this);
}
//---------------------------------------------
// SetResourceManagerEnabledTask implementation
//---------------------------------------------
SetResourceManagerEnabledTask::SetResourceManagerEnabledTask(bool enable)
:enable_(enable)
{}
void SetResourceManagerEnabledTask::operator() (TaskData &data)
{
data.SetResourceManagerEnabled(enable_);
}
//------------------------------
// UnpackShrubTask implemenation
//------------------------------
UnpackShrubTask::UnpackShrubTask(
TiXmlDocument *document,
BYTE *buffer,
BYTE *initial_offset,
const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
,buffer_ (buffer)
,initial_offset_(initial_offset)
,document_ (document)
{}
UnpackShrubTask::~UnpackShrubTask()
{
delete document_;
delete [] initial_offset_;
}
void UnpackShrubTask::operator() (TaskData &data)
{
using namespace Loki;
TiXmlElement *content_node(document_->FirstChildElement("content"));
if (NULL == content_node)
return;
// unpack map info
data.map_info_.Unpack(*content_node->FirstChildElement("map_info"));
// unpack the heightmap
vector<bool> mask;
{
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
heightmap.Unpack(
content_node->FirstChildElement("heightmap"),
buffer_,
mask);
}
// unpack the texture
{
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
texture.Unpack(content_node->FirstChildElement("texture"), buffer_);
}
// unpack the hardness map
{
TiXmlElement *node(content_node->FirstChildElement("hardness"));
if (NULL != node)
{
Hardness &hardness(data.hardness_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.hardness_, &TaskResource<Hardness>::CheckIn);
hardness.Unpack(node, buffer_, mask);
}
}
// unpack the script
{
TiXmlElement *node(content_node->FirstChildElement("script"));
if (NULL != node)
{
Script &script(data.script_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.script_, &TaskResource<Script>::CheckIn);
script.Unpack(*node);
}
}
// unpack the sky texture
{
TiXmlElement *node(content_node->FirstChildElement("sky"));
if (NULL != node)
{
Sky &sky(data.sky_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.sky_, &TaskResource<Sky>::CheckIn);
sky.Unpack(node, buffer_);
}
}
// unpack the surface texture
{
TiXmlElement *node(content_node->FirstChildElement("surface"));
if (NULL != node)
{
Surface &surface(data.surface_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.surface_, &TaskResource<Surface>::CheckIn);
surface.Unpack(node, buffer_);
}
}
// unpack the zero layer
{
TiXmlElement *node(content_node->FirstChildElement("zero_layer"));
if (NULL != node)
{
ZeroLayer &zero_layer(data.zero_layer_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.zero_layer_, &TaskResource<ZeroLayer>::CheckIn);
zero_layer.Unpack(node, buffer_);
}
}
}
//--------------------------------------------------
// SetProjectDataTask implementation
//--------------------------------------------------
UpdateDataTask::UpdateDataTask(
LPCTSTR map_name,
LPCTSTR project_folder,
SIZE map_size,
ProjectState project_state,
bool fast_quantization,
bool enable_lighting,
float mesh_threshold,
bool display_hardness,
bool display_texture,
bool display_zero_layer,
tstring file_names[resource_count],
const MapInfo &map_info)
:display_hardness_ (display_hardness)
,display_texture_ (display_texture)
,display_zero_layer_ (display_zero_layer)
,enable_lighting_ (enable_lighting)
,fast_quantization_ (fast_quantization)
,map_info_ (map_info)
,map_name_ (map_name)
,map_size_ (map_size)
,mesh_threshold_ (mesh_threshold)
,project_folder_ (project_folder)
,project_state_ (project_state)
{
for (uint i(0); i != resource_count; ++i)
file_names_[i] = file_names[i];
}
void UpdateDataTask::operator() (TaskData &data)
{
data.display_hardness_ = display_hardness_;
data.display_texture_ = display_texture_;
data.display_zero_layer_ = display_zero_layer_;
data.enable_lighting_ = enable_lighting_;
data.fast_quantization_ = fast_quantization_;
data.map_info_ = map_info_;
data.map_name_ = map_name_;
data.map_size_ = map_size_;
data.mesh_threshold_ = mesh_threshold_;
data.project_folder_ = project_folder_;
data.project_state_ = project_state_;
for (uint i(0); i != resource_count; ++i)
data.file_names_[i] = file_names_[i];
// set resource info
vector<TCHAR> path_v(MAX_PATH);
TCHAR *path(&path_v[0]);
// hardness
{
Hardness::info_t &info(data.hardness_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_HARDNESS].c_str());
info.path_ = path;
// size
info.size_ = data.map_size_;
}
// heightmap
{
Heightmap::info_t &info(data.heightmap_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_HEIGHTMAP].c_str());
info.path_ = path;
// size
info.size_ = data.map_size_;
// zero level
info.zero_level_ = data.map_info_.zero_level_;
}
// script
{
Script::info_t &info(data.script_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_SCRIPT].c_str());
info.path_ = path;
}
// sky
{
Sky::info_t &info(data.sky_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_SKY].c_str());
info.path_ = path;
}
// surface
{
Surface::info_t &info(data.surface_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_SURFACE].c_str());
info.path_ = path;
}
// texture
{
Texture::info_t &info(data.texture_.GetInfo());
// fast quantization
info.fast_quantization_ = data.fast_quantization_;
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_TEXTURE].c_str());
info.path_ = path;
// size
info.size_ = data.map_size_;
}
// zero layer
{
ZeroLayer::info_t &info(data.zero_layer_.GetInfo());
// path
PathCombine(path, data.project_folder_.c_str(), data.file_names_[RS_ZERO_LAYER].c_str());
info.path_ = path;
// size
info.size_ = data.map_size_;
}
}
//-------------------------------
// UpdatePanelTask implementation
//-------------------------------
UpdatePanelTask::UpdatePanelTask(
IdsType ids,
PanelWindow &wnd,
ProjectManager &project_manager,
update_t update,
const HWND &error_hwnd)
:ErrorHandler(error_hwnd)
,ids_ (ids)
,wnd_ (wnd)
,project_manager_(project_manager)
,update_ (update)
{}
void UpdatePanelTask::operator() (TaskData &data)
{
if (wnd_.IsVisible())
UpdatePanel(ids_, wnd_, data);
else
Enqueue();
}
void UpdatePanelTask::Enqueue()
{
OnPanelVisible &on_panel_visible(GetOnPanelVisible());
delegate_t delegate(&on_panel_visible, &OnPanelVisible::operator());
connection_t connection(wnd_.on_show_ += delegate);
on_panel_visible.Set(
ids_,
&project_manager_,
update_,
connection);
}
//-----------------------------------------------
// UpdatePanelTask::OnPanelVisible implementation
//-----------------------------------------------
UpdatePanelTask::OnPanelVisible::OnPanelVisible()
:project_manager_(NULL)
{}
void UpdatePanelTask::OnPanelVisible::Set(
IdsType ids,
ProjectManager *project_manager,
update_t update,
connection_t connection)
{
ids_ |= ids;
project_manager_ = project_manager;
update_ = update;
connection_ = connection;
}
void UpdatePanelTask::OnPanelVisible::operator() ()
{
(project_manager_->*update_)(ids_);
ids_.reset();
connection_.disconnect();
}
//---------------------------------
// UpdateInfoWndTask implementation
//---------------------------------
UpdateInfoWndTask::OnPanelVisible UpdateInfoWndTask::on_panel_visible_;
UpdateInfoWndTask::UpdateInfoWndTask(
IdsType ids,
InfoWnd &info_wnd,
ProjectManager &project_manager,
const HWND &error_hwnd)
:UpdatePanelTask(ids, info_wnd, project_manager, &ProjectManager::UpdateInfoWnd, error_hwnd)
{}
void UpdateInfoWndTask::UpdatePanel(
IdsType ids,
PanelWindow &wnd,
TaskData &data)
{}
UpdateInfoWndTask::OnPanelVisible& UpdateInfoWndTask::GetOnPanelVisible()
{
return on_panel_visible_;
}
//------------------------------------
// UpdatePreviewWndTask implementation
//------------------------------------
UpdatePreviewWndTask::OnPanelVisible UpdatePreviewWndTask::on_panel_visible_;
UpdatePreviewWndTask::UpdatePreviewWndTask(
IdsType ids,
PreviewWnd &preview_wnd,
ProjectManager &project_manager,
const HWND &error_hwnd)
:UpdatePanelTask(ids, preview_wnd, project_manager, &ProjectManager::UpdatePreviewWnd, error_hwnd)
{}
void UpdatePreviewWndTask::UpdatePanel(
IdsType ids,
PanelWindow &wnd,
TaskData &data)
{
using namespace Loki;
PreviewWnd &preview_wnd(ri_cast<PreviewWnd&>(wnd));
// create the lightmap, if necessary
Lightmap lightmap(error_hwnd_);
if (data.enable_lighting_)
{
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
lightmap.Create(heightmap);
}
// update the heightmap
if (ids[RS_HEIGHTMAP])
{
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
vector<SimpleVertex> vertices;
Triangulate(heightmap, vertices, data.mesh_threshold_);
SendSetTerrain(preview_wnd.hwnd_, vertices);
}
// update the texture
if (data.display_texture_)
{
if (ids[RS_TEXTURE])
{
TextureAllocation *allocation(SendTextureAllocate(preview_wnd.hwnd_));
if (NULL != allocation)
{
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
CreateTextures(texture, *allocation, lightmap, data.enable_lighting_);
SendTextureCommit(preview_wnd.hwnd_);
delete allocation;
}
}
}
else if (data.display_hardness_)
{
if (ids[RS_HARDNESS])
{
TextureAllocation *allocation(SendTextureAllocate(preview_wnd.hwnd_));
if (NULL != allocation)
{
Hardness &hardness(data.hardness_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.hardness_, &TaskResource<Hardness>::CheckIn);
CreateTextures(hardness, *allocation, lightmap, data.enable_lighting_);
SendTextureCommit(preview_wnd.hwnd_);
delete allocation;
}
}
}
else if (data.display_zero_layer_)
{
if (ids[RS_ZERO_LAYER])
{
TextureAllocation *allocation(SendTextureAllocate(preview_wnd.hwnd_));
if (NULL != allocation)
{
ZeroLayer &zero_layer(data.zero_layer_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.zero_layer_, &TaskResource<ZeroLayer>::CheckIn);
CreateTextures(zero_layer, *allocation, lightmap, data.enable_lighting_);
SendTextureCommit(preview_wnd.hwnd_);
delete allocation;
}
}
}
}
UpdatePreviewWndTask::OnPanelVisible& UpdatePreviewWndTask::GetOnPanelVisible()
{
return on_panel_visible_;
}
//---------------------------------
// UpdateStatWndTask implementation
//---------------------------------
UpdateStatWndTask::OnPanelVisible UpdateStatWndTask::on_panel_visible_;
UpdateStatWndTask::UpdateStatWndTask(
IdsType ids,
StatWnd &stat_wnd,
ProjectManager &project_manager,
const HWND &error_hwnd)
:UpdatePanelTask(ids, stat_wnd, project_manager, &ProjectManager::UpdateStatWnd, error_hwnd)
{}
void UpdateStatWndTask::UpdatePanel(
IdsType ids,
PanelWindow &wnd,
TaskData &data)
{
using namespace Loki;
StatWnd &stat_wnd(ri_cast<StatWnd&>(wnd));
if (ids[RS_HEIGHTMAP])
{
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
stat_wnd.SetAverageHeight(AverageHeight(heightmap));
}
if (ids[RS_TEXTURE])
{
Heightmap &heightmap (data.heightmap_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.heightmap_, &TaskResource<Heightmap>::CheckIn);
Texture &texture(data.texture_.CheckOut());
LOKI_ON_BLOCK_EXIT_OBJ(data.texture_, &TaskResource<Texture>::CheckIn);
stat_wnd.SetAverageColour(AverageColour(texture, heightmap));
}
}
UpdateStatWndTask::OnPanelVisible& UpdateStatWndTask::GetOnPanelVisible()
{
return on_panel_visible_;
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.