blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 2
247
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
57
| license_type
stringclasses 2
values | repo_name
stringlengths 4
111
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
58
| visit_date
timestamp[ns]date 2015-07-25 18:16:41
2023-09-06 10:45:08
| revision_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| committer_date
timestamp[ns]date 1970-01-14 14:03:36
2023-09-06 06:22:19
| github_id
int64 3.89k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 25
values | gha_event_created_at
timestamp[ns]date 2012-06-07 00:51:45
2023-09-14 21:58:52
⌀ | gha_created_at
timestamp[ns]date 2008-03-27 23:40:48
2023-08-24 19:49:39
⌀ | gha_language
stringclasses 159
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 7
10.5M
| extension
stringclasses 111
values | filename
stringlengths 1
195
| text
stringlengths 7
10.5M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
4f18213398d9c5aff3ad909c2445aeb79c71cc25
|
65ac6e2f4d52c44a6bf704df399c3f8468d75830
|
/LabelStyleSql/labelstylesql.cpp
|
ef1db68bab1c08765d31259a94c576df4c5bdf20
|
[] |
no_license
|
xcyi2017/qt5
|
1d2980c8db1bf2c75ecdbc2799e92bf45b985ecb
|
bbc474e495a0ee14437384adf717aca4dbdc19a0
|
refs/heads/master
| 2023-01-19T19:42:34.489325
| 2020-11-29T02:28:28
| 2020-11-29T02:28:28
| 269,871,390
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,766
|
cpp
|
labelstylesql.cpp
|
#include "labelstylesql.h"
#include "ui_labelstylesql.h"
#include <QSqlQuery>
#include <QSqlError>
#include <QDebug>
#include <QSqlRecord>
LabelStyleSql::LabelStyleSql(QWidget *parent)
: QWidget(parent)
, ui(new Ui::LabelStyleSql)
{
ui->setupUi(this);
}
LabelStyleSql::~LabelStyleSql()
{
delete ui;
}
void LabelStyleSql::on_insertBt_clicked()
{
QString sql = QString("insert into label(border_size, border_color, border_radius, background_color, color)"
" values(%1, '%2', %3, '%4', '%5')").arg(ui->bsizeEdit->text())
.arg(ui->bcolorEdit->text()).arg(ui->bradiusEdit->text())
.arg(ui->backcolorEdit->text()).arg(ui->colorEdit->text());
QSqlQuery query;
if(!query.exec(sql))
{
qDebug() << query.lastError().text();
}
}
void LabelStyleSql::on_queryBt_clicked()
{
QString id = ui->idEdit->text();
QString sql = QString("select * from label where id = %1").arg(id);
QSqlQuery query;
if(!query.exec(sql))
{
qDebug() << query.lastError().text();
}
if (query.next())
{
QSqlRecord record = query.record();
ui->bsizeEdit->setText(record.value("border_size").toString());
ui->bcolorEdit->setText(record.value("border_color").toString());
ui->bradiusEdit->setText(record.value("border_radius").toString());
ui->backcolorEdit->setText(record.value("background_color").toString());
ui->colorEdit->setText(record.value("color").toString());
}
}
void LabelStyleSql::on_deleteBt_clicked()
{
QString id = ui->idEdit->text();
QString sql = QString("delete from label where id = %1").arg(id);
QSqlQuery query;
if(!query.exec(sql))
{
qDebug() << query.lastError().text();
}
}
void LabelStyleSql::on_renewBt_clicked()
{
QString id = ui->idEdit->text();
update_field("border_size", ui->bsizeEdit->text(), id.toInt());
}
// 更新数据函数
void LabelStyleSql::update_field(QString key, QString value, int id)
{
QString sql = QString("update label set %1 = %2 where id = %3").arg(key).arg(value).arg(id);
QSqlQuery query;
if(!query.exec(sql))
{
qDebug() << query.lastError().text();
}
}
void LabelStyleSql::on_testBt_clicked()
{
QString bsize = ui->bsizeEdit->text();
QString bcolor = ui->bcolorEdit->text();
QString bradius = ui->bradiusEdit->text();
QString backcolor = ui->backcolorEdit->text();
QString color = ui->colorEdit->text();
QString style = QString("border: %1 solid%2; border-radius:%3px; background-color:%4; color:%5;").arg(bsize)
.arg(bcolor).arg(bradius).arg(backcolor).arg(color);
ui->testLabel->setStyleSheet(style);
}
|
c4bf8d82b8bbaef16f5df4a3971a2c756a67fea9
|
6eb325ddd37870b4b7c283acbdd94fbb84df822d
|
/class/uva_10363.cpp
|
125dcbc21fe94d5f812bae2252aef93568f5047c
|
[] |
no_license
|
omerb01/CompetitiveProgramming
|
f1ea36d5e4644113bc3ed4ff57a1125d3d4c89f5
|
12ee726d5ca1651352aa026e0dc93c4c98e18a65
|
refs/heads/master
| 2020-05-02T08:34:07.823836
| 2019-07-06T07:53:24
| 2019-07-06T07:53:24
| 177,846,215
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,170
|
cpp
|
uva_10363.cpp
|
#include <algorithm>
#include <bitset>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <deque>
#include <functional>
#include <iostream>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>
#include <numeric>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> vi;
typedef pair<int, int> pii;
int main() {
int n;
cin >> n;
while (n--) {
int nx = 0;
int no = 0;
string line;
char board[3][3];
for (int i = 0; i < 3; i++) {
cin >> line;
for (int j = 0; j < 3; j++) {
board[i][j] = line[j];
if (line[j] == 'X') nx++;
else if (line[j] == 'O') no++;
}
}
int x_win_counter = 0;
int o_win_counter = 0;
//check rows:
for (int i = 0; i < 3; i++) {
if (board[i][0] == board[i][1] && board[i][1] == board[i][2]) {
if (board[i][0] == 'X') x_win_counter++;
else if (board[i][0] == 'O') o_win_counter++;
}
}
//check columns:
for (int i = 0; i < 3; i++) {
if (board[0][i] == board[1][i] && board[1][i] == board[2][i]) {
if (board[0][i] == 'X') x_win_counter++;
else if (board[0][i] == 'O') o_win_counter++;
}
}
//check diags:
if (board[0][0] == board[1][1] && board[1][1] == board[2][2]) {
if (board[0][0] == 'X') x_win_counter++;
else if (board[0][0] == 'O') o_win_counter++;
}
if (board[0][2] == board[1][1] && board[1][1] == board[2][0]) {
if (board[0][2] == 'X') x_win_counter++;
else if (board[0][2] == 'O') o_win_counter++;
}
bool isvalid = true;
if (!(nx == no || nx == no + 1)) isvalid = false;
if (nx == no && x_win_counter > 0) isvalid = false;
if (nx == no + 1 && o_win_counter > 0) isvalid = false;
if (isvalid) cout << "yes" << endl;
else cout << "no" << endl;
}
return 0;
}
|
b4977c0a88823de81c48f46a8802fd0966c9dc7c
|
7f77dd43595e3ff67d3f0d8c3cdba6fee0d5e5a7
|
/House Robber/rober.cpp
|
4cda167eb4257bd4b589e60add8ba0a0d7fbfa19
|
[] |
no_license
|
Algotice/LeetCode
|
e7e7d7d1607151ddc85cec3233ce787d8117bc1d
|
e83972450b59b131a73f7e8a8e80128ead200050
|
refs/heads/master
| 2020-04-01T05:46:38.894321
| 2015-06-12T13:19:34
| 2015-06-12T13:19:34
| 36,042,704
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,013
|
cpp
|
rober.cpp
|
#include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int rob(vector<int>& nums) {
int n = nums.size();
if (n == 0){
return 0;
}
if (n == 1){
return nums[0];
}
if (n == 2){
return nums[0] > nums[1] ? nums[0] : nums[1];
}
vector<int> f (n, 0);
f[0] = nums[0];
f[1] = nums[0] > nums[1] ? nums[0] : nums[1];
for (int i = 2; i < n; i++){
f[i] = f[i - 1] > f[i - 2] + nums[i] ? f[i - 1] : f[i - 2] + nums[i];
}
return f[n-1];
}
};
int main() {
Solution s;
//int array[] = { 155, 44, 52, 58, 250, 225, 109, 118, 211, 73, 137, 96, 137, 89, 174, 66, 134, 26, 25, 205, 239, 85, 146, 73 };
int array[] = { 155, 44, 52, 58, 250, 225, 109, 118, 211, 73, 137, 96, 137, 89, 174, 66, 134, 26, 25, 205, 239, 85, 146, 73, 55, 6, 122, 196, 128, 50, 61, 230, 94, 208, 46, 243, 105, 81, 157, 89, 205, 78, 249, 203, 238, 239, 217, 212, 241, 242, 157, 79, 133, 66, 36, 165 };
vector<int> v (array, array + sizeof(array) / sizeof(int));
cout<<s.rob(v);
}
|
b8baeea7a7b6d6e3742e37553cd428cd01353013
|
cdac59811ab655589d80c55067677a89d58bdd0d
|
/Voice Comparison/Core/src/TestExtraction/Pitch Test.cpp
|
880c75a1be7b19ea38880fe2af26a3cef6e3c370
|
[] |
no_license
|
hungcaovu/Speech-Detection-with-an-Isolated-Word-Recognizer-using-HMM-and-GMM
|
722c7a46930dd705857d7f6a33bd2424768cf3e2
|
4afca95a20c8cd74127855f56974ad8331b68b1f
|
refs/heads/master
| 2020-05-30T04:41:52.792792
| 2020-01-16T07:58:03
| 2020-01-16T07:58:03
| 189,541,346
| 4
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,294
|
cpp
|
Pitch Test.cpp
|
#pragma warning(disable : 4996)
#include <Util\LogUtil.h>
#include <Extraction\Pitch.h>
using namespace std;
/*
int redirect_stderr(char *filename)
{
int fid = -1;
PRINT("Redirecting stderr to %s\n", filename);
fflush(stdout);
fid = _sopen(filename, O_RDWR | O_TRUNC | O_CREAT, _SH_DENYNO, _S_IWRITE);
if (fid < 0)
{
perror("redirect_stderr");
PRINT("Can't open file %s\n", filename);
return(_fileno(stderr));
//exit( 1 );
}
// stderr now refers to file "data"
if (-1 == _dup2(fid, 2))
{
perror("Can't _dup2 stdout");
//exit( 1 );
}
return fid;
}
//void main(){
// FILE *stream;
// if ((stream = freopen("log.txt", "w", stdout)) == NULL)
// exit(-1);
//
//
//
//}
double EstimatePeriod(
const double *x, // Sample data.
const int n, // Number of samples. For best results, should be at least 2 x maxP
const int minP, // Minimum period of interest
const int maxP, // Maximum period of interest
double& q); // Quality (1= perfectly periodic)
*/
int main(int argc, char * const argv[])
{
/*
FILE *stream;
if ((stream = freopen("log.txt", "w", stdout)) == NULL)
exit(-1);
const DATA_TYPE pi = 4 * atan(1);
const DATA_TYPE sr = 44100; // Sample rate.
const DATA_TYPE minF = 27.5; // Lowest pitch of interest (27.5 = A0, lowest note on piano.)
const DATA_TYPE maxF = 4186.0; // Highest pitch of interest(4186 = C8, highest note on piano.)
const COUNT_TYPE minP = COUNT_TYPE(sr / maxF - 1); // Minimum period
const COUNT_TYPE maxP = COUNT_TYPE(sr / minF + 1); // Maximum period
// Generate a test signal
const DATA_TYPE A440 = 440.0; // A440
DATA_TYPE f = 200.46742;//A440 * pow(2.0, -9.0 / 12.0); // Middle C (9 semitones below A440)
DATA_TYPE p = sr / f;
DATA_TYPE q;
const COUNT_TYPE n = 2 * maxP;
DATA_TYPE *x = new DATA_TYPE[n];
for (COUNT_TYPE k = 0; k < n; k++)
{
x[k] = 0;
x[k] += 1.0*sin(2 * pi * 1 * k / p); // First harmonic
x[k] += 0.6*sin(2 * pi * 2 * k / p); // Second harmonic
x[k] += 0.3*sin(2 * pi * 3 * k / p); // Third harmonic
}
// TODO: Add low-pass filter to remove very high frequency
// energy. Harmonics above about 1/4 of Nyquist tend to mess
// things up, as their periods are often nowhere close to
// integer numbers of samples.
// Estimate the period
//double pEst = EstimatePeriod(x, n, minP, maxP, q);
PitchYIN a(sr, 512,0.1f);
DATA_TYPE pEst = a.PitchProcess(&x[0]);
q = a.Probability();
// Compute the fundamental frequency (reciprocal of period)
DATA_TYPE fEst = 0;
if (pEst > 0)
fEst = sr / pEst;
printf("YIN Pitch \n");
printf("Actual freq: %8.3lf\n", f);
printf("Estimated freq: %8.3lf\n", pEst);
printf("Pro freq: %8.3lf\n", q);
PitchAMDF b(sr, n);
q = b.PitchProcess(&x[0]);
printf("AMDF Pitch \n");
printf("Actual freq: %8.3lf\n", f);
printf("Estimated freq: %8.3lf\n", q);
*/
WavFile file("C5.wav"); // Load C5 file.
file.Load();
file.NormalizeWave(0.05) ;
Logger::SetEnabled(DATA);
PitchExtraction pitch(&file, 0.05, 0.03f, 40.0f, 1000.0f, PITCH_YIN);
std::vector<DATA_TYPE> p = pitch.Process(); //Process picth
pitch.GetPitch();
return 0;
}
|
a8aa18bd143c5368be7e6e3f9ce7d668f334cf40
|
de3f41614eb625aed918432e52878b41a5b71ec2
|
/lib/Target/ELMO/InstPrinter/ELMOInstPrinter.cpp
|
1b8484ee508dc5708857bd3242e95862e6fd4905
|
[
"NCSA"
] |
permissive
|
cpu-experiment-2018-2/llvm
|
c9129da35894493286ae85e5e323df009bbc31a0
|
c470f57c64b063650c5a3eccde6405381ec80007
|
refs/heads/master
| 2020-04-09T16:42:13.750335
| 2019-11-01T12:19:45
| 2019-11-01T12:19:45
| 160,460,285
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,677
|
cpp
|
ELMOInstPrinter.cpp
|
#include "ELMO.h"
#include "ELMOInstPrinter.h"
#include "llvm/MC/MCExpr.h"
#include "llvm/MC/MCInst.h"
#include "llvm/MC/MCRegisterInfo.h"
#include "llvm/MC/MCSubtargetInfo.h"
#include "llvm/MC/MCSymbol.h"
#include "llvm/Support/raw_ostream.h"
#define DEBUG_TYPE "asm-printer"
using namespace llvm;
#define GET_INSTRUCTION_NAME
#include "ELMOGenAsmWriter.inc"
void ELMOInstPrinter::printOperand(const MCInst *MI, int opNum,
raw_ostream &OS) {
const MCOperand &Op = MI->getOperand(opNum);
if (Op.isReg()) {
printRegName(OS, Op.getReg());
} else if (Op.isImm()) {
OS << Op.getImm();
} else {
assert(Op.isExpr() && "unknown operand kind in printOperand");
OS << *Op.getExpr();
}
}
void ELMOInstPrinter::printMemOperand(const MCInst *MI, int opNum,
raw_ostream &OS, const char *Modifier) {}
void ELMOInstPrinter::printCCOperand(const MCInst *MI, int opNum,
raw_ostream &OS) {
int cc = (int)MI->getOperand(opNum).getImm();
OS << ELMOCondCodeToString((ELMOCC::CondCodes)cc);
}
bool ELMOInstPrinter::printGetPCX(const MCInst *MI, unsigned OpNo,
raw_ostream &OS) {}
void ELMOInstPrinter::printRegName(llvm::raw_ostream &OS,
unsigned RegNo) const {
OS << "%" << StringRef(getRegisterName(RegNo)).lower();
}
void ELMOInstPrinter::printInst(const llvm::MCInst *MI, llvm::raw_ostream &OS,
llvm::StringRef Annot,
const llvm::MCSubtargetInfo &STI) {
printInstruction(MI, OS);
printAnnotation(OS, Annot);
}
|
42c0a93d08ad7eac842b84f30dc9bd8678b0f3f2
|
b56a077e1acd71f501b800dc18d82587c51cd657
|
/software/libraries/u8g_teensy/u8g_teensy.cpp
|
9fe264798768c80887ce5038991c007bf675ef7f
|
[] |
no_license
|
c1t1zen1/O_C
|
ce3de5d5feb9542ece2a9dbc8b5e49f3f94ef742
|
fa69ef92224159373c9823acc2ee49c0da4493a6
|
refs/heads/master
| 2020-12-25T02:40:05.917765
| 2016-01-05T10:52:59
| 2016-01-05T10:52:59
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,648
|
cpp
|
u8g_teensy.cpp
|
#include <Arduino.h>
#include "u8glib.h"
#include <spi4teensy3.h>
#define _DC 6
#define _RST 7
#define _CS 8
uint8_t u8g_com_hw_spi_fn(u8g_t *u8g, uint8_t msg, uint8_t arg_val, void *arg_ptr)
{
switch(msg)
{
case U8G_COM_MSG_STOP:
//STOP THE DEVICE
break;
case U8G_COM_MSG_INIT:
//INIT HARDWARE INTERFACES, TIMERS, GPIOS...
pinMode(_CS, OUTPUT);
pinMode(_RST, OUTPUT);
pinMode(_DC, OUTPUT);
//For hardware SPI
spi4teensy3::init();
digitalWriteFast(_RST, HIGH);
delay(1);
// bring reset low
digitalWriteFast(_RST, LOW);
// wait 10ms
delay(10);
// bring out of reset
digitalWriteFast(_RST, HIGH);
break;
case U8G_COM_MSG_ADDRESS:
//SWITCH FROM DATA TO COMMAND MODE (arg_val == 0 for command mode)
if (arg_val != 0)
{
digitalWriteFast(_DC, HIGH);
}
else
{
digitalWriteFast(_DC, LOW);
}
break;
case U8G_COM_MSG_CHIP_SELECT:
if(arg_val == 0)
{
digitalWriteFast(_CS, HIGH);
}
else{
digitalWriteFast(_CS, LOW);
}
break;
case U8G_COM_MSG_RESET:
//TOGGLE THE RESET PIN ON THE DISPLAY BY THE VALUE IN arg_val
digitalWriteFast(_RST, arg_val);
break;
case U8G_COM_MSG_WRITE_BYTE:
//WRITE BYTE TO DEVICE
uint8_t data[1];
data[0] = arg_val;
spi4teensy3::send(data, 1);
break;
case U8G_COM_MSG_WRITE_SEQ:
case U8G_COM_MSG_WRITE_SEQ_P:
{
//WRITE A SEQUENCE OF BYTES TO THE DEVICE
register uint8_t *ptr = static_cast<uint8_t *>(arg_ptr);
spi4teensy3::send(ptr, arg_val);
}
break;
}
return 1;
}
|
e5eac310b9ca88b7e0642dcfb213863c0003851f
|
6301e2e3669b5f194253e099527212cfe5e4fc92
|
/leetcode/partition-list/partition-list.cpp
|
2b16c1c72d56d4db11380682b20856d648ce234e
|
[] |
no_license
|
jiongdu/Algorithm
|
253ff365d812aefdd12f25970530775cb3b75e4d
|
14e58057da7439d9818cfb9547d4b5713c1e1e26
|
refs/heads/master
| 2021-06-05T10:18:01.631658
| 2021-05-02T06:58:54
| 2021-05-02T06:58:54
| 62,377,889
| 4
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 983
|
cpp
|
partition-list.cpp
|
/**************************************
* @author dujiong
* @date 2016.10.25
* @version V0.1
**************************************/
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *partition(ListNode *head, int x) {
ListNode *dummy1 = new ListNode(INT_MIN);
ListNode *list1 = dummy1;
ListNode *dummy2 = new ListNode(INT_MAX);
ListNode *list2 = dummy2;
while(head!=NULL){
ListNode* next = head->next;
if(head->val<x){
list1->next = head;
list1 = list1->next;
}else{
list2->next = head;
list2 = list2->next;
}
head = next;
}
list1->next = dummy2->next;
list2->next = NULL;
return dummy1->next;
}
};
|
896cf755d9b11716e3839c4f8494e53db4549125
|
7f62f204ffde7fed9c1cb69e2bd44de9203f14c8
|
/DboClient/Client/Parser/DumpTargetConsole.h
|
290225ababdb6b60de1dd995c126a47b197c9b0e
|
[] |
no_license
|
4l3dx/DBOGLOBAL
|
9853c49f19882d3de10b5ca849ba53b44ab81a0c
|
c5828b24e99c649ae6a2953471ae57a653395ca2
|
refs/heads/master
| 2022-05-28T08:57:10.293378
| 2020-05-01T00:41:08
| 2020-05-01T00:41:08
| 259,094,679
| 3
| 3
| null | 2020-04-29T17:06:22
| 2020-04-26T17:43:08
| null |
ISO-8859-7
|
C++
| false
| false
| 819
|
h
|
DumpTargetConsole.h
|
/*****************************************************************************
*
* File : DumpTargetConsole.h
* Author : HyungSuk, Jang
* Copyright : (ΑΦ)NTL
* Date : 2005. 12. 26
* Abstract : DBO dump target console
*****************************************************************************
* Desc :
*
*****************************************************************************/
#ifndef __DUMPTARGET_CONSOLE_H__
#define __DUMPTARGET_CONSOLE_H__
#include "NtlConsole.h"
#include "NtlDumpTarget.h"
class CDumpTargetConsole : public CNtlDumpTarget
{
private:
CNtlConsole m_ConWnd;
public:
CDumpTargetConsole();
~CDumpTargetConsole();
virtual void Dump(void);
virtual void Active(RwBool bActive);
virtual void Color(RwUInt8 byRed, RwUInt8 byGreen, RwUInt8 byBlue);
};
#endif
|
a3fa710e23b9fe3ef3ba71510c45abb6c9474e4b
|
c32ee8ade268240a8064e9b8efdbebfbaa46ddfa
|
/Libraries/m2sdk/ue/sys/render/device/I_DeviceIndexBuffer.h
|
0e03b8bd54b4e1e1cd8de2a89370cf106f9d78f1
|
[] |
no_license
|
hopk1nz/maf2mp
|
6f65bd4f8114fdeb42f9407a4d158ad97f8d1789
|
814cab57dc713d9ff791dfb2a2abeb6af0e2f5a8
|
refs/heads/master
| 2021-03-12T23:56:24.336057
| 2015-08-22T13:53:10
| 2015-08-22T13:53:10
| 41,209,355
| 19
| 21
| null | 2015-08-31T05:28:13
| 2015-08-22T13:56:04
|
C++
|
UTF-8
|
C++
| false
| false
| 845
|
h
|
I_DeviceIndexBuffer.h
|
// auto-generated file (rttidump-exporter by h0pk1nz)
#pragma once
#include <ue/sys/render/device/I_DeviceResource.h>
namespace ue
{
namespace sys
{
namespace render
{
namespace device
{
/** ue::sys::render::device::I_DeviceIndexBuffer (VTable=0x01E91480) */
class I_DeviceIndexBuffer : public I_DeviceResource
{
public:
virtual void vfn_0001_F842CD6B() = 0;
virtual void vfn_0002_F842CD6B() = 0;
virtual void vfn_0003_F842CD6B() = 0;
virtual void vfn_0004_F842CD6B() = 0;
virtual void vfn_0005_F842CD6B() = 0;
virtual void vfn_0006_F842CD6B() = 0;
virtual void vfn_0007_F842CD6B() = 0;
virtual void vfn_0008_F842CD6B() = 0;
virtual void vfn_0009_F842CD6B() = 0;
virtual void vfn_0010_F842CD6B() = 0;
virtual void vfn_0011_F842CD6B() = 0;
};
} // namespace device
} // namespace render
} // namespace sys
} // namespace ue
|
c62aa651936ae0a88e793508165b05e4e2e3f168
|
e050dd75d29629b319d7865a71b9c8625995c713
|
/BitMRC/include/Storage/QueryResult.h
|
5c9d84d650d97f86ba6a553c760767b6d7137747
|
[
"MIT"
] |
permissive
|
Mees-Groenhuyzen/BitMRC
|
da53d621b44339ee4bc7cee034b8d81042e399dd
|
249c0b015777a6db8daf4e1b854def30121be868
|
refs/heads/master
| 2021-06-20T03:40:19.818112
| 2017-07-26T17:45:58
| 2017-07-26T17:45:58
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,280
|
h
|
QueryResult.h
|
/*
* QueryResult.h
*
* Created on: 18.09.2016
* Author: steady286
*/
#ifndef QUERYRESULT_H_
#define QUERYRESULT_H_
#include <vector>
#include <stdint.h>
#include <Storage/QueryResult.h>
#include <Storage/QueryResultElement.h>
using namespace std;
#ifdef DEBUG_QR
#define QR_DEBUG(a) printf a;
#else
#define QR_DEBUG(a)
#endif
enum { QR_TYPE_NONE = 0, QR_TYPE_UPDATE, QR_TYPE_SELECT, QR_TYPE_INSERT, QR_TYPE_CREATE, QR_TYPE_MAX} enQueryType;
class QueryResult {
public:
QueryResult(uint16_t);
~QueryResult();
public:
uint16_t getType();
bool addElement(QueryResultElement * qre);
uint32_t getNumColumns();
public:
void setError(uint16_t err);
void setErrorString(char *);
void setNativeError(int32_t nerr);
uint16_t getError();
int32_t getNativeError();
public:
bool getFieldUint32(char * name, uint32_t * out);
bool getFieldInt32(char * name, int32_t * out);
bool getFieldInt64(char * name, int64_t * out);
bool getFieldUint64(char * name, uint64_t * out);
bool getFieldString(char * name, char * out, uint32_t len);
char * getErrorString();
private:
int32_t findField(char * name);
private:
uint16_t type;
uint16_t error_value;
int32_t native_error;
char * error_string;
std::vector<QueryResultElement *> qrtv;
};
#endif /* QUERYRESULT_H_ */
|
0227611cd0fd780700b74f521ec3cab8d58f60c1
|
827e5b75679f64929396490e7512152eff0f0851
|
/SimulationCode/src/Main.cpp
|
63a683c99b85276ed365288f4e963bb4bb95cf89
|
[] |
no_license
|
damian1996/N-Body-Simulation
|
f74b9e7b0b0859def86e4e0f9b89ee6e721ca221
|
c7fb439381ccc46d6cf715dcefc2d7df9e998c4c
|
refs/heads/master
| 2020-03-19T08:02:47.853930
| 2018-08-28T23:05:13
| 2018-08-28T23:05:13
| 136,170,841
| 0
| 0
| null | 2018-08-26T10:30:40
| 2018-06-05T12:01:34
|
TeX
|
UTF-8
|
C++
| false
| false
| 1,597
|
cpp
|
Main.cpp
|
#include "Main.h"
using namespace std;
int main() {
int programVersion, numberOfBodies;
printf("Wybierz tryb wykonywania programu\n");
while (1) {
printf("1. Naiwny algorytm CPU\n2. Naiwny algorytm GPU\n3. Algorytm "
"Barnes-Hut CPU\n4. Algorytm Barnes-Hut GPU\n");
int res = scanf("%d", &programVersion);
if (programVersion > 4 || programVersion <= 0) {
printf("Nie ma takiej opcji, sprobuj ponownie\n");
continue;
}
break;
}
printf("Podaj liczbę jednostek do poddania symulacji\n");
int res = scanf("%d", &numberOfBodies);
if(res == EOF) return 1;
RandomGenerators *randomGenerator = new RandomGenerators();
std::vector<float> masses(numberOfBodies);
randomGenerator->initializeWeights(masses, numberOfBodies);
Render *rend = nullptr;
Step *step = nullptr;
Simulation *sim;
switch (programVersion) {
case 1: {
rend = new Render(masses, numberOfBodies, 1.0);
step = new StepNaive(masses, numberOfBodies);
break;
}
case 2: {
rend = new Render(masses, numberOfBodies, 1.0);
step = new StepNaiveCuda(masses, numberOfBodies);
break;
}
case 3: {
rend = new Render(masses, numberOfBodies, 4.0);
step = new BarnesHutStep(masses, numberOfBodies);
break;
}
case 4: {
rend = new Render(masses, numberOfBodies, 4.0);
step = new BarnesHutStepCuda(masses, numberOfBodies);
break;
}
default:
break;
}
sim = new Simulation(rend, step, numberOfBodies);
sim->MakeSimulation();
delete randomGenerator;
return 0;
}
|
ad4d4c6f8519fbfcb16d31a637d10fa4620f7404
|
5999030bc27e8f7437b74d4281386920e9dc9e9b
|
/main.cpp
|
513c733aa9120baa1e0b5dd890a1b28c6669c528
|
[] |
no_license
|
tsingcoo/main_em4_sb
|
867152e73351592413ec5a5cf23e43ac5fc40556
|
a27e319cb7216817ff50618cb9a5b542e6153293
|
refs/heads/master
| 2021-01-20T16:51:11.345818
| 2017-05-08T05:50:02
| 2017-05-08T05:50:02
| 90,852,969
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 16,844
|
cpp
|
main.cpp
|
//
// main.cpp
// model 1
//
// Created by 王青龙 on 15/11/9.
// Copyright © 2015年 王青龙. All rights reserved.
//
//#include<iostream>
#include<string>
#include<fstream>
#include<sstream>
#include<vector>
#include<unordered_map>
using namespace std;
#define PROB_SMOOTH 1e-7
void readfile(string str, vector<vector<int>> &vv, unsigned int &cnt, unsigned int &max_line){
ifstream fin(str);
string line;
string word;
int i = 0;
int j = 0;
unsigned int cnt_line = 0;
max_line = 0;
unordered_map<string, int> word2int;
word2int.insert({ "null_wangql", j });
++j;
++j;//让j从2开始
while (getline(fin, line)){
istringstream linestream(line);
vv.push_back(vector<int>());
// bool first_word = true;//
cnt_line = 0;
vv[i].push_back(word2int["null_wangql"]);
++cnt_line;
while (linestream >> word){
++cnt_line;
auto ret = word2int.insert({ word, j });
// if(first_word){//
// first_word = false;//
// }else{//
// cout<<" ";//
// }//
// cout<<word2int[word];//
if (ret.second){
++j;
}
vv[i].push_back(word2int[word]);
}
// cout<<endl;
if (cnt_line>max_line){
max_line = cnt_line;
}
++i;
}
cnt = j - 1;//cnt数量包含空值
fin.close();
}
void readfile_en(string str, vector<vector<int>> &vv, unsigned int &cnt, unsigned int &max_line){
ifstream fin(str);
string line;
string word;
int i = 0;
int j = 2;//让j从2开始
unsigned int cnt_line = 0;
max_line = 0;
unordered_map<string, int> word2int;
while (getline(fin, line)){
istringstream linestream(line);
vv.push_back(vector<int>());
// bool first_word = true;//
cnt_line = 0;
while (linestream >> word){
++cnt_line;
auto ret = word2int.insert({ word, j });
// if(first_word){//
// first_word = false;//
// }else{//
// cout<<" ";//
// }//
// cout<<word2int[word];//
if (ret.second){
++j;
}
vv[i].push_back(word2int[word]);
}
// cout<<endl;
if (cnt_line>max_line){
max_line = cnt_line;
}
++i;
}
cnt = j - 2;//cnt的值
fin.close();
}
void init_t(vector<vector<int>> &ch, vector<vector<int>> &en, unordered_map<int, unordered_map<int, double>> &t, unsigned int cnt){
for (unsigned int i = 0; i != ch.size(); ++i){
for (auto &c : ch[i]){
if (t.find(c) == t.end()){
t[c] = unordered_map<int, double>();
}
for (auto &e : en[i]){
t[c][e] = 1.0 / cnt;
}
}
}
}
void init_t2(vector<vector<int>>& ch, vector<vector<int>>& en, unordered_map<int, unordered_map<int, double>>& t, unsigned int cnt){
for(auto i = 0; i != ch.size(); ++i){
for(auto & c : ch[i]){
if(t.find(c) == t.end()){
t.insert({c, unordered_map<int, double>()});
}
for(auto & e : en[i]){
if(t[c].find(e) == t[c].end()){
t[c].insert({e, 1.0/cnt});
}
}
}
}
}
void unordered_map_t_count2map_t(unordered_map<int, unordered_map<int, double>>& unordered_map_t, unordered_map<int, unordered_map<int, double>>& unordered_map_t_count){
for (auto it_c = unordered_map_t.begin(); it_c != unordered_map_t.end(); ++it_c) {
for (auto it_e = (it_c->second).begin(); it_e != (it_c->second).end(); ++it_e) {
it_e->second = unordered_map_t_count[it_c->first][it_e->first];
unordered_map_t_count[it_c->first][it_e->first] = 0.0;
}
}
}
void init_cnt(unordered_map<int, unordered_map<int, double>> &cnt){
for (auto it_c = cnt.begin(); it_c != cnt.end(); ++it_c){
for (auto it_e = (it_c->second).begin(); it_e != (it_c->second).end(); ++it_e){
it_e->second = 0;
}
}
}
void init_total(double tot[], unsigned int cnt_ch){
tot = new double[cnt_ch];
for (unsigned int i = 0; i != cnt_ch ; ++i){
tot[i] = 0;
}
}
void normalizeTable(unordered_map<int, unordered_map<int, double>>& unordered_map_t_count, vector<int>& nCh, vector<int>& nEn, const int cnt_ch, const int cnt_en, int it=2){
int tr_cnt_ch = cnt_ch+1;//加个1号占坑
int tr_cnt_en = cnt_en+2;//加个0号和1号占坑
nCh.resize(tr_cnt_ch);
for (int i=0; i!=tr_cnt_ch; ++i) {
nCh[i]=0;
}
nEn.resize(tr_cnt_en);
for (int i=0; i!=tr_cnt_en; ++i) {
nEn[i]=0;
}
vector<double> total(tr_cnt_ch, 0.0);
for (auto iter1=unordered_map_t_count.begin(); iter1!=unordered_map_t_count.end(); ++iter1) {
for (auto iter2=(iter1->second).begin(); iter2!=(iter1->second).end(); ++iter2) {
total[iter1->first]+=iter2->second;
++nCh[iter1->first];//每个ch对过几个en
++nEn[iter2->first];//每个en对过几个ch
}
}
for (int k=0; k!=tr_cnt_ch; ++k) {
if (nCh[k]) {
double probMass = (cnt_en-nCh[k])*PROB_SMOOTH;
total[k] += total[k]*probMass/(1-probMass);
}
}
double p;
for (auto iter1=unordered_map_t_count.begin(); iter1!=unordered_map_t_count.end(); ++iter1) {
for (auto iter2=(iter1->second).begin(); iter2!=(iter1->second).end(); ++iter2) {
if (total[iter1->first]>0.0) {
p=1.0*iter2->second/total[iter1->first];
}else{
p=0.0;
}
if (p>PROB_SMOOTH) {
iter2->second=p;
}else{
iter2->second=0.0;
}
}
}
if (it>0) {
normalizeTable(unordered_map_t_count, nCh, nEn, cnt_ch, cnt_en, it-1);
}
}
void em3(vector<vector<int>>& ch, vector<vector<int>>& en, unordered_map<int, unordered_map<int, double>>& unordered_map_t_count, unordered_map<int, unordered_map<int, double>>& unordered_map_t, unsigned int cnt_en, int it){
double uniform = double(1.0)/cnt_en;
for(int line = 0; line != ch.size(); ++line){
int l = (int)ch[line].size();
int m = (int)en[line].size();
for(int j = 0; j != m; ++j){
double denom = 0.0;
vector<double*> sPtrCache(ch.size(), 0);
double** sPterCachePtr;
int i = 0;
if(it == 1){
denom = uniform * ch[line].size();
}else{
for(i = 0,sPterCachePtr = &sPtrCache[0]; i<l;++i, ++sPterCachePtr){
*sPterCachePtr = &unordered_map_t[ch[line][i]][en[line][j]];
if(*(*(sPterCachePtr))>PROB_SMOOTH){
denom += *(*sPterCachePtr);
}else{
denom += PROB_SMOOTH;
}
}
}
if(denom > 0){
double val = double(1)/denom;
for(i = 0, sPterCachePtr = &sPtrCache[0]; i<l;++i, ++sPterCachePtr){
double ee = 0.0;
if(it == 1){
ee = uniform;
}else{
if(*(*sPterCachePtr) > PROB_SMOOTH){
ee = *(*sPterCachePtr);
}else{
ee = PROB_SMOOTH;
}
}
double x = ee * val;
unordered_map_t_count[ch[line][i]][en[line][j]] += x;
}
}else{
// cout<<"denom不为正"<<endl;
}
}
}
}
void em4(vector<vector<int>>& ch, vector<vector<int>>& en, unordered_map<int, unordered_map<int, double>>& unordered_map_t_count, unordered_map<int, unordered_map<int, double>>& unordered_map_t, unsigned int cnt_en, int it){
double uniform = double(1)/cnt_en;
for(int line = 0; line != ch.size(); ++line){
int l = (int)ch[line].size();
for(auto & e : en[line]){
double denom = 0.0;
vector<double*> sPtrCache(l, 0);
double** sPtrCachePtr;
if(it == 1){
denom = uniform * l;
}else{
sPtrCachePtr = &sPtrCache[0];
for(auto & c : ch[line]){
*sPtrCachePtr = &unordered_map_t[c][e];
if(*(*sPtrCachePtr) > PROB_SMOOTH){
denom += *(*sPtrCachePtr);
}else{
denom += PROB_SMOOTH;
}
++sPtrCachePtr;
}
}
if(denom > 0){
double val = double(1)/denom;
sPtrCachePtr = &sPtrCache[0];
for(auto & c : ch[line]){
double ee = 0.0;
if(it == 1){
ee = uniform;
}else{
if(*(*sPtrCachePtr) > PROB_SMOOTH){
ee = *(*sPtrCachePtr);
}else{
ee = PROB_SMOOTH;
}
++sPtrCachePtr;
}
double x = ee*val;
unordered_map_t_count[c][e] += x;
}
}else{
//不会发生
}
}
}
}
void em2(vector<vector<int>>& ch, vector<vector<int>>& en, unordered_map<int, unordered_map<int, double>>& unordered_map_t_count, unordered_map<int, unordered_map<int, double>>& unordered_map_t, unsigned int cnt_ch, int it){
double uniform = double(1.0)/cnt_ch;//这里除的数或者可以换成cnt_en
for (int i =0; i!=ch.size(); ++i) {//这个不是对ch的访问,而是遍历句子
int l = (int)ch[i].size();
int m = (int)en[i].size();
for (auto &e : en[i]){
double denom = 0.0;
vector<double*> sPtrCache(l, 0);//减少访问概率表次数
double** sPtrCachePtr;
int index = 0;
if (it == 1) {
// denom = uniform * en[i].size();
denom = uniform * l;
}else{
for ( index=0, sPtrCachePtr = &sPtrCache[0]; index!=l; ++index, ++sPtrCachePtr) {
*sPtrCachePtr = &unordered_map_t[ch[i][index]][e];
if (*(*sPtrCachePtr) > PROB_SMOOTH) {
denom += *(*sPtrCachePtr);
}
else{
denom += PROB_SMOOTH;
}
}
}
if (denom > 0) {
double val = double(1)/denom;
for (index = 0, sPtrCachePtr = &sPtrCache[0]; index != l; ++index, ++sPtrCachePtr) {
double ee = 0.0;
if (it == 1) {
ee = uniform;
}else{
if (*(*sPtrCachePtr) > PROB_SMOOTH) {
ee = *(*sPtrCachePtr);
}else{
ee = PROB_SMOOTH;
}
}
double x = ee * val;
unordered_map_t_count[ch[i][index]][e] += x;
}
}else{
// cout<<"denom不为正!"<<endl;
}
}
}
}
void em(vector<vector<int>> &ch, vector<vector<int>> &en, unordered_map<int, unordered_map<int, double>> &t, unordered_map<int, unordered_map<int, double>> &cnt, unsigned int cnt_ch, int cnt_en){
init_cnt(cnt);
// init_total(total, cnt_ch);
// init_total(stotal, cnt_en);
vector<double> total(cnt_ch+10, 0.0);//个数不能体现最大序号,因为还有空
vector<double> stotal(cnt_en+10, 0.0);
for (int i = 0; i != ch.size(); ++i){
for (auto e : en[i]){
stotal[e] = 0.0;
for (auto &c : ch[i]){
if (t[c][e]<0.0000001) {//试试
t[c][e]=0.0000001;
}
stotal[e] += t[c][e];
}
}
for (auto &e : en[i]){
for (auto &c : ch[i]){
if (t[c][e] / stotal[e]>0.0000001) {
cnt[c][e] += t[c][e] / stotal[e];
total[c] += t[c][e] / stotal[e];
}
}
}
}
for (auto it_c = t.begin(); it_c != t.end(); ++it_c){//归一化
for (auto it_e = (it_c->second).begin(); it_e != (it_c->second).end(); ++it_e){
it_e->second = cnt[it_c->first][it_e->first] / total[it_c->first];
}
}
}
void print_t(string str,unordered_map<int, unordered_map<int, double>> &t){
ofstream fout(str);
for (auto it_c = t.begin(); it_c != t.end(); ++it_c){
for (auto it_e = (it_c->second).begin(); it_e != (it_c->second).end(); ++it_e){
fout << it_c->first << " " << it_e->first << " " << it_e->second << endl;
}
}
}
void print_align2(string str,vector<vector<int>> &ch,vector<vector<int>> &en,unordered_map<int,unordered_map<int,double>> &t){
ofstream fout(str);
double tmp_max=0.0;
int tmp_k=0;
bool firstword=true;
for (auto i=0; i<ch.size(); ++i) {
firstword=true;
vector<int> viterbi_alignment(en[i].size());//存储每个目标语言所对应的源语言号码
for (auto j=0; j<en[i].size(); ++j) {
tmp_max=0.0;
tmp_k=0;
for (auto k=0; k<ch[i].size(); ++k) {//k=0代表对空
if (tmp_max<t[ch[i][k]][en[i][j]]) {
tmp_max=t[ch[i][k]][en[i][j]];
tmp_k=k;
}
}
viterbi_alignment[j]=tmp_k;//也就是说,在这里已经得到了每个目标语言应该对哪个源语言
}
for (auto j=0; j!=en[i].size(); ++j) {
if (viterbi_alignment[j]) {//跳过k=0的对空
if (firstword) {
firstword=false;
}else{
fout<<" ";
}
fout<<viterbi_alignment[j]-1<<"-"<<j;//因为源语言开头有个空,所以这里需要-1
}
}
fout<<endl;
//下面这一块用来生成文件Align1格式
// vector<vector<int>> translations(ch[i].size());
// for (auto j=0; j<en[i].size(); ++j) {
// translations[viterbi_alignment[j]].push_back(j);
// }
// for (auto ii=0; ii<ch[i].size(); ++ii) {
// cout<<ii<<" ({ ";
// for (auto jj=0; jj<translations[ii].size(); ++jj) {
// cout<<translations[ii][jj]<<" ";
// }
// cout<<"}) ";
// }
// cout<<endl;
}
fout.close();
}
void init_total(vector<vector<int>> &ch,unordered_map<int,double> &total){
for(int i=0;i!=ch.size();++i){
for(auto &c : ch[i]){
total[c]=0.0;
}
}
}
int main(){
time_t start, stop;
vector<vector<int>> vv_ch;
unsigned int cnt_ch;
unsigned int max_line_ch;
readfile("/Users/wangqinglong/Library/Mobile Documents/com~apple~CloudDocs/WordAlign/data/corpus.h16.ch", vv_ch, cnt_ch, max_line_ch);
vector<vector<int>> vv_en;
unsigned int cnt_en;
unsigned int max_line_en;
readfile_en("/Users/wangqinglong/Library/Mobile Documents/com~apple~CloudDocs/WordAlign/data/corpus.h16.en", vv_en, cnt_en, max_line_en);
unordered_map<int, unordered_map<int, double>> unordered_map_t, unordered_map_t_count;
init_t2(vv_ch, vv_en, unordered_map_t, cnt_en);
init_t2(vv_ch, vv_en, unordered_map_t_count, cnt_en);
init_cnt(unordered_map_t_count);
vector<int> nCh;
vector<int> nEn;
start = time(NULL);
for (int it=1; it!=6; ++it) {
string name = "/Users/wangqinglong/Windows/26/model1."+to_string(it-1)+".t";
print_t(name, unordered_map_t);
em4(vv_ch, vv_en, unordered_map_t_count, unordered_map_t, cnt_en, it);
normalizeTable(unordered_map_t_count, nCh, nEn, cnt_ch, cnt_en);
unordered_map_t_count2map_t(unordered_map_t, unordered_map_t_count);
if (it == 4) {
print_align2("/Users/wangqinglong/Windows/26/model1.4.em4.align", vv_ch, vv_en, unordered_map_t);
}
}
print_align2("/Users/wangqinglong/Windows/26/model1.5.em4.align", vv_ch, vv_en, unordered_map_t);
stop=time(NULL);
printf("model1_em4 use time:%ld\n",(stop-start));
print_t("/Users/wangqinglong/Windows/26/model1.5.t", unordered_map_t);
}
|
8f1be1be5f60d7c7cc2b8a433d48a17fa9d5fc84
|
58a0ba5ee99ec7a0bba36748ba96a557eb798023
|
/Olympiad Solutions/URI/2469.cpp
|
afacb244613b387345a77af56be6cf4ca4c6576d
|
[
"MIT"
] |
permissive
|
adityanjr/code-DS-ALGO
|
5bdd503fb5f70d459c8e9b8e58690f9da159dd53
|
1c104c33d2f56fe671d586b702528a559925f875
|
refs/heads/master
| 2022-10-22T21:22:09.640237
| 2022-10-18T15:38:46
| 2022-10-18T15:38:46
| 217,567,198
| 40
| 54
|
MIT
| 2022-10-18T15:38:47
| 2019-10-25T15:50:28
|
C++
|
UTF-8
|
C++
| false
| false
| 632
|
cpp
|
2469.cpp
|
// Ivan Carvalho
// Solution to https://www.urionlinejudge.com.br/judge/problems/view/2469
#include <cstdio>
#include <map>
using namespace std;
int main(){
int n,i,resposta,vezes=0,davez;
map<int, int> mapa;
map<int, int>::iterator it;
scanf("%d",&n);
for(i=0;i<n;i++){
scanf("%d",&davez);
if (mapa.find(davez)!=mapa.end()) mapa[davez] += 1;
else mapa[davez] = 1;
}
for(it=mapa.begin();it!=mapa.end();it++){
if ((*it).second > vezes) {
resposta = (*it).first;
vezes = (*it).second;
}
else if ((*it).second==vezes && (*it).first>resposta) resposta = (*it).first;
}
printf("%d\n",resposta);
return 0;
}
|
21675cab88ab8ad0ee36c1c1bdc4bd866721e612
|
b2f72981730d8573f1a1f1fe6ba03a095d64c2d5
|
/ordonnanceur/Conteneur.cpp
|
6432ebd5989be7abd8560fa0d339077589fe7e5a
|
[] |
no_license
|
Ghuillaume/STRE
|
bef6b5c6e95a5b018f5f76b6086b564c687d5ee7
|
2b038af069a3fcda4d42ab9f6d4ab3e1fb86956c
|
refs/heads/master
| 2016-09-06T12:52:21.364510
| 2012-11-14T14:47:33
| 2012-11-14T14:47:33
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,561
|
cpp
|
Conteneur.cpp
|
#include "Conteneur.hpp"
Conteneur::Conteneur() {
listeTP_ = new ListeTachesPeriodiques();
listeTA_ = new ListeTachesAperiodiques();
}
Conteneur::~Conteneur() {
listeTP_->erase(listeTP_->begin(),listeTP_->end());
delete listeTP_;
listeTA_->erase(listeTA_->begin(),listeTA_->end());
delete listeTA_;
}
void Conteneur::addTacheP(int num, int Ci, int Pi, int Di) {
listeTP_->push_back(new TachePeriodique(num,Ci,Pi,Di));
}
void Conteneur::addTacheA(int num, int ri, int Ci) {
listeTA_->push_back(new TacheAperiodique(num,ri,Ci));
}
ListeTachesPeriodiques* Conteneur::getVectorPeriodique() {
return listeTP_;
}
ListeTachesAperiodiques* Conteneur::getVectorAperiodique() {
return listeTA_;
}
void Conteneur::toString() {
std::cout << "Hyperperiode = " << this->getHyperPeriode() << endl;
for(int i = 0 ; i < listeTP_->size() ; i++)
std::cout << "T" << listeTP_->at(i)->getNum() << ": " << listeTP_->at(i)->getCi() << "," << listeTP_->at(i)->getPi() << "," << listeTP_->at(i)->getDi() << endl;
for(int i = 0 ; i < listeTA_->size() ; i++)
std::cout << "R" << listeTA_->at(i)->getNum() << ": " << listeTA_->at(i)->getri() << "," << listeTA_->at(i)->getCi() << endl;
}
int Conteneur::getHyperPeriode() {
int hyperPeriode = listeTP_->at(0)->getPi();
for (int i = 0 ; i < listeTP_->size() - 1 ; i++) {
hyperPeriode = ppcmPerso(hyperPeriode,listeTP_->at(i+1)->getPi());
}
return hyperPeriode;
}
int Conteneur::ppcmPerso(int x,int y)
{
int A=x;
int B=y;
while (A!=B)
{
while (A>B) B=B+y;
while (A<B) A=A+x;
}
return A;
}
|
aa8f05c35b11e7ac45ee98099750d570877895f8
|
9d1e141d4a2f1571e4b464cdfe4f01a838145999
|
/sketchbook/tabor/weather_meter/weather_meter.ino
|
8ef3a59d0142733953790cc458c6ba7c77d9712d
|
[] |
no_license
|
fonorobert/electronics
|
98dfe23373e9b22abf157f12896d36309945451e
|
b1e1d805e8fde8c1dbf42a8856d7b35c40e1232c
|
refs/heads/master
| 2020-12-25T21:12:51.783725
| 2015-11-23T11:52:32
| 2015-11-23T11:52:32
| 37,719,852
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,159
|
ino
|
weather_meter.ino
|
#include "VirtualWire.h"
#include "temp.h"
#include "hum.h"
#include "wind.h"
#define aref_voltage 5
int tempPin = A0;
int humPin = A1;
int windPin = A2;
static uint8_t vw_tx_pin = 2;
void setup(void) {
Serial.begin(9600);
vw_set_tx_pin(vw_tx_pin);
vw_setup(1000);
}
void loop(void) {
int temp = tempMeter(tempPin, aref_voltage);
delay(2);
int hum = humMeter(humPin, aref_voltage);
delay(2);
/*int wind = windMeter(windPin, aref_voltage);*/
// temp = temp + 100;
// hum = hum + 200;
String tempStr;
String humStr;
tempStr = String(temp);
humStr = String(hum);
char tempMsg[4];
char humMsg[4];
tempStr.toCharArray(tempMsg, 4);
humStr.toCharArray(humMsg, 4);
vw_send((uint8_t *)tempMsg, sizeof(tempMsg)/sizeof(tempMsg[0]));
vw_wait_tx();
delay(20);
vw_send((uint8_t *)humMsg, sizeof(humMsg)/sizeof(humMsg[0]));
vw_wait_tx();
Serial.print("temp: ");
Serial.print(tempMsg);
Serial.println();
Serial.print("hum: ");
Serial.print(humMsg);
Serial.println();
// Serial.println(tempMsg);
// Serial.println(humMsg);
/*Serial.println(wind);*/
/*delay(1000);*/
/*
Serial.println();*/
}
|
fca61d0bad4ade5a14a3d058beae223d762b7d71
|
d4f9fe46a7e1cd780d1b605397d1cc732e9bef62
|
/NQVTK/Rendering/SelectionView.cpp
|
10104b1ee7e82ce86cbe6188b8f9b52d690d6483
|
[
"MIT"
] |
permissive
|
myousefi2016/nqvtk
|
1a988474ee65b311456d12a5b87c125b72ad9024
|
8fd0593ae84d6df8b6adfc2970fa47d6c9e8d89c
|
refs/heads/master
| 2021-05-28T16:15:59.359840
| 2015-03-14T11:21:22
| 2015-03-14T11:21:22
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,033
|
cpp
|
SelectionView.cpp
|
#include "SelectionView.h"
#include "Renderables/Renderable.h"
#include <set>
namespace NQVTK
{
// ------------------------------------------------------------------------
SelectionView::SelectionView(Scene *scene) : View(scene)
{
}
// ------------------------------------------------------------------------
SelectionView::SelectionView(View *sameSceneAs) : View(sameSceneAs)
{
}
// ------------------------------------------------------------------------
void SelectionView::SetVisibility(unsigned int i, bool visible)
{
if (visible)
{
// Add objectId to selection
selection.insert(i);
}
else
{
// Remove objectId from selection
selection.erase(i);
}
}
// ------------------------------------------------------------------------
bool SelectionView::GetVisibility(unsigned int i)
{
// Visible means it exists, is globally visible and is in the selection
return (selection.find(i) != selection.end())
&& Superclass::GetVisibility(i);
}
}
|
aadf5c5430b3fb200d150a8e77ab0234fc4cef74
|
36416df9b523de68694723e133c72b76be197fa4
|
/vector.cpp
|
40e9c5d59be6d562e0e4ae99811e2c859980b2df
|
[] |
no_license
|
QTTTTTTTT/SmallSTL
|
dae953c07413de3c0e762c2396a120785df77770
|
d23f8c0dbb7d8e4fd0836a5bbdf6021370490aec
|
refs/heads/master
| 2021-01-01T07:24:53.235316
| 2017-08-01T06:46:34
| 2017-08-01T06:46:34
| 97,567,363
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 8,332
|
cpp
|
vector.cpp
|
#include "vector.h"
namespace SmallSTL{
template<class T,class Alloc>
vector<T,Alloc>::~vector(){
destroyAndDeallocateAll();
}
template<class T,class Alloc>
vector<T,Alloc>::vector(const size_type n){
allocateAndFillN(n,value_type());
}
template<class T,class Alloc>
template<class InputIterator>
vector<T,Alloc>::vector(InputIterator first,InputIterater last){
//处理指针和数字间的区别函数
vector_aux(first,last,typename std::is_integral<InputIterator>::type());
}
template<class T,class Alloc>
vector<T,Alloc>::vector(const vector& v){
allocateAndCopy(v.start_,v.finish_);
}
template<class T,class Alloc>
vector<T,Alloc>& vector<T,Alloc>::operator=(const vector &v){
if(this!=&v){
allocateAndCopy(v.start_,v.finish_);
}
return *this;
}
template<class T,class Alloc>
void vector<T,Alloc>::resize(size_type n,value_type val=value_type()){
if(n<size()){
dataAllocator::destroy(start+n,finish_);
finish_=start_+n;
}
else if(n>size()&&n<=capacity()){
auto lengthOfInsert=n-size();
finish_=SmallSTL::uninitialized_fill_n(finish_,lengthOfInsert,val);
}
else if(n>capacity()){
auto lengthOfInsert=n-size();
T *newStart=dataAllocator::allocate(getNewCapacity(lengthOfInsert));
T *newFinish=SmallSTL::uninitiallized_copy(begin(),end(),newStart);
newFinish=SmallSTL::uninitialized_fill_n(newFinish,lengthOfInsert,val);
destroyAndDeallocateALL();
start_=newStart;
finish_=newFinish;
endOfStorage_=start_+n;
}
}
template<class T,class Alloc>
void vector<T,Alloc>::reserve(size_type n){
if(n<=capacity())
return;
T *newStart=dataAllocator::allocate(n);
T *newFinish=SmallSTL::uninitialized_copy(begin(),end().newStart);
destroyAndDeallocateAll();
start_=newStart;
finish_=newFinish;
endOfStorage_=start_+n;
}
template<class T,class Alloc>
typename vector<T,Alloc>::iterator vector<T,Alloc>::erase(iterator position){
return erase(position,position+1);
}
template<class T.class Alloc>
typename vector<T,Alloc>::iterator vecot<T,Alloc>::erase(iterator first,iterator last){
//尾部残留对象
difference_type lenOfTail=end()-last;
//删除的对象
differemce_type lenOfRemoved=last-first;
finish_=finish_-lenOfRemoved;
for(;lenOfTail!=0;--lenOfTail){
auto temp=(last-lenOfRemoved);
*temp=*(last++);
}
return first;
}
template<class T,class Alloc>
template<class InputIterator>
void vector<T,Alloc>::reallocateAndCopy(iterator position,InputIterator first,InputIterator last){
difference_type newCapacity=getNewCapacity(last-first);
T *newStart=dataAllocator::allocate(newCapacity);
T *newEndOfStorage=newStart+newCapacity;
T *newFish=SmallSTL::uninitialized_copy(begin(),position,newSTart);
newFinish=SmallSTL::uninitialized_copy(first,last,newFinish);
newFinish=SmallSTL::uninitialized_copy(position,end(),newFinish);
destroyAndDeallocateAll();
start_=newStart;
finish_=newFinish;
endOfStorage_newEndOfStorage;
}
template<class T, class Alloc>
void vector<T, Alloc>::reallocateAndFillN(iterator position, const size_type& n, const value_type& val){
difference_type newCapacity = getNewCapacity(n);
T *newStart = dataAllocator::allocate(newCapacity);
T *newEndOfStorage = newStart + newCapacity;
T *newFinish = SmallSTL::uninitialized_copy(begin(), position, newStart);
newFinish = SmallSTL::uninitialized_fill_n(newFinish, n, val);
newFinish = SmallSTL::uninitialized_copy(position, end(), newFinish);
destroyAndDeallocateAll();
start_ = newStart;
finish_ = newFinish;
endOfStorage_ = newEndOfStorage;
}
template<class T, class Alloc>
template<class InputIterator>
void vector<T, Alloc>::insert_aux(iterator position,InputIterator first,InputIterator last,std::false_type){
difference_type locationLeft = endOfStorage_ - finish_;
difference_type locationNeed = last-first;
if (locationLeft >= locationNeed){
if (finish_ - position > locationNeed){
SmallSTL::uninitialized_copy(finish_ - locationNeed, finish_, finish_);
std::copy_backward(position, finish_ - locationNeed, finish_);
std::copy(first, last, position);
}
else{
iterator temp = SmallSTL::uninitialized_copy(first + (finish_ - position), last, finish_);
SmallSTL::uninitialized_copy(position, finish_, temp);
std::copy(first, first + (finish_ - position), position);
}
finish_ += locationNeed;
}
else{
reallocateAndCopy(position, first, last);
}
}
template<class T, class Alloc>
template<class Integer>
void vector<T, Alloc>::insert_aux(iterator position, Integer n, const value_type& value, std::true_type){
assert(n != 0);
difference_type locationLeft = endOfStorage_ - finish_;
difference_type locationNeed = n;
if (locationLeft >= locationNeed){
auto tempPtr = end() - 1;
for (; tempPtr - position >= 0; --tempPtr){
construct(tempPtr + locationNeed, *tempPtr);
}
SmallSTL::uninitialized_fill_n(position, n, value);
finish_ += locationNeed;
}
else{
reallocateAndFillN(position, n, value);
}
}
template<class T,class Alloc>
template<class InputIterator>
void vector<T,Alloc>::insert(iterator position,InputIterator first,Inputerator last){
insert_aux(position,first,last,typename std::is_integral<InputIterator>::type());
}
template<class T,class Alloc>
void vector<T,Alloc>::insert(iterator position,const size_type & n,const value_type & val){
insert_aux(position,n,cal,typename std::is_integral<size_type>::type());
}
template<class T,class Alloc>
typename vector<T,Alloc>::iterator vector<T,Alloc>::insert(iterator postion,const value_type &val){
const auto index=position-begin();
insert(position,1,val);
return begin()+index;
}
template<class T,class Alloc>
void vector<T,Alloc>::push_back(const value_type& vlaue){
insert(end(),value);
}
template<class T,class Alloc>
bool vector<T,Alloc>::operator==(const vector<T,Alloc>& v)const{
if(size()!=v.size()){
return false;
}
else{
auto ptr1=start_;
auto ptr2=v.start_;
for(;ptr1!=finish_&&ptr2!=v.finish_;++ptr1,++ptr2){
if(*ptr1!=*ptr2)return false;
}
return true;
}
}
template<class T,class Alloc>
bool vector<T,Alloc>::operator!=(const vector<T,Alloc>& v)const{
return !(*this==v);
}
template<class T,class Alloc>
bool operator==(const vector<T,Alloc>&v1,const vector<T,Alloc>&v2){
return v1.operator==(v2);
}
bool operator!=(con(const vector<T,Alloc>&v1,const vector<T,Alloc>&v2){
return v1.operator!=(v2);
}
template<class T,class Alloc>
void vector<T,Alloc>::clear(){
dataAllocator::destroy(start_,finish_);
finish_=start_;
}
template<class T,class Alloc>
void vector<T,Alloc>::swap(vector& v){
if(this!=&v){
SmallSTL::swap(start_,v.start);
SmallSTL::swap(finish_,v.finish_);
SmallSTL::swap(endOfStorage,v.endOfStorage);
}
}
template<class T,class Alloc>
void vector<T,Alloc>::pop_back(){
--finish_;
dataAllocator::destroy(finish_);
}
template<class T,class Alloc>
void vector<T,Alloc>::destroyAndDeallocateAll(){
if(capacity!=0){
dataAllocator::destroy(start_,finish_);
dataAllocator::deallocate(start_,capacity());
}
}
template<class T,class Alloc>
void vector<T,Alloc>::allocateAndFillN(const size_type n,const value_type &vluae){
start_=dataAllocator::allocate(n);
SmallSTL::uninitialized_fill_n(start_,n,value);
endOfStorage=finish_=start_+n;
}
template<class T,class Alloc>
template<class InputIterator>
void vector<T,Alloc>::allocateAndCopy(InputIterator first,InputIterator last){
start_=datallocator::allocate(last-finish);
finish_=SmallSTL::uninitialized_copy(first,last,start_);
endOfStorage_=finish_;
}
template<class T,class Alloc>
template<class InputIterator>
void vector<T,Alloc>::vector_aux(InputIterator first,Inputerator last,std::false_type){
allocateAndCopy(first,last);
}
template<class T,class Alloc>
template<class Integer>
void vector<T,Alloc>::vector_aux(Integer n,const value_type& value,std::true_type){
allocateAndFillN(n,value);
}
template<class T,class Alloc>
typename vector<T,Alloc>::size_type vector<T,Alloc>::getNewCapacity(size_type n) const{
size_type oldCapacity=endOfStorage_-start_;
auto res=SmallSTL::max(oldCapacity,n);
size_type newCapacity=(oldCapacity!=0?(oldCapacity+res):n);
return newCapacity;
}
}
|
ad00884c3f846fb7ebe060632a769b5696a8c6fc
|
59b60352c62e570a743537d51d4f14a39af2a00a
|
/NLEPreview/MatterView/Controls/ResListView.cpp
|
cfc725695aa3e89e1432e06cabba710ce8c479c6
|
[] |
no_license
|
LuckyKingSSS/preDemo
|
32db4f771428ce2503925d3c34d6f54720709d10
|
020c78665561e639f4eb4a4ad86b63ee190a9637
|
refs/heads/master
| 2021-07-06T16:03:15.892541
| 2017-09-28T07:10:41
| 2017-09-28T07:10:41
| 105,114,136
| 0
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 8,150
|
cpp
|
ResListView.cpp
|
#include "stdafx.h"
#include "ResListView.h"
#include "ListItemData.h"
#include <QPainter>
#include "FileOperation.h"
#include "ItemBaseView.h"
#include "NormalItemView.h"
#include "VideoItemView.h"
#include "ImageItemView.h"
#include "MusicItemView.h"
#include "EffectItemView.h"
#include "PathOperation.h"
/************************************************************************/
/* ResListWidget */
/************************************************************************/
ResListWidget::ResListWidget(QWidget *parent)
: QListWidget(parent)
{
m_pPreClickItem = NULL;
setLayoutMode(QListView::Batched);
m_interval.start();
}
ResListWidget::~ResListWidget()
{
}
void ResListWidget::lBtnDClicked()
{
if (selectedItems().size() > 0)
{
emit signalLBtnDClickedSelected(selectedItems().first());
}
}
void ResListWidget::lBtnClicked()
{
int nCnt = selectedItems().size();
if (nCnt == 1)
{
emit signalLBtnSingleSelected(selectedItems().first());
}
else if(nCnt > 1)
{
emit signalLBtnMultiSelected(selectedItems());
}
}
void ResListWidget::mouseReleaseEvent(QMouseEvent *e)
{
QListWidget::mouseReleaseEvent(e);
dragStartPosition.setX(0);
dragStartPosition.setY(0);
emit signalShowSelectionRect(false, QRect());
if (e->button() == Qt::LeftButton)
{
if (m_interval.elapsed() < QApplication::doubleClickInterval())
{
disconnect(&m_timer, &QTimer::timeout, 0, 0);
m_timer.stop();
//双击,先判断上一次点击的对象是不是当前点击的对象
if (itemAt(e->pos()) == m_pPreClickItem)
{
lBtnDClicked();
}
else
{
lBtnClicked();
}
m_interval.restart();
}
else
{
m_interval.restart();
m_pPreClickItem = itemAt(e->pos());
m_timer.start(QApplication::doubleClickInterval());
connect(&m_timer, &QTimer::timeout, this, [&](){
disconnect(&m_timer, &QTimer::timeout, 0, 0);
m_timer.stop();
//单击
m_pPreClickItem = NULL;
lBtnClicked();
});
}
}
}
void ResListWidget::mousePressEvent(QMouseEvent *e)
{
QListWidget::mousePressEvent(e);
auto selectItem = itemAt(e->pos());
if (selectItem == nullptr)
{
if (e->button() == Qt::LeftButton)
{
UnselectAllItems();
dragStartPosition = e->pos();
emit signalBlankAreaLClick();
}
else if (e->button() == Qt::RightButton)
{
UnselectAllItems();
emit signalBlankAreaRClick();
}
}
else
{
emit signalLBtnSingleSelectedDown(selectItem);
}
}
void ResListWidget::mouseMoveEvent(QMouseEvent *e)
{
QListWidget::mouseMoveEvent(e);
if (!(e->buttons() & Qt::LeftButton))
return;
if (dragStartPosition.isNull()) return;
if ((e->pos() - dragStartPosition).manhattanLength()< QApplication::startDragDistance()) return;
emit signalShowSelectionRect(true, QRect(dragStartPosition,e->pos()));
}
void ResListWidget::UnselectAllItems()
{
QList<QListWidgetItem*> listItems = selectedItems();
for (QListWidgetItem* item : listItems)
{
setItemSelected(item, false);
}
}
void ResListWidget::resizeEvent(QResizeEvent *e)
{
QListWidget::resizeEvent(e);
}
/************************************************************************/
/* ResListView */
/************************************************************************/
ResListView::ResListView(QWidget *parent ,int selectMode)
: QWidget(parent)
{
m_pListWidget = new ResListWidget(this);
InitListWidget(selectMode);
m_pSelectionWidget = new SelectionWidget(this);
m_pSelectionWidget->setVisible(false);
connect(m_pListWidget, &ResListWidget::signalShowSelectionRect, this, [&](bool bShow,QRect rc){
m_pSelectionWidget->setVisible(bShow);
if (!bShow) return;
if (m_pListWidget->selectionMode() == QAbstractItemView::SingleSelection) return;
m_pSelectionWidget->SetSelectedRect(rc);
});
}
ResListView::~ResListView()
{
}
void ResListView::InitListWidget(int nSelectMode)
{
m_pListWidget->setViewMode(QListView::IconMode);
m_pListWidget->setResizeMode(QListView::Adjust);
m_pListWidget->setSelectionMode((QAbstractItemView::SelectionMode)nSelectMode);
m_pListWidget->setDragEnabled(true);
m_pListWidget->setSpacing(10);
m_pListWidget->setFocusPolicy(Qt::FocusPolicy::NoFocus);
m_pListWidget->setStyleSheet("QListWidget{border: none;background: rgb(245,244,244);}");
m_pListWidget->setSelectionRectVisible(false);
connect(m_pListWidget, &ResListWidget::signalBlankAreaLClick, this, &ResListView::signalBlankAreaLClick);
connect(m_pListWidget, &ResListWidget::signalBlankAreaRClick, this, &ResListView::signalBlankAreaRClick);
connect(m_pListWidget, &ResListWidget::signalLBtnMultiSelected, this, &ResListView::signalLBtnMultiSelected);
connect(m_pListWidget, &ResListWidget::signalLBtnSingleSelected, this, &ResListView::signalLBtnSingleSelected);
connect(m_pListWidget, &ResListWidget::signalLBtnDClickedSelected, this, &ResListView::signalLBtnDClickedSelected);
connect(m_pListWidget, &ResListWidget::signalLBtnSingleSelectedDown, this, &ResListView::signalLBtnSingleSelectedDown);
QString s = FileOperation::ReadFile(PathOperation::MakeWorkPath("ResConfig\\qss\\list_scroolbar.qss"));
m_pListWidget->verticalScrollBar()->setStyleSheet(s);
}
void ResListView::resizeEvent(QResizeEvent *e)
{
m_pListWidget->setGeometry(rect());
m_pSelectionWidget->setGeometry(rect());
}
void ResListView::AddItemWidget(ListItemData* pItemData)
{
if (!pItemData) return;
pItemData->setSizeHint(pItemData->frameSize);
ItemBaseView *itemView = CreateItemViewByItemData(pItemData);
if (!itemView) return;
if (pItemData->eType != ListItemType_base)
{
connect((NormalItemView*)itemView, &NormalItemView::signalAddBtnClicked, this, &ResListView::signalItemAddBtnClicked);
}
m_pListWidget->setItemWidget(pItemData, itemView);
m_pListWidget->sortItems();
}
void ResListView::RemoveItemWidget(ListItemData* pItemData)
{
int nRow = m_pListWidget->row(pItemData);
m_pListWidget->removeItemWidget(pItemData);
m_pListWidget->model()->removeRow(nRow);
}
void ResListView::SetSpacing(int nSpacing)
{
m_pListWidget->setSpacing(nSpacing);
}
ItemBaseView* ResListView::CreateItemViewByItemData(ListItemData* pItemData)
{
ItemBaseView *pItemView = NULL;
switch (pItemData->eType)
{
case ListItemType_base:
pItemView = new ItemBaseView(pItemData, m_pListWidget);
break;
case ListItemType_normal:
pItemView = new NormalItemView(pItemData, m_pListWidget);
break;
case ListItemType_Image:
pItemView = new ImageItemView(pItemData, m_pListWidget);
break;
case ListItemType_music:
pItemView = new MusicItemView(pItemData, m_pListWidget);
break;
case ListItemType_video:
pItemView = new VideoItemView(pItemData, m_pListWidget);
break;
case ListItemType_effect:
pItemView = new EffectItemView(pItemData, m_pListWidget);
break;
case ListItemType_text:
pItemView = new TextItemView(pItemData, m_pListWidget);
break;
case ListItemType_audio_effect:
pItemView = new AudioFilterItemView(pItemData, m_pListWidget);
break;
case ListItemType_montage:
pItemView = new MontageItemView(pItemData, m_pListWidget);
break;
}
return pItemView;
}
QWidget* ResListView::GetItemWidget(ListItemData* pItemData)
{
return m_pListWidget->itemWidget(pItemData);
}
void ResListView::UnselectAllItems()
{
m_pListWidget->UnselectAllItems();
}
/************************************************************************/
/* SelectionWidget */
/************************************************************************/
SelectionWidget::SelectionWidget(QWidget *parent)
:QWidget(parent)
{
setAttribute(Qt::WA_TransparentForMouseEvents, true);
setStyleSheet("background:none;background-color:none;");
}
SelectionWidget::~SelectionWidget()
{
}
void SelectionWidget::SetSelectedRect(const QRect &rcSelected)
{
QRect rcTag = m_rcSelected.united(rcSelected);
m_rcSelected = rcSelected;
repaint(rcTag.adjusted(0, 0, 1, 1));
//update(rcTag.adjusted(0,0,1,1));
}
void SelectionWidget::paintEvent(QPaintEvent *e)
{
QPainter painter(this);
painter.drawRect(m_rcSelected);
QWidget::paintEvent(e);
}
|
524a0e81e3da6ca2a0084c02efe29b32d497d29d
|
97068d171a1407a394c01e1fd540639a43baf870
|
/tcp/TcpConnection.h
|
5091e7d634df8ead762cee174da59bfa10cfaf39
|
[] |
no_license
|
round00/KYHttpServer
|
8212ad49b31bc87614050d60cee6e7bdd03552be
|
26fbca839552c1b789b588e06caf2b962c17fa96
|
refs/heads/master
| 2020-09-29T16:32:51.628909
| 2020-03-08T13:58:23
| 2020-03-08T13:58:23
| 227,074,056
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,863
|
h
|
TcpConnection.h
|
//
// Created by gjk on 2020/3/3.
//
#ifndef KYHTTPSERVER_TCPCONNECTION_H
#define KYHTTPSERVER_TCPCONNECTION_H
#include <memory>
#include <functional>
#include "Buffer.h"
class CEvent;
class CEventLoop;
class CTcpConnection;
typedef std::shared_ptr<CTcpConnection> TcpConnPtr;
typedef std::function<void(const TcpConnPtr&,BufferPtr)> ReadCallback;
typedef std::function<void(const TcpConnPtr&)> WriteCompleteCallback;
typedef std::function<void(const TcpConnPtr&)> CloseCallback;
class CTcpConnection:public std::enable_shared_from_this<CTcpConnection>{
public:
CTcpConnection(CEventLoop* loop, int fd);
~CTcpConnection();
int getFd();
// CEvent* getEvent(){return m_event;}
void setReadCallback(const ReadCallback& cb)
{m_readCallback = cb;}
void setWriteCompleteCb(const WriteCompleteCallback& cb)
{m_writeCompletecb = cb;}
void setCloseCallback(const CloseCallback& cb)
{m_closeCb = cb;}
void enableRead(bool enable);
void enableWrite(bool enable);
void disableAll();
void send(const std::string& buf);
void closeConnection();
BufferPtr getInputBuffer(){return m_inputBuffer;}
BufferPtr getOutputBuffer(){return m_outputBuffer;}
private:
void onReadEvent(CEvent* event);
void onWriteEvent(CEvent* event);
private:
ReadCallback m_readCallback;
WriteCompleteCallback
m_writeCompletecb;
CloseCallback m_closeCb;
BufferPtr m_inputBuffer;
BufferPtr m_outputBuffer;
//不能delete这个
CEventLoop* m_ownerLoop;
CEvent* m_event;
};
#endif //KYHTTPSERVER_TCPCONNECTION_H
|
5e3b3b078713c05b1708ad3c97042ddad6388177
|
8b26ee63c2c1c898bb0a6924a35faab8164ccb9e
|
/modules/danlin_fontawesome/data/FontAwesomeData.cpp
|
e606f843ed1b3695d61b33ad1bde50e8cd5d3c50
|
[
"MIT"
] |
permissive
|
danlin/danlin_modules
|
1d75535e0910f192f8289cacafebe1bb0e3ee7c1
|
f688951aecb583a339a3709313bea67423c4366e
|
refs/heads/master
| 2021-01-18T22:44:38.707426
| 2018-04-06T14:27:37
| 2018-04-06T14:27:37
| 22,116,135
| 13
| 8
|
MIT
| 2019-06-11T11:46:07
| 2014-07-22T18:38:50
|
C++
|
UTF-8
|
C++
| false
| false
| 490,841
|
cpp
|
FontAwesomeData.cpp
|
// IMPORTANT! This file is auto-generated see extras/AwesomeMaker
#include "FontAwesomeData.h"
static const unsigned char data[] = {0,1,0,0,0,13,0,128,0,3,0,80,70,70,84,77,107,190,71,185,0,2,134,144,0,0,0,28,71,68,69,70,2,240,0,4,0,2,134
,112,0,0,0,32,79,83,47,50,136,50,122,64,0,0,1,88,0,0,0,96,99,109,97,112,10,191,58,127,0,0,12,168,0,0,2,242,103,97,115
,112,255,255,0,3,0,2,134,104,0,0,0,8,103,108,121,102,143,247,174,77,0,0,26,172,0,2,76,188,104,101,97,100,16,137,229,45,0,0,0
,220,0,0,0,54,104,104,101,97,15,3,10,181,0,0,1,20,0,0,0,36,104,109,116,120,69,121,24,133,0,0,1,184,0,0,10,240,108,111,99
,97,2,245,162,92,0,0,15,156,0,0,11,16,109,97,120,112,3,44,2,28,0,0,1,56,0,0,0,32,110,97,109,101,227,151,139,172,0,2,103
,104,0,0,4,134,112,111,115,116,175,143,155,161,0,2,107,240,0,0,26,117,0,1,0,0,0,4,1,203,144,207,120,89,95,15,60,245,0,11,7
,0,0,0,0,0,212,51,205,50,0,0,0,0,212,51,205,50,255,255,255,0,9,1,6,0,0,0,0,8,0,2,0,1,0,0,0,0,0,1,0
,0,6,0,255,0,0,0,9,0,255,255,255,255,9,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,181,0,1,0,0,2,195,2
,25,0,39,0,0,0,0,0,2,0,0,0,1,0,1,0,0,0,64,0,0,0,0,0,0,0,3,6,105,1,144,0,5,0,0,4,140,4,51,0
,0,0,134,4,140,4,51,0,0,2,115,0,0,1,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,112,121,114,115,0,64,0,32,245,0,6,0,255,0,0,0,6,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,32,0
,1,3,128,0,112,0,0,0,0,2,85,0,0,1,192,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0
,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,93,6,0,0,0,6,128,0,0,7,0,0,0,7,0,0,0,6,128,0,0,6,128,0
,0,5,0,0,0,7,128,0,0,6,128,0,0,7,0,0,0,7,0,0,0,7,0,0,121,5,128,0,110,6,128,0,0,6,128,0,0,6,0,0
,0,7,0,0,0,6,0,0,0,5,128,0,0,6,128,0,26,6,0,0,0,6,0,0,0,7,128,0,50,6,128,0,0,6,0,0,0,6,0,0
,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,4,128,0,0,7,0,0,64,6,128,0,0,3,0,0,0,4,128,0
,0,6,128,0,0,5,128,0,0,7,0,0,0,6,0,0,0,7,128,0,0,6,128,0,10,5,0,0,0,6,128,0,0,7,128,0,0,6,128,0
,0,5,128,0,0,4,0,0,0,7,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0
,0,7,0,0,0,7,0,0,0,7,128,0,0,6,0,0,0,4,0,0,0,6,0,0,0,4,0,0,0,7,0,0,0,6,128,0,0,6,128,0
,0,7,0,0,0,4,0,0,0,7,0,0,0,6,128,0,122,5,128,0,0,6,0,0,0,6,0,0,0,6,128,0,0,7,0,0,0,4,0,0
,0,6,2,0,1,5,0,0,154,5,0,0,90,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0
,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,64,6,0,0,0,6,128,0,53,6,128,0,53,7,0,0,0,6,0,0,0,6,0,0
,13,5,128,0,0,5,128,0,0,6,128,0,122,6,0,0,0,6,0,0,0,7,0,0,0,5,128,0,0,7,0,0,0,7,0,0,0,7,0,0
,16,5,128,0,0,6,128,0,0,7,0,0,0,7,0,0,0,6,0,0,0,7,0,0,90,7,0,0,90,7,128,0,0,6,128,0,0,6,128,0
,0,7,128,0,0,3,0,0,64,7,0,0,0,8,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,128,0,0,7,0,0
,0,6,0,0,0,6,0,0,0,3,128,0,0,7,0,0,0,6,128,0,0,6,0,0,0,4,128,0,0,7,0,0,0,6,0,0,0,6,128,0
,0,6,0,0,0,6,128,0,0,6,0,0,0,5,128,0,0,5,128,0,0,5,0,0,0,6,0,0,0,6,128,0,44,4,0,0,95,6,0,0
,0,6,128,0,0,7,128,0,0,5,128,0,0,6,0,0,0,7,0,0,0,7,0,0,64,6,0,0,2,7,0,0,0,7,0,0,0,6,0,0
,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,128,0,21,7,0,0,0,5,128,0,5,7,0,0
,0,6,0,0,0,7,128,0,0,6,128,0,16,7,128,0,0,6,128,0,115,7,0,0,1,7,0,0,0,5,128,0,4,6,0,0,0,6,0,0
,0,6,0,0,0,7,0,0,0,7,0,0,15,7,0,0,0,6,0,0,0,6,128,0,0,6,128,0,27,7,0,0,64,6,0,0,0,6,0,0
,0,6,0,0,0,9,0,0,0,7,128,0,0,4,0,0,0,4,0,0,0,2,128,0,64,2,128,0,0,6,128,0,0,4,0,0,0,4,0,0
,0,4,0,0,0,7,0,0,0,6,0,0,0,6,0,0,0,7,0,0,40,7,0,0,0,7,0,0,0,7,0,0,0,3,128,0,1,7,0,0
,0,6,128,0,0,7,0,0,0,4,0,0,0,7,0,0,0,7,128,0,0,7,128,0,0,5,128,0,0,5,128,0,0,7,0,0,0,7,0,0
,64,7,128,0,0,5,128,0,0,6,0,0,0,5,128,0,0,5,128,0,0,7,128,0,64,7,0,0,0,7,128,0,0,6,128,0,64,6,0,0
,0,6,0,0,0,4,0,0,45,4,0,0,13,4,128,0,77,4,128,0,77,2,128,0,45,2,128,0,13,4,128,0,77,4,128,0,77,7,128,0
,0,7,128,0,0,4,128,0,0,3,0,0,0,6,0,0,0,6,128,0,0,6,128,0,0,7,0,0,64,6,0,0,0,7,0,0,0,6,128,0
,0,6,128,0,0,7,128,0,0,7,0,0,0,7,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,128,0,0,7,128,0,0,7,0,0
,64,7,0,0,64,6,128,0,13,7,128,0,45,7,0,0,0,6,128,0,2,5,128,0,2,6,128,0,0,4,0,0,0,6,128,0,0,4,0,0
,96,2,128,0,0,2,128,0,98,6,0,0,5,6,0,0,5,7,128,0,1,6,128,0,0,4,128,0,0,5,128,0,13,5,0,0,0,6,128,0
,0,5,128,0,3,6,128,0,36,7,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,5,128,0,0,7,0,0,12,7,0,0
,0,4,128,0,0,6,0,0,0,5,128,0,0,1,128,0,0,6,0,0,0,6,0,0,0,7,0,0,54,6,0,0,0,5,128,0,0,4,0,0
,3,4,0,0,3,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,4,0,0
,0,4,0,0,0,4,0,0,52,3,130,0,0,4,3,0,4,5,0,0,0,7,0,0,0,5,0,0,56,6,0,0,0,6,0,0,0,6,128,0
,34,6,128,0,34,7,0,0,34,7,0,0,34,6,0,0,34,6,0,0,34,6,128,0,0,6,128,0,0,6,0,0,0,6,0,0,27,5,128,0
,5,6,0,0,0,7,0,0,0,7,0,0,64,6,0,0,11,6,0,0,0,6,0,0,0,6,0,0,0,5,128,0,0,6,0,0,0,4,0,0
,68,6,0,0,0,3,0,0,3,3,0,0,3,7,0,0,64,7,0,0,0,5,128,0,0,6,128,0,0,5,128,0,0,6,0,0,11,6,0,0
,0,6,0,0,0,5,0,0,44,6,0,0,0,5,0,0,0,4,0,0,0,6,0,0,0,7,0,0,44,6,0,0,0,7,0,0,64,6,128,0
,32,7,128,255,255,7,0,0,0,6,0,0,0,5,128,0,0,5,0,0,21,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,128,0
,0,6,0,0,0,4,128,0,0,5,128,0,0,8,128,0,0,6,128,0,0,6,0,0,0,7,0,0,0,7,0,0,0,8,0,0,0,9,0,0
,0,6,0,0,109,6,0,0,0,7,0,0,0,6,0,0,0,6,0,0,0,7,128,0,0,6,0,0,0,8,0,0,0,6,0,0,0,7,246,0
,41,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,6,0,0,0,5,0,0,64,6,128,0,0,3,0,0,64,7,0,0,0,9,0,0
,0,8,0,0,0,6,0,0,0,7,0,0,0,6,0,0,0,7,0,0,16,8,0,0,0,8,0,0,0,6,0,0,32,6,0,0,0,4,0,0
,0,9,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0
,0,6,0,0,0,6,0,0,39,7,0,0,0,8,0,0,0,7,0,0,0,7,0,0,32,7,0,0,19,7,0,0,0,6,0,0,0,7,0,0
,68,6,0,0,0,5,0,0,57,7,0,0,18,8,0,0,0,7,0,0,0,7,0,0,0,6,0,0,0,6,0,0,0,7,0,0,62,5,0,0
,24,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,7,0,0,25,7,0,0
,100,6,0,0,89,8,0,0,0,8,0,0,42,7,0,0,0,6,0,0,9,7,0,0,39,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0
,0,9,0,0,0,9,0,0,0,8,0,0,14,8,0,0,14,5,128,0,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,7,0,0
,0,8,0,0,0,7,0,0,0,8,0,0,0,7,0,0,0,6,0,0,0,8,0,0,0,8,0,0,0,9,0,0,0,6,0,0,0,8,0,0
,0,5,0,0,11,8,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,6,0,0,0,6,0,0,0,8,0,0,0,8,0,0
,0,6,0,0,0,8,0,0,0,8,0,0,0,6,128,0,0,6,128,0,0,8,0,0,0,8,0,0,19,6,0,0,0,9,0,0,0,6,0,0
,0,7,0,0,0,5,0,0,2,6,0,0,0,5,0,0,0,6,0,0,2,7,0,0,0,7,0,0,2,7,128,0,1,8,0,0,6,6,0,0
,0,5,0,0,2,8,0,0,4,5,0,0,0,5,0,0,0,7,0,0,0,7,0,0,0,6,0,0,0,5,0,0,0,6,0,0,0,7,0,0
,0,8,0,0,0,8,0,0,0,8,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,6,0,0,0,8,248,0,84,9,0,0
,0,7,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,9,0,0,0,5,0,0,0,4,0,0,0,8,0,0,0,9,0,0
,0,6,0,0,0,6,0,0,0,9,0,0,0,9,0,0,0,7,0,0,0,9,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0
,0,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,8,0,0,0,8,0,0,0,7,0,0,0,6,0,0,0,7,181,0,0,7,0,0
,0,7,0,0,0,8,0,0,64,7,0,0,0,9,0,0,0,5,0,0,102,6,0,0,0,6,184,0,0,9,0,0,0,7,0,0,0,7,0,0
,0,7,0,0,2,7,0,0,0,7,0,0,0,8,0,0,0,7,0,0,22,6,0,0,14,7,0,0,29,7,0,0,0,7,0,0,0,7,0,0
,0,7,0,0,0,7,0,0,0,4,0,0,0,7,0,0,37,8,0,0,0,7,0,0,0,7,0,0,0,7,0,0,0,4,0,0,0,7,0,0
,82,6,0,0,0,6,0,0,0,7,0,0,0,7,0,0,69,9,0,0,0,7,0,0,0,7,0,0,32,7,0,0,0,9,0,0,0,7,0,0
,0,9,0,0,0,6,0,0,36,6,0,0,0,6,0,0,0,6,0,0,0,6,0,0,0,7,0,0,0,8,0,0,0,7,0,0,33,6,0,0
,107,4,0,0,40,6,0,0,0,7,0,0,3,7,0,0,0,6,0,0,0,7,0,0,0,7,0,0,0,6,0,0,68,6,0,0,0,5,128,0
,39,9,0,0,3,5,128,0,0,8,128,0,0,7,0,0,0,9,0,0,3,7,0,0,0,6,0,0,0,5,255,0,37,6,128,0,1,7,0,0
,0,5,0,0,0,6,0,0,0,6,0,0,0,6,128,0,15,6,0,0,0,9,0,0,0,6,0,0,0,6,128,0,0,7,0,0,0,6,0,0
,0,6,0,0,37,9,0,0,0,7,0,0,0,7,0,0,0,6,0,0,21,6,128,0,0,6,128,0,0,8,0,0,0,8,0,0,0,7,0,0
,0,7,0,0,0,6,0,0,0,5,0,0,0,8,0,0,0,8,0,0,0,7,0,0,29,9,0,0,0,7,0,0,0,4,0,0,0,4,0,0
,0,4,0,0,0,4,0,0,0,4,0,0,0,7,128,0,0,7,0,0,0,6,0,0,1,7,0,0,0,7,0,0,0,8,0,0,0,7,0,0
,0,7,0,0,0,7,0,0,0,7,2,0,0,6,0,0,0,6,0,0,0,8,128,0,48,7,0,0,37,6,0,0,0,6,128,0,47,7,0,0
,0,7,0,0,0,7,128,0,38,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,3,0,0,0,3,0,0,0,28,0,1,0,0,0,0,1,236,0,3,0,1,0,0,0,28,0,4,1,208,0,0,0,112,0,64,0
,5,0,48,0,32,0,169,0,174,0,180,0,198,0,216,33,34,34,30,34,96,240,14,240,30,240,62,240,78,240,94,240,110,240,126,240,142,240,158,240
,174,240,178,240,206,240,222,240,238,240,254,241,14,241,30,241,46,241,62,241,78,241,94,241,110,241,126,241,142,241,158,241,174,241,190,241,206,241,222,241
,238,241,254,242,14,242,30,242,62,242,78,242,94,242,110,242,126,242,142,242,158,242,174,242,190,242,206,242,222,242,238,245,0,255,255,0,0,0,32,0
,168,0,174,0,180,0,198,0,216,33,34,34,30,34,96,240,0,240,16,240,33,240,64,240,80,240,96,240,112,240,128,240,144,240,160,240,176,240,192,240
,208,240,224,240,240,241,0,241,16,241,32,241,48,241,64,241,80,241,96,241,112,241,128,241,144,241,160,241,176,241,192,241,208,241,224,241,240,242,0,242
,16,242,33,242,64,242,80,242,96,242,112,242,128,242,144,242,160,242,176,242,192,242,208,242,224,245,0,255,255,255,227,255,92,255,88,255,83,255,66,255
,49,222,232,221,237,221,172,16,13,16,12,16,10,16,9,16,8,16,7,16,6,16,5,16,4,16,3,16,2,15,245,15,244,15,243,15,242,15,241,15
,240,15,239,15,238,15,237,15,236,15,235,15,234,15,233,15,232,15,231,15,230,15,229,15,228,15,227,15,226,15,225,15,224,15,222,15,221,15,220,15
,219,15,218,15,217,15,216,15,215,15,214,15,213,15,212,15,211,13,194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,0,1,0,0,0,0,0,0,0,1,2,0,0,0,2,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,5,10,7,4,12,8,9,11,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0
,44,0,0,0,44,0,0,0,44,0,0,0,44,0,0,0,144,0,0,1,20,0,0,1,152,0,0,2,116,0,0,2,208,0,0,3,76,0,0,3
,240,0,0,4,84,0,0,6,36,0,0,6,224,0,0,8,108,0,0,9,120,0,0,9,208,0,0,10,84,0,0,11,40,0,0,11,212,0,0,12
,132,0,0,13,100,0,0,14,168,0,0,15,212,0,0,16,132,0,0,17,0,0,0,17,156,0,0,18,108,0,0,19,44,0,0,19,216,0,0,20
,128,0,0,20,252,0,0,21,144,0,0,22,52,0,0,23,16,0,0,24,100,0,0,24,204,0,0,25,112,0,0,26,72,0,0,26,148,0,0,27
,36,0,0,28,100,0,0,29,44,0,0,30,8,0,0,30,116,0,0,31,40,0,0,32,140,0,0,32,240,0,0,33,160,0,0,34,48,0,0,35
,32,0,0,36,44,0,0,36,224,0,0,38,68,0,0,39,228,0,0,40,156,0,0,41,84,0,0,42,8,0,0,42,188,0,0,44,16,0,0,44
,244,0,0,45,216,0,0,46,64,0,0,46,216,0,0,47,96,0,0,47,188,0,0,48,20,0,0,48,164,0,0,49,148,0,0,50,144,0,0,51
,100,0,0,52,52,0,0,52,148,0,0,53,32,0,0,53,128,0,0,53,184,0,0,54,32,0,0,54,92,0,0,54,188,0,0,55,72,0,0,55
,168,0,0,56,12,0,0,56,96,0,0,56,180,0,0,57,76,0,0,57,180,0,0,58,104,0,0,58,236,0,0,59,192,0,0,60,112,0,0,61
,112,0,0,62,60,0,0,62,228,0,0,63,104,0,0,63,216,0,0,64,72,0,0,64,188,0,0,65,48,0,0,65,184,0,0,66,88,0,0,66
,248,0,0,67,100,0,0,67,156,0,0,68,76,0,0,68,228,0,0,69,184,0,0,70,156,0,0,71,48,0,0,71,220,0,0,72,236,0,0,73
,140,0,0,74,56,0,0,75,172,0,0,76,228,0,0,77,100,0,0,78,44,0,0,78,128,0,0,78,212,0,0,79,176,0,0,80,96,0,0,80
,168,0,0,81,52,0,0,81,160,0,0,82,12,0,0,82,108,0,0,83,44,0,0,83,152,0,0,84,96,0,0,85,48,0,0,87,240,0,0,88
,220,0,0,90,8,0,0,91,64,0,0,91,140,0,0,92,60,0,0,92,248,0,0,93,152,0,0,94,40,0,0,94,228,0,0,95,160,0,0,96
,112,0,0,98,44,0,0,98,244,0,0,100,4,0,0,100,236,0,0,101,80,0,0,101,208,0,0,102,196,0,0,103,96,0,0,103,168,0,0,105
,76,0,0,105,192,0,0,106,68,0,0,107,12,0,0,107,212,0,0,108,128,0,0,109,64,0,0,110,44,0,0,111,76,0,0,112,132,0,0,113
,164,0,0,114,220,0,0,115,120,0,0,116,16,0,0,116,168,0,0,117,68,0,0,123,96,0,0,124,0,0,0,124,188,0,0,125,16,0,0,125
,164,0,0,126,136,0,0,127,148,0,0,128,188,0,0,129,24,0,0,129,140,0,0,131,72,0,0,132,20,0,0,132,212,0,0,133,168,0,0,133
,228,0,0,134,108,0,0,135,64,0,0,136,152,0,0,137,192,0,0,139,16,0,0,140,200,0,0,141,140,0,0,142,108,0,0,143,72,0,0,144
,32,0,0,144,192,0,0,145,84,0,0,146,12,0,0,146,72,0,0,146,132,0,0,146,192,0,0,146,252,0,0,147,96,0,0,147,200,0,0,148
,4,0,0,148,64,0,0,148,240,0,0,149,128,0,0,150,36,0,0,151,92,0,0,152,88,0,0,153,28,0,0,154,68,0,0,154,184,0,0,155
,152,0,0,156,160,0,0,157,84,0,0,158,88,0,0,158,248,0,0,159,156,0,0,160,68,0,0,161,80,0,0,162,44,0,0,162,164,0,0,163
,56,0,0,163,168,0,0,164,100,0,0,165,92,0,0,168,144,0,0,171,8,0,0,172,28,0,0,172,236,0,0,173,144,0,0,173,232,0,0,174
,128,0,0,175,24,0,0,175,176,0,0,176,72,0,0,176,224,0,0,177,120,0,0,177,204,0,0,178,32,0,0,178,116,0,0,178,200,0,0,179
,88,0,0,179,244,0,0,180,112,0,0,181,0,0,0,181,100,0,0,182,28,0,0,182,212,0,0,183,180,0,0,183,240,0,0,184,120,0,0,185
,116,0,0,185,248,0,0,186,204,0,0,186,204,0,0,186,204,0,0,187,168,0,0,188,132,0,0,189,64,0,0,190,4,0,0,191,200,0,0,192
,196,0,0,194,12,0,0,194,140,0,0,195,92,0,0,196,32,0,0,196,188,0,0,197,16,0,0,197,184,0,0,198,148,0,0,200,48,0,0,200
,224,0,0,201,100,0,0,201,204,0,0,202,168,0,0,203,128,0,0,203,224,0,0,204,244,0,0,205,148,0,0,206,120,0,0,206,232,0,0,207
,176,0,0,208,140,0,0,209,44,0,0,209,136,0,0,210,8,0,0,210,136,0,0,211,12,0,0,211,140,0,0,211,236,0,0,212,56,0,0,213
,44,0,0,213,156,0,0,214,96,0,0,214,232,0,0,215,108,0,0,216,72,0,0,216,180,0,0,217,96,0,0,217,196,0,0,218,84,0,0,218
,184,0,0,219,24,0,0,219,148,0,0,220,64,0,0,220,200,0,0,221,108,0,0,221,240,0,0,222,132,0,0,223,24,0,0,223,172,0,0,224
,188,0,0,225,108,0,0,226,112,0,0,227,32,0,0,227,228,0,0,228,128,0,0,229,200,0,0,230,192,0,0,231,24,0,0,231,236,0,0,232
,228,0,0,233,216,0,0,234,216,0,0,235,216,0,0,236,212,0,0,237,208,0,0,238,220,0,0,239,228,0,0,242,4,0,0,243,244,0,0,244
,128,0,0,245,52,0,0,246,16,0,0,246,156,0,0,247,24,0,0,248,88,0,0,248,192,0,0,249,36,0,0,250,108,0,0,251,188,0,0,252
,40,0,0,252,184,0,0,253,12,0,0,253,96,0,0,253,180,0,0,254,8,0,0,254,184,0,0,255,8,0,1,0,20,0,1,5,180,0,1,6
,244,0,1,7,248,0,1,8,208,0,1,9,100,0,1,10,16,0,1,10,152,0,1,11,24,0,1,12,4,0,1,12,164,0,1,13,44,0,1,14
,0,0,1,15,136,0,1,17,44,0,1,17,160,0,1,18,204,0,1,19,56,0,1,19,228,0,1,20,144,0,1,21,40,0,1,21,164,0,1,22
,88,0,1,22,252,0,1,23,192,0,1,24,132,0,1,25,120,0,1,26,124,0,1,27,84,0,1,28,212,0,1,29,64,0,1,29,212,0,1,30
,144,0,1,31,4,0,1,31,124,0,1,32,164,0,1,33,192,0,1,34,120,0,1,35,8,0,1,35,108,0,1,36,4,0,1,36,204,0,1,39
,104,0,1,40,232,0,1,42,76,0,1,44,84,0,1,46,76,0,1,49,116,0,1,49,244,0,1,50,224,0,1,51,48,0,1,51,176,0,1,52
,168,0,1,53,116,0,1,54,84,0,1,55,36,0,1,56,12,0,1,57,72,0,1,58,16,0,1,58,240,0,1,59,144,0,1,60,132,0,1,60
,216,0,1,63,88,0,1,64,28,0,1,65,192,0,1,66,200,0,1,67,200,0,1,68,156,0,1,69,72,0,1,70,72,0,1,71,112,0,1,72
,72,0,1,73,120,0,1,74,32,0,1,74,228,0,1,75,212,0,1,76,160,0,1,77,24,0,1,78,64,0,1,80,64,0,1,81,160,0,1,82
,224,0,1,83,68,0,1,84,32,0,1,85,76,0,1,86,96,0,1,86,212,0,1,87,88,0,1,88,52,0,1,88,160,0,1,90,4,0,1,90
,136,0,1,91,100,0,1,91,224,0,1,92,124,0,1,93,216,0,1,94,160,0,1,96,148,0,1,97,72,0,1,97,188,0,1,98,240,0,1,99
,88,0,1,100,172,0,1,101,116,0,1,102,104,0,1,103,220,0,1,104,180,0,1,105,92,0,1,106,120,0,1,110,132,0,1,112,64,0,1,115
,224,0,1,118,16,0,1,119,200,0,1,120,144,0,1,121,136,0,1,122,140,0,1,123,104,0,1,124,140,0,1,125,28,0,1,125,164,0,1,127
,92,0,1,127,152,0,1,127,248,0,1,128,108,0,1,129,116,0,1,130,144,0,1,131,52,0,1,131,164,0,1,132,200,0,1,133,176,0,1,134
,164,0,1,136,116,0,1,137,140,0,1,138,56,0,1,139,56,0,1,139,160,0,1,142,76,0,1,142,168,0,1,143,84,0,1,144,16,0,1,145
,20,0,1,147,144,0,1,148,20,0,1,149,4,0,1,149,252,0,1,150,248,0,1,151,160,0,1,153,124,0,1,154,200,0,1,156,16,0,1,157
,8,0,1,157,216,0,1,158,124,0,1,159,24,0,1,159,232,0,1,160,196,0,1,162,12,0,1,163,52,0,1,164,120,0,1,165,176,0,1,166
,128,0,1,167,76,0,1,168,28,0,1,168,144,0,1,168,236,0,1,168,236,0,1,168,236,0,1,169,88,0,1,170,40,0,1,171,32,0,1,171
,204,0,1,172,172,0,1,173,168,0,1,174,32,0,1,174,136,0,1,175,4,0,1,175,168,0,1,176,64,0,1,176,136,0,1,182,188,0,1,183
,108,0,1,184,224,0,1,185,116,0,1,186,4,0,1,186,148,0,1,187,36,0,1,187,164,0,1,188,8,0,1,188,120,0,1,189,76,0,1,190
,76,0,1,190,164,0,1,191,32,0,1,192,72,0,1,193,24,0,1,193,196,0,1,195,4,0,1,195,228,0,1,196,160,0,1,197,84,0,1,198
,40,0,1,198,236,0,1,200,12,0,1,201,12,0,1,202,136,0,1,203,160,0,1,204,248,0,1,206,28,0,1,207,148,0,1,208,108,0,1,209
,100,0,1,210,220,0,1,211,80,0,1,211,248,0,1,213,132,0,1,214,120,0,1,215,112,0,1,215,252,0,1,216,244,0,1,218,172,0,1,219
,84,0,1,220,84,0,1,221,12,0,1,221,240,0,1,222,136,0,1,223,76,0,1,225,128,0,1,226,248,0,1,228,24,0,1,229,12,0,1,230
,60,0,1,231,72,0,1,231,168,0,1,232,36,0,1,232,212,0,1,233,108,0,1,234,28,0,1,234,212,0,1,235,228,0,1,236,52,0,1,236
,184,0,1,236,244,0,1,237,240,0,1,239,8,0,1,239,164,0,1,240,4,0,1,240,204,0,1,241,32,0,1,242,80,0,1,243,108,0,1,243
,232,0,1,245,12,0,1,246,44,0,1,246,192,0,1,247,120,0,1,247,224,0,1,248,112,0,1,249,44,0,1,250,120,0,1,251,116,0,1,252
,12,0,1,252,100,0,1,253,12,0,1,253,140,0,1,254,52,0,1,255,8,0,1,255,208,0,2,1,52,0,2,2,28,0,2,3,44,0,2,4
,104,0,2,5,212,0,2,7,80,0,2,9,52,0,2,10,212,0,2,12,224,0,2,13,240,0,2,15,24,0,2,16,52,0,2,17,228,0,2,19
,60,0,2,20,44,0,2,21,44,0,2,22,52,0,2,23,48,0,2,24,56,0,2,25,36,0,2,26,136,0,2,27,56,0,2,29,180,0,2,30
,84,0,2,30,204,0,2,32,124,0,2,33,104,0,2,34,172,0,2,36,76,0,2,37,48,0,2,38,72,0,2,39,136,0,2,40,244,0,2,41
,140,0,2,42,48,0,2,42,220,0,2,43,148,0,2,44,220,0,2,46,36,0,2,46,236,0,2,48,236,0,2,49,132,0,2,50,64,0,2,50
,252,0,2,51,184,0,2,52,116,0,2,53,36,0,2,54,244,0,2,57,32,0,2,58,140,0,2,58,212,0,2,59,12,0,2,59,136,0,2,60
,40,0,2,60,216,0,2,61,52,0,2,63,184,0,2,64,152,0,2,65,224,0,2,67,160,0,2,68,252,0,2,70,152,0,2,72,96,0,2,72
,244,0,2,73,204,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76
,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,76,188,0,2,0,112,0,0,3,16,6,0,0
,3,0,7,0,0,55,33,17,33,3,17,33,17,224,1,192,254,64,112,2,160,112,5,32,250,112,6,0,250,0,0,0,0,0,1,0,93,255,0,6
,163,5,128,0,29,0,0,1,20,7,1,17,33,50,22,20,6,35,33,34,38,52,54,51,33,17,1,38,53,52,62,1,51,33,50,30,1,6,163,43
,253,136,1,64,26,38,38,26,252,128,26,38,38,26,1,64,253,136,43,36,40,23,5,128,23,40,36,5,70,35,43,253,136,253,0,38,52,38,38,52
,38,3,0,2,120,43,35,23,27,8,8,27,0,0,1,0,0,255,0,6,0,5,128,0,43,0,0,1,17,20,14,2,34,46,2,52,62,2,51,50
,23,17,5,17,20,14,2,34,46,2,52,62,2,51,50,23,17,52,54,55,1,54,51,50,22,6,0,68,104,103,90,103,104,68,68,104,103,45,105,87
,253,0,68,104,103,90,103,104,68,68,104,103,45,105,87,38,30,3,64,12,16,40,56,5,32,251,160,50,78,43,21,21,43,78,100,78,43,21,39,2
,25,237,253,59,50,78,43,21,21,43,78,100,78,43,21,39,3,199,31,51,10,1,0,4,56,0,2,0,0,255,0,6,128,5,128,0,7,0,33,0
,0,0,16,0,32,0,16,0,32,1,20,6,35,34,39,1,6,35,34,36,38,2,16,18,54,36,32,4,22,18,21,20,7,1,22,4,128,254,249,254
,142,254,249,1,7,1,114,3,7,76,52,54,36,254,169,179,220,143,254,251,189,111,111,189,1,5,1,30,1,5,189,111,124,1,87,37,2,7,1,114
,1,7,254,249,254,142,254,249,254,128,52,76,38,1,86,124,111,189,1,5,1,30,1,5,189,111,111,189,254,251,143,220,179,254,169,37,0,0,3,0
,0,255,128,7,0,5,0,0,26,0,61,0,77,0,0,37,17,6,7,4,7,14,2,43,2,34,46,1,39,38,37,38,39,17,20,22,51,33,50,54
,17,60,2,46,3,35,33,34,6,21,20,23,22,23,30,4,59,2,50,62,3,55,54,55,62,1,55,17,20,6,35,33,34,38,53,17,52,54,51,33
,50,22,6,128,32,37,254,244,158,51,64,109,48,1,1,48,109,64,51,158,254,244,37,32,19,13,5,192,13,19,1,5,6,12,8,250,64,13,19,147
,193,208,6,58,34,55,46,20,1,1,20,46,55,34,58,6,208,193,54,93,128,94,66,250,64,66,94,94,66,5,192,66,94,32,3,0,36,30,206,132
,43,48,49,49,48,43,132,206,30,36,253,0,13,19,19,4,40,2,18,9,17,8,10,5,19,13,168,116,152,165,5,49,26,37,18,18,37,26,49,5
,165,152,43,145,96,251,192,66,94,94,66,4,64,66,94,94,0,0,1,0,0,255,128,7,0,5,128,0,28,0,0,4,34,39,1,46,4,53,52,54
,51,50,30,2,23,62,3,51,50,22,21,20,7,1,3,154,52,18,253,144,10,35,76,60,47,254,224,62,129,111,80,36,36,80,111,129,62,224,254,229
,253,145,128,18,2,90,8,36,95,100,142,67,220,248,43,73,64,36,36,64,73,43,248,220,221,229,253,168,0,0,1,0,0,255,173,6,128,5,224,0
,34,0,0,1,20,7,1,19,22,21,20,6,35,34,39,37,5,6,35,34,38,53,52,55,19,1,38,53,52,55,37,19,54,50,23,19,5,22,6,128
,26,254,149,86,1,21,20,19,21,254,63,254,63,22,18,21,21,2,86,254,148,25,56,1,246,225,19,60,19,225,1,246,56,3,121,22,26,254,158,254
,12,7,13,21,29,12,236,236,12,29,21,6,14,1,244,1,98,27,21,37,9,73,1,199,41,41,254,57,73,9,0,0,0,0,2,0,0,255,173,6
,128,5,224,0,9,0,43,0,0,9,1,37,11,1,5,1,3,37,5,1,20,7,1,19,22,21,20,35,34,39,37,5,6,35,34,38,53,52,55,19
,1,38,53,52,55,37,19,54,50,23,19,5,22,4,113,1,50,254,90,189,189,254,90,1,50,73,1,122,1,121,1,199,26,254,149,86,1,41,19,21
,254,63,254,63,22,18,21,21,2,86,254,148,25,56,1,246,225,19,60,19,225,1,246,56,2,20,1,41,62,1,126,254,130,62,254,215,254,91,199,199
,3,10,22,26,254,158,254,12,7,13,50,12,236,236,12,29,21,6,14,1,244,1,98,27,21,37,9,73,1,199,41,41,254,57,73,9,0,0,2,0
,0,255,128,5,0,5,128,0,21,0,29,0,0,37,20,6,35,33,34,38,53,52,62,3,51,22,32,55,50,30,3,0,16,6,32,38,16,54,32,5
,0,125,88,252,170,88,125,17,46,71,117,76,131,1,108,131,76,117,71,46,17,255,0,225,254,194,225,225,1,62,137,109,156,156,109,85,151,153,109,69
,128,128,69,109,153,151,3,193,254,194,225,225,1,62,225,0,0,0,11,0,0,255,0,7,128,5,128,0,15,0,31,0,47,0,63,0,79,0,95,0
,111,0,127,0,143,0,159,0,175,0,0,5,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59
,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,1,53,52,38,43
,1,34,6,29,1,20,22,59,1,50,54,1,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,17,52,38,35,33,34,6,21,17,20,22,51
,33,50,54,1,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43
,1,34,6,29,1,20,22,59,1,50,54,55,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,1,128,38,26,128,26,38,38,26,128,26,38,38
,26,128,26,38,38,26,128,26,38,38,26,128,26,38,38,26,128,26,38,4,0,38,26,253,0,26,38,38,26,3,0,26,38,252,0,38,26,128,26,38
,38,26,128,26,38,5,128,38,26,128,26,38,38,26,128,26,38,254,128,38,26,253,0,26,38,38,26,3,0,26,38,1,128,38,26,128,26,38,38,26
,128,26,38,38,26,128,26,38,38,26,128,26,38,38,26,128,26,38,38,26,128,26,38,128,94,66,249,192,66,94,94,66,6,64,66,94,64,128,26,38
,38,26,128,26,38,38,1,154,128,26,38,38,26,128,26,38,38,1,154,128,26,38,38,26,128,26,38,38,253,26,2,0,26,38,38,26,254,0,26,38
,38,4,154,128,26,38,38,26,128,26,38,38,251,154,128,26,38,38,26,128,26,38,38,3,26,2,0,26,38,38,26,254,0,26,38,38,254,154,128,26
,38,38,26,128,26,38,38,1,154,128,26,38,38,26,128,26,38,38,1,154,128,26,38,38,26,128,26,38,38,186,250,192,66,94,94,66,5,64,66,94
,94,0,4,0,0,0,0,6,128,5,128,0,15,0,31,0,47,0,63,0,0,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,25,1,20
,6,35,33,34,38,53,17,52,54,51,33,50,22,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,25,1,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,3,0,76,52,254,0,52,76,76,52,2,0,52,76,76,52,254,0,52,76,76,52,2,0,52,76,3,128,76,52,254,0,52,76,76
,52,2,0,52,76,76,52,254,0,52,76,76,52,2,0,52,76,2,0,254,128,52,76,76,52,1,128,52,76,76,2,204,254,128,52,76,76,52,1,128
,52,76,76,252,204,254,128,52,76,76,52,1,128,52,76,76,2,204,254,128,52,76,76,52,1,128,52,76,76,0,9,0,0,0,0,7,0,5,128,0
,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0,143,0,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51
,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51
,33,50,22,2,0,56,40,254,192,40,56,56,40,1,64,40,56,56,40,254,192,40,56,56,40,1,64,40,56,2,128,56,40,254,192,40,56,56,40,1
,64,40,56,253,128,56,40,254,192,40,56,56,40,1,64,40,56,2,128,56,40,254,192,40,56,56,40,1,64,40,56,2,128,56,40,254,192,40,56,56
,40,1,64,40,56,253,128,56,40,254,192,40,56,56,40,1,64,40,56,2,128,56,40,254,192,40,56,56,40,1,64,40,56,56,40,254,192,40,56,56
,40,1,64,40,56,1,32,192,40,56,56,40,192,40,56,56,1,216,192,40,56,56,40,192,40,56,56,253,216,192,40,56,56,40,192,40,56,56,3,216
,192,40,56,56,40,192,40,56,56,253,216,192,40,56,56,40,192,40,56,56,253,216,192,40,56,56,40,192,40,56,56,3,216,192,40,56,56,40,192,40
,56,56,253,216,192,40,56,56,40,192,40,56,56,1,216,192,40,56,56,40,192,40,56,56,0,0,6,0,0,0,0,7,0,5,128,0,15,0,31,0
,47,0,63,0,79,0,95,0,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50
,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34
,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,2,0,56,40,254,192,40,56,56,40,1,64,40,56,56
,40,254,192,40,56,56,40,1,64,40,56,5,0,56,40,252,64,40,56,56,40,3,192,40,56,251,0,56,40,254,192,40,56,56,40,1,64,40,56,5
,0,56,40,252,64,40,56,56,40,3,192,40,56,56,40,252,64,40,56,56,40,3,192,40,56,1,32,192,40,56,56,40,192,40,56,56,1,216,192,40
,56,56,40,192,40,56,56,253,216,192,40,56,56,40,192,40,56,56,3,216,192,40,56,56,40,192,40,56,56,253,216,192,40,56,56,40,192,40,56,56
,1,216,192,40,56,56,40,192,40,56,56,0,0,0,1,0,121,0,14,6,135,4,178,0,22,0,0,0,20,7,1,7,6,34,47,1,1,38,52,63
,1,54,50,23,9,1,54,50,31,1,6,135,28,253,44,136,28,80,28,136,254,150,28,28,136,28,80,28,1,38,2,144,28,80,28,136,3,242,80,28
,253,44,136,28,28,136,1,106,28,80,28,136,28,28,254,217,2,145,28,28,136,0,1,0,110,255,238,5,18,4,146,0,35,0,0,36,20,15,1,6
,34,39,9,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50,23,9,1,54,50,31,1,22,20,7,9,1,5,18,28,136,28,80,28,254,218
,254,218,28,80,28,136,28,28,1,38,254,218,28,28,136,28,80,28,1,38,1,38,28,80,28,136,28,28,254,218,1,38,254,80,28,136,28,28,1,38
,254,218,28,28,136,28,80,28,1,38,1,38,28,80,28,136,28,28,254,218,1,38,28,28,136,28,80,28,254,218,254,218,0,0,3,0,0,255,0,6
,128,5,128,0,35,0,43,0,68,0,0,1,21,20,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,52,54,59,1
,50,22,29,1,51,50,30,1,16,0,32,0,16,0,32,0,20,6,35,34,39,1,6,35,34,36,38,2,16,18,54,36,32,4,22,18,21,20,7,1
,4,0,19,13,224,19,13,64,13,19,224,13,19,19,13,224,19,13,64,13,19,224,13,19,128,254,249,254,142,254,249,1,7,1,114,3,7,75,53,54
,36,254,169,179,220,143,254,251,189,111,111,189,1,5,1,30,1,5,189,111,124,1,87,2,224,64,13,19,224,13,19,19,13,224,19,13,64,13,19,224
,13,19,19,13,224,19,230,1,114,1,7,254,249,254,142,254,249,254,181,106,75,38,1,86,124,111,189,1,5,1,30,1,5,189,111,111,189,254,251,143
,220,179,254,169,0,0,3,0,0,255,0,6,128,5,128,0,15,0,23,0,48,0,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,30,1
,16,0,32,0,16,0,32,0,20,6,35,34,39,1,6,35,34,36,38,2,16,18,54,36,32,4,22,18,21,20,7,1,4,0,19,13,253,192,13,19
,19,13,2,64,13,19,128,254,249,254,142,254,249,1,7,1,114,3,7,75,53,54,36,254,169,179,220,143,254,251,189,111,111,189,1,5,1,30,1,5
,189,111,124,1,87,2,224,64,13,19,19,13,64,13,19,19,230,1,114,1,7,254,249,254,142,254,249,254,181,106,75,38,1,86,124,111,189,1,5,1
,30,1,5,189,111,111,189,254,251,143,220,179,254,169,0,0,0,0,2,0,0,255,128,6,0,6,0,0,41,0,53,0,0,1,20,2,6,4,32,36
,38,2,53,52,18,55,54,22,23,22,6,7,14,1,21,20,30,2,50,62,2,53,52,38,39,46,1,55,62,1,23,22,18,1,17,20,6,34,38,53
,17,52,54,50,22,6,0,122,206,254,228,254,200,254,228,206,122,161,146,43,105,31,32,15,42,98,107,81,138,189,208,189,138,81,107,98,42,15,32,31
,106,42,146,161,253,128,76,104,76,76,104,76,2,128,156,254,228,206,122,122,206,1,28,156,182,1,66,109,32,14,43,42,105,32,74,214,121,104,189,138
,81,81,138,189,104,121,214,74,32,105,42,43,14,32,109,254,190,2,74,253,128,52,76,76,52,2,128,52,76,76,0,0,0,0,5,0,0,255,128,7
,0,5,128,0,15,0,31,0,47,0,63,0,79,0,0,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,17,20,6,43,1,34,38,53
,17,52,54,59,1,50,22,37,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,1,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,1
,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,1,0,18,14,192,14,18,18,14,192,14,18,1,128,18,14,192,14,18,18,14,192,14,18,1
,128,18,14,192,14,18,18,14,192,14,18,1,128,18,14,192,14,18,18,14,192,14,18,1,128,18,14,192,14,18,18,14,192,14,18,96,192,14,18,18
,14,192,14,18,18,114,254,192,14,18,18,14,1,64,14,18,18,242,253,192,14,18,18,14,2,64,14,18,18,1,114,252,64,14,18,18,14,3,192,14
,18,18,1,242,250,64,14,18,18,14,5,192,14,18,18,0,0,0,2,0,0,255,128,6,0,5,128,0,7,0,110,0,0,0,52,38,34,6,20,22
,50,1,21,20,6,15,1,6,7,22,23,22,20,7,14,1,35,34,47,1,6,7,6,7,6,43,1,34,38,47,1,38,39,7,6,35,34,39,38,39
,38,53,52,55,62,1,55,38,47,1,46,1,61,1,52,54,63,1,54,55,38,39,38,53,52,55,62,1,51,50,31,1,54,55,54,55,54,59,1,50
,22,31,1,22,23,55,54,51,50,23,22,23,22,21,20,7,14,1,7,22,31,1,30,1,4,0,150,212,150,150,212,2,150,16,12,185,19,20,35,72
,10,9,27,144,22,12,14,138,44,47,16,13,7,29,222,14,21,1,28,49,41,141,10,15,14,11,126,39,7,8,15,72,18,27,14,183,13,16,16,11
,186,14,25,40,67,10,9,26,145,22,13,13,138,44,47,16,13,7,29,222,14,21,1,28,49,41,142,9,15,13,12,129,36,7,8,15,72,18,26,15
,183,13,16,2,22,212,150,150,212,150,1,109,222,12,22,2,28,54,37,50,88,12,26,10,37,142,9,108,23,15,136,50,28,17,13,184,16,21,107,9
,11,114,54,10,13,12,11,21,91,25,50,49,27,2,21,13,222,12,22,2,28,46,46,57,81,12,12,10,13,36,143,10,107,23,15,136,50,28,17,13
,184,16,21,107,9,10,119,51,8,14,12,11,21,91,25,50,48,28,2,21,0,0,6,0,0,255,128,5,128,5,128,0,15,0,31,0,47,0,59,0
,67,0,103,0,0,1,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,5,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,5,17,20
,6,43,1,34,38,53,17,52,54,59,1,50,22,19,17,33,17,20,30,1,51,33,50,62,1,1,33,39,38,39,33,6,7,5,21,20,6,43,1,17
,20,6,35,33,34,38,53,17,35,34,38,61,1,52,54,51,33,55,62,1,51,33,50,22,31,1,33,50,22,2,0,18,14,64,14,18,18,14,64,14
,18,1,0,18,14,64,14,18,18,14,64,14,18,1,0,18,14,64,14,18,18,14,64,14,18,128,252,128,14,15,3,3,64,3,15,14,253,96,1,192
,48,7,10,254,195,10,7,3,111,18,14,96,94,66,252,192,66,94,96,14,18,18,14,1,53,70,15,78,40,1,64,40,78,15,70,1,53,14,18,3
,32,253,192,14,18,18,14,2,64,14,18,18,14,253,192,14,18,18,14,2,64,14,18,18,14,253,192,14,18,18,14,2,64,14,18,18,253,30,3,180
,252,76,22,37,17,17,37,4,74,117,9,2,2,9,149,64,14,18,252,76,83,121,117,83,3,184,18,14,64,14,18,167,37,52,52,37,167,18,0,0
,0,0,2,0,26,0,0,6,102,5,3,0,19,0,53,0,0,1,17,20,6,35,33,17,33,17,33,34,38,53,17,52,54,53,9,1,22,55,7,6
,7,35,34,39,9,1,6,39,38,47,1,38,54,55,1,54,50,31,1,53,52,54,59,1,50,22,21,17,23,30,1,5,128,38,26,254,128,255,0,254
,128,26,38,1,2,63,2,63,1,223,62,8,13,3,13,8,253,76,253,76,12,12,13,8,62,8,2,10,2,207,32,88,32,244,18,14,192,14,18,219
,10,2,2,32,254,32,26,38,1,128,254,128,38,26,1,224,1,4,1,1,218,254,38,2,65,74,9,2,7,2,65,253,191,8,1,2,9,74,10,27
,8,2,87,26,26,204,195,14,18,18,14,254,104,182,8,27,0,0,3,0,0,255,0,6,0,6,0,0,19,0,26,0,35,0,0,1,30,1,21,17
,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,5,188,28,40,56,40,250,192,40
,56,56,40,3,128,40,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40
,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,0,0,0,3,0,0,255,128,6,0,5,128,0,20,0,32,0,44,0,0,1
,17,20,6,35,33,34,38,61,1,52,54,59,1,17,52,54,59,1,50,22,0,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16
,18,36,32,4,3,128,18,14,254,192,14,18,18,14,224,18,14,64,14,18,1,160,146,250,254,216,250,146,146,250,1,40,250,1,114,206,254,159,254,94
,254,159,206,206,1,97,1,162,1,97,3,224,254,64,14,18,18,14,64,14,18,1,96,14,18,18,253,254,1,40,250,146,146,250,254,216,250,146,146,2
,95,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,2,0,50,0,0,7,78,5,0,0,17,0,67,0,0,1,53,3,46,1,43,1
,34,6,7,3,21,6,22,59,1,50,54,1,20,35,33,50,54,39,3,46,1,35,33,34,6,7,3,6,22,51,33,34,53,52,55,1,62,1,51,33
,34,6,15,1,6,22,59,1,50,54,47,1,46,1,35,33,50,22,23,1,22,4,87,24,1,20,13,186,13,20,1,24,1,18,12,244,12,18,2,246
,46,253,64,13,18,1,20,1,20,13,254,240,13,20,1,20,1,18,13,253,64,46,26,1,161,8,36,20,1,83,13,20,1,15,1,18,13,166,13,18
,1,15,1,20,13,1,83,20,36,8,1,161,26,2,28,4,1,64,13,19,19,13,254,192,4,12,16,16,254,57,73,19,13,1,0,13,19,19,13,255
,0,13,19,73,54,62,4,20,19,28,19,13,192,14,18,18,14,192,13,19,28,19,251,236,62,0,4,0,0,0,0,6,128,6,0,0,7,0,15,0
,37,0,61,0,0,36,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,19,17,20,6,35,33,34,38,53,17,52,54,51,33,23,22,50,63,1
,33,50,22,1,22,7,1,6,34,39,1,38,55,54,51,33,17,52,54,51,33,50,22,21,17,33,50,5,0,38,52,38,38,52,1,38,38,52,38,38
,52,166,56,40,250,64,40,56,56,40,1,209,135,58,156,58,136,1,208,40,56,254,187,17,31,254,64,18,54,18,254,64,31,17,17,42,1,0,38,26
,1,0,26,38,1,0,42,166,52,38,38,52,38,38,52,38,38,52,38,1,32,254,192,40,56,56,40,1,64,40,56,136,56,56,136,56,2,17,41,29
,254,64,19,19,1,192,29,41,39,1,192,26,38,38,26,254,64,0,3,0,0,255,128,6,0,5,128,0,24,0,36,0,48,0,0,1,20,7,1,6
,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,2,32,14,1,16,30,1,32,62,1,16,38,4,16,2,4,32,36,2,16
,18,36,32,4,4,96,10,254,193,11,24,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,204,254,216,250,146,146,250,1,40,250,146,146,1
,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,96,12,12,254,193,9,9,1,64,16,19,20,1,96,14,18,18,14,254,160,18,2,50
,146,250,254,216,250,146,146,250,1,40,250,189,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,3,0,0,255,128,6,0,5,128,0
,24,0,36,0,48,0,0,1,6,43,1,17,20,6,43,1,34,38,53,17,35,34,38,53,52,55,1,54,50,23,1,22,2,32,14,1,16,30,1,32
,62,1,16,38,4,16,2,4,32,36,2,16,18,36,32,4,4,94,8,22,192,18,14,192,14,18,192,14,18,10,1,63,11,24,11,1,64,15,210,254
,216,250,146,146,250,1,40,250,146,146,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,148,20,254,160,14,18,18,14,1,96,18,14
,12,12,1,63,9,9,254,192,16,1,249,146,250,254,216,250,146,146,250,1,40,250,189,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0
,0,0,0,6,0,5,0,0,13,0,35,0,0,1,33,46,1,39,3,33,3,14,1,7,33,23,33,37,17,20,6,35,33,34,38,53,17,52,55,19
,62,1,51,33,50,22,23,19,22,3,255,1,60,1,3,1,212,253,60,212,1,3,1,1,60,95,1,64,2,96,38,26,250,128,26,38,25,238,10,53
,26,3,64,26,53,10,238,25,2,64,3,11,2,1,240,254,16,3,11,2,192,162,254,30,26,38,38,26,1,226,62,61,2,40,25,34,34,25,253,216
,61,0,3,0,0,255,128,6,0,5,128,0,15,0,27,0,39,0,0,0,20,7,1,6,35,34,39,38,53,17,52,55,54,23,1,22,16,46,1,32
,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16,18,36,32,4,4,160,32,253,224,15,17,16,16,32,32,33,31,2,32,160,146,250,254,216,250
,146,146,250,1,40,250,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,165,74,18,254,192,9,8,19,37,2,128,37,19,18,19,254
,192,203,1,40,250,146,146,250,254,216,250,146,146,2,95,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,1,0,0,255,128,6,0,5,128,0
,51,0,0,1,17,20,6,35,33,34,39,38,63,1,38,35,34,14,2,20,30,2,51,50,54,55,54,55,50,31,1,30,1,7,6,4,35,34,36,38
,2,16,18,54,36,51,50,4,23,55,54,23,22,6,0,38,26,254,64,42,17,17,31,138,148,201,104,189,138,81,81,138,189,104,119,212,73,7,16,15
,10,137,9,1,8,109,254,202,172,156,254,228,206,122,122,206,1,28,156,147,1,19,107,130,29,41,39,5,0,254,64,26,38,40,39,30,138,137,81,138
,189,208,189,138,81,104,95,10,2,9,138,8,25,10,132,145,122,206,1,28,1,56,1,28,206,122,111,101,129,31,17,17,0,0,2,0,0,255,128,6
,0,5,128,0,36,0,71,0,0,1,20,7,2,0,33,34,36,39,7,6,34,38,53,17,52,54,51,33,50,22,20,15,1,30,1,51,50,54,55,54
,55,54,59,1,50,22,19,17,20,6,35,33,34,38,52,63,1,38,35,34,6,7,6,7,6,43,1,34,38,61,1,18,0,33,50,4,23,55,54,50
,22,5,231,1,64,254,104,254,238,146,254,239,107,129,19,52,38,38,26,1,192,26,38,19,137,71,180,97,134,232,70,11,42,8,22,192,13,19,25,38
,26,254,64,26,38,19,138,148,201,134,232,70,11,42,8,22,199,13,19,65,1,154,1,19,146,1,20,107,130,19,52,38,1,224,5,2,254,244,254,179
,110,102,129,19,38,26,1,192,26,38,38,52,19,137,66,72,130,114,17,100,23,19,3,19,254,64,26,38,38,52,19,138,137,130,114,17,100,23,19,13
,7,1,12,1,77,111,101,129,19,38,0,0,0,0,8,0,0,0,0,7,0,5,128,0,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0
,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,53,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,53,21,20,6,43,1,34
,38,61,1,52,54,59,1,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,53,21,20,6,35,33,34,38,61,1,52,54,51,33,50
,22,53,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,1,128,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13
,19,4,128,19,13,252,64,13,19,19,13,3,192,13,19,19,13,252,64,13,19,19,13,3,192,13,19,19,13,252,64,13,19,19,13,3,192,13,19,128
,19,13,250,64,13,19,19,13,5,192,13,19,128,94,66,250,64,66,94,94,66,5,192,66,94,1,96,64,13,19,19,13,64,13,19,19,243,64,13,19
,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,253,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,243,64,13
,19,19,13,64,13,19,19,253,51,3,64,13,19,19,13,252,192,13,19,19,4,77,251,192,66,94,94,66,4,64,66,94,94,0,2,0,0,0,0,4
,128,5,128,0,7,0,31,0,0,1,33,53,52,38,34,6,21,1,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52,0,32,0,29,1,51,50
,22,1,64,2,0,150,212,150,3,64,56,40,252,64,40,56,56,40,32,1,8,1,112,1,8,32,40,56,3,0,192,106,150,150,106,254,224,253,192,40
,56,56,40,2,64,40,56,192,184,1,8,254,248,184,192,56,0,0,2,0,64,255,128,7,0,5,128,0,17,0,55,0,0,1,20,7,17,20,6,43
,1,34,38,53,17,38,53,52,54,50,22,5,17,20,6,7,6,35,34,46,2,35,34,5,6,35,34,38,53,17,52,55,54,55,54,51,50,22,23,22
,51,50,62,2,51,50,22,1,64,64,19,13,64,13,19,64,75,106,75,5,192,25,27,215,154,61,125,92,139,73,192,254,240,17,16,26,38,31,21,58
,236,185,107,186,126,38,50,54,127,93,83,13,26,38,5,0,72,38,251,14,13,19,19,13,4,242,38,72,53,75,75,117,253,5,25,27,14,116,44,52
,44,146,9,38,26,2,230,32,23,14,29,120,58,59,19,42,52,42,38,0,0,0,1,0,0,0,0,6,128,5,128,0,75,0,0,1,20,15,2,14
,1,35,21,20,6,43,1,34,38,53,17,52,54,59,1,50,22,29,1,50,22,23,55,54,53,52,2,36,32,4,2,21,20,31,1,62,1,51,53,52
,54,59,1,50,22,21,17,20,6,43,1,34,38,61,1,34,38,47,2,38,53,52,18,54,36,32,4,22,18,6,128,60,20,185,22,137,88,18,14,64
,14,18,18,14,64,14,18,71,118,34,68,29,176,254,215,254,178,254,215,176,29,68,34,118,71,18,14,64,14,18,18,14,64,14,18,88,137,22,185,20
,60,134,224,1,52,1,76,1,52,224,134,2,138,166,148,49,33,83,107,32,14,18,18,14,2,64,14,18,18,14,32,71,60,12,95,98,148,1,6,156
,156,254,250,148,98,95,12,60,71,32,14,18,18,14,253,192,14,18,18,14,32,107,83,33,49,148,166,151,1,24,205,122,122,205,254,232,0,0,1,0
,0,0,32,3,0,4,224,0,19,0,0,1,17,20,6,34,39,1,33,34,38,53,17,52,54,51,33,1,54,50,22,3,0,38,52,19,254,179,254,250
,26,38,38,26,1,6,1,77,19,52,38,4,160,251,192,26,38,19,1,77,38,26,1,128,26,38,1,77,19,38,0,0,0,0,2,0,0,0,32,4
,128,4,224,0,19,0,45,0,0,1,17,20,6,34,39,1,33,34,38,53,17,52,54,51,33,1,54,50,22,0,20,6,7,6,35,34,38,53,52,62
,3,52,46,3,53,52,54,51,50,23,22,3,0,38,52,19,254,179,254,250,26,38,38,26,1,6,1,77,19,52,38,1,128,85,70,10,15,26,38,24
,34,34,24,24,34,34,24,38,26,15,10,70,4,160,251,192,26,38,19,1,77,38,26,1,128,26,38,1,77,19,38,254,18,152,131,28,5,37,27,21
,29,21,25,47,66,47,25,21,29,21,27,37,5,27,0,0,0,0,4,0,0,255,185,6,128,5,71,0,19,0,45,0,73,0,107,0,0,1,17,20
,6,34,39,1,33,34,38,53,17,52,54,51,33,1,54,50,22,0,20,6,7,6,35,34,38,53,52,62,3,52,46,3,53,52,54,51,50,23,22,4
,16,2,7,6,35,34,38,53,52,55,54,55,62,1,52,38,39,38,39,38,53,52,54,51,50,23,22,4,16,2,7,6,35,34,38,53,52,55,62,1
,55,54,55,54,18,16,2,39,38,39,46,1,39,38,53,52,54,51,50,23,22,3,0,38,52,19,254,179,254,250,26,38,38,26,1,6,1,77,19,52
,38,1,128,85,70,10,15,26,38,24,34,34,24,24,34,34,24,38,26,15,10,70,1,85,170,140,13,12,27,38,39,56,20,74,83,83,74,20,56,39
,38,26,13,13,140,1,170,254,211,13,13,26,38,39,7,31,7,46,36,123,138,138,123,36,46,7,31,7,39,38,26,13,13,211,4,160,251,192,26,38
,19,1,77,38,26,1,128,26,38,1,77,19,38,254,18,152,131,28,5,37,27,21,29,21,25,47,66,47,25,21,29,21,27,37,5,27,55,254,206,254
,253,59,5,38,26,39,20,29,15,54,163,184,163,54,15,29,20,39,26,38,5,59,182,254,52,254,127,91,5,38,26,36,23,4,13,4,25,26,91,1
,16,1,50,1,16,91,26,25,4,13,4,23,36,26,38,5,91,0,12,0,0,0,0,5,128,5,128,0,3,0,7,0,11,0,15,0,19,0,23,0
,27,0,31,0,35,0,47,0,51,0,55,0,0,1,21,35,53,19,21,35,53,33,21,35,53,1,33,17,33,17,33,17,33,1,33,17,33,1,17,33
,17,1,21,35,53,33,21,35,53,19,17,33,53,35,17,35,17,33,21,51,53,1,17,33,17,33,17,33,17,1,128,128,128,128,3,128,128,252,128,1
,128,254,128,1,128,254,128,3,0,1,128,254,128,255,0,253,128,4,128,128,1,128,128,128,254,128,128,128,1,128,128,253,128,253,128,5,128,253,128,1
,128,128,128,3,0,128,128,128,128,252,1,1,127,1,128,1,128,254,128,1,128,253,128,253,128,2,128,254,0,128,128,128,128,2,0,254,128,128,254,128
,2,128,128,128,3,0,253,128,2,128,253,128,2,128,0,0,0,0,16,0,0,0,0,7,0,5,128,0,3,0,7,0,11,0,15,0,19,0,23,0
,27,0,31,0,35,0,39,0,43,0,47,0,51,0,55,0,59,0,63,0,0,51,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17
,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17,51,19,35,17
,51,19,35,17,51,63,63,63,63,32,32,94,31,31,157,31,31,157,62,62,126,31,31,63,31,31,63,31,31,157,63,63,157,63,63,126,63,63,126,63
,63,94,63,63,189,94,94,63,32,32,94,63,63,5,128,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250
,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,129,5,127,250,128,5,128,0,0,0,2,0
,0,255,149,5,235,5,128,0,7,0,29,0,0,0,52,38,34,6,20,22,50,1,20,7,1,6,35,34,39,1,46,1,53,17,52,54,51,33,50,22
,23,1,22,1,192,75,106,75,75,106,4,118,37,254,21,39,52,53,37,253,53,38,53,76,52,1,160,53,128,38,2,203,37,4,11,106,75,75,106,75
,254,64,53,37,254,20,37,37,2,204,37,128,53,1,160,52,76,53,38,253,54,39,0,0,0,0,3,0,0,255,149,7,107,5,128,0,7,0,29,0
,53,0,0,0,52,38,34,6,20,22,50,1,20,7,1,6,35,34,39,1,46,1,53,17,52,54,51,33,50,22,23,1,22,5,20,7,1,6,35,34
,38,39,1,54,53,52,39,1,46,1,35,51,50,22,23,1,22,1,192,75,106,75,75,106,4,118,37,254,21,39,52,53,37,253,53,38,53,76,52,1
,160,53,128,38,2,203,37,1,128,37,254,21,39,52,36,46,30,1,214,37,37,253,53,38,128,53,224,53,128,38,2,203,37,4,11,106,75,75,106,75
,254,64,53,37,254,20,37,37,2,204,37,128,53,1,160,52,76,53,38,253,54,39,52,53,37,254,20,37,28,31,1,214,37,53,52,39,2,202,38,53
,53,38,253,54,39,0,3,0,10,255,128,6,121,5,128,0,84,0,100,0,116,0,0,1,22,7,1,14,1,35,33,34,38,39,38,55,52,54,55,54
,38,55,62,2,55,62,1,55,54,38,55,62,1,55,62,1,55,54,38,55,62,1,55,62,1,55,54,38,55,62,2,55,62,6,23,7,54,51,33,50
,22,7,1,14,1,35,33,34,7,6,23,22,51,33,50,54,55,1,54,39,22,5,6,22,51,33,50,54,63,1,54,38,35,33,34,6,7,3,6,22
,51,33,50,54,63,1,54,38,35,33,34,6,7,6,103,40,22,254,237,19,115,65,252,101,77,143,28,24,22,6,1,1,8,1,2,12,21,6,23,44
,8,3,5,2,3,28,3,21,42,4,1,7,4,4,36,4,19,47,4,1,8,2,2,14,22,6,8,17,13,19,20,33,39,28,1,38,13,2,249,74
,80,22,254,238,36,71,93,252,155,27,11,11,10,24,120,3,155,29,54,8,1,44,7,2,38,251,237,4,12,14,2,96,13,25,4,21,4,12,14,253
,160,13,25,4,104,4,12,14,2,96,13,25,4,21,4,12,14,253,160,13,25,4,4,34,57,72,252,118,64,87,107,78,67,60,4,46,14,8,27,6
,11,20,27,10,38,107,38,10,40,8,11,34,6,36,112,34,9,46,5,13,35,5,26,117,38,8,35,9,8,20,26,8,12,37,33,39,25,22,1,6
,3,9,112,74,252,118,119,69,15,16,27,70,31,26,3,219,22,35,15,30,13,19,19,13,64,13,19,19,13,254,192,13,19,19,13,64,13,19,19,13
,0,0,1,0,0,255,151,5,0,5,128,0,28,0,0,1,50,23,30,1,21,17,20,6,7,6,35,34,39,9,1,6,35,34,39,46,1,53,17,52
,54,55,54,51,4,140,23,21,33,39,39,33,19,25,48,35,254,71,254,71,36,47,23,21,33,39,39,33,21,23,5,128,9,13,56,34,250,247,34,56
,13,8,32,1,168,254,88,33,9,13,56,34,5,9,34,56,13,9,0,0,0,0,4,0,0,255,128,6,128,5,128,0,3,0,12,0,20,0,60,0
,0,41,1,17,33,17,33,17,35,34,38,61,1,33,0,52,38,34,6,20,22,50,55,17,20,6,43,1,21,20,6,35,33,34,38,61,1,35,34,38
,53,17,52,54,59,1,17,52,54,51,33,50,22,31,1,30,1,21,17,51,50,22,1,128,3,128,252,128,3,128,160,40,56,253,128,4,128,38,52,38
,38,52,166,19,13,224,56,40,252,64,40,56,224,13,19,113,79,64,56,40,2,160,40,96,28,152,28,40,64,79,113,1,0,1,128,1,128,56,40,160
,253,38,52,38,38,52,38,64,254,96,13,19,160,40,56,56,40,160,19,13,1,160,79,113,2,32,40,56,40,28,152,28,96,40,255,0,113,0,3,0
,0,255,128,7,128,6,0,0,7,0,33,0,41,0,0,0,50,22,20,6,34,38,52,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,59,1
,55,62,1,51,33,50,22,31,1,0,32,0,16,0,32,0,16,3,73,238,169,169,238,169,3,224,106,150,150,106,250,128,106,150,150,106,224,51,19,101
,53,2,0,53,101,19,51,253,103,1,114,1,7,254,249,254,142,254,249,3,96,169,238,169,169,238,2,73,150,106,252,128,106,150,150,106,3,128,106,150
,136,49,71,71,49,136,251,128,1,7,1,114,1,7,254,249,254,142,0,0,0,0,2,0,0,255,128,6,128,5,128,0,7,0,80,0,0,1,3,50
,22,51,50,55,38,1,55,62,4,55,19,1,59,1,22,23,19,22,18,23,30,1,23,22,23,30,1,23,22,21,20,6,21,34,38,35,34,4,7,52
,63,1,50,62,5,53,52,46,1,39,37,6,2,21,20,30,3,51,22,21,20,7,34,38,35,34,6,35,6,2,213,170,33,207,57,19,38,87,252,202
,2,23,66,48,51,38,12,237,1,24,75,53,8,3,205,33,146,41,15,86,29,20,15,19,138,15,6,1,63,254,64,76,254,234,39,4,131,1,23,8
,21,9,13,5,62,82,1,254,62,26,101,28,59,38,76,3,1,2,58,233,58,8,37,3,80,3,209,254,62,4,2,253,252,118,79,7,11,10,19,39
,31,2,104,2,212,14,7,254,32,78,254,153,95,34,221,58,45,12,15,29,6,38,19,5,17,4,16,14,1,43,35,28,5,2,7,6,10,12,8,16
,161,194,3,2,58,254,237,25,22,31,18,9,8,19,39,9,18,20,8,14,0,0,3,0,0,255,128,5,128,5,128,0,21,0,43,0,97,0,0,37
,22,51,32,17,52,39,46,4,35,34,7,20,6,21,20,6,30,1,3,22,51,50,62,2,53,52,46,2,35,34,7,20,22,21,20,6,21,20,1,55
,62,1,55,62,4,60,1,53,16,39,46,4,47,1,54,36,51,50,22,51,50,30,3,21,20,14,3,7,30,1,21,20,14,3,35,34,38,35,34,4
,2,43,74,66,1,120,41,27,69,66,95,73,58,73,28,1,2,1,8,6,42,67,82,122,98,51,58,100,116,66,50,80,8,1,253,228,2,15,140,36
,7,11,6,5,1,22,4,36,53,46,51,5,4,98,1,228,131,23,90,23,70,133,124,92,56,33,45,84,62,53,154,205,70,117,159,168,92,44,176,44
,106,254,110,15,32,1,79,114,66,44,60,33,17,4,10,53,212,52,8,119,74,93,2,214,7,26,63,116,84,70,105,59,28,13,50,202,51,27,106,26
,46,252,112,94,4,24,15,12,30,37,28,47,21,50,5,3,214,43,8,13,9,5,4,1,83,2,19,1,26,58,84,125,75,52,87,57,58,32,24,35
,198,149,100,159,102,69,28,6,22,0,1,0,0,255,128,4,0,5,128,0,58,0,0,21,55,62,2,55,54,55,54,26,1,39,53,46,2,39,55,30
,2,51,50,62,1,55,6,7,14,1,7,14,3,7,6,2,7,14,3,31,1,22,23,6,7,34,6,35,34,38,35,38,35,34,6,17,22,79,65,27
,28,13,1,122,106,1,24,61,78,19,19,33,174,125,58,48,101,141,28,5,14,30,143,37,8,12,6,9,2,27,121,17,2,22,18,14,1,1,17,168
,3,13,11,43,11,29,116,28,138,68,51,184,126,85,7,19,19,14,35,66,7,2,52,2,11,35,25,13,11,5,3,103,2,9,5,5,9,2,39,50
,10,37,15,19,47,33,58,13,148,253,225,84,9,98,82,85,15,18,4,27,44,55,3,20,2,18,0,0,0,0,2,0,0,255,128,6,250,5,128,0
,27,0,125,0,0,37,50,22,15,1,6,34,47,1,38,54,59,1,17,35,34,38,63,1,54,50,31,1,22,6,43,1,17,1,23,22,51,50,54,51
,50,22,51,33,50,22,62,2,63,1,50,22,51,22,21,20,7,6,7,38,39,46,2,39,46,3,6,35,34,38,34,6,7,6,23,20,18,21,20,6
,22,23,30,1,23,22,21,20,15,1,6,36,35,34,6,35,38,61,1,62,2,55,54,17,52,2,61,1,52,54,52,46,1,39,38,35,34,6,7,14
,2,7,38,39,17,6,208,33,18,20,126,20,58,20,126,20,18,33,80,80,33,18,20,126,20,58,20,126,20,18,33,80,249,209,54,12,199,44,176,44
,36,143,36,1,37,6,30,11,21,14,8,42,4,20,4,2,5,39,29,25,29,3,16,13,1,6,12,19,7,29,2,17,99,50,78,32,9,1,4,5
,5,10,40,168,36,5,3,34,76,254,228,65,50,202,51,3,17,89,108,24,19,6,1,2,4,3,11,151,33,120,20,19,30,33,26,42,14,128,37,26
,162,26,26,162,26,37,4,0,37,26,162,26,26,162,26,37,252,0,4,255,27,5,4,1,1,1,5,13,11,1,1,112,224,80,29,14,4,44,84,9
,78,69,1,8,9,3,2,1,1,4,4,81,55,94,253,180,161,16,111,72,33,21,43,16,40,10,14,15,1,2,20,18,51,1,9,27,32,26,14,42
,1,85,101,1,148,101,117,2,27,23,28,20,4,12,24,14,13,119,103,2,26,18,1,127,0,0,2,0,0,255,3,6,0,5,128,0,97,0,149,0
,0,19,23,22,51,50,54,51,50,36,4,23,22,63,1,50,22,51,22,21,20,7,6,7,38,39,46,2,53,38,39,38,35,34,38,34,6,7,6,31
,1,53,20,30,1,21,20,6,22,23,30,1,23,22,21,20,15,1,6,36,35,34,6,35,38,61,1,62,2,55,62,2,52,38,53,52,38,53,52,62
,1,46,1,39,38,35,34,6,7,14,2,7,38,39,17,1,50,30,2,23,22,20,7,14,3,35,34,46,1,52,54,53,33,20,22,20,14,1,35,34
,46,2,39,38,52,55,62,3,51,50,30,1,20,6,21,33,52,38,52,62,1,81,54,12,199,44,176,44,70,1,97,1,0,119,33,23,42,4,20,4
,2,5,39,29,25,29,3,16,14,10,17,5,61,30,126,80,108,42,9,1,1,2,1,5,5,10,40,168,36,5,3,34,76,254,228,65,50,202,51,3
,17,89,108,24,7,9,3,1,5,1,1,1,5,4,11,151,41,244,16,19,30,33,26,42,14,5,30,12,60,55,64,4,26,26,4,64,55,60,12,13
,15,5,3,252,0,3,5,15,13,12,60,55,64,4,26,26,4,64,55,60,12,13,15,5,3,4,0,3,5,15,5,127,27,5,4,2,1,4,1,32
,1,1,112,224,80,29,14,4,44,84,9,77,70,1,13,6,2,2,4,5,81,55,152,52,55,198,162,72,16,111,72,33,21,43,16,40,10,14,15,1
,2,20,18,51,1,9,27,32,26,14,16,116,175,135,172,3,7,29,8,7,74,72,81,54,5,12,27,11,12,119,104,2,26,18,1,127,250,255,39,44
,54,3,21,56,21,3,54,44,39,21,36,31,35,2,2,35,31,36,21,39,44,54,3,21,56,21,3,54,44,39,21,36,31,35,2,2,35,31,36,21
,0,0,4,0,0,0,0,7,0,5,128,0,15,0,31,0,47,0,63,0,0,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20
,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52
,54,51,33,50,22,7,0,38,26,249,128,26,38,38,26,6,128,26,38,254,128,38,26,251,0,26,38,38,26,5,0,26,38,1,0,38,26,250,0,26
,38,38,26,6,0,26,38,254,128,38,26,251,128,26,38,38,26,4,128,26,38,192,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26
,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,0,0,4,0,0,0,0,7,0,5,128,0,15,0,31,0
,47,0,63,0,0,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20
,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,7,0,38,26,249,128,26,38,38,26,6
,128,26,38,254,128,38,26,252,128,26,38,38,26,3,128,26,38,1,0,38,26,250,128,26,38,38,26,5,128,26,38,254,128,38,26,253,128,26,38,38
,26,2,128,26,38,192,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128
,26,38,38,26,128,26,38,38,0,0,4,0,0,0,0,7,0,5,128,0,15,0,31,0,47,0,63,0,0,37,21,20,6,35,33,34,38,61,1,52
,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20
,6,35,33,34,38,61,1,52,54,51,33,50,22,7,0,38,26,249,128,26,38,38,26,6,128,26,38,38,26,251,0,26,38,38,26,5,0,26,38,38
,26,250,0,26,38,38,26,6,0,26,38,38,26,251,128,26,38,38,26,4,128,26,38,192,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26
,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,0,0,0,0,4,0,0,0,0,7,0,5,128,0
,15,0,31,0,47,0,63,0,0,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50
,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,7,0,38,26,249,128,26
,38,38,26,6,128,26,38,38,26,249,128,26,38,38,26,6,128,26,38,38,26,249,128,26,38,38,26,6,128,26,38,38,26,249,128,26,38,38,26,6
,128,26,38,192,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128,26,38,38,26,128,26,38,38,1,102,128,26,38
,38,26,128,26,38,38,0,0,0,0,8,0,0,0,0,7,0,5,128,0,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0,0,37,21,20
,6,43,1,34,38,61,1,52,54,59,1,50,22,17,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,17,21,20,6,43,1,34,38,61,1,52
,54,59,1,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,21,20
,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52
,54,51,33,50,22,1,0,19,13,192,13,19,19,13,192,13,19,19,13,192,13,19,19,13,192,13,19,19,13,192,13,19,19,13,192,13,19,6,0,19
,13,250,192,13,19,19,13,5,64,13,19,250,0,19,13,192,13,19,19,13,192,13,19,6,0,19,13,250,192,13,19,19,13,5,64,13,19,19,13,250
,192,13,19,19,13,5,64,13,19,19,13,250,192,13,19,19,13,5,64,13,19,224,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13
,19,19,1,115,192,13,19,19,13,192,13,19,19,252,243,192,13,19,19,13,192,13,19,19,4,115,192,13,19,19,13,192,13,19,19,252,243,192,13,19
,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,0,0,5,0,0,0,0,7,0,5,128,0
,15,0,31,0,47,0,63,0,79,0,0,1,17,20,6,35,34,39,1,38,52,55,1,54,51,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51
,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,1,128,19,13,14,9,254,224,9,9,1,32,9,14,13,19,5,128,19,13,249,64,13,19,19,13,6,192,13
,19,19,13,251,192,13,19,19,13,4,64,13,19,19,13,251,192,13,19,19,13,4,64,13,19,19,13,249,64,13,19,19,13,6,192,13,19,3,224,253
,192,13,19,9,1,32,9,28,9,1,32,9,19,252,243,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,1,115,192,13,19
,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,0,5,0,0,0,0,7,0,5,128,0,15,0,31,0,47,0,63,0,79,0,0,0
,20,7,1,6,35,34,38,53,17,52,54,51,50,23,9,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61
,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1
,96,9,254,224,9,14,13,19,19,13,14,9,1,32,5,169,19,13,249,64,13,19,19,13,6,192,13,19,19,13,251,192,13,19,19,13,4,64,13,19
,19,13,251,192,13,19,19,13,4,64,13,19,19,13,249,64,13,19,19,13,6,192,13,19,2,206,28,9,254,224,9,19,13,2,64,13,19,9,254,224
,254,9,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13,192,13,19,19,1,115,192,13,19,19,13
,192,13,19,19,0,0,1,0,0,0,0,7,0,5,0,0,31,0,0,1,17,20,7,6,35,34,39,1,21,20,6,35,33,34,38,53,17,52,54,51
,33,50,22,29,1,1,54,51,50,23,22,7,0,39,13,12,27,18,254,109,169,119,253,64,119,169,169,119,2,192,119,169,1,147,18,27,12,13,39,4
,160,251,192,42,17,5,19,1,147,166,119,169,169,119,2,192,119,169,169,119,165,1,146,19,5,17,0,0,0,0,4,0,0,255,128,7,128,5,128,0
,7,0,14,0,30,0,46,0,0,0,20,6,34,38,52,54,50,1,17,33,53,1,23,9,1,33,34,6,21,17,20,22,51,33,50,54,53,17,52,38
,23,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,128,112,160,112,112,160,4,112,250,128,1,64,160,2,0,2,0,249,192,13,19,19,13
,6,64,13,19,19,147,94,66,249,192,66,94,94,66,6,64,66,94,4,16,160,112,112,160,112,253,192,254,64,192,1,64,160,2,0,1,32,19,13,251
,64,13,19,19,13,4,192,13,19,32,251,64,66,94,94,66,4,192,66,94,94,0,4,0,0,255,128,5,235,5,107,0,6,0,20,0,25,0,37,0
,0,33,55,39,7,21,51,21,1,52,35,34,7,1,6,21,20,51,50,55,1,54,39,9,1,33,17,1,20,15,1,1,55,54,51,50,31,1,22,1
,107,91,235,91,128,2,118,22,10,7,253,226,7,22,10,7,2,30,7,54,1,160,252,192,254,96,5,235,37,166,254,96,166,36,54,53,38,235,37,91
,235,91,107,128,3,160,22,7,253,226,7,10,22,7,2,30,7,202,254,96,252,192,1,160,2,224,53,37,166,1,160,165,38,38,234,39,0,0,2,0
,0,255,128,4,0,5,128,0,7,0,23,0,0,0,52,38,34,6,20,22,50,1,20,7,1,14,1,34,38,39,1,38,53,52,0,32,0,3,0,150
,212,150,150,212,1,150,33,254,148,16,63,72,63,15,254,147,33,1,44,1,168,1,44,3,22,212,150,150,212,150,1,0,109,70,252,250,33,38,38,33
,3,6,70,109,212,1,44,254,212,0,2,0,0,255,128,6,0,5,128,0,7,0,19,0,0,37,17,34,14,1,16,30,1,0,16,2,4,32,36,2
,16,18,36,32,4,3,0,148,250,146,146,250,3,148,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,96,4,64,146,250,254,216,250,146,2,241
,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,2,0,0,0,0,4,0,5,192,0,21,0,45,0,0,1,52,39,46,3,39,38
,34,7,14,3,7,6,21,20,22,50,54,37,20,0,32,0,53,52,55,62,3,55,62,1,50,22,23,30,3,23,22,2,0,20,1,29,22,28,7,4
,34,4,7,28,22,29,1,20,75,106,75,2,0,254,212,254,88,254,212,81,6,113,89,110,28,9,50,52,51,8,28,110,89,113,6,81,1,128,36,33
,1,43,33,55,23,16,16,23,55,33,43,1,33,36,53,75,75,181,212,254,212,1,44,212,145,130,9,163,139,217,93,30,34,34,30,93,217,139,163,9
,127,0,5,0,0,0,0,6,248,5,128,0,6,0,14,0,57,0,62,0,72,0,0,1,55,39,7,21,51,21,0,38,7,1,6,22,55,1,19,21
,20,6,35,33,34,38,53,17,52,54,51,33,50,23,22,23,22,15,1,6,39,38,35,33,34,6,21,17,20,22,51,33,50,54,61,1,52,63,1,54
,22,3,9,1,33,17,1,7,1,55,54,50,31,1,22,20,3,120,116,152,116,96,2,0,32,17,254,162,17,32,17,1,94,81,169,119,252,192,119,169
,169,119,3,64,63,54,15,3,3,12,49,14,18,23,22,252,192,66,94,94,66,3,64,66,94,9,64,15,40,96,1,32,253,96,254,224,4,92,92,254
,224,92,28,80,28,152,28,1,96,116,152,116,56,96,2,192,32,17,254,162,17,32,17,1,94,253,207,190,119,169,169,119,3,64,119,169,25,7,16,17
,12,49,14,6,6,94,66,252,192,66,94,94,66,126,13,9,64,15,16,2,205,254,224,253,96,1,32,2,28,92,1,32,92,28,28,152,28,80,0,0
,0,0,2,0,0,0,0,6,128,6,0,0,43,0,90,0,0,1,17,20,6,35,33,34,38,53,17,52,54,51,33,49,50,22,21,20,7,6,7,6
,43,1,34,6,21,17,20,22,51,33,50,54,61,1,52,55,54,55,54,23,22,19,1,6,35,34,39,38,61,1,35,32,7,6,19,22,7,6,35,34
,39,46,4,53,52,62,7,59,1,53,52,55,54,51,50,23,1,22,20,5,128,169,119,252,192,119,169,169,119,0,255,13,19,26,77,56,10,6,112,66
,94,94,66,3,64,66,94,18,28,26,16,19,21,237,254,128,18,27,12,13,39,160,254,189,115,119,45,3,23,8,4,16,10,10,22,57,42,35,7,21
,35,59,78,111,138,181,106,160,39,13,12,26,19,1,128,19,2,35,254,253,119,169,169,119,3,64,119,169,19,13,27,5,26,34,4,94,66,252,192,66
,94,94,66,214,19,10,13,24,16,8,9,1,220,254,128,19,5,17,42,192,131,137,254,176,23,11,2,13,14,34,103,96,132,56,49,84,96,80,83,65
,58,39,22,192,42,17,5,19,254,128,19,52,0,0,2,0,0,0,0,6,127,5,128,0,47,0,68,0,0,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,23,22,23,22,15,1,6,35,34,39,38,35,33,34,6,21,17,20,22,51,33,50,54,61,1,52,63,1,54,51,50,23,22,19,1,6
,34,39,1,38,52,63,1,54,50,23,9,1,54,50,31,1,22,20,5,128,169,119,252,192,119,169,169,119,3,64,63,54,15,3,3,12,49,10,13,3
,6,23,22,252,192,66,94,94,66,3,64,66,94,9,64,10,13,6,6,20,231,252,210,24,66,24,254,82,24,24,110,24,66,24,1,7,2,135,24,66
,24,110,24,2,94,254,194,119,169,169,119,3,64,119,169,25,7,16,17,12,49,10,2,6,94,66,252,192,66,94,94,66,254,13,9,64,10,3,8,1
,212,252,210,24,24,1,174,24,66,24,110,24,24,254,249,2,135,24,24,110,24,66,0,0,0,0,1,0,0,255,0,7,0,6,0,0,67,0,0,0
,20,7,1,6,34,38,61,1,33,17,51,50,22,20,7,1,6,34,39,1,38,52,54,59,1,17,33,21,20,6,34,39,1,38,52,55,1,54,50,22
,29,1,33,17,35,34,38,52,55,1,54,50,23,1,22,20,6,43,1,17,33,53,52,54,50,23,1,7,0,19,255,0,19,52,38,254,128,128,26,38
,19,255,0,19,52,19,255,0,19,38,26,128,254,128,38,52,19,255,0,19,19,1,0,19,52,38,1,128,128,26,38,19,1,0,19,52,19,1,0,19
,38,26,128,1,128,38,52,19,1,0,2,154,52,19,255,0,19,38,26,128,254,128,38,52,19,255,0,19,19,1,0,19,52,38,1,128,128,26,38,19
,1,0,19,52,19,1,0,19,38,26,128,1,128,38,52,19,1,0,19,19,255,0,19,52,38,254,128,128,26,38,19,255,0,0,1,0,0,255,128,4
,0,5,128,0,29,0,0,1,54,22,21,17,20,6,39,1,38,39,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,21,17,54,55,3,211,19
,26,26,19,253,58,9,4,38,26,128,26,38,38,26,128,26,38,4,9,5,115,19,12,26,250,64,26,12,19,2,198,9,10,253,90,26,38,38,26,5
,128,26,38,38,26,253,90,10,9,0,1,0,0,255,128,7,0,5,128,0,43,0,0,1,54,22,21,17,20,6,39,1,38,39,17,20,6,39,1,38
,39,17,20,6,43,1,34,38,53,17,52,54,59,1,50,22,21,17,54,55,1,54,22,21,17,54,55,6,211,19,26,26,19,253,58,9,4,26,19,253
,58,9,4,38,26,128,26,38,38,26,128,26,38,4,9,2,198,19,26,4,9,5,115,19,12,26,250,64,26,12,19,2,198,9,10,253,58,26,12,19
,2,198,9,10,253,90,26,38,38,26,5,128,26,38,38,26,253,90,10,9,2,198,19,12,26,253,58,10,9,0,1,0,122,255,128,6,128,5,128,0
,25,0,0,1,54,22,21,17,20,6,39,1,38,39,17,20,6,39,1,38,52,55,1,54,22,21,17,54,55,6,83,19,26,26,19,253,58,9,4,26
,19,253,58,19,19,2,198,19,26,4,9,5,115,19,12,26,250,64,26,12,19,2,198,9,10,253,58,26,12,19,2,198,19,52,19,2,198,19,12,26
,253,58,10,9,0,0,1,0,0,255,124,5,127,5,132,0,11,0,0,9,1,6,38,53,17,52,54,23,1,22,20,5,104,250,208,23,33,33,23,5
,48,23,2,97,253,30,13,20,26,5,192,26,20,13,253,30,13,36,0,0,0,0,2,0,0,255,128,6,0,5,128,0,15,0,31,0,0,1,17,20
,6,35,33,34,38,53,17,52,54,51,33,50,22,5,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,6,0,38,26,254,0,26,38,38,26,2
,0,26,38,252,128,38,26,254,0,26,38,38,26,2,0,26,38,5,64,250,128,26,38,38,26,5,128,26,38,38,26,250,128,26,38,38,26,5,128,26
,38,38,0,0,0,0,1,0,0,255,128,6,0,5,128,0,15,0,0,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,6,0,38,26,250
,128,26,38,38,26,5,128,26,38,5,64,250,128,26,38,38,26,5,128,26,38,38,0,0,0,0,1,0,0,255,128,6,6,5,128,0,25,0,0,23
,6,38,53,17,52,54,23,1,22,23,17,52,54,23,1,22,20,7,1,6,38,53,17,6,7,45,19,26,26,19,2,198,9,4,26,19,2,198,19,19
,253,58,19,26,4,9,115,19,12,26,5,192,26,12,19,253,58,9,10,2,198,26,12,19,253,58,19,52,19,253,58,19,12,26,2,198,10,9,0,0
,0,0,1,0,0,255,128,7,0,5,128,0,43,0,0,23,6,38,53,17,52,54,23,1,22,23,17,52,54,23,1,22,23,17,52,54,59,1,50,22
,21,17,20,6,43,1,34,38,53,17,6,7,1,6,38,53,17,6,7,45,19,26,26,19,2,198,9,4,26,19,2,198,9,4,38,26,128,26,38,38
,26,128,26,38,4,9,253,58,19,26,4,9,115,19,12,26,5,192,26,12,19,253,58,9,10,2,198,26,12,19,253,58,9,10,2,166,26,38,38,26
,250,128,26,38,38,26,2,166,10,9,253,58,19,12,26,2,198,10,9,0,0,0,1,0,0,255,128,4,0,5,128,0,29,0,0,23,6,38,53,17
,52,54,23,1,22,23,17,52,54,59,1,50,22,21,17,20,6,43,1,34,38,53,17,6,7,45,19,26,26,19,2,198,9,4,38,26,128,26,38,38
,26,128,26,38,4,9,115,19,12,26,5,192,26,12,19,253,58,9,10,2,166,26,38,38,26,250,128,26,38,38,26,2,166,10,9,0,0,0,2,0
,1,0,0,6,1,5,6,0,11,0,27,0,0,19,1,54,50,23,1,22,6,35,33,34,38,1,33,34,38,53,17,52,54,51,33,50,22,21,17,20
,6,14,2,198,19,52,19,2,198,19,12,26,250,64,26,12,5,198,250,128,26,38,38,26,5,128,26,38,38,2,45,2,198,19,19,253,58,19,26,26
,253,230,38,26,1,0,26,38,38,26,255,0,26,38,0,0,0,0,1,0,154,255,154,4,166,5,230,0,20,0,0,9,2,22,20,15,1,6,34,39
,1,38,52,55,1,54,50,31,1,22,20,4,147,253,237,2,19,19,19,166,19,52,19,253,26,19,19,2,230,19,52,19,166,19,4,211,253,237,253,237
,19,52,19,166,19,19,2,230,19,52,19,2,230,19,19,166,19,52,0,0,0,0,1,0,90,255,154,4,102,5,230,0,20,0,0,9,1,6,34,47
,1,38,52,55,9,1,38,52,63,1,54,50,23,1,22,20,4,83,253,26,19,52,19,166,19,19,2,19,253,237,19,19,166,19,52,19,2,230,19,2
,147,253,26,19,19,166,19,52,19,2,19,2,19,19,52,19,166,19,19,253,26,19,52,0,0,0,2,0,0,255,128,6,0,5,128,0,35,0,47,0
,0,1,53,52,38,35,33,17,52,38,43,1,34,6,21,17,33,34,6,29,1,20,22,51,33,17,20,22,59,1,50,54,53,17,33,50,54,0,16,2
,4,32,36,2,16,18,36,32,4,4,192,38,26,255,0,38,26,128,26,38,255,0,26,38,38,26,1,0,38,26,128,26,38,1,0,26,38,1,64,206
,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,64,128,26,38,1,0,26,38,38,26,255,0,38,26,128,26,38,255,0,26,38,38,26,1,0
,38,1,43,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0,0,255,128,6,0,5,128,0,15,0,27,0,0,1,53,52,38,35,33,34
,6,29,1,20,22,51,33,50,54,0,16,2,4,32,36,2,16,18,36,32,4,4,192,38,26,253,0,26,38,38,26,3,0,26,38,1,64,206,254,159
,254,94,254,159,206,206,1,97,1,162,1,97,2,64,128,26,38,38,26,128,26,38,38,1,43,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0
,0,0,2,0,0,255,128,6,0,5,128,0,43,0,55,0,0,1,52,47,1,55,54,53,52,47,1,38,35,34,15,1,39,38,35,34,15,1,6,21
,20,31,1,7,6,21,20,31,1,22,51,50,63,1,23,22,51,50,63,1,54,0,16,2,4,32,36,2,16,18,36,32,4,4,125,19,181,181,19,19
,90,19,27,26,19,181,181,19,26,27,19,90,19,19,181,181,19,19,90,19,27,26,19,181,181,19,26,27,19,90,19,1,131,206,254,159,254,94,254,159
,206,206,1,97,1,162,1,97,1,158,26,19,181,181,19,26,27,19,90,19,19,181,181,19,19,90,19,27,26,19,181,181,19,26,27,19,90,19,19,181
,181,19,19,90,19,1,206,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0,0,255,128,6,0,5,128,0,23,0,35,0,0,1,52,47
,1,38,34,7,1,39,38,34,15,1,6,21,20,23,1,22,51,50,55,1,62,1,16,2,4,32,36,2,16,18,36,32,4,5,4,18,91,19,52,19
,254,104,226,19,52,19,91,18,18,1,106,19,26,27,19,2,31,18,252,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,3,34,28,18,90,19
,19,254,105,226,19,19,90,18,28,27,18,254,150,19,19,2,31,18,74,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,3,0,0,255,128,6
,0,5,128,0,15,0,58,0,70,0,0,37,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,52,46,1,35,34,7,6,31,1,22,51,50
,55,54,55,54,51,50,22,21,20,6,7,14,1,29,1,20,22,59,1,50,54,53,52,54,55,62,4,36,16,2,4,32,36,2,16,18,36,32,4,3
,128,18,14,192,14,18,18,14,192,14,18,1,0,111,166,87,243,128,15,23,132,7,12,16,9,53,33,34,52,48,75,40,48,63,105,18,14,192,14,18
,43,33,32,34,58,31,25,1,128,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,160,192,14,18,18,14,192,14,18,18,2,174,88,150,82,213
,24,18,100,6,12,68,24,24,52,33,38,46,22,28,117,67,36,14,18,18,14,19,61,19,18,21,49,47,74,61,254,94,254,159,206,206,1,97,1,162
,1,97,206,206,0,0,3,0,0,255,128,6,0,5,128,0,30,0,46,0,58,0,0,37,53,52,38,43,1,17,52,38,35,33,34,6,29,1,20,22
,59,1,17,35,34,6,29,1,20,22,51,33,50,54,3,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,4,16,2,4,32,36,2,16,18,36
,32,4,4,0,18,14,96,18,14,254,192,14,18,18,14,96,96,14,18,18,14,1,192,14,18,128,18,14,192,14,18,18,14,192,14,18,2,128,206,254
,159,254,94,254,159,206,206,1,97,1,162,1,97,160,160,14,18,2,0,14,18,18,14,160,14,18,254,192,18,14,160,14,18,18,3,142,160,14,18,18
,14,160,14,18,18,193,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,2,0,0,255,128,6,0,5,128,0,47,0,95,0,0,1,35,34
,38,61,1,52,54,59,1,46,1,39,21,20,6,43,1,34,38,61,1,14,1,7,51,50,22,29,1,20,6,43,1,30,1,23,53,52,54,59,1,50
,22,29,1,62,1,1,21,20,6,43,1,14,1,7,21,20,6,43,1,34,38,61,1,46,1,39,35,34,38,61,1,52,54,59,1,62,1,55,53,52
,54,59,1,50,22,29,1,30,1,23,51,50,22,4,173,109,26,38,38,26,109,32,161,108,38,26,128,26,38,108,161,32,109,26,38,38,26,109,32,161
,108,38,26,128,26,38,108,161,1,115,38,26,143,37,235,161,38,26,128,26,38,161,235,37,143,26,38,38,26,143,37,235,161,38,26,128,26,38,161,235
,37,143,26,38,2,0,38,26,128,26,38,108,161,32,109,26,38,38,26,109,32,161,108,38,26,128,26,38,108,161,32,109,26,38,38,26,109,32,161,1
,44,128,26,38,161,235,37,143,26,38,38,26,143,37,235,161,38,26,128,26,38,161,235,37,143,26,38,38,26,143,37,235,161,38,0,0,0,0,3,0
,0,255,128,6,0,5,128,0,35,0,47,0,59,0,0,1,7,6,34,47,1,7,6,34,47,1,38,52,63,1,39,38,52,63,1,54,50,31,1,55
,54,50,31,1,22,20,15,1,23,22,20,54,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16,18,36,32,4,4,73,146,10,26
,10,137,137,10,26,10,146,10,10,137,137,10,10,146,10,26,10,137,137,10,26,10,146,10,10,137,137,10,205,146,250,254,216,250,146,146,250,1,40,250
,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,201,146,10,10,137,137,10,10,146,10,26,10,137,137,10,26,10,146,10,10,137,137
,10,10,146,10,26,10,137,137,10,26,25,1,40,250,146,146,250,254,216,250,146,146,2,95,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0
,0,0,3,0,0,255,128,6,0,5,128,0,20,0,32,0,44,0,0,9,1,6,34,39,1,38,52,63,1,54,50,31,1,1,54,50,31,1,22,20
,22,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16,18,36,32,4,4,147,254,90,19,52,19,254,218,19,19,102,19,52,19,147
,1,19,19,52,19,102,19,122,146,250,254,216,250,146,146,250,1,40,250,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,211,254,90
,19,19,1,38,19,52,19,102,19,19,147,1,19,19,19,102,19,52,250,1,40,250,146,146,250,254,216,250,146,146,2,95,254,94,254,159,206,206,1,97
,1,162,1,97,206,206,0,0,0,0,3,0,0,255,128,6,0,5,133,0,9,0,18,0,34,0,0,1,52,39,1,22,51,50,62,2,5,1,38,35
,34,14,1,21,20,0,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,5,32,87,253,14,137,160,111,201,146,86,252,25,2,243,135,165,148,250
,146,5,32,122,205,254,227,254,200,254,227,205,122,122,205,1,29,1,56,1,29,205,2,131,161,134,253,15,89,87,146,203,188,2,242,91,146,252,148,162
,1,63,254,198,254,226,206,122,122,206,1,30,1,58,1,29,206,122,122,206,0,0,1,0,64,255,53,6,0,5,75,0,32,0,0,1,21,20,6,35
,33,1,22,20,15,1,6,35,34,39,1,38,53,52,55,1,54,51,50,31,1,22,20,7,1,33,50,22,6,0,65,52,253,64,1,37,38,38,75,37
,53,52,39,253,117,37,37,2,139,38,53,52,38,75,38,38,254,219,2,192,52,65,2,128,128,53,75,254,218,36,108,36,76,37,37,2,140,37,53,52
,39,2,138,38,38,74,38,106,38,254,219,75,0,0,1,0,0,255,53,5,192,5,75,0,32,0,0,1,20,7,1,6,35,34,47,1,38,52,55,1
,33,34,38,61,1,52,54,51,33,1,38,52,63,1,54,51,50,23,1,22,5,192,37,253,117,39,52,51,39,75,38,38,1,37,253,64,52,65,65,52
,2,192,254,219,38,38,75,38,52,53,38,2,139,37,2,64,54,37,253,117,37,37,75,38,106,38,1,37,75,53,128,53,75,1,38,36,108,36,75,38
,38,253,117,35,0,0,1,0,53,255,128,6,75,5,64,0,33,0,0,1,20,15,1,6,35,34,39,1,17,20,6,43,1,34,38,53,17,1,6,34
,47,1,38,53,52,55,1,54,51,50,23,1,22,6,75,37,75,38,53,54,36,254,218,75,53,128,53,75,254,218,36,108,36,75,38,38,2,139,35,55
,54,37,2,139,37,2,53,51,39,75,38,38,1,37,253,64,52,65,65,52,2,192,254,219,38,38,75,38,52,53,38,2,139,37,37,253,117,39,0,0
,0,0,1,0,53,255,181,6,75,5,128,0,34,0,0,1,20,7,1,6,35,34,39,1,38,53,52,63,1,54,51,50,23,1,17,52,54,59,1,50
,22,21,17,1,54,51,50,31,1,22,6,75,37,253,117,39,52,53,37,253,117,38,38,74,39,52,53,37,1,38,76,52,128,52,76,1,38,37,53,52
,39,75,37,2,192,53,37,253,116,37,37,2,140,36,54,53,38,75,37,37,254,218,2,192,52,76,76,52,253,64,1,38,37,37,75,39,0,0,1,0
,0,255,128,7,0,5,192,0,44,0,0,0,20,7,1,6,34,38,53,17,35,34,14,5,21,20,23,20,22,21,20,6,35,34,39,46,2,39,2,53
,52,55,18,33,51,17,52,54,50,23,1,7,0,19,254,0,19,52,38,224,98,155,153,113,98,62,35,5,5,17,15,16,12,7,12,15,3,127,53,162
,2,201,224,38,52,19,2,0,3,154,52,19,254,0,19,38,26,1,0,12,31,54,85,117,160,101,55,68,6,35,9,15,20,17,9,26,34,7,1,29
,166,199,134,1,147,1,0,26,38,19,254,0,0,0,2,0,0,255,128,6,0,5,128,0,23,0,47,0,0,0,20,7,1,23,22,20,6,35,33,34
,38,53,17,52,54,50,31,1,1,54,50,31,1,1,17,20,6,34,47,1,1,6,34,47,1,38,52,55,1,39,38,52,54,51,33,50,22,2,243,10
,254,180,144,19,38,26,254,64,26,38,38,52,19,144,1,76,10,26,10,114,3,23,38,52,19,144,254,180,10,26,10,114,10,10,1,76,144,19,38,26
,1,192,26,38,1,237,26,10,254,180,144,19,52,38,38,26,1,192,26,38,19,144,1,76,10,10,114,3,73,254,64,26,38,19,144,254,180,10,10,114
,10,26,10,1,76,144,19,52,38,38,0,0,0,0,2,0,13,255,141,5,243,5,115,0,23,0,47,0,0,1,17,20,6,34,47,1,1,6,34,47
,1,38,52,55,1,39,38,52,54,51,33,50,22,0,20,7,1,23,22,20,6,35,33,34,38,53,17,52,54,50,31,1,1,54,50,31,1,3,0,38
,52,19,144,254,180,10,26,10,114,10,10,1,76,144,19,38,26,1,192,26,38,2,243,10,254,180,144,19,38,26,254,64,26,38,38,52,19,144,1,76
,10,26,10,114,2,64,254,64,26,38,19,144,254,180,10,10,114,10,26,10,1,76,144,19,52,38,38,2,147,26,10,254,180,144,19,52,38,38,26,1
,192,26,38,19,144,1,76,10,10,114,0,0,0,0,1,0,0,0,0,5,128,5,128,0,35,0,0,1,21,20,6,35,33,17,20,6,43,1,34,38
,53,17,33,34,38,61,1,52,54,51,33,17,52,54,59,1,50,22,21,17,33,50,22,5,128,56,40,254,96,56,40,192,40,56,254,96,40,56,56,40
,1,160,56,40,192,40,56,1,160,40,56,3,32,192,40,56,254,96,40,56,56,40,1,160,56,40,192,40,56,1,160,40,56,56,40,254,96,56,0,0
,0,0,1,0,0,2,0,5,128,3,128,0,15,0,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,5,128,56,40,251,64,40,56,56
,40,4,192,40,56,3,32,192,40,56,56,40,192,40,56,56,0,0,1,0,122,255,128,6,6,5,128,0,53,0,0,1,30,1,15,1,14,1,39,37
,17,20,6,43,1,34,38,53,17,5,6,38,47,1,38,54,55,45,1,46,1,63,1,62,1,23,5,17,52,54,59,1,50,22,21,17,37,54,22,31
,1,22,6,7,5,5,202,46,27,26,64,26,103,46,254,246,76,52,128,52,76,254,246,46,103,26,64,26,27,46,1,10,254,246,46,27,26,64,26,103
,46,1,10,76,52,128,52,76,1,10,46,103,26,64,26,27,46,254,246,1,230,26,103,46,110,46,27,26,153,254,205,52,76,76,52,1,51,153,26,27
,46,110,46,103,26,154,154,26,103,46,110,46,27,26,153,1,51,52,76,76,52,254,205,153,26,27,46,110,46,103,26,154,0,0,3,0,0,255,128,6
,0,5,128,0,11,0,27,0,45,0,0,0,32,4,18,16,2,4,32,36,2,16,18,1,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,3
,19,52,39,38,43,1,34,7,6,21,19,20,22,59,1,50,54,2,47,1,162,1,97,206,206,254,159,254,94,254,159,206,206,2,178,18,13,192,13,20
,20,13,192,13,18,2,18,10,10,14,220,14,10,10,17,20,14,185,14,19,5,128,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,251,239,190
,14,19,20,13,190,13,20,19,1,102,2,109,12,6,8,8,6,12,253,147,10,15,15,0,0,0,4,0,0,0,0,6,0,5,64,0,13,0,22,0
,31,0,74,0,0,37,53,17,53,33,21,17,21,20,22,59,1,50,54,1,51,39,38,35,34,6,20,22,36,52,38,35,34,15,1,51,50,5,17,20
,6,43,1,17,20,6,35,33,34,38,53,17,35,34,38,53,17,52,54,51,33,34,38,52,54,51,50,31,1,55,54,51,50,22,20,6,35,33,50,22
,3,160,254,192,36,28,192,28,36,254,56,195,126,26,43,40,56,56,2,216,56,40,43,26,125,194,40,1,176,18,14,96,56,40,251,192,40,56,96,14
,18,18,14,1,184,93,131,131,93,107,61,128,128,61,107,93,131,131,93,1,184,14,18,180,56,1,212,192,192,254,44,56,25,27,27,3,101,161,31,56
,80,56,56,80,56,31,161,160,254,192,14,18,254,96,40,56,56,40,1,160,18,14,1,64,14,18,131,186,131,77,165,165,77,131,186,131,18,0,2,0
,0,0,0,7,0,5,128,0,21,0,78,0,0,0,52,38,35,34,4,6,7,6,21,20,22,51,50,55,62,1,55,54,36,51,50,1,20,7,6,0
,7,6,35,34,39,46,1,35,34,14,2,35,34,38,39,46,3,53,52,62,2,53,52,38,39,38,53,52,62,2,55,62,4,55,62,4,51,50,30,2
,5,0,38,26,172,254,220,227,122,19,38,26,24,21,27,94,20,137,1,7,182,26,2,38,20,46,254,235,219,214,224,148,138,15,146,23,16,47,43,62
,29,43,41,25,2,8,3,3,62,74,62,28,2,9,87,151,190,109,55,180,179,178,149,39,10,39,20,34,39,24,39,63,32,16,3,38,52,38,99,169
,135,21,24,26,38,19,24,94,19,124,104,1,6,95,98,224,254,194,109,108,47,5,74,64,76,64,35,42,4,14,6,13,7,35,77,54,58,19,4,68
,10,51,53,115,210,159,119,36,18,15,3,9,39,37,10,39,17,23,9,92,132,116,0,0,0,0,2,0,0,255,0,5,128,6,0,0,15,0,51,0
,0,5,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,20,14,5,21,20,23,39,23,46,4,53,52,62,5,53,52,39,23,39,30,4,5
,128,19,13,250,192,13,19,19,13,5,64,13,19,255,0,49,79,96,96,79,49,67,4,1,90,140,137,90,55,49,79,96,96,79,49,66,3,1,90,140
,137,90,55,160,64,13,19,19,13,64,13,19,19,4,19,78,132,93,83,72,72,91,51,96,128,1,1,41,84,116,129,172,98,78,132,93,83,72,72,91
,51,94,130,1,1,41,84,116,129,172,0,0,0,0,3,0,0,0,0,7,0,4,128,0,17,0,33,0,49,0,0,1,38,39,22,21,20,0,32,0
,53,52,55,6,7,22,4,32,36,0,52,38,35,34,6,21,20,22,50,54,53,52,54,51,50,0,20,7,6,0,32,0,39,38,52,55,54,0,32,0
,23,6,128,152,229,61,254,249,254,142,254,249,61,229,152,133,1,145,1,212,1,145,253,181,28,20,125,179,28,40,28,122,86,20,3,108,20,140,254,39
,253,242,254,39,140,20,20,140,1,217,2,14,1,217,140,2,64,236,117,104,121,185,254,249,1,7,185,121,104,117,236,205,243,243,2,57,40,28,179,125
,20,28,28,20,86,122,254,210,68,35,230,254,235,1,22,229,35,68,35,229,1,22,254,234,229,0,5,0,0,255,160,7,0,4,224,0,9,0,25,0
,61,0,67,0,85,0,0,37,55,46,1,53,52,55,6,7,18,0,52,38,35,34,6,21,20,22,50,54,53,52,54,51,50,37,20,7,6,0,15,1
,6,35,34,39,38,53,52,55,46,1,39,38,52,55,54,0,33,50,23,55,54,51,50,30,3,23,22,19,20,6,7,1,22,4,20,7,6,7,6,4
,35,55,54,36,55,38,39,55,30,1,23,2,43,78,87,98,61,229,152,167,2,137,28,20,125,179,28,40,28,122,86,20,1,135,1,106,254,92,105,49
,10,18,12,122,16,44,143,241,88,20,20,153,1,198,1,13,89,91,54,10,18,5,26,36,30,33,3,16,37,158,130,1,24,8,1,192,20,39,70,150
,254,117,222,74,212,1,105,121,115,167,63,95,175,57,201,141,63,192,107,121,104,117,236,254,254,2,110,40,28,179,125,20,28,28,20,86,122,239,7,2
,189,253,12,188,89,16,70,10,18,12,75,65,216,137,31,76,31,235,1,16,17,97,16,12,19,18,19,2,10,254,48,139,229,50,1,246,45,132,70,34
,64,81,172,190,132,18,238,188,179,115,112,64,178,95,0,0,0,0,3,0,16,255,128,6,240,6,0,0,15,0,33,0,51,0,0,37,53,52,38,43
,1,34,6,29,1,20,22,59,1,50,54,3,19,52,39,38,43,1,34,7,6,21,19,20,22,59,1,50,54,3,1,22,7,14,1,35,33,34,38,39
,38,55,1,62,1,50,22,4,0,19,13,192,13,19,19,13,192,13,19,2,18,10,13,11,220,11,13,10,17,20,14,185,14,19,13,3,0,35,37,17
,59,34,250,0,34,59,17,37,35,3,0,17,60,70,60,161,190,14,19,19,14,190,14,19,19,1,132,1,203,12,7,11,11,7,14,254,55,10,13,13
,3,176,250,128,63,63,29,34,34,29,63,63,5,128,31,36,36,0,1,0,0,0,0,5,108,5,108,0,50,0,0,1,22,6,15,1,19,22,15,1
,6,35,34,39,38,39,9,1,23,22,15,1,6,43,1,38,47,2,38,39,38,63,1,54,51,50,31,1,9,1,38,39,38,63,1,54,23,5,55,62
,1,5,96,44,64,76,161,160,5,17,128,7,12,4,3,15,6,254,233,254,253,53,5,13,96,9,14,2,15,9,189,252,11,2,1,10,96,9,14,6
,2,194,1,3,254,4,14,3,2,11,128,14,16,2,153,160,76,192,5,96,52,192,76,161,253,72,19,14,96,6,1,3,13,1,252,254,253,194,17,14
,96,9,2,11,252,189,7,16,13,12,97,9,1,53,1,3,1,23,8,16,16,11,128,13,5,159,160,76,64,0,15,0,0,255,0,6,128,6,0,0
,3,0,7,0,11,0,15,0,19,0,23,0,27,0,31,0,35,0,51,0,55,0,59,0,63,0,79,0,115,0,0,23,33,17,33,1,33,17,33,37
,33,17,33,1,33,17,33,37,33,17,33,1,33,17,33,1,33,17,33,1,33,17,33,37,33,17,33,1,17,52,38,43,1,34,6,21,17,20,22,59
,1,50,54,1,33,17,33,37,33,17,33,1,33,17,33,55,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,20,6,35,33,34,38,53
,17,52,54,59,1,53,52,54,59,1,50,22,29,1,33,53,52,54,59,1,50,22,29,1,51,50,22,128,1,32,254,224,1,96,1,64,254,192,254,160
,1,32,254,224,1,96,1,64,254,192,254,160,1,32,254,224,2,224,1,64,254,192,254,128,1,64,254,192,3,0,1,32,254,224,254,128,1,64,254,192
,254,160,19,13,64,13,19,19,13,64,13,19,2,224,1,32,254,224,254,128,1,64,254,192,1,128,1,32,254,224,32,19,13,64,13,19,19,13,64,13
,19,1,128,76,52,250,128,52,76,76,52,128,94,66,64,66,94,1,128,94,66,64,66,94,128,52,76,128,1,32,254,224,1,32,64,1,64,254,192,1
,64,64,1,32,252,0,1,32,1,192,1,32,252,0,1,32,64,1,64,2,32,1,32,13,19,19,13,254,224,13,19,19,252,173,1,64,64,1,32,254
,224,1,32,192,1,32,13,19,19,13,254,224,13,19,19,77,251,0,52,76,76,52,5,0,52,76,96,66,94,94,66,96,96,66,94,94,66,96,76,0
,0,0,3,0,0,255,160,7,0,5,224,0,18,0,55,0,113,0,0,1,6,7,46,4,43,1,34,38,61,1,52,54,59,1,50,0,20,7,1,6
,35,34,38,61,1,34,14,1,46,6,39,54,55,30,4,51,33,53,52,54,51,50,23,1,18,20,7,1,6,35,34,38,61,1,33,34,14,2,7,6
,7,14,6,43,1,34,38,61,1,52,54,59,1,50,62,2,55,54,55,62,6,51,33,53,52,54,51,50,23,1,2,154,60,77,22,30,51,51,75,44
,224,14,18,18,14,224,250,5,6,9,254,192,9,14,13,19,32,106,56,90,52,76,50,66,52,58,27,59,77,22,30,51,51,75,44,1,0,18,14,12
,12,1,63,9,9,254,192,9,14,13,19,255,0,48,78,60,42,24,32,46,29,41,67,61,87,93,120,68,224,14,18,18,14,224,48,78,60,42,24,32
,46,29,41,67,61,87,93,120,68,1,0,18,14,12,12,1,63,4,31,92,181,45,55,72,41,29,18,14,192,14,18,252,14,28,9,254,192,9,19,13
,192,1,1,3,7,14,23,34,46,61,39,93,180,45,55,72,41,29,192,14,18,10,254,193,3,119,28,9,254,192,9,19,13,192,30,60,63,46,62,109
,66,90,120,80,86,51,33,18,14,192,14,18,30,60,63,46,62,109,66,90,120,80,86,51,33,192,14,18,10,254,193,0,0,0,1,0,0,255,0,7
,0,5,0,0,38,0,0,0,16,2,4,35,34,39,6,5,6,7,6,38,39,53,38,54,38,62,2,55,62,5,55,38,2,53,52,62,1,36,51,50
,4,7,0,240,254,100,244,70,75,198,254,250,49,65,17,27,4,3,5,1,10,2,12,2,7,48,21,41,24,30,11,157,181,142,240,1,76,182,244,1
,156,3,46,254,164,254,217,171,8,175,67,14,8,2,22,18,1,4,16,4,15,3,14,2,8,53,23,56,46,72,40,89,1,6,150,130,237,172,101,171
,0,0,3,0,0,255,128,6,0,5,128,0,35,0,51,0,67,0,0,1,21,20,2,4,32,36,2,61,1,52,54,51,33,50,22,29,1,20,30,3
,50,62,3,61,1,52,54,51,33,50,22,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,17,20,6,35,33,34,38,53,17,52,54,51
,33,50,22,6,0,197,254,161,254,72,254,161,197,38,26,1,128,26,38,47,60,82,46,42,46,82,60,47,38,26,1,128,26,38,252,0,38,26,254,128
,26,38,38,26,1,128,26,38,4,0,38,26,254,128,26,38,38,26,1,128,26,38,2,192,128,201,254,190,181,181,1,66,201,128,26,38,38,26,128,52
,76,38,22,4,4,22,38,76,52,128,26,38,38,2,102,254,128,26,38,38,26,1,128,26,38,38,26,254,128,26,38,38,26,1,128,26,38,38,0,0
,0,0,1,0,90,0,21,6,166,4,32,0,20,0,0,37,7,6,34,39,9,1,6,34,47,1,38,52,55,1,54,50,23,1,22,20,6,147,166,19
,52,19,253,237,253,237,19,52,19,166,19,19,2,230,19,52,19,2,230,19,205,165,19,19,2,19,253,237,19,19,165,19,53,19,2,229,19,19,253,27
,19,53,0,0,0,0,1,0,90,255,224,6,166,3,235,0,20,0,0,9,1,6,34,39,1,38,52,63,1,54,50,23,9,1,54,50,31,1,22,20
,6,147,253,26,19,52,19,253,26,19,19,166,19,52,19,2,19,2,19,19,52,19,166,19,2,216,253,27,19,19,2,229,19,53,19,165,19,19,253,237
,2,19,19,19,165,19,53,0,0,0,2,0,0,0,0,7,128,4,128,0,37,0,75,0,0,37,20,6,35,33,34,46,3,60,1,61,1,17,35,34
,38,53,52,55,1,54,50,23,1,22,21,20,6,43,1,17,33,50,31,1,22,1,20,7,1,6,34,39,1,38,53,52,54,59,1,17,33,34,47,1
,38,53,52,54,51,33,50,30,3,28,1,29,1,17,51,50,22,5,0,19,13,252,64,8,11,7,4,2,192,26,38,15,1,64,19,60,19,1,64,15
,38,26,192,2,64,16,9,160,7,2,128,15,254,192,20,58,20,254,192,15,38,26,192,253,192,16,9,160,7,19,13,3,192,8,11,7,4,2,192,26
,38,32,13,19,4,10,6,17,6,20,1,160,1,160,38,26,24,17,1,128,22,22,254,128,17,24,26,38,254,128,11,192,10,1,149,24,17,254,128,23
,23,1,128,17,24,26,38,1,128,12,192,9,11,13,19,4,10,6,17,6,20,1,160,254,96,38,0,0,0,0,3,0,0,255,128,6,128,5,0,0
,7,0,15,0,58,0,0,36,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,19,17,20,6,7,5,22,21,20,7,33,50,22,20,6,35,33
,34,38,53,52,62,2,55,3,35,34,38,52,54,51,33,50,30,4,23,33,50,22,2,128,76,104,76,76,104,3,204,76,104,76,76,104,204,33,24,251
,236,13,24,3,152,26,38,38,26,252,0,26,38,16,16,27,2,177,204,26,38,38,26,1,0,16,25,14,12,4,7,1,4,177,26,38,52,104,76,76
,104,76,76,104,76,76,104,76,3,192,254,0,24,37,3,122,60,10,16,48,38,52,38,38,26,11,41,31,49,5,3,55,38,52,38,13,18,31,21,38
,7,38,0,0,0,0,1,0,0,0,0,6,128,5,128,0,20,0,0,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,29,1,33,50,22
,6,128,132,92,251,64,92,132,132,92,1,64,92,132,2,160,92,132,3,160,253,64,92,132,132,92,3,192,92,132,132,92,32,132,0,0,0,0,2,0
,0,0,0,7,87,5,128,0,19,0,42,0,0,1,20,7,1,14,1,35,33,34,38,53,52,55,1,62,1,51,33,50,22,1,21,33,34,6,7,1
,7,52,38,53,17,52,54,51,33,50,22,29,1,33,50,22,7,87,31,254,176,43,155,66,251,192,34,53,31,1,80,43,155,66,4,64,34,53,254,169
,252,192,94,206,61,254,175,5,1,132,92,1,64,92,132,2,32,92,132,2,72,31,35,254,116,51,71,26,30,31,35,1,140,51,71,26,1,58,160,95
,72,254,116,6,4,17,4,3,192,92,132,132,92,32,132,0,0,0,1,0,64,255,0,2,192,6,0,0,31,0,0,0,20,6,43,1,17,51,50,22
,20,7,1,6,34,39,1,38,52,54,59,1,17,35,34,38,52,55,1,54,50,23,1,2,192,38,26,128,128,26,38,19,255,0,19,52,19,255,0,19
,38,26,128,128,26,38,19,1,0,19,52,19,1,0,4,218,52,38,252,0,38,52,19,255,0,19,19,1,0,19,52,38,4,0,38,52,19,1,0,19
,19,255,0,0,0,0,1,0,0,1,64,7,0,3,192,0,31,0,0,0,20,7,1,6,34,38,61,1,33,21,20,6,34,39,1,38,52,55,1,54
,50,22,29,1,33,53,52,54,50,23,1,7,0,19,255,0,19,52,38,252,0,38,52,19,255,0,19,19,1,0,19,52,38,4,0,38,52,19,1,0
,2,154,52,19,255,0,19,38,26,128,128,26,38,19,1,0,19,52,19,1,0,19,38,26,128,128,26,38,19,255,0,0,0,0,5,0,0,255,128,8
,0,5,128,0,3,0,7,0,13,0,17,0,21,0,0,1,17,33,17,1,17,33,17,1,21,33,17,51,17,1,17,33,17,1,17,33,17,2,128,255
,0,2,128,255,0,5,0,248,0,128,5,0,255,0,2,128,255,0,2,128,254,0,2,0,2,0,252,0,4,0,251,128,128,6,0,250,128,3,128,253
,0,3,0,1,128,251,128,4,128,0,2,0,0,255,128,6,0,5,128,0,48,0,64,0,0,1,6,7,54,55,6,7,38,35,34,6,21,20,23,46
,1,39,6,21,20,23,38,39,21,20,22,23,6,35,34,39,30,1,23,6,35,34,39,22,51,50,62,3,53,52,39,54,1,17,20,6,35,33,34,38
,53,17,52,54,51,33,50,22,5,0,56,65,68,25,65,69,61,92,87,123,5,129,226,79,29,91,47,53,100,73,29,22,13,26,21,107,68,116,145,26
,24,148,174,112,196,140,101,49,1,63,1,42,169,119,252,64,119,169,169,119,3,192,119,169,3,158,25,9,40,77,38,13,66,123,87,29,19,7,116,97
,50,56,114,61,1,25,2,75,117,14,8,4,63,82,1,90,3,94,71,119,155,169,84,18,9,45,1,2,252,64,119,169,169,119,3,192,119,169,169,0
,0,0,1,0,0,255,128,6,0,5,128,0,36,0,0,1,50,22,21,17,20,6,43,1,17,51,55,35,53,52,54,51,55,53,38,35,34,6,29,1
,35,21,51,17,33,34,38,53,17,52,54,51,4,224,119,169,169,119,188,199,30,229,47,68,122,63,115,136,163,200,200,253,236,119,169,169,119,5,128,169
,119,252,64,119,169,2,83,232,148,56,56,1,207,9,160,146,171,232,253,173,169,119,3,192,119,169,0,0,0,0,7,0,0,255,128,7,0,5,128,0
,15,0,23,0,27,0,35,0,39,0,46,0,62,0,0,0,52,38,35,34,6,21,20,22,50,54,53,52,54,51,50,54,20,6,34,38,52,54,50,1
,33,53,33,0,16,38,32,6,16,22,32,1,33,53,33,3,33,61,1,33,7,33,37,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,160
,18,14,66,94,18,28,18,56,40,14,242,150,212,150,150,212,252,150,6,0,250,0,4,128,225,254,194,225,225,1,62,252,225,1,128,254,128,128,6,0
,252,196,64,253,124,6,128,75,53,250,0,53,75,75,53,6,0,53,75,2,178,28,18,94,66,14,18,18,14,40,56,8,212,150,150,212,150,252,194,128
,1,31,1,62,225,225,254,194,225,4,2,128,254,192,118,138,128,128,251,0,53,75,75,53,5,0,53,75,75,0,2,0,0,255,72,6,147,5,128,0
,21,0,71,0,0,0,52,38,34,6,21,20,23,38,35,34,6,20,22,50,54,53,52,39,22,51,50,1,20,6,35,34,46,2,39,7,23,22,21,20
,6,35,34,39,1,6,35,34,38,53,52,18,36,51,50,22,21,20,7,1,55,46,3,53,52,54,51,50,23,30,4,3,64,112,160,112,19,41,42,80
,112,112,160,112,19,41,42,80,3,195,98,17,9,39,34,43,3,96,220,28,78,42,40,28,253,97,176,189,163,205,190,1,50,160,163,205,131,1,99,96
,3,46,34,32,98,17,13,10,6,80,84,89,57,3,176,160,112,112,80,42,41,19,112,160,112,112,80,42,41,19,254,0,17,98,32,34,46,3,96,220
,28,40,42,78,28,2,159,131,205,163,160,1,50,190,205,163,189,176,254,157,96,3,43,34,39,9,17,98,10,6,77,82,90,66,0,0,0,0,6,0
,0,255,15,7,128,5,240,0,7,0,17,0,27,0,127,0,189,0,251,0,0,0,52,38,34,6,20,22,50,1,52,38,34,6,21,20,22,50,54,17
,52,38,34,6,21,20,22,50,54,1,21,20,6,15,1,6,7,22,23,22,21,20,7,14,1,35,34,47,1,6,7,6,7,6,43,1,34,38,47,1
,38,39,7,6,35,34,39,38,53,52,55,62,1,55,38,47,1,46,1,61,1,52,54,63,1,54,55,38,39,38,53,52,55,62,1,51,50,31,1,54
,55,54,55,54,59,1,50,22,31,1,22,23,55,54,51,50,23,22,21,20,7,14,1,7,22,31,1,30,1,1,21,20,7,6,7,22,21,20,7,6
,35,34,38,39,6,34,39,14,1,35,34,39,38,53,52,55,38,39,38,61,1,52,55,54,55,38,53,52,55,62,2,51,50,22,23,54,50,23,54,63
,1,50,23,22,21,20,7,22,23,22,17,21,20,7,6,7,22,21,20,7,6,35,34,38,39,6,34,39,14,1,35,34,39,38,53,52,55,38,39,38
,61,1,52,55,54,55,38,53,52,55,62,2,51,50,22,23,54,50,23,54,63,1,50,23,22,21,20,7,22,23,22,3,128,150,212,150,150,212,3,150
,76,104,76,75,106,75,76,104,76,75,106,75,254,128,14,9,155,11,21,34,56,7,7,23,119,19,11,10,115,37,40,11,12,7,23,186,11,18,1,23
,34,41,118,7,13,11,10,144,7,10,62,16,23,12,152,10,14,14,9,155,11,21,34,56,7,7,22,120,19,11,10,115,34,43,11,12,7,23,186,11
,18,1,23,34,41,118,8,12,11,10,144,7,12,60,15,23,11,152,10,14,2,128,149,12,18,51,4,122,2,8,76,14,20,20,20,14,76,8,2,122
,4,51,18,12,149,149,13,17,51,4,4,62,56,2,8,76,14,20,20,20,51,41,6,4,120,4,51,17,13,149,149,12,18,51,4,122,2,8,76,14
,20,20,20,14,76,8,2,122,4,51,18,12,149,149,13,17,51,4,4,62,56,2,8,76,14,20,20,20,51,41,6,4,120,4,51,17,13,149,2,22
,212,150,150,212,150,255,0,52,76,76,52,53,75,75,4,53,52,76,76,52,53,75,75,254,144,185,10,19,1,24,35,41,48,67,11,9,12,7,30,119
,7,90,19,12,108,47,24,15,10,153,10,21,89,7,8,133,27,9,10,14,78,22,44,38,24,1,17,11,185,10,19,1,24,35,41,48,67,11,9,12
,8,30,118,7,90,18,14,108,46,24,15,10,153,10,21,89,7,8,133,27,8,11,16,76,22,48,34,23,2,17,253,224,140,16,15,27,25,113,25,4
,3,71,94,21,2,2,21,94,71,3,4,25,113,25,27,15,16,140,16,15,29,23,113,25,4,3,2,36,32,93,21,2,2,71,41,2,70,3,4,25
,113,23,29,15,3,240,140,16,15,27,25,113,25,4,3,71,94,21,2,2,21,94,71,3,4,25,113,25,27,15,16,140,16,15,29,23,113,25,4,3
,2,36,32,93,21,2,2,71,41,2,70,3,4,25,113,23,29,15,0,0,0,0,2,0,0,255,128,7,0,5,0,0,37,0,79,0,0,0,16,6
,4,35,34,39,6,7,6,7,35,34,38,39,38,52,62,5,55,62,4,55,46,1,53,52,54,36,32,4,1,20,6,7,30,4,23,30,6,20,7,14
,1,39,38,39,38,39,6,35,32,39,22,51,50,36,55,62,1,53,52,39,30,1,5,128,188,254,187,191,86,90,124,154,36,50,3,11,19,2,1,1
,3,2,5,3,6,1,5,36,16,29,21,10,124,142,188,1,69,1,126,1,69,2,60,142,124,10,21,29,16,36,5,1,6,3,5,2,3,1,1,3
,20,12,50,36,154,124,90,86,254,241,201,58,30,161,1,40,116,125,134,23,129,150,3,139,254,234,236,137,16,88,40,9,7,16,13,3,7,6,6,4
,7,3,7,1,6,38,21,37,40,24,72,210,119,139,236,137,137,253,137,120,209,72,24,40,37,21,38,6,1,7,3,7,4,6,6,7,3,14,16,1
,7,9,40,88,16,132,4,90,84,92,240,134,77,75,71,214,0,0,3,0,0,255,128,6,0,6,0,0,7,0,60,0,109,0,0,36,52,38,34,6
,20,22,50,1,52,38,35,33,52,54,53,52,38,35,14,2,7,6,7,14,6,43,1,17,51,50,30,4,23,22,59,1,50,53,52,39,62,1,52,39
,54,53,52,38,39,62,1,55,20,7,22,21,20,7,22,21,20,7,22,6,43,2,34,38,39,38,35,33,34,38,53,17,52,54,51,33,54,55,54,55
,62,2,55,54,51,50,30,1,21,20,7,51,50,22,1,0,38,52,38,38,52,4,166,78,50,254,160,96,64,96,26,24,37,41,22,55,4,38,25,44
,36,41,39,16,32,32,13,37,29,47,23,48,5,211,131,121,192,5,30,35,18,53,20,15,32,43,128,49,9,38,3,60,1,172,141,36,93,96,187,123
,116,22,254,224,53,75,75,53,1,18,36,101,58,49,24,23,38,43,39,51,84,134,70,48,176,104,152,166,52,38,38,52,38,2,128,51,77,58,203,59
,98,94,26,118,133,43,23,68,5,50,32,53,35,36,18,253,128,6,7,15,8,17,2,73,167,26,30,16,73,74,32,50,69,25,61,17,1,92,36,89
,74,33,36,77,67,21,22,101,77,139,161,45,43,40,75,53,2,128,53,75,24,131,75,53,25,121,132,42,37,65,138,117,93,99,152,0,0,0,3,0
,0,255,0,6,0,5,128,0,7,0,62,0,113,0,0,0,52,38,34,6,20,22,50,1,52,38,39,62,1,53,52,39,54,53,52,38,39,54,53,52
,38,43,1,34,7,14,5,43,1,17,51,50,30,5,23,22,23,30,2,23,50,54,53,52,38,53,33,50,54,55,20,6,43,1,22,21,20,7,14,1
,35,34,39,46,3,39,38,39,38,39,33,34,38,53,17,52,54,51,33,50,55,62,1,59,1,50,22,7,21,22,21,20,7,22,21,20,7,22,1,0
,38,52,38,38,52,4,166,43,32,15,20,53,18,35,30,5,98,87,128,131,211,5,48,23,47,29,37,13,32,32,16,39,41,36,44,25,38,4,55,22
,41,37,24,26,96,64,96,1,96,50,78,128,152,104,176,48,35,35,134,84,51,39,34,40,11,24,19,48,59,101,36,254,238,53,75,75,53,1,32,22
,116,128,190,105,112,140,173,1,60,3,38,9,49,4,38,52,38,38,52,38,254,0,35,92,1,17,61,25,69,50,31,38,37,73,16,30,26,85,82,73
,2,17,8,15,7,6,253,128,18,36,35,53,32,50,5,68,23,43,133,118,26,94,98,59,203,58,77,50,103,152,99,93,118,68,69,65,37,33,98,83
,86,21,50,77,131,24,75,53,2,128,53,75,40,44,44,158,137,5,77,101,22,21,67,77,36,33,73,0,0,0,1,0,0,255,173,3,64,5,224,0
,18,0,0,1,17,5,6,35,34,38,53,52,55,19,1,38,53,52,55,37,19,54,3,64,254,63,22,18,21,21,2,86,254,148,25,56,1,246,225,19
,5,224,250,197,236,12,29,21,6,14,1,244,1,98,27,21,37,9,73,1,199,41,0,0,0,0,2,0,0,255,128,7,0,5,128,0,28,0,57,0
,0,1,52,46,3,34,14,2,7,6,34,39,46,3,34,14,3,21,20,23,9,1,54,55,20,7,1,6,34,39,1,46,4,53,52,54,51,50,30,2
,23,62,3,51,50,22,6,128,43,67,96,92,104,120,101,72,24,18,62,18,24,72,101,120,104,92,96,67,43,187,2,69,2,68,188,128,229,253,145,18
,52,18,253,144,10,35,76,60,47,254,224,62,129,111,80,36,36,80,111,129,62,224,254,3,172,81,124,73,46,16,51,77,67,28,22,22,28,67,77,51
,16,46,73,124,81,168,187,253,208,2,47,188,168,221,229,253,168,18,18,2,90,8,36,95,100,142,67,220,248,43,73,64,36,36,64,73,43,248,0,0
,0,0,2,0,0,0,0,6,32,5,0,0,40,0,64,0,0,37,20,22,14,2,35,33,34,38,53,17,52,54,51,33,50,22,21,20,22,14,2,35
,33,34,6,21,17,20,22,51,33,58,2,30,3,0,20,7,1,6,34,38,53,17,33,34,38,53,17,52,54,51,33,17,52,54,50,23,1,2,128,2
,1,5,15,13,254,192,119,169,169,119,1,64,13,19,2,1,5,15,13,254,192,66,94,94,66,1,32,1,20,6,17,6,10,4,3,160,19,253,224,19
,52,38,254,64,26,38,38,26,1,192,38,52,19,2,32,96,4,32,21,26,13,169,119,2,192,119,169,19,13,4,32,21,26,13,94,66,253,64,66,94
,2,4,7,11,2,50,52,19,253,224,19,38,26,1,32,38,26,1,128,26,38,1,32,26,38,19,253,224,0,0,4,0,0,255,128,6,0,5,128,0
,3,0,15,0,37,0,53,0,0,55,51,17,35,55,46,1,34,6,21,20,22,59,1,50,54,1,51,17,52,38,35,34,7,51,53,35,22,3,51,17
,52,55,62,1,51,50,21,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,237,231,231,246,1,70,116,73,71,57,1,59,72,2,73,231,146
,120,136,73,2,231,3,3,231,7,15,60,44,116,1,212,169,119,252,64,119,169,169,119,3,192,119,169,122,2,182,214,52,68,68,52,51,69,69,252,167
,1,142,154,158,117,101,66,253,140,1,132,38,18,35,49,157,2,115,252,64,119,169,169,119,3,192,119,169,169,0,2,0,0,255,0,4,128,5,128,0
,11,0,46,0,0,1,17,52,38,34,6,21,17,20,22,50,54,1,20,6,35,33,3,14,1,43,1,34,39,3,33,34,38,53,52,54,51,17,34,38
,52,54,51,33,50,22,20,6,35,17,50,22,1,224,18,28,18,18,28,18,2,160,38,26,254,83,51,2,17,12,1,27,5,76,254,108,26,38,157,99
,52,76,76,52,2,128,52,76,76,52,99,157,2,160,1,192,14,18,18,14,254,64,14,18,18,254,174,26,38,254,29,12,17,27,1,229,38,26,123,197
,2,0,76,104,76,76,104,76,254,0,197,0,0,0,2,0,0,0,0,7,0,6,0,0,39,0,63,0,0,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,29,1,20,6,35,33,34,6,21,17,20,22,51,33,50,54,53,17,52,54,59,1,50,22,1,17,20,6,34,47,1,1,6,34,47
,1,38,52,55,1,39,38,52,54,51,33,50,22,5,128,169,119,252,192,119,169,169,119,2,192,14,18,18,14,253,64,66,94,94,66,3,64,66,94,18
,14,64,14,18,1,128,38,52,19,176,253,116,10,26,10,114,10,10,2,140,176,19,38,26,2,0,26,38,2,96,254,192,119,169,169,119,3,64,119,169
,18,14,64,14,18,94,66,252,192,66,94,94,66,1,64,14,18,18,3,82,254,0,26,38,19,176,253,116,10,10,114,10,26,10,2,140,176,19,52,38
,38,0,2,0,0,0,0,6,0,5,0,0,23,0,64,0,0,0,20,7,1,6,34,38,53,17,33,34,38,53,17,52,54,51,33,17,52,54,50,23
,9,1,17,20,6,35,33,34,38,53,52,38,62,2,51,33,50,54,53,17,52,38,35,33,42,2,46,3,53,52,38,62,2,51,33,50,22,4,160,19
,253,224,19,52,38,254,64,26,38,38,26,1,192,38,52,19,2,32,1,115,169,119,254,192,13,19,2,1,5,15,13,1,64,66,94,94,66,254,224,1
,20,6,17,6,10,4,2,1,5,15,13,1,64,119,169,2,154,52,19,253,224,19,38,26,1,32,38,26,1,128,26,38,1,32,26,38,19,253,224,1
,51,253,64,119,169,19,13,4,32,21,26,13,94,66,2,192,66,94,2,4,7,11,8,4,32,21,26,13,169,0,3,0,0,255,128,6,128,5,128,0
,6,0,13,0,73,0,0,1,38,53,33,21,20,22,37,53,33,20,7,62,1,55,21,20,14,2,7,6,7,14,1,21,20,22,51,50,22,29,1,20
,6,35,33,34,38,61,1,52,54,51,50,54,53,52,38,39,38,39,46,3,61,1,52,54,51,33,53,52,54,51,33,50,22,29,1,33,50,22,1,202
,74,255,0,189,4,195,255,0,74,141,189,128,83,141,205,113,42,53,38,29,61,67,75,117,18,14,252,192,14,18,117,75,67,61,29,38,53,42,113,205
,141,83,56,40,1,32,94,66,2,64,66,94,1,32,40,56,2,141,162,209,96,78,168,246,96,209,162,29,168,206,128,71,144,116,79,5,54,41,34,77
,51,54,74,91,69,64,14,18,18,14,64,69,91,74,54,51,77,34,41,54,5,79,116,144,71,128,40,56,96,66,94,94,66,96,56,0,0,0,9,0
,0,255,128,6,0,5,128,0,7,0,15,0,23,0,31,0,39,0,44,0,50,0,129,0,145,0,0,1,54,39,38,7,6,23,22,39,38,7,6,23
,22,55,54,39,54,39,38,7,6,23,22,23,54,38,39,38,6,23,22,23,54,39,38,7,6,23,30,1,52,35,34,20,55,38,6,23,22,54,1,52
,0,32,0,21,20,18,23,22,54,53,52,39,14,2,46,1,39,38,39,46,3,54,51,50,30,1,23,30,1,50,54,55,54,55,46,3,53,52,55,38
,55,54,22,31,1,54,50,23,62,2,23,22,7,22,21,20,14,3,7,22,21,20,6,21,20,22,55,54,18,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,2,7,4,7,9,5,4,7,9,23,5,7,6,6,7,5,6,47,2,7,7,1,3,7,8,22,2,1,3,6,8,5,6,91,2
,11,9,4,2,11,9,46,12,10,61,2,22,2,2,20,2,130,254,212,254,88,254,212,196,154,18,17,1,6,19,52,44,43,8,23,34,2,5,11,3
,11,14,6,18,42,12,16,43,44,32,14,7,26,49,74,72,39,53,24,29,19,71,25,26,58,140,58,11,35,76,19,29,24,53,28,43,64,61,38,35
,1,17,18,154,196,1,0,169,119,252,64,119,169,169,119,3,192,119,169,1,80,6,7,7,5,6,7,7,46,7,3,4,8,8,3,4,49,4,4,2
,4,5,3,2,19,1,7,2,7,8,7,6,71,7,4,3,7,7,4,3,4,16,16,15,7,4,7,8,4,1,69,212,1,44,254,212,212,167,254,245
,52,3,16,12,52,43,1,3,1,9,31,26,59,15,1,5,11,8,7,4,27,22,28,28,7,6,47,22,6,25,53,99,70,79,58,62,74,6,27,16
,16,17,17,7,22,30,6,74,62,58,79,57,87,53,36,16,4,31,64,40,98,2,12,16,3,52,1,11,2,135,252,64,119,169,169,119,3,192,119,169
,169,0,4,0,0,255,128,6,128,5,192,0,7,0,15,0,39,0,63,0,0,36,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,19,17,20
,6,35,33,34,38,53,17,52,54,51,33,30,1,51,33,50,54,55,33,50,22,1,6,35,33,17,20,6,35,33,34,38,53,17,33,34,39,38,55,1
,54,50,23,1,22,5,0,38,52,38,38,52,1,38,38,52,38,38,52,166,56,40,250,64,40,56,56,40,1,171,21,99,61,1,0,61,99,21,1,171
,40,56,254,187,17,42,255,0,38,26,255,0,26,38,255,0,42,17,17,31,1,192,18,54,18,1,192,31,38,52,38,38,52,38,38,52,38,38,52,38
,1,32,254,192,40,56,56,40,1,64,40,56,56,72,72,56,56,2,96,40,254,64,26,38,38,26,1,192,40,39,30,1,192,19,19,254,64,30,0,0
,0,0,2,0,0,255,128,5,255,5,128,0,49,0,99,0,0,1,52,38,39,46,2,53,52,54,53,52,39,38,35,34,6,35,34,38,35,34,14,1
,7,6,7,14,2,21,20,22,21,20,6,20,22,51,50,54,51,50,22,51,50,55,62,1,18,55,20,2,6,7,6,35,34,38,35,34,6,35,34,38
,53,52,54,53,52,38,53,52,62,2,55,54,55,54,51,50,22,51,50,54,51,50,22,21,20,6,21,20,30,2,23,30,1,5,127,14,11,12,10,8
,10,10,4,9,19,78,20,60,232,59,43,103,67,56,137,65,96,127,49,25,22,24,22,24,97,25,57,225,57,181,103,129,213,119,128,140,252,155,124,202
,57,226,56,24,97,25,73,101,22,25,36,73,128,86,78,154,194,122,60,231,58,19,76,20,81,74,10,4,3,12,2,16,18,2,198,44,139,27,30,28
,45,26,23,91,22,37,18,1,9,48,23,24,22,54,49,73,233,239,129,40,160,41,23,87,44,29,22,31,36,45,215,1,20,139,165,254,187,251,55,44
,29,29,111,73,24,88,23,40,161,41,111,213,206,182,65,59,61,78,48,10,101,84,23,90,23,13,24,9,32,4,40,157,0,0,1,0,0,0,0,5
,128,5,128,0,79,0,0,1,20,6,7,6,7,6,35,34,46,3,39,38,39,38,0,39,38,39,46,4,53,52,55,54,55,62,1,51,50,23,22,23
,30,2,23,30,2,21,20,14,2,21,20,30,2,23,30,1,23,30,3,51,50,62,2,51,50,30,1,23,30,2,23,22,23,22,5,128,20,11,21,101
,94,92,27,52,63,31,80,9,98,77,127,254,238,79,48,35,3,30,11,18,7,51,56,50,25,87,27,14,7,18,35,11,38,32,15,3,29,14,57,67
,57,10,7,21,1,76,196,137,2,34,14,27,9,18,56,50,60,20,14,29,42,4,25,57,70,19,70,6,3,1,40,27,87,25,50,56,51,7,18,11
,30,3,35,48,79,1,18,127,77,98,9,80,31,63,52,27,92,94,101,21,11,20,3,6,70,19,70,57,25,4,42,29,14,20,60,50,56,18,9,27
,14,34,2,137,196,76,1,21,7,10,57,67,57,14,29,3,15,32,38,11,35,18,7,0,0,0,2,0,0,0,0,5,128,5,128,0,15,0,31,0
,0,1,33,34,6,21,17,20,22,51,33,50,54,53,17,52,38,23,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,96,252,192,66,94,94
,66,3,64,66,94,94,222,169,119,252,192,119,169,169,119,3,64,119,169,5,0,94,66,252,192,66,94,94,66,3,64,66,94,160,252,192,119,169,169,119
,3,64,119,169,169,0,2,0,0,255,151,5,0,5,128,0,6,0,35,0,0,1,33,17,1,55,23,1,19,50,23,30,1,21,17,20,6,7,6,35
,34,39,9,1,6,35,34,39,46,1,53,17,52,54,55,54,51,4,128,252,0,1,167,89,89,1,167,12,23,21,33,39,39,33,19,25,48,35,254,71
,254,71,36,47,23,21,33,39,39,33,21,23,5,0,251,38,1,150,85,85,254,106,5,90,9,13,56,34,250,247,34,56,13,8,32,1,168,254,88,33
,9,13,56,34,5,9,34,56,13,9,0,0,0,0,2,0,0,255,128,6,0,5,128,0,71,0,87,0,0,1,52,46,4,39,46,2,35,34,14,2
,35,34,46,2,39,46,1,39,46,3,53,52,62,2,53,52,46,1,39,46,5,35,34,7,14,1,21,20,30,4,23,22,0,23,30,5,51,50,54,55
,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,0,4,32,49,46,45,6,5,28,22,10,15,43,36,41,13,7,19,12,22,3,99
,142,56,2,13,6,7,41,49,41,10,20,3,3,24,26,27,23,10,11,48,53,46,68,5,5,13,7,18,2,60,1,57,164,6,48,18,41,25,36,16
,57,147,21,22,1,0,169,119,252,64,119,169,169,119,3,192,119,169,1,87,11,10,23,27,26,24,3,3,20,10,41,49,41,7,6,13,2,55,143,99
,3,22,12,19,7,13,41,36,43,15,10,22,28,5,6,45,46,49,32,4,22,21,147,57,16,36,25,41,18,48,6,164,254,199,60,2,18,7,13,5
,5,68,46,53,3,57,252,64,119,169,169,119,3,192,119,169,169,0,1,0,44,0,0,6,84,5,0,0,49,0,0,1,6,7,22,21,20,2,14,1
,4,35,32,39,22,51,50,55,46,1,39,22,51,50,55,46,1,61,1,22,23,46,1,53,52,55,22,4,23,38,53,52,54,51,50,23,54,55,6,7
,54,6,84,67,95,1,76,155,214,254,210,172,254,241,225,35,43,225,176,105,166,31,33,28,43,42,112,147,68,78,66,78,44,121,1,91,198,8,189,134
,140,96,109,96,37,105,93,4,104,98,69,14,28,130,254,253,238,183,109,145,4,138,2,125,97,5,11,23,177,117,4,38,3,44,142,83,88,75,149,179
,10,38,36,134,189,102,21,57,115,63,10,0,0,0,1,0,95,255,128,3,191,6,0,0,20,0,0,1,17,35,34,6,29,1,33,3,35,17,33,17
,35,17,33,53,52,54,51,50,3,191,157,86,60,1,37,39,254,254,206,255,0,255,208,173,147,5,244,254,248,72,72,189,254,216,253,9,2,247,1,40
,218,186,205,0,0,0,8,0,0,255,167,6,0,5,128,0,84,0,92,0,100,0,107,0,115,0,122,0,130,0,136,0,0,0,32,4,18,21,20,0
,7,6,38,53,52,54,53,52,39,62,4,53,52,39,54,39,38,6,15,1,38,34,7,46,2,7,6,23,6,21,20,30,3,23,6,7,14,1,34,38
,39,46,1,47,1,34,6,30,1,31,1,30,1,31,1,30,3,63,1,20,22,21,20,6,39,38,0,53,52,18,19,54,39,38,7,6,23,22,23,54
,39,38,7,6,23,22,23,54,39,38,7,6,22,23,54,39,38,7,6,23,22,23,54,39,38,6,23,22,55,52,7,34,21,20,55,50,55,38,7,6
,22,54,2,47,1,162,1,97,206,254,219,232,27,26,1,52,57,91,97,65,41,79,37,45,28,106,39,38,93,198,93,16,53,114,28,45,37,79,41,64
,97,91,57,39,10,21,48,66,65,23,19,59,20,20,21,16,6,12,7,7,22,43,10,10,13,62,72,67,22,23,1,26,27,232,254,219,206,85,3,10
,10,3,3,10,9,35,7,9,10,6,7,9,10,36,9,9,8,9,9,18,50,8,12,12,8,9,13,12,65,3,16,15,8,17,15,67,17,16,17,16
,58,2,16,16,4,32,5,128,206,254,159,209,251,254,111,77,5,24,18,3,147,61,97,45,6,24,54,79,131,85,119,87,91,113,9,40,24,24,26,26
,11,32,45,9,113,91,87,119,85,130,80,54,24,6,36,67,10,10,43,41,32,40,4,3,9,14,14,5,5,10,56,23,23,38,47,13,1,4,4,38
,101,4,18,24,5,77,1,145,251,209,1,97,252,127,7,5,3,5,7,5,6,26,5,11,9,6,5,11,10,38,7,12,13,7,5,26,36,8,11,12
,9,8,11,12,16,11,5,4,22,4,6,7,13,2,11,13,2,21,11,2,3,24,8,0,0,0,1,0,0,0,0,6,128,5,128,0,37,0,0,1
,17,20,6,43,1,34,38,53,17,52,38,34,6,29,1,51,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,33,53,52,0,32,0,6,128,38
,26,64,26,38,150,212,150,96,40,56,56,40,252,64,40,56,56,40,2,160,1,7,1,114,1,7,3,192,255,0,26,38,38,26,1,0,106,150,150,106
,192,56,40,253,192,40,56,56,40,2,64,40,56,192,185,1,7,254,249,0,0,0,5,0,0,255,128,7,128,5,128,0,15,0,25,0,35,0,39,0
,43,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,21,34,6,29,1,33,53,52,38,35,17,50,54,53,17,33,17,20,22,51,55
,53,33,21,51,53,33,21,6,224,66,94,94,66,249,192,66,94,94,66,13,19,6,128,19,13,13,19,249,128,19,13,96,1,0,128,1,128,5,128,94
,66,251,64,66,94,94,66,4,192,66,94,128,19,13,224,224,13,19,251,0,19,13,2,96,253,160,13,19,128,128,128,128,128,0,3,0,0,0,0,5
,128,5,128,0,7,0,33,0,61,0,0,0,20,6,34,38,52,54,50,1,22,7,6,43,1,34,38,39,38,0,39,46,1,61,1,52,55,54,59,1
,22,4,23,22,18,5,22,7,6,43,1,34,38,39,38,2,0,36,39,46,1,61,1,52,55,54,59,1,12,1,23,22,18,1,128,112,160,112,112,160
,2,112,2,19,18,29,135,25,36,2,22,254,187,229,25,33,21,17,26,5,160,1,36,113,114,135,2,13,2,20,18,28,143,26,37,1,12,178,254,227
,254,125,215,25,35,20,18,26,3,1,6,1,223,186,187,214,1,16,160,112,112,160,112,254,197,28,20,21,33,25,229,1,69,22,2,36,25,135,29,18
,17,13,135,114,113,254,220,162,27,20,20,35,25,215,1,131,1,29,178,13,1,37,25,143,28,18,18,13,214,187,186,254,33,0,5,0,0,0,0,6
,0,5,0,0,7,0,15,0,31,0,41,0,63,0,0,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,23,17,52,38,35,33,34,6,21
,17,20,22,51,33,50,54,1,33,3,46,1,35,33,34,6,7,1,17,20,6,35,33,34,38,53,17,52,55,19,62,1,51,33,50,22,23,19,22,4
,16,47,66,47,47,66,1,47,47,66,47,47,66,159,19,13,251,64,13,19,19,13,4,192,13,19,251,50,4,156,157,4,24,14,252,242,14,24,4,4
,177,94,66,251,64,66,94,16,197,17,92,55,3,14,55,92,17,197,16,1,97,66,47,47,66,47,47,66,47,47,66,47,240,1,64,13,19,19,13,254
,192,13,19,19,1,237,1,226,13,17,17,13,253,126,254,192,66,94,94,66,1,64,25,50,2,94,53,66,66,53,253,162,50,0,2,0,0,255,131,7
,0,5,128,0,46,0,52,0,0,1,50,22,20,6,35,17,20,6,35,0,37,14,1,22,23,14,1,30,2,23,14,1,38,39,46,4,54,55,35,34
,38,61,1,52,54,51,33,32,1,50,22,21,3,17,0,5,17,4,6,128,53,75,75,53,76,52,254,95,254,117,58,66,4,38,20,6,18,49,47,38
,29,165,172,46,7,45,19,27,3,10,17,122,66,94,94,66,1,224,1,179,1,205,52,76,128,254,118,254,138,1,121,3,128,75,106,75,254,128,52,76
,1,91,33,19,94,107,39,33,65,51,59,41,30,58,50,27,42,23,129,60,118,84,113,54,94,66,192,66,94,1,128,76,52,252,36,3,186,254,210,41
,254,242,42,0,0,0,3,0,64,255,0,6,192,6,0,0,11,0,25,0,65,0,0,4,52,35,34,38,53,52,34,21,20,22,51,1,33,0,17,52
,46,2,34,14,2,21,16,1,20,6,35,33,20,6,34,38,53,33,34,38,53,62,4,53,52,18,55,38,53,52,54,50,22,21,20,7,22,18,21,20
,30,3,3,144,16,59,85,32,103,73,253,118,5,20,254,246,48,90,153,186,153,90,48,4,192,76,52,254,64,150,212,150,254,64,52,76,50,82,88,61
,39,234,190,8,56,80,56,8,190,234,39,61,88,82,176,32,85,59,16,16,73,103,1,48,1,44,2,20,51,108,98,63,63,98,108,51,253,236,254,212
,52,76,106,150,150,106,76,52,42,92,147,170,242,139,152,1,5,28,19,20,40,56,56,40,20,19,28,254,251,152,139,242,170,147,92,0,0,0,1,0
,2,255,128,5,254,5,125,0,73,0,0,1,23,22,7,6,15,1,23,22,7,6,47,1,7,6,7,6,35,34,47,1,7,6,39,38,47,1,7,6
,39,38,63,1,39,38,39,38,63,1,39,38,55,54,63,1,39,38,55,54,31,1,55,54,55,54,31,1,55,54,23,22,31,1,55,54,23,22,15,1
,23,22,23,22,7,5,96,138,30,10,12,40,188,53,12,31,29,41,186,48,10,41,12,7,31,20,135,135,28,42,41,10,48,186,41,29,31,12,53,188
,40,12,10,30,138,138,30,10,12,40,188,53,12,31,29,41,186,48,10,41,41,29,135,135,29,41,41,10,48,186,41,29,31,12,53,188,40,12,10,30
,2,128,135,28,42,41,10,48,186,41,29,31,12,53,188,40,12,2,22,138,138,30,10,11,41,188,53,12,31,29,41,186,48,10,41,42,28,135,135,28
,42,41,10,48,186,41,29,31,12,53,188,41,10,12,31,139,139,30,11,10,41,188,53,12,31,29,41,186,48,10,41,42,28,0,3,0,0,255,128,7
,0,5,128,0,7,0,53,0,104,0,0,36,52,38,34,6,20,22,50,1,52,38,35,33,52,62,2,53,52,38,35,34,7,6,7,6,7,6,7,6
,43,1,17,51,50,30,1,51,50,53,52,39,62,1,52,39,54,53,52,38,39,33,50,54,55,20,6,43,1,6,7,22,21,20,7,22,6,35,34,39
,38,35,33,34,38,53,17,52,54,51,33,50,62,5,55,54,55,62,4,51,50,22,21,20,7,33,50,22,1,0,38,52,38,38,52,5,166,78,50,253
,192,30,36,30,89,71,24,66,24,13,40,72,71,30,69,71,32,32,72,190,197,81,189,5,30,35,18,53,20,15,1,75,52,76,128,151,105,169,4,33
,3,60,1,172,141,133,189,164,59,254,224,53,75,75,53,1,32,10,23,24,21,27,14,24,2,65,35,13,40,34,47,63,38,125,163,22,1,118,104,152
,166,52,38,38,52,38,2,128,51,77,20,57,53,83,43,67,61,139,44,21,64,81,81,25,57,253,128,64,64,167,26,30,16,73,74,32,50,69,25,61
,17,76,53,105,152,62,57,21,22,101,77,139,161,69,59,75,53,2,128,53,75,9,19,17,28,15,28,3,74,55,21,82,62,64,35,134,122,68,60,152
,0,0,3,0,0,255,128,7,0,5,128,0,53,0,61,0,113,0,0,37,51,17,35,34,46,2,39,38,39,38,39,38,39,46,4,35,34,6,21,20
,30,2,21,33,34,6,21,20,22,51,33,14,1,21,20,23,6,20,22,23,6,21,20,22,51,50,62,1,36,52,38,34,6,20,22,50,19,17,20,6
,35,33,34,7,6,35,34,38,63,1,38,53,52,55,38,39,35,34,38,53,52,54,51,33,38,53,52,54,51,50,30,3,23,22,23,30,6,51,33,50
,22,5,96,32,32,35,65,60,40,29,8,4,72,40,14,24,1,19,18,22,21,8,71,89,30,36,30,253,192,50,78,76,52,1,75,15,20,53,18,35
,30,4,97,87,84,198,190,1,104,38,52,38,38,52,166,75,53,254,224,59,164,190,127,142,176,1,1,61,3,33,4,169,105,151,152,104,1,118,22,163
,125,38,63,47,34,40,13,35,65,2,24,14,27,21,24,23,10,1,32,53,75,128,2,128,24,50,42,33,9,5,81,64,22,46,3,39,33,38,23,61
,67,43,83,53,57,20,77,51,52,76,17,61,25,69,50,32,74,73,16,24,32,85,82,64,64,38,52,38,38,52,38,2,128,253,128,53,75,59,69,155
,140,5,76,102,22,21,57,62,152,105,103,152,60,68,122,134,35,64,62,82,21,55,74,3,28,15,28,17,19,9,75,0,0,0,3,0,0,255,0,6
,0,6,0,0,7,0,53,0,104,0,0,4,52,38,34,6,20,22,50,19,52,35,34,7,46,1,34,7,38,35,34,6,7,17,52,38,35,34,6,21
,17,34,46,2,35,34,6,21,20,23,22,23,22,23,22,23,22,29,1,33,53,52,62,1,55,20,7,6,21,17,20,6,35,33,34,38,53,17,52,46
,5,39,38,39,46,4,53,52,54,51,50,23,17,52,54,51,50,22,29,1,22,23,54,51,50,23,54,22,5,0,38,52,38,38,52,166,167,26,30,16
,73,74,32,50,69,25,61,17,76,52,51,77,20,57,53,83,43,67,61,139,44,21,64,81,81,25,57,2,128,64,64,128,69,59,75,53,253,128,53,75
,9,19,17,28,15,28,3,74,55,21,82,62,64,35,134,122,68,60,152,103,105,152,62,57,21,22,101,77,139,161,90,52,38,38,52,38,3,60,189,5
,30,35,18,53,20,15,1,75,52,76,78,50,253,192,30,36,30,89,71,24,66,24,13,40,72,71,30,69,71,32,32,72,190,197,86,133,189,164,59,254
,224,53,75,75,53,1,32,10,23,24,21,27,14,24,2,65,35,13,40,34,47,63,38,125,163,22,1,118,104,152,151,105,169,4,33,3,60,1,172,0
,0,0,3,0,0,255,0,6,0,6,0,0,52,0,60,0,112,0,0,1,52,46,1,61,1,33,21,20,14,2,7,6,7,6,7,6,7,14,4,21
,20,22,51,50,62,2,51,17,20,22,51,50,54,53,17,22,51,50,55,22,50,54,55,22,51,50,54,2,52,38,34,6,20,22,50,1,20,6,47,1
,6,35,34,39,6,7,21,20,6,35,34,38,53,17,6,35,34,38,53,52,62,3,55,54,55,62,6,53,17,52,54,51,33,50,22,21,17,20,23,22
,5,128,64,64,253,128,24,50,42,33,9,5,81,64,22,46,3,39,33,38,23,61,67,43,83,53,57,20,77,51,52,76,46,57,69,50,32,74,73,16
,24,32,85,82,128,38,52,38,38,52,1,38,155,140,5,76,102,22,21,54,65,152,105,103,152,54,74,121,135,35,64,62,82,21,55,74,3,28,15,28
,17,19,9,75,53,2,128,53,75,59,69,2,64,84,198,190,72,32,32,35,65,60,40,29,8,4,72,40,14,24,1,19,18,22,21,8,71,89,30,36
,30,253,192,50,78,76,52,1,75,35,53,18,35,30,4,97,3,61,52,38,38,52,38,253,68,142,176,1,1,61,3,30,7,169,105,151,152,104,1,118
,22,163,125,38,63,47,34,40,13,35,65,2,24,14,27,21,24,23,10,1,32,53,75,75,53,254,224,59,164,190,0,0,0,0,2,0,0,255,128,6
,0,5,128,0,31,0,43,0,0,1,53,52,38,35,33,55,54,52,47,1,38,34,7,1,7,6,20,31,1,1,22,50,63,1,54,52,47,1,33,50
,54,0,16,2,4,32,36,2,16,18,36,32,4,5,0,38,26,254,10,189,19,19,91,18,54,18,254,150,91,18,18,91,1,106,18,54,18,91,18,18
,189,1,246,26,38,1,0,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,64,128,26,38,189,19,52,19,91,18,18,254,150,91,18,54,18
,91,254,150,18,18,91,18,54,18,189,38,1,43,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,2,0,0,255,128,6,0,5,128,0
,31,0,43,0,0,0,52,47,1,1,38,34,15,1,6,20,31,1,33,34,6,29,1,20,22,51,33,7,6,20,31,1,22,50,55,1,55,36,16,2
,4,32,36,2,16,18,36,32,4,5,5,18,91,254,150,18,54,18,91,18,18,189,254,10,26,38,38,26,1,246,189,19,19,91,18,54,18,1,106,91
,1,13,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,101,54,18,91,1,106,18,18,91,18,54,18,189,38,26,128,26,38,189,19,52,19
,91,18,18,1,106,91,254,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0,0,255,128,6,0,5,128,0,31,0,43,0,0,0,52,39
,1,39,38,34,15,1,1,6,20,31,1,22,50,63,1,17,20,22,59,1,50,54,53,17,23,22,50,63,1,36,16,2,4,32,36,2,16,18,36,32
,4,5,4,18,254,150,91,18,54,18,91,254,150,18,18,91,18,54,18,189,38,26,128,26,38,189,19,52,19,91,1,14,206,254,159,254,94,254,159,206
,206,1,97,1,162,1,97,2,102,54,18,1,106,91,18,18,91,254,150,18,54,18,91,18,18,189,254,10,26,38,38,26,1,246,189,19,19,91,253,254
,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0,0,255,128,6,0,5,128,0,31,0,43,0,0,0,52,47,1,38,34,15,1,17,52,38
,43,1,34,6,21,17,39,38,34,15,1,6,20,23,1,23,22,50,63,1,1,0,16,2,4,32,36,2,16,18,36,32,4,5,4,18,91,18,54,18
,189,38,26,128,26,38,189,19,52,19,91,18,18,1,106,91,18,54,18,91,1,106,1,14,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2
,100,54,18,91,18,18,189,1,246,26,38,38,26,254,10,189,19,19,91,18,54,18,254,150,91,18,18,91,1,106,0,255,254,94,254,159,206,206,1,97
,1,162,1,97,206,206,0,0,0,0,3,0,0,255,128,6,0,5,128,0,11,1,216,2,24,0,0,0,32,4,18,16,2,4,32,36,2,16,18,1
,14,1,7,50,62,1,55,54,55,54,55,54,23,38,54,55,62,1,63,1,6,38,39,20,7,52,38,6,39,46,2,39,46,1,39,46,3,34,14,1
,35,38,14,2,7,14,1,7,54,39,38,7,54,38,39,51,46,2,39,46,1,7,6,30,1,21,22,6,21,20,22,7,14,1,7,6,22,23,22,14
,2,15,1,6,38,39,38,39,38,7,38,39,38,7,54,39,38,7,62,1,53,54,55,62,2,35,22,55,62,1,55,54,30,1,51,22,54,39,22,39
,38,39,38,7,6,23,38,14,1,39,46,1,39,34,7,54,38,39,54,39,46,1,7,14,1,30,2,23,22,7,14,2,7,6,22,7,46,1,39,22
,47,1,34,6,38,39,38,55,54,23,46,1,39,6,7,22,55,62,1,55,54,23,55,22,23,38,7,6,7,22,7,46,2,39,34,7,6,7,22,23
,30,2,55,22,7,54,23,22,23,22,7,46,1,7,6,22,55,34,6,20,7,23,6,22,55,6,23,22,23,30,2,23,30,1,23,6,22,7,34,6
,35,30,1,23,30,2,55,54,39,38,39,46,1,39,50,30,2,7,6,30,2,23,30,1,35,50,22,23,30,1,23,30,3,23,30,1,23,22,50,54
,55,54,22,23,22,55,6,30,2,23,30,1,23,54,55,6,22,55,54,53,6,39,52,46,2,54,51,50,54,38,39,46,1,39,6,38,39,20,6,21
,34,39,62,1,55,62,3,38,7,6,7,14,2,7,6,38,39,46,1,53,52,62,1,39,62,1,55,62,1,22,54,55,38,39,38,35,22,54,23,22
,55,52,38,55,22,55,30,1,23,30,2,54,55,22,23,22,23,22,62,1,38,47,1,52,53,39,46,1,54,55,62,2,55,54,39,50,55,34,46,1
,35,54,39,62,1,55,22,55,54,39,62,1,55,22,54,52,55,62,1,63,1,54,35,22,55,54,39,54,38,39,54,22,55,54,39,38,3,54,55,46
,1,39,38,39,54,46,2,39,46,3,6,35,7,14,3,23,38,39,46,2,6,7,14,1,7,38,54,39,38,14,4,7,14,1,7,46,1,53,30,1
,23,22,7,6,7,6,23,20,6,23,20,2,47,1,162,1,97,206,206,254,159,254,94,254,159,206,206,3,68,2,15,6,2,5,5,1,6,16,14,38
,34,17,2,23,3,3,24,3,2,12,11,1,6,9,14,2,10,10,6,1,2,15,2,1,3,3,5,6,8,7,1,3,6,3,6,2,3,11,3,15
,16,10,6,9,3,7,5,1,15,20,3,8,52,7,5,1,7,1,13,28,4,3,26,3,5,7,7,2,1,6,5,4,3,11,19,4,7,9,23,6
,5,36,25,33,6,6,7,12,3,2,3,9,1,12,7,3,35,15,5,13,4,9,10,19,5,14,3,9,12,9,4,4,12,15,8,10,1,17,16,8
,1,9,5,8,8,3,28,10,19,27,7,27,6,5,1,11,10,13,2,14,6,2,13,10,1,3,6,5,5,8,3,7,32,10,4,24,17,5,4,4
,1,3,4,14,3,46,48,6,6,5,16,2,34,8,5,14,6,7,23,20,2,7,2,4,15,14,8,16,6,146,89,7,5,4,2,3,10,9,6,1
,43,19,2,3,13,1,16,1,3,7,7,7,5,1,2,3,17,13,13,33,6,2,3,18,12,4,4,12,8,2,23,1,1,3,1,3,25,3,1,2
,4,6,2,26,15,2,3,5,2,2,8,9,6,1,3,10,14,20,2,6,16,8,9,22,6,5,6,2,2,13,12,20,3,5,27,8,10,12,17,5
,15,28,7,36,19,2,5,11,7,2,5,26,5,6,1,3,20,8,14,31,18,5,3,2,2,4,9,2,6,1,1,20,2,5,22,5,3,13,2,1
,3,2,1,9,6,2,11,12,19,7,1,4,6,6,7,34,7,13,19,5,1,6,3,12,4,2,5,4,4,1,1,3,3,1,7,43,6,15,7,5
,2,5,24,3,25,5,3,8,3,7,5,10,2,11,8,7,8,1,1,1,1,1,15,7,10,10,1,14,17,4,21,6,7,4,1,8,7,1,9,7
,5,5,5,9,12,8,7,5,31,3,7,2,3,4,22,2,17,3,3,18,13,10,16,3,12,9,3,17,2,15,22,17,189,206,145,3,19,3,18,6
,1,7,9,16,3,2,10,4,11,6,7,3,3,5,6,2,1,21,15,5,12,9,11,6,5,2,1,7,14,5,3,15,9,14,4,13,2,3,6,2
,2,19,2,4,3,7,19,27,2,4,16,16,1,5,128,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,254,197,1,17,1,10,12,1,7,8
,6,6,8,19,2,22,1,2,5,5,22,1,16,13,2,6,7,2,4,1,3,9,24,3,5,12,4,2,7,6,5,10,10,2,1,1,5,1,2,2
,1,5,6,4,1,4,16,6,4,9,8,2,5,9,4,6,9,19,3,6,14,5,7,17,13,8,16,4,8,21,6,2,4,5,3,2,2,5,22,15
,25,5,8,9,13,13,9,5,1,14,15,3,6,23,2,13,10,1,15,12,4,15,5,24,5,6,1,10,1,24,8,1,18,7,2,4,9,4,4,1
,23,12,11,1,25,1,15,8,14,1,12,15,4,2,5,7,9,7,4,4,1,10,4,1,5,4,2,4,20,4,5,25,4,9,3,1,4,2,7,8
,12,4,2,3,13,2,15,26,1,2,2,9,1,14,7,5,16,9,4,3,6,6,12,6,3,14,8,1,1,80,142,7,1,1,16,6,6,8,11,1
,28,17,4,11,7,2,14,3,5,27,1,32,39,4,1,12,45,3,3,40,8,1,2,11,9,6,5,35,6,6,28,9,2,7,14,6,3,14,8,2
,20,42,25,4,5,21,4,3,4,4,1,7,21,16,22,2,6,27,21,9,8,36,6,7,13,6,10,2,2,17,3,4,5,1,2,34,4,19,8,1
,13,18,11,3,6,18,6,4,5,8,24,2,3,29,15,33,1,9,8,9,6,7,18,4,8,24,3,9,2,8,1,9,2,1,3,29,8,4,16,13
,12,7,1,1,19,3,15,8,3,3,2,4,8,42,16,10,33,17,16,2,15,3,1,1,1,4,4,1,2,3,3,9,6,11,13,1,17,5,27,18
,3,4,3,2,7,2,3,5,14,10,40,4,3,2,17,11,7,8,9,9,8,3,18,19,9,1,5,8,4,19,16,9,6,4,5,11,3,16,2,12
,10,8,8,7,7,6,2,8,16,4,5,8,1,11,4,2,13,11,9,6,7,2,1,1,2,10,6,5,252,130,36,153,3,3,2,7,1,7,12,6
,10,2,2,8,3,6,2,1,1,3,3,3,1,17,5,1,9,5,2,6,5,20,3,5,25,6,6,3,6,11,2,9,3,4,16,3,4,5,3,10
,50,13,31,17,25,15,22,4,7,27,8,6,0,0,3,0,21,255,21,6,126,5,128,0,7,0,21,0,47,0,0,36,52,38,34,6,20,22,50,9
,1,6,35,34,47,1,38,53,52,55,1,30,1,1,20,7,14,1,35,34,0,16,0,51,50,22,23,22,20,7,5,21,23,62,2,51,50,22,1,128
,38,52,38,38,52,2,170,253,86,37,53,52,39,106,38,38,2,169,39,151,2,220,23,47,235,141,185,254,249,1,7,185,58,127,44,16,16,254,219,193
,5,148,123,9,15,17,38,52,38,38,52,38,1,228,253,86,37,37,108,36,54,53,38,2,169,98,151,1,140,39,67,134,167,1,7,1,114,1,7,33
,30,11,34,11,169,224,107,3,91,71,20,0,0,0,6,0,0,0,0,7,0,5,128,0,3,0,7,0,11,0,27,0,43,0,59,0,0,37,33,53
,33,1,33,53,33,1,33,53,33,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,25,1,20,6,35,33,34,38,53,17,52,54,51,33,50
,22,25,1,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,0,2,128,253,128,254,128,4,0,252,0,2,128,1,128,254,128,2,0,38,26,249
,128,26,38,38,26,6,128,26,38,38,26,249,128,26,38,38,26,6,128,26,38,38,26,249,128,26,38,38,26,6,128,26,38,128,128,1,128,128,1,128
,128,252,64,255,0,26,38,38,26,1,0,26,38,38,1,230,255,0,26,38,38,26,1,0,26,38,38,1,230,255,0,26,38,38,26,1,0,26,38,38
,0,0,1,0,5,255,128,5,123,5,0,0,21,0,0,1,22,7,1,17,20,7,6,35,34,39,1,38,53,17,1,38,55,54,51,33,50,5,123,17
,31,254,19,39,13,12,27,18,255,0,19,254,19,31,17,17,42,5,0,42,4,217,41,29,254,19,253,26,42,17,5,19,1,0,19,26,1,230,1,237
,29,41,39,0,0,0,4,0,0,0,0,7,0,6,0,0,3,0,23,0,27,0,47,0,0,1,33,53,33,1,17,20,6,35,33,34,38,53,17,33
,21,20,22,51,33,50,54,61,1,35,21,33,53,1,17,33,17,52,54,51,33,53,52,54,51,33,50,22,29,1,33,50,22,2,128,2,0,254,0,4
,128,94,66,250,64,66,94,2,160,38,26,1,64,26,38,96,255,0,4,0,249,0,94,66,1,96,56,40,2,64,40,56,1,96,66,94,5,0,128,253
,0,254,32,66,94,94,66,1,224,160,26,38,38,26,160,128,128,1,224,254,128,1,128,66,94,160,40,56,56,40,160,94,0,0,1,0,0,255,128,6
,0,5,128,0,71,0,0,9,2,55,54,23,22,21,17,20,6,35,33,34,39,38,63,1,9,1,23,22,7,6,35,33,34,38,53,17,52,55,54,31
,1,9,1,7,6,35,34,39,38,53,17,52,54,51,33,50,23,22,15,1,9,1,39,38,55,54,51,33,50,22,21,17,20,7,6,35,34,39,5,3
,254,157,1,99,144,29,41,39,38,26,254,64,42,17,17,31,144,254,157,254,157,144,31,17,17,42,254,64,26,38,40,39,30,144,1,99,254,157,144,19
,26,12,12,40,38,26,1,192,42,17,17,31,144,1,99,1,99,144,31,17,17,42,1,192,26,38,39,13,12,26,19,3,227,254,157,254,157,144,31,17
,17,42,254,64,26,38,40,39,30,144,1,99,254,157,144,30,39,40,38,26,1,192,42,17,17,31,144,1,99,1,99,144,19,5,17,42,1,192,26,38
,40,39,30,144,254,157,1,99,144,30,39,40,38,26,254,64,42,17,5,19,0,0,6,0,0,255,0,7,128,6,0,0,17,0,49,0,57,0,65,0
,83,0,91,0,0,1,6,7,35,34,38,53,16,51,50,30,1,51,50,55,6,21,20,1,20,6,35,33,34,38,53,52,62,5,51,50,30,2,50,62
,2,51,50,30,5,0,20,6,34,38,52,54,50,0,16,6,32,38,16,54,32,1,20,6,43,1,38,39,54,53,52,39,22,51,50,62,1,51,50,2
,20,6,34,38,52,54,50,2,81,162,103,134,82,112,124,6,75,120,59,67,66,5,4,128,146,121,252,150,121,146,7,21,32,54,70,101,61,10,66,80
,134,136,134,80,66,10,61,101,70,54,32,21,7,252,0,150,212,150,150,212,3,86,225,254,194,225,225,1,62,3,33,112,82,134,103,162,81,5,66,67
,59,120,75,6,124,128,150,212,150,150,212,2,128,5,123,81,78,1,97,42,43,23,37,29,139,253,14,120,139,139,120,53,101,117,100,95,67,40,43,53
,43,43,53,43,40,67,95,100,117,101,5,50,212,150,150,212,150,254,31,254,194,225,225,1,62,225,253,159,78,81,123,5,117,139,29,37,23,43,42,1
,106,212,150,150,212,150,0,0,0,0,3,0,16,255,144,6,112,5,240,0,33,0,67,0,105,0,0,1,52,47,1,38,35,34,7,30,4,21,20,6
,35,34,46,3,39,6,21,20,31,1,22,51,50,63,1,54,1,52,47,1,38,35,34,15,1,6,21,20,31,1,22,51,50,55,46,4,53,52,54,51
,50,30,3,23,54,0,20,15,1,6,35,34,47,1,38,53,52,55,39,6,35,34,47,1,38,52,63,1,54,51,50,31,1,22,21,20,7,23,54,51
,50,31,1,5,176,28,208,28,40,42,30,3,32,11,19,7,56,40,15,25,26,12,31,3,33,28,206,27,41,40,28,147,28,253,65,28,206,28,40,39
,29,147,28,28,208,27,41,42,30,3,32,11,19,7,56,40,15,25,26,12,31,3,33,3,127,85,147,83,120,121,83,206,83,88,88,86,122,120,84,208
,84,85,147,83,120,121,83,206,83,88,88,86,122,120,84,208,1,64,40,28,208,28,32,3,31,12,26,25,15,40,56,7,19,11,32,3,31,42,40,28
,207,27,26,146,28,2,232,40,28,207,28,27,146,28,39,40,28,208,27,31,3,31,12,26,25,15,40,56,7,19,11,32,3,31,253,225,240,83,146,83
,85,207,83,120,123,86,88,88,84,208,84,240,83,146,83,85,207,83,120,123,86,88,88,84,208,0,1,0,0,0,0,7,128,5,128,0,27,0,0,1
,20,6,35,33,34,0,53,52,54,55,38,53,52,0,51,50,4,23,54,51,50,22,21,20,7,30,1,7,128,225,159,251,192,185,254,249,142,116,2,1
,44,212,158,1,1,59,70,96,106,150,41,129,168,1,128,159,225,1,7,185,132,219,54,28,15,212,1,44,176,142,62,150,106,75,63,30,209,0,2,0
,115,255,128,6,13,5,128,0,23,0,33,0,0,37,22,6,35,33,34,38,55,1,17,35,34,38,52,54,51,33,50,22,20,6,43,1,17,5,1,33
,1,39,53,17,35,17,21,5,247,56,69,106,251,128,106,69,56,1,247,64,26,38,38,26,2,0,26,38,38,26,64,254,236,254,240,2,200,254,240,20
,128,88,89,127,127,89,3,25,1,143,38,52,38,38,52,38,254,113,68,254,83,1,173,31,37,1,143,254,113,37,0,0,0,0,7,0,1,255,128,7
,0,5,0,0,7,0,78,0,92,0,106,0,120,0,134,0,140,0,0,0,50,22,20,6,34,38,52,5,1,22,7,6,15,1,6,35,34,39,1,7
,6,7,22,7,14,1,7,6,35,34,39,38,55,62,1,55,54,51,50,23,54,63,1,39,38,39,6,35,34,39,46,1,39,38,54,55,54,51,50,23
,30,1,23,22,7,22,31,1,1,54,51,50,31,1,22,23,22,7,5,54,38,39,38,35,34,7,6,22,23,22,51,50,3,62,1,39,38,35,34,7
,14,1,23,22,51,50,1,23,53,52,63,1,39,7,14,1,7,14,1,7,31,1,1,39,1,21,7,23,22,23,30,1,31,1,1,55,1,7,6,7
,3,166,52,38,38,52,38,1,108,1,251,28,3,5,30,128,13,16,17,14,253,78,110,8,4,14,4,7,98,83,132,145,136,86,90,11,7,98,82,132
,146,83,68,9,13,122,122,13,9,68,83,146,132,82,98,7,5,41,43,85,137,145,132,83,98,7,4,14,4,8,110,2,178,14,17,16,13,128,30,5
,3,28,251,92,46,50,81,92,100,74,39,46,50,81,92,100,74,46,81,50,46,39,74,100,92,81,50,46,39,74,100,1,14,96,33,14,79,26,3,14
,5,2,4,1,215,96,2,224,128,253,0,160,9,2,5,4,14,4,26,3,96,128,253,248,177,2,11,2,128,38,52,38,38,52,26,254,114,20,36,35
,16,64,7,8,1,131,66,4,1,49,48,77,141,53,84,78,84,123,76,142,53,84,31,13,9,73,73,9,13,31,84,53,142,76,59,108,39,79,84,52
,142,77,48,49,1,4,66,1,131,8,7,64,16,35,36,20,138,42,132,51,59,36,42,132,51,59,253,59,51,132,42,36,59,51,132,42,36,2,160,58
,11,36,20,8,47,26,3,16,4,2,3,1,233,32,2,64,64,254,81,113,96,8,2,4,4,16,4,26,254,192,64,1,152,138,3,4,0,0,5,0
,0,255,0,7,0,6,0,0,31,0,34,0,37,0,51,0,60,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,33,34,38,53,17,52,54,55
,1,62,1,51,33,50,22,21,17,54,51,7,1,33,9,1,33,19,1,17,33,17,20,6,35,33,17,33,17,52,54,1,17,33,17,20,6,35,33,17
,6,160,40,56,56,40,252,64,40,56,253,224,40,56,40,28,1,152,28,96,40,1,160,40,56,68,60,128,254,213,1,43,253,128,254,213,1,43,196,1
,60,254,128,56,40,254,96,2,0,40,3,216,254,128,56,40,254,96,4,128,56,40,251,64,40,56,56,40,1,32,56,40,2,160,40,96,28,1,152,28
,40,56,40,254,184,40,213,254,213,2,171,254,213,254,164,1,60,1,160,254,96,40,56,253,128,1,0,40,96,252,248,4,128,254,96,40,56,253,128,0
,0,0,1,0,4,255,132,5,124,5,124,0,63,0,0,37,20,6,35,34,39,1,38,53,52,54,51,50,23,1,22,21,20,6,35,34,39,1,38,35
,34,6,21,20,23,1,22,51,50,54,53,52,39,1,38,35,34,6,21,20,23,1,22,21,20,6,35,34,39,1,38,53,52,54,51,50,23,1,22,5
,124,158,117,135,100,252,247,113,220,159,158,115,2,93,10,61,16,13,10,253,162,79,102,106,146,76,3,8,63,82,64,84,63,253,187,26,34,29,38,25
,1,154,10,62,16,12,10,254,102,63,114,82,88,61,2,69,100,151,117,158,100,3,8,115,156,159,222,113,253,162,10,12,16,61,10,2,95,77,150,106
,105,76,252,247,63,84,64,82,63,2,69,24,38,29,32,27,254,102,10,12,16,62,10,1,154,61,88,82,114,63,253,187,98,0,4,0,0,255,128,6
,0,5,128,0,3,0,33,0,49,0,69,0,0,41,1,17,33,1,51,17,52,38,39,1,46,1,35,17,20,6,35,33,34,38,53,17,35,17,51,17
,52,54,51,33,50,22,21,1,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,5,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23
,1,30,1,1,128,3,0,253,0,3,128,128,20,10,254,231,10,48,15,56,40,253,192,40,56,128,128,56,40,3,64,40,56,254,128,19,13,192,13,19
,19,13,192,13,19,2,128,56,40,250,192,40,56,56,40,3,160,40,96,28,1,24,28,40,1,128,254,128,3,128,14,49,10,1,25,10,20,254,96,40
,56,56,40,1,160,251,0,1,160,40,56,56,40,2,0,1,64,13,19,19,13,254,192,13,19,19,19,252,96,40,56,56,40,5,64,40,56,40,28,254
,232,28,96,0,0,0,1,0,0,255,128,6,0,5,128,0,15,0,0,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,6,0,169,119,252
,64,119,169,169,119,3,192,119,169,4,96,252,64,119,169,169,119,3,192,119,169,169,0,0,0,0,3,0,0,0,0,6,0,5,0,0,15,0,31,0
,47,0,0,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,6,0,38,26,250,128,26,38,38,26,5,128,26,38,38,26,250,128,26,38,38,26,5,128,26,38,38,26,250
,128,26,38,38,26,5,128,26,38,192,128,26,38,38,26,128,26,38,38,1,230,128,26,38,38,26,128,26,38,38,1,230,128,26,38,38,26,128,26,38
,38,0,6,0,0,255,192,7,0,5,64,0,7,0,15,0,31,0,39,0,55,0,71,0,0,36,20,6,34,38,52,54,50,18,20,6,34,38,52,54
,50,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,0,20,6,34,38,52,54,50,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50
,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,128,112,160,112,112,160,112,112,160,112,112,160,5,240,19,13,251,64,13,19,19,13
,4,192,13,19,250,128,112,160,112,112,160,5,240,19,13,251,64,13,19,19,13,4,192,13,19,19,13,251,64,13,19,19,13,4,192,13,19,208,160,112
,112,160,112,1,144,160,112,112,160,112,253,160,192,13,19,19,13,192,13,19,19,3,227,160,112,112,160,112,253,160,192,13,19,19,13,192,13,19,19,1
,243,192,13,19,19,13,192,13,19,19,0,0,0,0,6,0,15,255,0,7,0,5,247,0,30,0,60,0,76,0,92,0,108,0,124,0,0,5,20,6
,35,34,39,55,22,51,50,54,53,52,7,39,62,2,55,53,34,6,35,21,35,53,33,21,7,30,1,19,21,33,38,53,52,62,3,53,52,38,35,34
,7,39,62,1,51,50,22,21,20,14,2,7,51,53,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,21,33,53,51,52,54,61,1,35
,6,7,39,55,51,17,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,17,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,125
,109,81,106,66,57,49,57,29,43,105,26,8,49,36,19,16,65,16,106,1,77,95,51,60,2,254,150,6,47,66,66,47,29,25,46,35,85,24,95,58
,73,100,68,82,69,1,127,5,234,19,13,251,64,13,19,18,14,4,192,13,19,250,128,254,177,107,1,2,8,42,71,136,106,5,236,19,13,251,64,13
,19,18,14,4,192,13,19,19,13,251,64,13,19,19,13,4,192,13,19,84,80,92,66,88,45,29,28,64,8,56,10,67,41,18,1,2,53,152,88,115
,12,74,2,64,159,36,18,51,84,52,43,44,23,25,27,58,59,51,57,83,71,50,83,46,55,25,60,254,193,192,13,19,19,13,192,14,18,19,3,118
,99,99,41,161,41,12,17,37,76,127,254,108,254,125,192,13,19,19,13,192,14,18,19,1,243,192,13,19,19,13,192,13,19,19,0,0,0,0,3,0
,0,255,128,7,0,5,128,0,15,0,53,0,101,0,0,1,50,22,29,1,20,6,35,33,34,38,61,1,52,54,51,37,38,39,38,53,52,55,54,33
,50,23,22,23,22,23,22,21,20,15,1,47,1,38,39,38,35,34,7,6,21,20,23,22,23,22,23,22,23,3,33,22,21,20,7,6,7,6,7,6
,7,6,35,34,47,1,38,39,38,61,1,52,39,38,63,1,53,55,30,2,23,22,23,22,23,22,51,50,55,54,55,54,53,52,39,38,6,224,14,18
,18,14,249,64,14,18,18,14,1,195,28,23,48,134,133,1,4,50,117,66,111,10,11,14,5,12,84,14,50,53,88,122,114,68,67,66,66,213,69,104
,58,37,236,1,155,7,41,23,48,37,72,80,73,80,123,114,81,140,57,15,8,2,1,1,2,102,15,30,15,5,35,45,43,62,59,73,64,75,77,45
,47,81,34,2,128,18,14,64,14,18,18,14,64,14,18,64,35,45,98,90,181,128,127,19,12,36,38,80,123,60,18,27,3,6,2,149,56,91,59,58
,88,73,67,67,62,20,46,28,24,255,0,39,53,111,101,56,48,35,46,48,18,21,23,40,16,12,8,14,13,108,48,30,38,37,44,2,34,74,38,8
,57,37,36,21,22,27,26,60,61,68,84,73,29,0,2,0,0,255,128,6,0,5,128,0,99,0,115,0,0,19,38,47,1,54,51,50,23,22,51,50
,55,54,55,50,55,7,23,21,6,35,34,7,6,21,20,22,21,23,19,22,23,22,23,22,51,50,55,54,55,54,55,54,55,54,53,52,46,1,47,1
,38,39,38,15,1,39,55,51,23,22,55,23,22,21,20,7,6,7,6,7,6,21,20,22,21,22,19,22,7,6,7,6,7,6,7,6,35,34,39,38
,39,38,39,38,53,17,52,39,38,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,48,37,8,3,13,27,60,52,132,34,86,82,116,30,56
,30,1,2,60,64,60,19,13,1,1,14,6,45,35,61,88,89,104,87,56,43,48,17,36,17,21,7,15,6,4,5,19,34,43,100,14,2,84,205,76
,120,18,6,4,45,39,73,6,15,3,8,14,6,21,15,26,38,74,75,107,109,146,167,117,119,60,61,22,16,17,25,5,86,18,14,250,64,14,18,18
,14,5,192,14,18,5,33,2,2,88,1,4,7,3,4,1,2,14,64,9,9,25,14,118,13,39,6,229,254,232,124,78,59,33,47,28,18,33,36,28
,56,58,73,156,79,98,147,86,59,67,21,35,1,2,3,86,10,3,13,2,38,13,7,24,12,1,11,6,15,26,7,40,11,19,254,135,195,109,76,46
,65,58,57,32,33,46,47,75,76,119,80,157,1,77,188,25,36,250,130,64,14,18,18,14,64,14,18,18,0,0,10,0,0,0,0,6,128,5,128,0
,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0,143,0,159,0,0,37,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,17,53,52
,38,35,33,34,6,29,1,20,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20
,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,1,53,52
,38,35,33,34,6,29,1,20,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,17,53,52,38,35,33,34,6,29,1,20
,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,0,18,14,254,192,14,18,18,14,1,64,14,18,18,14,254,192,14
,18,18,14,1,64,14,18,2,0,18,14,254,192,14,18,18,14,1,64,14,18,254,0,18,14,254,192,14,18,18,14,1,64,14,18,2,0,18,14,254
,192,14,18,18,14,1,64,14,18,2,0,18,14,254,192,14,18,18,14,1,64,14,18,254,0,18,14,254,192,14,18,18,14,1,64,14,18,2,0,18
,14,254,192,14,18,18,14,1,64,14,18,18,14,254,192,14,18,18,14,1,64,14,18,128,94,66,250,192,66,94,94,66,5,64,66,94,160,192,14,18
,18,14,192,14,18,18,1,142,192,14,18,18,14,192,14,18,18,254,142,192,14,18,18,14,192,14,18,18,3,14,192,14,18,18,14,192,14,18,18,254
,142,192,14,18,18,14,192,14,18,18,254,142,192,14,18,18,14,192,14,18,18,3,14,192,14,18,18,14,192,14,18,18,254,142,192,14,18,18,14,192
,14,18,18,1,142,192,14,18,18,14,192,14,18,18,1,78,251,192,66,94,94,66,4,64,66,94,94,0,0,0,6,0,27,255,155,6,128,6,0,0
,3,0,19,0,27,0,35,0,43,0,51,0,0,9,1,39,1,36,20,7,1,6,34,47,1,38,52,55,1,54,50,31,1,37,23,15,1,47,1,63
,1,1,23,15,1,47,1,63,1,1,23,15,1,47,1,63,1,1,23,15,1,47,1,63,1,4,166,1,37,107,254,219,2,42,18,250,250,18,54,18
,198,18,18,5,6,18,54,18,198,250,203,98,98,30,30,98,98,30,1,124,196,196,60,60,196,196,60,3,222,98,98,30,30,98,98,30,253,158,98,98
,30,30,98,98,30,3,187,1,37,107,254,219,213,54,18,250,250,18,18,198,18,54,18,5,6,18,18,198,145,30,30,98,98,30,30,98,254,252,60,60
,196,196,60,60,196,253,94,30,30,98,98,30,30,98,2,30,30,30,98,98,30,30,98,0,0,0,4,0,64,255,128,7,0,5,0,0,7,0,16,0
,24,0,77,0,0,36,52,38,34,6,20,22,50,1,33,17,35,34,15,1,6,21,0,52,38,34,6,20,22,50,1,17,20,14,4,38,35,20,6,34
,38,53,33,20,6,34,38,53,35,34,6,46,4,53,52,54,51,17,52,38,62,3,63,1,62,1,59,1,53,52,54,51,33,50,22,2,128,76,104,76
,76,104,254,204,1,128,158,13,9,195,9,5,0,76,104,76,76,104,1,76,8,19,14,33,12,39,3,150,212,150,254,128,150,212,150,64,3,39,12,33
,14,19,8,38,26,1,1,4,9,19,13,198,19,63,27,160,38,26,4,0,26,38,76,104,76,76,104,76,2,128,1,0,9,195,9,13,253,174,104,76
,76,104,76,4,192,252,0,15,23,14,9,3,1,1,106,150,150,106,106,150,150,106,1,1,3,9,14,23,15,26,38,1,64,8,54,22,47,27,34,13
,198,19,26,192,26,38,38,0,0,0,1,0,0,255,128,6,0,5,128,0,74,0,0,0,16,2,4,35,34,39,54,55,54,55,30,1,51,50,62,1
,53,52,46,1,35,34,14,3,21,20,22,23,22,55,62,1,55,54,39,38,53,52,54,51,50,22,21,20,6,35,34,38,55,62,2,53,52,38,35,34
,6,21,20,23,3,6,23,38,2,53,52,18,36,32,4,6,0,206,254,159,209,111,107,59,19,9,45,20,106,61,121,190,104,119,226,142,105,182,127,91
,43,80,77,30,8,2,12,2,6,17,51,209,169,151,169,137,107,61,74,14,8,37,23,54,50,62,86,25,99,17,4,206,254,206,1,97,1,162,1,97
,3,81,254,94,254,159,206,32,93,71,34,177,39,57,137,240,150,114,200,126,58,96,125,134,67,104,158,32,12,32,7,48,6,23,20,61,90,151,217,164
,131,170,238,87,61,35,117,89,31,50,66,114,85,73,49,254,94,70,107,91,1,124,233,209,1,97,206,206,0,0,1,0,0,255,128,6,0,5,128,0
,76,0,0,1,50,22,21,17,20,6,35,33,54,55,54,55,30,1,51,50,18,53,52,46,2,35,34,14,3,21,20,22,23,22,54,55,54,55,54,39
,38,53,52,54,51,50,22,21,20,6,35,34,38,55,62,2,53,52,38,35,34,6,21,20,23,3,6,23,35,34,38,53,17,52,54,51,4,224,119,169
,169,119,253,43,85,23,9,44,21,105,60,181,229,70,123,182,106,104,181,125,90,43,79,77,13,21,4,10,5,6,17,50,207,167,149,167,135,106,60,74
,14,8,37,22,53,49,61,85,24,98,24,17,183,119,169,169,119,5,128,169,119,252,64,119,169,122,88,34,175,39,56,1,39,226,84,157,121,73,57,96
,123,133,66,102,156,32,5,10,14,44,17,23,19,62,88,150,213,162,129,168,236,87,60,34,117,87,31,49,65,113,83,72,49,254,98,100,154,169,119,3
,192,119,169,0,0,0,3,0,0,255,128,6,0,5,128,0,27,0,39,0,55,0,0,1,52,39,33,21,51,14,3,35,34,38,52,54,51,50,23,55
,38,35,34,6,16,22,51,50,54,37,51,53,35,53,35,21,35,21,51,21,51,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,149,6
,254,150,217,3,27,48,85,54,99,140,140,99,92,61,104,108,149,160,224,224,160,165,203,1,89,109,109,110,110,110,110,1,18,169,119,252,64,119,169,169
,119,3,192,119,169,2,119,26,38,132,24,52,54,35,142,200,142,59,101,100,225,254,194,225,210,119,110,110,110,110,110,2,133,252,64,119,169,169,119,3
,192,119,169,169,0,0,2,0,0,255,163,9,0,5,93,0,35,0,47,0,0,1,20,2,4,35,34,36,38,2,16,18,54,36,51,32,23,7,38,35
,34,14,1,20,30,1,51,50,62,3,55,33,53,33,22,37,21,35,21,35,53,35,53,51,53,51,21,5,157,174,254,190,208,149,254,240,196,116,116,196
,1,16,149,1,30,205,199,117,175,123,209,122,122,209,123,83,139,90,67,31,6,254,96,2,180,12,3,99,209,210,209,209,210,2,111,208,254,187,183,116
,196,1,16,1,42,1,16,196,116,192,191,113,124,213,252,213,124,46,69,88,78,35,252,63,63,210,209,209,210,209,209,0,0,0,4,0,0,0,0,7
,128,5,0,0,12,0,28,0,44,0,60,0,0,1,33,53,35,17,35,7,23,54,55,51,17,35,36,20,14,2,34,46,2,52,62,2,50,30,1,1
,17,34,38,53,33,20,6,35,17,50,22,21,33,52,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,0,1,128,128,114,148,77,42
,13,2,128,2,0,42,77,126,150,126,77,42,42,77,126,150,126,77,2,42,106,150,251,128,150,106,106,150,4,128,150,234,38,26,249,0,26,38,38,26
,7,0,26,38,1,128,96,1,192,137,80,37,20,254,224,230,140,144,124,78,78,124,144,140,144,124,78,78,124,254,42,2,0,150,106,106,150,254,0,150
,106,106,150,3,64,251,128,26,38,38,26,4,128,26,38,38,0,0,1,0,0,1,64,4,0,3,128,0,13,0,0,0,20,7,1,6,34,39,1,38
,52,54,51,33,50,4,0,19,254,64,19,52,19,254,64,19,38,26,3,128,26,3,90,52,19,254,64,19,19,1,192,19,52,38,0,0,0,0,1,0
,0,1,0,4,0,3,64,0,13,0,0,0,20,6,35,33,34,38,52,55,1,54,50,23,1,4,0,38,26,252,128,26,38,19,1,192,19,52,19,1
,192,1,90,52,38,38,52,19,1,192,19,19,254,64,0,0,0,0,1,0,64,0,128,2,128,4,128,0,13,0,0,1,17,20,6,34,39,1,38,52
,55,1,54,50,22,2,128,38,52,19,254,64,19,19,1,192,19,52,38,4,64,252,128,26,38,19,1,192,19,52,19,1,192,19,38,0,0,0,1,0
,0,0,128,2,64,4,128,0,13,0,0,0,20,7,1,6,34,38,53,17,52,54,50,23,1,2,64,19,254,64,19,52,38,38,52,19,1,192,2,154
,52,19,254,64,19,38,26,3,128,26,38,19,254,64,0,0,0,0,3,0,0,255,128,6,128,5,128,0,6,0,13,0,29,0,0,51,33,17,33,17
,20,22,37,17,33,17,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,160,2,96,253,128,19,5,109,253,128,2,96,13,19,128
,94,66,250,192,66,94,94,66,5,64,66,94,4,128,251,160,13,19,32,4,96,251,128,19,4,205,251,64,66,94,94,66,4,192,66,94,94,0,2,0
,0,255,192,4,0,5,64,0,13,0,27,0,0,0,20,7,1,6,34,39,1,38,52,54,51,33,50,18,20,6,35,33,34,38,52,55,1,54,50,23
,1,4,0,19,254,64,19,52,19,254,64,19,38,26,3,128,26,38,38,26,252,128,26,38,19,1,192,19,52,19,1,192,1,218,52,19,254,64,19,19
,1,192,19,52,38,1,90,52,38,38,52,19,1,192,19,19,254,64,0,0,0,0,1,0,0,255,192,4,0,2,0,0,13,0,0,0,20,7,1,6
,34,39,1,38,52,54,51,33,50,4,0,19,254,64,19,52,19,254,64,19,38,26,3,128,26,1,218,52,19,254,64,19,19,1,192,19,52,38,0,0
,0,0,1,0,0,3,0,4,0,5,64,0,13,0,0,0,20,6,35,33,34,38,52,55,1,54,50,23,1,4,0,38,26,252,128,26,38,19,1,192
,19,52,19,1,192,3,90,52,38,38,52,19,1,192,19,19,254,64,0,0,0,0,2,0,0,255,128,7,0,5,0,0,26,0,58,0,0,1,17,20
,6,35,33,34,38,53,17,22,23,4,23,30,2,59,2,50,62,1,55,54,37,54,19,20,6,7,0,7,14,4,43,2,34,46,3,39,38,36,39,46
,1,53,52,54,51,33,50,22,7,0,94,66,250,64,66,94,44,57,1,106,135,57,71,118,51,1,1,51,118,71,57,170,1,72,57,43,98,73,254,136
,92,10,65,43,61,54,23,1,1,23,54,61,43,65,10,91,254,170,34,62,110,83,77,5,192,65,95,3,58,252,230,66,94,94,66,3,26,49,38,246
,99,42,47,49,49,47,42,123,222,39,1,86,79,144,51,254,251,64,7,47,29,36,18,18,36,29,47,7,64,237,24,42,147,63,78,104,94,0,3,0
,0,255,176,6,0,5,108,0,3,0,15,0,43,0,0,1,17,33,17,1,22,6,43,1,34,38,53,52,54,50,22,1,17,33,17,52,38,35,34,6
,7,6,21,17,33,18,16,47,1,33,21,35,62,3,51,50,22,1,93,254,182,1,95,1,103,84,2,82,100,103,166,100,4,143,254,183,81,86,63,85
,21,11,254,183,2,1,1,1,73,2,20,42,71,103,63,171,208,3,143,252,33,3,223,1,50,73,98,98,73,74,97,97,252,221,253,200,2,18,105,119
,69,51,30,51,253,215,1,143,1,240,48,48,144,32,48,56,31,227,0,0,0,0,1,0,0,255,128,6,0,5,128,0,52,0,0,0,16,2,6,4
,35,34,36,39,38,54,63,1,54,51,22,23,30,1,51,50,62,2,52,46,2,35,34,6,7,23,22,7,6,35,33,34,38,53,17,52,55,54,31,1
,54,36,51,50,4,22,6,0,122,206,254,228,156,172,254,202,109,7,1,8,137,10,15,16,7,73,212,119,104,189,138,81,81,138,189,104,98,180,70,137
,31,17,17,42,254,64,26,38,40,39,30,130,107,1,19,147,156,1,28,206,3,28,254,200,254,228,206,122,145,132,10,25,8,138,9,2,10,95,104,81
,138,189,208,189,138,81,71,66,138,30,39,40,38,26,1,192,42,17,17,31,129,101,111,122,206,0,1,0,40,255,21,6,235,5,216,0,113,0,0,33
,20,15,1,6,35,34,39,1,38,53,52,55,1,7,6,34,39,30,6,21,20,7,14,5,35,34,39,1,38,53,52,62,4,55,54,51,50,30,5,23
,38,52,55,1,54,50,23,46,6,53,52,55,62,5,51,50,23,1,22,21,20,14,4,7,6,35,34,46,5,39,22,20,15,1,1,54,51,50,23,1
,22,6,235,37,107,39,52,53,37,254,149,38,43,255,0,126,14,40,14,2,21,4,16,4,8,3,28,3,27,11,26,18,26,13,40,28,254,104,28,9
,9,22,11,30,3,30,38,10,16,17,10,17,6,20,2,14,14,1,92,14,40,14,2,21,4,16,4,8,3,28,3,27,11,26,18,26,13,40,28,1
,152,28,9,9,22,11,30,3,30,38,10,16,17,10,17,6,20,2,14,14,126,1,0,43,53,52,39,1,107,37,53,37,108,37,37,1,108,36,54,53
,43,1,0,126,14,14,2,20,6,17,10,17,16,10,38,30,3,30,11,22,9,9,28,1,152,28,40,13,26,18,26,11,27,3,28,3,8,4,16,4
,21,2,14,40,14,1,92,14,14,2,20,6,17,10,17,16,10,38,30,3,30,11,22,9,9,28,254,104,28,40,13,26,18,26,11,27,3,28,3,8
,4,16,4,21,2,14,40,14,126,255,0,43,37,254,149,39,0,0,7,0,0,255,128,7,0,5,0,0,7,0,15,0,33,0,41,0,49,0,57,0
,75,0,0,0,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,1,19,54,46,1,6,7,3,14,1,7,6,30,1,54,55,54,38,36,52,38
,34,6,20,22,50,0,52,38,34,6,20,22,50,4,52,38,34,6,20,22,50,1,16,7,6,35,33,34,39,38,17,52,18,54,36,32,4,22,18,1
,128,75,106,75,75,106,1,11,75,106,75,75,106,1,247,101,6,27,50,46,7,101,60,94,16,20,80,154,138,20,16,44,2,98,75,106,75,75,106,253
,203,75,106,75,75,106,2,11,75,106,75,75,106,1,139,141,19,35,250,134,35,19,141,142,240,1,76,1,108,1,76,240,142,1,75,106,75,75,106,75
,2,11,106,75,75,106,75,254,159,1,126,26,45,14,27,26,254,130,5,77,60,77,138,40,80,77,60,114,14,106,75,75,106,75,2,203,106,75,75,106
,75,117,106,75,75,106,75,254,192,254,251,222,29,29,221,1,6,182,1,76,240,142,142,240,254,180,0,0,0,0,2,0,0,255,0,7,0,5,0,0
,22,0,60,0,0,0,32,4,6,21,20,22,31,1,7,6,7,54,63,1,23,22,51,50,36,54,16,38,4,16,2,4,35,34,39,6,5,6,7,35
,34,38,39,53,38,54,38,62,2,55,62,5,55,38,2,53,52,18,36,32,4,4,76,254,104,254,157,209,143,130,87,27,24,46,152,123,43,57,69,61
,204,1,99,209,209,1,81,240,254,100,244,70,75,198,254,250,49,65,5,15,24,4,3,5,1,10,2,12,2,7,48,21,41,24,30,11,157,181,240,1
,156,1,232,1,156,4,128,139,236,137,112,203,74,50,96,91,81,63,108,38,6,8,139,236,1,18,236,199,254,164,254,217,171,8,175,67,14,8,21,17
,1,4,16,4,15,3,14,2,8,53,23,56,46,72,40,89,1,6,150,174,1,39,171,171,0,0,3,0,0,255,128,7,0,5,0,0,20,0,58,0
,100,0,0,0,32,4,6,21,20,22,31,1,7,54,63,1,23,22,51,50,36,54,52,38,36,32,4,22,16,6,4,35,34,39,6,7,6,7,35,34
,38,39,38,52,62,5,55,62,4,55,46,1,53,52,54,1,30,4,23,30,6,20,7,14,1,39,38,39,38,39,6,35,32,39,22,51,50,36,55,62
,1,53,52,39,30,1,21,20,6,3,89,254,206,254,246,157,106,96,97,35,34,28,44,53,78,75,153,1,10,157,157,253,158,1,126,1,69,188,188,254
,187,191,86,90,124,154,36,50,3,11,19,2,1,1,3,2,5,3,6,1,5,36,16,29,21,10,124,142,188,5,58,10,21,29,16,36,5,1,6,3
,5,2,3,1,1,3,20,12,50,36,154,124,90,86,254,241,201,58,30,161,1,40,116,125,134,23,129,150,142,4,128,104,178,102,82,152,56,56,84,20
,19,31,10,14,104,178,204,178,232,137,236,254,234,236,137,16,88,40,9,7,16,13,3,7,6,6,4,7,3,7,1,6,38,21,37,40,24,72,210,119
,139,236,251,248,24,40,37,21,38,6,1,7,3,7,4,6,6,7,3,14,16,1,7,9,40,88,16,132,4,90,84,92,240,134,77,75,71,214,123,120
,209,0,1,0,1,255,0,3,124,5,128,0,33,0,0,1,22,7,1,6,35,34,39,46,1,55,19,5,6,35,34,39,38,55,19,62,1,51,33,50
,22,21,20,7,3,37,54,51,50,3,117,18,11,253,228,13,29,4,10,17,17,4,197,254,106,4,8,18,13,18,5,201,4,24,16,1,72,19,26,5
,171,1,140,8,4,19,3,202,20,24,251,123,25,2,5,28,16,3,40,101,1,11,15,24,3,57,14,18,25,17,8,10,254,49,98,2,0,0,1,0
,0,255,128,7,0,5,128,0,85,0,0,1,17,20,6,35,33,34,38,53,17,52,54,59,1,53,33,21,51,50,22,21,17,20,6,35,33,34,38,53
,17,52,54,59,1,53,33,21,51,50,22,21,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52,54,51,33,53,35,34,38,53,17,52,54,51,33
,50,22,21,17,20,6,43,1,21,33,50,22,29,1,51,50,22,7,0,56,40,254,192,40,56,56,40,96,254,0,96,40,56,56,40,254,192,40,56,56
,40,96,254,0,96,40,56,56,40,254,192,40,56,56,40,96,76,52,2,0,96,40,56,56,40,1,64,40,56,56,40,96,2,0,52,76,96,40,56,1
,32,254,192,40,56,56,40,1,64,40,56,192,192,56,40,254,192,40,56,56,40,1,64,40,56,192,192,56,40,254,192,40,56,56,40,1,64,40,56,192
,52,76,192,56,40,1,64,40,56,56,40,254,192,40,56,192,76,52,192,56,0,0,3,0,0,255,128,6,128,5,192,0,19,0,79,0,89,0,0,1
,17,20,6,34,38,53,52,54,50,22,21,20,22,50,54,53,17,54,50,5,20,6,35,34,39,46,1,35,34,6,7,14,1,7,6,35,34,39,46,1
,39,46,1,34,6,7,14,1,7,6,35,34,39,46,1,39,46,1,35,34,6,7,6,35,34,38,53,52,55,54,0,36,51,50,4,30,1,23,22,1
,21,38,34,7,53,52,54,50,22,3,128,152,208,152,38,52,38,78,100,78,33,62,3,33,19,13,11,12,49,88,58,68,120,43,7,21,4,11,17,18
,11,4,21,7,43,119,136,119,43,7,21,4,11,18,17,11,4,21,7,43,120,68,58,88,49,12,11,13,19,1,45,0,255,1,85,190,140,1,13,224
,165,33,1,253,0,42,44,42,38,52,38,2,196,253,188,104,152,152,104,26,38,38,26,50,78,78,50,2,68,11,38,13,19,10,46,46,74,60,10,36
,6,17,17,6,36,10,60,74,74,60,10,36,6,17,17,6,36,10,60,74,46,46,10,19,13,5,2,183,1,17,136,80,147,227,138,2,2,210,98,2
,2,98,26,38,38,0,4,0,0,255,0,7,0,6,0,0,8,0,24,0,27,0,55,0,0,5,33,17,33,34,38,53,17,33,1,53,52,38,35,33
,34,6,29,1,20,22,51,33,50,54,1,33,9,1,17,20,6,35,33,34,38,61,1,33,34,38,53,17,52,54,51,33,50,22,21,17,22,23,1,30
,1,3,0,3,128,254,96,40,56,254,128,1,0,19,13,253,64,13,19,19,13,2,192,13,19,1,0,1,43,254,213,2,0,56,40,252,64,40,56,253
,224,40,56,56,40,4,64,40,56,21,15,1,152,28,40,128,2,128,56,40,1,160,1,32,64,13,19,19,13,64,13,19,19,253,109,1,43,254,85,253
,96,40,56,56,40,160,56,40,5,64,40,56,56,40,254,184,13,15,254,104,28,96,0,0,0,0,3,0,0,255,128,4,0,5,128,0,16,0,40,0
,92,0,0,1,20,6,34,38,53,52,38,35,34,38,52,54,51,50,30,1,23,52,46,2,34,14,2,21,20,23,30,1,23,22,23,51,54,55,62,1
,55,54,55,20,7,14,2,7,22,21,20,7,22,21,20,7,22,21,20,6,35,14,1,34,38,39,34,38,53,52,55,38,53,52,55,38,53,52,55,46
,2,39,38,53,52,62,2,50,30,2,2,224,19,26,19,108,52,13,19,19,13,50,99,75,160,69,111,135,138,135,111,69,68,10,41,10,128,13,228,13
,128,10,41,10,68,128,103,45,59,60,4,47,25,25,45,13,63,46,20,80,94,80,20,46,63,13,45,25,25,47,4,60,59,45,103,89,145,183,190,183
,145,89,3,192,13,19,19,13,46,50,19,26,19,32,76,52,72,124,79,45,45,79,124,72,101,79,11,44,11,153,145,145,153,11,44,11,79,101,155,113
,49,76,115,50,28,54,37,27,27,37,52,29,23,24,46,50,44,52,52,44,50,46,24,23,29,52,37,27,27,37,54,28,50,115,76,49,113,155,99,171
,113,65,65,113,171,0,2,0,0,255,160,7,0,4,224,0,26,0,52,0,0,1,21,20,6,35,33,21,20,6,35,34,39,1,38,53,52,55,1,54
,51,50,22,29,1,33,50,22,16,20,7,1,6,35,34,38,61,1,33,34,38,61,1,52,54,51,33,53,52,54,51,50,23,1,7,0,19,13,250,160
,19,13,12,12,254,193,9,9,1,64,9,14,13,19,5,96,13,19,9,254,192,9,14,13,19,250,160,13,19,19,13,5,96,18,14,12,12,1,63,1
,96,192,13,19,192,13,19,10,1,64,9,13,14,9,1,64,9,19,13,192,19,2,33,28,9,254,192,9,19,13,192,19,13,192,13,19,192,14,18,10
,254,193,0,0,0,0,2,0,0,0,0,7,128,5,128,0,25,0,53,0,0,1,52,38,43,1,17,52,38,43,1,34,6,21,17,35,34,6,21,20
,23,1,22,50,55,1,54,5,20,6,35,33,34,0,53,52,54,55,38,53,52,0,51,50,4,23,54,51,50,22,21,20,7,30,1,5,0,18,14,224
,19,13,192,13,19,224,13,19,9,1,96,9,28,9,1,95,10,2,128,225,159,251,192,185,254,249,140,118,2,1,44,212,156,1,3,59,71,95,106,150
,41,130,167,2,96,14,18,1,96,13,19,19,13,254,160,19,13,14,9,254,160,9,9,1,95,12,212,159,225,1,7,185,130,220,55,30,13,212,1,44
,174,144,62,150,106,76,62,31,209,0,2,0,0,0,0,7,128,5,128,0,25,0,53,0,0,1,52,39,1,38,34,7,1,6,21,20,22,59,1,17
,20,22,59,1,50,54,53,17,51,50,54,1,20,6,35,33,34,0,53,52,54,55,38,53,52,0,51,50,4,23,54,51,50,22,21,20,7,30,1,5
,0,9,254,160,9,28,9,254,161,10,18,14,224,19,13,192,13,19,224,13,19,2,128,225,159,251,192,185,254,249,140,118,2,1,44,212,156,1,3,59
,71,95,106,150,41,130,167,2,160,14,9,1,96,9,9,254,161,12,12,14,18,254,160,13,19,19,13,1,96,19,254,237,159,225,1,7,185,130,220,55
,30,13,212,1,44,174,144,62,150,106,76,62,31,209,0,0,0,0,3,0,0,255,128,5,128,5,128,0,7,0,88,0,96,0,0,36,20,6,34,38
,52,54,50,5,20,6,35,33,34,38,53,52,62,3,55,6,29,1,14,1,21,20,22,50,54,53,52,38,39,53,52,55,22,32,55,22,29,1,34,6
,29,1,6,21,20,22,50,54,53,52,39,53,52,54,50,22,29,1,6,21,20,22,50,54,53,52,39,53,52,38,39,52,54,46,2,39,30,4,0,16
,6,32,38,16,54,32,1,128,38,52,38,38,52,4,38,146,121,252,150,121,146,11,37,58,104,68,22,58,70,112,160,112,71,57,25,132,1,70,132,25
,106,150,32,56,80,56,32,76,104,76,32,56,80,56,32,69,59,1,1,4,10,8,68,104,58,37,11,254,192,225,254,194,225,225,1,62,218,52,38,38
,52,38,125,121,138,138,121,68,126,150,115,91,15,52,68,203,20,100,61,80,112,112,80,61,100,20,203,62,31,104,104,31,62,64,150,106,89,29,42,40
,56,56,40,42,29,89,52,76,76,52,89,29,42,40,56,56,40,42,29,89,68,119,34,10,65,31,52,42,19,15,91,115,150,126,3,216,254,194,225,225
,1,62,225,0,0,0,2,0,0,255,128,5,128,5,128,0,7,0,77,0,0,0,52,38,34,6,20,22,50,55,20,6,7,17,20,4,32,36,61,1
,46,1,53,17,52,54,51,50,23,62,1,51,50,22,20,6,35,34,39,17,20,22,32,54,53,17,6,35,34,38,52,54,51,50,22,23,54,51,50,22
,21,17,20,6,7,21,20,22,32,54,53,17,46,1,53,52,54,50,22,5,0,38,52,38,38,52,166,71,57,254,249,254,142,254,249,164,220,38,26,6
,10,17,60,35,53,75,75,53,33,31,188,1,8,188,31,33,53,75,75,53,35,60,17,10,6,26,38,220,164,188,1,8,188,57,71,112,160,112,3,38
,52,38,38,52,38,64,62,98,21,254,117,159,225,225,159,132,20,216,144,2,0,26,38,2,30,36,75,106,75,18,254,110,106,150,150,106,1,146,18,75
,106,75,36,30,2,38,26,254,0,144,216,20,132,106,150,150,106,1,139,21,98,62,80,112,112,0,4,0,0,255,128,7,0,5,128,0,3,0,13,0
,27,0,37,0,0,1,33,53,33,5,17,35,34,38,53,17,52,54,51,33,17,33,17,51,53,52,54,51,33,50,22,29,1,5,17,20,6,43,1,17
,51,50,22,2,128,2,0,254,0,254,160,64,92,132,132,92,4,160,252,0,128,56,40,2,64,40,56,2,0,132,92,64,64,92,132,4,128,128,128,251
,0,132,92,3,64,92,132,251,0,5,0,160,40,56,56,40,160,224,252,192,92,132,5,0,132,0,2,0,64,255,0,6,192,6,0,0,11,0,51,0
,0,4,52,35,34,38,53,52,34,21,20,22,51,1,20,6,35,33,20,6,34,38,53,33,34,38,53,62,4,53,52,18,55,38,53,52,54,50,22,21
,20,7,22,18,21,20,30,3,3,144,16,59,85,32,103,73,3,64,76,52,254,64,150,212,150,254,64,52,76,50,82,88,61,39,234,190,8,56,80,56
,8,190,234,39,61,88,82,176,32,85,59,16,16,73,103,1,48,52,76,106,150,150,106,76,52,42,92,147,170,242,139,152,1,5,28,19,20,40,56,56
,40,20,19,28,254,251,152,139,242,170,147,92,0,0,3,0,0,255,128,7,64,5,0,0,7,0,15,0,34,0,0,0,52,38,43,1,17,51,50,1
,33,20,6,35,33,34,38,0,16,6,43,1,21,20,6,35,33,34,38,53,17,52,54,51,33,50,6,128,112,80,64,64,80,249,240,7,0,150,106,251
,0,106,150,7,64,225,159,64,132,92,253,64,92,132,38,26,4,128,159,3,48,160,112,254,128,253,192,106,150,150,4,9,254,194,225,32,92,132,132,92
,2,224,26,38,0,0,2,0,0,255,0,5,128,6,0,0,45,0,66,0,0,1,17,20,6,7,17,20,6,43,1,34,38,53,17,46,1,53,17,52
,54,50,22,21,17,20,22,50,54,53,17,52,54,50,22,21,17,20,22,50,54,53,17,52,54,50,22,5,17,20,6,43,1,34,38,53,17,35,34,38
,53,17,52,54,51,33,50,22,2,128,71,57,76,52,128,52,76,57,71,38,52,38,38,52,38,38,52,38,38,52,38,38,52,38,3,0,76,52,128,52
,76,224,13,19,188,132,1,0,26,38,5,192,253,128,61,100,20,252,245,52,76,76,52,3,11,20,100,61,2,128,26,38,38,26,254,96,26,38,38,26
,1,160,26,38,38,26,254,96,26,38,38,26,1,160,26,38,38,26,249,192,52,76,76,52,2,0,19,13,3,32,132,188,38,0,6,0,0,255,0,6
,0,6,0,0,19,0,26,0,35,0,51,0,67,0,83,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33
,38,39,1,38,1,17,33,34,38,53,17,33,17,1,52,54,51,33,50,22,29,1,20,6,35,33,34,38,53,5,50,22,29,1,20,6,35,33,34,38
,61,1,52,54,51,1,50,22,29,1,20,6,35,33,34,38,61,1,52,54,51,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1
,120,10,12,254,199,12,1,99,254,96,40,56,253,0,1,0,18,14,2,192,14,18,18,14,253,64,14,18,2,224,14,18,18,14,253,64,14,18,18,14
,2,192,14,18,18,14,253,64,14,18,18,14,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4
,0,56,40,1,160,250,0,3,96,14,18,18,14,64,14,18,18,14,160,18,14,64,14,18,18,14,64,14,18,255,0,18,14,64,14,18,18,14,64,14
,18,0,20,0,0,255,0,5,128,6,0,0,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0,143,0,159,0,175,0,191,0,207,0,223,0
,239,0,255,1,15,1,31,1,45,1,61,0,0,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,53,21,20,6,43,1,34,38,61,1,52
,54,59,1,50,22,5,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,21,20
,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52
,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20
,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52
,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20
,6,43,1,34,38,61,1,52,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52
,54,59,1,50,22,5,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,33,17,33,17,33,53,52,54,51,33,50,22,21,1,17,20,6,35
,33,34,38,53,17,52,54,51,33,50,22,1,128,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,1,0,19,13,64,13,19
,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,3,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13
,19,255,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,3,0,19,13,64,13,19,19,13,64,13,19,255,0,19
,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,3,0,19,13,64,13,19
,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,2,0,19,13,64,13,19,19,13,64,13
,19,255,0,19,13,64,13,19,19,13,64,13,19,1,0,19,13,64,13,19,19,13,64,13,19,255,0,1,128,251,128,1,128,19,13,1,64,13,19,2
,0,38,26,251,0,26,38,38,26,5,0,26,38,224,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64
,13,19,19,243,64,13,19,19,13,64,13,19,19,253,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13
,64,13,19,19,243,64,13,19,19,13,64,13,19,19,253,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19
,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,253,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,243,64,13,19
,19,13,64,13,19,19,254,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,250,147,6
,0,250,0,224,13,19,19,13,5,96,249,128,26,38,38,26,6,128,26,38,38,0,13,0,0,255,0,5,128,6,0,0,15,0,31,0,47,0,63,0
,79,0,95,0,111,0,127,0,143,0,159,0,183,0,219,0,245,0,0,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,53,21,20,6,43
,1,34,38,61,1,52,54,59,1,50,22,5,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59
,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43
,1,34,38,61,1,52,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,37,21,20,6,43,1,34,38,61,1,52,54,59
,1,50,22,5,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,33,17,33,21,20,6,35,33,34,38,61,1,33,17,33,53,52,54,51,33
,50,22,21,25,1,52,38,43,1,34,6,29,1,35,53,52,38,43,1,34,6,21,17,20,22,59,1,50,54,61,1,51,21,20,22,59,1,50,54,37
,17,20,6,35,33,34,38,53,17,52,54,51,33,17,52,54,51,33,50,22,21,17,33,50,22,1,128,19,13,64,13,19,19,13,64,13,19,19,13,64
,13,19,19,13,64,13,19,1,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,3,0,19,13,64,13,19,19,13
,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,255,0,19,13,64,13,19,19,13,64,13,19,2,0,19,13,64,13,19,19,13,64,13,19,255
,0,19,13,64,13,19,19,13,64,13,19,1,0,19,13,64,13,19,19,13,64,13,19,255,0,1,128,255,0,56,40,254,64,40,56,255,0,1,128,19
,13,1,64,13,19,19,13,64,13,19,128,19,13,64,13,19,19,13,64,13,19,128,19,13,64,13,19,2,0,38,26,251,0,26,38,38,26,1,64,56
,40,1,192,40,56,1,64,26,38,224,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,243
,64,13,19,19,13,64,13,19,19,253,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19
,254,243,64,13,19,19,13,64,13,19,19,243,64,13,19,19,13,64,13,19,19,13,64,13,19,19,13,64,13,19,19,252,147,4,128,32,40,56,56,40
,32,251,128,224,13,19,19,13,3,192,1,64,13,19,19,13,96,96,13,19,19,13,254,192,13,19,19,13,96,96,13,19,19,45,251,0,26,38,38,26
,5,0,26,38,1,32,40,56,56,40,254,224,38,0,5,0,64,255,128,7,128,5,128,0,7,0,16,0,24,0,60,0,99,0,0,36,52,38,34,6
,20,22,50,1,33,17,35,6,15,1,6,7,0,52,38,34,6,20,22,50,19,53,52,38,43,1,53,52,38,43,1,34,6,29,1,35,34,6,29,1
,20,22,59,1,21,20,22,59,1,50,54,61,1,51,50,54,1,17,20,6,43,1,20,6,34,38,53,33,20,6,34,38,53,35,34,38,52,54,51,17
,52,54,63,1,62,1,59,1,17,52,54,51,33,50,22,2,128,75,106,75,75,106,254,203,1,128,158,14,8,195,7,2,5,0,75,106,75,75,106,203
,18,14,224,18,14,192,14,18,224,14,18,18,14,224,18,14,192,14,18,224,14,18,1,0,38,26,192,150,212,150,254,128,150,212,150,128,26,38,38,26
,26,19,198,19,64,26,160,38,26,4,128,26,38,75,106,75,75,106,75,2,128,1,0,2,7,195,12,10,253,173,106,75,75,106,75,3,32,192,14,18
,224,14,18,18,14,224,18,14,192,14,18,224,14,18,18,14,224,18,2,46,251,128,26,38,106,150,150,106,106,150,150,106,38,52,38,1,160,26,64,19
,198,19,26,1,64,26,38,38,0,0,5,0,0,255,128,7,0,5,128,0,35,0,39,0,49,0,63,0,73,0,0,1,53,52,38,43,1,53,52,38
,43,1,34,6,29,1,35,34,6,29,1,20,22,59,1,21,20,22,59,1,50,54,61,1,51,50,54,1,33,53,33,5,17,35,34,38,53,17,52,54
,51,33,17,33,17,51,53,52,54,51,33,50,22,29,1,5,17,20,6,43,1,17,51,50,22,5,0,18,14,224,18,14,192,14,18,224,14,18,18,14
,224,18,14,192,14,18,224,14,18,253,128,2,0,254,0,254,128,32,92,132,132,92,4,192,251,192,160,56,40,2,64,40,56,2,0,132,92,32,32,92
,132,1,160,192,14,18,224,14,18,18,14,224,18,14,192,14,18,224,14,18,18,14,224,18,2,238,128,128,251,0,132,92,3,64,92,132,251,0,5,0
,160,40,56,56,40,160,224,252,192,92,132,5,0,132,0,0,0,0,1,0,0,0,0,7,128,4,128,0,58,0,0,1,6,13,1,7,35,1,51,50
,22,20,6,43,3,53,51,17,35,7,35,39,53,51,53,51,53,39,53,55,53,35,53,35,53,55,51,23,51,17,35,53,59,2,50,22,20,6,43,1
,1,51,23,5,30,1,23,7,128,1,254,225,254,160,224,64,254,219,69,26,38,38,26,96,160,64,64,160,192,96,32,32,128,192,192,128,32,32,96,192
,160,64,64,160,96,26,38,38,26,69,1,37,64,224,1,96,128,144,8,2,64,32,64,32,64,254,160,9,14,9,32,1,160,224,32,192,32,8,24,128
,24,8,32,192,32,224,1,160,32,9,14,9,254,160,64,32,28,48,10,0,0,0,2,0,64,0,0,6,128,5,128,0,6,0,24,0,0,1,17,33
,17,20,22,51,1,21,33,53,55,35,34,38,53,17,39,55,33,55,33,23,7,17,2,128,255,0,75,53,4,128,251,128,128,128,159,225,64,32,1,224
,32,3,192,32,64,2,128,1,128,255,0,53,75,254,64,192,192,192,225,159,1,64,64,128,128,192,32,252,224,0,2,0,0,255,128,6,0,5,128,0
,35,0,51,0,0,37,17,52,38,43,1,34,6,21,17,33,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,53,17,33,17,20,22,59,1,50
,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,0,38,26,128,26,38,254,0,38,26,128,26,38,38,26,128,26,38,2,0,38,26
,128,26,38,1,0,169,119,252,64,119,169,169,119,3,192,119,169,192,3,128,26,38,38,26,254,192,1,64,26,38,38,26,252,128,26,38,38,26,1,64
,254,192,26,38,38,3,186,252,64,119,169,169,119,3,192,119,169,169,0,0,0,0,2,0,0,255,128,6,0,5,128,0,35,0,51,0,0,1,53,52
,38,35,33,17,52,38,43,1,34,6,21,17,33,34,6,29,1,20,22,51,33,17,20,22,59,1,50,54,53,17,33,50,54,1,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,5,0,38,26,254,192,38,26,128,26,38,254,192,26,38,38,26,1,64,38,26,128,26,38,1,64,26,38,1,0,169
,119,252,64,119,169,169,119,3,192,119,169,2,64,128,26,38,1,64,26,38,38,26,254,192,38,26,128,26,38,254,192,26,38,38,26,1,64,38,2,58
,252,64,119,169,169,119,3,192,119,169,169,0,0,0,2,0,45,0,77,3,243,4,51,0,20,0,41,0,0,36,20,15,1,6,34,39,1,38,52,55
,1,54,50,31,1,22,20,7,9,1,4,20,15,1,6,34,39,1,38,52,55,1,54,50,31,1,22,20,7,9,1,2,115,10,50,10,26,10,254,46
,10,10,1,210,10,26,10,50,10,10,254,119,1,137,1,138,10,50,10,26,10,254,46,10,10,1,210,10,26,10,50,10,10,254,119,1,137,173,26,10
,50,10,10,1,210,10,26,10,1,210,10,10,50,10,26,10,254,119,254,119,10,26,10,50,10,10,1,210,10,26,10,1,210,10,10,50,10,26,10,254
,119,254,119,0,0,0,2,0,13,0,77,3,211,4,51,0,20,0,41,0,0,0,20,7,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50
,23,1,4,20,7,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50,23,1,2,83,10,254,46,10,26,10,50,10,10,1,137,254,119,10,10
,50,10,26,10,1,210,1,138,10,254,46,10,26,10,50,10,10,1,137,254,119,10,10,50,10,26,10,1,210,2,77,26,10,254,46,10,10,50,10,26
,10,1,137,1,137,10,26,10,50,10,10,254,46,10,26,10,254,46,10,10,50,10,26,10,1,137,1,137,10,26,10,50,10,10,254,46,0,0,2,0
,77,0,141,4,51,4,83,0,20,0,41,0,0,36,20,15,1,6,34,39,9,1,6,34,47,1,38,52,55,1,54,50,23,1,18,20,15,1,6,34
,39,9,1,6,34,47,1,38,52,55,1,54,50,23,1,4,51,10,50,10,26,10,254,119,254,119,10,26,10,50,10,10,1,210,10,26,10,1,210,10
,10,50,10,26,10,254,119,254,119,10,26,10,50,10,10,1,210,10,26,10,1,210,237,26,10,50,10,10,1,137,254,119,10,10,50,10,26,10,1,210
,10,10,254,46,1,118,26,10,50,10,10,1,137,254,119,10,10,50,10,26,10,1,210,10,10,254,46,0,0,0,2,0,77,0,173,4,51,4,115,0
,20,0,41,0,0,0,20,7,1,6,34,39,1,38,52,63,1,54,50,23,9,1,54,50,31,1,18,20,7,1,6,34,39,1,38,52,63,1,54,50
,23,9,1,54,50,31,1,4,51,10,254,46,10,26,10,254,46,10,10,50,10,26,10,1,137,1,137,10,26,10,50,10,10,254,46,10,26,10,254,46
,10,10,50,10,26,10,1,137,1,137,10,26,10,50,2,173,26,10,254,46,10,10,1,210,10,26,10,50,10,10,254,119,1,137,10,10,50,1,118,26
,10,254,46,10,10,1,210,10,26,10,50,10,10,254,119,1,137,10,10,50,0,0,1,0,45,0,77,2,115,4,51,0,20,0,0,0,20,7,9,1
,22,20,15,1,6,34,39,1,38,52,55,1,54,50,31,1,2,115,10,254,119,1,137,10,10,50,10,26,10,254,46,10,10,1,210,10,26,10,50,3
,237,26,10,254,119,254,119,10,26,10,50,10,10,1,210,10,26,10,1,210,10,10,50,0,0,0,1,0,13,0,77,2,83,4,51,0,20,0,0,0
,20,7,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50,23,1,2,83,10,254,46,10,26,10,50,10,10,1,137,254,119,10,10,50,10,26
,10,1,210,2,77,26,10,254,46,10,10,50,10,26,10,1,137,1,137,10,26,10,50,10,10,254,46,0,0,0,1,0,77,1,13,4,51,3,83,0
,20,0,0,0,20,15,1,6,34,39,9,1,6,34,47,1,38,52,55,1,54,50,23,1,4,51,10,50,10,26,10,254,119,254,119,10,26,10,50,10
,10,1,210,10,26,10,1,210,1,109,26,10,50,10,10,1,137,254,119,10,10,50,10,26,10,1,210,10,10,254,46,0,0,0,1,0,77,1,45,4
,51,3,115,0,20,0,0,0,20,7,1,6,34,39,1,38,52,63,1,54,50,23,9,1,54,50,31,1,4,51,10,254,46,10,26,10,254,46,10,10
,50,10,26,10,1,137,1,137,10,26,10,50,3,45,26,10,254,46,10,10,1,210,10,26,10,50,10,10,254,119,1,137,10,10,50,0,0,0,2,0
,0,255,128,7,128,6,0,0,15,0,47,0,0,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,20,30,1,21,20
,6,35,33,34,38,53,52,62,1,53,33,34,38,53,17,52,54,51,33,50,22,7,0,19,13,249,192,13,19,19,13,6,64,13,19,128,94,66,253,224
,32,32,38,26,254,0,26,38,32,32,253,224,66,94,94,66,6,64,66,94,2,32,3,64,13,19,19,13,252,192,13,19,19,3,77,251,192,66,94,37
,81,61,13,26,38,38,26,14,60,80,38,94,66,4,64,66,94,94,0,0,0,0,4,0,0,0,0,7,128,5,0,0,15,0,31,0,43,0,51,0
,0,1,34,38,53,17,52,54,51,33,50,22,21,17,20,6,35,1,17,20,22,51,33,50,54,53,17,52,38,35,33,34,6,1,51,21,20,6,35,33
,34,38,61,1,51,5,50,52,43,1,34,20,51,1,160,66,94,94,66,4,64,66,94,94,66,251,160,19,13,4,64,13,19,19,13,251,192,13,19,5
,96,160,94,66,249,192,66,94,160,3,112,16,16,160,16,16,1,0,94,66,2,192,66,94,94,66,253,64,66,94,3,96,253,64,13,19,19,13,2,192
,13,19,19,252,83,96,40,56,56,40,96,96,32,32,0,0,0,0,3,0,0,0,0,4,128,5,128,0,7,0,23,0,39,0,0,36,52,38,34,6
,20,22,50,37,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,128,38,52,38
,38,52,1,166,19,13,252,192,13,19,19,13,3,64,13,19,128,94,66,252,192,66,94,94,66,3,64,66,94,102,52,38,38,52,38,224,3,192,13,19
,19,13,252,64,13,19,19,3,205,251,192,66,94,94,66,4,64,66,94,94,0,0,4,0,0,0,0,3,0,5,0,0,7,0,23,0,31,0,47,0
,0,36,52,38,34,6,20,22,50,37,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,2,52,43,1,34,20,59,1,37,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,1,208,47,66,47,47,66,0,255,19,13,254,0,13,19,19,13,2,0,13,19,192,16,160,16,16,160,1,48,76,52
,254,0,52,76,76,52,2,0,52,76,95,66,47,47,66,47,240,2,192,13,19,19,13,253,64,13,19,19,3,77,32,32,32,252,0,52,76,76,52,4
,0,52,76,76,0,0,2,0,0,255,128,6,0,5,128,0,11,0,23,0,0,0,32,14,1,16,30,1,32,62,1,16,38,4,16,2,4,32,36,2
,16,18,36,32,4,3,148,254,216,250,146,146,250,1,40,250,146,146,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,4,160,146,250,254
,216,250,146,146,250,1,40,250,189,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,2,0,0,0,0,6,128,5,128,0,33,0,67,0
,0,1,17,20,6,35,33,34,38,53,17,52,62,2,59,1,50,22,29,1,20,6,43,1,34,6,29,1,20,22,59,1,50,22,5,17,20,6,35,33
,34,38,53,17,52,62,2,59,1,50,22,29,1,20,6,43,1,34,6,29,1,20,22,59,1,50,22,3,0,112,80,254,128,80,112,81,138,189,104,64
,26,38,38,26,64,106,150,56,40,224,80,112,3,128,112,80,254,128,80,112,81,138,189,104,64,26,38,38,26,64,106,150,56,40,224,80,112,2,64,254
,128,80,112,112,80,2,192,104,189,138,81,38,26,128,26,38,150,106,32,40,56,112,80,254,128,80,112,112,80,2,192,104,189,138,81,38,26,128,26,38
,150,106,32,40,56,112,0,0,0,0,2,0,0,0,0,6,128,5,128,0,33,0,67,0,0,1,17,20,14,2,43,1,34,38,61,1,52,54,59,1
,50,54,61,1,52,38,43,1,34,38,53,17,52,54,51,33,50,22,5,17,20,14,2,43,1,34,38,61,1,52,54,59,1,50,54,61,1,52,38,43
,1,34,38,53,17,52,54,51,33,50,22,3,0,81,138,189,104,64,26,38,38,26,64,106,150,56,40,224,80,112,112,80,1,128,80,112,3,128,81,138
,189,104,64,26,38,38,26,64,106,150,56,40,224,80,112,112,80,1,128,80,112,4,192,253,64,104,189,138,81,38,26,128,26,38,150,106,32,40,56,112
,80,1,128,80,112,112,80,253,64,104,189,138,81,38,26,128,26,38,150,106,32,40,56,112,80,1,128,80,112,112,0,0,0,0,8,0,64,255,64,6
,192,6,0,0,9,0,17,0,25,0,35,0,43,0,51,0,59,0,71,0,0,36,20,6,35,34,38,53,52,54,50,0,20,6,34,38,52,54,50,0
,20,6,34,38,52,54,50,1,20,6,35,34,38,52,54,50,22,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54
,50,1,20,6,35,34,38,53,52,54,51,50,22,2,14,75,53,52,76,75,106,2,61,75,106,75,75,106,253,139,75,106,75,75,106,4,253,76,52,53
,75,75,106,75,252,60,94,132,94,94,132,4,240,75,106,75,75,106,253,203,112,160,112,112,160,2,130,132,92,93,131,131,93,92,132,195,106,75,76,52
,53,75,254,231,106,75,75,106,75,2,117,106,75,75,106,75,253,142,52,76,75,106,75,75,3,241,132,94,94,132,94,253,163,106,75,75,106,75,2,144
,160,112,112,160,112,254,114,93,131,131,93,92,132,132,0,0,0,0,1,0,0,255,128,6,0,5,128,0,11,0,0,0,16,2,4,32,36,2,16,18
,36,32,4,6,0,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,3,81,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,1,0
,0,255,128,7,0,5,192,0,44,0,0,1,20,3,14,2,7,6,35,34,38,53,52,54,53,54,53,52,46,5,43,1,17,20,6,34,39,1,38,52
,55,1,54,50,22,21,17,51,32,19,22,7,0,127,3,15,12,7,12,16,15,17,5,5,35,62,98,113,153,155,98,224,38,52,19,254,0,19,19,2
,0,19,52,38,224,2,201,162,53,1,160,166,254,227,7,34,26,9,17,20,15,9,35,6,68,55,101,160,117,85,54,31,12,255,0,26,38,19,2,0
,19,52,19,2,0,19,38,26,255,0,254,109,134,0,4,0,0,255,128,6,128,5,0,0,11,0,23,0,49,0,88,0,0,0,20,14,1,34,46,1
,52,62,1,50,22,4,20,14,1,34,46,1,52,62,1,50,22,23,52,38,35,34,7,6,34,39,38,35,34,6,21,20,30,3,59,1,50,62,3,19
,20,7,14,4,35,34,46,4,39,38,53,52,55,38,53,52,55,50,22,23,54,51,50,23,62,1,51,22,21,20,7,22,2,128,25,61,84,61,25,25
,61,84,61,2,153,25,61,84,61,25,25,61,84,61,185,138,118,41,154,71,172,71,152,43,118,138,64,98,146,134,82,168,82,134,146,98,64,224,61,38
,135,147,193,150,92,78,128,167,138,136,106,33,62,136,27,51,108,164,107,147,162,148,132,105,164,107,51,27,136,1,104,80,84,68,68,84,80,84,68,68
,84,80,84,68,68,84,80,84,68,68,124,120,168,21,11,11,21,168,120,88,131,75,45,14,14,45,75,131,1,8,207,124,77,112,60,35,9,6,19,41
,62,100,65,123,208,237,159,82,88,116,102,79,84,35,32,82,78,102,116,87,81,160,0,0,0,0,2,0,0,0,0,6,128,5,128,0,23,0,44,0
,0,37,17,52,38,35,33,34,38,61,1,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50
,22,29,1,33,50,22,6,0,56,40,253,64,40,56,56,40,254,192,40,56,56,40,4,192,40,56,128,132,92,251,64,92,132,132,92,1,64,92,132,2
,160,92,132,224,2,192,40,56,56,40,64,40,56,56,40,252,64,40,56,56,2,232,253,64,92,132,132,92,3,192,92,132,132,92,32,132,0,0,3,0
,0,0,0,7,117,5,128,0,17,0,39,0,69,0,0,1,52,35,33,34,6,7,1,6,21,20,51,33,50,54,55,1,54,37,33,53,52,38,35,33
,34,38,61,1,52,38,35,33,34,6,21,17,1,62,1,5,20,7,1,14,1,35,33,34,38,53,17,52,54,51,33,50,22,29,1,33,50,22,29,1
,51,50,22,23,22,6,245,53,251,192,40,91,26,254,218,18,53,4,64,40,92,25,1,38,18,251,139,3,0,56,40,253,192,40,56,56,40,254,192,40
,56,1,0,44,144,5,57,46,254,217,43,146,67,251,192,92,132,132,92,1,64,92,132,2,32,92,132,192,54,90,22,15,2,93,35,43,31,254,149,24
,16,35,44,31,1,107,22,180,160,40,56,56,40,64,40,56,56,40,252,171,1,59,53,69,163,62,58,254,149,53,69,132,92,3,192,92,132,132,92,32
,132,92,160,49,46,32,0,0,0,0,5,0,0,255,128,6,0,5,128,0,20,0,28,0,36,0,52,0,64,0,0,1,14,1,34,38,39,38,54,55
,54,22,23,30,1,50,54,55,62,1,30,1,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,0,16,46,2,32,14,2,16,30,2,32,62
,1,18,16,2,4,32,36,2,16,18,36,32,4,4,110,37,202,254,202,37,8,24,26,25,47,8,25,135,168,135,25,8,48,50,24,254,10,75,106,75
,75,106,2,75,75,106,75,75,106,1,75,102,171,237,254,252,237,171,102,102,171,237,1,4,237,171,230,206,254,159,254,94,254,159,206,206,1,97,1,162
,1,97,1,205,121,148,148,121,25,47,8,8,24,26,80,99,99,80,26,24,16,47,1,207,106,75,75,106,75,75,106,75,75,106,75,253,254,1,4,237
,171,102,102,171,237,254,252,237,171,102,102,171,2,64,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,5,0,0,255,128,6,0,5,128,0
,20,0,28,0,36,0,52,0,64,0,0,1,22,14,1,38,39,46,1,34,6,7,14,1,39,46,1,55,62,1,50,22,0,20,6,34,38,52,54,50
,4,20,6,34,38,52,54,50,0,16,46,2,32,14,2,16,30,2,32,62,1,18,16,2,4,32,36,2,16,18,36,32,4,4,110,8,24,50,48,8
,25,135,168,135,25,8,47,25,26,24,8,37,202,254,202,254,55,75,106,75,75,106,2,75,75,106,75,75,106,1,75,102,171,237,254,252,237,171,102,102
,171,237,1,4,237,171,230,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,51,25,47,16,24,26,80,99,99,80,26,24,8,8,47,25,121
,148,148,2,9,106,75,75,106,75,75,106,75,75,106,75,253,254,1,4,237,171,102,102,171,237,254,252,237,171,102,102,171,2,64,254,94,254,159,206,206
,1,97,1,162,1,97,206,206,0,0,5,0,0,255,128,6,0,5,128,0,11,0,19,0,27,0,43,0,55,0,0,0,20,6,35,33,34,38,52,54
,51,33,50,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,0,16,46,2,32,14,2,16,30,2,32,62,1,18,16,2,4,32,36,2,16
,18,36,32,4,4,128,38,26,253,128,26,38,38,26,2,128,26,254,38,75,106,75,75,106,2,75,75,106,75,75,106,1,75,102,171,237,254,252,237,171
,102,102,171,237,1,4,237,171,230,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,218,52,38,38,52,38,1,181,106,75,75,106,75,75,106
,75,75,106,75,253,254,1,4,237,171,102,102,171,237,254,252,237,171,102,102,171,2,64,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,4,0
,0,0,0,7,128,4,0,0,35,0,43,0,51,0,67,0,0,1,53,52,38,43,1,53,52,38,43,1,34,6,29,1,35,34,6,29,1,20,22,59
,1,21,20,22,59,1,50,54,61,1,51,50,54,4,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,36,16,0,35,34,39,35,6,35,34,0
,16,0,51,33,50,3,64,18,14,192,18,14,128,14,18,192,14,18,18,14,192,18,14,128,14,18,192,14,18,2,64,75,106,75,75,106,1,75,75,106
,75,75,106,1,75,254,212,212,192,146,220,146,192,212,254,212,1,44,212,3,128,212,1,192,128,14,18,192,14,18,18,14,192,18,14,128,14,18,192,14
,18,18,14,192,18,103,106,75,75,106,75,1,75,106,75,75,106,75,212,254,88,254,212,128,128,1,44,1,168,1,44,0,0,0,15,0,0,0,0,7
,128,4,128,0,11,0,23,0,35,0,47,0,59,0,71,0,83,0,95,0,107,0,119,0,131,0,143,0,159,0,163,0,179,0,0,1,21,20,43,1
,34,61,1,52,59,1,50,55,21,20,43,1,34,61,1,52,59,1,50,39,21,20,43,1,34,61,1,52,59,1,50,1,21,20,35,33,34,61,1,52
,51,33,50,37,21,20,43,1,34,61,1,52,59,1,50,39,21,20,43,1,34,61,1,52,59,1,50,1,21,20,43,1,34,61,1,52,59,1,50,39
,21,20,43,1,34,61,1,52,59,1,50,1,21,20,43,1,34,61,1,52,59,1,50,1,21,20,43,1,34,61,1,52,59,1,50,1,21,20,43,1
,34,61,1,52,59,1,50,5,21,20,43,1,34,61,1,52,59,1,50,5,17,20,43,1,34,61,1,52,59,1,53,52,59,1,50,19,17,33,17,1
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,1,128,16,96,16,16,96,16,128,16,224,16,16,224,16,128,16,96,16,16,96,16,4,0,16
,252,160,16,16,3,96,16,253,128,16,96,16,16,96,16,128,16,96,16,16,96,16,1,128,16,96,16,16,96,16,128,16,96,16,16,96,16,1,128,16
,96,16,16,96,16,1,128,16,96,16,16,96,16,254,0,16,96,16,16,96,16,1,0,16,96,16,16,96,16,1,0,16,224,16,16,112,16,96,16,128
,249,128,7,0,75,53,249,128,53,75,75,53,6,128,53,75,1,112,96,16,16,96,16,240,96,16,16,96,16,240,96,16,16,96,16,253,240,96,16,16
,96,16,240,96,16,16,96,16,240,96,16,16,96,16,254,240,96,16,16,96,16,240,96,16,16,96,16,254,240,96,16,16,96,16,254,240,96,16,16,96
,16,1,240,96,16,16,96,16,16,96,16,16,96,16,16,254,160,16,16,96,16,240,16,253,0,3,128,252,128,3,128,252,128,53,75,75,53,3,128,53
,75,75,0,0,0,0,3,0,64,255,128,7,0,5,128,0,22,0,42,0,86,0,0,1,17,6,35,34,39,46,1,35,34,7,17,54,51,50,30,2
,31,1,22,51,50,1,20,6,7,17,20,6,43,1,34,38,53,17,46,1,53,52,54,50,22,5,17,20,7,6,7,6,35,34,47,1,46,2,35,34
,4,7,6,35,34,39,38,53,17,52,55,62,3,51,50,22,23,22,51,50,55,54,55,54,23,22,6,128,169,137,82,63,100,168,94,173,230,245,188,55
,97,99,55,55,28,44,57,120,251,109,35,29,18,14,64,14,18,29,35,75,106,75,5,192,35,10,7,218,151,88,70,28,64,70,112,58,102,254,245,95
,15,18,16,16,32,31,35,87,141,164,73,112,194,112,38,51,122,188,22,9,31,31,31,1,235,2,104,91,32,49,55,127,253,169,113,15,37,25,27,14
,22,3,113,35,58,17,251,14,14,18,18,14,4,242,17,58,35,53,75,75,117,253,5,39,18,5,4,116,35,14,33,30,28,88,58,9,8,19,37,2
,230,35,20,21,43,61,38,62,55,19,112,12,5,16,18,20,0,0,6,0,64,255,128,7,0,5,128,0,5,0,11,0,42,0,50,0,70,0,114,0
,0,1,53,6,7,21,54,19,53,6,7,21,54,1,53,6,39,53,38,39,46,9,35,34,7,21,51,50,22,23,22,23,21,22,51,50,19,53,6,35
,34,39,21,22,1,20,6,7,17,20,6,43,1,34,38,53,17,46,1,53,52,54,50,22,5,17,20,7,6,7,6,35,34,47,1,46,2,35,34,4
,7,6,35,34,39,38,53,17,52,55,62,3,51,50,22,23,22,51,50,55,54,55,54,23,22,3,64,181,203,205,179,172,212,215,3,233,235,149,20,19
,5,56,13,50,19,46,26,44,35,44,22,23,26,19,102,181,107,19,20,42,49,120,173,169,137,45,33,148,251,172,35,29,18,14,64,14,18,29,35,75
,106,75,5,192,35,10,7,218,151,88,70,28,64,70,112,58,102,254,245,95,15,18,16,16,32,31,35,87,141,164,73,112,194,112,38,51,122,188,22,9
,31,31,31,2,24,192,16,101,185,96,1,176,197,8,118,189,111,254,56,184,116,45,224,6,9,3,28,6,24,7,19,6,11,4,4,3,222,58,53,9
,6,188,17,2,7,189,91,8,196,42,1,238,35,58,17,251,14,14,18,18,14,4,242,17,58,35,53,75,75,117,253,5,39,18,5,4,116,35,14,33
,30,28,88,58,9,8,19,37,2,230,35,20,21,43,61,38,62,55,19,112,12,5,16,18,20,0,2,0,13,0,0,6,128,4,51,0,20,0,36,0
,0,9,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50,23,1,22,20,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,2,73
,254,46,10,26,10,50,10,10,1,137,254,119,10,10,50,10,26,10,1,210,10,4,45,18,14,252,64,14,18,18,14,3,192,14,18,2,41,254,46,10
,10,50,10,26,10,1,137,1,137,10,26,10,50,10,10,254,46,10,26,254,45,64,14,18,18,14,64,14,18,18,0,0,0,0,3,0,45,255,147,7
,83,4,237,0,20,0,36,0,57,0,0,37,7,6,34,39,1,38,52,55,1,54,50,31,1,22,20,7,9,1,22,20,9,1,14,1,47,1,46,1
,55,1,62,1,31,1,30,1,9,1,6,34,47,1,38,52,55,9,1,38,52,63,1,54,50,23,1,22,20,2,105,50,10,26,10,254,46,10,10,1
,210,10,26,10,50,10,10,254,119,1,137,10,2,69,254,139,4,23,12,62,13,13,4,1,117,4,23,12,62,13,13,2,141,254,46,10,26,10,50,10
,10,1,137,254,119,10,10,50,10,26,10,1,210,10,137,50,10,10,1,210,10,26,10,1,210,10,10,50,10,26,10,254,119,254,119,10,26,4,33,250
,245,13,13,4,17,4,23,13,5,11,13,13,4,17,4,23,253,104,254,46,10,10,50,10,26,10,1,137,1,137,10,26,10,50,10,10,254,46,10,26
,0,0,2,0,0,255,128,7,0,5,187,0,21,0,59,0,0,1,21,20,7,6,35,34,39,1,38,52,55,1,54,23,22,29,1,1,6,20,23,1
,20,14,3,7,6,35,34,39,38,55,18,39,46,1,39,21,20,7,6,35,34,39,1,38,52,55,1,54,23,22,21,17,4,23,22,2,128,39,13,12
,27,18,254,0,19,19,2,0,29,41,39,254,115,19,19,6,13,34,43,53,28,6,8,20,6,3,25,2,43,149,64,213,161,39,13,12,27,18,254,0
,19,19,2,0,29,41,39,1,155,188,169,1,198,70,42,17,5,19,2,0,19,52,19,2,0,31,17,17,42,69,254,114,19,52,19,254,77,58,151,125
,125,56,12,17,1,8,26,1,144,165,71,79,13,251,42,17,5,19,2,0,19,52,19,2,0,31,17,17,42,254,250,28,193,173,0,0,0,0,2,0
,2,255,173,6,126,5,224,0,10,0,40,0,0,1,45,1,47,1,3,17,23,5,3,39,9,1,19,22,6,35,34,39,37,5,6,35,34,38,55,19
,1,38,54,55,37,19,54,51,50,23,19,5,30,1,4,162,1,1,254,156,66,30,159,59,1,62,60,12,1,245,254,149,86,5,22,23,17,23,254,63
,254,63,23,17,23,22,5,86,254,148,32,18,45,1,246,225,20,29,28,21,225,1,246,45,18,2,67,250,52,10,60,1,66,252,61,31,168,1,99,66
,1,53,254,158,254,12,33,37,12,236,236,12,37,33,1,244,1,98,32,55,7,73,1,199,41,41,254,57,73,7,55,0,0,0,1,0,2,255,128,5
,128,5,0,0,22,0,0,9,1,6,35,34,39,46,1,53,17,33,34,46,1,54,55,1,54,51,50,23,30,1,5,121,253,128,17,40,5,10,22,27
,253,192,22,35,10,18,20,5,0,13,16,27,18,15,7,4,163,251,0,35,2,5,35,22,2,64,27,44,40,10,2,128,7,19,14,41,0,0,3,0
,0,255,0,6,128,5,128,0,2,0,5,0,56,0,0,1,33,17,9,1,33,1,21,20,6,43,1,21,20,6,43,1,34,38,61,1,33,34,38,53
,17,35,34,38,61,1,52,54,59,1,53,52,54,59,1,50,22,29,1,33,55,54,50,23,22,20,15,1,17,51,50,22,2,45,2,83,253,128,2,83
,253,173,4,128,18,14,224,18,14,192,14,18,252,160,14,18,224,14,18,18,14,224,18,14,192,14,18,3,83,246,10,26,10,9,9,247,224,14,18,1
,0,2,83,253,218,2,83,253,96,192,14,18,224,14,18,18,14,224,18,14,3,96,18,14,192,14,18,224,14,18,18,14,224,247,9,9,10,26,10,246
,252,173,18,0,0,0,4,0,0,255,128,4,0,5,128,0,7,0,15,0,23,0,75,0,0,36,52,38,34,6,20,22,50,18,52,38,34,6,20,22
,50,4,52,38,34,6,20,22,50,55,20,6,7,2,7,6,7,14,1,29,1,30,1,21,20,6,34,38,53,52,54,55,17,46,1,53,52,54,50,22
,21,20,6,7,17,54,55,62,5,53,46,1,53,52,54,50,22,1,32,56,80,56,56,80,56,56,80,56,56,80,2,184,56,80,56,56,80,152,52,44
,2,224,67,136,128,83,44,52,112,160,112,52,44,44,52,112,160,112,52,44,54,100,55,65,76,42,39,17,44,52,112,160,112,24,80,56,56,80,56,4
,184,80,56,56,80,56,72,80,56,56,80,56,96,52,89,25,254,225,127,38,43,40,62,69,26,25,89,52,80,112,112,80,52,89,25,3,52,25,89,52
,80,112,112,80,52,89,25,254,15,26,31,17,25,37,42,60,79,52,25,89,52,80,112,112,0,0,8,0,0,255,128,6,128,6,0,0,13,0,25,0
,37,0,64,0,92,0,104,0,116,0,130,0,0,9,1,6,34,39,38,52,55,1,54,50,23,22,20,23,17,20,6,34,38,53,17,52,54,50,22,38
,20,6,35,33,34,38,52,54,51,33,50,5,20,15,1,6,35,34,39,1,38,39,55,1,30,1,63,1,54,53,52,39,1,55,22,23,1,22,1,7
,1,38,35,34,15,1,6,21,20,23,1,7,38,39,1,38,53,52,63,1,54,51,50,23,1,22,4,20,6,35,33,34,38,52,54,51,33,50,1,17
,20,6,34,38,53,17,52,54,50,22,5,1,6,34,39,38,52,55,1,54,50,23,22,20,1,183,255,0,11,24,11,9,9,1,0,10,26,10,9,160
,18,28,18,18,28,18,224,18,14,254,192,14,18,18,14,1,64,14,5,2,85,147,83,120,121,83,254,178,21,21,239,1,17,27,82,27,147,28,28,254
,238,18,35,21,1,80,84,253,151,239,254,239,28,40,39,29,147,28,28,1,18,18,35,21,254,176,84,85,147,83,120,121,83,1,78,21,2,142,18,14
,254,192,14,18,18,14,1,64,14,253,242,18,28,18,18,28,18,1,151,255,0,11,24,11,9,9,1,0,10,26,10,9,1,9,255,0,9,9,10,26
,10,1,0,9,9,10,26,51,254,192,14,18,18,14,1,64,14,18,18,224,28,18,18,28,18,160,120,83,146,83,85,1,79,21,35,18,254,238,27,1
,27,146,28,39,40,28,1,19,239,21,21,254,176,86,2,94,18,1,18,28,27,146,28,39,40,28,254,238,240,21,21,1,80,86,118,120,83,146,83,85
,254,177,21,105,28,18,18,28,18,2,0,254,192,14,18,18,14,1,64,14,18,18,165,255,0,9,9,10,26,10,1,0,9,9,10,26,0,0,2,0
,96,0,0,3,252,5,0,0,15,0,60,0,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,20,14,3,7,14,1,21,20,6,43
,1,34,38,61,1,52,54,55,62,1,53,52,38,35,34,7,6,7,6,35,34,47,1,46,1,55,18,33,50,30,2,2,192,24,16,240,16,24,24,16
,240,16,24,1,60,31,39,71,44,39,41,55,24,16,240,15,21,130,78,59,50,93,61,65,43,35,72,13,18,12,13,164,13,5,8,160,1,48,80,162
,130,82,1,24,240,16,24,24,16,240,16,24,24,2,72,54,94,59,60,27,22,23,84,25,17,31,37,19,45,83,147,35,27,58,47,42,64,29,25,90
,16,8,125,10,30,13,1,10,62,104,151,0,0,0,2,0,0,0,0,2,128,5,128,0,30,0,46,0,0,37,21,20,6,35,33,34,38,61,1,52
,54,59,1,17,35,34,38,61,1,52,54,51,33,50,22,21,17,51,50,22,3,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,2,128,38,26
,254,0,26,38,38,26,64,64,26,38,38,26,1,128,26,38,64,26,38,128,38,26,255,0,26,38,38,26,1,0,26,38,192,128,26,38,38,26,128,26
,38,1,128,38,26,128,26,38,38,26,253,192,38,4,102,192,26,38,38,26,192,26,38,38,0,0,2,0,98,0,0,2,30,5,128,0,15,0,31,0
,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,19,3,14,1,35,33,34,38,39,3,38,54,51,33,50,22,2,0,38,26,255,0,26
,38,38,26,1,0,26,38,30,28,1,39,26,255,0,26,39,1,28,1,37,26,1,64,26,37,1,32,224,26,38,38,26,224,26,38,38,4,6,253,0
,26,38,38,26,3,0,26,38,38,0,2,0,5,0,0,5,254,5,107,0,37,0,74,0,0,37,21,35,47,1,38,39,35,14,2,7,6,15,1,33
,53,51,19,3,35,53,33,23,22,23,22,23,51,54,63,2,33,21,35,3,19,1,21,33,39,38,53,52,62,4,53,52,38,35,34,7,6,7,39,54
,55,54,51,50,22,21,20,14,4,7,51,53,3,129,248,159,24,8,3,3,1,3,4,1,10,15,155,254,254,128,197,185,137,1,20,139,2,21,8,3
,3,3,8,25,140,1,1,125,184,204,2,234,253,254,3,4,52,78,90,78,52,59,41,51,46,14,22,105,26,37,83,105,110,136,49,75,88,76,55,3
,232,167,167,252,42,9,12,3,7,9,2,20,24,250,167,1,35,1,16,168,228,4,38,9,12,9,12,42,228,168,254,245,254,216,2,167,206,27,28,18
,64,106,67,63,46,62,33,38,49,39,11,27,92,37,29,65,119,99,56,94,59,58,43,60,33,80,0,0,0,0,2,0,5,255,0,6,0,3,130,0
,37,0,73,0,0,37,21,35,47,1,38,39,35,14,2,7,6,15,1,33,53,51,19,3,35,53,33,23,22,23,22,23,51,54,63,2,33,21,35,3
,19,5,21,33,39,38,53,52,62,4,53,52,38,35,34,7,6,7,39,54,55,54,51,50,22,21,20,14,3,7,51,53,3,129,248,159,24,8,3,3
,1,3,4,1,10,15,155,254,254,128,197,185,137,1,20,139,2,21,8,3,3,3,8,25,140,1,1,125,184,204,2,236,253,254,4,3,52,78,90,78
,52,59,41,51,46,14,22,105,26,37,80,108,110,136,69,99,100,74,4,232,167,167,252,42,9,12,3,7,9,2,20,24,250,167,1,35,1,16,168,228
,4,38,9,12,9,12,42,228,168,254,245,254,216,217,206,27,45,1,64,106,67,63,46,62,33,38,49,39,11,27,92,37,29,65,119,99,66,105,67,58
,68,39,80,0,0,0,2,0,1,0,0,7,127,5,0,0,3,0,23,0,0,37,1,33,9,1,22,6,7,1,6,35,33,34,38,39,38,54,55,1
,54,51,33,50,22,3,128,1,80,253,0,254,176,6,245,15,11,25,252,128,38,58,253,0,38,63,16,15,11,25,3,128,38,58,3,0,38,63,128,1
,128,254,128,4,53,34,75,28,252,0,44,41,34,34,75,28,4,0,44,41,0,0,1,0,0,255,220,6,128,6,0,0,104,0,0,1,20,6,35,34
,46,2,35,34,21,20,22,7,21,34,7,14,2,35,34,38,53,52,62,2,53,52,38,35,34,6,21,20,30,2,21,20,7,6,35,34,39,46,1,47
,1,34,39,34,53,17,30,2,23,22,51,50,55,54,53,52,46,2,53,52,54,51,50,22,21,20,14,2,21,20,22,51,50,54,55,21,14,2,7,6
,21,20,23,22,51,50,62,2,51,50,22,6,128,89,79,41,73,45,68,37,110,32,1,22,11,34,127,104,46,61,84,35,41,35,108,81,84,118,30,37
,30,46,37,80,95,150,9,37,9,13,1,2,2,2,31,37,3,150,95,80,37,46,30,37,30,118,85,80,108,35,41,35,84,61,64,232,47,1,5,5
,1,24,35,44,45,22,57,49,80,43,82,91,1,182,81,108,35,41,35,124,39,152,39,5,1,3,17,10,53,57,37,68,45,73,41,79,89,91,82,43
,80,49,57,22,45,44,35,24,2,4,2,2,1,1,4,0,1,5,5,1,24,35,44,45,22,57,49,80,43,82,91,89,79,41,73,45,68,37,57,53
,30,2,2,2,31,37,3,150,95,80,37,46,30,37,30,118,0,0,2,0,0,255,128,4,128,6,0,0,39,0,51,0,0,1,21,20,0,7,21,33
,50,22,20,6,35,33,34,38,52,54,51,33,53,38,0,61,1,52,54,50,22,29,1,20,0,32,0,61,1,52,54,50,22,1,17,20,6,32,38,53
,17,52,54,32,22,4,128,254,217,217,1,0,26,38,38,26,253,128,26,38,38,26,1,0,217,254,217,38,52,38,1,7,1,114,1,7,38,52,38,255
,0,188,254,248,188,188,1,8,188,3,64,128,221,254,185,24,132,38,52,38,38,52,38,132,24,1,71,221,128,26,38,38,26,128,185,254,249,1,7,185
,128,26,38,38,1,102,254,0,132,188,188,132,2,0,132,188,188,0,3,0,13,255,128,5,115,6,0,0,11,0,67,0,75,0,0,1,7,38,61,1
,52,54,50,22,29,1,20,9,1,21,20,6,35,34,39,7,22,51,50,0,61,1,52,54,50,22,29,1,20,0,7,21,33,50,22,20,6,35,33,34
,38,52,54,51,33,53,38,39,7,6,34,47,1,38,52,55,1,54,50,31,1,22,20,37,1,17,52,54,51,50,22,1,15,101,42,38,52,38,4,105
,254,151,188,132,55,54,96,97,108,185,1,7,38,52,38,254,217,217,1,0,26,38,38,26,253,128,26,38,38,26,1,0,125,110,254,10,26,10,82,10
,10,4,210,10,26,10,82,10,254,122,253,147,188,132,102,165,2,79,101,103,111,128,26,38,38,26,128,53,2,30,254,151,128,132,188,19,96,51,1,7
,185,128,26,38,38,26,128,221,254,185,24,132,38,52,38,38,52,38,132,13,68,254,10,10,82,10,26,10,4,210,10,10,82,10,26,122,253,147,2,0
,132,188,118,0,0,0,2,0,0,255,128,5,0,5,128,0,6,0,34,0,0,1,17,33,17,54,55,54,19,17,20,14,5,7,6,34,39,46,6,53
,17,52,54,51,33,50,22,4,64,254,64,119,94,235,192,67,99,137,116,126,53,16,12,28,12,16,53,126,116,137,99,67,38,26,4,128,26,38,2,64
,2,128,251,143,63,74,184,3,176,253,0,86,169,131,124,82,73,26,7,6,6,7,26,73,82,124,131,169,86,3,0,26,38,38,0,0,0,0,4,0
,0,255,0,6,128,6,0,0,3,0,19,0,35,0,71,0,0,23,33,17,33,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,52
,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52,54,59,1,50,22,29,1,33,53,52,54
,59,1,50,22,29,1,51,50,22,128,5,128,250,128,1,128,18,14,64,14,18,18,14,64,14,18,3,0,18,14,64,14,18,18,14,64,14,18,1,128
,76,52,250,128,52,76,76,52,128,94,66,64,66,94,1,128,94,66,64,66,94,128,52,76,128,4,0,192,1,32,14,18,18,14,254,224,14,18,18,14
,1,32,14,18,18,14,254,224,14,18,18,78,251,0,52,76,76,52,5,0,52,76,96,66,94,94,66,96,96,66,94,94,66,96,76,0,0,0,2,0
,3,255,128,5,128,5,224,0,7,0,76,0,0,0,52,38,34,6,20,22,50,37,17,20,7,6,35,34,39,37,46,1,53,33,21,30,1,21,17,20
,6,35,33,34,38,53,17,52,54,55,53,35,34,14,3,7,6,35,34,39,46,1,55,62,4,55,38,53,52,54,50,22,21,20,7,33,52,54,55,37
,54,51,50,23,22,2,0,38,52,38,38,52,3,166,12,8,12,4,3,254,64,11,14,255,0,111,145,38,26,254,0,26,38,125,99,32,59,112,71,61
,20,4,17,40,16,13,23,17,12,5,19,56,65,105,56,25,94,132,94,14,1,46,14,11,1,192,3,4,12,8,12,5,38,52,38,38,52,38,96,254
,192,16,9,7,1,96,2,18,11,102,23,176,115,252,224,26,38,38,26,3,32,106,169,30,111,47,59,74,33,8,35,7,12,50,24,10,32,75,65,69
,18,42,44,66,94,94,66,33,31,11,18,2,96,1,7,9,0,0,2,0,36,255,32,6,128,5,128,0,7,0,45,0,0,0,52,38,34,6,20,22
,50,1,20,2,7,6,7,3,6,7,5,6,35,34,47,1,38,55,19,1,5,6,35,34,47,1,38,55,19,54,55,37,54,55,54,36,33,50,22,5
,160,56,80,56,56,80,1,24,151,178,81,114,20,2,14,254,128,7,9,12,11,64,13,5,85,254,231,254,236,3,6,14,9,64,17,12,224,10,16,1
,123,96,80,188,1,84,1,5,14,20,4,24,80,56,56,80,56,1,128,249,254,149,179,80,96,254,133,16,10,224,4,9,64,14,18,1,20,1,25,85
,1,9,64,19,20,1,128,14,2,20,114,81,187,142,19,0,0,0,1,0,0,0,0,6,209,5,0,0,22,0,0,1,3,33,19,54,39,38,43,1
,3,33,19,33,3,33,19,3,33,50,22,23,30,1,6,209,164,254,178,178,13,28,27,56,169,204,254,178,204,254,226,204,254,178,204,153,4,252,101,177
,59,60,42,2,251,253,5,3,64,56,32,33,252,71,3,185,252,71,3,185,1,71,81,73,73,191,0,0,0,0,2,0,0,255,128,6,0,5,128,0
,20,0,32,0,0,37,55,54,52,39,9,1,54,52,47,1,38,34,7,1,6,20,23,1,22,50,0,16,2,4,32,36,2,16,18,36,32,4,3,141
,102,19,19,254,205,1,51,19,19,102,19,52,19,254,58,19,19,1,198,19,52,2,134,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,141,102
,19,52,19,1,51,1,51,19,52,19,102,19,19,254,58,19,52,19,254,58,19,2,215,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0
,0,255,128,6,0,5,128,0,20,0,32,0,0,37,1,54,52,39,1,38,34,15,1,6,20,23,9,1,6,20,31,1,22,50,0,16,2,4,32,36
,2,16,18,36,32,4,2,205,1,198,19,19,254,58,19,52,19,102,19,19,1,51,254,205,19,19,102,19,52,3,70,206,254,159,254,94,254,159,206,206
,1,97,1,162,1,97,141,1,198,19,52,19,1,198,19,19,102,19,52,19,254,205,254,205,19,52,19,102,19,2,215,254,94,254,159,206,206,1,97,1
,162,1,97,206,206,0,2,0,0,255,128,6,0,5,128,0,20,0,32,0,0,1,55,54,52,39,1,38,34,7,1,6,20,31,1,22,50,55,9,1
,22,50,0,16,2,4,32,36,2,16,18,36,32,4,4,141,102,19,19,254,58,19,52,19,254,58,19,19,102,19,52,19,1,51,1,51,19,52,1,134
,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,141,102,19,52,19,1,198,19,19,254,58,19,52,19,102,19,19,1,51,254,205,19,1,215
,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,2,0,0,255,128,6,0,5,128,0,20,0,32,0,0,37,1,54,52,47,1,38
,34,7,9,1,38,34,15,1,6,20,23,1,22,50,0,16,2,4,32,36,2,16,18,36,32,4,3,45,1,198,19,19,102,19,52,19,254,205,254,205
,19,52,19,102,19,19,1,198,19,52,2,230,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,237,1,198,19,52,19,102,19,19,254,205,1,51
,19,19,102,19,52,19,254,58,19,2,119,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,2,0,0,255,64,5,128,5,128,0,17,0,22,0
,0,1,55,33,19,33,15,1,47,1,35,19,5,51,53,37,19,33,39,1,33,3,5,37,4,106,16,252,140,47,2,100,22,197,196,13,175,22,1,106
,4,1,103,50,253,124,15,254,56,5,128,128,253,190,253,194,3,171,175,253,234,228,53,53,140,254,234,100,1,99,2,32,181,1,213,250,98,162,162,0
,0,0,1,0,12,255,64,6,244,5,128,0,15,0,0,1,33,9,2,19,33,7,5,37,19,33,19,33,55,33,1,19,5,225,254,246,252,220,253,70
,71,1,41,29,1,166,1,230,68,251,72,58,4,185,38,251,72,5,128,250,203,254,245,1,11,1,100,147,161,161,1,83,1,41,191,0,0,0,2,0
,0,255,16,7,0,6,0,0,7,0,85,0,0,0,52,38,34,6,20,22,50,1,17,20,7,6,35,34,47,1,6,4,32,36,39,7,6,35,34,39
,38,53,17,52,54,51,33,50,23,22,15,1,30,1,23,17,35,34,38,61,1,52,54,59,1,53,46,1,53,52,54,50,22,21,20,6,7,21,51,50
,22,29,1,20,6,43,1,17,62,1,55,39,38,55,54,51,33,50,22,3,192,38,52,38,38,52,3,102,20,8,4,12,11,93,119,254,113,254,52,254
,113,119,93,9,14,4,8,20,18,14,1,96,22,8,8,15,100,67,245,149,192,26,38,38,26,192,58,70,150,212,150,70,58,192,26,38,38,26,192,149
,245,67,100,15,8,8,22,1,96,14,18,4,230,52,38,38,52,38,252,160,254,160,22,8,2,9,93,143,167,167,143,93,9,2,8,22,1,96,14,18
,20,19,16,100,91,125,20,2,135,38,26,128,26,38,163,34,117,70,106,150,150,106,70,117,34,163,38,26,128,26,38,253,121,20,125,91,100,16,19,20
,18,0,1,0,0,0,0,4,128,6,0,0,35,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,59,1,17,52,0,32,0,21,20,6
,43,1,34,38,53,52,38,34,6,21,17,4,32,40,56,56,40,252,64,40,56,56,40,32,1,7,1,114,1,7,38,26,64,26,38,150,212,150,3,0
,56,40,253,192,40,56,56,40,2,64,40,56,1,64,185,1,7,254,249,185,26,38,38,26,106,150,150,106,254,192,0,0,0,0,5,0,0,255,128,6
,0,5,128,0,7,0,15,0,23,0,39,0,51,0,0,0,20,6,34,38,52,54,50,0,16,38,32,6,16,22,32,0,16,0,32,0,16,0,32,0
,16,46,2,32,14,2,16,30,2,32,62,1,18,16,2,4,32,36,2,16,18,36,32,4,4,0,150,212,150,150,212,1,22,225,254,194,225,225,1,62
,1,97,254,212,254,88,254,212,1,44,1,168,1,172,102,171,237,254,252,237,171,102,102,171,237,1,4,237,171,230,206,254,159,254,94,254,159,206,206,1
,97,1,162,1,97,2,234,212,150,150,212,150,254,97,1,62,225,225,254,194,225,2,84,254,88,254,212,1,44,1,168,1,44,253,126,1,4,237,171,102
,102,171,237,254,252,237,171,102,102,171,2,64,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,3,0,0,2,0,5,128,3,128,0
,15,0,31,0,47,0,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,5,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,5
,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,128,56,40,192,40,56,56,40,192,40,56,2,0,56,40,192,40,56,56,40,192,40,56,2
,0,56,40,192,40,56,56,40,192,40,56,3,32,192,40,56,56,40,192,40,56,56,40,192,40,56,56,40,192,40,56,56,40,192,40,56,56,40,192,40
,56,56,0,0,0,0,3,0,0,0,0,1,128,5,128,0,15,0,31,0,47,0,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,17
,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,17,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,128,56,40,192,40,56,56,40
,192,40,56,56,40,192,40,56,56,40,192,40,56,56,40,192,40,56,56,40,192,40,56,1,32,192,40,56,56,40,192,40,56,56,1,216,192,40,56,56
,40,192,40,56,56,1,216,192,40,56,56,40,192,40,56,56,0,0,4,0,0,255,128,6,0,5,128,0,7,0,27,0,53,0,69,0,0,36,52,38
,34,6,20,22,50,37,38,0,39,38,6,29,1,20,22,23,30,1,23,30,1,59,1,50,54,37,38,2,46,1,36,39,38,7,6,29,1,20,22,23
,22,4,18,23,30,1,59,1,50,55,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,0,75,106,75,75,106,1,170,13,254,185,233
,14,20,17,13,154,220,11,1,18,13,128,13,20,1,127,5,102,177,233,254,225,154,14,9,10,18,13,204,1,92,209,7,1,18,13,128,13,10,11,1
,31,169,119,252,64,119,169,169,119,3,192,119,169,203,106,75,75,106,75,34,233,1,71,13,1,20,13,128,13,18,1,11,220,154,13,17,20,13,154,1
,31,233,177,102,5,1,10,10,13,128,13,18,1,7,209,254,164,204,13,18,10,9,3,205,252,64,119,169,169,119,3,192,119,169,169,0,0,0,2,0
,0,255,128,6,0,5,128,0,11,0,27,0,0,0,32,4,18,16,2,4,32,36,2,16,18,1,54,52,39,1,38,7,6,21,17,20,23,22,51,50
,55,2,47,1,162,1,97,206,206,254,159,254,94,254,159,206,206,3,178,32,32,253,224,31,33,32,32,16,16,17,15,5,128,206,254,159,254,94,254,159
,206,206,1,97,1,162,1,97,253,151,18,74,18,1,64,19,18,19,37,253,128,37,19,8,9,0,3,0,54,255,53,6,203,5,202,0,3,0,19,0
,47,0,0,9,5,54,52,39,1,38,34,7,1,6,20,23,1,22,50,9,1,6,34,47,1,54,52,38,34,7,39,38,52,55,1,54,50,31,1,6
,20,22,50,55,23,22,20,4,0,1,60,253,196,254,196,1,105,2,106,19,19,254,150,18,54,18,253,150,19,19,1,106,18,54,3,139,252,117,37,107
,37,126,56,112,160,56,125,37,37,3,139,37,107,37,125,56,112,160,56,126,37,4,60,254,196,253,196,1,60,254,105,2,106,19,52,19,1,106,18,18
,253,150,19,52,19,254,150,18,2,143,252,116,37,37,126,56,160,112,56,126,37,107,37,3,138,37,37,125,56,160,112,56,125,37,107,0,0,0,2,0
,0,255,128,6,0,5,128,0,15,0,31,0,0,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,5,0,38,26,252,128,26,38,38,26,3,128,26,38,1,0,169,119,252,64,119,169,169,119,3,192,119,169,2,64,128,26,38,38,26
,128,26,38,38,2,58,252,64,119,169,169,119,3,192,119,169,169,0,3,0,0,0,0,5,128,5,128,0,15,0,31,0,47,0,0,1,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51
,33,50,22,4,128,18,14,252,192,14,18,18,14,3,64,14,18,128,94,66,252,192,66,94,94,66,3,64,66,94,128,169,119,252,192,119,169,169,119,3
,64,119,169,2,224,64,14,18,18,14,64,14,18,18,254,50,3,64,66,94,94,66,252,192,66,94,94,3,130,252,192,119,169,169,119,3,64,119,169,169
,0,0,1,0,3,0,0,3,250,5,127,0,28,0,0,1,6,43,1,17,20,6,35,33,34,39,38,63,1,54,51,33,17,35,34,39,38,55,1,54
,50,23,1,22,3,250,18,40,192,18,14,253,64,21,8,8,12,160,9,16,1,64,192,40,18,17,26,1,64,18,62,18,1,64,27,3,165,37,252,160
,14,18,18,20,15,192,11,2,128,37,37,31,1,128,22,22,254,128,32,0,0,0,1,0,3,255,128,3,250,5,0,0,27,0,0,19,33,50,22,21
,17,51,50,22,7,1,6,34,39,1,38,55,54,59,1,17,33,34,47,1,38,55,54,32,2,192,13,19,192,40,36,27,254,192,18,62,18,254,192,26
,17,18,40,192,254,192,14,11,160,13,9,9,5,0,19,14,252,161,74,32,254,128,22,22,1,128,31,38,37,2,128,11,192,14,20,19,0,0,2,0
,0,255,128,6,0,5,128,0,20,0,36,0,0,37,1,54,52,47,1,38,34,7,1,39,38,34,15,1,6,20,23,1,22,50,1,17,20,6,35,33
,34,38,53,17,52,54,51,33,50,22,2,173,2,102,19,19,102,19,52,19,254,45,211,19,52,19,102,19,19,1,102,19,52,3,102,169,119,252,64,119
,169,169,119,3,192,119,169,237,2,102,19,52,19,102,19,19,254,45,211,19,19,102,19,52,19,254,154,19,3,134,252,64,119,169,169,119,3,192,119,169
,169,0,5,0,0,255,128,6,0,5,128,0,6,0,16,0,21,0,31,0,47,0,0,1,23,7,35,53,35,53,1,22,7,1,6,39,38,55,1,54
,9,3,17,1,55,54,52,47,1,38,34,15,1,37,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,1,148,152,52,56,96,1,210,14,17,254
,221,17,13,14,17,1,35,17,254,251,2,32,254,224,253,224,3,128,92,28,28,152,28,80,28,92,2,160,169,119,252,64,119,169,169,119,3,192,119,169
,1,172,152,52,96,56,1,186,13,17,254,221,17,14,13,17,1,35,17,253,64,2,32,1,32,253,224,254,224,2,96,92,28,80,28,152,28,28,92,96
,252,64,119,169,169,119,3,192,119,169,169,0,0,0,2,0,0,255,128,6,0,5,128,0,25,0,41,0,0,1,17,52,38,35,33,34,7,6,31,1
,1,6,20,31,1,22,50,55,1,23,22,51,50,55,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,0,38,26,254,32,42,17,17
,31,144,253,234,19,19,102,19,52,19,2,22,144,18,27,12,13,39,1,0,169,119,252,64,119,169,169,119,3,192,119,169,2,96,1,224,26,38,39,41
,29,144,253,234,19,52,19,102,19,19,2,22,144,19,5,17,2,42,252,64,119,169,169,119,3,192,119,169,169,0,2,0,0,255,128,6,0,5,128,0
,37,0,53,0,0,9,1,54,52,39,1,38,7,6,29,1,34,14,5,21,20,23,22,51,50,55,54,39,2,55,62,1,51,21,20,23,22,51,50,1
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,237,1,96,19,19,254,160,30,39,40,119,194,131,97,56,33,10,167,11,14,7,6,22,3
,44,106,46,168,140,40,12,12,26,2,38,169,119,252,64,119,169,169,119,3,192,119,169,1,179,1,96,19,52,19,1,96,31,17,17,42,160,39,63,95
,96,122,101,60,181,223,12,3,9,24,1,98,119,52,47,160,42,17,5,2,192,252,64,119,169,169,119,3,192,119,169,169,0,0,4,0,0,255,128,6
,0,5,128,0,2,0,6,0,18,0,30,0,0,1,45,1,1,17,1,17,0,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16
,18,36,32,4,2,128,1,0,255,0,1,128,254,0,3,32,146,250,254,216,250,146,146,250,1,40,250,1,114,206,254,159,254,94,254,159,206,206,1,97
,1,162,1,97,1,192,128,128,1,79,253,226,255,0,2,30,254,221,1,40,250,146,146,250,254,216,250,146,146,2,95,254,94,254,159,206,206,1,97,1
,162,1,97,206,206,0,3,0,0,255,128,6,0,5,128,0,13,0,29,0,45,0,0,1,22,7,1,6,34,39,1,38,55,54,51,33,50,19,17,52
,38,35,33,34,6,21,17,20,22,51,33,50,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,121,18,23,254,192,19,66,19,254,192
,23,18,17,40,2,128,40,152,19,13,252,64,13,19,19,13,3,192,13,19,1,0,169,119,252,64,119,169,169,119,3,192,119,169,3,93,35,31,254,64
,27,27,1,192,31,35,35,253,32,3,192,13,19,19,13,252,64,13,19,19,3,205,252,64,119,169,169,119,3,192,119,169,169,0,3,0,0,255,128,6
,0,5,128,0,13,0,29,0,45,0,0,1,6,35,33,34,39,38,55,1,54,50,23,1,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50
,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,121,17,40,253,128,40,17,18,23,1,64,19,66,19,1,64,23,117,19,13,252,64
,13,19,19,13,3,192,13,19,1,0,169,119,252,64,119,169,169,119,3,192,119,169,1,163,35,35,35,31,1,192,27,27,254,64,31,254,218,3,192,13
,19,19,13,252,64,13,19,19,3,205,252,64,119,169,169,119,3,192,119,169,169,0,3,0,0,255,128,6,0,5,128,0,13,0,29,0,45,0,0,0
,20,7,1,6,39,38,53,17,52,55,54,23,1,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,4,64,27,254,64,31,35,35,35,35,31,1,192,219,18,14,252,64,14,18,18,14,3,192,14,18,1,0,169,119,252,64,119,169,169
,119,3,192,119,169,2,161,66,19,254,192,23,18,17,40,2,128,40,17,18,23,254,192,253,236,3,192,14,18,18,14,252,64,14,18,18,3,206,252,64
,119,169,169,119,3,192,119,169,169,0,1,0,0,0,0,3,243,5,128,0,96,0,0,37,23,22,6,15,1,14,7,35,34,0,39,35,34,38,61,1
,52,54,59,1,38,55,35,34,38,61,1,52,54,59,1,54,0,51,50,23,22,23,22,15,1,14,1,47,1,46,5,35,34,6,7,33,50,23,22,15
,1,6,35,33,6,23,33,50,23,22,15,1,14,1,35,33,30,1,51,50,62,4,63,1,54,23,22,3,208,35,3,12,11,5,4,13,19,24,27,33
,34,39,19,234,254,162,63,95,13,19,19,13,66,2,3,67,14,18,18,14,98,67,1,97,224,102,92,11,9,6,3,43,3,22,13,4,4,15,20,25
,27,31,14,126,200,50,1,212,16,9,10,3,24,5,27,254,24,3,3,1,203,15,10,9,3,24,2,18,11,254,125,48,203,127,18,36,31,28,21,16
,4,5,13,13,12,229,159,12,21,4,1,2,3,6,5,5,5,4,2,1,5,221,19,13,113,13,19,57,48,18,14,114,14,18,210,1,0,23,3,12
,11,13,159,13,13,4,1,1,3,4,3,3,2,128,112,12,12,14,114,26,37,68,12,12,15,112,11,15,117,137,3,4,5,5,4,1,2,5,7,7
,0,0,1,0,0,0,0,3,252,5,128,0,63,0,0,1,17,20,6,35,33,34,38,61,1,52,54,59,1,17,35,34,38,61,1,52,54,59,1,53
,52,54,51,50,23,30,1,15,1,6,7,6,39,46,2,35,34,6,29,1,33,50,22,29,1,20,6,35,33,17,33,53,52,54,59,1,50,22,3,252
,18,14,252,68,14,18,19,13,97,95,14,18,18,14,95,247,191,185,150,9,2,8,103,9,13,13,10,5,42,96,45,85,104,1,49,13,19,19,13,254
,207,1,158,18,14,162,14,18,1,143,254,145,14,18,18,14,150,13,19,1,127,19,13,131,14,18,223,171,222,125,8,25,10,127,11,1,2,9,5,28
,36,94,76,215,18,14,131,13,19,254,133,181,13,19,19,0,0,0,1,0,52,255,0,3,210,6,0,0,98,0,0,1,20,6,7,21,20,6,43,1
,34,38,61,1,46,4,39,38,63,1,54,55,54,23,48,23,22,23,22,51,50,54,53,52,46,3,39,46,8,53,52,54,55,53,52,54,59,1,50,22
,29,1,30,4,23,22,15,1,6,7,6,39,46,4,35,34,6,21,20,30,4,23,30,6,3,210,199,159,18,14,135,13,19,66,123,80,68,25,5,17
,15,103,7,16,15,9,2,113,130,37,37,81,123,30,37,80,52,54,39,45,78,47,66,41,46,25,17,196,157,19,13,135,14,18,57,107,67,60,18,6
,17,12,81,8,15,14,13,3,23,55,62,87,42,95,120,17,42,37,75,46,47,53,56,96,55,69,37,26,1,95,153,221,26,175,14,18,19,13,175,9
,44,45,51,24,6,21,20,135,10,2,2,11,2,99,26,8,86,79,28,50,34,41,23,21,16,18,35,27,44,41,57,59,74,41,138,208,30,180,13,19
,18,14,176,6,34,33,42,16,6,18,20,146,15,1,3,10,3,18,35,29,23,86,68,26,44,39,27,35,19,18,20,23,47,38,62,65,88,0,1,0
,0,0,0,3,130,5,128,0,62,0,0,1,21,20,6,43,1,14,1,7,22,1,22,7,6,43,1,34,39,0,39,38,61,1,52,54,59,1,50,54
,55,33,34,38,61,1,52,54,51,33,38,43,1,34,38,61,1,52,54,51,33,50,22,29,1,20,6,43,1,22,23,51,50,22,3,130,18,14,168,23
,212,170,167,1,36,14,10,8,21,195,16,9,254,206,192,9,19,13,112,132,161,22,254,85,14,18,18,14,1,157,57,211,145,13,19,18,14,3,64,14
,18,18,14,233,47,17,171,14,18,4,42,102,14,18,144,180,20,178,254,154,16,18,18,12,1,111,204,9,13,127,13,19,86,82,18,14,102,14,18,113
,19,13,133,14,18,18,14,102,14,18,61,83,18,0,1,0,4,0,0,3,255,5,128,0,69,0,0,33,35,34,38,53,17,33,34,38,61,1,52,54
,51,33,53,33,34,38,61,1,52,54,59,1,1,38,55,54,59,1,50,23,19,22,23,62,1,55,19,54,59,1,50,23,22,7,1,51,50,22,29,1
,20,6,35,33,21,33,50,22,29,1,20,6,35,33,17,20,6,2,91,172,13,19,254,224,13,19,19,13,1,32,254,224,13,19,19,13,214,254,191,8
,8,10,18,194,19,10,215,19,37,10,41,7,191,8,21,191,17,10,9,8,254,199,215,13,19,19,13,254,222,1,34,13,19,19,13,254,222,19,18,14
,1,74,18,14,103,13,19,85,18,14,104,13,19,2,66,16,16,16,18,254,87,38,87,24,88,17,1,164,19,16,14,17,253,189,19,13,104,14,18,85
,19,13,103,14,18,254,182,13,19,0,2,0,0,0,0,5,0,5,128,0,7,0,56,0,0,0,52,38,35,33,17,33,50,0,16,6,35,33,21,33
,50,22,29,1,20,6,35,33,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,35,34,38,61,1,52,54,59,1,17,52,54,51
,33,50,4,19,130,106,254,192,1,64,106,1,111,253,200,254,172,1,249,14,18,18,14,254,7,19,13,167,14,18,224,14,18,18,14,224,224,14,18,18
,14,224,18,14,2,27,200,3,103,200,124,254,64,1,161,254,126,244,118,18,14,128,14,18,192,14,18,18,14,192,18,14,128,14,18,118,18,14,149,13
,19,2,117,14,18,0,6,0,0,0,0,7,0,5,128,0,8,0,12,0,16,0,25,0,29,0,110,0,0,1,19,35,19,22,20,23,52,54,19,55
,33,23,33,51,39,35,1,19,35,19,20,22,23,52,54,19,55,33,23,5,21,20,6,43,1,3,6,43,1,34,39,3,35,3,6,43,1,34,38,39
,3,35,34,38,61,1,52,54,59,1,39,35,34,38,61,1,52,54,59,1,3,38,55,54,59,1,50,23,19,33,19,54,59,1,50,23,19,33,19,54
,59,1,50,23,22,7,3,51,50,22,29,1,20,6,43,1,7,51,50,22,2,2,81,159,75,1,1,1,116,35,254,220,32,1,161,139,35,70,1,159
,78,162,81,1,1,1,111,33,254,215,34,2,128,18,14,213,164,7,24,159,24,7,166,209,167,7,24,159,11,17,2,160,208,14,18,18,14,175,33,142
,14,18,18,14,109,89,5,10,10,16,137,26,5,90,1,103,97,7,24,126,24,7,98,1,109,93,5,26,137,16,10,10,5,91,111,14,18,18,14,145
,34,179,14,18,1,85,1,43,254,212,1,4,1,1,5,1,172,128,128,128,253,212,1,44,254,213,1,5,1,1,4,1,173,128,128,32,64,14,18,253
,152,24,24,2,104,253,152,24,14,10,2,104,18,14,64,14,18,128,18,14,64,14,18,1,88,15,13,12,24,254,152,1,104,24,24,254,152,1,104,24
,12,13,15,254,168,18,14,64,14,18,128,18,0,0,3,0,56,255,0,4,232,5,128,0,51,0,72,0,92,0,0,1,22,7,30,1,7,14,4,7
,21,35,53,34,39,21,35,17,34,38,43,1,55,51,50,55,17,51,38,35,17,38,43,1,53,23,50,55,53,51,21,54,51,53,51,21,30,3,3,52
,46,4,34,6,35,17,50,22,50,62,6,3,52,46,4,14,1,35,17,50,22,62,6,4,143,18,149,117,116,13,7,51,78,116,127,82,154,80,42,154
,18,72,19,200,31,111,50,8,16,6,10,13,76,111,212,64,33,154,82,40,154,79,122,104,61,209,30,44,71,60,88,50,79,8,8,58,38,68,49,65
,46,49,30,19,71,25,36,60,50,73,43,65,7,5,59,34,66,44,59,38,36,18,3,128,182,76,28,150,139,71,108,70,47,22,4,255,251,1,252,0
,255,1,183,51,1,146,1,1,31,68,164,1,1,252,247,2,245,252,7,31,59,97,253,157,36,56,36,25,12,6,2,254,174,1,3,5,12,16,26,34
,46,1,248,33,51,33,23,10,6,1,1,254,205,1,1,3,8,14,23,31,46,0,2,0,0,255,0,6,0,6,0,0,6,0,24,0,0,1,17,22
,23,1,22,23,5,20,22,51,33,17,20,6,35,33,34,38,53,17,52,54,51,33,4,0,22,14,1,152,14,14,253,168,56,40,2,32,56,40,250,192
,40,56,56,40,3,32,4,0,1,216,14,14,254,104,14,22,32,40,56,251,224,40,56,56,40,6,64,40,56,0,5,0,0,255,0,6,0,6,0,0
,6,0,24,0,40,0,56,0,72,0,0,1,22,23,33,17,22,23,3,33,17,20,6,35,33,34,38,53,17,52,54,51,33,17,20,22,19,53,52,38
,35,33,34,6,29,1,20,22,51,33,50,54,17,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,17,53,52,38,35,33,34,6,29,1,20,22
,51,33,50,54,5,188,14,14,254,40,22,14,68,2,32,56,40,250,192,40,56,56,40,3,32,56,200,18,14,253,64,14,18,18,14,2,192,14,18,18
,14,253,64,14,18,18,14,2,192,14,18,18,14,253,64,14,18,18,14,2,192,14,18,4,36,14,22,1,216,14,14,253,196,251,224,40,56,56,40,6
,64,40,56,253,224,40,56,253,32,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18
,0,0,4,0,34,255,0,6,125,6,0,0,10,0,36,0,66,0,82,0,0,1,51,47,1,38,53,35,7,20,6,7,1,20,7,1,6,35,34,39
,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,5,21,33,53,1,54,63,1,53,34,6,35,6,43,1,21,35,53,33,21,1,6
,15,1,21,55,54,59,1,53,19,21,33,53,51,39,35,7,51,21,33,53,51,19,51,19,4,167,177,72,12,2,4,3,7,4,253,240,10,254,193,10
,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,3,68,253,184,1,113,12,9,11,2,9,3,12,18,232,120,2,55,254,143,6,15
,11,14,9,21,248,210,254,224,75,47,243,47,75,254,225,70,230,162,230,4,104,218,47,16,4,20,1,34,12,251,30,12,12,254,193,9,9,1,64,16
,19,20,5,96,14,18,18,14,250,160,18,133,233,90,2,17,18,9,9,3,1,3,115,229,89,253,238,8,18,11,2,2,2,119,3,129,106,106,144,144
,106,106,2,150,253,106,0,0,0,0,4,0,34,255,0,6,125,6,0,0,10,0,36,0,52,0,82,0,0,37,51,47,1,38,53,35,7,20,6,7
,5,20,7,1,6,35,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,1,21,33,53,51,39,35,7,51,21,33,53,51,19
,51,19,3,21,33,53,1,54,63,1,53,34,6,35,6,43,1,21,35,53,33,21,1,6,15,1,21,55,54,59,1,53,4,167,177,72,12,2,4,3
,7,4,253,240,10,254,193,10,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,3,157,254,224,75,47,243,47,75,254,225,70,230,162
,230,19,253,184,1,113,12,9,11,2,9,3,12,18,232,120,2,55,254,143,6,15,11,14,9,21,248,104,218,47,16,4,20,1,34,12,226,12,12,254
,193,9,9,1,64,16,19,20,5,96,14,18,18,14,250,160,18,254,252,106,106,144,144,106,106,2,150,253,106,4,127,233,90,2,17,18,9,9,3,1
,3,115,229,89,253,238,8,18,10,3,3,1,119,0,5,0,34,255,0,7,0,6,0,0,25,0,41,0,57,0,73,0,89,0,0,37,20,7,1,6
,35,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,5,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,3,21,20
,6,35,33,34,38,61,1,52,54,51,33,50,22,3,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,3,21,20,6,35,33,34,38,61,1,52
,54,51,33,50,22,2,224,10,254,193,10,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,4,32,18,14,252,192,14,18,18,14,3
,64,14,18,192,18,14,253,128,14,18,18,14,2,128,14,18,192,18,14,254,64,14,18,18,14,1,192,14,18,192,18,14,255,0,14,18,18,14,1,0
,14,18,96,12,12,254,193,9,9,1,64,16,19,20,5,96,14,18,18,14,250,160,18,142,192,14,18,18,14,192,14,18,18,1,242,192,14,18,18,14
,192,14,18,18,1,242,192,14,18,18,14,192,14,18,18,1,242,192,14,18,18,14,192,14,18,18,0,0,0,0,5,0,34,255,0,7,0,6,0,0
,15,0,41,0,57,0,73,0,89,0,0,5,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,37,20,7,1,6,35,34,39,1,38,55,54,59
,1,17,52,54,59,1,50,22,21,17,51,50,22,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,19,21,20,6,35,33,34,38,61,1,52
,54,51,33,50,22,19,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,4,192,18,14,255,0,14,18,18,14,1,0,14,18,254,32,10,254,193
,10,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,2,160,18,14,254,64,14,18,18,14,1,192,14,18,192,18,14,253,128,14,18
,18,14,2,128,14,18,192,18,14,252,192,14,18,18,14,3,64,14,18,32,192,14,18,18,14,192,14,18,18,114,12,12,254,193,9,9,1,64,16,19
,20,5,96,14,18,18,14,250,160,18,1,114,192,14,18,18,14,192,14,18,18,1,242,192,14,18,18,14,192,14,18,18,1,242,192,14,18,18,14,192
,14,18,18,0,0,0,4,0,34,255,0,5,206,6,0,0,10,0,36,0,67,0,86,0,0,37,52,38,35,34,6,20,22,51,50,54,5,20,7,1
,6,35,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,37,20,14,3,35,34,39,38,39,55,22,23,22,51,50,54,55,35
,14,1,35,34,38,53,52,54,51,50,22,3,21,33,53,51,17,52,54,61,1,35,7,6,15,1,39,55,51,17,5,66,88,59,52,62,73,68,50,70
,253,158,10,254,193,10,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,2,238,26,56,80,117,69,62,46,24,18,39,15,16,37,38
,84,101,16,2,21,81,44,106,134,144,109,123,164,30,254,43,167,1,2,7,8,18,62,82,192,123,223,63,106,74,114,76,54,86,12,12,254,193,9,9
,1,64,16,19,20,5,96,14,18,18,14,250,160,18,55,62,119,109,82,49,16,8,7,113,7,4,13,117,87,23,28,143,101,105,146,189,2,47,114,114
,1,176,7,24,5,16,12,13,18,58,86,185,253,114,0,0,0,0,4,0,34,255,0,5,206,6,0,0,10,0,36,0,55,0,86,0,0,1,52,38
,35,34,6,20,22,51,50,54,1,20,7,1,6,35,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22,21,17,51,50,22,5,21,33,53,51,17
,52,54,61,1,35,7,6,15,1,39,55,51,17,19,20,14,3,35,34,39,38,39,55,22,23,22,51,50,54,55,35,14,1,35,34,38,53,52,54,51
,50,22,5,66,88,59,52,62,73,68,50,70,253,158,10,254,193,10,13,12,11,254,192,15,8,8,22,192,18,14,192,14,18,192,14,18,2,208,254,43
,167,1,2,7,8,18,62,82,192,123,195,26,56,80,117,69,62,46,24,18,39,15,16,37,38,84,101,16,2,21,81,44,106,134,144,109,123,164,4,223
,63,106,74,114,76,54,251,170,12,12,254,193,9,9,1,64,16,19,20,5,96,14,18,18,14,250,160,18,252,114,114,1,176,7,24,5,16,12,13,18
,58,86,185,253,114,5,51,62,119,109,82,49,16,8,7,113,7,4,13,117,87,23,28,143,101,105,146,189,0,0,3,0,0,255,128,6,64,5,128,0
,11,0,27,0,92,0,0,37,52,38,35,34,6,21,20,22,51,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,20,7,22,21
,22,7,22,7,6,7,22,7,6,7,43,2,34,46,1,39,38,39,46,1,53,17,52,54,55,62,1,55,54,55,62,2,55,62,2,55,54,51,50,30
,5,21,20,14,1,7,14,2,7,33,50,22,1,0,38,26,27,37,37,27,26,38,160,38,26,254,224,26,38,38,26,1,32,26,38,4,160,55,15,3
,46,17,17,15,39,9,58,64,133,36,76,17,66,156,87,77,123,35,26,38,36,25,24,104,49,68,33,18,26,9,9,7,11,28,20,19,26,46,73,47
,33,15,9,1,19,19,18,3,14,8,4,1,21,78,114,192,26,38,38,26,27,37,37,2,27,253,128,26,38,38,26,2,128,26,38,38,26,86,63,44
,32,76,61,56,61,57,37,112,69,76,2,31,27,26,43,1,1,37,26,2,129,25,37,2,2,114,64,87,33,18,60,37,42,39,44,60,20,19,21,31
,50,40,60,30,24,38,76,44,34,6,24,20,14,114,0,0,0,0,3,0,0,255,0,6,64,5,0,0,11,0,27,0,92,0,0,1,20,6,35,34
,38,53,52,54,51,50,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,37,22,21,14,1,35,33,30,2,23,30,2,21,20,14,5,35
,34,39,46,2,39,46,2,39,38,39,46,1,39,46,1,53,17,52,54,55,54,55,62,2,59,3,22,23,22,7,22,23,22,7,22,7,20,1,0,38
,26,27,37,37,27,26,38,160,38,26,254,224,26,38,38,26,1,32,26,38,4,105,55,1,113,78,254,235,4,8,14,3,18,18,20,1,9,15,33,47
,73,46,26,19,20,28,11,7,9,9,26,18,33,68,49,104,24,25,36,38,26,35,123,77,87,156,66,17,76,36,133,64,58,9,39,15,17,17,46,3
,3,192,26,38,38,26,27,37,37,253,229,2,128,26,38,38,26,253,128,26,38,38,175,61,88,78,114,14,20,24,6,37,40,77,38,24,30,60,40,50
,31,21,19,20,60,44,39,42,37,60,18,33,87,64,114,2,2,37,25,2,129,26,37,1,1,43,26,27,31,2,76,69,112,37,57,61,56,61,76,32
,0,0,12,0,0,255,128,6,0,5,128,0,9,0,15,0,23,0,43,0,61,0,92,0,100,0,127,0,140,0,158,0,178,0,194,0,0,37,53,52
,35,34,7,21,22,51,50,55,51,53,52,34,21,37,21,35,17,35,17,35,53,5,17,35,53,6,35,34,39,38,53,17,51,17,20,23,22,51,50,55
,17,5,21,20,7,6,35,34,39,21,35,17,51,21,54,51,50,23,22,23,21,20,7,6,7,6,35,34,39,38,61,1,52,55,54,50,23,22,29,1
,35,21,20,51,50,55,52,54,52,53,1,21,20,34,61,1,52,50,1,52,39,46,1,39,38,33,32,7,14,1,7,6,21,20,23,30,1,23,22,32
,55,62,1,55,54,1,19,35,7,39,35,30,1,23,22,23,21,51,37,53,52,39,38,35,34,7,6,29,1,20,23,22,51,50,55,54,23,51,17,35
,17,6,35,34,39,38,53,17,35,17,20,23,22,51,50,55,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,151,29,17,16,16,17,29
,184,66,66,253,197,80,74,78,1,177,67,39,37,33,9,6,66,1,1,14,20,22,1,63,7,12,41,35,33,67,67,32,36,41,12,7,251,2,3,12
,27,53,52,29,21,20,29,102,27,21,133,34,24,6,1,254,129,64,64,2,21,19,10,66,43,136,254,236,254,237,136,44,65,10,20,20,10,65,43,137
,2,38,137,43,65,10,20,253,13,90,75,51,53,78,7,32,8,35,11,74,1,33,21,29,49,51,27,21,21,27,51,49,29,21,181,67,67,22,20,15
,1,1,67,6,11,32,36,41,1,247,169,119,252,64,119,169,169,119,3,192,119,169,233,157,50,16,224,16,171,34,51,51,232,70,254,89,1,167,70,126
,254,145,40,45,28,17,37,1,34,254,242,24,2,15,31,1,24,111,146,52,21,42,41,36,1,237,161,40,42,21,182,9,29,14,22,18,40,38,27,59
,129,59,27,38,38,29,57,76,65,51,26,1,12,21,11,3,56,156,51,51,156,52,253,3,177,83,44,59,5,15,15,5,59,44,87,173,176,84,43,60
,5,15,15,5,60,43,84,3,59,1,40,195,195,23,92,23,103,55,201,120,130,58,29,38,38,29,58,130,58,29,38,38,27,60,1,114,254,229,31,16
,2,24,1,16,254,219,37,18,27,45,1,8,252,64,119,169,169,119,3,192,119,169,169,0,0,0,11,0,27,255,0,5,229,6,0,0,9,0,15,0
,23,0,43,0,61,0,91,0,99,0,125,0,137,0,155,0,175,0,0,1,21,20,35,34,39,17,54,51,50,5,21,35,53,52,50,37,51,53,33,21
,51,17,51,33,51,17,35,17,6,35,34,39,38,53,17,35,17,20,23,22,51,50,55,37,53,52,39,38,35,34,7,53,35,17,51,53,22,51,50,55
,54,37,53,35,20,7,6,35,34,61,1,51,53,52,39,38,35,34,7,6,29,1,20,23,22,51,50,55,54,55,54,1,53,52,34,29,1,20,50,1
,20,7,14,1,7,6,32,39,46,1,39,38,53,52,55,62,1,55,54,32,23,30,1,23,22,1,51,3,17,35,17,38,39,38,39,51,19,5,21,20
,7,6,35,34,39,38,61,1,52,55,54,51,50,23,22,37,17,35,53,6,35,34,39,38,53,17,51,17,20,23,22,51,50,55,17,3,203,39,23,22
,22,23,39,1,82,90,90,252,58,107,254,200,105,100,1,32,89,89,30,27,18,3,1,89,8,12,46,48,54,1,173,9,17,54,50,43,89,89,45,48
,54,17,9,1,82,91,2,7,33,46,179,27,39,67,68,39,28,29,39,69,72,36,18,3,2,253,160,86,86,2,207,26,14,88,58,184,253,26,184,58
,89,13,26,26,14,88,59,183,2,230,184,58,89,13,26,252,26,102,121,100,14,47,37,28,106,71,1,182,28,38,68,67,38,28,28,38,67,68,38,28
,1,79,91,53,50,46,13,8,91,1,3,18,27,30,1,36,211,67,22,1,45,22,68,46,46,68,150,94,94,253,199,1,238,254,134,42,21,3,32,1
,108,254,121,49,24,37,61,94,197,73,26,56,54,217,253,105,48,55,55,27,83,13,51,10,36,69,87,103,79,37,51,51,37,79,173,79,37,51,53,27
,27,9,3,194,210,69,69,210,70,253,87,234,116,59,80,6,21,21,6,80,59,112,238,234,116,59,80,7,20,20,7,80,59,112,4,14,254,113,254,241
,1,15,74,138,103,84,254,249,70,175,81,37,51,51,38,80,175,80,37,51,51,37,82,254,13,55,62,37,24,51,1,138,254,145,33,2,22,43,1,125
,0,0,2,0,5,255,128,5,123,5,246,0,19,0,39,0,0,1,6,3,6,43,1,34,38,55,19,50,39,3,38,55,54,59,1,50,23,1,22,7
,1,21,1,22,7,6,43,1,34,39,1,54,1,54,59,1,50,2,85,10,247,27,38,239,21,20,10,253,1,1,161,12,11,9,23,239,40,26,3,202
,11,11,253,240,1,80,11,10,10,22,239,42,24,254,173,18,2,1,25,39,241,22,3,101,18,254,74,46,34,19,1,192,1,1,23,22,15,15,45,1
,100,16,21,252,90,1,253,153,20,17,15,45,2,110,32,3,142,45,0,0,0,0,3,0,0,255,128,6,0,5,128,0,19,0,39,0,55,0,0,1
,52,39,38,43,1,34,7,6,31,1,21,3,6,23,22,59,1,50,55,1,38,43,1,34,7,1,22,1,22,59,1,50,55,54,39,1,53,1,54,23
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,173,126,21,31,184,18,8,7,8,125,196,9,9,8,16,185,31,19,3,55,7,17,187,30
,19,254,101,1,1,5,20,32,184,18,7,8,9,254,252,1,153,8,219,169,119,252,64,119,169,169,119,3,192,119,169,3,3,1,221,34,11,12,17,216
,1,254,166,14,14,13,36,3,81,12,35,253,39,2,254,33,35,12,13,15,1,220,1,2,211,16,136,252,64,119,169,169,119,3,192,119,169,169,0,0
,0,0,2,0,0,0,10,7,0,4,246,0,2,0,73,0,0,1,45,1,19,50,4,31,1,50,30,5,23,30,2,23,30,1,23,29,1,22,7,14
,1,15,1,14,6,35,6,33,38,36,47,2,46,2,39,46,2,39,46,1,39,61,1,38,55,62,1,63,1,62,6,51,54,2,199,1,228,254,28,185
,168,1,57,73,73,1,32,14,33,24,32,30,14,6,19,39,7,8,9,1,1,19,7,36,14,14,14,30,32,24,33,15,31,1,251,254,136,207,254,207
,48,49,36,36,37,65,24,6,19,39,7,8,9,1,1,19,7,36,14,14,14,30,32,24,33,14,32,1,251,1,152,250,253,1,103,9,5,4,3,3
,6,10,16,23,15,6,25,92,55,64,145,41,40,136,145,145,55,89,17,17,15,23,15,10,6,3,3,19,2,9,3,4,4,5,10,32,25,6,25,92
,55,64,145,41,40,136,145,145,55,89,17,17,15,23,16,10,6,3,3,18,0,0,5,0,64,255,128,6,192,5,138,0,3,0,19,0,23,0,27,0
,31,0,0,9,4,21,1,21,39,7,53,1,53,23,1,53,23,55,21,9,12,1,146,1,238,254,170,254,22,5,44,254,22,1,1,254,23,147,1,86
,1,1,1,87,253,81,1,86,254,18,254,174,5,46,1,82,254,23,254,169,1,87,1,233,254,174,254,18,3,61,254,207,254,227,1,63,254,228,108,254
,219,1,1,1,1,1,37,108,96,1,28,2,1,1,2,254,228,4,216,254,227,254,208,1,14,254,242,254,241,254,193,1,29,3,126,254,193,254,242,1
,48,0,6,0,11,255,0,5,245,6,0,0,7,0,11,0,15,0,19,0,23,0,27,0,0,5,33,17,35,17,33,17,35,37,55,5,7,1,55,1
,7,1,55,1,7,3,1,7,9,1,53,33,21,5,9,251,162,160,5,158,160,252,82,33,3,15,33,253,88,67,2,213,67,253,244,102,2,102,102,217
,1,221,128,254,35,253,178,3,32,96,1,224,253,128,2,128,44,157,165,156,2,26,146,254,173,145,2,182,123,253,255,123,3,123,253,127,96,2,129,250
,161,159,159,0,0,0,5,0,0,255,128,6,0,5,128,0,7,0,15,0,23,0,79,0,103,0,0,0,52,38,34,6,20,22,50,0,16,6,32,38
,16,54,32,36,20,6,34,38,52,54,50,36,34,38,14,2,7,14,1,7,14,3,22,20,6,30,2,23,30,1,23,30,3,54,50,22,62,2,55,62
,1,55,62,3,38,52,54,46,2,39,46,1,39,46,3,0,16,7,14,1,7,6,32,39,46,1,39,38,16,55,62,1,55,54,32,23,30,1,23,4
,0,150,212,150,150,212,1,32,230,254,184,230,230,1,72,1,82,54,76,54,54,76,254,71,14,139,72,121,85,29,50,76,20,11,15,5,1,1,1,1
,5,15,11,20,76,50,29,85,121,72,139,14,139,72,121,85,29,50,76,20,11,15,5,1,1,1,1,5,15,11,20,76,50,29,85,121,72,2,110,5
,10,228,208,88,254,54,88,208,228,10,5,5,10,228,208,88,1,202,88,208,228,10,2,22,212,150,150,212,150,1,164,254,184,230,230,1,72,230,54,76
,54,54,76,54,128,1,1,5,15,11,20,76,50,29,85,121,72,139,14,139,72,121,85,29,50,76,20,11,15,5,1,1,1,1,5,15,11,20,76,50
,29,85,121,72,139,14,139,72,121,85,29,50,76,20,11,15,5,1,254,110,254,54,88,208,228,10,5,5,10,228,208,88,1,202,88,208,228,10,5,5
,10,228,208,0,0,0,3,0,0,255,128,6,0,5,128,0,15,0,23,0,31,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,0
,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,4,224,119,169,169,119,252,64,119,169,169,119,1,154,124,176,124,124,176,2,176,124,176,124,124
,176,5,128,169,119,252,64,119,169,169,119,3,192,119,169,252,168,176,124,124,176,124,124,176,124,124,176,124,0,0,3,0,0,255,128,6,0,5,128,0
,2,0,9,0,21,0,0,1,19,33,5,51,9,1,51,55,33,0,16,2,4,32,36,2,16,18,36,32,4,3,0,201,254,110,2,54,94,254,53,254
,53,94,104,2,10,1,251,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,3,146,254,206,224,2,179,253,77,160,1,49,254,94,254,159,206,206
,1,97,1,162,1,97,206,206,0,0,5,0,0,255,80,5,129,5,163,0,10,0,22,0,42,0,67,0,103,0,0,1,22,6,39,46,1,54,55,54
,30,1,23,46,1,7,14,1,23,30,1,55,62,1,19,46,2,39,36,5,14,2,7,30,2,23,22,55,62,2,19,14,3,7,14,1,38,39,46,3
,39,38,39,63,1,22,32,55,30,1,6,19,6,3,14,2,7,6,37,38,39,46,4,39,46,3,39,62,4,55,54,55,36,5,22,23,30,1,3,47
,8,117,53,39,29,28,38,36,73,55,111,14,198,98,63,75,3,4,147,92,91,122,228,20,72,44,49,254,221,254,237,43,46,64,18,30,92,55,60,228
,220,63,53,92,86,8,15,13,44,36,86,207,197,103,46,71,82,64,20,25,32,6,18,223,2,55,224,21,6,16,181,26,85,5,44,43,33,252,254,154
,248,146,15,21,13,5,7,2,9,35,21,26,9,3,29,34,56,36,30,125,188,1,123,1,41,155,60,16,1,2,165,63,76,32,17,82,82,17,18,12
,59,17,107,114,44,28,121,69,91,128,8,8,152,2,122,27,35,9,8,47,49,7,10,34,26,28,35,9,7,29,28,8,8,35,252,18,26,101,67,73
,20,48,47,3,17,8,20,34,53,35,96,196,16,9,148,148,6,34,56,3,184,167,254,24,30,52,28,17,126,38,27,112,12,29,41,27,52,9,50,200
,123,172,72,26,45,30,30,15,11,46,18,37,87,46,76,20,62,0,6,0,0,255,128,6,0,5,128,0,8,0,19,0,39,0,58,0,89,0,105,0
,0,1,52,38,7,6,22,23,22,54,55,22,14,1,38,39,38,54,55,54,22,19,14,2,7,6,39,46,2,39,62,2,55,54,23,30,2,19,52,54
,38,39,6,32,39,15,1,22,23,22,23,22,55,62,2,19,54,39,38,39,38,5,6,7,14,2,7,30,2,23,30,3,23,22,23,4,55,62,2,55
,18,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,80,82,36,43,1,43,39,84,74,8,88,132,106,3,2,55,45,70,143,182,20,67
,39,44,155,169,44,38,67,21,13,46,34,30,198,210,33,36,50,56,11,5,15,161,254,104,162,12,5,26,15,47,157,249,179,34,30,15,135,9,17,43
,112,216,254,241,132,94,38,43,51,4,8,22,36,6,1,8,6,18,13,105,179,1,3,181,24,31,31,4,48,1,40,169,119,252,64,119,169,169,119,3
,192,119,169,2,154,43,46,22,20,105,18,23,54,61,66,110,12,92,67,49,88,20,31,82,1,58,21,26,6,5,20,20,6,7,25,20,19,24,7,5
,35,34,5,7,25,253,3,7,39,25,4,106,106,6,12,154,56,81,27,46,99,19,65,106,2,199,53,22,55,33,63,27,12,34,15,20,48,30,68,140
,202,36,5,52,20,34,11,80,20,28,91,13,20,38,21,1,11,1,50,252,64,119,169,169,119,3,192,119,169,169,0,0,0,0,1,0,68,255,128,4
,0,6,0,0,34,0,0,37,23,14,1,7,6,46,3,53,17,35,53,62,4,55,62,1,59,1,17,33,21,33,17,20,30,2,55,54,3,176,80,23
,176,89,104,173,112,78,33,168,72,114,68,48,20,5,1,7,4,244,1,77,254,178,13,32,67,48,78,207,237,35,62,1,2,56,92,120,120,58,2,32
,215,26,87,93,111,87,45,5,7,254,88,252,253,250,30,52,53,30,1,2,0,0,2,0,0,255,128,6,0,5,128,0,31,0,47,0,0,37,39,6
,35,6,46,2,53,17,33,53,33,17,35,34,7,14,3,7,21,51,17,20,30,2,55,62,1,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50
,22,4,112,62,44,59,36,52,25,10,1,1,255,0,188,8,1,5,25,53,101,68,130,43,87,155,99,69,135,1,162,169,119,252,64,119,169,169,119,3
,192,119,169,75,183,22,1,23,40,41,23,1,142,194,1,70,10,44,86,104,86,25,165,254,94,57,116,106,65,2,1,48,4,47,252,64,119,169,169,119
,3,192,119,169,169,0,1,0,3,255,64,2,253,6,0,0,23,0,0,0,22,7,1,6,35,34,39,1,38,55,54,59,1,17,52,54,59,1,50,22
,21,17,51,2,245,16,13,254,162,10,13,14,10,254,157,13,8,9,20,224,18,14,192,14,18,224,1,0,38,16,254,128,10,10,1,128,16,19,19,4
,224,14,18,18,14,251,32,0,0,0,1,0,3,255,0,2,253,5,192,0,23,0,0,1,6,43,1,17,20,6,43,1,34,38,53,17,35,34,38,55
,1,54,51,50,23,1,22,2,253,9,20,224,18,14,192,14,18,224,21,16,13,1,94,10,13,14,10,1,99,13,4,19,19,251,32,14,18,18,14,4
,224,38,16,1,128,10,10,254,128,16,0,0,0,0,1,0,64,1,3,7,0,3,253,0,23,0,0,1,21,20,6,35,33,21,20,6,39,1,38,53
,52,55,1,54,23,22,29,1,33,50,22,7,0,18,14,251,32,38,16,254,128,10,10,1,128,16,19,19,4,224,14,18,2,224,192,14,18,224,21,16
,13,1,94,10,13,14,10,1,98,14,8,9,20,224,18,0,0,0,1,0,0,1,3,6,192,3,253,0,23,0,0,1,20,7,1,6,39,38,61,1
,33,34,38,61,1,52,54,51,33,53,52,54,23,1,22,6,192,10,254,128,16,19,19,251,32,14,18,18,14,4,224,38,16,1,128,10,2,131,14,10
,254,158,14,8,9,20,224,18,14,192,14,18,224,21,16,13,254,162,10,0,0,0,2,0,0,255,128,5,113,6,0,0,38,0,56,0,0,1,6,7
,6,35,34,39,38,35,34,7,6,35,34,3,2,53,52,55,54,51,50,23,22,51,50,55,54,51,50,23,22,23,6,7,6,21,20,22,1,20,7,6
,7,6,7,6,7,54,55,54,55,30,1,23,20,22,5,113,39,84,129,128,49,91,86,65,61,81,81,51,152,149,147,113,113,171,72,105,104,34,45,98
,102,71,119,94,52,52,79,35,65,138,254,225,29,30,63,54,54,37,67,3,75,74,176,1,3,1,1,1,65,125,125,196,32,32,33,34,1,3,1,5
,242,228,146,144,30,30,34,34,65,36,64,67,51,94,113,124,198,4,122,61,75,75,63,54,18,11,6,149,108,107,41,3,16,3,4,12,0,0,4,0
,0,255,0,6,128,5,128,0,3,0,7,0,11,0,15,0,0,1,17,37,17,1,17,33,17,1,17,37,17,1,17,33,17,2,170,253,86,2,170,253
,86,6,128,252,117,3,139,252,117,2,18,253,117,94,2,45,2,231,253,109,2,53,253,119,252,238,125,2,149,3,110,252,230,2,157,0,0,0,6,0
,0,255,0,5,128,5,126,0,7,0,15,0,28,0,55,0,77,0,91,0,0,0,50,54,52,38,34,6,20,4,50,54,52,38,34,6,20,5,50,22
,21,17,20,6,34,38,53,17,52,54,5,17,20,6,43,1,21,20,6,34,38,61,1,35,21,20,6,35,34,38,53,39,35,34,38,53,17,1,30,1
,21,33,52,54,55,39,38,55,54,31,1,54,50,23,55,54,23,22,7,1,17,20,6,35,34,38,53,17,52,54,51,50,22,1,221,32,23,23,32,22
,1,188,32,22,22,32,23,252,251,42,60,59,86,60,60,4,79,64,45,75,60,86,60,138,60,43,42,60,1,74,46,64,2,174,107,128,252,99,128,108
,71,7,12,13,7,72,95,212,95,72,7,13,12,7,1,150,60,43,42,60,60,42,43,60,4,29,23,32,23,23,32,23,23,32,23,23,32,207,60,42
,254,82,43,60,60,43,1,174,42,60,19,253,102,46,64,227,43,60,60,43,227,227,43,60,60,43,227,64,46,2,154,1,149,55,197,117,117,197,55,131
,13,7,6,12,132,42,42,132,12,6,7,13,253,149,254,82,43,60,60,43,1,174,43,59,59,0,9,0,11,255,0,5,249,6,0,0,8,0,15,0
,34,1,8,1,21,1,37,1,51,1,73,1,241,0,0,1,14,1,35,6,53,52,55,50,23,6,38,7,54,23,22,1,38,14,1,7,6,7,6,23
,22,54,55,62,3,60,1,38,1,52,39,62,3,38,52,46,2,39,46,1,39,22,23,22,7,6,7,6,46,1,39,46,4,39,46,3,39,38,54,38
,39,46,1,39,46,1,54,55,54,22,7,6,22,55,54,52,53,46,3,39,6,23,20,35,46,1,6,39,54,38,39,38,6,7,6,30,1,55,54,55
,54,7,34,38,39,38,54,23,50,22,6,7,6,7,14,1,7,14,1,23,30,3,23,22,55,62,3,55,54,23,30,1,6,7,14,1,7,6,7,6
,39,38,23,22,23,22,55,62,5,22,23,20,14,5,7,14,2,39,38,39,38,7,6,21,20,14,2,23,14,1,7,6,22,7,6,39,38,39,38,55
,54,7,6,7,6,23,30,1,23,30,1,23,30,1,6,7,30,2,21,54,39,46,2,55,62,1,23,22,55,54,55,54,23,22,7,6,7,6,22,23
,62,1,55,54,38,54,55,54,51,62,1,22,1,54,38,39,38,21,22,23,50,7,6,51,50,5,46,2,39,46,4,7,6,22,23,22,54,39,52,46
,1,7,34,6,22,23,22,23,20,55,54,55,52,46,1,39,38,35,14,1,22,7,14,2,23,22,62,1,55,54,50,54,1,30,2,14,5,7,14,1
,7,14,1,39,46,3,39,38,35,34,6,7,14,3,39,46,1,39,46,4,39,38,54,55,54,46,1,54,55,62,1,55,62,1,53,22,7,6,39,38
,7,6,23,30,3,7,20,6,23,22,23,30,1,23,30,2,55,62,2,46,1,39,38,39,38,7,6,39,38,55,62,2,55,62,3,55,54,55,38,39
,38,54,55,54,51,54,22,23,30,1,7,6,23,22,23,30,1,23,22,14,1,7,14,3,39,46,4,39,38,14,1,23,22,7,6,22,54,55,62,1
,55,62,1,46,1,39,46,1,54,55,30,5,2,151,11,9,4,5,19,5,92,4,15,10,24,8,3,254,155,4,4,5,3,3,7,10,9,4,17,4
,1,2,2,1,2,3,85,55,4,7,3,3,2,7,1,9,1,10,74,35,24,33,87,33,11,39,31,15,1,11,9,21,18,13,13,1,14,34,25,22
,4,4,20,11,39,15,59,6,8,6,22,25,37,28,10,11,18,21,13,5,17,25,22,16,107,18,1,9,41,25,3,1,34,28,27,29,2,1,9,17
,7,10,6,4,11,7,17,1,1,20,24,17,20,1,1,22,9,8,39,1,13,5,10,14,22,10,27,22,47,55,2,42,27,32,5,9,11,5,3,9
,12,20,73,9,44,26,25,54,10,1,1,16,25,42,17,38,34,33,27,22,13,2,2,6,6,11,7,13,3,28,79,54,22,21,42,22,3,1,30,29
,13,18,23,79,8,2,1,6,8,21,32,4,2,6,4,5,2,2,36,46,5,40,4,20,168,9,16,3,31,30,8,42,14,46,39,4,13,6,1,3
,20,10,46,120,133,44,23,11,12,2,1,22,9,6,21,3,23,2,2,17,2,22,15,36,1,67,78,253,161,3,11,6,9,2,3,10,3,3,11,3
,1,163,2,9,17,6,5,9,5,6,2,3,14,42,18,9,11,180,10,12,3,6,4,4,3,14,4,8,2,54,5,13,3,15,9,9,5,3,2,1
,10,2,4,4,8,14,8,1,16,14,2,55,20,22,2,7,24,23,37,26,38,8,38,95,28,17,102,38,18,23,10,34,30,44,86,19,76,20,44,71
,36,51,28,29,164,64,19,64,36,43,24,5,10,34,1,1,10,10,1,10,14,86,17,30,24,21,53,32,51,34,9,13,18,2,12,5,4,1,34,3
,3,34,20,129,35,24,100,65,23,43,43,3,18,20,10,121,48,68,45,11,4,3,1,1,18,30,7,8,37,22,38,20,110,14,12,4,2,52,80,39
,65,53,106,36,57,69,5,5,35,34,99,55,89,15,8,6,18,11,10,27,27,54,34,18,27,18,9,14,2,22,38,18,16,20,19,10,56,90,40,59
,61,73,53,48,11,39,32,33,33,3,14,1,14,15,26,16,27,4,101,1,19,1,6,12,3,14,1,15,3,11,13,6,254,82,1,8,17,5,5,8
,11,1,1,16,10,3,8,4,5,3,3,2,254,154,18,24,15,25,27,16,29,10,34,7,43,5,48,110,20,20,63,162,116,40,2,4,45,122,46,39
,60,31,18,12,1,62,82,30,36,22,21,65,34,8,3,30,1,1,50,52,1,3,66,25,19,15,7,4,64,5,30,40,21,9,3,8,126,15,9,3
,4,7,57,66,1,1,57,31,15,44,31,2,3,11,9,1,29,19,22,30,1,42,36,4,15,14,12,23,1,14,26,5,8,23,15,11,1,2,17,1
,12,9,17,9,14,6,3,11,13,3,6,31,4,19,4,5,7,2,4,4,15,23,1,1,12,16,19,15,9,4,9,2,5,5,4,6,3,7,1,14
,60,26,12,11,62,31,9,3,7,25,63,48,68,29,6,168,57,18,102,8,24,21,31,63,28,28,19,1,1,4,65,101,12,32,4,23,135,9,15,46
,40,3,15,59,49,46,24,68,8,16,8,2,5,9,7,52,16,15,72,38,8,6,46,25,67,23,29,1,19,116,32,21,105,89,26,18,37,32,11,3
,42,17,26,2,2,9,5,1,15,20,194,8,7,3,4,3,10,6,7,1,2,16,55,4,1,18,224,11,17,8,1,4,4,1,4,27,3,5,2,234
,2,6,8,2,15,1,13,13,6,4,13,5,6,3,6,12,3,1,4,250,200,12,25,23,22,22,17,20,13,18,4,19,74,27,16,7,18,9,29,22
,17,1,1,3,1,1,28,32,25,1,1,60,13,4,11,7,12,17,11,23,87,11,16,48,37,36,9,12,4,10,18,34,34,73,33,20,5,3,13,15
,42,6,24,12,22,11,15,68,14,17,9,6,25,8,6,32,14,3,6,44,52,65,39,17,190,52,74,34,9,24,16,22,29,46,48,18,21,102,54,68
,20,143,52,112,198,90,123,43,21,1,29,27,42,159,68,95,119,113,105,59,208,87,49,71,40,2,2,34,37,30,1,1,8,19,12,29,5,37,14,84
,55,70,125,65,71,5,33,49,35,25,18,37,32,25,11,11,74,71,12,31,51,30,27,11,15,0,8,0,0,255,128,6,0,5,128,0,14,0,32,0
,39,0,46,0,50,0,62,0,86,0,98,0,0,37,38,3,35,7,14,4,7,39,22,51,50,3,38,39,4,33,6,21,20,22,23,62,3,63,1,62
,1,39,38,39,14,1,7,32,5,38,7,22,23,62,1,1,34,7,54,5,38,35,34,7,22,23,62,4,19,38,39,7,14,4,7,22,23,30,1,23
,62,1,50,30,4,23,54,16,2,4,32,36,2,16,18,36,32,4,4,0,42,98,2,2,16,54,148,126,136,35,15,184,234,132,61,21,32,254,201,254
,150,1,88,80,50,147,138,123,38,37,4,18,103,120,124,138,192,32,1,46,3,220,210,199,87,41,111,148,252,241,1,1,1,2,79,185,248,76,79,131
,115,69,122,71,60,15,228,3,146,1,9,20,67,75,125,69,25,19,2,9,3,36,77,70,68,60,53,43,30,10,122,206,254,159,254,94,254,159,206,206
,1,97,1,162,1,97,36,241,1,1,1,6,21,77,87,142,77,11,150,2,147,49,62,93,7,14,124,225,89,89,155,94,68,14,13,1,5,214,213,165
,65,242,151,239,60,31,239,230,75,229,3,109,1,1,145,164,19,170,212,26,69,54,60,21,254,34,232,178,1,12,25,64,57,73,28,53,42,5,24,5
,5,4,3,5,6,7,5,2,200,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,2,0,0,255,128,6,0,5,128,0,62,0,94,0
,0,1,52,46,3,47,1,46,4,53,52,51,50,30,3,51,50,54,53,52,46,1,35,34,14,2,21,20,30,2,31,1,22,23,22,21,20,6,35,34
,46,3,35,34,6,21,20,22,51,50,62,2,5,20,6,35,34,39,6,35,34,36,38,2,53,52,55,38,53,52,54,51,50,23,54,51,50,4,22,18
,21,20,7,22,4,149,39,58,88,77,49,104,30,28,42,18,15,144,43,68,40,36,44,26,47,57,112,172,96,68,128,111,67,38,74,86,60,146,90,22
,32,80,65,51,81,49,42,50,29,50,51,244,169,73,134,111,66,1,107,225,159,130,104,77,73,143,254,251,189,111,16,80,225,159,130,104,77,73,143,1
,5,189,111,16,80,1,217,50,83,54,44,24,11,24,7,7,16,16,26,17,77,24,33,34,24,64,45,55,89,46,31,63,111,73,61,91,60,37,14,36
,22,14,20,40,39,51,32,45,45,32,60,45,92,131,37,70,117,144,159,225,80,16,111,189,1,5,143,73,77,104,130,159,225,80,16,111,189,254,251,143
,73,77,104,0,0,0,3,0,44,255,128,4,203,6,0,0,35,0,63,0,68,0,0,1,55,54,38,35,33,34,6,21,17,20,55,1,62,1,59,1
,50,54,55,54,55,54,38,35,33,34,38,61,1,52,54,51,33,50,54,55,6,10,1,7,14,4,35,33,34,7,6,1,14,1,39,38,53,17,52,54
,51,33,50,22,7,3,54,26,1,3,232,37,5,28,21,253,56,23,31,6,1,35,23,30,33,239,22,30,3,24,13,4,31,21,254,218,29,38,38,29
,1,90,18,34,230,15,77,62,4,6,6,22,27,50,33,254,241,13,9,8,254,94,22,73,12,55,76,82,3,120,95,64,22,158,4,62,77,4,78,194
,23,34,34,20,251,179,7,6,1,96,26,15,29,15,130,61,21,38,38,29,42,29,37,27,238,73,254,125,254,199,17,22,21,44,22,20,10,9,254,27
,25,7,9,22,76,5,130,55,95,106,106,252,234,17,1,57,1,131,0,0,0,0,3,0,0,255,128,6,0,5,128,0,15,0,31,0,47,0,0,37
,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53
,17,52,54,51,33,50,22,2,192,18,14,254,32,14,18,18,14,1,224,14,18,2,160,18,14,254,32,14,18,18,14,1,224,14,18,160,38,26,250,128
,26,38,38,26,5,128,26,38,192,4,0,14,18,18,14,252,0,14,18,18,1,142,2,128,14,18,18,14,253,128,14,18,18,3,14,250,128,26,38,38
,26,5,128,26,38,38,0,0,0,0,2,0,0,255,0,5,0,5,224,0,49,0,57,0,0,1,20,6,35,34,39,3,35,21,19,22,21,20,6,43
,1,17,20,6,43,1,34,38,53,17,35,34,38,53,52,55,19,53,35,3,6,35,34,38,53,52,55,1,54,51,33,50,23,1,22,0,20,6,34,38
,52,54,50,5,0,56,40,51,29,227,45,247,9,38,26,192,66,46,160,46,66,192,26,38,9,247,45,227,29,51,40,56,16,1,0,73,103,1,128,103
,73,1,0,16,254,96,131,186,131,131,186,1,224,40,56,43,1,85,132,254,101,15,18,26,38,254,240,46,66,66,46,1,16,38,26,18,15,1,155,132
,254,171,43,56,40,29,24,1,128,107,107,254,128,24,3,96,186,131,131,186,131,0,2,0,0,255,0,4,0,5,224,0,37,0,45,0,0,1,17,20
,6,34,38,53,17,35,17,20,6,34,38,53,17,35,17,20,6,34,38,53,17,35,17,20,6,34,38,53,17,52,54,51,33,50,22,0,20,6,34,38
,52,54,50,4,0,56,80,56,64,66,92,66,64,66,92,66,64,56,80,56,112,80,2,128,80,112,254,224,131,186,131,131,186,3,64,254,96,40,56,56
,40,1,96,252,112,46,66,66,46,1,208,254,48,46,66,66,46,3,144,254,160,40,56,56,40,1,160,80,112,112,1,205,186,131,131,186,131,0,2,0
,0,255,128,6,0,5,128,0,21,0,33,0,0,37,1,62,1,38,39,38,14,1,7,6,35,34,39,46,2,7,14,1,22,23,36,16,2,4,32,36
,2,16,18,36,32,4,3,5,1,94,16,17,29,47,40,86,61,24,36,60,59,36,24,61,86,41,46,29,17,16,4,88,206,254,159,254,94,254,159,206
,206,1,97,1,162,1,97,234,1,217,22,74,96,31,26,1,34,28,40,40,28,34,1,26,31,96,74,22,142,254,94,254,159,206,206,1,97,1,162,1
,97,206,206,0,0,0,2,0,44,255,0,6,212,5,255,0,15,0,73,0,0,0,52,46,2,34,14,2,20,30,2,50,62,1,37,6,7,5,17,20
,7,6,39,37,7,6,34,47,1,5,6,39,38,53,17,37,38,39,38,63,1,39,38,55,54,55,37,17,52,55,54,23,5,55,54,50,31,1,37,54
,23,22,21,17,5,22,23,22,15,1,23,22,5,192,91,155,213,234,213,155,91,91,155,213,234,213,155,1,111,4,16,254,220,13,15,14,254,220,180,10
,32,10,180,254,220,14,15,13,254,220,16,4,5,9,180,180,9,5,4,16,1,36,13,15,14,1,36,180,9,34,9,180,1,36,14,15,13,1,36,16
,4,5,9,180,180,9,2,11,234,213,155,91,91,155,213,234,213,155,91,91,155,53,15,5,96,254,206,16,10,10,6,94,248,13,13,248,94,6,10,10
,16,1,50,96,5,15,17,12,248,248,13,16,15,5,96,1,50,16,10,10,6,94,248,12,12,248,94,6,10,10,16,254,206,96,5,15,16,13,248,248
,12,0,2,0,0,255,128,5,190,5,127,0,18,0,49,0,0,37,6,35,34,36,2,53,52,55,6,2,21,20,30,2,51,50,36,37,6,4,35,34
,36,38,2,53,52,18,54,36,55,54,23,22,7,14,1,21,20,30,1,51,50,55,54,23,30,1,4,238,54,56,182,254,202,180,104,201,255,102,171,237
,130,144,1,3,1,38,94,254,133,224,156,254,228,206,122,115,197,1,18,153,44,17,18,33,86,91,146,250,148,118,110,41,31,14,7,233,9,180,1,54
,182,192,165,60,254,174,215,130,237,171,102,123,195,203,243,122,206,1,28,156,153,1,23,204,125,6,2,41,41,31,78,207,115,148,250,146,51,18,31,14
,40,0,3,0,64,255,128,6,192,5,128,0,11,0,27,0,43,0,0,0,52,38,35,33,34,6,20,22,51,33,50,1,17,20,6,35,33,34,38,53
,17,52,54,51,33,50,22,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,64,38,26,255,0,26,38,38,26,1,0,26,2,102,38,26
,250,128,26,38,38,26,5,128,26,38,64,38,26,250,0,26,38,38,26,6,0,26,38,2,166,52,38,38,52,38,1,0,252,64,26,38,38,26,3,192
,26,38,38,1,166,255,0,26,38,38,26,1,0,26,38,38,0,0,2,0,32,255,160,6,96,5,192,0,66,0,72,0,0,0,20,6,43,1,20,7
,23,22,20,7,6,34,47,1,14,4,35,17,35,17,34,46,2,47,1,7,6,35,34,39,46,1,63,1,38,53,35,34,38,52,54,59,1,17,39,38
,52,54,50,31,1,33,55,54,50,22,20,15,1,17,51,50,1,33,52,54,32,22,6,96,38,26,224,67,208,19,19,18,54,18,198,5,20,64,66,98
,48,128,51,101,73,59,14,15,183,20,28,24,19,19,3,17,202,58,224,26,38,38,26,224,173,19,38,52,19,173,3,76,173,19,52,38,19,173,224,26
,254,70,253,128,187,1,10,187,2,90,52,38,171,119,209,19,52,19,19,19,197,5,16,41,32,26,3,128,252,128,27,39,39,13,14,207,21,16,18,53
,20,227,114,160,38,52,38,1,38,173,19,52,38,19,173,173,19,38,52,19,173,254,218,2,0,133,187,187,0,0,1,255,255,0,1,7,125,4,71,0
,133,0,0,1,22,7,6,7,14,2,30,2,23,22,23,22,23,30,2,14,1,35,5,6,38,47,1,46,3,7,14,4,23,20,6,15,1,6,7,35
,6,46,2,47,1,46,3,2,39,38,52,63,1,54,51,37,30,1,31,1,22,23,30,1,31,1,30,3,50,55,62,4,39,46,1,47,1,38,39,38
,55,54,55,54,23,22,23,30,3,20,14,1,21,20,6,30,2,23,30,1,62,2,55,54,55,62,1,63,1,62,2,23,37,54,22,23,7,125,23,173
,24,41,40,30,31,7,19,46,34,4,1,141,50,3,7,7,8,42,38,255,0,24,64,20,20,30,80,57,65,24,3,10,24,19,15,1,7,4,4,18
,35,115,71,150,113,93,24,25,10,35,108,104,141,60,6,3,4,15,42,1,18,12,22,5,5,16,8,20,52,15,16,29,54,43,40,28,13,2,6,18
,9,10,5,2,14,7,6,25,60,13,18,16,22,53,186,82,53,20,27,14,7,2,3,2,1,6,17,14,8,18,34,42,62,37,60,47,4,12,5,4
,2,6,20,10,1,32,39,50,6,3,248,64,230,32,53,51,42,57,27,42,44,31,2,2,131,90,5,15,38,30,25,4,5,20,12,12,21,86,69,47
,8,1,5,24,35,69,43,15,25,6,5,19,3,4,41,65,67,24,24,10,40,142,160,1,6,141,16,22,5,6,19,2,2,9,4,3,11,21,50,107
,28,29,60,88,49,28,5,1,8,36,58,104,73,40,66,13,12,34,9,2,22,19,11,26,2,1,12,5,17,31,33,58,52,89,38,11,62,34,47,31
,9,2,4,26,43,91,62,104,121,10,15,3,3,1,3,3,1,2,5,15,9,0,7,0,0,255,170,6,247,5,75,0,10,0,21,0,33,0,47,0
,85,0,105,0,127,0,0,37,54,38,39,38,6,7,6,30,1,54,55,54,38,39,38,6,7,6,23,22,54,23,14,1,39,46,1,55,62,1,23,30
,1,37,46,1,36,7,6,4,23,30,1,4,55,54,36,37,20,14,2,4,32,36,46,1,53,52,18,55,54,36,23,22,7,6,30,1,54,63,1,54
,50,23,22,7,14,1,30,1,23,30,2,2,30,1,7,14,1,39,46,1,55,54,38,7,6,38,39,38,54,55,54,37,30,1,7,14,1,46,1,55
,54,38,39,46,1,7,6,46,1,54,55,54,22,2,163,21,20,35,34,78,21,22,18,68,81,116,8,9,13,14,29,7,17,30,14,30,181,45,226,111
,107,81,47,47,209,106,111,95,1,11,9,160,254,255,146,223,254,219,14,9,160,1,1,146,223,1,37,1,38,74,144,193,254,253,254,230,254,244,213,130
,139,128,169,1,89,74,65,45,4,6,14,15,6,6,139,214,46,45,45,2,5,14,10,12,57,92,68,116,84,25,19,8,43,23,23,22,7,20,88,63
,24,42,4,5,26,24,60,1,85,87,51,39,9,50,54,26,8,28,36,62,62,172,87,28,48,12,31,28,123,242,252,34,70,15,14,26,33,34,69,32
,27,155,13,27,5,5,11,13,31,14,5,11,94,102,96,36,34,185,95,93,92,27,29,181,60,96,148,70,14,23,237,146,96,148,70,14,23,237,142,68
,143,131,104,62,67,119,183,108,115,1,4,128,169,134,74,64,145,14,12,2,3,2,2,59,61,63,115,13,14,11,4,4,18,58,105,2,95,94,123,56
,23,22,7,8,43,23,63,96,13,5,26,24,24,41,5,13,79,96,253,115,27,26,18,50,27,82,180,68,69,53,18,6,31,56,47,6,26,75,0,0
,0,0,3,0,0,255,128,6,0,5,114,0,9,0,19,0,29,0,0,5,6,35,34,39,62,1,55,30,1,1,17,20,2,7,38,17,52,18,36,1
,16,7,38,2,53,17,22,4,18,4,109,171,197,196,171,138,195,34,35,195,254,155,253,204,181,167,1,36,4,53,181,204,253,179,1,36,167,34,94,94
,87,248,144,144,248,5,61,254,27,252,254,97,99,215,1,24,187,1,69,214,253,42,254,232,215,99,1,159,252,1,229,30,214,254,187,0,0,0,1,0
,0,255,0,5,122,6,0,0,107,0,0,1,14,3,46,3,47,1,6,0,7,34,38,52,54,51,54,36,55,14,2,46,3,39,62,1,30,2,23,54
,55,14,2,46,5,39,62,1,30,5,31,1,54,53,46,5,54,55,30,4,14,2,15,1,22,20,7,62,5,22,23,14,6,38,47,1,6,7,62,5
,22,5,122,32,88,94,104,99,94,79,60,16,17,113,254,159,208,19,26,26,19,173,1,43,102,36,72,94,88,98,86,83,33,114,200,135,114,63,25,53
,26,7,22,71,68,95,82,86,64,45,6,70,127,98,86,61,51,33,22,5,4,12,8,27,71,56,52,14,38,51,73,109,60,36,5,6,20,18,8,7
,1,1,3,14,47,54,88,95,129,68,2,39,61,78,85,84,76,59,17,17,23,50,6,24,75,80,119,116,142,1,177,80,116,61,32,3,14,30,25,10
,10,228,254,249,1,26,38,25,1,213,188,14,18,8,13,44,74,126,83,47,20,35,78,76,44,131,160,1,3,2,3,17,29,56,74,115,70,28,17,19
,41,59,63,63,49,15,16,122,73,6,20,69,74,112,113,141,68,25,73,80,90,88,83,70,54,15,15,4,92,26,7,23,63,53,58,31,2,23,78,127
,82,61,30,18,1,3,3,3,147,136,7,23,59,46,38,2,49,0,4,0,21,255,0,4,235,5,0,0,12,0,16,0,20,0,30,0,0,1,21,20
,6,43,1,1,17,33,34,38,61,1,1,21,33,17,1,21,33,17,37,21,33,53,52,54,51,33,50,22,4,235,115,81,57,254,252,253,239,81,115,4
,214,251,42,4,214,251,42,4,214,251,42,115,81,3,78,81,115,1,27,66,85,119,254,243,1,13,119,85,66,1,70,255,0,255,1,72,255,0,255,140
,67,67,84,119,119,0,3,0,0,255,128,6,0,5,128,0,25,0,37,0,49,0,0,0,20,7,1,6,35,34,38,61,1,33,34,38,61,1,52,54
,51,33,53,52,54,51,50,23,1,22,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2,16,18,36,32,4,4,128,9,254,192,9,14
,13,19,254,160,13,19,19,13,1,96,18,14,12,12,1,63,169,146,250,254,216,250,146,146,250,1,40,250,1,114,206,254,159,254,94,254,159,206,206,1
,97,1,162,1,97,2,142,28,9,254,192,9,19,13,192,19,13,192,13,19,192,14,18,10,254,193,171,1,40,250,146,146,250,254,216,250,146,146,2,95
,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,3,0,0,255,128,6,0,5,128,0,25,0,37,0,49,0,0,1,21,20,6,35
,33,21,20,6,35,34,39,1,38,52,55,1,54,51,50,22,29,1,33,50,22,18,16,46,1,32,14,1,16,30,1,32,54,0,16,2,4,32,36,2
,16,18,36,32,4,4,128,19,13,254,160,18,14,12,12,254,193,9,9,1,64,9,14,13,19,1,96,13,19,160,146,250,254,216,250,146,146,250,1,40
,250,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,224,192,13,19,192,14,18,10,1,63,9,28,9,1,64,9,19,13,192,19,254
,255,1,40,250,146,146,250,254,216,250,146,146,2,95,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,3,0,0,255,128,6,0,5,128,0
,15,0,31,0,47,0,0,1,17,20,6,35,34,39,1,38,52,55,1,54,51,50,22,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,1
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,0,38,26,20,17,254,64,27,27,1,192,17,20,26,38,1,0,19,13,252,64,13,19,19
,13,3,192,13,19,1,0,169,119,252,64,119,169,169,119,3,192,119,169,3,192,253,128,26,38,12,1,64,19,66,19,1,64,12,38,252,198,3,192,13
,19,19,13,252,64,13,19,19,3,205,252,64,119,169,169,119,3,192,119,169,169,0,3,0,0,255,128,6,0,5,128,0,7,0,19,0,31,0,0,0
,20,6,34,38,52,54,50,18,32,14,1,16,30,1,32,62,1,16,38,4,16,2,4,32,36,2,16,18,36,32,4,4,0,150,212,150,150,212,42,254
,216,250,146,146,250,1,40,250,146,146,1,114,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,234,212,150,150,212,150,1,32,146,250,254,216
,250,146,146,250,1,40,250,189,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,2,0,0,255,0,6,93,5,224,0,21,0,54,0
,0,1,23,6,4,35,34,36,2,53,52,18,55,23,14,1,21,20,0,51,50,62,1,37,23,5,6,35,34,39,3,33,34,38,39,3,38,55,62,1
,51,50,22,21,20,6,39,19,33,21,33,23,33,50,23,19,3,255,102,58,254,208,187,156,254,247,155,209,170,17,122,146,1,7,185,126,213,117,2,27
,58,255,0,13,16,40,17,239,254,40,24,37,3,96,2,8,14,86,54,66,94,104,68,37,1,167,254,105,16,1,199,40,17,228,1,93,204,179,222,155
,1,9,156,181,1,42,62,131,54,223,133,185,254,249,130,221,26,114,128,7,35,1,221,33,24,3,11,17,25,51,63,94,66,69,97,7,254,223,128,128
,35,254,57,0,0,0,2,0,0,255,128,6,0,5,128,0,35,0,51,0,0,1,54,39,38,3,54,51,50,7,14,1,35,34,39,38,39,38,7,6
,7,14,1,7,23,54,51,50,23,30,1,23,22,51,50,19,18,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,12,10,171,231,81,44
,38,85,11,4,140,35,43,39,13,32,30,130,59,105,27,108,27,52,76,11,57,50,15,60,15,68,96,157,226,220,250,169,119,252,64,119,169,169,119,3
,192,119,169,3,130,216,6,8,254,243,19,96,57,220,169,54,201,189,12,7,93,24,96,24,67,52,179,55,219,55,179,1,38,1,27,1,127,252,64,119
,169,169,119,3,192,119,169,169,0,0,1,0,0,0,0,4,128,5,128,0,68,0,0,1,20,2,4,43,1,34,38,53,17,7,6,35,34,39,38,61
,1,52,63,1,53,7,6,35,34,39,38,61,1,52,63,1,53,52,54,59,1,50,22,29,1,37,54,22,29,1,20,7,5,21,37,54,22,29,1,20
,7,5,17,54,0,53,52,54,59,1,50,22,4,128,189,254,188,191,160,14,18,215,3,6,10,9,13,23,233,215,3,6,10,9,13,23,233,18,14,160
,14,18,1,119,15,26,23,254,119,1,119,15,26,23,254,119,188,1,4,18,14,160,14,18,2,192,191,254,188,189,18,14,2,99,66,1,6,10,16,128
,23,8,71,93,66,1,6,10,16,128,23,8,71,250,14,18,18,14,181,116,5,20,16,128,23,8,121,93,116,5,20,16,128,23,8,121,254,25,13,1
,20,190,14,18,18,0,3,0,0,0,0,5,128,5,128,0,35,0,51,0,67,0,0,1,21,20,6,35,33,17,20,6,43,1,34,38,53,17,33,34
,38,61,1,52,54,51,33,17,52,54,59,1,50,22,21,17,33,50,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35
,33,34,38,53,17,52,54,51,33,50,22,4,128,18,14,254,160,18,14,64,14,18,254,160,14,18,18,14,1,96,18,14,64,14,18,1,96,14,18,128
,94,66,252,192,66,94,94,66,3,64,66,94,128,169,119,252,192,119,169,169,119,3,64,119,169,2,224,64,14,18,254,160,14,18,18,14,1,96,18,14
,64,14,18,1,96,14,18,18,14,254,160,18,254,50,3,64,66,94,94,66,252,192,66,94,94,3,130,252,192,119,169,169,119,3,64,119,169,169,0,0
,0,0,4,0,0,255,128,8,128,5,0,0,39,0,47,0,63,0,80,0,0,1,6,43,1,53,35,34,38,53,52,55,46,1,52,54,55,38,53,52
,54,59,1,53,51,50,23,33,30,1,23,30,2,20,14,1,7,14,1,7,55,22,20,7,23,54,52,39,1,33,6,7,34,6,15,1,1,14,1,43
,1,3,51,50,3,35,19,51,50,22,23,1,30,4,51,5,33,38,2,108,110,158,128,64,13,19,7,58,77,77,58,7,19,13,64,128,158,110,4,89
,42,129,16,89,122,45,45,122,89,16,129,42,6,53,53,81,68,68,251,85,3,247,217,239,57,112,27,28,254,224,26,89,45,96,93,29,157,157,29,93
,96,46,88,26,1,32,4,14,47,50,73,36,1,200,252,9,116,1,160,64,64,47,33,24,25,2,17,24,17,2,25,24,33,47,64,64,7,22,3,15
,51,44,36,44,51,15,3,22,7,252,36,112,36,30,48,148,48,254,214,38,42,48,24,24,254,224,26,38,1,208,1,224,1,208,38,26,254,224,4,13
,33,25,21,80,64,0,2,0,0,255,128,6,128,6,0,0,82,0,86,0,0,1,50,22,21,20,15,1,23,22,21,20,6,35,34,38,47,1,5,23
,22,21,20,6,35,34,38,47,1,7,6,35,34,38,53,52,54,63,1,3,7,6,35,34,38,53,52,54,63,1,39,38,53,52,54,51,50,22,31,1
,37,39,38,53,52,54,51,50,22,31,1,55,54,51,50,22,21,20,6,15,1,19,55,54,1,37,3,5,5,239,62,83,93,172,56,7,84,59,47,77
,15,55,254,202,55,8,84,60,47,76,15,55,153,29,21,61,81,55,44,156,105,156,26,22,60,82,55,44,157,53,8,84,60,47,76,15,54,1,54,54
,8,85,59,47,77,15,53,162,21,22,60,85,60,44,157,105,164,24,252,252,1,54,105,254,202,2,248,81,61,97,33,59,167,21,26,59,86,54,45,165
,106,164,24,23,59,86,54,45,163,53,9,80,61,47,76,15,53,1,57,54,8,81,60,47,76,15,53,159,24,23,60,85,54,45,160,105,160,24,23,59
,86,55,44,161,55,6,79,59,45,73,15,54,254,196,56,8,254,250,105,1,59,107,0,0,0,0,3,0,0,255,128,6,0,5,128,0,15,0,41,0
,73,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,1,17,6,7,14,1,7,6,35,57,1,34,39,46,1,39,46,1,39,17,20
,22,51,33,50,54,17,52,38,35,33,34,6,21,20,22,23,30,1,23,30,6,50,62,5,55,37,62,1,4,224,119,169,169,119,252,64,119,169,169,119
,3,224,31,33,34,197,53,98,66,66,98,47,190,47,12,42,10,56,40,3,64,40,56,55,41,252,192,40,56,61,37,47,181,39,3,28,14,28,19,24
,21,20,21,24,19,28,14,28,3,1,11,35,63,5,128,169,119,252,64,119,169,169,119,3,192,119,169,251,224,1,180,35,20,22,126,36,69,69,32,121
,32,8,38,8,254,76,40,56,56,2,101,41,58,56,40,37,79,25,32,114,26,2,19,9,17,9,10,5,5,10,9,17,9,19,2,174,23,79,0,0
,0,0,6,0,0,255,0,7,0,6,0,0,5,0,63,0,71,0,81,0,97,0,113,0,0,19,52,55,1,38,2,1,20,14,3,7,3,1,54,55
,62,1,38,15,1,38,39,38,14,1,30,1,31,1,19,3,1,54,55,62,1,38,15,1,34,38,35,54,36,51,50,4,23,35,34,6,21,20,30,6
,23,22,5,19,22,23,6,35,34,39,1,22,21,20,2,7,19,54,53,52,0,32,4,22,18,16,2,6,4,32,36,38,2,16,18,54,0,32,36,54
,18,16,2,38,36,32,4,6,2,16,18,22,127,67,1,111,196,238,5,8,5,15,8,27,4,76,254,234,46,42,19,14,19,19,205,75,127,12,17,6
,3,15,12,80,120,168,254,232,46,42,19,14,19,19,205,7,32,10,105,1,83,198,147,1,11,105,10,55,74,4,4,12,6,18,7,22,3,63,254,6
,237,1,4,126,129,112,105,3,123,95,208,175,235,59,252,162,1,108,1,76,240,142,142,240,254,180,254,148,254,180,240,142,142,240,1,85,1,90,1,61
,229,136,136,229,254,195,254,166,254,195,229,136,136,229,2,128,163,150,252,19,95,1,116,1,8,19,39,60,28,90,13,255,0,3,58,3,5,2,33,29
,1,10,1,9,1,12,18,19,14,1,8,254,184,254,8,3,64,3,5,2,33,29,1,10,1,160,187,106,96,81,55,12,24,19,27,15,30,12,36,5
,107,211,253,121,6,5,44,32,4,82,174,195,209,254,159,102,2,166,169,107,42,2,52,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1
,76,240,249,183,136,229,1,61,1,90,1,61,229,136,136,229,254,195,254,166,254,195,229,0,0,0,2,0,0,255,128,7,0,6,0,0,18,0,27,0
,0,1,17,5,38,36,38,53,52,54,36,55,21,6,4,21,20,4,23,17,1,19,37,55,38,39,53,4,23,4,62,254,240,228,254,140,214,201,1,93
,217,217,254,233,1,53,234,3,173,37,253,243,147,119,161,1,21,204,6,0,250,0,128,20,164,253,146,140,247,164,26,172,38,224,143,152,230,30,5,80
,254,63,254,122,114,83,70,29,172,33,124,0,0,0,3,0,0,255,0,7,128,6,0,0,12,0,38,0,48,0,0,9,1,21,35,20,6,35,33,34
,38,53,35,53,1,33,17,51,17,33,17,51,17,33,17,51,17,33,17,51,50,22,29,1,33,53,52,54,59,1,5,50,22,29,1,33,53,52,54,51
,3,192,3,192,128,41,28,250,10,28,41,128,1,0,1,0,128,1,0,128,1,0,128,1,0,59,28,41,249,128,41,28,59,6,59,28,41,248,128,41
,28,6,0,254,128,128,26,38,38,26,128,255,0,253,0,3,0,253,0,3,0,253,0,3,0,253,0,38,26,64,64,26,38,192,38,26,128,128,26,38
,0,0,2,0,0,255,128,9,0,5,128,0,13,0,54,0,0,1,19,22,6,4,32,36,38,55,19,5,22,50,55,0,20,7,1,6,34,39,37,14
,1,7,22,21,20,7,19,22,7,6,43,1,34,39,38,55,19,38,53,52,55,54,55,37,38,52,55,1,54,50,23,1,6,238,18,4,172,254,214,254
,164,254,214,172,4,18,2,62,22,52,22,4,80,22,251,160,4,12,4,253,116,43,56,6,63,58,58,2,10,9,15,192,15,9,10,2,58,58,65,11
,87,254,179,22,22,4,96,4,12,4,4,96,2,188,254,196,69,118,69,69,118,69,1,60,181,7,7,2,16,46,8,254,160,1,1,206,34,155,101,36
,73,69,38,254,79,14,11,11,11,11,14,1,177,38,69,73,38,207,123,104,8,46,8,1,96,1,1,254,160,0,1,0,109,255,128,5,147,6,0,0
,34,0,0,1,19,38,35,34,7,19,38,0,2,39,22,51,50,55,30,1,18,23,62,3,55,22,51,50,55,49,14,3,7,6,3,91,13,62,43,41
,64,13,40,254,255,176,93,58,50,44,67,63,141,193,42,37,145,90,120,47,54,53,56,58,28,64,35,78,10,146,2,67,253,61,11,11,2,195,69,1
,197,1,40,139,15,15,111,237,254,196,69,61,233,147,205,87,14,14,39,99,58,134,17,248,0,0,1,0,0,255,128,5,225,5,128,0,35,0,0,1
,33,22,21,20,2,4,35,34,36,38,2,16,18,54,36,51,32,23,7,38,35,34,14,1,16,30,1,51,50,62,3,55,33,3,0,2,213,12,182,254
,175,218,157,254,228,206,121,121,206,1,28,157,1,44,215,209,123,183,129,219,128,128,219,129,87,146,94,70,33,6,254,76,2,238,67,61,217,254,171,192
,121,206,1,28,1,58,1,28,206,121,201,201,119,130,223,254,248,223,130,48,72,92,82,37,0,0,5,0,0,255,0,7,0,6,0,0,16,0,25,0
,34,0,78,0,94,0,0,1,22,7,6,32,39,38,55,54,50,23,22,51,50,55,54,50,36,20,6,34,38,53,52,54,50,5,20,6,34,38,52,54
,50,22,55,52,38,34,7,38,39,19,23,20,22,50,54,52,38,35,34,7,39,38,7,3,6,7,38,35,34,6,21,20,22,23,6,21,20,4,51,50
,36,53,52,39,62,1,36,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,4,71,16,16,62,254,238,62,16,16,6,18,6,48,121,120,49,6
,18,254,211,52,74,53,53,74,1,191,53,74,52,52,74,53,251,70,100,36,130,181,63,200,52,74,53,53,37,54,26,221,19,6,69,180,129,35,52,50
,70,37,31,6,1,24,197,198,1,24,7,30,36,1,102,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,1,113,16,15,62,62
,15,16,6,6,49,49,6,212,74,52,52,37,38,52,90,37,52,52,74,53,52,82,49,70,36,90,6,1,27,45,37,52,53,74,53,50,49,5,21,254
,200,7,90,37,70,49,35,58,15,27,29,142,202,202,142,32,25,15,57,187,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,0
,0,0,5,0,0,255,128,6,0,5,128,0,15,0,25,0,35,0,81,0,97,0,0,1,22,7,6,34,39,38,55,54,50,23,22,50,55,54,50,37
,20,6,34,38,53,52,54,50,22,5,20,6,34,38,53,52,54,50,22,55,52,38,35,34,7,38,39,55,23,30,1,51,50,54,52,38,35,34,7,39
,38,7,3,6,7,38,35,34,6,21,20,22,23,6,21,20,22,51,50,54,53,52,39,62,1,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50
,22,3,171,13,13,53,236,53,13,13,5,16,5,42,206,42,5,16,254,254,46,62,46,45,64,45,1,82,46,62,46,45,64,45,215,60,43,42,31,113
,154,54,171,1,45,31,32,45,45,32,48,21,189,17,4,60,154,111,30,44,43,60,32,26,5,240,169,170,240,6,25,31,1,51,169,119,252,64,119,169
,169,119,3,192,119,169,1,151,13,13,53,53,13,13,6,6,42,42,6,150,31,46,46,31,32,45,45,32,31,46,46,31,32,45,45,71,42,60,31,78
,4,243,39,32,44,45,64,45,43,42,5,18,254,244,6,77,32,60,42,30,50,13,25,23,122,173,173,122,25,24,13,49,1,228,252,64,119,169,169,119
,3,192,119,169,169,0,3,0,0,255,128,6,0,5,128,0,30,0,48,0,60,0,0,1,55,53,52,38,34,6,21,17,20,6,34,38,61,1,35,21
,20,22,51,50,54,53,17,52,54,51,50,22,29,1,5,53,35,21,20,6,35,34,38,61,1,7,39,21,20,22,50,54,0,16,2,4,32,36,2,16
,18,36,32,4,3,98,90,116,160,116,28,38,27,151,115,82,81,115,27,20,19,27,1,137,150,27,20,19,27,90,60,116,162,115,1,81,206,254,159,254
,94,254,159,206,206,1,97,1,162,1,97,2,185,27,62,79,112,111,79,254,229,20,27,27,20,120,122,82,114,113,80,1,24,19,28,28,19,54,223,122
,126,20,27,28,19,123,26,28,123,80,114,114,1,173,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,2,0,0,255,163,7,128,5,93,0
,30,0,48,0,0,1,53,52,38,34,6,21,17,20,6,35,34,38,53,17,33,17,20,22,50,54,53,17,52,54,51,50,22,29,1,7,5,33,17,20
,6,35,34,38,53,17,23,55,17,20,22,50,54,53,4,38,60,84,60,252,177,178,251,1,72,60,84,60,253,175,176,252,195,1,143,1,72,251,178,177
,252,131,195,60,84,60,3,56,118,42,60,60,42,253,156,175,248,251,178,1,10,254,250,43,59,59,43,2,108,171,242,244,172,136,58,161,254,246,178,251
,249,176,1,12,61,58,254,242,42,59,59,42,0,0,2,0,0,255,128,6,0,5,128,0,13,0,29,0,0,37,17,33,17,33,34,6,21,17,33,17
,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,192,253,64,254,32,93,131,2,192,1,224,93,131,64,169,119,252,64,119,169
,169,119,3,192,119,169,160,1,224,2,192,131,93,254,32,253,64,131,4,29,252,64,119,169,169,119,3,192,119,169,169,0,0,0,8,0,0,0,26,8
,0,4,230,0,5,0,9,0,13,0,17,0,25,0,29,0,37,0,41,0,0,1,51,17,33,17,33,25,1,35,17,1,17,51,17,3,21,51,53,19
,33,17,33,53,33,53,33,37,17,35,17,1,33,17,33,53,33,53,33,37,17,35,17,1,72,204,253,236,1,72,123,1,153,205,205,205,82,2,21,253
,235,1,72,254,184,1,72,123,1,154,2,20,253,236,1,71,254,185,1,71,123,4,230,252,41,2,185,253,235,1,113,254,143,2,21,253,71,2,185,1
,30,204,204,254,226,252,82,163,82,164,1,113,254,143,2,21,252,82,163,82,164,1,113,254,143,0,5,0,0,255,128,6,0,5,128,0,9,0,19,0
,35,0,48,0,64,0,0,0,20,6,35,34,39,17,54,51,50,0,20,6,35,34,39,17,54,51,50,0,16,38,35,34,7,6,7,6,7,17,55,53
,22,51,50,2,16,38,35,34,7,35,17,55,53,22,51,50,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,22,76,53,43,27,28,42
,53,254,245,76,53,43,27,28,42,53,2,126,176,125,20,19,23,55,87,124,211,51,66,125,167,177,125,74,67,186,211,55,61,125,3,23,169,119,252,64
,119,169,169,119,3,192,119,169,2,68,128,90,15,1,21,17,1,81,128,91,15,1,21,17,253,49,1,12,190,3,78,58,95,6,253,132,41,206,19,2
,105,1,12,190,36,252,184,41,206,19,1,248,252,64,119,169,169,119,3,192,119,169,169,0,0,0,10,0,41,255,9,7,205,6,0,0,130,0,188,0
,202,0,206,0,220,0,227,0,231,0,233,0,237,0,239,0,0,1,54,30,3,23,30,2,23,14,2,7,46,5,35,15,1,22,23,30,7,31,1,22
,14,2,7,38,6,35,34,39,38,53,52,55,62,2,39,38,7,14,1,35,34,46,1,39,38,39,4,35,34,38,53,52,54,55,37,38,52,62,3,55
,62,1,51,50,22,23,54,51,50,22,21,20,6,15,2,6,22,51,50,54,53,52,46,2,53,52,55,39,54,53,52,39,54,51,50,30,5,23,55,14
,3,23,55,46,7,39,46,2,42,1,35,34,7,62,5,55,30,2,63,1,21,23,54,55,62,8,63,1,6,7,14,1,7,14,2,7,30,1,21,20
,3,62,1,51,50,30,3,23,6,35,34,39,1,55,23,7,1,22,21,20,14,3,7,39,62,2,51,1,7,39,62,1,51,50,19,51,23,7,1,53
,21,15,1,63,2,4,198,75,137,99,103,65,43,33,91,60,69,48,121,156,36,44,60,27,39,46,99,73,10,6,4,9,6,44,7,31,5,18,3,6
,1,1,1,7,8,17,3,35,132,32,39,33,2,3,2,59,55,1,24,19,36,151,61,25,101,112,28,6,21,254,30,31,16,24,17,14,1,230,8,11
,21,19,27,5,4,23,6,15,26,7,163,9,17,25,17,15,182,1,1,165,22,47,144,47,55,47,10,68,43,5,82,62,44,55,42,20,21,10,24,12
,50,3,40,45,35,1,61,5,17,7,14,6,10,7,9,4,7,15,26,18,47,14,126,91,16,40,68,63,29,71,8,12,32,32,22,12,22,247,124,28
,44,41,25,34,14,35,11,43,8,7,2,41,79,252,180,14,56,44,17,3,43,247,39,185,54,9,27,29,23,25,2,121,123,61,64,254,249,48,109,73
,1,161,3,35,57,51,56,4,7,21,79,65,28,254,69,96,6,10,45,12,19,211,31,10,41,3,121,1,2,1,2,1,2,95,3,47,70,119,97,72
,56,106,55,61,30,55,63,16,37,156,173,188,149,97,2,4,5,9,5,37,7,29,12,30,25,37,22,33,26,63,41,76,15,1,21,10,16,31,74,22
,13,57,61,21,2,26,53,93,126,153,20,4,26,112,22,16,15,23,3,106,14,22,13,10,4,5,2,1,13,32,17,37,22,17,15,22,3,40,16,26
,183,160,49,36,34,3,20,24,16,18,19,44,73,26,32,16,3,14,13,36,31,64,28,25,40,40,2,11,15,214,5,21,8,15,6,10,5,5,2,3
,4,1,43,30,33,26,46,27,83,9,9,45,28,1,1,76,1,95,95,21,36,39,23,45,17,57,19,76,15,9,53,86,165,198,43,3,9,10,9,19
,54,7,11,252,84,26,43,31,54,46,56,5,45,11,3,36,12,177,48,254,208,15,1,7,15,11,8,7,1,43,2,13,7,2,116,20,17,1,12,253
,124,83,12,6,49,1,1,5,2,3,4,1,0,0,4,0,0,255,18,6,0,5,238,0,23,0,54,0,93,0,131,0,0,5,38,7,14,1,35,34
,39,38,35,34,7,14,1,23,30,1,54,55,62,2,55,54,39,38,39,38,35,34,7,6,7,6,23,22,54,55,62,7,51,50,30,1,23,30,1,55
,54,1,52,46,2,35,34,14,1,35,6,46,3,7,14,1,7,6,23,30,1,51,50,62,2,23,30,3,23,22,54,55,62,1,55,20,2,6,4,32
,36,38,2,53,52,62,5,55,62,3,55,62,1,55,22,23,30,1,23,30,6,4,143,5,19,30,114,74,129,64,5,8,11,15,7,1,8,34,107,98
,50,41,87,43,7,12,44,19,20,23,53,47,24,29,49,26,14,9,17,23,3,15,6,14,9,16,14,19,11,27,35,11,8,10,5,10,23,1,90,10
,23,45,30,33,128,130,36,27,73,79,88,112,55,115,164,2,2,76,29,67,70,57,150,118,122,32,26,78,65,71,20,35,47,32,28,29,53,124,208,254
,235,254,208,254,230,213,128,39,59,82,75,82,47,19,14,74,35,61,30,36,44,8,129,57,44,172,43,21,36,85,67,83,55,39,50,19,14,22,34,49
,4,12,6,20,10,32,28,3,3,4,33,27,7,12,132,47,14,15,10,12,44,24,20,8,7,20,2,13,4,10,4,6,3,2,15,14,15,17,6,4
,12,1,47,22,45,45,28,83,84,1,40,58,58,40,1,1,155,101,112,52,20,17,65,77,64,1,1,61,73,62,1,3,34,46,41,120,206,164,254,231
,191,108,115,199,1,28,160,89,167,124,113,75,64,29,10,8,37,20,40,24,28,89,81,155,38,29,78,27,13,24,69,72,118,126,171,0,0,0,4,0
,0,255,128,6,0,5,128,0,30,0,60,0,90,0,120,0,0,1,15,2,14,1,39,14,1,35,34,38,53,52,54,55,38,54,63,1,23,7,6,20
,23,22,50,63,3,3,23,7,39,38,34,6,20,31,3,7,47,2,46,1,55,46,1,53,52,54,51,50,22,23,54,22,1,20,6,35,34,38,39,6
,38,47,1,55,23,22,50,54,52,47,3,55,31,2,30,1,7,30,1,3,20,6,7,22,6,15,1,39,55,54,52,38,34,15,3,39,63,2,62,1
,23,62,1,51,50,22,4,46,160,151,30,65,173,85,16,112,73,85,120,89,69,22,46,65,12,151,11,37,37,37,104,37,30,151,161,190,12,152,12,37
,104,74,37,29,152,160,151,161,151,30,68,44,27,70,90,120,85,76,115,12,84,171,3,103,120,85,74,114,14,86,187,68,11,151,12,37,104,74,37,30
,152,160,152,160,152,29,64,47,21,76,101,2,102,76,26,46,67,12,151,12,37,74,104,37,30,152,160,152,161,152,29,67,184,86,11,115,78,85,120,1
,207,160,152,30,64,46,21,70,90,121,85,72,112,16,86,174,65,12,152,11,37,104,38,37,37,30,152,160,2,18,12,152,12,37,74,105,37,29,152,160
,152,160,152,30,67,185,87,15,112,73,85,121,98,74,20,47,251,149,85,121,94,71,28,44,68,12,152,12,37,74,104,37,30,152,160,152,160,152,30,64
,173,85,11,115,4,23,77,116,11,85,183,67,12,152,12,37,104,74,37,30,152,160,152,160,152,30,67,45,26,75,102,121,0,0,8,0,0,255,0,6
,0,6,0,0,69,0,88,0,91,0,95,0,103,0,106,0,137,0,163,0,0,1,6,38,47,1,38,39,46,1,39,6,7,6,7,14,1,39,54,55
,62,1,55,62,1,55,38,7,14,2,7,6,20,7,6,7,6,39,38,39,38,39,62,1,55,54,55,54,51,62,1,55,62,2,23,22,7,20,14,1
,7,6,7,23,30,1,23,30,1,3,22,7,6,7,6,35,38,39,38,39,55,30,1,54,55,54,55,50,5,23,39,1,37,17,5,1,23,3,39,3
,23,55,23,1,5,17,1,23,7,39,6,7,6,43,1,34,38,39,38,53,52,54,51,50,30,1,23,30,1,51,50,54,55,62,2,55,1,17,37,6
,4,35,34,39,52,39,17,54,55,54,55,54,55,17,5,50,44,1,51,50,21,17,2,142,1,23,20,20,44,43,7,68,4,67,67,81,24,4,31,3
,6,76,21,129,14,17,68,2,8,102,8,39,30,2,2,1,5,26,23,24,18,10,4,1,6,37,11,58,47,100,2,10,66,11,9,25,4,4,2,3
,25,28,3,25,52,64,12,125,5,4,13,207,3,7,12,38,30,30,26,23,14,4,1,3,33,20,48,36,19,17,2,190,63,139,251,248,2,182,253,74
,4,217,102,181,100,216,102,45,211,254,46,2,61,254,250,158,54,40,130,146,58,33,84,79,241,63,8,10,8,4,28,33,4,73,173,71,95,144,85,15
,31,37,10,1,149,252,250,14,253,46,7,13,5,1,3,1,5,15,107,42,2,46,2,1,61,1,59,4,20,1,202,3,7,8,9,20,29,5,53,2
,103,78,95,15,2,4,2,4,88,24,182,27,30,137,9,1,34,2,11,8,1,2,17,1,10,5,7,7,4,17,6,17,2,6,3,16,16,35,2,35
,4,3,10,1,1,12,21,2,50,57,5,50,81,28,6,52,2,1,49,1,224,15,13,23,15,12,3,23,15,26,3,3,4,4,14,12,2,146,227,42
,253,153,232,4,8,233,253,54,31,2,145,31,253,232,31,110,65,3,59,184,1,124,250,17,13,160,66,83,25,12,78,46,7,9,8,11,15,18,2,37
,49,29,36,7,17,21,6,4,128,251,201,246,6,243,13,1,2,4,54,9,1,6,5,36,14,1,128,198,110,107,21,254,94,0,12,0,0,255,0,7
,0,6,0,0,15,0,39,0,55,0,71,0,87,0,103,0,119,0,135,0,151,0,167,0,183,0,192,0,0,1,50,22,21,17,20,6,43,1,34,38
,53,17,52,54,51,5,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,31,1,30,1,21,1,53,52,38,43,1,34,6,29,1,20
,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,53,52
,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20
,22,59,1,50,54,1,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52
,38,43,1,34,6,29,1,20,22,59,1,50,54,19,17,35,34,38,61,1,33,17,1,32,66,94,94,66,128,66,94,94,66,5,224,58,70,150,106,252
,160,66,94,56,40,2,160,40,96,28,152,28,40,253,32,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18
,18,14,128,14,18,1,0,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,1,0,18
,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,18,14,128,14,18,96,160,40,56,253,128,4,128,94,66,251
,192,66,94,94,66,4,64,66,94,163,34,118,69,253,0,106,150,94,66,6,0,40,56,40,28,152,28,96,40,251,128,128,14,18,18,14,128,14,18,18
,1,14,128,14,18,18,14,128,14,18,18,1,14,128,14,18,18,14,128,14,18,18,254,14,128,14,18,18,14,128,14,18,18,1,14,128,14,18,18,14
,128,14,18,18,1,14,128,14,18,18,14,128,14,18,18,254,14,128,14,18,18,14,128,14,18,18,1,14,128,14,18,18,14,128,14,18,18,1,14,128
,14,18,18,14,128,14,18,18,1,142,1,0,56,40,160,254,0,0,20,0,0,255,0,5,128,6,0,0,15,0,31,0,47,0,63,0,79,0,95,0
,111,0,127,0,143,0,159,0,175,0,191,0,207,0,223,0,239,0,255,1,15,1,31,1,47,1,63,0,0,1,50,22,21,17,20,6,35,33,34,38
,53,17,52,54,51,1,21,20,22,59,1,50,54,61,1,52,38,43,1,34,6,17,21,20,22,59,1,50,54,61,1,52,38,43,1,34,6,17,21,20
,22,59,1,50,54,61,1,52,38,43,1,34,6,17,21,20,22,59,1,50,54,61,1,52,38,43,1,34,6,3,53,52,38,43,1,34,6,29,1,20
,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52
,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,53,52,38,35,33,34,6,29,1,20
,22,51,33,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52
,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,1,53,52,38,43,1,34,6,29,1,20
,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52
,38,43,1,34,6,29,1,20,22,59,1,50,54,17,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,5,64,26,38,38,26,251,0,26,38,38
,26,1,192,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14
,64,14,18,128,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18
,14,64,14,18,18,14,64,14,18,18,14,64,14,18,2,0,18,14,254,192,14,18,18,14,1,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14
,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,1,0,18,14,64,14,18,18,14,64,14,18
,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18
,6,0,38,26,249,128,26,38,38,26,6,128,26,38,254,224,64,14,18,18,14,64,14,18,18,254,242,64,14,18,18,14,64,14,18,18,254,242,64,14
,18,18,14,64,14,18,18,254,242,64,14,18,18,14,64,14,18,18,254,178,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18
,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,251,14,192,14,18,18,14
,192,14,18,18,2,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64
,14,18,18,14,64,14,18,18,252,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18
,18,1,14,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,0,0,0,2,0,64,255,16,4,192,5,96,0,31,0,39,0
,0,9,1,17,20,6,34,38,53,17,35,17,20,6,34,38,53,17,1,38,52,55,54,50,31,1,33,55,54,50,23,22,20,36,20,6,34,38,52,54
,50,4,164,254,220,66,92,66,64,66,92,66,254,220,28,28,29,79,28,228,1,112,228,28,80,28,28,254,160,131,186,131,131,186,3,220,254,220,252,200
,46,66,66,46,1,128,254,128,46,66,66,46,3,56,1,36,28,80,28,28,28,228,228,28,28,29,79,229,186,131,131,186,131,0,5,0,0,255,128,6
,128,5,128,0,15,0,29,0,51,0,67,0,81,0,0,1,20,14,1,35,34,46,1,53,52,62,1,51,50,30,1,1,20,6,35,34,46,1,53,52
,54,51,50,30,1,5,50,4,18,21,20,14,2,35,34,38,35,34,6,35,34,53,52,62,2,37,34,46,1,53,52,62,1,51,50,30,1,21,20,14
,1,37,50,22,21,20,14,1,35,34,38,53,52,62,1,3,12,38,88,61,76,124,60,38,88,61,77,123,60,254,170,84,77,76,131,70,84,77,76,131
,70,1,138,118,1,18,184,34,63,66,43,68,239,63,66,253,74,183,112,167,208,1,72,61,88,38,60,123,77,61,88,38,60,124,1,100,77,84,70,131
,76,77,84,70,131,4,40,60,107,78,115,156,73,60,107,78,115,155,253,211,80,118,111,156,74,80,119,111,157,47,195,254,233,115,46,61,29,11,90,89
,146,86,211,174,118,211,78,107,60,74,155,115,78,107,60,73,156,115,104,119,80,74,156,111,118,80,74,157,111,0,1,0,64,255,0,2,192,6,0,0
,21,0,0,1,20,6,7,19,22,6,43,1,34,38,55,19,46,1,53,52,62,1,50,30,1,2,192,114,95,45,2,36,26,192,26,36,2,45,95,114
,85,150,170,150,85,3,240,145,197,37,252,203,26,38,38,26,3,53,37,197,145,128,243,157,157,243,0,0,0,0,3,0,0,255,0,6,128,5,128,0
,3,0,7,0,31,0,0,5,1,17,5,39,45,1,13,1,17,20,6,7,1,6,34,39,1,46,1,53,17,52,54,55,1,54,50,23,1,30,1,3
,128,2,128,253,128,64,2,186,253,70,253,70,5,250,36,31,253,64,28,66,28,253,64,31,36,46,38,2,192,22,44,22,2,192,38,46,93,1,93,2
,124,233,113,254,254,254,2,253,0,35,60,17,254,128,16,16,1,128,17,60,35,3,0,40,66,14,1,0,8,8,255,0,14,66,0,0,0,0,7,0
,0,255,0,8,128,6,0,0,3,0,7,0,11,0,15,0,19,0,23,0,66,0,0,5,37,17,5,39,45,1,5,1,37,17,5,39,45,1,5,39
,37,17,5,39,45,1,5,1,17,20,6,7,5,6,34,39,37,38,39,6,7,5,6,34,39,37,46,1,53,17,52,54,55,37,17,52,54,55,37,54
,50,23,5,30,1,21,17,5,30,1,2,128,1,128,254,128,64,1,148,254,108,254,108,5,212,1,128,254,128,64,1,148,254,108,254,108,44,1,128,254
,128,64,1,185,254,71,254,71,5,249,38,33,254,64,25,64,25,254,64,4,3,2,5,254,64,25,64,25,254,64,33,38,43,35,1,178,43,35,1,192
,23,54,23,1,192,35,43,1,178,36,42,96,192,1,58,164,112,173,173,173,253,141,192,1,58,164,112,173,173,173,120,165,1,10,164,112,189,189,189,253
,61,254,96,36,62,16,224,14,14,224,2,2,2,2,224,14,14,224,16,62,36,1,160,38,64,16,186,1,144,38,64,16,192,10,10,192,16,64,38,254
,112,186,16,64,0,0,6,0,0,255,254,8,0,5,2,0,3,0,9,0,31,0,38,0,46,0,65,0,0,1,33,21,33,3,34,6,7,33,38,3
,50,54,55,51,2,33,34,2,53,52,0,51,50,30,1,21,20,7,33,20,22,37,33,50,53,52,35,33,53,33,50,54,53,52,35,33,37,33,50,30
,2,21,20,7,30,1,21,20,14,3,35,33,7,56,254,1,1,255,252,90,112,6,1,152,18,166,63,118,17,221,100,254,185,214,253,1,5,206,138,205
,101,2,253,110,115,251,54,1,40,205,199,254,210,1,25,78,91,190,254,252,254,235,2,82,87,136,117,63,172,114,116,49,83,114,128,70,253,157,4,173
,124,254,210,105,90,195,253,183,64,55,254,205,1,8,215,208,1,19,136,222,137,17,30,111,121,50,167,180,190,73,77,144,215,28,67,126,91,181,82,32
,166,121,75,123,84,58,26,0,0,0,7,0,0,255,128,6,0,5,128,0,15,0,30,0,37,0,44,0,65,0,71,0,75,0,0,1,50,22,21,17
,20,6,35,33,34,38,53,17,52,54,51,19,33,17,33,50,54,53,52,39,54,53,52,46,2,3,35,53,51,50,21,20,3,35,53,51,50,21,20,5
,34,38,53,33,54,53,52,38,35,34,6,21,20,22,51,50,55,35,14,1,3,50,23,35,62,1,3,33,21,33,4,224,119,169,169,119,252,64,119,169
,169,119,211,254,141,1,126,117,160,143,107,39,74,84,77,176,163,119,97,185,189,124,2,10,68,72,1,155,1,149,129,128,164,158,134,205,62,138,11,73
,49,113,11,254,4,70,106,1,63,254,193,5,128,169,119,252,64,119,169,169,119,3,192,119,169,254,145,252,237,115,113,158,42,52,112,57,79,42,17,254
,194,184,90,94,254,177,217,113,104,32,76,69,10,20,132,177,172,130,135,164,191,34,40,1,110,122,56,66,1,10,77,0,0,0,4,0,0,255,128,7
,0,5,128,0,7,0,27,0,39,0,63,0,0,0,20,6,34,38,52,54,50,0,52,38,35,34,7,23,30,1,7,14,1,39,46,1,39,30,1,51
,50,1,52,38,35,34,6,21,20,22,51,50,54,55,20,0,35,1,14,1,35,34,38,47,1,17,5,54,51,50,23,1,54,0,51,50,0,6,46,143
,202,143,143,202,253,141,146,104,27,27,104,77,65,31,31,152,76,21,82,20,32,118,71,104,3,208,179,126,127,179,179,127,126,179,150,254,245,188,254,75
,12,194,132,121,186,25,230,1,133,79,94,13,22,1,28,2,1,11,187,188,1,11,4,31,202,143,143,202,143,251,190,208,146,6,42,31,151,76,77,64
,31,8,33,8,60,73,3,223,126,179,179,126,127,178,178,127,189,254,246,254,193,129,178,152,116,92,1,173,157,48,2,1,151,187,1,8,254,245,0,0
,0,0,4,0,0,255,128,6,0,5,128,0,8,0,27,0,67,0,77,0,0,0,52,38,34,6,21,20,22,50,0,20,6,35,34,38,39,22,23,22
,54,55,54,38,47,1,54,51,50,1,17,20,6,35,33,34,38,61,1,23,30,1,51,50,54,55,37,50,54,53,52,38,35,34,6,7,3,38,35,34
,7,37,17,52,54,51,33,50,22,3,20,6,34,38,52,54,51,50,22,4,218,114,160,113,113,160,254,16,116,82,56,94,25,52,46,60,120,25,24,51
,61,82,22,20,82,3,252,169,119,252,64,119,169,172,20,147,95,104,154,10,1,89,150,211,211,150,148,210,2,225,9,19,75,62,254,215,169,119,3,192
,119,169,247,142,200,141,141,100,101,141,3,41,160,113,114,79,80,113,254,200,166,115,58,48,20,20,24,51,61,60,120,24,33,5,2,109,252,64,119,169
,169,119,153,69,92,120,140,103,252,211,149,150,211,209,148,254,190,1,37,119,1,212,119,169,169,254,160,100,141,141,200,142,141,0,6,0,16,255,86,6
,239,5,255,0,13,0,30,0,45,0,60,0,75,0,92,0,0,1,3,7,37,46,1,39,46,1,62,2,55,22,27,1,39,14,3,15,1,3,46,1
,63,1,54,55,39,1,3,14,1,15,1,6,7,23,3,19,23,22,54,55,1,6,3,37,39,19,62,1,23,30,5,1,19,22,6,7,14,5,7,38
,3,37,39,55,3,37,55,46,3,47,1,5,54,22,31,1,22,3,68,15,2,254,92,36,62,16,11,7,15,9,34,2,78,44,180,147,63,97,48,31
,3,4,190,17,2,7,8,35,79,140,6,128,188,12,49,19,18,71,148,8,230,211,7,170,226,57,253,39,47,218,254,195,19,225,20,80,40,24,49,35
,48,24,48,2,151,212,18,11,22,13,40,36,61,33,70,11,34,231,1,57,124,142,220,254,93,151,34,82,69,60,17,17,1,149,31,54,12,11,39,1
,111,254,144,22,29,3,57,37,27,56,74,36,92,7,12,2,58,254,133,92,72,145,105,84,21,21,1,101,26,60,17,18,63,125,86,253,234,254,153,29
,35,3,4,7,5,164,1,111,1,106,173,16,22,22,3,178,63,254,140,187,12,1,100,31,28,4,2,20,22,44,25,54,254,197,254,149,37,78,35,20
,34,22,22,10,18,3,72,1,108,195,237,83,254,139,20,86,89,154,93,67,13,13,1,3,27,15,15,61,0,0,4,0,0,255,64,8,0,5,128,0
,7,0,17,0,25,0,67,0,0,0,52,38,34,6,20,22,50,19,33,3,46,1,35,33,34,6,7,0,52,38,34,6,20,22,50,19,17,20,6,43
,1,21,20,6,34,38,61,1,33,21,20,6,34,38,61,1,35,34,38,53,17,52,54,59,1,19,62,1,51,33,50,22,23,19,51,50,22,1,224,94
,132,94,94,132,130,3,248,89,2,24,9,253,0,9,24,2,5,3,94,132,94,94,132,254,18,14,96,112,160,112,252,0,112,160,112,96,14,18,131,93
,28,105,23,162,98,3,0,98,162,23,105,28,93,131,1,126,132,94,94,132,94,1,224,1,101,8,19,19,8,253,25,132,94,94,132,94,1,0,254,128
,14,18,128,80,112,112,80,128,128,80,112,112,80,128,18,14,1,128,93,131,1,163,94,127,127,94,254,93,131,0,4,0,0,255,0,8,0,6,0,0
,51,0,59,0,69,0,77,0,0,1,50,22,21,17,20,6,43,1,21,20,6,34,38,61,1,33,21,20,6,34,38,61,1,35,34,38,53,17,52,54
,59,1,19,62,1,59,1,53,52,54,51,33,50,22,29,1,51,50,22,23,19,0,50,54,52,38,34,6,20,1,33,3,46,1,35,33,34,6,7,0
,50,54,52,38,34,6,20,7,32,93,131,18,14,96,112,160,112,252,0,112,160,112,96,14,18,131,93,28,105,23,162,98,128,18,14,1,192,14,18,128
,98,162,23,105,249,250,132,94,94,132,94,1,100,3,248,89,2,24,9,253,0,9,24,2,4,33,132,94,94,132,94,2,128,131,93,254,128,14,18,64
,80,112,112,80,64,64,80,112,112,80,64,18,14,1,128,93,131,1,163,94,127,224,14,18,18,14,224,127,94,254,93,254,32,94,132,94,94,132,1,130
,1,101,8,19,19,8,252,187,94,132,94,94,132,0,1,0,32,255,0,5,224,6,0,0,51,0,0,36,20,6,35,33,30,1,21,20,6,35,33,34
,38,53,52,54,55,33,34,38,52,55,1,35,34,38,52,55,1,35,34,38,52,55,1,54,50,23,1,22,20,6,43,1,1,22,20,6,43,1,1,5
,224,38,26,254,50,1,10,36,25,254,192,25,36,10,1,254,50,26,38,19,1,146,229,26,38,19,1,146,197,26,38,19,1,128,19,52,19,1,128,19
,38,26,197,1,146,19,38,26,229,1,146,90,52,38,17,141,38,25,35,35,25,38,141,17,38,52,19,1,147,38,52,19,1,147,38,52,19,1,128,19
,19,254,128,19,52,38,254,109,19,52,38,254,109,0,4,0,0,255,128,6,0,5,128,0,21,0,43,0,68,0,80,0,0,1,52,39,38,35,34,7
,6,21,20,22,51,50,55,54,51,50,23,22,51,50,54,55,52,39,38,33,34,7,6,21,20,22,51,50,55,54,51,32,23,22,51,50,54,19,52,39
,38,36,35,34,7,14,1,21,20,22,51,50,55,54,51,50,4,23,22,51,50,62,1,16,2,4,32,36,2,16,18,36,32,4,4,103,30,193,254,133
,154,42,27,22,5,32,132,111,226,171,19,14,19,28,96,35,237,254,201,153,150,48,35,25,7,30,122,129,1,23,209,24,14,25,35,108,40,126,254,178
,176,204,160,23,31,41,31,11,29,133,174,159,1,45,103,21,19,29,43,205,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,70,32,19,115
,34,9,43,20,29,8,27,103,11,27,236,40,21,141,42,13,51,25,35,8,33,124,13,35,1,17,47,23,73,75,47,7,37,30,31,42,8,37,68,61
,12,41,91,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,1,0,0,255,128,4,0,6,0,0,19,0,0,9,1,23,33,17,33,7,3,7
,33,17,1,39,33,17,33,55,19,55,33,4,0,254,209,24,1,23,254,5,44,142,30,254,211,1,47,24,254,233,1,251,44,142,30,1,45,4,209,253
,186,31,254,97,30,254,239,30,1,47,2,71,30,1,159,30,1,17,30,0,0,0,17,0,0,0,140,9,0,4,116,0,14,0,37,0,47,0,59,0
,60,0,72,0,84,0,98,0,99,0,113,0,127,0,141,0,144,0,158,0,172,0,192,0,212,0,0,37,55,3,46,1,35,34,6,21,3,23,30,1
,51,50,37,55,3,52,39,38,34,7,6,21,7,3,20,23,21,20,23,22,51,50,55,54,53,1,23,7,6,34,47,1,55,54,50,55,23,7,6,35
,34,53,39,55,52,51,50,1,3,23,7,20,35,34,47,1,55,54,51,50,31,1,7,6,35,34,53,39,55,52,51,50,31,1,7,6,35,34,38,53
,39,55,52,54,51,50,9,1,19,7,20,6,35,34,47,1,19,54,51,50,22,55,19,7,20,6,35,34,47,1,19,54,51,50,22,55,19,7,6,35
,34,47,1,19,52,54,51,50,22,1,57,1,3,19,7,20,6,34,38,47,1,19,52,54,50,22,23,19,7,20,6,34,38,47,1,19,62,1,50,22
,19,7,49,20,6,34,38,47,2,19,53,54,55,54,51,50,23,22,23,1,20,6,35,33,46,1,53,17,52,55,54,51,50,0,23,54,51,50,22,3
,16,16,16,1,13,10,9,14,14,14,1,13,9,22,1,42,11,12,13,8,16,8,13,1,10,11,6,9,14,11,9,9,251,236,20,20,2,14,2,17
,17,2,14,88,26,26,2,8,9,23,23,9,8,1,26,188,25,25,11,10,2,21,21,2,10,11,94,23,23,2,12,13,21,21,13,12,96,21,21,2
,14,6,9,20,20,9,6,14,1,129,254,223,21,21,10,7,16,2,18,18,2,16,7,10,94,19,19,11,8,18,2,16,16,2,18,8,11,98,18,18
,2,20,19,2,16,16,13,8,9,12,1,137,198,15,15,15,20,14,1,14,14,15,20,15,99,14,14,16,22,16,1,12,12,1,16,22,15,213,14,18
,26,18,1,6,6,12,2,10,9,11,8,7,14,2,4,102,166,117,252,238,13,18,28,85,96,195,1,30,17,53,57,117,166,164,241,2,11,10,14,14
,10,253,245,241,10,13,52,211,2,74,16,8,5,5,8,16,6,253,189,1,235,1,10,7,11,9,7,13,1,108,128,126,9,9,126,128,9,70,207,203
,9,10,202,207,9,254,50,1,235,245,237,11,11,237,245,12,5,252,244,13,13,244,252,13,31,234,246,16,9,7,246,234,6,9,254,22,2,109,254,132
,246,7,11,18,246,1,124,18,11,79,254,44,244,8,11,19,244,1,212,19,11,32,254,6,242,21,21,242,1,250,9,13,13,253,17,2,234,254,2,239
,10,15,14,11,239,1,254,11,14,14,30,254,20,236,11,16,16,11,236,1,236,12,16,16,254,8,231,13,18,18,13,114,117,2,124,3,15,9,7,5
,8,18,253,148,117,165,2,18,13,3,131,23,10,34,254,249,192,22,166,0,0,0,4,0,0,255,0,6,0,6,0,0,13,0,27,0,41,0,57,0
,0,0,32,36,55,21,20,6,4,32,36,38,61,1,22,0,32,36,55,21,20,6,4,32,36,38,61,1,22,0,32,36,55,21,20,6,4,32,36,38
,61,1,22,0,32,4,22,29,1,20,6,4,32,36,38,61,1,52,54,2,19,1,218,1,156,119,206,254,158,254,96,254,158,206,119,1,156,1,218,1
,156,119,206,254,158,254,96,254,158,206,119,1,156,1,218,1,156,119,206,254,158,254,96,254,158,206,119,1,185,1,160,1,98,206,206,254,158,254,96,254
,158,206,206,3,0,86,84,170,69,118,69,69,118,69,170,84,252,170,86,84,170,69,118,69,69,118,69,170,84,1,42,86,84,170,69,118,69,69,118,69
,170,84,4,42,69,118,69,128,69,118,69,69,118,69,128,69,118,0,8,0,0,255,0,6,0,6,0,0,19,0,26,0,35,0,94,0,99,0,116,0
,127,0,135,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33
,17,1,22,23,54,51,50,23,22,7,20,6,7,21,6,35,34,38,39,6,7,2,35,34,47,1,38,39,38,55,62,1,55,54,23,22,21,54,55,54
,55,46,1,55,54,59,2,50,23,22,7,6,7,22,29,1,6,7,22,1,54,55,14,1,1,6,23,54,55,52,55,54,55,38,53,38,53,38,39,20
,7,3,54,55,46,1,39,38,39,6,7,6,5,38,35,22,51,50,55,52,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1,120
,10,12,254,199,12,1,99,254,96,40,56,253,0,2,254,33,51,59,58,147,30,16,14,2,1,6,65,48,134,63,221,171,153,89,15,13,24,1,5,10
,4,9,94,85,14,9,2,52,55,68,36,24,13,13,11,31,21,1,23,12,18,9,2,2,1,2,12,55,254,27,52,85,51,73,1,129,15,13,1,6
,7,1,3,1,1,1,12,1,124,135,149,2,22,5,76,51,27,56,30,2,119,24,116,76,48,14,4,4,132,28,96,40,251,128,40,56,56,40,6,64
,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,2,81,26,30,7,49,22,30,1,2,1,1,38,40,33,24,59,254
,250,7,12,1,4,10,26,40,103,45,9,15,2,2,85,112,136,126,82,155,50,40,15,21,47,6,2,3,5,30,123,69,164,254,27,24,134,40,88,3
,122,42,90,7,37,3,40,4,4,1,1,2,1,22,14,1,1,253,105,54,27,1,17,5,67,109,86,111,56,11,24,28,1,1,0,0,0,0,4,0
,0,255,0,6,0,6,0,0,19,0,26,0,35,0,84,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33
,38,39,1,38,1,17,33,34,38,53,17,33,17,19,21,51,19,51,19,54,55,54,53,51,23,30,1,23,19,51,19,51,53,33,21,51,3,6,15,1
,35,52,46,1,53,46,1,39,3,35,3,14,1,15,1,35,39,38,39,3,51,53,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132
,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,105,70,164,159,128,7,3,2,4,3,1,5,3,128,159,164,70,254,212,90,99,5,2,2,4
,1,2,1,6,2,144,114,144,2,5,1,4,4,2,2,5,99,90,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12
,1,57,12,250,18,4,0,56,40,1,160,250,0,3,128,107,253,107,1,229,20,26,16,8,24,3,34,9,254,27,2,149,107,107,254,74,20,26,21,3
,7,9,2,5,32,9,2,33,253,223,9,31,6,21,21,26,20,1,182,107,0,0,4,0,0,255,0,6,0,6,0,0,19,0,26,0,35,0,83,0
,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,37,21,33
,53,35,55,62,2,59,1,22,23,30,2,31,1,35,21,33,53,35,3,19,51,53,33,21,51,7,14,1,15,1,35,38,39,38,47,1,51,53,33,21
,51,19,3,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,1,45,1,25
,75,103,5,10,5,1,2,1,4,2,5,7,3,107,76,1,35,68,192,195,67,254,233,74,103,4,12,3,2,2,1,4,6,11,106,76,254,222,68,189
,194,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,234,106,106,161
,7,19,8,4,6,4,7,9,4,161,106,106,1,17,1,26,107,107,159,7,19,4,3,4,6,11,12,159,107,107,254,240,254,229,0,0,0,0,5,0
,0,255,0,6,0,6,0,0,19,0,26,0,35,0,56,0,67,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7
,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,37,21,33,53,35,53,51,50,55,62,1,53,52,38,39,38,35,33,21,51,17,1,35,17,51
,50,23,22,21,20,7,6,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0
,1,32,1,71,93,137,76,42,67,79,74,63,48,82,254,144,92,1,5,119,120,52,31,56,62,31,4,132,28,96,40,251,128,40,56,56,40,6,64,40
,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,234,106,106,167,15,23,128,82,81,120,27,19,107,253,213,1,24,1,12
,18,33,82,89,31,15,0,0,0,0,5,0,0,255,0,6,0,6,0,0,19,0,26,0,35,0,42,0,50,0,0,1,30,1,21,17,20,6,35,33
,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,1,17,33,53,55,23,1,4,34,38,52,54,50
,22,20,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,4,128,252,0,192
,128,1,128,254,80,160,112,112,160,112,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56
,40,1,160,250,0,1,192,254,192,192,192,128,1,128,128,112,160,112,112,160,0,0,9,0,0,255,0,6,0,6,0,0,3,0,7,0,11,0,15,0
,35,0,42,0,55,0,74,0,82,0,0,1,53,35,21,5,53,35,29,1,53,35,21,5,53,35,21,1,30,1,21,17,20,6,35,33,34,38,53,17
,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,35,21,35,53,33,17,1,19,22,21,20,6,34,38,53,52,55,54,19
,53,51,21,51,50,22,2,50,54,52,38,34,6,20,2,128,128,1,0,128,128,1,0,128,3,60,28,40,56,40,250,192,40,56,56,40,3,128,40,96
,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,128,128,254,0,2,141,107,8,145,222,145,8,21,99,128,79,22,34,188,106,75,75,106,75,4
,128,128,128,128,128,128,128,128,128,128,128,128,1,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4
,0,56,40,1,160,128,128,250,0,2,209,254,163,27,25,83,109,109,83,25,27,63,1,77,128,128,26,254,26,38,52,38,38,52,0,0,0,0,6,0
,0,255,0,6,0,6,0,0,19,0,26,0,35,0,57,0,76,0,94,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22
,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,1,22,21,17,20,7,6,35,34,47,1,35,34,38,61,1,52,54,59,1,55,54,1
,50,55,54,16,39,46,1,7,14,1,23,22,16,7,6,22,23,22,39,50,55,54,52,39,46,1,14,1,23,22,20,7,6,22,23,22,5,188,28,40
,56,40,250,192,40,56,56,40,3,128,40,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,1,236,20,20,8,4,12,11,166,131,14
,18,18,14,131,166,16,1,180,31,19,129,129,16,54,20,21,5,17,100,100,17,5,21,18,189,27,20,87,87,18,54,38,2,19,52,52,19,2,19,20
,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,3,46,8,22,253
,224,22,8,2,9,167,18,14,192,14,18,167,15,253,71,24,159,1,152,159,21,6,17,17,53,21,123,254,194,123,21,53,16,15,148,20,93,252,93,19
,2,36,53,20,57,148,57,20,53,18,17,0,0,0,5,0,0,255,0,6,0,6,0,0,19,0,26,0,35,0,51,0,67,0,0,1,30,1,21,17
,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38,1,17,33,34,38,53,17,33,17,1,50,22,21,17,20,6,35,33
,34,38,53,17,52,54,51,5,22,21,17,20,7,6,35,34,39,1,53,1,54,51,50,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40,96,28
,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,2,128,52,76,76,52,254,128,52,76,76,52,3,108,20,20,8,4,14,9,254,247,1,9
,9,14,4,4,132,28,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,3,128
,76,52,254,128,52,76,76,52,1,128,52,76,2,8,22,253,192,22,8,2,9,1,10,90,1,10,9,0,0,0,6,0,0,255,0,6,0,6,0,0
,19,0,26,0,35,0,55,0,75,0,91,0,0,1,30,1,21,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,23,7,17,33,38,39,1,38
,1,17,33,34,38,53,17,33,17,1,62,1,31,1,30,1,15,1,23,22,6,15,1,6,38,39,3,38,55,33,22,7,3,14,1,47,1,46,1,63
,1,39,38,54,63,1,54,22,23,1,46,1,55,19,62,1,31,1,30,1,7,3,14,1,39,5,188,28,40,56,40,250,192,40,56,56,40,3,128,40
,96,28,132,1,120,10,12,254,199,12,1,99,254,96,40,56,253,0,1,96,8,26,11,51,11,3,8,182,182,8,3,11,51,11,26,8,226,14,14,4
,4,14,14,226,8,26,11,51,11,3,8,182,182,8,3,11,51,11,26,8,254,118,13,15,2,138,2,22,13,63,13,15,2,138,2,22,13,4,132,28
,96,40,251,128,40,56,56,40,6,64,40,56,40,28,68,254,136,29,12,1,57,12,250,18,4,0,56,40,1,160,250,0,3,128,11,3,8,38,8,26
,11,243,243,11,26,8,38,8,3,11,1,45,19,19,19,19,254,211,11,3,8,38,8,26,11,243,243,11,26,8,38,8,3,11,253,6,2,22,13,3
,63,13,15,2,10,2,22,13,252,193,13,15,2,0,1,0,39,255,151,5,217,6,0,0,54,0,0,1,21,6,35,6,2,6,7,6,39,46,4,10
,1,39,33,22,26,1,22,23,54,55,38,2,53,52,54,51,50,22,21,20,7,14,1,34,46,1,39,54,53,52,38,35,34,6,21,20,22,51,50,5
,217,101,97,65,201,162,47,80,82,28,65,105,100,115,96,87,27,1,27,26,88,121,122,79,169,118,142,162,208,180,178,190,58,7,25,67,59,65,18,31
,58,50,53,64,210,162,62,2,197,198,23,136,254,242,161,26,45,48,17,53,114,143,225,1,7,1,110,207,218,254,151,254,239,198,96,169,237,72,1,40
,185,192,245,211,192,159,127,1,4,12,39,32,103,81,87,90,99,91,186,215,0,0,8,0,0,255,0,7,0,6,0,0,3,0,6,0,10,0,14,0
,18,0,21,0,25,0,45,0,0,19,1,17,37,5,55,39,9,1,37,5,39,45,1,5,39,37,17,9,1,23,17,5,37,1,17,5,17,20,7,1
,6,34,39,1,38,53,17,52,55,1,54,50,23,1,22,216,2,91,254,178,254,181,193,193,3,51,2,91,254,243,254,178,77,1,16,254,240,254,240,139
,1,78,253,165,4,205,193,254,181,1,13,253,165,3,51,34,252,205,21,44,21,252,205,34,34,3,51,21,44,21,3,51,34,1,111,254,110,1,103,223
,36,129,129,252,220,1,146,180,223,134,182,182,182,93,223,1,103,254,110,254,239,129,1,2,36,180,1,146,254,153,43,253,222,41,23,253,222,13,13,2
,34,23,41,2,34,41,23,2,34,13,13,253,222,23,0,0,0,0,2,0,0,0,0,8,0,5,120,0,35,0,87,0,0,1,30,1,21,20,6,35
,34,38,35,33,43,2,46,1,53,52,54,55,38,53,52,54,51,50,23,54,36,51,50,4,18,21,20,6,1,20,22,51,50,55,46,1,39,6,35,34
,38,53,52,54,51,50,30,5,51,50,54,53,52,38,35,34,7,23,54,51,50,22,21,20,6,35,34,46,5,35,34,6,7,8,111,137,236,167,4,15
,3,251,71,1,2,5,170,236,110,92,12,164,117,95,77,75,1,39,179,166,1,24,163,1,250,204,168,124,137,103,16,63,12,67,77,55,77,77,53,44
,81,65,65,73,81,113,65,121,167,168,123,143,98,93,66,76,52,80,74,57,43,79,65,66,73,82,111,63,122,170,2,252,46,199,122,164,233,1,10,231
,165,110,186,54,39,43,115,162,58,154,188,161,254,236,163,6,24,254,240,122,142,99,20,73,14,65,67,54,53,68,42,68,82,82,68,42,143,119,121,142
,97,108,64,66,51,57,69,42,68,82,82,68,42,141,0,0,0,0,6,0,0,255,0,7,0,6,0,0,15,0,23,0,31,0,39,0,47,0,55,0
,0,0,32,4,22,18,16,2,6,4,32,36,38,2,16,18,54,36,32,7,23,54,50,23,55,1,55,38,52,55,39,6,16,0,32,55,39,6,34,39
,7,18,32,54,16,38,32,6,16,5,23,54,16,39,7,22,20,2,202,1,108,1,76,240,142,142,240,254,180,254,148,254,180,240,142,142,240,2,192,254
,132,171,194,82,170,82,194,251,241,194,28,28,194,90,2,66,1,124,171,194,82,170,82,194,202,1,62,225,225,254,194,225,3,100,194,90,90,194,28,6
,0,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,14,90,194,28,28,194,251,241,194,82,170,82,194,171,254,132,253,190,90,194
,28,28,194,1,38,225,1,62,225,225,254,194,8,194,171,1,124,171,194,82,170,0,1,0,32,255,32,6,224,5,215,0,33,0,0,1,20,2,6,4
,32,36,38,2,53,52,18,36,55,21,6,0,21,20,30,2,32,62,2,53,52,0,39,53,22,4,18,6,224,137,231,254,192,254,160,254,192,231,137,194
,1,80,206,221,254,221,102,171,237,1,4,237,171,102,254,221,221,206,1,80,194,2,128,176,254,192,231,137,137,231,1,64,176,213,1,115,240,31,228,45
,254,160,230,130,237,171,102,102,171,237,130,230,1,96,45,228,31,240,254,141,0,0,1,0,19,255,0,6,238,6,0,0,99,0,0,19,54,18,55,50
,49,20,7,14,4,30,1,23,30,1,62,1,63,1,62,1,46,1,47,1,46,3,47,1,55,30,1,31,1,54,38,47,1,55,23,14,1,15,1,62
,1,63,1,23,14,1,15,1,14,1,22,23,30,1,62,1,63,1,62,2,46,4,47,1,38,51,22,49,30,8,23,18,2,4,35,34,36,38,2,19
,8,216,197,5,1,8,40,64,56,33,5,73,72,50,104,77,62,16,16,39,28,15,27,13,14,10,41,45,42,14,13,104,39,78,20,19,1,39,21,20
,161,160,33,39,3,4,22,79,28,28,103,44,82,19,19,31,34,20,47,33,89,81,71,22,21,60,73,24,4,32,42,49,41,14,13,14,7,10,40,45
,79,49,68,43,48,28,19,1,3,222,254,110,255,185,254,180,235,133,2,150,217,1,122,129,1,2,8,51,102,119,152,149,166,71,50,39,16,31,17,16
,51,131,114,100,30,29,25,49,33,26,6,6,115,17,70,26,27,48,111,32,31,183,181,46,113,34,33,37,71,17,17,115,14,72,29,29,56,155,185,64
,45,31,20,33,17,16,53,124,119,124,112,103,83,61,17,17,13,3,29,34,66,50,80,74,102,104,130,71,254,253,254,100,230,148,248,1,82,0,9,0
,0,255,0,7,0,6,0,0,12,0,27,0,40,0,80,0,93,0,108,0,121,0,137,0,153,0,0,5,21,38,36,39,55,22,23,55,22,23,7,22
,1,7,22,23,7,38,16,55,23,6,7,23,6,21,20,1,23,6,4,7,53,54,55,39,54,55,23,54,3,7,22,20,7,23,6,7,39,6,7,23
,6,34,39,55,38,39,7,38,39,55,38,52,55,39,54,55,23,54,55,39,54,50,23,7,22,23,55,22,1,21,6,7,23,6,7,39,6,7,39,54
,36,0,16,7,39,54,55,39,54,53,52,39,55,38,39,55,39,7,38,39,7,38,39,55,38,39,53,22,4,0,16,2,38,36,32,4,6,2,16,18
,22,4,32,36,54,18,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,3,106,208,254,158,106,58,29,44,65,148,220,17,65,253,226,83,22,27
,57,98,98,57,30,19,82,35,5,8,58,106,254,158,208,56,65,17,220,148,65,44,122,233,14,14,232,31,67,185,57,90,48,52,92,52,48,90,57,185
,67,31,232,14,14,233,33,66,185,59,88,48,44,108,44,48,88,59,185,66,254,42,65,56,17,220,148,65,38,35,57,106,1,96,4,16,98,57,27,22
,83,36,35,82,19,30,57,22,57,35,38,65,148,220,17,56,65,209,1,96,1,13,135,228,254,196,254,166,254,196,228,135,135,228,1,60,1,90,1,60
,228,179,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,102,66,6,207,172,34,49,50,57,168,44,86,12,2,17,28,60,52,33
,180,1,154,180,33,56,56,28,100,112,109,254,232,34,172,207,6,66,1,12,86,44,168,57,50,2,91,80,42,86,42,80,92,77,162,67,18,241,10,10
,241,18,67,162,77,92,80,42,86,42,80,93,76,162,68,18,240,10,10,240,18,68,162,76,2,38,66,2,11,86,42,169,56,42,56,33,172,207,253,171
,254,102,180,33,52,60,28,103,109,112,100,28,56,56,33,38,33,56,42,56,169,42,86,11,2,66,6,207,253,0,1,90,1,60,228,135,135,228,254,196
,254,166,254,196,228,135,135,228,2,159,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,0,7,0,0,255,128,6,0,5,128,0
,7,0,16,0,57,0,69,0,105,0,115,0,131,0,0,37,20,35,34,53,52,51,50,3,20,35,34,53,52,51,50,22,55,53,6,35,38,35,34,6
,21,20,22,23,21,6,21,20,23,21,6,21,20,30,2,51,50,53,52,38,39,46,1,53,52,55,62,1,53,52,39,54,19,51,38,53,17,52,55,35
,22,21,17,20,5,53,6,35,34,61,1,51,50,22,51,53,35,52,55,35,22,29,1,35,21,54,51,50,22,51,21,35,21,20,30,3,51,50,1,52
,38,34,6,21,20,22,50,54,37,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,70,93,107,98,102,36,74,77,77,36,38,166,78,57,50
,60,86,118,59,44,38,41,113,40,68,76,43,224,96,78,27,49,49,77,90,10,37,71,137,2,2,137,3,1,250,30,38,53,52,9,35,9,105,3,140
,4,60,36,1,3,16,4,2,5,18,31,56,38,64,254,200,48,72,49,50,70,49,2,100,169,119,252,64,119,169,169,119,3,192,119,169,228,66,63,64
,1,149,85,84,90,51,37,125,29,29,114,86,50,104,15,3,17,68,53,24,3,37,102,45,67,35,16,188,67,64,14,5,31,24,44,8,15,110,79,24
,28,9,254,97,27,55,1,131,46,23,23,48,254,120,50,9,121,21,82,225,2,117,82,20,24,31,47,117,3,1,2,217,37,54,59,38,24,2,218,36
,55,54,37,36,53,54,83,252,64,119,169,169,119,3,192,119,169,169,0,0,0,0,6,0,68,255,0,6,188,6,0,0,7,0,16,0,60,0,72,0
,108,0,119,0,0,37,52,35,34,21,20,51,50,3,52,38,35,34,21,20,51,50,1,21,6,7,22,21,20,6,7,14,1,21,20,30,5,21,16,33
,34,46,2,53,52,55,53,38,53,52,55,53,46,1,53,52,54,51,50,23,50,1,35,54,53,17,52,39,51,6,21,17,20,37,21,6,35,34,46,3
,53,17,51,53,34,38,35,34,7,53,51,53,52,39,51,6,21,51,21,34,38,43,1,17,20,51,50,0,20,6,35,34,38,53,52,54,51,50,2,83
,165,158,172,151,59,60,59,124,124,119,1,13,36,43,16,146,124,40,39,45,71,86,86,71,45,254,149,69,122,110,65,182,67,63,72,95,190,140,96,82
,98,1,182,222,4,4,222,4,2,93,71,103,62,90,50,29,8,2,7,24,6,21,38,96,6,227,6,171,15,57,14,85,87,61,253,240,78,57,58,80
,79,59,58,22,100,104,101,3,92,61,82,145,135,1,205,202,12,10,43,41,127,179,23,8,38,39,31,41,23,21,30,45,83,57,254,208,25,57,107,74
,165,60,4,41,85,109,28,4,24,169,81,139,185,47,252,190,45,89,2,97,94,34,33,91,253,155,89,177,196,39,40,60,96,88,59,1,95,4,2,6
,190,76,54,35,41,124,190,4,254,147,131,4,14,116,87,87,58,59,88,0,0,0,2,0,0,255,128,6,0,5,128,0,11,0,27,0,0,9,1,35
,3,6,7,39,3,35,1,17,51,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,41,1,10,112,157,24,20,42,155,120,1,7,101,2
,215,169,119,252,64,119,169,169,119,3,192,119,169,2,20,1,243,254,200,48,44,92,1,56,254,19,254,188,3,138,252,64,119,169,169,119,3,192,119,169
,169,0,2,0,57,255,0,4,199,6,0,0,29,0,73,0,0,0,20,6,35,34,39,6,7,2,19,22,6,7,35,34,38,39,38,62,3,55,54,55
,38,53,52,54,50,4,16,2,4,35,34,39,46,1,55,62,1,23,22,51,50,62,2,52,46,2,34,14,2,21,20,23,22,14,1,38,39,38,53,52
,62,2,51,50,4,3,74,114,79,60,51,62,53,247,45,1,27,21,5,20,30,2,14,21,38,70,68,40,61,71,16,113,160,1,238,156,254,243,158,64
,67,21,23,5,5,36,21,51,57,97,178,128,76,76,128,178,194,178,128,76,52,10,13,38,41,10,64,93,156,216,118,158,1,13,4,20,160,113,35,67
,79,254,141,254,24,22,33,2,27,20,126,243,191,181,130,60,90,75,35,42,80,113,46,254,196,254,244,156,14,5,37,21,20,23,4,13,76,128,178,194
,178,128,76,76,128,178,97,114,104,20,40,20,14,19,123,142,119,216,156,92,156,0,1,0,18,255,0,6,238,6,0,0,105,0,0,1,38,53,52,54
,55,38,54,55,52,18,55,54,51,50,23,30,6,31,1,22,21,20,6,21,20,30,1,21,30,1,21,20,6,35,34,46,4,39,38,35,7,6,7,30
,2,23,14,1,7,6,35,34,46,1,39,38,39,46,1,39,14,1,35,34,46,3,53,52,54,55,62,1,55,50,55,54,53,39,46,1,47,1,34,7
,14,1,7,35,34,38,39,38,53,16,1,14,8,22,13,1,17,14,185,125,139,185,133,133,49,82,60,50,34,31,20,12,1,55,18,3,4,77,87,39
,36,9,21,17,21,11,16,1,1,2,5,59,73,20,83,55,8,2,4,5,64,238,53,115,81,64,15,8,14,64,8,41,173,82,35,68,118,84,65,20
,31,11,59,20,4,10,2,2,48,120,13,5,4,8,18,73,41,1,4,4,3,23,2,218,19,33,20,58,16,22,62,12,139,1,43,60,66,55,21,54
,58,78,70,99,80,58,5,83,67,14,52,12,1,5,5,1,114,201,108,43,114,15,20,32,21,31,2,1,4,154,69,20,37,46,42,4,24,6,97,18
,22,19,5,2,4,1,1,45,40,3,15,26,54,37,40,39,29,2,22,1,2,2,2,3,11,189,62,3,20,41,67,4,9,1,54,46,1,19,0,0
,0,0,6,0,0,255,62,8,0,5,194,0,10,0,22,0,33,0,45,0,73,0,91,0,0,0,52,38,35,34,6,21,20,22,51,50,1,52,38,35
,34,6,21,20,22,51,50,54,2,52,38,35,34,6,21,20,22,51,50,1,52,38,35,34,6,21,20,22,51,50,54,1,38,35,34,4,2,21,20,23
,6,35,34,46,3,39,7,55,36,17,52,18,36,51,50,4,22,1,20,6,7,23,39,6,35,34,36,38,16,54,36,51,50,4,22,2,68,50,41,43
,66,66,43,41,3,25,51,40,27,45,45,27,40,51,236,49,41,43,66,66,43,41,2,172,52,39,27,45,45,27,39,52,254,246,31,39,169,254,228,163
,23,35,33,26,48,62,27,82,9,253,72,254,222,195,1,77,197,176,1,57,211,2,111,137,117,55,199,150,68,169,254,228,163,163,1,28,169,161,1,28
,171,4,10,82,50,51,40,39,51,254,95,28,44,45,27,28,45,44,1,239,82,50,51,40,39,51,254,95,28,44,45,27,28,45,44,1,170,4,154,254
,249,156,78,74,3,3,10,4,17,2,127,218,203,1,31,169,1,28,163,132,233,253,63,117,213,87,181,109,37,141,242,1,30,242,141,141,243,0,1,0
,0,255,0,6,255,6,0,0,30,0,0,1,22,7,1,6,7,6,35,34,39,37,3,6,35,34,39,46,1,53,17,9,1,37,38,39,38,55,1,54
,51,50,6,228,33,6,255,0,5,27,14,17,11,13,254,59,242,18,31,13,9,19,23,3,96,251,211,254,117,37,3,2,34,6,128,15,17,20,5,245
,24,40,250,0,29,16,8,5,185,254,217,23,4,7,33,20,1,93,4,35,252,99,162,14,41,40,19,3,192,9,0,0,0,0,2,0,0,255,0,6
,255,5,247,0,26,0,32,0,0,1,22,7,1,6,7,6,35,34,39,37,1,6,35,34,39,46,1,53,17,37,38,39,38,55,1,54,1,19,1,5
,9,1,6,228,33,6,255,0,5,27,14,17,11,13,253,241,254,214,18,29,14,9,19,22,254,40,37,3,3,35,6,128,35,254,203,221,250,102,1,80
,3,95,254,34,5,245,24,40,250,0,29,16,8,5,215,254,185,21,4,7,33,20,1,196,193,14,41,39,20,3,192,21,250,14,5,43,252,197,137,2
,127,252,227,0,0,0,2,0,0,255,128,6,0,5,128,0,52,0,73,0,0,0,16,2,6,4,35,34,36,39,38,54,63,1,54,51,22,23,30,1
,51,50,62,2,52,46,2,35,34,6,7,23,22,7,6,35,33,34,38,53,17,52,55,54,31,1,54,36,51,50,4,22,5,17,20,6,35,33,34,38
,61,1,52,54,59,1,17,52,54,59,1,50,22,6,0,122,206,254,228,156,172,254,202,109,7,1,8,137,10,15,16,7,73,212,119,104,189,138,81,81
,138,189,104,98,180,70,137,31,17,17,42,254,64,26,38,40,39,30,130,107,1,19,147,156,1,28,206,253,250,18,14,254,192,14,18,18,14,224,18,14
,64,14,18,3,28,254,200,254,228,206,122,145,132,10,25,8,138,9,2,10,95,104,81,138,189,208,189,138,81,71,66,138,30,39,40,38,26,1,192,42
,17,17,31,129,101,111,122,206,152,254,64,14,18,18,14,64,14,18,1,96,14,18,18,0,0,0,2,0,0,255,128,6,0,5,128,0,15,0,27,0
,0,0,32,14,2,16,30,2,32,62,2,16,46,1,0,16,2,4,32,36,2,16,18,36,32,4,3,130,254,252,237,171,102,102,171,237,1,4,237,171
,102,102,171,1,145,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,5,0,102,171,237,254,252,237,171,102,102,171,237,1,4,237,171,254,183,254
,94,254,159,206,206,1,97,1,162,1,97,206,206,0,1,0,62,255,128,6,194,5,128,0,133,0,0,5,34,38,35,34,6,35,34,38,53,52,62,2
,55,54,53,3,52,39,38,35,33,34,7,6,21,3,20,23,30,3,21,20,6,35,34,38,35,34,6,35,34,38,53,52,62,2,55,54,53,39,17,52
,54,46,4,39,46,1,34,38,53,52,54,51,50,22,51,50,54,51,50,22,21,20,14,2,7,6,21,19,20,23,22,51,33,50,55,54,53,19,52,39
,46,2,53,52,54,51,50,22,51,50,54,51,50,22,21,20,14,2,7,6,21,19,20,23,30,3,21,20,6,6,146,44,177,45,44,176,44,24,26,34
,44,58,16,33,1,1,13,37,253,93,38,13,1,1,37,16,64,50,40,25,24,47,185,46,43,170,42,23,25,31,41,54,15,33,1,1,1,2,5,8
,14,9,15,60,46,36,24,24,46,185,46,42,169,42,25,25,34,43,56,15,35,1,1,13,26,2,187,25,13,1,1,35,18,81,51,25,25,44,176,44
,43,172,43,25,25,35,45,58,15,35,1,34,16,60,47,36,24,128,7,7,41,25,31,30,4,10,10,21,119,1,135,21,10,4,4,10,21,254,141,142
,22,10,6,1,29,31,26,44,7,7,42,24,30,30,5,10,10,23,120,57,3,45,3,46,27,50,34,39,24,6,10,4,28,31,26,44,7,7,44,26
,30,27,2,6,10,21,139,254,192,21,11,3,3,11,21,1,64,139,21,11,3,23,38,26,44,7,7,44,26,30,28,1,5,10,23,138,252,81,119,21
,10,7,2,29,30,26,44,0,0,0,1,0,24,255,128,4,254,5,128,0,44,0,0,1,21,20,6,35,34,7,6,7,6,21,17,20,6,43,1,34
,38,53,17,35,17,20,6,43,1,34,38,53,17,38,39,38,39,38,53,52,55,54,55,54,41,1,50,22,4,254,37,24,50,4,26,6,3,36,25,108
,25,36,143,35,26,108,26,35,147,98,126,66,64,88,88,121,111,1,50,1,223,25,36,5,67,73,29,64,1,6,25,11,53,251,128,25,36,36,25,4
,194,251,62,25,36,36,25,1,240,12,47,58,121,117,142,166,120,118,41,37,36,0,9,0,0,255,128,6,0,5,0,0,3,0,19,0,23,0,27,0
,31,0,47,0,63,0,67,0,71,0,0,37,21,33,53,37,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,1,21,33,53,19,21,35,53,1
,21,33,53,3,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,5,21,35,53,19
,21,33,53,1,96,254,160,2,192,26,38,38,26,255,0,26,38,38,26,1,160,252,160,224,224,6,0,253,32,224,26,38,38,26,255,0,26,38,38,26
,3,128,26,38,38,26,255,0,26,38,38,26,2,64,224,224,252,160,128,128,128,128,38,26,255,0,26,38,38,26,1,0,26,38,1,128,128,128,2,0
,128,128,252,0,128,128,4,128,38,26,255,0,26,38,38,26,1,0,26,38,254,0,38,26,255,0,26,38,38,26,1,0,26,38,128,128,128,2,0,128
,128,0,1,0,0,255,128,6,0,5,128,0,37,0,0,1,50,22,16,6,32,38,53,52,55,37,6,35,34,38,16,54,51,50,23,37,38,53,52,54
,32,22,16,6,35,34,39,5,22,20,7,5,54,4,192,133,187,187,254,246,187,2,254,152,92,126,133,187,187,133,126,92,1,104,2,187,1,10,187,187
,133,126,92,254,152,2,2,1,104,92,2,0,187,254,246,187,187,133,12,22,180,86,187,1,10,187,86,180,22,12,133,187,187,254,246,187,86,180,22,24
,22,180,86,0,0,0,2,0,0,255,128,6,0,5,128,0,37,0,53,0,0,36,52,38,35,34,7,39,54,52,39,55,22,51,50,54,52,38,34,6
,21,20,23,7,38,35,34,6,20,22,51,50,55,23,6,21,20,22,50,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,0,125,88,84
,61,241,2,2,241,61,84,88,125,125,176,126,2,241,62,83,88,125,125,88,83,62,241,2,126,176,1,125,169,119,252,64,119,169,169,119,3,192,119,169
,253,176,126,58,120,16,14,16,120,58,126,176,125,125,88,7,16,120,57,125,176,125,57,120,16,7,88,125,3,224,252,64,119,169,169,119,3,192,119,169
,169,0,7,0,0,255,0,7,0,6,0,0,17,0,47,0,62,0,76,0,88,0,100,0,115,0,0,0,46,1,7,14,1,7,6,22,23,22,51,50
,55,62,1,55,54,1,23,7,23,22,20,15,1,22,21,20,2,6,4,32,36,38,2,16,18,54,36,51,50,23,55,54,50,31,1,19,6,35,34,47
,1,38,52,55,54,50,31,1,22,20,23,6,34,47,1,38,52,55,54,50,31,1,22,20,54,20,6,43,1,34,38,52,54,59,1,50,39,21,20,6
,34,38,61,1,52,54,50,22,23,7,6,35,34,39,38,52,63,1,54,50,23,22,20,2,69,20,48,25,108,166,44,10,20,25,13,11,42,18,34,129
,84,25,3,184,46,244,68,19,19,64,89,111,189,254,251,254,226,254,251,189,111,111,189,1,5,143,182,161,64,19,53,19,68,251,10,12,13,10,91,9
,9,10,26,10,90,10,220,11,24,11,90,10,10,9,27,9,91,9,32,18,14,96,14,18,18,14,96,14,174,18,28,18,18,28,18,151,91,10,12,13
,10,10,10,90,10,26,10,9,3,154,50,20,10,44,166,108,25,48,10,5,40,84,129,34,11,1,173,46,243,68,19,53,19,64,161,182,143,254,251,189
,111,111,189,1,5,1,30,1,5,189,111,89,64,19,19,68,1,44,10,10,90,10,26,10,9,9,91,9,27,239,9,9,91,9,27,9,10,10,90,10
,26,187,28,18,18,28,18,160,96,14,18,18,14,96,14,18,18,69,90,10,10,9,27,9,91,9,9,10,26,0,3,0,0,255,0,7,0,6,0,0
,4,0,20,0,53,0,0,1,37,5,3,33,2,32,4,22,18,16,2,6,4,32,36,38,2,16,18,54,1,54,61,1,7,39,19,23,38,39,23,5
,37,55,6,7,55,19,7,39,21,20,23,55,5,19,7,22,50,55,39,19,37,2,97,1,31,1,31,109,254,157,5,1,108,1,76,240,142,142,240,254
,180,254,148,254,180,240,142,142,240,4,109,149,102,240,63,134,150,239,53,254,225,254,225,53,239,150,135,62,240,102,149,30,1,70,139,116,117,246,117,116
,139,1,70,2,208,208,208,254,176,4,128,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,251,72,203,251,3,89,224,1,67,12
,206,76,124,159,159,124,76,206,12,254,189,224,89,3,251,203,132,40,254,214,69,39,39,69,1,42,40,0,0,0,12,0,0,0,0,7,0,5,128,0
,15,0,31,0,47,0,63,0,73,0,89,0,105,0,121,0,137,0,162,0,178,0,188,0,0,37,21,20,6,43,1,34,38,61,1,52,54,59,1,50
,22,3,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,3,21,20,6,43,1,34
,38,61,1,52,54,59,1,50,22,37,34,38,61,1,33,21,20,6,35,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,3,21,20,6,43
,1,34,38,61,1,52,54,59,1,50,22,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,3,21,20,6,43,1,34,38,61,1,52,54,59
,1,50,22,1,21,33,53,52,5,4,29,1,33,53,52,62,4,36,32,4,30,4,17,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,17,21
,20,6,35,33,34,38,61,1,1,192,18,14,192,14,18,18,14,192,14,18,192,18,14,192,14,18,18,14,192,14,18,2,64,18,14,192,14,18,18,14
,192,14,18,192,18,14,192,14,18,18,14,192,14,18,253,194,28,38,2,2,38,27,2,255,18,14,192,14,18,18,14,192,14,18,192,18,14,192,14,18
,18,14,192,14,18,2,64,18,14,192,14,18,18,14,192,14,18,192,18,14,192,14,18,18,14,192,14,18,1,128,253,254,254,130,254,130,253,254,17,51
,80,141,179,1,13,1,62,1,12,180,141,80,51,17,18,14,192,14,18,18,14,192,14,18,38,27,254,128,27,38,224,192,14,18,18,14,192,14,18,18
,1,114,192,14,18,18,14,192,14,18,18,254,114,192,14,18,18,14,192,14,18,18,1,114,192,14,18,18,14,192,14,18,18,146,38,27,129,129,27,38
,253,224,192,14,18,18,14,192,14,18,18,1,114,192,14,18,18,14,192,14,18,18,254,114,192,14,18,18,14,192,14,18,18,1,114,192,14,18,18,14
,192,14,18,18,1,138,13,10,104,2,1,101,10,13,17,52,76,75,77,58,37,37,58,77,75,76,52,254,87,192,14,18,18,14,192,14,18,18,1,84
,129,27,38,38,27,129,0,0,0,0,5,0,0,255,0,7,0,6,0,0,16,0,20,0,37,0,47,0,57,0,0,1,17,20,6,35,17,20,6,35
,33,34,38,53,17,19,54,51,33,17,33,17,1,17,20,6,35,33,34,38,53,17,34,38,53,17,33,50,23,1,21,33,53,52,54,51,33,50,22,5
,21,33,53,52,54,51,33,50,22,2,192,38,26,38,26,254,0,26,38,249,7,24,2,232,255,0,4,0,38,26,254,0,26,38,26,38,1,168,24,7
,252,217,254,160,18,14,1,32,14,18,2,160,254,160,18,14,1,32,14,18,4,192,253,0,26,38,253,192,26,38,38,26,2,0,3,105,23,253,64,2
,192,252,128,254,0,26,38,38,26,2,64,38,26,3,0,23,1,55,224,224,14,18,18,14,224,224,14,18,18,0,1,0,0,255,0,7,0,6,0,0
,29,0,0,1,22,20,7,1,23,7,6,4,39,1,35,53,1,38,18,63,1,23,1,54,50,22,20,7,1,23,1,54,50,6,219,37,37,254,111,150
,160,163,254,59,185,254,150,181,1,106,124,47,163,160,150,1,144,38,106,74,37,254,112,234,1,145,38,106,4,59,38,105,38,254,112,150,160,163,47,124
,254,150,181,1,106,185,1,197,163,160,150,1,145,37,74,107,37,254,111,234,1,144,37,0,0,0,4,0,25,255,12,6,231,6,0,0,9,0,21,0
,58,0,103,0,0,1,20,6,34,38,53,52,54,50,22,5,20,6,35,34,38,53,52,54,51,50,22,19,17,52,38,35,33,34,6,21,17,30,5,50
,54,51,54,23,22,23,22,23,54,23,50,30,2,62,5,55,6,7,18,7,6,7,6,39,38,55,3,53,46,1,39,3,22,7,6,39,38,39,38,19
,38,39,38,54,23,30,1,23,17,52,54,51,33,50,22,21,17,55,54,22,3,105,127,178,127,127,178,127,1,246,126,90,89,127,127,89,90,126,225,64
,79,251,168,83,59,43,91,71,91,51,89,28,85,2,68,27,6,4,26,35,7,111,5,63,23,68,38,71,51,73,61,74,198,121,251,84,107,66,117,104
,78,86,4,1,8,33,7,1,4,87,79,104,117,65,105,83,251,121,25,42,39,4,15,3,94,67,4,233,67,94,21,39,42,3,28,83,119,119,83,84
,118,118,84,83,119,119,83,84,118,118,254,248,2,155,87,73,68,92,253,95,23,34,22,15,7,1,4,1,28,6,3,25,26,91,4,3,1,1,3,6
,11,16,23,31,24,149,103,254,227,180,113,35,32,47,51,113,1,70,1,2,8,1,254,174,114,50,47,32,36,114,180,1,27,103,149,37,52,27,2,10
,3,2,182,72,102,102,72,253,74,15,27,52,0,0,4,0,100,255,128,6,156,6,0,0,3,0,7,0,15,0,25,0,0,1,17,35,17,33,17,35
,17,19,55,17,33,17,33,21,55,1,17,1,33,7,35,53,33,17,19,3,128,145,2,31,145,145,253,251,86,1,70,217,3,28,254,78,254,186,217,217
,254,114,109,4,78,254,78,1,178,254,78,1,178,253,8,254,3,27,251,231,217,217,4,170,252,11,254,78,217,217,4,134,1,33,0,0,0,0,5,0
,89,255,1,5,170,5,253,0,22,0,43,0,63,0,78,0,101,0,0,37,21,2,7,6,7,6,38,39,38,39,38,55,62,1,55,50,55,62,1,23
,30,1,39,6,15,1,4,35,38,39,38,39,38,62,1,23,50,23,22,31,1,30,1,1,14,1,7,6,39,38,3,39,38,54,55,54,23,22,23,30
,1,23,22,1,22,7,6,39,1,38,55,54,36,23,22,23,22,18,5,22,7,6,5,6,7,55,6,38,39,38,55,54,55,62,1,55,54,23,30,1
,23,3,5,1,5,12,39,54,255,35,13,4,1,5,4,60,151,1,59,15,49,25,24,27,150,3,49,120,254,237,17,35,19,12,5,8,18,42,35,13
,189,71,44,84,23,25,3,57,7,169,51,37,26,14,170,47,14,5,17,35,48,1,118,203,78,8,28,253,90,5,59,58,56,254,134,8,27,41,1,77
,58,40,9,3,38,2,155,3,29,15,254,198,67,24,1,23,46,14,30,30,1,74,125,50,9,28,37,48,150,6,217,127,254,220,13,32,8,9,94,42
,15,21,12,14,10,74,179,70,19,11,9,10,38,228,55,15,39,88,2,34,25,50,76,181,68,2,77,29,18,34,9,43,254,188,54,214,20,14,21,10
,1,21,77,21,50,21,43,17,1,39,66,27,7,22,2,81,102,20,17,88,2,86,35,27,43,93,15,10,35,18,253,193,200,39,20,10,76,15,8,2
,6,20,22,47,40,1,101,171,66,6,19,17,23,221,57,0,0,0,10,0,0,0,0,8,0,5,128,0,3,0,7,0,11,0,15,0,19,0,23,0
,27,0,35,0,44,0,56,0,0,1,33,17,33,19,21,33,53,1,17,33,17,1,21,33,53,1,21,33,53,1,21,33,53,1,21,33,53,1,17,35
,17,20,22,50,54,37,17,33,17,20,7,33,50,54,19,17,20,6,35,33,34,38,53,17,33,53,4,0,254,128,1,128,128,253,128,2,128,253,128,5
,0,254,0,2,0,254,0,2,0,254,0,2,0,254,0,252,0,128,38,52,38,6,128,250,0,11,5,203,26,38,128,112,80,249,128,80,112,1,0,4
,0,254,128,255,0,128,128,3,0,253,128,2,128,253,0,128,128,1,0,128,128,1,0,128,128,1,0,128,128,252,64,3,192,252,64,26,38,38,26,4
,64,251,192,33,31,38,4,218,251,64,80,112,112,80,4,64,128,0,4,0,42,0,13,7,214,5,128,0,9,0,31,0,57,0,81,0,0,36,34,38
,53,52,54,50,22,21,20,55,34,46,1,34,14,1,35,34,38,53,52,55,62,1,50,22,23,22,21,20,6,1,34,39,46,1,35,34,14,3,35,34
,38,53,52,55,54,36,32,4,23,22,21,20,6,19,34,39,38,36,32,4,7,6,35,34,38,53,52,55,54,36,32,4,23,22,21,20,6,4,20,40
,146,125,82,125,104,2,76,127,130,127,75,3,18,151,10,78,236,230,236,78,10,151,0,255,11,12,136,232,152,85,171,127,100,58,2,17,150,10,132,1
,120,1,128,1,120,132,10,150,254,11,11,179,254,127,254,56,254,127,179,11,11,17,151,10,187,2,4,2,26,2,4,187,10,151,13,147,20,32,44,44
,32,20,124,50,50,50,50,150,18,13,10,77,88,88,77,10,13,18,150,1,16,8,105,99,44,62,62,44,150,18,12,10,132,146,146,132,10,12,18,150
,1,15,9,157,159,159,157,9,150,18,13,10,186,204,204,186,10,13,18,150,0,0,13,0,0,255,0,6,128,6,0,0,7,0,15,0,23,0,31,0
,39,0,47,0,55,0,63,0,75,0,83,0,99,0,107,0,123,0,0,4,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,0,52,38,34,6
,20,22,50,0,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,0,52,38,34,6
,20,22,50,1,17,52,38,34,6,21,17,20,22,50,54,0,52,38,34,6,20,22,50,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,16
,52,38,34,6,20,22,50,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,1,128,75,106,75,75,106,1,203,75,106,75,75,106,254,203,75
,106,75,75,106,3,75,75,106,75,75,106,254,203,75,106,75,75,106,254,203,75,106,75,75,106,3,75,75,106,75,75,106,254,203,75,106,75,75,106,3
,75,76,104,76,76,104,76,254,128,75,106,75,75,106,1,203,38,26,251,0,26,38,38,26,5,0,26,38,75,106,75,75,106,203,76,52,250,128,52,76
,76,52,5,128,52,76,53,106,75,75,106,75,75,106,75,75,106,75,1,203,106,75,75,106,75,254,203,106,75,75,106,75,1,203,106,75,75,106,75,1
,203,106,75,75,106,75,254,203,106,75,75,106,75,1,203,106,75,75,106,75,253,128,1,128,52,76,76,52,254,128,52,76,76,2,255,106,75,75,106,75
,1,192,1,0,26,38,38,26,255,0,26,38,38,254,165,106,75,75,106,75,3,0,250,0,52,76,76,52,6,0,52,76,76,0,2,0,9,255,0,5
,239,6,0,0,39,0,69,0,0,1,22,7,2,33,35,34,6,15,1,3,7,14,1,43,1,34,38,55,62,3,55,54,59,1,22,55,54,55,54,55
,54,55,62,1,22,23,22,39,20,7,6,7,6,7,20,35,39,34,7,6,3,6,35,33,34,38,55,19,62,1,51,33,50,22,23,30,1,5,239,18
,22,87,254,34,44,25,38,5,4,55,2,5,39,25,251,21,24,3,9,35,18,36,9,5,38,131,133,103,175,112,102,53,24,11,1,3,4,4,79,153
,46,80,222,113,139,90,90,100,18,2,83,1,11,254,217,22,29,3,232,5,45,29,2,86,34,127,48,107,113,3,122,84,120,254,68,33,26,19,254,166
,15,26,33,30,21,56,224,112,223,56,37,2,23,39,105,95,151,70,63,6,3,1,3,59,179,107,129,233,82,40,2,1,1,96,8,253,246,10,33,22
,5,191,29,38,26,19,41,164,0,0,4,0,39,255,0,7,0,6,0,0,10,0,18,0,25,0,40,0,0,1,50,23,0,19,33,2,3,38,54,51
,1,6,7,2,3,54,55,18,19,18,0,19,33,2,9,1,16,3,2,1,2,3,38,54,51,33,50,22,23,18,1,185,33,19,1,10,96,254,66,127
,240,12,18,20,3,164,49,76,79,177,40,4,211,225,235,1,43,35,254,61,41,254,0,4,104,101,67,254,220,25,81,4,19,16,1,103,21,35,5,115
,3,96,26,254,148,254,102,1,185,1,52,16,35,254,155,199,194,1,54,1,28,221,228,254,172,1,143,254,188,253,19,254,113,2,153,3,39,253,192,254
,88,254,124,2,48,2,11,1,45,1,27,16,25,26,20,254,103,0,7,0,0,255,128,9,0,5,128,0,8,0,15,0,24,0,28,0,62,0,73,0
,89,0,0,1,35,54,63,1,62,1,55,23,5,3,38,35,33,7,4,37,3,39,46,1,39,19,51,1,3,51,19,35,5,38,35,34,6,7,6,23
,30,1,21,20,6,35,34,47,1,7,22,51,22,54,55,52,39,46,1,53,52,54,51,54,31,1,37,35,34,7,3,51,55,51,22,23,51,19,17,20
,6,35,33,34,38,53,17,52,54,51,33,50,22,7,183,138,14,52,3,4,12,3,12,250,130,58,11,64,254,244,2,1,55,1,15,162,17,26,118,72
,135,175,1,5,37,166,104,166,2,152,69,80,123,156,1,1,146,48,38,60,39,86,70,22,23,74,111,130,157,2,140,49,44,49,46,70,54,15,1,192
,128,65,22,246,174,35,212,5,15,154,128,76,52,248,0,52,76,76,52,8,0,52,76,2,34,37,142,9,10,32,10,55,120,1,39,54,13,79,92,254
,74,89,70,119,29,254,2,2,129,253,126,2,130,16,27,118,94,102,72,23,36,21,30,32,33,11,144,34,1,120,100,106,68,25,34,21,22,33,1,25
,8,155,54,253,180,96,22,74,3,194,251,0,52,76,76,52,5,0,52,76,76,0,24,0,0,255,128,9,0,5,128,0,17,0,25,0,43,0,51,0
,64,0,71,0,88,0,99,0,103,0,113,0,122,0,156,0,184,0,199,0,229,0,249,1,11,1,25,1,45,1,60,1,74,1,88,1,123,1,139,0
,0,1,38,35,34,14,2,21,20,30,2,51,50,55,38,2,18,55,6,2,18,23,54,18,2,39,22,18,2,7,22,51,50,62,2,53,52,46,2,35
,34,1,51,53,35,21,51,21,59,2,53,35,7,39,35,21,51,53,23,51,55,3,21,43,1,53,59,1,21,51,39,50,51,55,54,52,47,1,34,43
,1,21,51,53,51,36,52,54,51,50,22,21,20,6,35,34,36,50,23,35,4,52,54,50,22,21,20,6,35,34,54,52,54,50,22,21,20,6,34,23
,34,39,34,38,53,38,53,52,55,52,55,54,49,50,53,54,51,50,23,22,49,23,21,22,21,7,28,1,35,7,6,35,6,37,51,53,52,38,39,34
,7,38,35,34,7,53,35,21,51,53,52,51,50,29,1,51,53,52,51,50,21,23,51,61,1,35,21,38,35,34,6,20,22,51,50,63,1,52,47,1
,38,53,52,51,50,23,55,38,35,34,6,21,20,31,1,22,21,20,35,34,39,7,22,51,50,54,23,39,6,35,34,61,1,51,53,35,53,35,21,35
,21,51,21,20,51,50,55,34,6,21,20,22,51,50,55,39,6,35,34,39,51,53,52,38,51,34,7,53,35,21,51,53,52,51,50,23,55,38,22,20
,22,51,50,55,39,6,39,34,38,52,54,51,50,23,55,38,35,34,23,51,61,1,35,21,38,35,34,6,20,22,51,50,63,1,34,7,53,35,21,51
,53,52,51,50,23,55,38,23,51,61,1,35,21,38,34,6,20,22,51,50,63,1,7,34,35,6,7,6,21,6,21,20,23,20,23,30,1,51,50,55
,52,63,1,54,55,54,53,52,39,38,39,52,47,1,34,38,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,95,128,153,103,189,136,81
,81,136,188,104,153,128,131,94,95,163,126,92,91,127,127,91,92,93,130,95,94,131,128,153,104,188,136,81,81,136,189,103,153,2,101,7,17,7,3,29
,4,5,6,6,5,3,6,4,5,8,2,3,3,2,3,4,1,1,1,1,1,1,2,1,6,3,1,251,22,22,19,18,22,22,18,19,1,165,60,5
,70,1,135,22,36,23,22,19,18,250,23,36,23,23,36,135,2,2,1,4,1,1,2,1,2,2,2,3,1,4,2,1,1,1,1,2,2,1,250,188
,30,29,25,32,15,14,31,24,15,30,30,33,30,29,33,30,166,29,29,17,26,29,38,38,29,28,15,178,47,14,23,25,23,20,12,22,33,26,30,47
,13,24,31,25,20,13,25,33,29,33,130,8,13,13,19,48,48,30,28,28,47,21,101,29,38,39,30,33,22,14,18,21,34,7,101,36,131,23,12,30
,30,29,10,8,9,9,18,39,33,29,19,14,18,17,18,23,23,18,19,16,14,20,28,33,206,30,30,15,27,29,39,39,29,28,14,133,23,12,29,29
,29,10,8,9,8,127,29,29,15,56,39,39,28,29,14,78,2,2,1,2,2,3,1,1,3,2,4,3,4,2,2,2,1,2,1,1,1,2,2,2
,1,4,1,103,76,52,248,0,52,76,76,52,8,0,52,76,4,171,85,81,136,188,103,104,188,136,81,85,107,1,61,1,60,83,99,254,211,254,212,99
,99,1,44,1,45,123,107,254,195,254,195,106,85,81,136,188,104,103,188,136,81,252,217,3,3,17,20,13,13,20,15,13,13,254,57,2,3,10,5,1
,1,4,1,1,13,5,44,38,24,25,18,19,24,87,32,31,38,24,25,18,19,24,25,36,25,25,18,19,24,29,1,4,1,2,2,3,1,2,2,1
,1,1,1,2,4,1,2,1,1,2,2,2,2,1,4,85,24,29,1,24,24,20,16,135,75,36,36,75,75,36,36,75,68,67,16,20,40,62,40,20
,24,34,6,2,4,10,15,11,24,14,24,20,33,6,2,4,10,17,14,23,17,24,14,25,7,22,61,27,41,41,27,61,50,142,40,31,32,39,19,22
,15,33,12,32,39,20,16,135,76,35,4,28,4,40,62,40,16,24,13,1,24,38,24,12,24,16,139,68,67,16,20,40,62,40,20,122,20,16,135,76
,35,4,28,4,139,68,122,71,20,41,60,41,20,3,1,1,2,1,3,2,4,3,2,2,2,2,2,1,1,1,1,1,3,2,3,4,2,1,3,1
,1,1,1,4,229,251,0,52,76,76,52,5,0,52,76,76,0,0,12,0,0,255,128,9,0,5,128,0,10,0,17,0,27,0,31,0,66,0,87,0
,98,0,106,0,113,0,125,0,138,0,154,0,0,1,20,7,6,43,1,53,51,50,23,22,37,20,43,1,53,51,50,5,52,38,43,1,17,51,50,55
,54,23,51,17,35,5,52,38,39,46,1,53,52,54,51,50,23,55,38,35,34,6,21,20,22,23,22,23,22,21,20,6,35,34,39,7,22,51,50,54
,5,53,6,35,34,38,53,52,54,51,50,23,53,38,35,34,6,20,22,51,50,1,17,14,1,12,2,5,33,50,54,0,52,38,34,6,20,22,50,37
,19,35,7,39,35,19,55,51,53,35,53,51,53,35,53,51,53,35,1,51,39,54,53,52,38,43,1,17,51,53,51,1,17,20,6,35,33,34,38,53
,17,52,54,51,33,50,22,1,57,36,29,60,17,17,61,28,36,6,240,64,19,20,63,249,83,100,79,95,95,74,45,60,30,65,65,1,64,41,55,29
,21,27,21,29,24,34,41,57,44,60,36,46,37,8,19,28,22,48,23,42,44,71,51,64,1,22,37,41,49,63,63,46,43,38,40,40,74,103,102,74
,42,4,247,65,159,254,196,254,169,254,20,254,254,6,33,26,38,252,173,106,150,106,106,150,1,2,144,71,90,89,71,142,208,184,119,115,115,119,184,1
,135,80,105,76,62,56,97,65,9,1,33,77,55,248,8,55,77,77,55,7,248,55,77,2,247,51,33,26,220,27,31,13,52,101,114,74,93,254,179,38
,51,89,1,77,232,40,44,20,10,18,14,16,21,27,44,37,55,40,35,41,16,13,6,12,22,20,27,44,40,64,61,41,77,37,65,50,48,67,38,77
,20,101,146,101,253,183,2,15,40,88,146,129,140,48,38,2,196,150,106,106,150,106,8,1,86,224,224,254,170,9,56,90,56,74,57,254,179,140,16,78
,47,52,254,179,133,2,36,251,12,56,78,78,56,4,244,56,78,78,0,0,0,0,18,0,0,255,128,9,0,5,128,0,2,0,11,0,14,0,21,0
,28,0,35,0,38,0,58,0,79,0,91,0,206,0,226,0,249,1,5,1,9,1,36,1,63,1,98,0,0,19,51,39,1,55,39,35,21,51,21,35
,21,37,23,53,23,52,43,1,21,51,50,37,52,43,1,21,51,50,1,52,43,1,21,51,50,5,51,39,37,17,35,53,7,35,39,21,35,39,35,7
,35,19,51,19,17,51,23,55,1,20,14,4,34,38,35,21,35,39,7,33,17,33,23,55,51,50,37,21,35,17,51,21,35,21,51,21,35,21,1,21
,20,6,35,33,34,38,53,17,51,55,51,23,51,53,23,51,55,21,33,53,55,50,29,1,33,53,30,2,54,51,55,51,23,51,53,23,51,17,35,21
,39,35,21,39,35,34,7,53,35,21,38,35,33,7,39,35,21,39,35,7,17,52,54,51,33,50,22,21,17,35,34,7,53,35,34,7,53,33,21,38
,43,1,21,38,43,1,7,39,33,17,33,55,23,51,53,51,50,55,21,51,53,51,50,22,29,1,33,50,55,21,51,50,37,20,6,7,30,1,29,1
,35,53,52,38,43,1,21,35,17,51,50,22,1,20,6,7,30,1,29,1,35,52,54,46,3,43,1,21,35,17,23,50,22,1,21,35,17,51,21,35
,21,51,21,35,21,1,17,35,17,1,20,43,1,53,51,50,53,52,38,34,46,1,53,52,54,59,1,21,35,34,21,20,22,54,30,1,55,21,6,43
,1,53,51,50,53,52,38,6,46,2,53,52,54,59,1,21,35,34,21,20,30,1,3,17,35,39,21,35,39,35,7,35,34,53,52,59,1,21,34,38
,14,4,21,20,22,59,1,55,51,19,17,51,23,53,119,89,45,2,65,74,70,163,142,142,1,61,99,189,40,84,83,41,1,33,42,82,81,43,254,234
,42,82,81,43,1,203,89,44,252,22,66,94,57,94,132,25,135,25,70,116,96,110,106,85,77,2,152,11,17,28,24,39,24,41,9,126,80,83,255,0
,1,4,80,82,207,109,254,221,217,217,152,148,148,5,212,77,55,248,8,55,77,111,25,55,25,218,19,113,20,2,29,10,10,1,23,23,64,41,85,9
,25,56,25,227,34,182,180,25,185,23,249,69,40,172,24,49,253,140,43,43,198,22,169,78,77,55,7,248,55,77,120,51,30,177,55,23,254,196,31,56
,209,23,68,234,54,50,254,163,1,87,55,52,211,21,59,31,174,8,8,4,2,17,57,31,168,60,253,45,24,22,25,18,65,24,34,69,65,154,48,58
,254,235,25,21,26,17,65,1,1,5,12,23,18,70,64,153,49,58,2,17,216,216,151,148,148,254,237,66,2,247,102,126,126,34,34,49,50,34,52,40
,130,119,36,35,49,49,35,239,24,64,125,125,33,25,37,43,37,25,53,40,129,118,36,58,79,148,92,122,132,26,134,25,75,129,133,63,7,42,15,31
,12,17,6,27,36,29,92,97,109,99,114,3,86,108,253,134,79,79,49,55,54,78,110,217,60,33,69,40,29,61,1,242,29,60,38,108,47,254,241,212
,212,212,212,60,60,1,15,254,255,1,1,184,184,253,212,20,30,20,13,7,2,1,91,90,90,1,15,89,89,252,56,1,15,57,49,55,54,253,209,229
,55,79,79,55,2,166,61,61,46,46,47,47,99,1,14,86,23,12,12,1,2,61,61,58,58,1,122,44,44,44,44,22,22,22,22,97,97,44,44,179
,1,135,55,79,79,55,253,90,22,22,22,22,22,22,22,22,58,58,254,134,59,59,89,13,102,99,4,8,87,24,24,251,23,40,9,9,34,29,54,45
,33,21,99,1,15,30,1,168,24,40,9,9,33,30,53,9,35,15,22,10,7,98,1,15,1,29,253,116,56,1,15,56,49,55,54,2,169,254,241,1
,15,253,116,86,58,25,16,10,7,38,36,39,42,57,25,16,9,1,6,37,14,101,35,58,25,13,12,1,5,11,37,30,39,42,57,25,20,4,6,2
,66,254,242,203,203,60,60,133,138,59,2,1,3,10,17,29,19,38,40,213,255,0,1,0,188,188,0,0,0,0,11,0,0,255,128,9,0,5,128,0
,11,0,23,0,35,0,58,0,83,0,110,0,133,0,159,0,174,0,185,0,201,0,0,1,20,6,35,34,38,53,52,54,51,50,22,37,20,6,35,7
,55,54,59,1,50,30,1,5,20,6,35,34,38,53,52,54,51,50,22,37,52,38,43,1,34,7,3,6,22,59,1,50,63,1,62,2,50,22,51,50
,54,5,19,54,38,43,1,34,7,38,35,34,6,21,20,22,51,50,54,55,6,21,20,59,1,50,0,52,38,43,1,34,15,1,39,38,43,1,34,6
,21,20,30,1,23,6,21,20,59,1,50,55,1,37,52,38,43,1,34,7,3,6,22,59,1,50,63,1,62,2,50,22,51,50,54,5,19,54,38,43
,1,34,7,38,35,34,6,21,20,22,51,50,54,55,20,6,21,20,59,1,50,19,53,52,43,1,34,7,3,7,20,22,59,1,50,55,1,14,1,35
,7,55,54,59,1,50,22,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,233,51,37,29,35,50,37,28,37,3,17,44,44,32,17,2
,11,18,22,26,24,1,95,51,36,29,36,50,37,28,37,250,168,77,62,160,19,2,65,1,8,6,76,20,2,18,1,12,18,16,22,3,86,98,1,53
,41,1,8,6,76,14,3,27,68,72,101,69,58,28,60,18,4,13,69,19,1,194,8,5,77,11,7,106,44,5,17,75,5,8,39,45,1,82,13,77
,11,7,0,255,1,126,77,62,159,20,2,65,1,8,6,82,12,4,18,1,12,18,16,22,3,86,98,1,53,41,1,8,6,76,14,3,26,69,72,101
,69,58,29,60,17,4,13,69,19,221,13,74,11,2,65,1,8,6,66,19,2,249,73,5,42,39,33,17,2,11,19,40,36,7,114,76,52,248,0,52
,76,76,52,8,0,52,76,2,118,37,49,32,28,37,51,33,120,42,30,1,107,11,4,21,169,36,50,32,28,37,51,33,142,59,53,19,254,104,6,10
,19,110,8,10,3,2,97,226,1,5,6,10,33,40,108,73,59,70,24,20,12,9,16,1,21,10,9,10,156,150,16,9,5,2,114,132,4,112,8,13
,10,1,112,56,59,53,19,254,104,6,10,13,116,8,10,3,2,97,226,1,5,6,10,33,40,108,73,59,70,24,20,1,16,4,16,1,172,1,14,11
,254,96,2,5,9,19,1,19,35,22,1,107,11,23,1,223,251,0,52,76,76,52,5,0,52,76,76,0,0,0,10,0,0,255,128,9,0,5,128,0
,10,0,15,0,50,0,72,0,87,0,91,0,108,0,116,0,139,0,155,0,0,1,20,7,6,35,34,39,53,54,51,50,5,35,54,51,50,5,52,38
,39,46,1,53,52,51,50,23,55,38,35,34,7,6,21,20,22,23,30,1,21,20,35,34,38,39,7,22,51,50,55,54,1,55,35,53,15,3,51,21
,20,23,22,51,50,55,53,6,35,34,61,1,5,53,38,35,34,6,7,39,35,17,51,17,54,51,50,19,51,17,35,5,52,39,38,35,34,7,39,35
,17,55,53,22,51,50,55,54,0,52,38,34,6,20,22,50,1,52,39,38,35,34,6,21,20,23,22,51,50,55,39,6,35,34,39,38,39,51,54,19
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,6,61,21,19,33,23,18,29,28,57,1,182,110,6,50,51,249,236,66,68,36,32,38,58,66
,18,67,82,77,46,48,65,67,39,31,48,29,82,31,18,72,96,81,48,51,1,39,19,96,129,18,46,17,62,44,38,73,32,47,32,12,42,1,137,15
,13,32,47,10,10,131,150,26,56,16,47,150,150,2,110,45,40,71,64,53,8,132,150,36,32,83,51,61,254,44,46,66,46,46,66,3,176,48,50,94
,96,111,63,55,106,101,59,16,57,71,43,20,23,5,248,2,128,76,52,248,0,52,76,76,52,8,0,52,76,2,121,69,37,35,9,224,30,86,98,233
,59,65,25,13,22,14,26,33,112,32,38,39,70,58,65,24,14,23,16,31,25,18,113,41,37,41,1,35,111,135,21,114,8,103,219,84,36,30,11,118
,7,50,197,25,139,3,32,30,56,254,41,1,50,31,254,175,1,215,222,122,57,52,56,47,253,123,25,151,11,56,65,1,196,66,46,46,66,47,254,235
,113,63,64,132,114,128,60,55,40,103,31,19,19,47,14,2,177,251,0,52,76,76,52,5,0,52,76,76,0,0,3,0,14,255,0,7,242,6,0,0
,11,0,23,0,63,0,0,1,18,23,20,6,35,33,20,6,34,38,39,5,50,52,35,34,38,53,52,34,21,20,22,1,22,6,7,1,6,38,47,1
,38,54,63,1,38,53,62,4,53,52,18,55,38,53,52,54,50,22,21,20,7,30,1,23,1,54,22,23,6,22,61,237,76,52,254,64,150,212,149,1
,1,0,16,16,59,85,32,103,4,51,8,1,10,248,176,10,27,8,84,8,1,10,186,19,50,82,88,61,39,234,190,8,56,80,56,8,124,190,53,1
,162,10,27,8,2,172,254,156,200,52,76,106,150,149,106,175,32,85,59,16,16,73,103,6,64,10,27,9,249,170,8,2,10,96,10,27,8,161,32,34
,42,92,147,170,242,139,152,1,5,28,19,20,40,56,56,40,20,19,18,129,93,1,107,8,2,10,0,0,0,0,4,0,14,255,0,7,242,6,0,0
,11,0,22,0,38,0,78,0,0,4,52,35,34,38,53,52,34,21,20,22,51,9,1,46,1,35,34,14,2,21,16,1,20,6,35,33,20,6,34,38
,39,55,33,38,3,55,18,1,23,22,6,7,1,6,38,47,1,38,54,63,1,38,53,62,4,53,52,18,55,38,53,52,54,50,22,21,20,7,30,1
,23,1,54,22,4,16,16,59,85,32,103,73,253,247,3,109,42,181,133,93,153,90,48,4,192,76,52,254,64,150,212,149,1,149,2,245,166,61,111,61
,1,67,84,8,1,10,248,176,10,27,8,84,8,1,10,186,19,50,82,88,61,39,234,190,8,56,80,56,8,124,190,53,1,162,10,27,176,32,85,59
,16,16,73,103,1,235,2,248,88,117,63,98,108,51,254,128,254,64,52,76,106,150,149,106,129,187,1,16,97,254,156,4,168,96,10,27,9,249,170,8
,2,10,96,10,27,8,161,32,34,42,92,147,170,242,139,152,1,5,28,19,20,40,56,56,40,20,19,18,129,93,1,107,8,2,0,0,0,0,5,0
,0,255,128,5,128,5,128,0,15,0,31,0,47,0,55,0,91,0,0,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,52,38,43
,1,34,6,21,17,20,22,59,1,50,54,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,1,33,39,38,39,33,6,7,5,21,20,6,43
,1,17,20,6,35,33,34,38,53,17,35,34,38,61,1,52,54,51,33,55,62,1,51,33,50,22,31,1,33,50,22,2,0,18,14,64,14,18,18,14
,64,14,18,1,0,18,14,64,14,18,18,14,64,14,18,1,0,18,14,64,14,18,18,14,64,14,18,253,224,1,192,48,7,10,254,195,10,7,3,111
,18,14,96,94,66,252,192,66,94,96,14,18,18,14,1,53,70,15,78,40,1,64,40,78,15,70,1,53,14,18,160,2,192,14,18,18,14,253,64,14
,18,18,14,2,192,14,18,18,14,253,64,14,18,18,14,2,192,14,18,18,14,253,64,14,18,18,3,238,117,9,2,2,9,149,64,14,18,252,76,83
,121,117,83,3,184,18,14,64,14,18,167,37,52,52,37,167,18,0,3,0,0,255,128,6,0,5,128,0,44,0,60,0,72,0,0,1,21,20,14,2
,35,34,0,53,52,0,51,50,30,3,29,1,20,43,1,34,61,1,52,38,35,34,6,21,20,22,51,50,54,61,1,52,54,59,1,50,22,2,32,14
,2,16,30,2,32,62,2,16,46,1,0,16,2,4,32,36,2,16,18,36,32,4,4,126,73,115,121,57,205,254,237,1,16,203,34,83,103,82,56,16
,118,16,131,72,140,177,183,142,68,140,9,6,119,6,10,252,254,252,237,171,102,102,171,237,1,4,237,171,102,102,171,1,145,206,254,159,254,94,254,159
,206,206,1,97,1,162,1,97,1,206,109,50,78,43,22,1,22,207,203,1,16,9,27,41,72,45,109,16,16,70,43,49,183,146,151,197,48,42,70,7
,9,9,3,43,102,171,237,254,252,237,171,102,102,171,237,1,4,237,171,254,183,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,2,0
,0,255,128,6,0,5,128,0,14,0,98,0,0,1,52,38,35,34,14,2,21,20,22,51,50,62,1,5,20,14,2,7,34,6,35,34,39,38,39,14
,1,35,34,38,53,52,18,54,51,50,22,23,63,1,62,1,59,1,50,23,22,7,3,6,21,20,22,51,62,4,53,16,0,33,34,14,2,16,30,2
,51,50,55,54,22,31,1,22,7,6,7,14,1,35,34,36,38,2,16,18,54,36,51,32,0,3,204,107,94,63,122,98,61,107,97,96,160,85,2,52
,74,123,140,75,6,19,7,95,47,28,5,52,159,94,161,177,132,226,133,87,136,38,2,11,1,9,5,118,5,8,5,2,120,5,25,32,28,58,88,66
,48,254,164,254,220,130,237,171,102,102,171,237,130,228,177,11,26,8,41,8,1,2,10,102,251,133,156,254,228,206,122,122,206,1,28,156,1,88,1,168
,2,249,108,122,61,108,166,97,112,122,133,199,17,111,172,98,51,2,1,53,33,50,66,88,191,174,157,1,10,155,71,64,19,56,6,12,11,5,11,253
,154,24,24,39,26,1,9,39,61,118,78,1,36,1,92,102,171,237,254,252,237,171,102,144,9,2,11,49,12,12,13,9,83,90,122,206,1,28,1,56
,1,28,206,122,254,88,0,0,0,0,2,0,0,255,0,7,0,6,0,0,35,0,40,0,0,0,22,16,15,1,23,22,20,15,1,6,34,47,1,1
,6,43,1,5,39,19,53,52,55,1,39,38,52,63,1,54,50,31,1,55,54,9,1,39,1,21,6,68,188,94,225,104,10,10,210,10,26,10,105,253
,165,37,53,203,255,0,64,128,37,2,91,105,10,10,210,10,26,10,104,223,93,252,197,2,64,192,253,192,6,0,188,254,247,93,223,104,10,26,10,210
,10,10,105,253,165,37,128,64,1,0,203,53,37,2,91,105,10,26,10,210,10,10,104,225,94,250,64,2,64,192,253,192,192,0,2,0,0,255,0,6
,254,6,0,0,16,0,41,0,0,1,50,22,21,20,7,0,7,6,35,34,38,53,52,55,1,54,1,30,1,31,1,22,0,35,34,46,2,53,30,3
,51,50,55,62,4,6,79,70,105,45,254,180,133,97,121,126,181,92,2,126,59,252,186,39,135,83,1,4,254,245,215,123,190,115,58,7,68,56,62,15
,41,14,25,65,74,102,104,6,0,93,70,63,88,253,139,123,91,185,127,128,84,2,67,54,251,246,76,108,22,71,213,254,244,93,162,204,118,5,50,39
,34,37,66,93,59,36,15,0,0,0,5,0,0,255,0,7,0,6,0,0,45,0,111,0,127,0,143,0,159,0,0,37,17,33,17,50,62,1,55,62
,1,51,50,30,1,23,30,2,51,50,62,1,55,62,2,51,50,22,23,30,2,50,62,1,55,62,1,51,50,22,23,30,2,19,21,34,46,1,39,46
,2,35,34,14,1,7,14,2,35,34,38,39,46,2,35,34,14,1,7,14,2,35,34,38,39,46,2,35,34,14,1,7,14,1,35,53,52,54,59,1
,17,33,17,33,17,33,17,33,17,33,17,51,50,22,1,20,6,35,34,38,53,52,62,4,53,50,22,5,20,6,35,34,38,53,52,62,4,53,50,22
,5,20,6,35,34,38,53,52,62,4,53,50,22,7,0,249,0,45,80,38,28,30,43,35,24,40,22,22,29,36,80,46,45,80,36,30,21,23,39,24
,35,43,30,28,38,80,90,80,38,28,30,43,35,34,43,30,28,38,80,45,24,40,22,22,29,36,80,45,46,80,36,29,22,22,40,24,35,43,30,29
,36,80,46,45,80,36,30,21,23,39,24,35,43,30,28,38,80,45,46,80,36,29,30,43,35,112,80,64,1,0,1,0,1,0,1,0,1,0,64,80
,112,251,0,72,56,53,75,19,28,34,28,19,38,90,2,0,72,56,53,75,19,28,34,28,19,38,90,2,0,72,56,53,75,19,28,34,28,19,38,90
,128,254,128,1,128,28,27,24,27,22,14,16,19,25,26,28,29,25,25,19,16,14,22,27,24,27,28,28,27,24,27,22,22,27,24,27,28,1,64,192
,14,16,19,25,26,28,28,26,25,19,16,14,22,27,25,26,28,29,25,25,19,16,14,22,27,24,27,28,28,26,25,27,22,192,80,112,1,192,254,64
,1,192,254,64,1,192,254,64,112,3,16,77,83,75,53,29,44,24,32,31,58,38,148,76,77,83,75,53,29,44,24,32,31,58,38,148,76,77,83,75
,53,29,44,24,32,31,58,38,148,0,2,0,0,255,128,8,0,5,128,0,5,0,11,0,0,33,21,33,17,51,17,9,1,33,17,9,1,8,0,248
,0,128,6,0,1,0,249,128,1,192,2,64,128,6,0,250,128,4,0,252,128,2,64,2,64,253,192,0,0,0,3,0,0,255,128,6,192,6,0,0
,11,0,16,0,22,0,0,9,1,6,4,35,34,36,2,16,18,36,51,19,33,20,2,7,19,33,17,50,4,18,3,0,2,34,106,254,229,157,209,254
,159,206,206,1,97,209,187,3,5,120,108,164,253,0,209,1,97,206,2,134,253,222,108,120,206,1,97,1,162,1,97,206,253,0,157,254,229,106,2,162
,3,0,206,254,159,0,2,0,0,255,128,8,0,5,128,0,5,0,31,0,0,33,21,33,17,51,17,1,17,20,6,47,1,1,6,34,47,1,1,39
,1,54,50,31,1,1,39,38,54,51,33,50,22,8,0,248,0,128,7,0,39,16,121,253,135,10,26,10,233,254,96,192,2,73,10,26,10,233,1,208
,121,16,17,21,1,179,14,18,128,6,0,250,128,4,224,254,77,21,17,16,121,253,135,10,10,233,254,96,192,2,73,10,10,233,1,208,121,16,39,18
,0,0,1,0,0,0,0,7,0,4,87,0,96,0,0,1,20,23,30,3,23,4,21,20,6,35,34,46,6,39,46,3,35,34,14,1,21,20,22,51
,50,55,54,55,23,6,7,23,6,33,34,38,2,53,52,62,2,51,50,30,6,23,22,51,50,54,53,52,46,6,39,38,53,52,54,23,30,1,23,35
,30,2,23,7,38,39,53,38,35,34,6,5,12,10,10,30,52,36,37,1,69,211,149,59,105,78,76,50,57,30,49,11,32,59,88,120,82,96,174,102
,213,157,177,81,56,27,84,15,29,1,131,254,255,147,245,136,87,145,199,105,87,144,103,87,58,59,42,58,26,96,137,81,115,38,63,82,87,88,74,56
,11,3,175,111,78,85,48,1,12,22,30,4,129,26,28,23,74,49,70,3,64,6,35,29,41,27,13,10,91,241,146,193,37,54,95,80,127,79,134,28
,81,105,88,40,111,178,96,160,239,95,63,53,152,34,36,1,152,158,1,1,146,105,202,151,92,38,62,98,100,134,115,146,54,200,97,80,42,60,32,31
,23,45,59,105,70,16,17,110,164,4,3,23,42,11,27,45,5,99,49,21,1,21,66,0,0,0,2,0,0,255,128,6,0,5,128,0,87,0,103,0
,0,1,52,39,46,2,39,52,46,1,53,52,54,51,50,23,35,22,23,55,38,39,46,1,35,34,6,21,20,23,30,1,23,30,3,29,1,22,6,35
,34,39,46,5,35,34,14,1,23,21,30,2,51,50,55,54,55,39,14,1,35,34,38,53,52,54,51,50,22,23,30,7,51,50,54,19,17,20,6,35
,33,34,38,53,17,52,54,51,33,50,22,5,152,234,35,36,40,9,4,2,49,36,54,17,1,20,19,93,39,10,33,69,51,80,124,2,16,97,100,29
,40,50,27,1,83,59,97,70,23,57,39,69,79,128,83,101,182,106,3,4,93,174,109,186,93,20,11,60,42,114,89,115,152,164,104,112,116,46,8,35
,22,41,36,55,56,76,42,107,152,104,169,119,252,64,119,169,169,119,3,192,119,169,1,228,173,66,10,13,37,28,2,13,11,2,36,47,15,15,36,71
,54,10,29,20,115,80,7,16,96,88,29,8,15,28,41,26,5,58,70,144,47,149,102,119,72,49,112,184,100,1,108,182,113,110,27,24,109,80,72,174
,117,105,168,107,119,21,95,58,91,57,68,39,27,139,2,229,252,64,119,169,169,119,3,192,119,169,169,0,0,0,3,0,0,0,0,8,0,5,0,0
,15,0,31,0,51,0,0,0,52,46,2,34,14,2,20,30,2,50,62,1,36,52,46,2,35,33,22,18,16,2,7,33,50,62,1,18,16,14,2,35
,33,34,46,2,16,62,2,51,33,50,30,1,4,128,81,138,189,208,189,138,81,81,138,189,208,189,138,3,81,81,138,189,104,254,126,119,139,139,119,1
,130,104,189,138,209,102,171,237,130,253,0,130,237,171,102,102,171,237,130,3,0,130,237,171,2,24,208,189,138,81,81,138,189,208,189,138,81,81,138,189
,208,189,138,81,90,254,244,254,204,254,244,90,81,138,1,167,254,252,237,171,102,102,171,237,1,4,237,171,102,102,171,0,0,0,2,0,0,0,0,8
,0,5,0,0,19,0,35,0,0,24,1,62,2,51,33,50,30,2,16,14,2,35,33,34,46,1,4,50,62,2,52,46,2,34,14,2,20,30,1,102
,171,237,130,3,0,130,237,171,102,102,171,237,130,253,0,130,237,171,4,178,208,189,138,81,81,138,189,208,189,138,81,81,138,1,254,1,4,237,171,102
,102,171,237,254,252,237,171,102,102,171,145,81,138,189,208,189,138,81,81,138,189,208,189,138,0,0,5,0,0,0,0,9,0,5,0,0,14,0,18,0
,24,0,44,0,92,0,0,1,33,34,38,63,1,38,35,34,6,16,22,51,50,54,39,51,38,39,5,1,33,7,22,23,4,16,38,35,34,7,19,22
,6,7,6,35,34,39,3,6,21,20,22,32,0,16,0,32,0,53,52,54,55,39,1,6,43,1,14,1,35,34,0,16,0,51,50,23,55,35,34,38
,52,54,51,33,21,33,39,35,34,38,52,54,51,33,50,23,1,54,51,50,2,250,254,198,40,35,24,188,65,72,132,188,188,132,115,176,163,186,18,57
,1,113,1,32,254,32,99,105,21,5,5,188,132,60,61,174,15,10,22,15,21,35,18,174,93,188,1,8,1,60,254,249,254,142,254,249,79,70,65,254
,159,18,33,197,23,252,168,185,254,249,1,7,185,114,101,137,224,26,38,38,26,1,128,1,179,85,222,26,38,38,26,1,0,33,20,1,11,91,101,185
,1,128,70,32,251,31,188,254,248,188,145,239,85,63,148,1,128,132,103,149,196,1,8,188,24,254,252,23,52,14,11,29,1,4,95,130,132,188,1,249
,254,142,254,249,1,7,185,97,173,63,98,254,43,26,164,220,1,7,1,114,1,7,55,183,38,52,38,128,128,38,52,38,28,254,112,44,0,0,5,0
,0,255,0,6,0,6,0,0,7,0,15,0,31,0,43,0,75,0,0,0,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,19,3,46,1,35
,33,34,6,7,3,6,22,51,33,50,54,2,52,38,35,33,34,6,20,22,51,33,50,1,17,35,21,20,6,34,38,61,1,33,21,20,6,34,38,61
,1,35,17,52,55,19,62,1,36,32,4,22,23,19,22,1,128,75,106,75,75,106,4,75,75,106,75,75,106,29,72,5,35,23,252,106,23,35,5,72
,5,38,30,4,38,30,38,231,28,20,253,128,20,28,28,20,2,128,20,1,172,128,75,106,75,253,0,75,106,75,128,25,103,9,177,1,27,1,86,1
,27,177,9,105,23,1,11,106,75,75,106,75,75,106,75,75,106,75,2,12,1,128,23,29,29,23,254,128,30,46,46,2,110,40,28,28,40,28,253,91
,253,165,128,53,75,75,53,128,128,53,75,75,53,128,2,91,112,111,1,198,78,118,60,60,118,78,254,58,102,0,3,0,0,255,136,8,0,5,248,0
,11,0,46,0,82,0,0,0,20,6,35,33,34,38,52,54,51,33,50,5,52,39,33,34,38,53,52,54,51,33,38,36,35,34,4,2,21,20,23,33
,50,22,21,20,6,35,33,22,4,51,50,62,2,1,20,6,43,1,22,21,20,2,6,4,35,34,0,39,35,34,38,53,52,54,59,1,38,53,52,18
,54,36,51,50,0,23,51,50,22,5,183,50,36,253,66,36,50,50,36,2,190,36,1,8,23,252,42,36,50,50,36,3,140,88,254,218,173,177,254,211
,175,23,3,214,36,50,50,36,252,116,88,1,39,173,132,242,174,104,1,115,50,36,131,17,131,220,254,207,167,246,254,107,99,189,36,50,50,36,132,17
,131,220,1,49,168,245,1,149,99,188,36,50,2,227,70,51,51,70,51,86,86,84,50,35,36,50,143,168,175,254,212,177,86,84,50,35,36,50,143,168
,103,175,241,1,132,35,50,85,85,167,254,207,221,131,1,10,217,50,36,35,50,85,85,167,1,49,221,131,254,246,217,50,0,0,6,0,11,255,0,4
,245,6,0,0,7,0,15,0,27,0,44,0,117,0,163,0,0,1,3,23,18,53,52,35,34,1,22,23,54,55,46,2,1,20,19,54,51,50,23,3
,38,35,34,6,3,20,30,1,51,50,54,53,52,39,46,3,35,34,6,3,20,23,30,1,51,50,55,54,17,52,46,1,39,38,36,35,34,7,6,21
,20,30,4,55,50,51,50,23,22,23,6,7,6,7,14,1,21,20,22,21,7,6,21,38,39,6,35,22,21,20,6,35,34,38,53,52,55,22,23,22
,51,50,54,53,52,38,35,34,6,7,52,54,55,38,53,52,54,51,50,23,2,53,52,54,51,50,19,22,23,62,5,51,50,22,21,20,3,30,3,21
,20,2,14,1,35,34,39,38,2,3,185,114,117,165,38,57,254,140,30,3,37,34,12,42,35,254,205,159,17,32,15,60,121,75,48,19,20,79,103,132
,34,14,23,32,13,38,57,66,29,20,51,158,25,59,249,157,227,155,152,2,21,20,56,254,201,115,37,12,12,43,68,87,88,82,29,16,7,24,16,15
,4,28,68,61,32,64,89,37,3,4,137,9,8,33,2,81,54,82,169,33,52,8,77,56,12,29,175,29,43,54,114,85,94,28,122,61,29,41,163,82
,78,131,194,6,2,6,46,41,67,62,79,37,71,82,159,61,79,38,14,94,170,252,152,111,112,149,218,4,134,254,184,21,1,195,67,56,252,112,80,8
,42,25,2,7,7,3,133,98,254,89,10,5,1,95,220,35,252,245,36,166,140,26,14,24,78,32,80,98,64,54,254,157,41,63,145,164,170,169,1,2
,43,48,76,18,49,53,11,5,30,34,52,28,19,4,4,2,19,19,36,28,26,22,24,46,136,69,31,115,30,12,12,2,10,206,2,7,14,53,73,156
,81,34,33,64,12,104,17,12,34,222,89,55,101,124,26,74,30,62,122,15,1,206,105,80,101,253,187,17,6,16,127,110,145,101,72,98,73,108,254,70
,15,62,94,93,64,150,254,252,190,110,42,57,1,13,0,0,0,0,4,0,0,255,128,8,0,5,128,0,26,0,54,0,91,0,95,0,0,1,51,14
,1,35,34,38,53,52,54,51,50,22,23,35,46,1,35,34,6,21,20,30,2,51,50,37,51,14,1,35,34,38,53,52,54,51,50,22,23,35,46,1
,35,34,6,21,20,30,2,51,50,54,37,52,38,39,46,2,39,38,33,32,7,14,2,7,14,1,21,20,22,23,30,2,23,22,4,33,32,55,62,2
,55,62,1,19,17,33,17,3,17,207,14,169,130,162,185,186,140,148,168,13,203,5,61,51,57,63,10,26,54,39,95,2,214,206,14,168,130,162,185,186
,140,148,168,13,204,4,62,50,57,63,10,26,53,39,49,55,1,109,31,45,6,15,28,2,86,253,157,253,143,85,5,25,17,6,45,30,30,45,6,18
,23,6,44,1,135,1,19,2,98,87,5,24,17,5,46,30,192,248,0,2,16,158,181,232,200,194,235,174,160,64,70,121,117,48,72,67,36,139,158,181
,232,200,194,235,174,160,64,70,121,117,48,72,67,36,76,182,207,200,61,8,12,18,2,63,63,4,15,13,8,60,199,209,208,199,61,8,14,14,5,33
,32,65,4,14,14,9,60,198,3,203,250,0,6,0,0,0,0,0,2,0,0,0,0,5,96,5,128,0,29,0,59,0,0,1,17,20,6,43,1,34
,38,53,17,52,38,35,33,17,20,6,43,1,34,38,53,17,52,54,51,33,50,30,1,1,17,20,14,1,35,33,34,38,53,17,52,54,59,1,50,22
,21,17,33,50,54,53,17,52,54,59,1,50,22,3,224,18,14,160,14,18,160,112,254,240,18,14,160,14,18,18,14,1,208,135,228,133,1,128,133,228
,135,254,48,14,18,18,14,160,14,18,1,16,112,160,18,14,160,14,18,3,144,254,16,14,18,18,14,1,240,112,160,251,128,14,18,18,14,5,64,14
,18,133,228,1,73,252,144,135,228,133,18,14,3,192,14,18,18,14,253,0,160,112,3,112,14,18,18,0,0,0,4,0,0,255,128,6,0,5,128,0
,15,0,62,0,83,0,99,0,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,5,53,52,38,43,1,34,7,38,43,1,34,6,29,1
,20,59,1,50,61,1,52,54,59,1,50,22,29,1,20,59,1,50,61,1,52,54,59,1,50,22,29,1,20,59,1,50,37,53,52,38,35,33,34,6
,21,17,20,59,1,50,61,1,22,59,1,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,31,27,24,202,24,28,28,24,202,24
,27,254,22,65,53,133,68,28,28,68,130,53,65,21,55,22,27,25,94,24,28,21,54,22,28,24,97,24,27,22,55,21,2,77,66,53,254,248,53,66
,22,55,21,31,63,191,53,66,126,136,96,251,208,96,136,136,96,4,48,96,136,2,182,114,24,28,28,24,114,24,28,28,254,250,53,65,52,52,65,53
,250,22,22,230,24,28,28,24,230,22,22,230,24,28,28,24,230,22,118,154,53,65,65,53,254,102,21,21,180,42,65,2,157,251,208,96,136,136,96,4
,48,96,136,136,0,0,3,0,0,255,128,6,0,5,128,0,2,0,9,0,25,0,0,1,33,27,1,33,1,33,1,33,9,1,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,3,147,254,218,147,233,1,55,254,188,254,72,254,188,1,55,1,127,2,106,170,118,252,64,118,170,170,118,3,192,118
,170,1,194,2,39,252,151,4,0,252,0,1,58,2,166,252,64,118,170,170,118,3,192,118,170,170,0,0,0,0,23,0,0,255,0,8,0,6,0,0
,77,0,85,0,97,0,104,0,109,0,114,0,120,0,127,0,132,0,137,0,145,0,150,0,156,0,160,0,164,0,167,0,170,0,175,0,184,0,187,0
,190,0,193,0,203,0,0,1,20,6,7,3,22,21,20,6,7,3,22,21,20,6,35,34,39,33,6,34,39,33,6,35,34,38,53,52,55,3,46,1
,53,52,55,3,46,1,53,52,54,55,19,52,38,53,52,55,19,38,53,52,54,51,50,23,33,54,50,23,33,54,51,50,22,21,20,7,19,30,1,21
,20,7,19,30,1,1,33,1,35,1,33,54,50,1,22,21,20,7,19,23,55,17,39,6,7,1,33,23,37,33,6,34,1,54,55,39,7,35,55,3
,1,23,1,55,19,33,1,54,5,51,1,33,17,23,22,3,33,55,1,15,1,51,53,7,22,17,20,22,21,20,7,23,17,55,17,23,1,47,1,7
,17,55,39,6,37,35,5,23,21,9,2,37,39,17,5,7,51,1,23,19,47,2,38,61,1,3,38,39,9,2,53,3,19,35,19,1,7,63,1,19
,38,53,52,55,11,1,23,54,8,0,26,20,205,3,25,20,193,3,33,24,25,16,254,112,17,52,17,254,113,17,26,23,34,4,193,20,25,3,206,20
,25,27,20,199,1,34,209,4,34,23,26,18,1,140,16,54,16,1,142,18,26,23,34,4,207,23,32,7,187,19,25,252,39,1,133,254,170,143,254,170
,1,104,18,42,252,91,1,2,208,15,188,187,13,16,2,168,254,124,190,2,42,254,232,16,44,2,175,1,4,64,17,30,22,252,254,216,63,1,119,16
,65,254,85,1,77,8,252,112,5,1,86,254,139,4,14,18,1,146,64,254,203,157,193,163,168,4,1,8,171,30,153,1,41,223,223,4,205,191,6,3
,119,16,253,147,213,254,215,1,55,1,40,253,123,136,1,230,42,85,1,37,238,132,3,1,22,8,216,5,8,254,75,1,54,252,192,163,163,163,163,4
,61,48,130,40,207,2,3,171,129,77,5,2,129,21,31,4,254,156,9,9,20,31,4,254,175,8,8,23,34,18,20,20,20,33,24,8,12,1,79,4
,31,20,9,9,1,100,5,31,20,21,31,4,1,88,1,4,1,36,15,1,107,10,8,24,33,21,21,21,21,33,24,6,12,254,154,1,33,22,13,14
,254,188,4,31,252,205,1,98,254,158,16,3,28,4,9,10,5,254,152,6,199,1,91,194,8,2,1,192,200,200,16,251,84,6,5,68,79,105,1,10
,254,205,64,254,144,28,1,54,254,169,4,15,1,98,254,177,6,5,1,120,66,1,65,166,221,189,177,8,3,53,1,2,1,16,13,177,1,13,11,254
,201,157,1,58,236,222,8,254,248,74,201,2,12,224,225,43,254,197,254,193,1,51,15,141,254,228,221,44,1,136,251,2,112,5,1,21,13,16,2,1
,120,1,4,254,49,254,185,1,246,223,254,230,252,137,254,229,1,27,227,227,70,1,105,10,4,1,15,1,40,253,156,82,3,0,2,0,0,255,0,5
,128,6,0,0,13,0,27,0,0,17,52,54,51,33,1,17,20,6,35,33,34,38,53,37,39,17,52,38,35,33,34,6,21,17,20,22,51,183,131,2
,230,1,96,183,131,252,244,131,183,4,208,176,64,46,254,28,46,64,65,45,3,88,131,191,1,102,250,66,132,190,190,132,36,180,1,169,46,66,66,46
,254,20,46,67,0,0,4,0,0,255,131,6,0,5,125,0,10,0,20,0,30,0,41,0,0,1,4,0,3,38,53,52,18,36,51,50,5,22,23,4
,0,3,38,39,18,0,1,18,0,37,22,23,4,0,3,38,5,38,39,6,7,54,0,55,6,7,22,3,166,254,195,254,34,119,20,205,1,96,208,82
,1,100,93,71,254,123,253,197,111,93,62,112,2,54,254,163,115,2,17,1,99,40,14,254,220,254,64,119,103,3,207,193,174,135,155,109,1,74,204,21
,80,65,5,106,121,254,29,254,193,89,87,208,1,97,205,138,65,90,113,253,193,254,123,72,90,1,130,2,58,251,60,1,100,2,20,118,92,103,120,254
,62,254,219,14,20,50,65,84,23,205,1,75,110,152,132,175,0,0,3,0,0,255,128,8,0,4,247,0,22,0,43,0,59,0,0,1,19,34,39,38
,35,34,7,38,35,34,7,6,43,1,19,54,33,50,23,54,51,32,1,50,22,23,3,38,35,34,7,38,35,34,7,3,62,2,51,50,23,54,55,3
,6,7,38,35,34,7,3,62,1,51,50,23,54,23,7,101,155,131,126,200,193,226,148,148,226,193,200,128,124,5,155,224,1,2,233,154,154,233,1,2
,254,241,129,206,157,124,171,197,224,150,150,224,197,171,124,105,121,176,90,202,172,172,242,55,211,148,152,222,176,160,114,124,209,117,209,165,172,202,4,120
,251,8,57,91,148,148,91,57,4,248,127,106,106,251,166,57,65,3,253,78,141,141,78,252,3,43,44,35,108,108,34,3,139,4,151,155,66,252,83,51
,50,102,107,5,0,0,5,0,0,255,165,8,0,5,91,0,15,0,31,0,47,0,63,0,92,0,0,37,17,52,38,43,1,34,6,21,17,20,22,59
,1,50,54,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,52,38,43
,1,34,6,21,17,20,22,59,1,50,54,37,20,6,35,33,34,38,53,52,54,55,38,53,52,54,51,50,23,54,36,51,50,30,1,21,20,7,30,1
,5,220,30,20,93,20,30,30,20,93,20,30,254,228,30,20,101,20,30,30,20,101,20,30,254,220,30,20,101,20,30,30,20,101,20,30,254,220,30,20
,101,20,30,30,20,101,20,30,5,136,236,166,251,36,166,236,126,105,10,161,113,102,78,45,1,42,189,149,252,147,14,135,172,165,2,221,21,30,30,21
,253,35,20,30,30,20,2,19,20,30,30,20,253,237,20,30,30,20,1,173,20,30,30,20,254,83,20,30,30,20,1,106,20,30,30,20,254,150,20,30
,30,166,166,236,236,166,116,197,50,34,39,113,161,67,183,234,147,252,149,66,56,33,219,0,0,0,39,0,0,255,62,6,0,6,0,0,4,0,9,0
,13,0,17,0,21,0,25,0,29,0,33,0,37,0,41,0,45,0,49,0,53,0,57,0,61,0,65,0,69,0,73,0,77,0,81,0,85,0,89,0
,93,0,97,0,103,0,107,0,111,0,115,0,119,0,123,0,127,0,133,0,137,0,141,0,145,0,149,0,153,0,165,0,213,0,0,17,33,17,9,1
,37,17,33,17,9,1,53,33,21,19,21,35,53,23,21,35,53,23,21,35,53,23,21,35,53,23,21,35,53,23,55,23,7,23,55,23,7,23,55,23
,7,23,55,23,7,63,1,23,7,63,1,23,7,63,1,23,7,63,1,23,7,1,21,35,53,33,21,35,53,33,21,35,53,33,21,35,53,33,21,35
,53,33,21,35,53,33,21,35,53,33,21,35,53,1,21,35,53,51,21,55,21,35,53,33,21,35,53,33,21,35,53,33,21,35,53,33,21,35,53,33
,21,35,53,23,53,35,53,51,21,7,53,51,21,7,53,51,21,7,53,51,21,7,53,51,21,7,53,51,21,37,34,38,53,52,54,51,50,22,21,20
,6,1,20,30,2,54,22,21,20,35,34,39,35,7,22,51,50,62,2,53,52,46,1,6,38,53,52,62,1,51,50,22,23,51,55,46,6,35,34,14
,2,6,0,252,248,253,8,5,156,250,200,2,149,2,163,250,200,81,37,37,37,37,37,37,37,37,37,63,15,105,15,31,15,105,15,30,15,105,15,31
,15,104,15,79,105,15,105,120,105,15,105,121,105,15,105,120,105,15,105,252,65,114,1,20,115,1,21,115,1,20,114,1,20,114,1,20,115,1,21,115
,1,20,114,251,184,37,115,162,115,1,21,115,1,20,114,1,20,114,1,20,115,1,21,115,240,78,115,37,37,37,37,37,37,37,37,37,37,253,136,129
,184,184,129,130,183,183,254,217,39,60,68,60,39,112,97,26,3,31,67,95,29,55,56,35,55,80,79,55,41,40,21,34,73,15,3,30,3,36,9,30
,14,26,22,12,29,55,53,33,6,0,250,144,254,174,1,82,65,3,158,252,98,254,218,5,40,201,201,254,214,115,115,148,115,115,148,115,115,148,115,115
,148,115,115,143,34,47,33,14,34,46,34,14,34,46,34,13,33,46,34,34,46,33,47,94,46,34,46,94,46,34,46,93,47,34,46,4,209,36,36,36
,36,36,36,36,36,36,36,36,36,36,36,36,36,254,172,79,115,36,36,36,36,36,36,36,36,36,36,36,36,36,36,115,79,36,115,148,115,115,148,115
,115,148,115,115,148,115,115,148,115,115,35,183,130,129,184,184,129,130,183,1,125,36,41,9,5,1,19,21,49,51,63,42,10,22,44,31,46,47,7,1
,11,20,21,24,6,22,23,58,1,15,3,11,3,6,2,10,23,45,0,0,0,0,3,0,0,255,115,8,0,5,141,0,7,0,16,0,42,0,0,0
,52,38,34,6,20,22,50,36,52,38,34,6,21,20,22,50,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,29,1,33,53,52,54,51,33
,50,22,3,95,159,224,158,158,224,3,254,158,224,159,159,224,1,224,63,45,248,216,45,63,63,45,1,175,44,64,2,242,64,44,1,175,45,63,1,136
,224,159,159,224,158,159,224,158,158,112,113,158,4,56,250,188,44,63,63,44,5,68,44,63,63,44,161,161,44,63,63,0,0,0,2,0,0,0,40,8
,0,4,217,0,0,0,90,0,0,1,5,50,22,21,20,6,35,34,46,7,35,34,6,21,20,22,51,50,54,55,62,2,51,50,22,21,20,7,6,4
,35,34,46,1,53,52,0,51,50,30,5,51,50,54,53,52,38,35,34,6,35,34,38,53,52,54,53,52,38,35,34,14,2,35,34,38,53,52,55,62
,1,51,50,22,21,20,7,54,5,150,1,4,148,210,218,158,85,154,122,114,104,103,114,120,152,83,154,195,208,159,100,216,85,5,32,28,8,14,21,60
,101,254,245,127,133,225,135,1,27,206,120,213,158,145,133,134,165,90,102,133,129,95,30,103,17,20,31,17,215,159,58,107,61,50,8,15,21,25,59,176
,94,191,254,4,57,3,185,204,197,146,157,209,55,92,120,132,133,120,92,55,183,153,157,186,75,61,4,29,19,21,14,24,53,88,108,116,214,134,205,1
,16,87,139,167,168,139,87,123,101,95,128,37,30,20,18,78,20,159,208,37,44,37,21,15,19,27,67,73,251,190,37,29,15,0,4,0,0,255,128,6
,128,5,0,0,27,0,35,0,43,0,87,0,0,0,52,38,43,1,53,52,38,34,6,29,1,35,34,6,20,22,59,1,21,20,22,50,54,61,1,51
,50,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,19,17,20,6,7,5,30,2,21,20,7,33,50,22,20,6,35,33,34,38,53,52,62
,1,55,3,35,34,38,52,54,51,33,50,30,4,23,33,50,22,4,192,38,26,128,38,52,38,128,26,38,38,26,128,38,52,38,128,26,253,230,75,106
,75,75,106,3,203,75,106,75,75,106,203,32,25,251,236,1,7,5,24,3,152,26,38,38,26,252,0,26,38,22,37,2,177,204,26,38,38,26,1,0
,16,25,15,11,4,7,1,4,177,26,38,3,38,52,38,128,26,38,38,26,128,38,52,38,128,26,38,38,26,128,253,53,106,75,75,106,75,75,106,75
,75,106,75,3,192,254,0,24,37,3,122,7,29,24,10,16,48,38,52,38,38,26,14,51,68,4,3,55,38,52,38,13,18,31,22,37,7,38,0,0
,0,0,4,0,0,255,128,6,128,5,0,0,23,0,31,0,39,0,83,0,0,0,52,38,34,15,1,17,52,38,34,6,21,17,39,38,34,6,20,23
,1,22,50,55,1,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,19,17,20,6,7,5,30,2,21,20,7,33,50,22,20,6,35,33,34
,38,53,52,62,1,55,3,35,34,38,52,54,51,33,50,30,4,23,33,50,22,5,0,38,52,19,147,38,52,38,147,19,52,38,19,1,0,19,52,19
,1,0,253,147,75,106,75,75,106,3,203,75,106,75,75,106,203,32,25,251,236,1,7,5,24,3,152,26,38,38,26,252,0,26,38,22,37,2,177,204
,26,38,38,26,1,0,16,25,15,11,4,7,1,4,177,26,38,3,38,52,38,19,146,1,37,26,38,38,26,254,219,146,19,38,52,19,255,0,19,19
,1,0,253,34,106,75,75,106,75,75,106,75,75,106,75,3,192,254,0,24,37,3,122,7,29,24,10,16,48,38,52,38,38,26,14,51,68,4,3,55
,38,52,38,13,18,31,22,37,7,38,0,0,0,0,7,0,0,255,0,8,0,5,128,0,2,0,5,0,9,0,12,0,16,0,20,0,38,0,0,19
,9,3,33,39,19,33,9,2,33,37,33,3,33,1,33,1,33,37,1,22,6,7,1,6,34,39,1,46,1,55,1,54,51,33,50,212,2,111,254,212
,1,233,1,93,253,70,137,204,254,250,254,224,3,253,2,111,254,189,252,194,2,170,204,254,238,2,111,1,90,254,224,254,250,1,89,1,128,14,2,16
,252,64,18,58,18,252,64,16,2,14,1,128,18,33,4,128,33,3,0,253,103,2,153,252,252,3,4,128,1,128,254,128,252,231,2,153,128,1,128,254
,128,1,128,102,254,0,18,47,17,252,0,20,20,4,0,17,47,18,2,0,26,0,3,0,19,255,0,7,237,6,0,0,73,0,151,0,160,0,0,5
,54,50,31,1,7,39,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47
,1,55,23,55,54,50,31,1,55,54,50,31,1,55,54,50,31,1,55,54,50,31,1,55,54,50,31,1,55,54,50,31,1,37,6,34,47,1,55,23
,55,54,50,31,1,55,17,3,38,54,63,1,17,51,53,33,53,33,21,33,21,51,17,23,30,1,7,3,17,55,54,50,31,1,55,54,50,31,1,7
,39,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,7,6,34,47,1,1,21,37,5,53,35,53,33,21
,7,19,19,52,19,128,90,83,83,18,54,18,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19
,52,19,128,90,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,250,45,19,52,19
,128,90,83,83,19,52,19,83,64,210,17,20,30,177,128,1,0,1,0,1,0,128,177,30,20,17,210,19,19,52,19,83,83,19,52,19,128,90,83,83
,18,54,18,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,83,19,52,19,83,1,64,1,128,1,128,128,254,0,19,19
,19,128,90,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,128,90,83,83,19,19,83,83,19
,19,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,83,121,19,19,128,90,82,82,19,19,82,64,1,37,1,58,26,61,10,58,1,43,128
,128,128,128,254,213,58,10,61,26,254,198,254,219,18,19,19,82,82,19,19,128,90,83,83,19,19,83,83,19,19,83,83,19,19,83,83,19,19,83,83
,19,19,83,83,19,19,83,4,26,128,128,128,128,128,128,0,0,0,4,0,0,255,128,5,128,6,0,0,3,0,7,0,67,0,118,0,0,33,19,47
,1,1,19,15,1,1,38,39,38,35,34,7,6,34,39,38,35,34,7,6,7,22,23,30,1,23,30,9,51,50,62,3,59,1,50,30,3,51,50,62
,8,55,62,1,55,54,1,20,6,35,33,34,38,53,52,62,3,55,39,51,38,53,52,55,38,53,52,55,62,1,55,54,51,50,22,50,54,51,50,23
,30,1,23,22,21,20,7,22,7,51,7,30,3,2,64,96,96,128,1,128,128,128,96,1,0,2,2,10,86,70,97,7,28,7,97,70,86,10,2,2
,2,2,2,11,2,2,11,3,12,5,13,11,17,18,23,13,36,46,19,10,13,11,12,11,13,10,19,46,36,13,23,18,17,11,13,5,12,3,11,2
,2,11,2,2,1,162,146,121,252,150,121,146,9,29,46,81,53,90,214,22,2,194,210,17,69,36,32,44,30,108,60,108,30,44,32,36,69,17,210,194
,7,27,214,82,63,89,42,16,1,192,128,64,253,128,2,128,64,128,2,50,4,2,8,19,2,2,19,8,2,4,18,9,3,7,7,4,33,8,26,8
,20,7,12,4,4,25,35,34,25,25,34,35,25,4,4,12,7,20,8,26,8,33,4,7,7,3,9,252,163,121,138,138,121,61,114,137,110,97,26,220
,64,64,12,20,40,56,57,42,62,144,42,37,62,62,37,42,144,62,42,57,56,40,81,79,225,33,127,160,143,0,3,0,0,0,0,8,253,5,0,0
,76,0,92,0,112,0,0,1,22,14,2,39,46,1,39,38,54,55,39,14,1,21,20,6,35,33,35,14,1,35,34,0,16,0,51,50,23,55,38,43
,1,34,38,52,54,59,1,50,30,2,23,33,51,39,35,34,38,55,62,1,59,1,50,31,1,55,54,59,1,50,22,29,1,20,6,43,1,23,54,23
,30,1,1,50,54,55,33,34,39,38,55,19,38,35,34,6,16,22,40,1,54,16,38,35,34,7,19,22,6,7,6,35,34,39,3,6,21,20,8,253
,12,68,130,187,103,161,237,16,12,79,79,71,96,110,37,27,255,0,69,23,252,168,185,254,249,1,7,185,76,76,24,123,181,64,26,38,38,26,128,78
,134,99,44,29,2,0,115,85,222,30,38,5,4,38,24,253,33,20,70,114,19,27,101,26,38,38,26,179,115,131,144,143,202,248,212,115,176,23,254,198
,35,20,18,17,147,47,44,132,188,188,5,128,1,8,188,188,132,60,61,174,15,10,22,15,21,35,18,174,93,1,244,103,191,136,76,7,11,228,160,111
,199,71,107,80,228,130,27,39,164,220,1,7,1,114,1,7,27,45,110,38,52,38,27,50,29,22,128,45,30,23,30,28,105,114,19,38,26,128,26,38
,172,63,27,26,217,253,251,145,111,31,32,31,1,21,13,188,254,248,188,188,1,8,188,24,254,252,23,52,14,11,29,1,4,95,130,132,0,0,3,0
,0,255,0,5,128,5,224,0,53,0,79,0,87,0,0,33,20,14,2,32,46,2,53,52,62,2,55,54,22,23,22,6,7,14,4,7,30,4,50,62
,3,55,46,4,39,46,1,55,62,1,23,30,3,1,17,20,6,43,1,17,20,6,35,33,34,38,53,17,35,34,38,53,17,52,54,51,33,50,22,2
,20,6,34,38,52,54,50,5,128,123,205,245,254,250,245,205,123,66,116,120,71,26,44,4,5,31,26,58,96,57,40,15,1,3,48,98,130,191,212,191
,130,98,48,3,1,15,40,57,96,58,26,31,5,4,44,26,71,120,116,66,254,128,38,26,64,38,26,255,0,26,38,64,26,38,75,53,1,128,53,75
,96,131,186,131,131,186,63,101,61,31,31,61,101,63,49,79,54,35,12,5,31,26,26,44,4,10,27,24,23,16,4,11,31,35,30,20,20,30,36,31
,12,4,14,24,23,27,10,4,44,26,26,31,5,12,35,54,79,3,79,254,128,26,38,254,128,26,38,38,26,1,128,38,26,1,128,53,75,75,1,168
,186,131,131,186,131,0,2,0,0,255,128,7,0,5,128,0,27,0,63,0,0,1,33,14,1,15,1,1,6,34,39,1,38,39,33,50,54,55,27,1
,30,1,51,50,54,55,19,23,22,1,20,7,33,39,46,1,7,6,7,11,1,46,1,34,6,7,3,33,38,53,52,54,51,50,30,2,23,62,3,51
,50,22,5,0,1,49,5,10,4,3,253,145,18,52,18,253,144,5,16,1,113,22,35,5,70,190,6,34,22,21,34,6,146,56,18,2,39,103,254,143
,111,8,35,19,45,11,129,196,6,35,44,34,5,116,254,89,103,254,224,62,129,111,80,36,36,80,111,129,62,224,254,2,0,6,9,3,4,253,168,18
,18,2,90,2,18,27,21,1,25,253,101,20,26,26,20,1,229,112,35,1,172,145,155,221,17,20,2,5,41,254,82,2,174,20,26,27,21,254,48,155
,145,220,248,43,73,64,36,36,64,73,43,248,0,0,2,0,2,255,0,4,128,5,252,0,43,0,51,0,0,1,20,0,7,17,51,50,22,29,1,20
,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,17,46,1,2,55,62,2,55,54,4,18,36,16,0,32,0,16,0,32
,4,128,254,217,217,224,14,18,18,14,224,18,14,64,14,18,224,14,18,18,14,224,150,243,129,12,11,139,225,133,170,1,42,174,252,0,1,7,1,114
,1,7,254,249,254,142,3,192,221,254,185,24,254,252,18,14,64,14,18,224,14,18,18,14,224,18,14,64,14,18,1,4,16,174,1,18,155,134,230,146
,15,19,146,254,234,18,254,142,254,249,1,7,1,114,1,7,0,0,2,0,0,255,128,6,0,5,128,0,39,0,47,0,0,1,50,22,21,17,20,6
,43,1,34,38,53,17,1,22,21,20,14,2,34,46,2,52,62,2,51,50,23,1,33,34,38,61,1,52,54,51,0,32,0,16,0,32,0,16,5,192
,26,38,18,14,64,14,18,254,130,126,91,155,213,234,213,155,91,91,155,213,117,203,156,1,126,254,251,14,18,18,14,253,103,1,114,1,7,254,249,254
,142,254,249,5,128,38,26,254,96,14,18,18,14,1,6,254,129,156,203,117,213,155,91,91,155,213,234,213,155,91,126,1,126,18,14,64,14,18,250,128
,1,7,1,114,1,7,254,249,254,142,0,0,0,0,2,0,0,255,0,4,128,6,0,0,61,0,69,0,0,1,22,18,21,20,0,7,21,51,50,22
,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,38,0,53,52,18,55,38,39,38,54,59,1,50,23,30
,1,50,54,55,54,59,1,50,22,7,6,0,32,0,16,0,32,0,16,3,62,145,177,254,217,217,96,14,18,18,14,96,18,14,64,14,18,96,14,18
,18,14,96,217,254,217,177,145,165,63,6,19,17,69,21,8,44,192,236,192,44,8,29,61,17,19,6,63,253,164,1,114,1,7,254,249,254,142,254,249
,4,196,72,254,235,167,221,254,185,24,132,18,14,64,14,18,96,14,18,18,14,96,18,14,64,14,18,132,24,1,71,221,167,1,21,72,96,177,16,27
,20,106,130,130,106,20,27,16,177,251,220,1,7,1,114,1,7,254,249,254,142,0,2,0,2,255,0,5,128,6,0,0,66,0,74,0,0,1,52,54
,51,33,50,22,21,17,20,6,43,1,34,38,61,1,7,22,21,20,0,7,21,51,50,22,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,35
,34,38,61,1,52,54,59,1,53,46,1,2,55,54,0,55,54,22,23,37,35,34,38,53,0,32,0,16,0,32,0,16,4,0,18,14,1,32,26,38
,18,14,64,14,18,254,126,254,217,217,96,14,18,18,14,96,18,14,64,14,18,96,14,18,18,14,96,149,243,130,12,16,1,32,203,118,220,88,0,255
,134,14,18,253,135,1,114,1,7,254,249,254,142,254,249,5,224,14,18,38,26,254,224,14,18,18,14,134,255,158,201,221,254,185,24,132,18,14,64,14
,18,96,14,18,18,14,96,18,14,64,14,18,132,16,174,1,17,155,204,1,43,23,14,66,70,254,18,14,251,96,1,7,1,114,1,7,254,249,254,142
,0,0,2,0,0,255,0,6,128,6,0,0,107,0,115,0,0,1,52,54,51,33,50,22,21,17,20,6,43,1,34,38,61,1,7,22,21,20,0,7
,21,51,50,22,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,38,0,53,52,55,39,7,14,1,47,1
,46,1,63,1,39,21,20,6,43,1,34,38,53,17,52,54,51,33,50,22,29,1,20,6,43,1,23,55,62,1,31,1,30,1,15,1,23,54,32,23
,37,35,34,38,53,0,32,0,16,0,32,0,16,5,0,18,14,1,32,26,38,18,14,64,14,18,254,126,254,217,217,96,14,18,18,14,96,18,14,64
,14,18,96,14,18,18,14,96,217,254,217,126,52,101,9,26,10,48,10,1,9,105,111,18,14,64,14,18,38,26,1,32,14,18,18,14,133,106,86,9
,26,10,48,10,1,9,90,57,158,1,146,158,0,255,134,14,18,253,135,1,114,1,7,254,249,254,142,254,249,5,224,14,18,38,26,254,224,14,18,18
,14,134,255,158,201,221,254,185,24,132,18,14,64,14,18,96,14,18,18,14,96,18,14,64,14,18,132,24,1,71,221,201,158,53,111,10,1,8,44,8
,27,10,115,112,134,14,18,18,14,1,32,26,38,18,14,64,14,18,107,94,10,1,8,44,8,27,10,99,56,126,126,254,18,14,251,96,1,7,1,114
,1,7,254,249,254,142,0,0,0,0,5,0,2,255,0,6,254,5,253,0,56,0,62,0,75,0,82,0,95,0,0,1,22,2,6,7,17,51,50,22
,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,33,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,17,46,1,2,55,54
,0,55,54,23,54,23,22,0,1,54,16,39,6,16,3,50,55,38,53,52,55,38,35,34,0,16,0,1,17,38,39,6,7,17,1,50,0,16,0,35
,34,7,22,21,20,7,22,6,254,12,129,243,150,224,14,18,18,14,224,18,14,64,14,18,254,0,18,14,64,14,18,224,14,18,18,14,224,150,243,129
,12,17,1,39,205,206,171,171,206,205,1,39,252,147,128,128,128,192,115,103,154,154,103,115,185,254,249,1,7,2,249,137,119,119,137,2,64,185,1,7
,254,249,185,115,103,154,154,103,3,239,155,254,238,174,16,254,252,18,14,64,14,18,224,14,18,18,14,224,224,14,18,18,14,224,18,14,64,14,18,1
,4,16,174,1,18,155,206,1,45,19,21,115,115,21,19,254,211,253,202,131,1,108,131,131,254,148,254,246,57,165,226,224,167,57,254,249,254,142,254,249
,254,128,1,4,15,79,79,15,254,252,1,128,1,7,1,114,1,7,57,167,224,226,165,57,0,0,4,0,1,255,6,7,128,6,0,0,70,0,80,0
,94,0,108,0,0,1,52,54,51,33,50,22,21,17,20,6,43,1,34,38,61,1,7,30,1,7,6,0,7,6,36,39,46,3,55,62,2,55,54,22
,23,37,35,34,38,61,1,52,54,51,33,50,22,21,17,20,6,43,1,34,38,61,1,7,22,23,22,23,37,35,34,38,53,1,52,39,14,1,21,20
,23,62,1,37,20,22,23,38,53,52,0,55,46,1,35,34,0,1,50,0,53,52,38,39,22,21,20,0,7,30,1,6,0,18,14,1,32,26,38,18
,14,64,14,18,254,76,63,22,31,254,242,183,210,254,163,67,117,208,147,80,8,9,138,226,135,118,219,89,0,255,134,14,18,18,14,1,32,26,38,18
,14,64,14,18,254,59,34,182,146,0,255,134,14,18,254,0,4,162,218,4,162,218,252,128,222,165,3,1,14,203,53,221,135,185,254,249,3,192,185,1
,7,222,165,3,254,242,203,53,221,4,96,14,18,38,26,254,224,14,18,18,14,134,255,95,238,128,182,254,252,26,29,218,191,6,103,163,222,119,135,234
,149,15,14,66,70,254,18,14,64,14,18,38,26,254,224,14,18,18,14,134,255,74,95,9,115,254,18,14,254,160,20,38,25,250,167,20,38,25,250,167
,168,252,23,29,30,210,1,63,37,120,146,254,249,252,7,1,7,185,168,252,23,28,31,210,254,193,37,120,146,0,4,0,6,255,0,8,0,6,0,0
,74,0,80,0,92,0,104,0,0,1,52,54,51,33,50,22,21,17,20,6,43,1,34,38,61,1,7,30,1,7,6,0,7,6,39,6,7,21,51,50
,22,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,46,1,2,55,54,0,55,54,23,54,51,50,23,37
,35,34,38,53,1,54,16,39,6,16,0,16,0,51,50,55,38,16,55,38,35,34,1,50,0,16,0,35,34,7,22,16,7,22,6,128,18,14,1,32
,26,38,18,14,64,14,18,254,76,63,22,32,254,247,181,223,186,117,139,96,14,18,18,14,96,18,14,64,14,18,96,14,18,18,14,96,155,249,125,23
,25,1,13,186,224,186,146,174,201,158,0,255,134,14,18,253,0,128,128,128,253,128,1,7,185,117,101,154,154,101,117,185,3,57,185,1,7,254,249,185
,117,101,154,154,101,5,224,14,18,38,26,254,224,14,18,18,14,134,255,95,238,128,180,254,252,27,34,124,78,15,132,18,14,64,14,18,96,14,18,18
,14,96,18,14,64,14,18,132,17,185,1,34,162,187,1,15,29,34,124,97,126,254,18,14,251,231,131,1,108,131,131,254,148,1,111,254,142,254,249,57
,167,1,192,167,57,252,128,1,7,1,114,1,7,57,167,254,64,167,57,0,0,0,2,0,0,255,128,6,0,5,128,0,59,0,67,0,0,1,50,22
,21,17,20,6,43,1,34,38,53,17,7,23,22,20,15,1,6,34,47,1,7,22,21,20,14,2,34,46,2,52,62,2,51,50,23,55,39,38,52,63
,1,54,50,31,1,55,33,34,38,61,1,52,54,51,0,32,0,16,0,32,0,16,5,192,26,38,18,14,64,14,18,213,140,9,9,46,9,26,10,140
,78,126,91,155,213,234,213,155,91,91,155,213,117,203,156,78,172,9,9,46,9,26,10,172,213,254,251,14,18,18,14,253,103,1,114,1,7,254,249,254
,142,254,249,5,128,38,26,254,96,14,18,18,14,1,6,214,140,10,26,9,46,9,9,141,79,156,203,117,213,155,91,91,155,213,234,213,155,91,126,78
,172,10,26,9,46,9,9,172,213,18,14,64,14,18,250,128,1,7,1,114,1,7,254,249,254,142,0,0,0,0,2,0,2,255,4,4,128,6,0,0
,57,0,65,0,0,1,22,0,21,20,2,4,39,46,2,39,38,18,54,55,53,35,34,38,61,1,52,54,59,1,53,7,6,34,47,1,38,52,63,1
,54,50,31,1,22,20,15,1,6,34,47,1,21,51,50,22,29,1,20,6,43,1,2,32,0,16,0,32,0,16,2,128,217,1,39,174,254,214,170,133
,225,139,11,12,129,243,150,160,14,18,18,14,160,92,10,26,9,46,9,9,202,19,52,19,202,9,9,46,9,26,10,92,160,14,18,18,14,160,249,1
,114,1,7,254,249,254,142,254,249,3,124,24,254,185,221,167,254,234,146,19,15,146,230,134,155,1,18,174,16,132,18,14,64,14,18,165,92,9,9,46
,9,26,10,201,19,19,201,10,26,9,46,9,9,92,165,18,14,64,14,18,251,128,1,7,1,114,1,7,254,249,254,142,0,0,2,0,4,0,0,7
,128,4,126,0,57,0,65,0,0,1,22,20,7,1,6,34,47,1,38,52,63,1,33,21,20,6,43,1,34,38,61,1,35,6,0,35,34,36,2,55
,62,2,55,54,4,22,23,51,53,52,54,59,1,50,22,29,1,33,39,38,52,63,1,54,50,23,0,32,0,16,0,32,0,16,7,109,19,19,254,218
,9,27,9,45,10,10,185,254,218,18,14,64,14,18,132,24,254,185,221,167,254,234,146,19,15,146,230,134,155,1,18,174,16,132,18,14,64,14,18,1
,38,185,10,10,45,9,27,9,251,64,1,114,1,7,254,249,254,142,254,249,2,109,19,52,19,254,218,10,10,45,9,27,9,185,224,14,18,18,14,224
,217,254,217,174,1,42,170,133,225,139,11,12,129,243,150,224,14,18,18,14,224,185,9,27,9,45,10,10,252,237,1,7,1,114,1,7,254,249,254,142
,0,0,2,0,0,255,0,4,128,6,0,0,23,0,31,0,0,1,20,0,7,17,20,6,43,1,34,38,53,17,38,0,53,52,62,2,50,30,2,0
,32,0,16,0,32,0,16,4,128,254,217,217,18,14,64,14,18,217,254,217,91,155,213,234,213,155,91,253,7,1,114,1,7,254,249,254,142,254,249,3
,192,221,254,185,24,253,156,14,18,18,14,2,100,24,1,71,221,117,213,155,91,91,155,213,253,203,1,7,1,114,1,7,254,249,254,142,0,0,2,0
,0,0,0,4,128,4,128,0,7,0,23,0,0,0,16,0,32,0,16,0,32,0,20,14,2,34,46,2,52,62,2,50,30,1,4,0,254,249,254,142
,254,249,1,7,1,114,1,135,91,155,213,234,213,155,91,91,155,213,234,213,155,1,135,1,114,1,7,254,249,254,142,254,249,2,53,234,213,155,91,91
,155,213,234,213,155,91,91,155,0,0,1,0,0,255,128,6,0,5,128,0,36,0,0,1,50,22,21,17,20,6,35,33,17,51,55,35,53,52,54,51
,55,53,38,35,34,6,29,1,35,21,51,17,33,34,38,53,17,52,54,51,5,171,35,50,50,35,254,121,199,30,229,47,68,122,63,115,136,163,200,200
,253,33,35,50,50,35,5,128,50,35,250,170,35,50,2,83,232,148,56,56,1,207,9,160,146,171,232,253,173,50,35,5,86,35,50,0,0,0,1,0
,0,255,128,5,0,6,0,0,76,0,0,17,52,62,3,51,50,4,22,21,20,14,3,35,34,38,39,14,6,15,1,39,38,53,52,54,18,55,38,53
,52,54,51,50,22,21,20,6,21,20,22,51,50,62,4,53,52,38,35,34,0,21,20,30,2,21,20,6,35,34,39,46,3,75,132,172,198,103,158,1
,16,170,38,82,118,172,103,68,134,29,10,36,11,30,22,42,50,37,14,9,15,43,90,7,32,104,80,61,68,88,90,64,55,94,63,49,27,13,219,176
,200,254,244,25,29,25,30,22,2,15,51,79,43,22,3,171,108,191,142,104,52,133,254,160,96,184,170,129,77,64,56,39,147,43,99,43,82,73,50,5
,10,157,31,92,229,1,90,30,65,104,83,146,81,62,66,250,62,63,83,50,86,104,117,105,47,173,193,254,253,199,44,82,48,43,9,28,90,3,15,82
,107,109,0,0,0,0,3,0,0,255,122,6,0,5,134,0,43,0,62,0,81,0,0,0,50,22,23,22,21,20,7,14,1,35,34,39,46,1,39,38
,55,53,54,55,54,51,50,22,51,50,22,23,30,1,21,20,6,21,20,23,22,23,22,23,22,51,50,3,50,62,2,52,46,2,34,14,2,21,20,23
,7,55,22,18,32,4,22,18,16,2,6,4,35,34,39,5,19,38,53,52,18,54,3,204,26,169,5,2,17,16,110,47,57,133,98,144,76,72,1,3
,71,24,28,6,24,7,19,15,8,8,50,69,5,34,68,56,95,12,10,15,112,127,233,168,100,100,168,233,254,233,168,100,120,79,242,158,34,1,50,1
,23,202,120,120,202,254,233,153,195,170,254,95,136,108,120,202,2,50,88,9,5,10,33,43,39,53,62,45,146,112,107,87,8,91,67,22,3,13,21,20
,136,7,21,73,10,7,8,73,64,53,48,7,254,79,100,168,233,254,233,168,100,100,168,233,127,203,165,233,77,104,5,102,120,202,254,233,254,206,254,233
,202,120,94,134,1,149,178,211,153,1,23,202,0,0,9,0,0,0,0,7,0,5,128,0,3,0,7,0,15,0,19,0,27,0,35,0,39,0,43,0
,47,0,0,55,33,53,33,17,33,53,33,0,52,38,34,6,20,22,50,1,33,53,33,0,52,38,34,6,20,22,50,18,52,38,34,6,20,22,50,19
,17,33,17,1,17,33,17,1,17,33,17,128,4,0,252,0,4,0,252,0,6,32,56,80,56,56,80,250,24,4,0,252,0,6,32,56,80,56,56,80
,56,56,80,56,56,80,152,249,0,7,0,249,0,7,0,249,0,128,128,1,128,128,253,152,80,56,56,80,56,4,32,128,253,152,80,56,56,80,56,2
,56,80,56,56,80,56,253,32,254,128,1,128,2,0,254,128,1,128,2,0,254,128,1,128,0,0,3,0,0,255,128,8,0,5,128,0,7,0,43,0
,78,0,0,0,32,38,16,54,32,22,16,1,33,50,22,29,1,20,6,35,33,17,20,6,43,1,34,38,53,17,33,34,38,61,1,52,54,51,33,17
,52,54,59,1,50,22,21,1,20,22,51,33,21,6,35,33,34,38,53,52,62,5,51,50,23,30,1,50,54,55,54,51,50,23,35,34,6,21,3,95
,254,194,225,225,1,62,225,2,64,1,96,13,19,19,13,254,160,19,13,192,13,19,254,160,13,19,19,13,1,96,19,13,192,13,19,253,32,76,52,1
,0,68,103,252,150,121,146,7,21,32,54,70,101,61,19,20,79,151,178,151,79,20,19,132,85,223,52,76,2,128,225,1,62,225,225,254,194,254,159,19
,13,192,13,19,254,160,13,19,19,13,1,96,19,13,192,13,19,1,96,13,19,19,13,253,192,52,76,238,50,138,121,53,101,117,100,95,67,40,17,61
,61,61,61,17,96,76,52,0,0,0,3,0,0,255,128,7,247,5,128,0,7,0,51,0,86,0,0,0,32,38,16,54,32,22,16,1,23,22,21,20
,15,1,6,35,34,47,1,7,6,35,34,47,1,38,53,52,63,1,39,38,53,52,63,1,54,51,50,31,1,55,54,51,50,31,1,22,21,20,7,5
,7,6,21,20,31,1,6,35,33,34,38,53,52,62,5,51,50,23,22,32,55,54,51,50,23,14,1,21,20,23,3,95,254,194,225,225,1,62,225,2
,181,249,9,9,136,9,13,14,9,249,249,9,14,13,9,136,9,9,249,249,9,9,136,9,13,14,9,249,249,9,14,13,9,136,9,9,253,21,181,37
,37,83,21,23,252,150,121,146,7,21,32,54,70,101,61,19,20,154,1,74,154,20,19,28,29,28,26,37,2,128,225,1,62,225,225,254,194,253,223,249
,9,14,13,9,136,9,9,249,249,9,9,136,9,13,14,9,249,249,9,14,13,9,136,9,9,249,249,9,9,136,9,13,14,9,249,181,37,54,53,37
,83,3,138,121,53,101,117,100,95,67,40,17,122,122,17,6,27,46,33,54,37,0,3,0,0,0,0,8,0,5,0,0,18,0,26,0,36,0,0,1
,33,50,22,21,17,33,17,33,17,33,17,52,54,59,1,50,22,21,0,52,38,34,6,20,22,50,33,53,52,38,35,33,34,6,21,17,1,0,6,192
,26,38,255,0,250,0,255,0,38,26,128,26,38,2,64,150,212,150,150,212,5,86,225,159,253,64,26,38,2,0,38,26,254,64,1,0,255,0,4,192
,26,38,38,26,254,22,212,150,150,212,150,64,159,225,38,26,254,128,0,0,0,0,2,0,0,255,0,6,0,6,0,0,22,0,25,0,0,1,3,51
,21,33,7,33,21,33,9,1,33,53,33,39,33,53,51,3,33,1,33,9,1,19,35,6,0,192,192,254,238,55,1,73,254,101,254,155,254,155,254,101
,1,73,55,254,238,192,192,1,0,1,67,1,122,1,67,254,0,108,216,6,0,254,64,192,128,192,252,192,3,64,192,128,192,1,192,253,0,3,0,251
,64,1,0,0,0,0,3,0,0,255,0,6,0,6,0,0,23,0,31,0,35,0,0,1,50,4,21,17,20,6,7,23,22,6,35,33,34,38,63,1
,46,1,53,17,52,36,51,18,50,54,52,38,34,6,20,1,17,33,17,4,64,185,1,7,251,180,213,16,16,22,251,224,22,16,16,213,180,251,1,7
,185,240,160,112,112,160,112,3,0,251,128,6,0,187,133,252,128,130,184,5,202,15,40,40,15,202,5,184,130,3,128,133,187,250,192,112,160,112,112,160
,1,208,2,0,254,0,0,0,0,0,5,0,0,255,0,6,0,6,0,0,23,0,31,0,35,0,43,0,47,0,0,1,50,4,21,17,20,6,7,23
,22,6,35,33,34,38,63,1,46,1,53,17,52,36,51,2,50,54,52,38,34,6,20,1,17,33,17,0,50,54,52,38,34,6,20,1,17,33,17,4
,64,185,1,7,251,180,213,16,16,22,251,224,22,16,16,213,180,251,1,7,185,226,132,94,94,132,94,2,64,253,224,3,254,132,94,94,132,94,1,64
,253,192,6,0,187,133,252,128,130,184,5,202,15,40,40,15,202,5,184,130,3,128,133,187,250,224,94,132,94,94,132,1,194,2,0,254,0,253,224,94
,132,94,94,132,1,194,2,0,254,0,0,0,0,0,4,0,0,255,138,7,0,5,118,0,18,0,21,0,28,0,40,0,0,1,17,20,6,35,34,39
,37,46,1,53,17,52,54,51,50,23,1,22,23,9,2,17,20,6,34,39,37,1,20,0,7,9,1,54,51,50,23,1,22,2,85,25,24,17,16,254
,47,21,29,20,19,14,30,1,255,3,64,2,22,253,234,4,107,28,48,23,254,71,2,25,253,255,44,254,122,1,68,17,35,14,12,2,29,4,4,91
,251,107,25,35,8,233,10,47,23,4,116,20,28,15,255,0,3,103,252,158,1,10,2,70,251,226,25,31,13,220,3,229,3,252,191,71,2,122,2,15
,28,6,254,242,2,0,2,0,0,255,128,6,0,5,128,0,11,0,15,0,0,9,1,35,3,6,7,39,3,35,1,17,51,1,17,33,17,3,41,1
,10,112,157,24,20,42,155,120,1,7,101,2,215,250,0,2,20,1,243,254,200,48,44,92,1,56,254,19,254,188,4,170,250,0,6,0,0,0,24,0
,84,255,6,8,164,5,255,0,11,0,23,0,35,0,47,0,68,0,77,0,252,1,6,1,18,1,27,1,37,1,50,1,60,1,71,1,81,1,94,1
,108,1,119,1,179,1,194,1,217,1,233,1,254,2,13,0,0,5,14,1,7,6,38,39,38,54,55,54,22,5,30,1,23,22,54,55,54,38,39,38
,6,55,30,1,23,22,54,53,52,38,39,38,6,5,14,1,7,6,38,53,52,54,55,54,22,1,51,34,7,30,1,21,20,6,35,34,39,6,21,20
,22,51,50,54,52,38,55,46,1,7,62,2,30,1,1,22,7,22,21,22,14,1,7,6,38,39,4,37,14,1,39,46,1,55,54,55,38,55,54,23
,54,55,38,55,54,23,54,55,52,55,54,23,54,23,22,23,53,34,39,46,1,39,38,55,54,55,62,2,22,23,51,22,23,22,23,62,1,55,38,39
,38,39,52,55,46,1,39,46,1,55,54,55,54,22,23,20,30,3,23,22,55,54,55,38,7,55,54,55,54,55,46,4,39,36,1,22,23,22,55,51
,62,3,63,1,62,1,23,22,23,22,6,7,14,1,7,21,6,7,6,7,30,1,23,54,55,54,55,51,62,1,30,1,23,22,23,22,7,14,1,7
,6,35,20,7,54,55,54,23,54,23,22,21,22,23,54,23,22,7,22,23,54,1,20,7,22,23,54,38,39,38,6,7,30,1,7,54,55,54,55,46
,1,39,6,7,34,39,22,23,50,55,54,38,5,54,55,38,53,52,38,7,14,1,23,22,23,38,54,55,49,38,39,14,1,7,22,23,54,55,6,15
,1,53,6,23,22,5,30,1,23,30,1,55,62,1,55,38,0,34,6,21,20,22,50,54,53,52,3,38,7,53,6,22,23,30,1,55,62,1,38,5
,62,1,38,39,53,6,35,14,1,22,23,30,1,37,6,22,23,22,54,55,62,1,55,6,7,22,7,22,4,23,54,36,55,38,55,52,62,1,61,1
,21,46,1,39,6,7,6,39,38,39,38,39,14,8,35,6,39,14,3,7,6,35,6,39,6,39,38,39,38,39,38,39,6,7,22,3,54,53,46,1
,39,38,14,1,23,30,1,23,22,54,55,22,23,54,55,46,1,39,6,7,20,6,21,22,7,6,7,6,7,35,6,23,22,23,4,37,38,39,6,7
,6,39,38,39,6,7,35,21,50,37,54,55,54,55,7,54,53,38,39,38,39,38,55,38,53,38,39,6,7,22,5,54,46,1,7,14,1,7,20,23
,30,1,55,62,1,1,222,8,38,18,25,53,2,1,82,27,23,22,5,52,7,38,19,25,53,1,2,83,27,22,22,57,13,87,34,45,74,135,48,40
,47,250,114,13,86,34,45,74,135,48,40,46,2,201,1,41,35,27,34,54,38,52,28,5,112,79,80,112,112,224,99,243,124,27,111,125,118,81,2,242
,8,19,7,1,91,128,54,48,88,22,253,81,253,196,23,87,49,86,187,1,2,5,19,8,6,25,14,27,7,9,11,28,29,30,13,23,28,35,26,18
,20,11,7,53,88,11,9,9,15,78,2,34,38,28,5,13,46,14,3,2,10,41,10,15,15,23,68,1,62,113,28,32,21,8,16,74,23,58,3,3
,2,4,7,5,27,49,48,50,40,122,47,61,102,145,137,20,42,52,33,62,12,2,83,1,53,98,60,85,36,1,5,7,4,2,2,1,3,58,23,73
,18,7,21,32,28,111,60,71,24,14,17,11,42,9,1,4,16,44,13,5,28,38,34,2,79,14,9,8,12,88,53,10,7,1,20,18,26,35,28,23
,14,33,26,27,11,10,8,28,13,23,254,245,9,82,30,4,27,28,20,32,78,35,25,13,67,30,13,5,3,56,51,15,74,30,14,42,11,21,22,16
,30,249,190,30,82,9,33,19,28,27,40,29,68,13,25,35,37,15,51,55,4,9,186,14,59,19,36,45,46,26,25,3,217,8,17,3,3,13,17,40
,44,1,24,254,224,232,166,166,232,166,54,105,106,1,7,10,29,129,31,9,4,5,254,242,8,3,4,2,212,2,4,6,6,11,34,134,254,152,16,41
,57,15,18,3,3,10,5,69,194,3,37,132,1,23,166,172,1,21,155,33,3,1,2,17,66,15,26,56,51,31,5,4,7,10,2,6,9,7,12,8
,16,8,19,4,106,57,4,12,30,16,28,6,3,179,24,2,54,47,44,12,8,17,9,58,29,1,81,3,17,68,39,41,121,88,5,35,130,54,51,86
,13,23,4,195,197,98,165,97,6,23,2,31,9,12,44,10,19,1,2,3,19,85,2,20,2,101,254,174,76,80,8,8,65,64,208,208,1,1,4,160
,4,24,14,19,1,3,15,15,42,14,9,31,2,16,12,204,179,198,2,96,5,88,120,42,38,69,17,3,10,86,51,54,130,139,16,37,7,9,25,19
,22,66,5,4,51,21,16,37,7,9,25,19,22,66,5,4,51,88,27,65,9,13,35,33,46,109,5,5,85,34,27,65,9,13,35,33,46,109,5,5
,85,4,66,15,8,45,27,35,50,43,23,19,74,105,105,148,105,218,109,45,67,60,73,6,40,109,250,220,11,31,23,17,56,113,70,2,2,47,42,25
,25,41,48,2,3,155,83,22,18,31,11,10,9,22,29,29,9,10,14,20,14,29,8,12,28,5,7,4,15,73,2,10,69,53,38,43,62,33,17,37
,10,25,18,5,18,3,4,1,5,1,11,6,40,3,6,4,2,33,31,36,112,56,126,53,16,23,29,1,26,16,24,14,3,14,2,46,28,4,18,46
,58,53,73,13,8,15,13,8,14,3,126,254,247,84,138,10,19,3,14,24,15,14,14,28,24,17,52,126,57,112,35,32,33,2,10,2,41,5,12,1
,5,1,5,3,18,5,18,24,8,38,17,32,63,40,41,53,70,9,2,49,24,15,4,7,5,28,12,9,28,16,18,13,9,10,28,30,21,8,3,175
,29,25,32,100,37,123,29,19,4,118,42,133,58,13,32,14,14,64,101,16,15,10,1,115,124,3,68,134,49,100,32,25,29,18,4,19,29,123,139,31
,14,58,133,42,6,15,16,100,65,17,65,124,111,4,14,19,1,89,107,3,39,38,141,19,18,7,8,20,131,60,2,2,131,165,116,117,165,165,117,116
,254,38,2,2,1,27,118,7,14,1,11,3,72,67,186,4,88,88,19,1,3,20,84,82,5,15,2,200,59,119,25,8,6,18,16,148,29,2,130,23
,13,141,198,55,49,194,153,13,21,2,3,3,1,1,1,2,7,1,90,42,38,39,6,8,13,49,5,8,6,5,3,2,2,1,1,9,20,17,19,11
,3,2,1,17,57,63,9,8,46,13,13,29,36,6,4,2,253,132,14,16,71,118,11,12,53,107,54,53,80,2,2,60,220,63,56,113,61,52,136,97
,4,9,1,6,2,18,19,23,11,13,11,83,67,34,205,21,21,147,49,35,22,3,3,21,28,60,128,1,47,54,66,38,33,1,77,76,8,17,9,24
,20,18,4,5,4,8,190,94,59,140,54,107,53,12,11,119,70,16,14,49,60,2,2,80,0,0,3,0,0,255,67,9,1,5,189,0,7,0,15,0
,59,0,0,36,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,1,30,5,12,1,51,50,30,4,14,3,7,6,7,62,5,46,3,7,6,36
,46,7,5,244,96,136,97,97,136,253,115,97,136,96,96,136,253,90,57,107,135,137,195,205,1,39,1,57,216,139,211,151,97,45,3,42,71,108,124,77
,185,101,29,95,93,96,70,38,12,79,154,254,177,168,254,220,220,189,130,115,68,68,33,47,43,136,96,96,136,97,97,136,96,96,136,97,5,49,60,89
,75,51,40,23,14,5,10,23,32,47,56,72,81,101,108,65,157,90,51,116,95,102,81,80,60,51,31,16,3,2,16,30,52,51,74,59,84,55,81,0
,0,0,7,0,0,255,0,7,0,6,0,0,15,0,31,0,43,0,63,0,75,0,103,0,119,0,0,0,32,4,6,2,16,18,22,4,32,36,54,18
,16,2,38,36,32,4,22,18,16,2,6,4,32,36,38,2,16,18,54,19,50,21,17,20,43,1,34,53,17,52,51,4,50,22,21,20,6,7,21,20
,6,43,1,34,38,61,1,46,1,53,52,2,32,4,18,16,2,4,32,36,2,16,18,19,21,20,22,59,1,50,54,61,1,52,54,50,22,29,1,20
,22,59,1,50,54,61,1,52,38,32,6,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,4,41,254,174,254,204,223,132,132,223,1,52,1
,82,1,52,223,132,132,223,253,109,1,108,1,76,240,142,142,240,254,180,254,148,254,180,240,142,142,240,114,16,16,32,16,16,1,123,106,75,35,29,18
,14,64,14,18,29,35,81,1,162,1,97,206,206,254,159,254,94,254,159,206,206,210,18,14,64,14,18,131,186,131,18,14,64,14,18,206,254,220,206,3
,96,38,26,252,128,26,38,38,26,3,128,26,38,5,192,132,223,254,204,254,174,254,204,223,132,132,223,1,52,1,82,1,52,223,196,142,240,254,180,254
,148,254,180,240,142,142,240,1,76,1,108,1,76,240,253,78,16,254,32,16,16,1,224,16,64,75,53,35,58,17,114,14,18,18,14,114,17,58,35,53
,3,75,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,254,238,96,14,18,18,14,96,93,131,131,93,96,14,18,18,14,96,146,206,206,252,142
,2,0,26,38,38,26,254,0,26,38,38,0,0,0,3,0,0,0,0,9,0,5,0,0,3,0,23,0,47,0,0,1,17,33,17,1,51,17,35,17
,52,38,35,33,34,6,21,17,20,22,51,33,50,54,53,1,17,20,6,35,21,20,6,35,33,34,38,53,17,52,54,51,33,50,22,29,1,50,22,7
,128,249,128,7,0,128,128,18,14,248,192,14,18,18,14,7,64,14,18,1,0,75,53,94,66,248,192,66,94,94,66,7,64,66,94,53,75,4,0,253
,0,3,0,253,192,1,128,1,32,14,18,18,14,252,64,14,18,18,14,2,160,254,128,53,75,160,66,94,94,66,3,192,66,94,94,66,160,75,0,0
,0,0,3,0,0,0,0,9,0,5,0,0,3,0,27,0,47,0,0,1,17,33,17,1,50,22,21,17,20,6,35,21,20,6,35,33,34,38,53,17
,52,54,51,33,50,22,21,25,1,35,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,53,17,1,0,5,0,2,128,53,75,75,53,94,66,248
,192,66,94,94,66,7,64,66,94,128,18,14,248,192,14,18,18,14,7,64,14,18,1,0,3,0,253,0,2,192,75,53,254,128,53,75,160,66,94,94
,66,3,192,66,94,94,66,253,96,1,128,1,32,14,18,18,14,252,64,14,18,18,14,1,32,0,3,0,0,0,0,9,0,5,0,0,3,0,27,0
,47,0,0,1,17,33,17,1,50,22,21,17,20,6,35,21,20,6,35,33,34,38,53,17,52,54,51,33,50,22,21,25,1,35,17,52,38,35,33,34
,6,21,17,20,22,51,33,50,54,53,17,1,0,3,128,4,0,53,75,75,53,94,66,248,192,66,94,94,66,7,64,66,94,128,18,14,248,192,14,18
,18,14,7,64,14,18,1,0,3,0,253,0,2,192,75,53,254,128,53,75,160,66,94,94,66,3,192,66,94,94,66,253,96,1,128,1,32,14,18,18
,14,252,64,14,18,18,14,1,32,0,3,0,0,0,0,9,0,5,0,0,3,0,27,0,47,0,0,1,17,33,17,1,50,22,21,17,20,6,35,21
,20,6,35,33,34,38,53,17,52,54,51,33,50,22,21,25,1,35,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,53,17,1,0,2,0,5
,128,53,75,75,53,94,66,248,192,66,94,94,66,7,64,66,94,128,18,14,248,192,14,18,18,14,7,64,14,18,1,0,3,0,253,0,2,192,75,53
,254,128,53,75,160,66,94,94,66,3,192,66,94,94,66,253,96,1,128,1,32,14,18,18,14,252,64,14,18,18,14,1,32,0,2,0,0,0,0,9
,0,5,0,0,23,0,43,0,0,1,50,22,21,17,20,6,35,21,20,6,35,33,34,38,53,17,52,54,51,33,50,22,21,25,1,35,17,52,38,35
,33,34,6,21,17,20,22,51,33,50,54,53,17,8,128,53,75,75,53,94,66,248,192,66,94,94,66,7,64,66,94,128,18,14,248,192,14,18,18,14
,7,64,14,18,3,192,75,53,254,128,53,75,160,66,94,94,66,3,192,66,94,94,66,253,96,1,128,1,32,14,18,18,14,252,64,14,18,18,14,1
,32,0,1,0,0,255,5,4,123,6,0,0,28,0,0,1,22,7,6,35,33,19,22,6,15,1,6,38,39,3,1,6,35,34,39,38,53,17,52,55
,54,51,50,23,4,109,31,17,17,42,254,130,201,10,20,24,177,25,48,11,191,254,200,19,26,12,12,40,40,12,12,27,18,1,237,30,39,40,254,36
,25,48,11,75,10,20,24,1,196,254,200,19,5,17,42,5,224,42,17,5,19,0,1,0,0,255,0,3,128,6,0,0,37,0,0,1,32,21,17,51
,21,35,17,20,33,51,21,35,32,39,6,33,35,53,51,32,53,17,35,53,51,17,52,33,35,53,51,32,23,54,33,51,21,3,64,254,192,128,128,1
,64,64,64,254,240,112,112,254,240,64,64,1,64,128,128,254,192,64,64,1,16,112,112,1,16,64,5,128,224,254,96,128,253,224,224,128,146,146,128,224
,2,32,128,1,160,224,128,146,146,128,0,0,0,0,9,0,0,255,0,8,0,6,0,0,19,0,23,0,27,0,31,0,43,0,47,0,55,0,59,0
,65,0,0,1,35,17,51,17,33,53,33,21,33,17,51,17,35,17,33,21,33,53,33,5,21,51,53,33,21,51,53,17,53,35,21,37,53,51,17,35
,53,33,21,35,17,51,21,5,53,35,21,1,33,17,33,17,33,17,33,1,33,17,33,1,17,33,17,33,21,8,0,128,128,254,128,251,0,254,128,128
,128,1,128,5,0,1,128,255,0,128,249,0,128,128,6,0,128,128,251,0,128,128,6,0,128,254,0,1,128,252,128,254,128,3,128,253,0,2,128,253
,128,4,0,255,0,254,128,4,128,252,0,254,128,128,128,1,128,4,0,1,128,128,128,128,128,128,128,128,250,0,128,128,128,128,4,0,128,128,252,0
,128,128,128,128,4,0,253,0,1,0,3,0,253,128,2,0,253,0,2,0,254,128,128,0,0,0,10,0,0,255,0,9,0,6,0,0,31,0,35,0
,39,0,43,0,47,0,51,0,63,0,67,0,71,0,87,0,0,1,35,17,51,17,33,53,33,21,33,17,51,53,33,21,33,17,51,17,35,17,33,21
,33,53,33,17,35,21,33,53,33,5,21,51,53,1,21,51,53,33,21,51,53,17,53,35,21,37,35,21,51,37,33,53,51,17,35,53,33,21,35,17
,51,1,53,35,21,33,53,35,21,25,1,35,53,33,17,51,17,33,53,33,21,51,21,33,53,9,0,128,128,254,128,252,128,254,128,128,254,128,254,128
,128,128,1,128,3,128,1,128,128,1,128,1,128,255,0,128,253,0,128,250,128,128,128,5,128,128,128,251,128,3,128,128,128,252,128,128,128,2,0,128
,5,128,128,128,254,128,128,254,128,254,128,128,3,128,3,0,253,128,254,128,128,128,1,128,128,128,1,128,2,128,1,128,128,128,254,128,128,128,128,128
,128,1,128,128,128,128,128,251,128,128,128,128,128,128,128,2,128,128,128,253,128,253,128,128,128,128,128,1,0,2,128,128,254,128,254,128,128,128,128,128
,0,0,2,0,0,255,128,6,0,5,128,0,17,0,24,0,0,1,17,33,34,38,53,17,52,54,51,33,50,22,21,17,33,34,6,23,33,6,15,1
,6,7,4,0,252,96,40,56,56,40,5,64,40,56,254,96,40,56,128,1,125,15,50,184,50,82,1,32,254,96,56,40,5,64,40,56,56,40,252,96
,56,72,82,50,184,50,15,0,0,0,3,0,0,255,128,6,0,5,128,0,6,0,15,0,35,0,0,1,35,21,54,63,1,54,37,33,17,33,17,33
,17,52,54,1,17,20,6,15,1,14,1,35,33,34,38,53,17,52,54,51,33,50,22,5,120,248,29,12,185,12,254,242,1,32,251,0,3,128,56,1
,200,40,28,184,28,96,40,252,0,40,56,56,40,5,64,40,56,1,0,248,10,12,185,12,157,3,128,251,0,1,32,40,56,3,160,252,0,40,96,28
,184,28,40,56,40,5,64,40,56,56,0,0,0,0,6,0,0,255,128,9,0,5,128,0,11,0,24,0,39,0,65,0,84,0,100,0,0,0,20,6
,7,6,43,1,53,51,50,23,22,54,20,6,7,6,43,1,53,51,50,22,51,22,5,17,35,17,20,6,35,34,39,21,30,1,31,1,32,37,53,6
,7,6,38,52,54,23,22,23,53,46,1,47,1,38,14,2,20,30,2,55,54,37,52,38,39,53,62,1,53,52,38,39,34,38,35,33,17,33,50,54
,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,7,159,31,23,8,10,153,153,10,8,23,13,30,23,3,12,139,139,3,11,1,23,251,105
,228,76,67,108,121,53,136,41,42,1,72,2,202,99,101,108,122,122,108,101,99,48,104,28,28,127,183,98,44,44,98,183,127,101,3,73,86,66,57,64
,82,66,3,18,5,254,57,1,235,74,95,128,76,52,248,0,52,76,76,52,8,0,52,76,2,52,52,37,5,2,140,2,5,175,50,34,4,1,129,1
,4,224,1,52,254,204,58,73,59,112,15,16,1,1,33,113,52,7,8,98,186,98,8,7,51,112,12,15,2,2,6,40,80,96,116,96,80,40,6,4
,142,54,69,5,3,8,67,46,55,66,3,1,254,2,73,3,54,251,0,52,76,76,52,5,0,52,76,76,0,0,5,0,0,255,128,9,0,5,128,0
,5,0,11,0,26,0,46,0,62,0,0,1,17,14,1,20,22,36,52,38,39,17,54,0,16,2,4,35,34,46,2,53,52,18,36,32,4,1,52,46
,2,35,33,34,4,2,21,20,18,4,51,33,50,62,2,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,90,106,132,132,2,98,132,106
,106,1,91,157,254,242,159,119,217,157,93,157,1,14,1,62,1,14,2,28,111,184,243,131,254,211,176,254,217,175,174,1,42,174,1,45,129,245,184,111
,1,88,76,52,248,0,52,76,76,52,8,0,52,76,1,39,2,181,41,189,234,189,189,234,189,41,253,74,41,1,209,254,194,254,242,157,93,157,217,119
,159,1,14,157,157,254,76,139,245,166,96,162,254,214,186,171,254,219,170,101,169,236,3,6,251,0,52,76,76,52,5,0,52,76,76,0,0,0,3,0
,0,255,0,7,0,6,0,0,15,0,31,0,59,0,0,5,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53
,17,52,54,51,33,50,22,1,21,35,53,52,38,35,33,34,6,21,17,20,22,59,1,21,35,34,38,53,17,52,54,51,33,50,22,6,128,19,13,251
,192,13,19,19,13,4,64,13,19,128,94,66,251,192,66,94,94,66,4,64,66,94,254,128,128,19,13,251,192,13,19,19,13,160,160,66,94,94,66,4
,64,66,94,96,4,64,13,19,19,13,251,192,13,19,19,4,77,251,192,66,94,94,66,4,64,66,94,94,1,62,160,160,13,19,19,13,251,192,13,19
,128,94,66,4,64,66,94,94,0,0,6,0,0,255,0,8,128,6,0,0,2,0,5,0,53,0,61,0,85,0,109,0,0,9,1,33,9,1,33,1
,14,1,7,17,33,50,22,29,1,20,6,35,33,34,38,61,1,52,54,51,33,17,46,1,39,33,34,38,61,1,52,54,51,33,62,1,50,22,23,33
,50,22,29,1,20,6,35,4,50,54,52,38,34,6,20,1,20,14,2,34,46,2,53,52,62,3,55,54,50,23,30,4,5,20,14,2,34,46,2,53
,52,62,3,55,54,50,23,30,4,6,192,254,128,3,0,249,128,254,128,3,0,1,181,14,63,40,2,96,14,18,18,14,250,192,14,18,18,14,2,96
,40,63,14,254,21,14,18,18,14,1,235,21,98,124,98,21,1,235,14,18,18,14,253,63,66,47,47,66,47,4,144,93,142,147,132,147,142,93,70,114
,100,104,4,18,76,18,4,104,100,114,70,251,0,93,142,147,132,147,142,93,70,114,100,104,4,18,76,18,4,104,100,114,70,4,64,253,64,2,192,253
,64,3,128,40,63,14,250,245,18,14,64,14,18,18,14,64,14,18,5,11,14,63,40,18,14,64,14,18,57,71,71,57,18,14,64,14,18,16,47,66
,47,47,66,252,97,73,116,66,33,33,66,116,73,11,140,209,182,186,7,33,33,7,186,182,209,140,11,73,116,66,33,33,66,116,73,11,140,209,182,186
,7,33,33,7,186,182,209,140,0,0,2,0,0,255,0,6,0,6,0,0,45,0,77,0,0,1,16,2,7,22,18,17,51,50,22,29,1,20,6,35
,33,34,38,61,1,52,54,59,1,16,18,55,38,2,17,35,34,38,61,1,52,54,51,33,50,22,29,1,20,6,35,1,62,3,53,33,20,30,2,23
,30,1,20,6,7,14,3,21,33,52,46,2,39,46,1,52,54,5,128,213,160,160,213,96,14,18,18,14,250,64,14,18,18,14,96,213,160,160,213,96
,14,18,18,14,5,192,14,18,18,14,253,138,77,144,115,70,252,0,70,115,144,77,19,23,23,19,77,144,115,70,4,0,70,115,144,77,19,23,23,5
,128,254,251,254,111,106,106,254,111,254,251,18,14,64,14,18,18,14,64,14,18,1,5,1,145,106,106,1,145,1,5,18,14,64,14,18,18,14,64,14
,18,253,60,29,127,178,242,132,132,242,178,127,29,7,33,40,33,7,29,127,178,242,132,132,242,178,127,29,7,33,40,33,0,0,3,0,0,255,0,6
,0,6,0,0,45,0,51,0,63,0,0,1,16,2,7,22,18,17,51,50,22,29,1,20,6,35,33,34,38,61,1,52,54,59,1,16,18,55,38,2
,17,35,34,38,61,1,52,54,51,33,50,22,29,1,20,6,43,1,33,20,23,33,54,17,52,46,2,39,35,14,3,21,5,128,213,160,160,213,96,14
,18,18,14,250,64,14,18,18,14,96,213,160,160,213,96,14,18,18,14,5,192,14,18,18,14,224,252,0,9,3,238,9,68,113,140,76,230,76,140,113
,68,5,128,254,251,254,111,106,106,254,111,254,251,18,14,64,14,18,18,14,64,14,18,1,5,1,145,106,106,1,145,1,5,18,14,64,14,18,18,14
,64,14,18,66,62,61,250,67,130,239,177,127,31,31,127,177,239,130,0,0,0,0,3,0,0,255,0,6,0,6,0,0,45,0,51,0,59,0,0,1
,16,2,7,22,18,17,51,50,22,29,1,20,6,35,33,34,38,61,1,52,54,59,1,16,18,55,38,2,17,35,34,38,61,1,52,54,51,33,50,22
,29,1,20,6,43,1,33,20,23,33,54,3,46,1,39,35,14,1,7,5,128,213,160,160,213,96,14,18,18,14,250,64,14,18,18,14,96,213,160,160
,213,96,14,18,18,14,5,192,14,18,18,14,224,252,0,85,3,86,85,57,54,183,103,230,103,183,54,5,128,254,251,254,111,106,106,254,111,254,251,18
,14,64,14,18,18,14,64,14,18,1,5,1,145,106,106,1,145,1,5,18,14,64,14,18,18,14,64,14,18,206,178,178,252,14,141,201,42,42,201,141
,0,0,2,0,0,255,0,6,0,6,0,0,45,0,71,0,0,1,16,2,7,22,18,17,51,50,22,29,1,20,6,35,33,34,38,61,1,52,54,59
,1,16,18,55,38,2,17,35,34,38,61,1,52,54,51,33,50,22,29,1,20,6,35,1,62,3,53,33,20,30,2,23,30,1,20,6,7,6,7,33
,38,39,46,1,52,54,5,128,213,160,160,213,96,14,18,18,14,250,64,14,18,18,14,96,213,160,160,213,96,14,18,18,14,5,192,14,18,18,14,253
,138,77,144,115,70,252,0,70,115,144,77,19,23,23,19,137,107,2,188,107,137,19,23,23,5,128,254,251,254,111,106,106,254,111,254,251,18,14,64,14
,18,18,14,64,14,18,1,5,1,145,106,106,1,145,1,5,18,14,64,14,18,18,14,64,14,18,253,60,29,127,178,242,132,132,242,178,127,29,7,33
,40,33,7,51,145,145,51,7,33,40,33,0,0,0,3,0,0,255,0,6,0,6,0,0,15,0,57,0,73,0,0,5,50,22,29,1,20,6,35,33
,34,38,61,1,52,54,51,55,62,8,55,46,8,39,33,14,8,7,30,8,23,19,50,22,29,1,20,6,35,33,34,38,61,1,52,54,51,5,224,14
,18,18,14,250,64,14,18,18,14,98,3,26,34,58,49,80,52,89,44,43,43,44,89,52,80,49,58,34,26,3,4,252,3,26,34,58,49,80,52,89
,44,43,43,44,89,52,80,49,58,34,26,3,98,14,18,18,14,250,64,14,18,18,14,64,18,14,128,14,18,18,14,128,14,18,64,55,104,86,88,64
,75,45,65,30,28,28,30,65,45,75,64,88,86,104,55,55,104,86,88,64,75,45,65,30,28,28,30,65,45,75,64,88,86,104,55,6,0,18,14,128
,14,18,18,14,128,14,18,0,0,0,2,0,0,255,128,6,0,5,0,0,65,0,106,0,0,1,34,6,29,1,35,53,52,38,35,34,6,21,17,39
,53,52,38,35,34,6,29,1,20,23,1,22,21,20,22,51,33,50,54,61,1,52,55,19,54,61,1,52,38,35,34,6,29,1,35,53,52,38,39,38
,35,34,6,29,1,35,53,52,38,39,38,39,50,23,54,51,50,22,23,54,51,50,22,29,1,20,7,3,6,21,20,6,35,33,34,38,53,1,38,61
,1,52,54,51,50,23,62,1,51,50,23,54,3,0,53,75,32,64,48,46,66,32,64,48,46,66,35,1,54,39,38,26,2,128,26,38,10,108,10,64
,48,46,66,32,50,39,14,9,46,66,32,65,50,5,8,84,65,57,66,59,104,34,27,32,100,140,13,109,6,112,80,253,128,84,108,254,204,76,141,99
,11,5,6,139,95,52,46,72,4,128,75,53,128,93,48,67,66,46,254,83,30,172,48,67,66,46,224,47,35,254,216,39,63,26,38,38,26,25,41,36
,1,180,36,41,246,48,67,66,46,32,125,40,65,8,2,66,46,128,122,51,77,5,1,128,50,34,54,49,7,143,100,246,51,57,254,76,24,47,80,112
,117,84,1,40,73,102,224,99,141,1,95,130,21,69,0,0,0,0,2,0,0,255,0,6,96,6,0,0,49,0,88,0,0,0,34,6,21,17,35,17
,52,38,34,6,21,25,1,39,38,35,34,6,21,20,23,1,22,51,33,50,54,55,19,54,53,17,52,38,34,6,21,17,35,17,52,38,34,6,21,17
,35,17,52,38,50,22,23,54,51,50,22,29,1,54,22,21,17,20,7,3,14,1,35,33,34,38,39,1,38,53,52,54,51,50,23,17,52,54,51,50
,23,54,3,158,92,66,32,66,92,66,154,38,64,53,75,26,1,128,38,64,2,176,34,54,7,76,5,66,92,66,32,66,92,66,32,180,136,115,31,19
,23,99,141,105,151,8,76,14,125,81,253,80,60,109,36,254,128,51,150,106,78,50,141,99,23,19,31,5,128,66,46,253,112,2,16,46,66,66,46,253
,240,255,0,205,51,75,53,43,34,254,0,51,44,34,1,149,32,27,1,242,46,66,66,46,254,240,2,16,46,66,66,46,253,240,2,144,46,194,71,61
,4,141,99,17,6,140,105,254,14,40,43,254,108,79,104,55,47,2,0,68,86,106,150,34,1,178,99,141,4,61,0,0,0,0,5,0,0,255,128,7
,0,5,128,0,38,0,53,0,74,0,98,0,131,0,0,5,35,34,39,38,61,1,46,1,53,52,55,33,34,38,52,54,59,1,39,46,1,53,52,54
,51,50,23,5,33,50,22,21,17,20,6,7,5,6,3,15,1,14,1,21,20,22,51,50,55,37,46,1,53,1,52,38,35,34,7,5,14,4,21,20
,22,51,50,55,37,62,1,3,37,38,35,34,6,21,20,22,23,5,21,33,34,6,20,22,51,33,55,53,52,63,1,3,50,55,37,62,1,53,17,52
,38,35,33,7,6,21,17,20,22,50,54,61,1,51,21,20,7,30,1,21,20,6,7,5,4,49,177,163,63,23,62,73,5,254,251,106,150,150,106,113
,44,74,91,150,106,46,45,2,116,1,145,106,150,108,86,254,173,92,143,155,163,30,36,66,46,26,20,1,82,49,63,1,64,66,46,26,20,254,222,28
,18,43,16,16,63,50,20,18,1,96,30,36,232,253,118,24,22,53,75,45,37,2,14,253,128,53,75,75,53,2,23,233,46,111,108,82,73,1,83,43
,54,75,53,254,204,136,36,66,92,66,32,57,52,69,46,38,254,202,128,141,49,53,5,30,117,69,38,10,150,212,150,17,28,131,80,106,150,17,239,150
,106,253,100,88,139,21,85,23,2,199,71,74,14,55,33,46,66,10,154,10,80,50,255,0,46,66,10,132,13,8,26,21,37,22,50,64,9,160,14,55
,3,17,248,8,75,53,40,66,14,200,64,75,106,75,106,198,63,43,102,252,0,19,85,11,69,44,2,156,53,75,126,33,49,254,216,46,62,70,46,208
,208,70,44,8,81,53,42,72,17,141,0,0,0,0,2,0,0,255,0,8,0,6,0,0,36,0,98,0,0,1,50,22,23,1,22,21,17,20,6,35
,33,34,38,61,1,37,33,34,38,61,1,52,54,51,33,55,33,34,38,39,38,61,1,52,54,51,1,17,52,39,1,38,35,33,34,6,21,20,30,1
,23,62,1,51,33,21,33,34,6,21,20,23,30,1,51,33,51,50,22,21,20,15,1,14,1,35,33,34,6,29,1,20,22,51,33,50,23,5,30,1
,29,1,20,22,51,33,50,54,4,127,61,110,36,2,60,118,112,80,254,128,80,112,254,226,253,222,80,112,169,119,1,164,42,253,82,100,147,8,65,112
,80,6,192,93,253,195,39,64,252,65,26,38,3,16,17,10,51,31,3,64,252,192,26,38,3,8,72,45,2,128,91,40,56,5,64,10,50,31,254,69
,66,94,38,26,2,49,16,13,1,61,24,29,38,26,1,128,26,38,6,0,56,49,252,243,159,200,254,157,80,112,112,80,177,143,112,80,32,119,169,128
,135,99,79,103,32,80,112,249,192,1,99,157,127,3,13,52,38,26,32,35,46,20,31,38,32,38,26,44,14,44,58,56,40,15,15,192,29,37,94,66
,32,26,38,7,158,13,46,27,197,26,38,38,0,0,2,0,0,255,0,7,128,6,0,0,50,0,116,0,0,1,34,38,39,3,38,53,52,39,3,38
,53,52,54,55,62,1,51,50,22,23,27,1,62,1,51,50,22,23,30,1,21,20,7,3,62,5,51,50,22,21,20,6,7,1,6,35,3,34,6,7
,3,35,3,46,1,35,34,6,21,20,23,19,35,3,46,1,35,34,6,21,20,23,19,30,1,23,19,30,1,51,33,50,55,1,54,53,52,38,35,34
,7,5,53,52,26,1,55,54,53,52,38,35,34,6,7,3,35,19,54,53,52,38,1,203,77,121,19,101,13,5,116,7,124,93,17,131,87,83,130,20
,83,103,20,130,83,89,133,14,92,120,7,123,10,55,22,48,34,49,25,105,150,57,50,254,5,68,85,49,38,61,9,164,127,145,9,61,38,48,64,3
,132,26,99,9,62,38,47,66,3,116,7,4,8,100,8,52,33,2,182,42,34,1,251,56,75,52,43,34,254,205,64,72,3,4,64,47,39,61,9,116
,26,150,3,63,255,0,95,75,1,145,57,51,45,22,1,221,27,30,93,136,10,85,108,103,81,254,164,1,172,81,103,115,87,10,138,93,24,35,254,0
,7,43,16,30,11,11,148,105,62,112,38,254,132,51,6,128,48,38,253,86,2,90,38,48,66,47,15,13,253,221,1,152,37,51,66,46,14,12,254,34
,28,116,30,254,111,32,41,26,1,123,43,67,52,73,26,230,227,4,1,12,1,40,13,18,11,47,68,48,38,254,30,2,112,14,14,48,68,0,5,0
,0,255,0,6,128,6,0,0,51,0,91,0,95,0,99,0,103,0,0,1,34,6,21,25,1,39,38,35,34,6,21,20,23,1,22,51,33,50,54,55
,19,54,61,1,52,38,34,6,21,35,53,52,38,35,34,6,29,1,35,53,52,38,35,34,6,29,1,35,17,52,38,39,50,22,29,1,54,51,50,23
,54,51,50,23,54,51,50,22,29,1,20,7,3,14,1,35,33,34,38,39,1,38,53,52,54,51,50,23,17,52,54,19,17,35,17,33,17,35,17,33
,17,35,17,2,128,53,75,151,41,66,52,74,26,1,128,38,64,2,206,22,35,5,92,24,56,80,56,32,64,48,46,66,32,74,54,53,75,32,74,54
,107,149,22,10,99,74,47,52,113,71,27,29,94,130,28,92,16,104,66,253,50,60,109,36,254,128,51,149,105,71,59,150,234,32,1,32,32,1,32,32
,5,128,75,53,254,0,254,128,202,54,76,52,43,34,254,0,51,27,21,1,112,96,98,217,41,60,56,40,61,48,67,66,46,64,90,55,79,75,53,96
,2,58,55,79,128,155,107,220,2,69,21,87,7,135,94,217,116,109,254,144,64,81,55,47,2,0,68,86,105,151,35,2,35,106,150,250,128,1,128,254
,128,1,128,254,128,1,128,254,128,0,5,0,0,255,0,6,0,6,0,0,37,0,52,0,73,0,97,0,130,0,0,1,50,23,22,29,1,20,7,3
,14,1,35,33,34,38,53,17,3,38,53,52,54,51,50,22,31,1,53,52,54,50,22,21,17,54,51,50,22,7,34,6,15,2,51,50,22,23,19,54
,53,52,38,23,34,14,3,7,3,6,21,20,22,51,50,54,55,19,54,53,52,38,1,20,23,19,21,55,54,59,1,55,17,52,38,34,6,21,17,35
,3,46,1,35,34,6,1,50,54,55,19,54,61,1,3,14,1,35,34,38,39,6,43,1,53,51,50,54,52,38,35,33,34,15,1,17,20,22,51,5
,8,60,47,141,23,85,21,139,88,253,100,106,150,239,17,150,106,80,131,28,17,150,212,150,27,21,69,117,186,33,55,14,74,71,55,50,80,10,154,10
,66,175,22,37,21,26,8,13,132,10,66,46,33,55,14,160,9,64,251,65,8,248,102,43,63,198,106,75,106,75,64,200,14,66,40,53,75,4,28,44
,69,11,85,19,141,17,72,42,53,81,8,44,70,208,208,46,70,62,46,254,216,49,33,126,75,53,3,121,23,63,163,177,94,92,254,173,86,108,150,106
,1,145,2,116,45,46,106,150,91,74,44,113,106,150,150,106,254,251,5,73,55,36,30,163,155,63,49,1,82,20,26,46,66,135,16,16,43,18,28,254
,222,20,26,46,66,36,30,1,96,18,20,50,63,1,103,22,24,253,118,69,111,46,233,2,23,53,75,75,53,253,128,2,14,37,45,75,250,235,54,43
,1,83,73,82,91,254,202,38,46,69,52,57,32,66,92,66,36,136,254,204,53,75,0,0,0,0,2,0,0,0,0,7,180,4,0,0,25,0,71,0
,0,1,21,20,6,35,33,17,20,6,43,1,34,38,53,17,33,34,38,61,1,52,54,51,33,50,22,5,19,22,7,6,43,1,34,38,39,11,1,6
,43,1,34,39,11,1,14,1,43,1,34,39,38,53,19,62,1,59,1,50,23,19,22,23,62,1,55,19,54,59,1,50,22,3,89,19,13,254,214,18
,13,135,13,19,254,215,13,19,18,14,3,25,13,19,4,14,77,1,9,10,13,134,12,18,1,46,189,8,21,120,20,9,188,45,1,18,12,135,13,10
,9,78,1,18,12,142,20,9,220,10,10,3,13,4,221,9,20,141,13,18,3,224,117,13,18,252,212,13,19,18,14,3,44,18,13,117,14,18,19,10
,252,63,13,11,10,17,12,2,76,254,87,19,19,1,171,253,178,12,17,10,10,14,3,193,12,17,19,253,248,24,27,7,35,9,2,8,19,17,0,0
,0,0,4,0,0,255,0,7,0,6,0,0,9,0,42,0,58,0,74,0,0,1,52,39,38,43,1,17,51,50,54,23,19,22,7,6,43,1,34,39
,3,35,17,20,6,43,1,34,38,53,17,52,54,51,33,50,23,30,1,21,20,6,7,22,2,32,4,6,2,16,18,22,4,32,36,54,18,16,2,38
,0,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,4,18,60,33,84,123,162,66,72,52,205,8,9,8,19,152,20,8,194,155,18,14,134,14
,18,18,14,1,38,128,62,85,98,85,73,6,45,254,212,254,240,197,117,117,197,1,16,1,44,1,16,197,117,117,197,1,218,142,240,254,180,254,148,254
,180,240,142,142,240,1,76,1,108,1,76,240,3,65,88,33,18,254,231,74,217,254,139,17,14,16,17,1,109,254,162,14,18,18,14,3,192,14,18,24
,31,156,102,92,147,36,10,3,54,117,197,254,240,254,212,254,240,197,117,117,197,1,16,1,44,1,16,197,254,75,254,148,254,180,240,142,142,240,1,76
,1,108,1,76,240,142,142,240,0,0,4,0,0,255,0,7,0,6,0,0,45,0,91,0,107,0,123,0,0,1,50,55,54,47,1,38,39,38,15,1
,14,5,35,34,38,53,52,54,51,50,22,31,1,22,55,54,63,1,54,39,46,4,35,34,6,21,20,22,33,50,55,54,47,1,38,39,38,15,1,14
,5,35,34,38,53,52,54,51,50,22,31,1,22,55,54,63,1,54,39,46,4,35,34,6,21,20,22,2,32,4,6,2,16,18,22,4,32,36,54,18
,16,2,38,0,32,4,22,18,16,2,6,4,32,36,38,2,16,18,54,2,93,153,104,14,11,45,6,18,16,11,4,4,15,20,27,30,37,19,76,98
,96,74,37,69,16,16,11,15,16,8,53,13,15,3,16,44,53,82,45,148,196,194,3,12,153,104,14,10,45,8,17,16,11,4,4,15,20,27,30,37
,19,76,98,96,74,37,69,16,16,11,15,16,8,53,13,15,3,16,44,53,82,45,147,197,194,39,254,212,254,240,197,117,117,197,1,16,1,44,1,16
,197,117,117,197,253,164,1,108,1,76,240,142,142,240,254,180,254,148,254,180,240,142,142,240,1,47,104,18,18,82,13,4,2,13,3,4,12,15,14,12
,7,100,77,76,99,28,14,14,11,1,2,12,78,20,19,4,16,31,25,20,193,144,146,191,104,18,18,82,14,3,2,13,3,4,12,15,14,12,7,100
,77,76,99,28,14,14,11,1,2,12,78,20,19,4,16,31,25,20,193,144,146,191,4,49,117,197,254,240,254,212,254,240,197,117,117,197,1,16,1,44
,1,16,197,1,21,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,0,0,2,0,64,255,224,7,192,5,32,0,11,0,23,0
,0,9,4,23,7,39,9,1,55,9,3,39,55,23,9,1,7,1,7,1,2,224,1,128,254,128,253,96,2,160,168,96,72,254,32,1,224,193,254,223
,2,160,2,160,253,96,168,96,72,1,224,254,32,193,1,33,96,254,128,2,224,254,128,254,128,2,160,2,160,168,96,72,254,32,254,32,193,1,31,2
,160,253,96,253,96,168,96,72,1,224,1,224,193,254,225,96,1,128,0,0,0,0,3,0,0,255,0,7,0,6,0,0,11,0,23,0,39,0,0,37
,9,1,7,23,7,9,1,23,55,39,9,5,55,39,55,9,1,39,7,0,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,2,205,1,15,254
,233,88,192,96,254,233,1,23,40,87,127,254,58,3,44,1,198,254,58,254,241,1,23,88,192,96,1,23,254,233,40,87,3,76,142,240,254,180,254,148
,254,180,240,142,142,240,1,76,1,108,1,76,240,182,1,15,1,23,88,191,96,1,23,1,23,40,87,128,254,58,254,66,1,198,1,198,254,241,254,233
,88,191,96,254,233,254,233,40,88,1,249,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,10,0,0,255,220,9,0,5,36,0
,11,0,19,0,28,0,37,0,47,0,57,0,69,0,83,0,91,0,128,0,0,1,20,6,35,34,38,53,52,54,51,50,22,36,20,6,34,38,52,54
,50,5,52,38,34,6,20,22,50,54,36,52,38,35,34,6,20,22,50,37,20,6,35,34,38,52,54,50,22,36,20,6,35,34,38,52,54,51,50,0
,16,0,35,34,14,1,20,30,1,51,50,1,38,33,32,7,50,30,2,21,52,62,2,0,16,0,32,0,16,0,32,19,33,14,1,7,22,21,20,2
,4,35,34,38,39,6,7,46,1,39,14,1,35,34,36,2,53,52,55,46,1,39,33,54,36,51,50,4,2,139,55,38,39,55,55,39,38,55,4,130
,55,78,55,55,78,252,39,113,160,113,113,160,113,4,129,113,80,79,114,113,160,252,69,163,115,116,163,164,230,163,4,130,163,116,115,163,163,115,116,252
,223,254,241,191,125,212,124,124,212,125,191,3,171,254,254,210,254,193,254,117,212,153,91,87,149,206,2,81,254,242,254,130,254,241,1,15,1,126,4,1
,127,44,62,9,110,154,254,248,155,133,232,80,47,82,11,85,32,80,233,133,155,254,248,154,110,9,62,44,1,109,149,1,156,226,224,1,138,2,27,39
,55,55,39,38,55,55,2,78,55,55,78,54,94,79,114,113,160,113,113,1,160,113,113,160,113,192,116,163,164,230,163,163,1,230,163,163,230,163,254,40
,1,126,1,15,124,213,250,213,124,4,11,111,110,91,154,212,117,115,209,152,94,253,7,1,126,1,15,254,241,254,130,254,241,4,4,51,127,51,151,186
,156,254,248,153,112,99,56,123,22,121,37,99,113,153,1,8,156,186,151,51,127,51,100,113,112,0,3,0,102,255,0,4,154,6,0,0,9,0,19,0
,76,0,0,0,32,0,53,52,0,32,0,21,20,0,34,6,21,20,22,50,54,53,52,1,30,1,14,2,7,6,7,23,1,22,20,15,1,6,34,39
,38,39,1,6,34,47,1,38,52,55,1,55,38,39,46,3,54,55,62,2,22,23,30,4,51,50,54,63,1,62,1,30,1,3,60,254,136,254,246,1
,10,1,120,1,10,254,150,184,131,131,184,131,1,44,13,4,13,40,45,39,115,200,73,1,11,30,30,12,31,86,31,67,200,254,245,31,86,30,12,31
,31,1,11,72,203,114,39,45,40,13,4,13,10,36,48,64,33,5,20,66,72,112,57,91,166,37,38,33,64,48,36,2,117,1,10,187,188,1,10,254
,246,188,187,1,155,131,93,92,131,131,92,93,253,167,27,45,36,41,33,25,73,21,72,254,245,31,86,30,13,30,30,68,200,254,244,30,30,13,30,86
,31,1,11,72,21,73,25,33,41,36,45,27,20,30,14,18,26,4,14,35,26,22,51,25,25,26,18,14,30,0,4,0,0,255,128,6,0,5,128,0
,7,0,54,0,62,0,78,0,0,0,20,6,34,38,52,54,50,1,46,1,6,7,14,2,34,38,47,1,46,1,6,7,6,22,23,22,23,7,6,7
,6,20,31,1,22,50,63,1,22,23,22,50,63,1,54,52,47,2,54,55,62,1,2,16,38,32,6,16,22,32,1,17,20,6,35,33,34,38,53,17
,52,54,51,33,50,22,3,159,93,132,93,93,132,1,51,10,36,59,31,10,38,124,130,118,27,27,31,59,36,10,22,40,67,83,143,51,142,49,22,22
,9,22,61,22,191,114,77,22,61,22,9,22,22,191,52,141,84,67,40,71,190,254,244,190,190,1,12,2,122,169,119,252,64,119,169,169,119,3,192,119
,169,3,254,132,93,93,132,93,253,246,20,24,5,25,8,24,40,36,18,18,25,5,24,20,45,59,44,53,14,52,142,48,22,61,22,9,22,22,191,115
,76,22,22,9,22,61,22,190,52,14,53,44,59,1,18,1,12,190,190,254,244,190,1,232,252,64,119,169,169,119,3,192,119,169,169,0,0,0,2,0
,0,255,128,6,184,5,128,0,18,0,40,0,0,1,50,22,21,17,20,2,6,4,35,34,36,38,2,53,17,52,54,51,1,50,55,1,54,53,52,38
,35,34,7,9,1,38,35,34,6,21,20,23,1,22,6,29,65,90,136,229,254,193,175,176,254,193,230,136,92,64,2,193,47,35,1,148,37,69,49,47
,35,254,189,254,189,35,46,49,69,36,1,149,33,5,128,91,65,253,249,176,254,192,230,135,135,230,1,64,176,2,7,64,92,251,216,33,1,132,35,50
,49,69,33,254,202,1,54,33,69,49,51,34,254,124,33,0,0,0,1,0,0,255,152,9,0,5,103,0,76,0,0,5,1,6,0,7,6,38,53,38
,0,39,46,2,35,52,38,53,33,21,14,2,23,22,0,23,54,18,55,38,2,39,38,39,53,5,21,14,1,23,30,1,23,54,55,54,38,39,54,52
,53,50,62,1,51,21,14,1,7,3,22,18,23,1,46,2,39,53,5,23,7,6,7,0,7,5,214,254,217,25,254,245,65,1,53,82,254,165,86,21
,91,116,44,1,2,71,39,81,52,16,26,1,125,45,31,218,22,19,214,29,38,163,2,1,60,67,21,33,108,32,110,63,24,68,95,1,64,213,147,19
,62,114,33,213,13,229,7,1,185,14,71,59,26,1,204,1,1,139,62,253,242,33,103,2,183,49,253,255,133,1,1,1,193,3,20,202,50,115,86,5
,38,8,50,2,28,58,35,59,252,144,100,61,1,155,42,39,1,228,53,69,2,50,1,47,2,46,46,70,239,68,214,149,55,49,2,7,36,6,1,1
,49,2,62,50,254,70,33,253,254,17,3,249,38,49,14,1,50,4,2,44,4,141,251,64,75,0,5,0,0,255,0,7,0,6,0,0,10,0,24,0
,114,0,130,0,146,0,0,1,20,6,35,34,38,53,52,54,50,22,23,1,14,4,7,1,62,4,37,20,7,46,2,35,34,21,20,23,14,1,7,39
,38,35,34,6,31,1,6,35,34,39,62,2,53,52,35,34,14,1,7,46,1,39,55,54,53,52,38,15,1,38,53,52,55,30,2,51,50,53,52,38
,47,1,62,1,55,23,22,51,50,54,47,1,54,51,50,23,6,21,20,51,50,55,30,1,23,7,6,21,20,22,63,1,30,1,16,2,38,36,32,4
,6,2,16,18,22,4,32,36,54,18,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,3,181,33,25,26,38,34,50,38,15,1,94,9,117,134
,139,95,3,254,163,7,120,132,140,94,2,138,104,3,28,25,4,13,59,74,221,131,16,1,14,5,6,1,16,72,74,199,173,1,24,19,13,6,22,23
,2,113,158,31,69,10,11,5,68,14,109,2,33,27,4,13,25,20,20,77,224,132,15,2,13,5,6,1,15,71,63,204,175,39,12,11,37,111,153,31
,56,10,11,4,57,14,85,127,214,254,216,254,186,254,216,214,127,127,214,1,40,1,70,1,40,214,223,142,240,254,180,254,148,254,180,240,142,142,240,1
,76,1,108,1,76,240,2,131,26,38,33,25,26,38,33,83,2,69,8,109,124,130,91,6,253,188,7,110,123,131,91,60,201,170,2,18,15,13,10,34
,112,157,32,67,10,11,4,68,15,105,2,37,30,4,13,29,40,3,75,225,132,15,3,12,5,6,1,15,72,67,206,173,1,22,16,12,6,19,12,12
,112,154,30,67,10,11,5,66,13,109,56,9,13,64,75,222,130,12,2,14,5,6,1,13,72,231,1,70,1,40,214,127,127,214,254,216,254,186,254,216
,214,127,127,214,2,129,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,0,4,0,0,255,1,7,0,6,0,0,11,0,22,0
,34,0,42,0,0,1,54,23,22,23,37,38,4,7,1,54,36,9,1,22,4,55,3,38,36,2,53,16,37,22,18,2,6,7,6,37,1,54,2,39
,36,50,22,20,6,34,38,52,3,125,240,211,232,120,253,26,160,254,244,51,254,236,128,1,110,253,221,1,81,72,1,22,154,230,212,254,166,199,6,196
,58,3,100,206,143,230,254,244,1,149,88,11,101,254,56,250,177,177,250,177,6,0,2,122,134,238,39,9,167,146,1,168,159,173,254,108,253,105,143,148
,29,254,61,33,249,1,127,220,1,11,55,150,254,191,254,221,253,83,133,14,2,111,131,1,63,118,6,177,250,177,177,250,0,0,1,0,2,255,0,7
,0,5,201,0,77,0,0,1,32,0,39,38,2,26,1,55,3,62,1,23,62,1,55,14,1,23,30,3,23,22,6,7,14,2,7,23,39,6,30,2
,55,62,2,23,30,1,7,14,4,39,14,1,39,30,1,62,2,55,54,46,1,39,30,1,23,54,2,39,4,0,19,22,2,14,1,4,3,135,254,229
,254,69,108,58,18,70,152,103,11,11,114,13,42,237,116,54,131,7,25,75,51,85,8,15,11,25,5,23,90,56,15,139,18,21,51,80,41,51,94,73
,37,61,57,9,1,3,14,22,41,26,60,169,125,74,177,160,149,107,27,43,8,67,45,87,100,27,15,145,137,1,9,1,38,4,2,85,162,216,254,233
,255,0,1,45,248,131,1,84,1,69,1,43,93,254,231,14,3,17,81,114,2,45,207,60,8,11,4,4,1,5,81,35,7,23,48,10,189,67,43,77
,56,27,7,9,51,39,2,4,58,36,2,7,18,13,8,3,95,81,11,61,43,31,73,102,53,91,203,174,38,38,83,71,170,1,90,111,77,254,107,254
,197,127,255,0,220,172,99,0,0,0,2,0,0,255,0,7,0,6,0,0,35,0,55,0,0,1,38,35,34,4,7,14,1,7,21,30,1,23,22,4
,51,50,55,6,4,35,34,39,38,36,38,2,53,52,18,54,36,59,1,22,4,1,20,2,7,6,35,34,39,54,18,53,52,2,39,54,51,50,23,22
,18,5,213,165,194,155,254,236,102,75,89,4,4,89,75,102,1,20,155,194,165,121,254,205,169,29,14,175,254,196,228,134,142,240,1,76,182,3,168,1
,49,1,164,154,136,104,118,137,118,154,199,198,154,119,135,119,107,135,151,5,28,110,146,127,93,250,141,42,141,250,93,127,146,110,108,120,1,8,148,238
,1,68,177,182,1,76,240,142,1,119,252,248,192,254,171,126,63,84,56,1,98,228,227,1,98,57,83,65,125,254,172,0,0,0,4,0,0,255,16,7
,0,5,240,0,43,0,53,0,63,0,70,0,0,1,20,7,33,20,22,51,50,54,55,33,14,1,4,35,34,39,6,35,34,17,52,55,54,55,18,37
,6,3,18,0,33,50,23,36,51,50,30,2,21,20,7,22,3,52,38,35,34,7,30,1,23,54,1,20,22,51,50,55,46,1,39,6,1,33,46,1
,35,34,6,7,0,7,251,129,219,148,99,173,50,1,167,56,229,254,206,168,187,169,228,166,237,45,17,92,199,1,20,184,243,63,1,185,1,25,30,15
,0,255,178,64,104,85,48,75,101,70,106,84,108,146,121,203,69,51,249,198,97,86,115,151,122,183,46,98,1,248,2,216,5,216,143,144,215,2,87,56
,48,146,197,93,84,159,244,133,83,116,1,7,115,160,60,169,1,104,246,79,254,237,1,18,1,95,1,117,26,55,98,66,116,170,182,1,176,83,98,70
,47,169,111,135,251,124,86,93,83,72,222,134,205,2,74,142,190,190,0,0,0,0,2,0,0,255,128,7,128,5,128,0,15,0,51,0,0,1,17,52
,38,35,33,34,6,21,17,20,22,51,33,50,54,19,17,20,6,35,33,21,33,50,22,29,1,20,6,35,33,34,38,61,1,52,54,51,33,53,33,34
,38,53,17,52,54,51,33,50,22,7,0,19,13,249,192,13,19,19,13,6,64,13,19,128,94,66,253,32,1,96,14,18,18,14,252,192,14,18,18,14
,1,96,253,32,66,94,94,66,6,64,66,94,1,32,3,192,13,19,19,13,252,64,13,19,19,3,205,252,64,66,94,128,18,14,64,14,18,18,14,64
,14,18,128,94,66,3,192,66,94,94,0,0,0,0,2,0,22,255,128,6,234,5,128,0,23,0,62,0,0,19,51,6,7,14,3,30,1,23,22,23
,22,23,22,23,33,34,38,53,17,52,54,41,1,50,22,21,17,20,6,43,1,54,3,5,14,3,7,6,39,46,2,39,46,1,54,55,62,1,55,54
,30,3,23,37,38,138,197,70,56,36,46,14,3,24,18,19,4,2,51,30,57,95,254,240,48,68,68,4,232,1,52,48,68,68,48,178,212,16,254,43
,2,20,42,77,55,123,76,32,42,61,34,35,21,10,18,20,85,60,45,77,57,51,35,17,1,212,68,5,128,64,85,56,118,133,107,157,95,89,19,9
,238,91,171,104,68,48,5,24,48,68,68,48,250,232,48,68,210,1,99,101,45,74,70,49,12,26,66,27,68,190,163,163,200,78,38,41,64,13,12,11
,23,47,49,32,100,175,0,0,0,0,4,0,14,255,0,5,121,6,0,0,37,0,70,0,171,0,197,0,0,5,7,6,7,6,35,34,39,38,39,38
,39,38,39,38,55,54,23,22,21,22,23,22,23,22,23,22,51,50,55,54,63,1,54,23,22,23,22,1,7,23,22,7,6,35,34,47,1,7,6,35
,34,47,1,38,53,52,63,1,39,38,55,54,51,50,31,1,55,54,23,22,5,20,7,6,7,14,1,34,38,39,38,39,38,53,35,38,55,54,23,22
,23,51,17,53,54,55,54,51,50,22,21,20,6,35,34,39,38,55,54,31,1,30,1,51,50,54,53,52,39,38,35,34,7,6,21,17,22,51,50,62
,2,53,52,39,38,35,34,7,6,15,1,14,2,39,46,1,53,17,52,54,51,33,50,20,35,33,17,51,62,1,55,54,51,50,22,23,22,23,22,3
,22,20,6,7,6,35,34,39,38,39,38,35,34,7,6,39,38,55,54,55,54,51,50,23,22,5,121,6,113,146,154,163,165,152,148,111,113,62,42,12
,4,52,51,5,1,18,28,50,102,98,128,132,144,143,133,128,97,6,10,15,12,21,36,254,21,66,63,21,28,17,15,10,9,62,66,5,10,15,16,2
,18,8,66,66,16,30,18,13,6,7,65,65,18,30,27,1,199,46,45,81,80,214,242,214,80,82,43,15,1,9,52,50,10,37,60,1,3,99,105,148
,147,208,209,146,58,54,28,15,16,28,14,14,38,11,104,144,72,71,104,107,71,64,110,132,96,178,134,73,141,140,199,200,140,53,24,2,8,10,33,22
,21,31,21,17,3,109,30,30,252,213,1,40,124,46,109,122,121,214,80,81,45,46,31,9,11,11,26,13,9,7,106,101,128,148,133,129,27,18,9,1
,3,13,130,169,164,152,137,11,6,113,62,64,64,63,112,112,146,103,86,28,8,8,28,1,3,90,69,124,102,98,54,56,56,55,97,6,10,4,3,19
,37,2,82,66,63,21,28,17,10,61,66,5,16,2,15,14,7,10,65,66,16,29,18,5,66,65,17,30,27,74,118,110,105,81,80,92,92,80,82,104
,33,7,27,17,16,28,99,68,1,83,2,136,96,103,206,146,147,208,16,11,50,51,8,3,3,6,143,103,101,70,71,80,72,88,254,99,67,73,134,176
,95,198,141,140,140,53,34,2,11,9,10,8,5,23,15,2,168,15,23,110,254,29,42,84,19,46,92,80,81,105,112,1,208,8,20,16,13,26,7,91
,42,56,49,10,47,25,13,16,4,57,64,58,0,0,4,0,29,255,0,6,225,6,0,0,27,0,62,0,116,0,130,0,0,37,54,22,20,7,14,4
,35,34,46,3,39,46,1,62,1,22,23,22,23,4,37,54,37,22,6,7,6,7,6,38,55,62,1,39,46,3,14,2,35,14,3,42,2,46,1,39
,38,54,55,54,22,1,20,30,2,31,1,7,46,1,47,1,38,39,14,3,46,2,53,52,62,5,55,53,52,39,38,35,34,14,3,7,37,52,62,3
,51,50,30,3,21,1,20,23,22,55,54,55,54,61,1,14,3,6,15,15,22,15,13,62,129,153,223,118,119,238,180,165,100,34,8,4,6,10,13,5
,192,108,1,133,1,154,190,1,152,11,17,20,34,51,17,18,9,21,47,17,5,21,33,26,44,19,43,1,6,14,8,9,5,6,3,3,1,1,6,106
,50,46,124,254,132,27,37,38,14,13,227,40,78,19,19,11,14,38,119,136,144,131,104,62,56,88,125,120,140,99,50,21,34,87,6,21,60,52,60,18
,254,218,44,90,126,177,102,100,162,97,65,25,253,96,70,66,73,84,30,14,59,104,109,65,60,6,6,29,19,16,55,81,67,49,62,91,117,93,41,9
,15,9,5,1,4,117,49,176,86,40,210,16,107,49,83,41,14,10,19,45,153,22,7,9,3,2,2,2,4,1,1,1,1,1,2,2,16,48,6,7
,12,1,169,31,66,50,42,11,11,224,37,77,20,20,11,22,59,87,40,6,48,83,143,91,84,140,93,73,41,28,9,2,127,65,32,53,2,22,37,82
,55,27,60,118,108,82,49,50,73,93,79,34,253,158,86,47,44,22,25,98,45,56,162,2,20,47,95,0,0,0,5,0,0,255,0,6,128,6,0,0
,35,0,51,0,67,0,71,0,107,0,0,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52,54,59,1,50,22,29,1,33,53,52
,54,59,1,50,22,29,1,37,17,20,22,59,1,50,54,53,17,52,38,43,1,34,6,5,17,20,22,59,1,50,54,53,17,52,38,43,1,34,6,1
,17,33,17,1,51,50,22,29,1,20,6,43,1,21,20,6,43,1,34,38,61,1,35,34,38,61,1,52,54,59,1,53,52,54,59,1,50,22,21,6
,0,52,76,76,52,250,128,52,76,76,52,128,94,66,64,66,94,1,128,94,66,64,66,94,255,0,18,14,64,14,18,18,14,64,14,18,253,0,18,14
,64,14,18,18,14,64,14,18,4,128,250,128,3,0,224,14,18,18,14,224,18,14,64,14,18,224,14,18,18,14,224,18,14,64,14,18,5,0,76,52
,251,0,52,76,76,52,5,0,52,76,96,66,94,94,66,96,96,66,94,94,66,96,96,254,224,14,18,18,14,1,32,14,18,18,14,254,224,14,18,18
,14,1,32,14,18,18,250,18,4,0,252,0,2,64,18,14,64,14,18,224,14,18,18,14,224,18,14,64,14,18,224,14,18,18,14,0,0,0,5,0
,0,255,0,6,128,6,0,0,15,0,19,0,35,0,51,0,87,0,0,1,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,1,33,17,33,37
,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,20,6,35,33,34,38,53
,17,52,54,59,1,53,52,54,59,1,50,22,29,1,33,53,52,54,59,1,50,22,29,1,51,50,22,4,128,18,14,253,192,14,18,18,14,2,64,14
,18,252,0,5,128,250,128,1,128,18,14,64,14,18,18,14,64,14,18,3,0,18,14,64,14,18,18,14,64,14,18,1,128,76,52,250,128,52,76,76
,52,128,94,66,64,66,94,1,128,94,66,64,66,94,128,52,76,1,160,64,14,18,18,14,64,14,18,18,253,210,4,0,192,1,32,14,18,18,14,254
,224,14,18,18,14,1,32,14,18,18,14,254,224,14,18,18,78,251,0,52,76,76,52,5,0,52,76,96,66,94,94,66,96,96,66,94,94,66,96,76
,0,0,5,0,0,255,0,6,128,6,0,0,35,0,39,0,55,0,71,0,107,0,0,37,7,6,34,47,1,7,6,34,47,1,38,52,63,1,39,38
,52,63,1,54,50,31,1,55,54,50,31,1,22,20,15,1,23,22,20,1,33,17,33,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37
,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52,54,59,1,50,22,29,1,33,53
,52,54,59,1,50,22,29,1,51,50,22,4,87,46,9,26,10,188,188,10,26,9,46,9,9,189,189,9,9,46,9,26,10,188,188,10,26,9,46,9
,9,188,188,9,252,32,5,128,250,128,1,128,18,14,64,14,18,18,14,64,14,18,3,0,18,14,64,14,18,18,14,64,14,18,1,128,76,52,250,128
,52,76,76,52,128,94,66,64,66,94,1,128,94,66,64,66,94,128,52,76,151,46,9,9,189,189,9,9,46,9,26,10,188,188,10,26,9,46,9,9
,188,188,9,9,46,9,26,10,188,188,10,26,254,224,4,0,192,1,32,14,18,18,14,254,224,14,18,18,14,1,32,14,18,18,14,254,224,14,18,18
,78,251,0,52,76,76,52,5,0,52,76,96,66,94,94,66,96,96,66,94,94,66,96,76,0,0,5,0,0,255,0,6,128,6,0,0,20,0,24,0
,40,0,56,0,92,0,0,9,1,6,34,39,1,38,52,63,1,54,50,31,1,1,54,50,31,1,22,20,1,33,17,33,37,17,52,38,43,1,34,6
,21,17,20,22,59,1,50,54,37,17,52,38,43,1,34,6,21,17,20,22,59,1,50,54,37,17,20,6,35,33,34,38,53,17,52,54,59,1,53,52
,54,59,1,50,22,29,1,33,53,52,54,59,1,50,22,29,1,51,50,22,5,23,254,0,10,26,10,254,224,9,9,46,9,26,10,220,1,188,10,26
,9,46,9,251,96,5,128,250,128,1,128,18,14,64,14,18,18,14,64,14,18,3,0,18,14,64,14,18,18,14,64,14,18,1,128,76,52,250,128,52
,76,76,52,128,94,66,64,66,94,1,128,94,66,64,66,94,128,52,76,2,60,254,0,9,9,1,32,10,26,9,46,9,9,220,1,188,9,9,46,9
,26,253,58,4,0,192,1,32,14,18,18,14,254,224,14,18,18,14,1,32,14,18,18,14,254,224,14,18,18,78,251,0,52,76,76,52,5,0,52,76
,96,66,94,94,66,96,96,66,94,94,66,96,76,0,1,0,0,255,0,7,0,6,0,0,29,0,0,1,50,22,21,17,1,54,51,50,22,21,17,1
,54,51,50,22,21,17,20,6,35,33,34,38,53,17,52,54,51,1,192,26,38,2,24,17,23,26,38,2,24,17,23,26,38,38,26,249,128,26,38,38
,26,6,0,38,26,252,133,1,173,14,38,26,254,133,1,173,14,38,26,251,128,26,38,38,26,6,128,26,38,0,3,0,0,255,0,4,0,6,0,0
,11,0,19,0,35,0,0,0,50,55,17,20,6,43,1,34,38,53,17,2,32,0,16,0,32,0,16,37,50,54,52,38,35,34,6,21,20,22,50,54
,53,52,54,1,190,132,62,38,26,128,26,38,84,1,168,1,44,254,212,254,88,254,212,2,0,14,18,18,14,146,206,18,28,18,169,1,192,15,253,113
,26,38,38,26,2,143,4,49,254,212,254,88,254,212,1,44,1,168,76,18,28,18,206,146,14,18,18,14,119,169,0,0,0,0,3,0,37,255,0,6
,219,6,0,0,27,0,37,0,59,0,0,1,22,20,15,1,6,35,33,34,38,53,17,52,54,51,33,53,52,54,59,1,50,22,29,1,33,50,23,1
,33,17,20,6,43,1,34,38,53,1,50,22,21,17,20,6,35,33,34,47,1,38,52,63,1,54,51,33,53,33,21,6,209,10,10,141,28,40,250,192
,26,38,38,26,2,64,38,26,128,26,38,2,0,40,28,252,188,1,0,38,26,128,26,38,3,64,26,38,38,26,250,192,40,28,141,10,10,141,28,40
,2,0,1,0,4,215,10,26,10,141,28,38,26,1,0,26,38,64,26,38,38,26,64,28,251,220,254,0,26,38,38,26,3,192,38,26,255,0,26,38
,28,141,10,26,10,141,28,192,192,0,4,0,0,255,0,8,0,5,251,0,27,0,31,0,35,0,39,0,0,1,22,21,17,20,6,7,1,6,39,37
,5,6,35,34,39,38,53,17,52,54,55,1,54,23,5,37,54,5,17,5,17,37,17,37,17,1,17,5,17,7,228,28,22,18,253,128,24,24,253,152
,253,152,10,14,19,17,28,22,18,2,128,24,24,2,104,2,104,32,251,24,2,64,251,96,2,32,4,224,253,224,5,245,20,33,250,128,20,32,7,255
,0,11,11,246,246,5,11,20,33,5,128,20,32,7,1,0,11,11,246,246,13,154,251,10,230,4,246,13,251,10,217,4,246,250,253,4,246,217,251,10
,0,0,3,0,0,255,0,7,0,6,0,0,17,0,35,0,53,0,0,1,50,22,21,17,20,7,1,6,35,34,38,53,17,52,55,1,54,33,50,22
,21,17,20,7,1,6,35,34,38,53,17,52,55,1,54,33,50,23,1,22,21,17,20,6,35,34,39,1,38,53,17,52,54,2,0,13,19,17,254,32
,7,8,13,19,17,1,224,7,4,232,13,19,17,254,32,7,8,13,19,17,1,224,7,251,168,8,6,2,0,18,19,13,8,6,254,0,18,19,6,0
,19,13,250,64,20,8,255,0,4,19,13,5,192,20,8,1,0,4,19,13,250,64,20,8,255,0,4,19,13,5,192,20,8,1,0,4,3,255,0,10
,19,250,64,13,19,3,1,0,10,19,5,192,13,19,0,0,0,0,4,0,0,255,32,7,0,5,0,0,7,0,15,0,23,0,56,0,0,0,52,38
,34,6,20,22,50,36,52,38,34,6,20,22,50,36,52,38,34,6,20,22,50,0,16,2,4,35,34,39,6,5,6,7,6,38,39,38,55,62,7,55
,46,1,53,52,18,36,32,4,2,128,75,106,75,75,106,1,203,75,106,75,75,106,1,203,75,106,75,75,106,1,203,240,254,100,244,110,101,173,254,250
,52,34,12,20,3,4,24,5,37,14,33,15,26,14,15,5,146,167,240,1,156,1,232,1,156,2,75,106,75,75,106,75,75,106,75,75,106,75,75,106
,75,75,106,75,1,46,254,164,254,217,171,18,173,56,10,3,1,14,11,15,22,5,33,14,37,26,48,48,67,39,90,253,143,174,1,39,171,171,0,0
,0,0,5,0,0,255,0,7,0,5,0,0,7,0,15,0,23,0,46,0,87,0,0,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,4
,20,6,34,38,52,54,50,2,32,4,6,21,20,22,31,1,7,6,7,54,63,1,23,22,51,50,36,54,16,38,1,20,2,4,35,34,39,6,5,6
,7,35,34,38,39,53,38,54,38,62,2,55,62,5,55,38,2,53,52,62,1,36,32,4,30,1,2,128,75,106,75,75,106,1,203,75,106,75,75,106
,1,203,75,106,75,75,106,233,254,104,254,157,209,143,130,87,27,24,46,152,123,43,57,69,61,204,1,99,209,209,1,81,240,254,100,244,70,75,198,254
,250,49,65,5,15,24,4,3,5,1,10,2,12,2,7,48,21,41,24,30,11,157,181,142,240,1,76,1,108,1,76,240,142,2,181,106,75,75,106,75
,75,106,75,75,106,75,75,106,75,75,106,75,1,128,139,236,137,112,203,74,50,96,91,81,63,108,38,6,8,139,236,1,18,236,254,139,174,254,217,171
,8,175,67,14,8,21,17,1,4,16,4,15,3,14,2,8,53,23,56,46,72,40,89,1,6,150,130,237,172,101,101,172,237,0,4,0,0,255,9,4
,0,5,247,0,3,0,6,0,10,0,13,0,0,9,1,17,9,1,17,1,25,1,1,17,9,1,17,2,0,2,0,254,0,254,0,2,0,254,0,2
,0,2,0,1,89,1,39,253,177,254,216,3,119,253,177,1,40,4,158,253,177,254,216,2,79,254,217,1,39,253,177,0,0,0,1,0,82,255,192,6
,173,5,64,0,36,0,0,1,6,1,0,35,34,3,38,3,2,35,34,7,39,62,1,55,54,55,54,22,23,18,23,22,51,50,55,54,55,54,35,34
,7,18,5,22,6,173,10,254,190,254,179,229,142,98,44,88,72,85,18,109,77,24,168,46,156,85,95,116,23,44,22,55,65,51,103,101,8,13,122,57
,64,120,1,83,251,3,250,236,254,97,254,81,1,7,160,1,66,1,6,76,98,21,151,40,138,8,9,129,139,254,225,86,249,161,161,85,139,26,1,137
,11,8,0,0,0,0,2,0,0,255,128,6,0,5,128,0,3,0,10,0,0,17,33,17,33,1,3,19,33,19,3,1,6,0,250,0,4,61,221,221
,253,134,221,221,1,61,5,128,250,0,1,165,2,119,1,41,254,215,253,137,254,208,0,0,0,0,4,0,0,255,128,6,0,5,128,0,3,0,18,0
,65,0,85,0,0,17,33,17,33,1,7,23,7,23,55,23,55,39,55,39,35,39,35,7,5,50,22,7,55,52,46,2,35,34,6,29,1,35,21,51
,50,21,17,20,6,15,1,21,33,53,39,46,2,62,1,53,17,51,55,35,34,55,54,61,1,52,62,2,1,53,39,46,1,52,54,53,17,33,7,23
,22,21,17,20,6,15,1,21,6,0,250,0,3,140,12,75,31,25,107,107,25,31,75,12,95,53,32,53,254,150,32,25,1,174,35,66,72,49,133,132
,96,76,20,10,13,73,1,192,149,6,5,2,1,1,191,38,231,6,4,4,3,12,27,2,118,54,7,5,2,254,237,23,83,23,12,14,70,5,128,250
,0,4,192,33,83,114,25,57,57,25,114,83,33,96,96,163,32,47,21,55,75,37,14,115,125,72,128,8,254,130,14,12,1,7,88,86,14,1,1,4
,4,10,5,1,131,128,6,6,3,80,27,27,29,11,252,195,86,9,1,3,3,12,6,2,8,101,22,7,20,254,142,14,9,2,9,86,0,0,4,0
,0,255,100,7,0,6,0,0,47,0,57,0,81,0,91,0,0,1,20,6,7,22,21,20,2,4,32,36,2,53,52,55,46,1,53,52,54,51,50,23
,54,37,19,62,1,23,5,62,1,51,50,22,20,6,34,38,53,37,3,4,23,54,51,50,22,1,20,22,50,54,52,38,35,34,6,1,54,52,39,38
,34,7,14,1,34,38,39,38,34,7,6,20,23,30,2,50,62,1,38,50,54,53,52,38,35,34,6,20,7,0,59,50,12,213,254,144,254,80,254,145
,213,11,51,62,116,83,85,60,218,1,41,116,3,24,14,1,113,18,72,43,62,88,88,124,87,254,178,104,1,44,219,58,85,83,116,250,162,87,124,88
,88,62,61,88,3,42,11,11,10,30,11,41,160,160,160,41,11,30,10,11,11,43,151,94,88,94,151,22,124,87,88,61,62,88,2,178,58,95,25,46
,50,155,254,248,153,153,1,8,155,47,47,25,97,58,82,117,63,152,10,2,9,13,16,3,81,37,45,87,124,88,87,62,74,254,40,9,151,61,117,254
,231,62,88,88,124,87,88,254,96,11,30,11,10,10,42,40,40,42,10,10,10,31,11,43,50,9,9,50,248,88,62,61,88,87,124,0,0,0,1,0
,69,255,2,6,187,6,0,0,48,0,0,19,51,62,3,36,51,50,4,23,22,29,1,33,30,3,62,1,55,17,6,12,1,39,38,2,39,38,18,55
,14,1,7,33,54,46,4,47,1,14,3,69,1,16,85,145,190,1,1,148,231,1,110,111,104,251,155,1,105,168,211,215,201,73,92,254,237,254,162,141
,189,245,2,3,228,211,48,60,16,2,123,8,32,62,79,82,68,22,22,135,249,198,154,2,229,126,231,203,149,86,211,198,187,255,188,111,163,82,32,26
,67,51,254,135,55,74,2,54,73,1,96,196,242,1,84,98,60,131,94,77,126,77,56,26,15,1,1,5,79,130,151,0,0,0,4,0,0,255,128,9
,0,5,128,0,9,0,13,0,17,0,27,0,0,53,17,33,17,20,6,35,33,34,38,1,21,33,53,33,21,33,53,1,50,22,29,1,33,53,52,54
,51,9,0,94,66,248,64,66,94,2,128,1,128,253,0,1,0,6,96,66,94,247,0,94,66,32,2,96,253,160,66,94,94,1,34,128,128,128,128,4
,128,94,66,224,224,66,94,0,0,0,3,0,0,255,0,6,187,6,0,0,31,0,48,0,59,0,0,37,39,14,1,35,34,46,1,53,52,62,2,51
,50,22,23,55,38,36,35,34,4,6,2,16,18,22,4,51,50,36,9,1,6,0,33,34,36,38,2,16,18,54,36,51,32,0,23,3,35,21,35,17
,51,50,30,1,14,1,6,48,218,74,245,141,147,248,144,85,145,199,110,131,233,76,215,110,254,159,202,161,254,218,212,126,126,212,1,38,161,213,1,113
,254,64,2,181,116,254,75,254,238,182,254,180,240,142,142,240,1,76,182,1,4,1,165,125,159,39,96,136,32,45,12,10,45,246,111,120,138,144,248,146
,110,199,145,85,121,108,125,169,192,126,212,254,218,254,190,254,218,212,126,214,2,70,254,160,253,254,218,142,240,1,76,1,108,1,76,240,142,254,245,233
,254,116,160,1,96,40,56,56,40,0,4,0,32,255,0,6,224,6,0,0,3,0,7,0,11,0,15,0,0,9,1,55,33,1,39,17,1,31,1,17
,9,2,33,1,5,147,253,154,92,3,87,250,181,184,4,159,20,147,253,236,1,92,254,12,252,169,1,100,3,59,1,130,151,252,222,116,3,90,253,25
,96,95,252,166,1,79,2,127,252,222,2,59,0,0,3,0,0,255,0,6,128,5,240,0,11,0,23,0,125,0,0,1,53,52,43,1,34,29,1,20
,59,1,50,37,53,52,43,1,34,29,1,20,59,1,50,5,17,33,17,52,38,34,6,21,17,33,17,52,59,1,50,29,1,51,17,52,59,1,50,29
,1,51,53,52,59,1,50,29,1,51,53,52,62,2,22,51,17,38,53,52,54,50,22,21,20,7,21,54,51,50,22,51,50,54,51,50,29,1,20,6
,35,34,38,35,34,7,21,50,54,30,2,29,1,51,53,52,59,1,50,29,1,51,53,52,59,1,50,21,17,51,53,52,59,1,50,2,128,16,96,16
,16,96,16,2,0,16,96,16,16,96,16,2,0,253,128,112,160,112,253,128,16,96,16,128,16,96,16,128,16,96,16,128,5,12,7,16,1,32,33,44
,33,32,45,38,21,77,16,17,60,7,16,70,27,18,73,19,40,50,1,16,7,12,5,128,16,96,16,128,16,96,16,128,16,96,16,2,16,224,16,16
,224,16,16,224,16,16,224,16,16,253,16,1,64,80,112,112,80,254,192,2,240,16,16,112,2,112,16,16,112,112,16,16,112,112,6,7,3,1,1,1
,135,15,35,23,32,32,23,35,15,17,10,15,15,16,210,15,13,15,12,133,1,1,3,7,6,112,112,16,16,112,112,16,16,253,144,112,16,0,1,0
,0,0,0,9,0,5,128,0,106,0,0,1,22,20,7,5,6,35,34,39,38,61,1,33,22,23,30,5,59,1,53,52,54,51,33,50,22,21,17,20
,6,35,33,34,38,61,1,35,34,46,5,39,46,3,35,33,14,1,35,34,38,52,54,51,50,22,23,51,50,62,2,55,62,6,59,1,62,1,51,50
,22,20,6,35,34,38,39,35,34,14,4,7,6,7,33,53,52,54,23,8,240,16,16,254,192,8,8,9,7,16,252,166,37,46,16,17,31,23,31,32
,17,96,18,14,1,64,14,18,18,14,254,192,14,18,96,32,58,44,46,28,39,18,19,23,28,44,45,24,254,152,22,138,88,106,150,150,106,88,138,22
,104,24,45,44,28,23,19,18,39,28,46,44,58,32,107,21,98,62,80,112,112,80,62,98,21,107,17,32,31,23,31,17,16,46,37,4,90,32,16,2
,219,8,38,8,192,5,4,10,18,128,58,107,37,36,62,32,36,16,96,14,18,18,14,254,192,14,18,18,14,96,20,27,54,38,76,39,41,53,57,73
,34,84,108,150,212,150,108,84,34,73,57,53,41,39,76,38,54,27,20,57,71,112,160,112,71,57,16,36,32,62,36,37,107,58,128,18,20,11,0,0
,0,0,3,0,0,255,0,7,0,6,0,0,7,0,17,0,33,0,0,0,20,6,43,1,17,51,50,0,16,38,35,33,17,51,17,51,50,0,16,2
,6,4,32,36,38,2,16,18,54,36,32,4,22,4,126,79,56,253,253,56,1,2,183,131,254,79,180,253,130,2,135,142,240,254,180,254,148,254,180,240
,142,142,240,1,76,1,108,1,76,240,3,62,112,78,1,13,254,247,1,4,184,252,128,1,13,1,105,254,148,254,180,240,142,142,240,1,76,1,108,1
,76,240,142,142,240,0,4,0,0,255,217,9,0,5,39,0,39,0,58,0,77,0,97,0,0,1,52,38,39,6,7,14,1,35,34,39,46,1,55,54
,53,52,46,1,35,34,6,7,22,23,22,20,6,34,39,38,35,34,6,20,22,51,33,50,54,55,20,6,35,33,34,38,53,52,54,55,54,36,51,50
,0,23,30,1,23,20,7,6,35,34,39,46,1,55,54,16,39,38,62,1,22,23,22,36,16,7,6,35,34,39,46,1,55,54,53,52,39,38,54,55
,54,22,23,6,109,68,53,7,16,7,41,24,12,12,31,28,10,23,122,210,123,134,226,54,108,80,22,44,64,23,75,105,106,150,150,106,4,22,79,111
,153,201,142,251,234,169,240,200,149,62,1,62,195,235,1,91,23,116,153,250,97,23,41,24,19,26,12,18,71,71,18,12,52,63,18,97,1,0,134,23
,41,23,19,26,13,18,108,108,18,13,26,26,62,18,1,182,59,95,21,45,47,24,28,3,10,57,30,71,72,123,209,122,146,121,28,78,23,64,44,22
,75,149,212,149,111,78,142,200,239,169,153,228,22,184,228,254,195,231,25,187,121,175,144,33,13,17,63,26,104,1,2,104,26,62,36,13,26,142,68,254
,24,199,34,13,18,62,26,164,194,195,162,26,63,17,18,12,27,0,2,0,36,255,0,5,220,6,0,0,9,0,110,0,0,5,20,6,34,38,53,52
,54,50,22,39,14,1,21,20,23,6,35,34,46,5,53,52,62,3,50,30,3,21,20,7,30,1,31,1,50,54,53,52,46,4,39,38,39,46,3,53
,52,62,3,51,50,30,3,21,20,14,3,35,34,35,42,1,46,4,53,46,1,47,1,34,14,1,21,20,30,3,23,30,8,5,220,126,180,127,127,180
,126,233,115,155,33,146,233,109,184,123,98,54,35,12,9,28,45,83,106,82,44,27,8,23,28,108,39,40,115,150,18,45,54,94,93,73,28,15,116,142
,103,41,41,91,134,199,122,120,200,129,90,38,30,43,54,44,17,2,6,19,26,52,36,46,28,20,15,88,37,37,68,99,42,10,38,68,126,87,76,125
,93,73,48,34,19,10,2,13,89,127,127,89,90,127,127,191,15,175,118,74,64,78,42,67,86,84,82,51,14,19,47,65,51,36,35,47,59,39,14,34
,47,27,30,2,1,102,82,26,45,44,38,50,45,34,13,7,55,90,114,137,94,78,144,131,97,57,52,82,106,105,51,46,73,43,29,10,10,18,38,54
,87,54,16,19,1,1,62,78,37,24,38,54,48,59,29,25,57,54,64,55,70,54,73,51,0,0,3,0,0,255,128,6,0,5,128,0,15,0,31,0
,43,0,0,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,37,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,0,16,2,4,32
,36,2,16,18,36,32,4,2,192,18,14,255,0,14,18,18,14,1,0,14,18,1,192,18,14,255,0,14,18,18,14,1,0,14,18,1,128,206,254,159
,254,94,254,159,206,206,1,97,1,162,1,97,1,96,2,64,14,18,18,14,253,192,14,18,18,14,2,64,14,18,18,14,253,192,14,18,18,1,255,254
,94,254,159,206,206,1,97,1,162,1,97,206,206,0,4,0,0,255,128,6,0,5,128,0,11,0,23,0,39,0,55,0,0,0,32,4,18,16,2,4
,32,36,2,16,18,0,32,62,1,16,46,1,32,14,1,16,22,37,34,38,53,17,52,54,59,1,50,22,21,17,20,6,35,33,34,38,53,17,52,54
,59,1,50,22,21,17,20,6,35,2,47,1,162,1,97,206,206,254,159,254,94,254,159,206,206,1,158,1,40,250,146,146,250,254,216,250,146,146,1,238
,14,18,18,14,192,14,18,18,14,253,192,14,18,18,14,192,14,18,18,14,5,128,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,251,174,146
,250,1,40,250,146,146,250,254,216,250,78,18,14,2,64,14,18,18,14,253,192,14,18,18,14,2,64,14,18,18,14,253,192,14,18,0,0,0,2,0
,0,255,128,6,0,5,128,0,15,0,27,0,0,1,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,0,16,2,4,32,36,2,16,18,36,32
,4,4,64,18,14,253,192,14,18,18,14,2,64,14,18,1,192,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,96,2,64,14,18,18,14
,253,192,14,18,18,1,255,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,3,0,0,255,128,6,0,5,128,0,11,0,23,0,39,0,0,0
,32,4,18,16,2,4,32,36,2,16,18,0,32,62,1,16,46,1,32,14,1,16,22,55,34,38,53,17,52,54,51,33,50,22,21,17,20,6,35,2
,47,1,162,1,97,206,206,254,159,254,94,254,159,206,206,1,158,1,40,250,146,146,250,254,216,250,146,146,110,14,18,18,14,2,64,14,18,18,14,5
,128,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,251,174,146,250,1,40,250,146,146,250,254,216,250,78,18,14,2,64,14,18,18,14,253,192
,14,18,0,0,0,0,3,0,0,255,0,7,0,6,0,0,11,0,37,0,61,0,0,37,19,22,7,6,35,33,34,39,38,55,19,1,19,33,19,62
,1,51,33,21,20,22,50,54,61,1,33,21,20,22,50,54,61,1,33,50,22,37,17,20,6,34,38,53,17,52,38,34,6,21,17,20,6,34,38,53
,17,52,54,32,22,6,221,35,3,19,19,29,249,128,29,19,19,3,35,6,93,86,249,84,86,3,36,25,1,0,75,106,75,1,128,75,106,75,1,0
,25,36,254,131,38,52,38,150,212,150,38,52,38,225,1,62,225,128,254,199,28,22,21,21,22,28,1,57,3,71,252,249,3,7,24,33,128,53,75,75
,53,128,128,53,75,75,53,128,33,161,255,0,26,38,38,26,1,0,106,150,150,106,255,0,26,38,38,26,1,0,159,225,225,0,6,0,0,255,0,8
,0,6,0,0,21,0,35,0,47,0,59,0,73,0,109,0,0,1,50,22,20,6,43,1,3,14,1,35,33,34,38,39,3,35,34,38,52,54,51,1
,62,1,39,3,46,1,14,1,23,19,30,1,51,37,17,52,38,34,6,21,17,20,22,50,54,37,17,52,38,34,6,21,17,20,22,50,54,37,19,54
,46,1,6,7,3,6,22,23,51,50,54,1,3,35,19,62,1,59,1,52,54,51,33,50,22,21,51,50,22,23,19,35,3,46,1,43,1,20,6,35
,33,34,38,53,35,34,6,7,128,53,75,75,53,15,115,8,72,46,251,0,46,72,8,115,15,53,75,75,53,1,101,26,35,2,32,2,41,52,35,2
,32,2,37,25,1,160,38,52,38,38,52,38,1,128,38,52,38,38,52,38,1,96,32,2,35,52,41,2,32,2,35,26,5,25,37,251,126,93,132,101
,19,140,90,167,38,26,1,128,26,38,167,90,140,19,101,132,93,11,69,45,167,38,26,254,128,26,38,167,45,69,3,0,75,106,75,253,106,46,60,60
,46,2,150,75,106,75,252,224,2,41,26,1,160,26,35,4,41,26,254,96,25,34,64,1,160,26,38,38,26,254,96,26,38,38,26,1,160,26,38,38
,26,254,96,26,38,38,21,1,160,26,41,4,35,26,254,96,26,41,2,34,4,218,254,100,1,185,88,111,26,38,38,26,111,88,254,71,1,156,44,56
,26,38,38,26,56,0,2,0,33,255,128,6,223,5,128,0,3,0,79,0,0,1,19,35,3,1,7,6,35,33,3,33,50,23,22,15,1,6,35,33
,3,6,43,1,34,39,38,55,19,35,3,6,43,1,34,39,38,55,19,33,34,39,38,63,1,54,51,33,19,33,34,39,38,63,1,54,51,33,19,54
,59,1,50,23,22,7,3,51,19,54,59,1,50,23,22,7,3,33,50,23,22,3,223,64,254,64,3,254,56,7,24,254,185,64,1,55,15,10,10,4
,56,5,26,254,185,81,7,24,224,16,10,9,3,78,254,81,7,24,225,15,10,9,3,78,254,201,15,10,9,3,56,7,24,1,71,64,254,201,15,10
,10,4,56,5,26,1,71,81,7,25,224,15,10,9,3,78,254,81,7,25,224,15,10,9,3,78,1,55,15,10,9,2,0,1,0,255,0,1,248,224
,24,255,0,12,14,14,224,24,254,184,24,12,12,16,1,56,254,184,24,12,12,16,1,56,12,12,16,224,24,1,0,12,14,14,224,24,1,72,24,12
,12,16,254,200,1,72,24,12,12,16,254,200,12,12,0,0,0,0,4,0,107,255,0,5,149,6,0,0,2,0,5,0,17,0,37,0,0,1,23,7
,17,23,7,3,9,3,17,3,7,9,1,23,1,0,16,2,14,2,34,46,2,2,16,18,62,2,50,30,2,3,73,148,149,149,148,131,1,208,254,206
,1,50,254,48,255,93,1,64,254,192,93,0,255,2,207,64,111,170,193,246,193,170,111,64,64,111,170,193,246,193,170,111,1,227,148,149,3,140,149,148
,252,97,1,208,1,50,1,50,1,208,253,157,0,255,93,254,191,254,191,93,0,255,1,112,254,94,254,199,201,124,49,49,124,201,1,57,1,162,1,57
,201,124,49,49,124,201,0,0,0,0,3,0,40,255,0,3,216,6,0,0,2,0,5,0,17,0,0,37,55,39,17,55,39,19,9,1,17,1,39,9
,1,55,1,17,1,2,84,173,173,173,173,32,1,100,253,229,254,215,108,1,116,254,140,108,1,41,2,27,113,172,172,1,110,172,172,253,241,254,156,253
,228,2,199,254,216,108,1,117,1,117,108,254,216,2,199,253,228,0,5,0,0,255,128,6,0,5,128,0,7,0,15,0,23,0,41,0,49,0,0,36
,52,38,34,6,20,22,50,0,52,38,34,6,20,22,50,0,16,6,32,38,16,54,32,19,20,7,1,6,43,1,34,38,53,52,55,1,54,59,1,50
,22,4,16,6,32,38,16,54,32,5,0,76,104,76,76,104,253,76,76,104,76,76,104,4,76,225,254,194,225,225,1,62,129,13,251,224,19,32,160,26
,38,13,4,32,19,32,160,26,38,253,96,225,254,194,225,225,1,62,204,104,76,76,104,76,3,76,104,76,76,104,76,254,31,254,194,225,225,1,62,225
,2,192,20,18,250,128,26,38,26,20,18,5,128,26,38,187,254,194,225,225,1,62,225,0,0,0,5,0,3,255,71,6,253,5,185,0,6,0,10,0
,16,0,23,0,29,0,0,19,9,1,46,1,55,19,41,1,1,49,1,19,33,19,54,50,1,19,22,6,7,9,1,49,33,19,54,50,23,104,3,24
,252,156,18,14,7,101,1,206,2,148,254,182,253,240,198,254,50,198,8,50,5,48,101,7,14,18,252,156,3,24,254,50,198,8,50,8,3,62,252,9
,2,118,13,43,21,1,52,252,9,6,91,253,156,2,100,23,253,133,254,204,21,43,13,253,138,3,247,2,100,23,23,0,0,0,4,0,0,255,32,7
,0,5,224,0,3,0,15,0,19,0,49,0,0,1,51,53,35,1,53,6,7,6,38,39,23,30,1,55,50,1,33,53,33,5,20,7,22,21,20,4
,35,34,38,39,6,34,39,14,1,35,34,36,53,52,55,38,53,52,18,36,32,4,18,1,128,160,160,3,69,104,139,135,249,96,1,88,248,148,129,254
,40,2,128,253,128,4,128,99,89,254,253,184,122,206,58,19,76,19,58,206,122,184,254,253,89,99,240,1,157,1,230,1,157,240,2,192,224,253,212,92
,36,2,1,95,75,96,80,97,1,1,125,224,192,187,165,102,127,157,222,105,88,1,1,88,105,222,157,127,102,165,187,209,1,97,206,206,254,159,0,0
,0,0,9,0,0,255,128,6,0,5,128,0,3,0,7,0,11,0,15,0,19,0,40,0,43,0,46,0,62,0,0,1,21,35,53,19,21,35,53,1
,21,33,53,1,21,33,53,1,21,33,53,1,17,52,38,43,1,1,39,7,1,35,34,6,21,17,20,22,51,33,50,54,1,55,33,5,55,33,5,17
,20,6,35,33,34,38,53,17,52,54,51,33,50,22,2,3,252,252,252,3,242,254,171,1,85,253,96,2,160,253,96,3,39,12,8,32,254,134,210,210
,254,134,32,8,12,12,8,4,216,8,12,252,169,185,254,106,2,139,221,254,106,2,226,86,62,251,40,62,86,86,62,4,216,62,86,2,113,128,128,0
,255,127,127,254,1,128,128,1,0,128,128,0,255,127,127,252,164,4,216,8,12,255,0,171,171,1,0,12,8,251,40,8,12,12,4,94,150,150,150,20
,251,40,62,86,86,62,4,216,62,86,86,0,0,0,2,0,0,255,0,7,0,6,0,0,31,0,61,0,0,1,38,39,38,39,38,39,38,6,31,1
,30,3,23,22,23,30,4,23,22,55,54,39,38,39,38,2,1,46,5,2,39,32,12,1,30,3,14,1,7,6,21,1,35,1,14,2,46,2,3,128
,104,56,139,208,34,36,89,10,39,39,62,101,88,53,44,9,4,44,80,116,115,147,75,153,1,1,50,53,28,77,204,254,82,76,113,83,59,58,46,75
,39,1,17,1,193,1,53,233,138,82,30,5,14,13,13,1,67,104,254,231,22,139,104,172,149,186,2,208,196,82,202,116,19,17,40,16,30,31,43,101
,132,94,84,17,8,84,138,170,130,117,32,66,6,3,34,36,21,58,1,50,254,126,60,130,157,152,220,198,1,50,136,72,112,177,168,229,170,227,119,84
,84,23,254,185,1,29,2,24,14,2,32,86,0,0,5,0,0,255,0,7,0,6,0,0,47,0,55,0,71,0,87,0,103,0,0,0,46,1,7,4
,32,37,38,14,1,22,23,22,23,14,2,15,1,6,22,23,22,51,50,63,1,54,55,51,22,31,1,22,51,50,55,62,1,47,1,46,2,39,54,55
,54,36,52,38,34,6,20,22,50,4,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,0,32,4,6,2,16,18,22,4,32,36,54,18,16,2
,38,0,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,5,100,12,45,26,254,251,254,232,254,251,26,45,12,27,26,194,109,2,27,26,28,9
,10,22,25,9,14,44,16,8,54,17,42,17,54,8,16,44,14,9,25,22,10,9,28,26,27,2,109,194,26,254,183,75,106,75,75,106,2,139,111,189
,254,251,254,226,254,251,189,111,111,189,1,5,1,30,1,5,189,254,75,254,200,254,228,206,122,122,206,1,28,1,56,1,28,206,122,122,206,1,200,142
,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,3,85,52,27,6,62,62,6,27,52,45,6,46,12,158,222,89,71,21,25,48,10
,4,41,20,139,120,120,139,20,41,4,10,48,25,21,71,89,222,158,12,46,6,163,106,75,75,106,75,113,254,226,254,251,189,111,111,189,1,5,1,30
,1,5,189,111,111,189,1,108,122,206,254,228,254,200,254,228,206,122,122,206,1,28,1,56,1,28,206,254,48,254,148,254,180,240,142,142,240,1,76,1
,108,1,76,240,142,142,240,0,0,0,3,0,68,255,0,5,187,6,0,0,47,0,55,0,72,0,0,0,22,7,3,14,1,35,34,39,46,1,55,19
,7,22,21,20,7,39,54,53,52,38,35,34,7,39,54,55,1,39,7,6,46,1,54,63,1,62,1,23,1,22,23,22,15,1,37,2,34,38,52,54
,50,22,20,1,50,55,23,6,35,34,46,1,53,52,55,23,6,21,20,22,5,124,68,5,44,4,61,41,6,3,44,57,3,35,143,55,148,137,91,205
,145,134,102,137,120,164,1,8,149,181,33,88,58,5,32,239,26,68,30,1,232,36,12,17,43,205,1,115,41,148,104,104,148,105,252,218,106,90,139,146
,189,148,251,146,116,139,60,205,2,246,70,47,253,217,42,56,1,3,67,44,1,173,8,113,127,216,156,137,101,134,145,206,92,138,114,27,1,44,87,161
,30,5,66,88,29,213,23,7,18,254,229,21,47,67,50,232,20,1,169,104,148,104,104,148,250,190,61,139,116,146,250,148,188,148,139,88,109,145,205,0
,0,0,4,0,0,255,128,6,0,5,128,0,15,0,62,0,78,0,90,0,0,1,21,20,6,43,1,34,38,61,1,52,54,59,1,50,22,1,20,14
,2,7,14,2,29,1,20,6,43,1,34,38,61,1,52,62,3,55,62,1,53,52,38,35,34,7,6,7,6,35,34,47,1,46,1,55,54,51,50,22
,2,32,14,2,16,30,2,32,62,2,16,46,1,0,16,2,4,32,36,2,16,18,36,32,4,3,112,18,14,160,14,18,18,14,160,14,18,1,0,30
,61,43,38,32,29,23,18,14,160,14,18,21,27,51,31,29,53,44,87,52,56,39,29,51,9,16,11,8,108,10,4,7,122,227,129,219,238,254,252,237
,171,102,102,171,237,1,4,237,171,102,102,171,1,145,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,80,160,14,18,18,14,160,14,18,18
,1,226,50,80,58,30,21,18,20,28,15,32,14,18,18,14,68,35,59,36,35,16,13,25,36,31,42,59,27,20,63,12,6,82,7,26,10,192,179,1
,67,102,171,237,254,252,237,171,102,102,171,237,1,4,237,171,254,183,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,4,0,39,255,3,5
,89,6,0,0,9,0,62,0,79,0,96,0,0,0,34,38,53,52,54,50,22,21,20,1,20,6,38,39,1,46,1,15,1,6,31,1,19,3,6,7
,6,7,6,39,46,1,55,54,27,1,7,23,22,14,2,15,1,6,46,3,53,3,19,54,51,50,23,1,22,31,1,7,22,5,30,1,31,1,22,23
,22,7,6,46,1,39,35,38,39,3,1,22,21,20,7,6,46,1,39,38,1,22,54,63,1,54,53,1,174,128,92,92,128,91,1,140,60,67,14,254
,145,7,14,4,3,7,11,122,1,161,67,25,15,13,50,53,29,25,3,2,195,5,85,35,4,10,18,20,7,7,19,31,17,11,4,46,211,23,90,75
,32,1,168,7,7,3,1,7,254,109,43,91,24,24,36,6,11,47,35,62,40,9,1,6,2,124,3,147,31,3,9,11,20,6,114,254,203,3,8,3
,3,11,4,201,91,65,64,91,91,64,65,253,35,50,35,22,23,1,182,12,7,2,3,8,13,139,254,158,254,55,192,42,26,6,26,25,13,60,27,17
,2,89,1,160,164,222,24,36,19,13,1,2,3,12,20,24,15,2,1,43,1,125,34,40,253,247,5,12,3,1,13,166,113,224,56,55,93,32,70,27
,22,12,32,19,16,9,1,95,254,173,49,8,5,2,5,11,41,10,172,1,233,1,4,2,2,9,8,0,0,0,7,0,3,0,227,9,0,4,28,0
,2,0,11,0,35,0,49,0,75,0,101,0,127,0,0,1,51,3,5,52,38,43,1,17,51,50,54,1,19,20,6,43,1,34,38,61,1,33,7,6
,35,33,34,38,55,1,54,51,33,50,22,4,16,6,35,33,34,38,53,17,52,54,51,33,50,1,20,14,3,7,35,62,3,63,1,52,46,3,39,51
,30,3,31,1,20,14,3,7,35,62,3,63,1,52,46,3,39,51,30,3,31,1,20,14,3,7,35,62,3,63,1,52,46,3,39,51,30,3,23,1
,248,171,1,3,88,101,96,54,52,91,108,253,194,1,19,14,216,14,19,254,221,55,10,18,254,245,21,19,13,2,44,9,18,1,76,14,20,3,59,251
,199,254,242,14,20,20,14,1,12,200,1,152,1,15,28,61,43,51,38,57,26,16,1,1,1,14,26,56,38,43,41,62,29,17,2,185,1,15,28,62
,43,51,38,57,26,16,1,1,1,14,25,56,38,43,41,62,29,17,2,182,1,15,28,61,43,51,38,56,26,16,1,1,1,14,25,56,38,43,41,62
,29,17,1,2,30,1,9,166,87,106,254,124,114,1,202,253,12,14,20,20,14,62,81,15,36,17,2,245,14,20,198,254,126,220,20,14,2,244,14,20
,254,100,11,36,107,97,119,43,45,119,105,91,27,27,8,29,91,92,131,59,47,120,103,89,26,26,11,36,107,97,119,43,45,119,105,91,27,27,8,29
,91,92,131,59,47,120,103,89,26,26,11,36,107,97,119,43,45,119,105,91,27,27,8,29,91,92,131,59,47,120,103,89,26,0,4,0,0,255,0,5
,128,5,242,0,74,0,92,0,109,0,130,0,0,5,52,46,1,39,46,2,39,38,35,34,6,35,34,39,46,3,39,38,52,55,62,3,55,54,51,50
,22,51,50,55,62,2,55,62,2,53,52,38,39,38,35,34,7,14,3,7,6,7,14,1,16,22,23,22,23,22,23,22,23,22,51,50,55,62,1,19
,34,38,52,55,54,53,52,39,38,52,54,50,23,22,20,7,6,22,34,39,38,52,55,54,16,39,38,52,54,50,23,22,16,7,22,34,39,38,52,55
,62,1,16,38,39,38,52,54,50,23,22,18,16,2,7,2,105,26,36,2,1,8,9,9,15,36,23,94,24,34,13,6,10,5,8,1,37,37,1,8
,5,10,6,13,34,24,94,23,36,15,9,9,8,1,2,36,26,87,32,20,25,34,64,57,79,63,29,31,6,3,49,38,38,49,56,27,63,116,3,3
,64,34,25,20,32,87,159,26,38,19,37,37,19,38,52,19,75,75,21,184,54,18,19,19,112,112,19,38,52,19,150,150,163,54,18,19,19,90,97,97
,90,19,38,52,19,109,116,116,109,153,11,94,120,9,4,45,27,8,14,11,11,5,21,19,29,4,128,254,128,4,29,19,21,5,11,11,14,8,27,45
,4,9,120,94,11,22,61,12,8,18,17,47,85,55,67,12,7,107,218,254,242,218,107,122,39,91,36,1,1,18,8,12,61,3,167,38,53,19,37,53
,52,39,19,52,38,19,75,212,75,19,181,19,19,52,19,114,1,60,114,19,52,38,19,150,254,88,150,200,19,19,52,19,91,234,1,0,234,91,19,52
,38,19,109,254,232,254,204,254,232,109,0,0,0,0,20,0,0,0,0,8,128,5,128,0,7,0,15,0,23,0,31,0,39,0,47,0,55,0,63,0
,71,0,79,0,87,0,95,0,103,0,111,0,119,0,127,0,135,0,143,0,151,0,159,0,0,0,34,6,20,22,50,54,52,36,34,6,20,22,50,54
,52,2,34,6,20,22,50,54,52,0,34,6,20,22,50,54,52,36,34,6,20,22,50,54,52,0,34,6,20,22,50,54,52,36,34,6,20,22,50,54
,52,2,34,6,20,22,50,54,52,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54
,50,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,0,20,6,34,38,52,54
,50,4,20,6,34,38,52,54,50,0,20,6,34,38,52,54,50,4,20,6,34,38,52,54,50,1,2,132,94,94,132,94,1,162,132,94,94,132,94,94
,132,94,94,132,94,2,162,132,94,94,132,94,1,162,132,94,94,132,94,253,162,132,94,94,132,94,1,162,132,94,94,132,94,94,132,94,94,132,94,249
,32,112,160,112,112,160,2,112,112,160,112,112,160,254,112,112,160,112,112,160,2,112,112,160,112,112,160,254,112,112,160,112,112,160,5,112,112,160,112,112
,160,253,112,112,160,112,112,160,5,112,112,160,112,112,160,254,112,112,160,112,112,160,2,112,112,160,112,112,160,254,112,112,160,112,112,160,2,112,112,160
,112,112,160,1,96,94,132,94,94,132,94,94,132,94,94,132,2,94,94,132,94,94,132,254,94,94,132,94,94,132,94,94,132,94,94,132,2,94,94,132
,94,94,132,94,94,132,94,94,132,2,94,94,132,94,94,132,252,14,160,112,112,160,112,112,160,112,112,160,112,1,144,160,112,112,160,112,112,160,112,112
,160,112,1,144,160,112,112,160,112,251,144,160,112,112,160,112,3,144,160,112,112,160,112,251,144,160,112,112,160,112,1,144,160,112,112,160,112,112,160,112
,112,160,112,1,144,160,112,112,160,112,112,160,112,112,160,112,0,0,9,0,0,255,0,6,252,6,0,0,7,0,15,0,19,0,27,0,76,0,84,0
,105,0,123,0,140,0,0,22,20,6,34,38,52,54,50,54,20,6,34,38,52,54,50,19,1,7,1,36,20,6,34,38,52,54,50,1,20,14,2,7
,14,3,21,20,6,35,34,38,52,54,51,50,54,53,52,62,2,55,62,2,53,52,0,32,0,21,20,6,34,38,53,52,62,2,50,30,2,4,20,6
,34,38,52,54,50,37,20,6,34,38,53,52,38,35,34,6,21,20,6,34,38,53,52,54,32,22,37,22,6,7,6,35,34,38,39,38,39,46,1,55
,62,1,23,22,5,22,6,7,6,35,34,39,38,39,46,1,55,62,1,23,22,128,38,52,38,38,52,230,38,52,38,38,52,83,1,0,90,255,0,1
,173,38,52,38,38,52,2,233,23,52,36,35,31,29,38,15,225,159,26,38,38,26,106,150,23,51,36,34,40,39,36,254,249,254,142,254,249,38,52,38
,91,155,213,234,213,155,91,253,253,38,52,38,38,52,1,70,38,52,38,131,93,92,132,38,52,38,206,1,36,206,1,138,10,22,25,9,14,19,33,7
,68,156,21,8,16,17,52,21,183,1,37,9,21,25,11,12,44,16,92,205,22,7,16,16,52,21,235,166,52,38,38,52,38,154,52,38,38,52,38,1
,45,255,0,90,1,0,135,52,38,38,52,38,1,0,59,99,88,47,41,35,38,62,66,41,159,225,38,52,38,150,106,57,97,85,48,39,46,52,97,55
,185,1,7,254,249,185,26,38,38,26,117,213,155,91,91,155,213,219,52,38,38,52,38,64,26,38,38,26,93,131,131,93,26,38,38,26,146,206,206,143
,25,48,10,4,22,19,178,117,16,52,21,21,8,16,137,133,25,48,10,4,41,238,155,16,52,21,22,7,16,175,0,0,0,0,4,0,3,255,0,8
,253,6,0,0,17,0,35,0,103,0,176,0,0,1,38,39,46,1,35,34,6,21,20,31,1,22,51,50,54,55,54,37,52,47,1,38,35,34,6,7
,6,7,22,23,30,1,51,50,54,1,14,1,39,38,35,34,7,50,54,51,50,22,23,22,6,7,6,35,50,23,30,1,7,14,1,43,1,38,39,37
,7,6,35,34,39,3,38,54,63,1,19,54,18,55,54,30,1,6,7,6,7,54,55,54,22,23,22,6,7,6,7,54,51,50,23,30,1,37,19,22
,6,15,1,3,6,2,7,6,35,34,39,38,54,55,54,55,6,7,6,35,34,38,39,38,54,55,54,55,6,35,34,39,46,1,55,62,1,23,22,51
,50,55,34,6,35,34,38,39,38,54,55,54,51,34,39,46,1,55,62,1,59,2,22,23,5,55,54,51,50,4,8,59,25,17,62,37,53,75,36,10
,34,48,37,62,17,25,2,115,36,10,34,48,37,62,17,25,59,59,25,17,62,37,53,75,254,86,17,76,35,62,72,51,48,3,13,3,92,157,40,17
,27,36,18,21,21,18,36,27,17,40,157,92,6,16,28,254,222,239,14,15,40,17,160,11,14,22,209,148,17,149,121,31,79,50,7,31,70,47,123,144
,40,63,4,5,48,40,84,75,46,53,115,103,36,26,3,177,160,11,14,22,209,148,17,149,121,26,35,45,29,25,7,31,70,47,123,144,4,8,36,55
,4,5,48,40,84,75,46,53,115,103,36,26,18,17,76,35,62,72,51,48,3,13,3,92,157,40,17,27,36,18,21,21,18,36,27,17,40,157,92,6
,1,14,28,1,35,239,14,15,40,2,64,2,53,34,39,75,53,56,33,8,31,39,34,53,130,56,33,8,31,39,34,53,2,2,53,34,39,75,1,18
,35,26,17,31,17,1,100,83,36,75,17,9,9,17,75,36,83,100,2,2,27,120,7,35,1,64,23,49,13,119,1,11,155,1,17,100,25,7,62,78
,26,59,69,84,17,5,48,40,40,63,4,10,45,10,50,18,75,124,254,192,23,49,13,119,254,245,155,254,239,100,22,35,31,78,26,59,69,84,17,1
,48,36,40,63,4,10,45,10,50,18,75,36,35,26,17,31,17,1,100,83,36,75,17,9,9,17,75,36,83,100,2,2,27,120,7,0,0,0,4,0
,0,255,0,7,0,6,0,0,19,0,68,0,78,0,92,0,0,1,20,22,50,54,53,52,38,32,6,21,20,22,50,54,53,52,54,50,22,2,34,14
,2,21,20,22,50,54,53,52,0,32,0,21,20,14,1,7,14,3,21,20,6,35,34,6,20,22,51,50,54,53,52,62,2,55,62,3,53,52,46,1
,1,23,1,6,34,47,1,38,52,55,1,23,22,20,15,3,38,39,63,1,54,50,4,32,38,52,38,206,254,220,206,38,52,38,132,184,132,104,234,213
,155,91,38,52,38,1,7,1,114,1,7,36,39,40,34,36,51,23,150,106,26,38,38,26,159,225,15,38,29,31,35,36,52,23,91,155,253,194,226,253
,189,12,34,12,168,12,12,6,64,168,12,12,233,26,71,66,129,91,207,13,34,2,192,26,38,38,26,146,206,206,146,26,38,38,26,93,131,131,1,227
,91,155,213,117,26,38,38,26,185,1,7,254,249,185,55,97,52,46,39,48,85,97,57,106,150,38,52,38,225,159,41,66,62,38,35,41,47,88,99,59
,117,213,155,253,140,226,253,189,12,12,168,12,34,12,6,6,168,12,34,13,233,25,71,153,105,91,207,12,0,0,3,0,0,255,128,6,0,5,128,0
,20,0,88,0,104,0,0,1,20,7,14,1,7,14,1,7,6,35,34,38,53,52,54,55,54,51,50,22,1,52,38,39,38,35,34,7,39,62,1,53
,52,35,34,7,14,2,21,20,22,51,50,20,7,6,7,14,1,35,34,53,52,62,3,53,52,39,46,1,35,34,14,1,21,20,22,51,50,62,1,55
,62,1,55,54,55,54,51,50,23,22,51,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,3,98,13,11,41,10,2,5,11,20,11
,58,52,70,68,28,23,28,17,1,230,78,13,21,13,91,135,2,3,49,242,24,44,94,149,74,161,147,25,1,4,22,14,75,45,42,21,29,30,22,7
,24,69,31,35,57,25,103,87,82,146,89,21,6,19,5,3,11,118,109,48,79,1,3,5,9,184,169,119,252,64,119,169,169,119,3,192,119,169,3,253
,27,67,50,200,50,11,3,1,2,99,64,88,172,38,14,33,254,57,14,123,5,8,77,2,22,226,65,233,6,17,145,188,95,146,158,6,2,34,83,52
,98,47,24,47,32,25,15,1,3,7,22,29,68,82,34,88,108,106,146,80,22,89,22,12,6,60,18,1,9,2,15,252,64,119,169,169,119,3,192,119
,169,169,0,0,0,0,2,0,37,255,0,5,218,5,255,0,25,0,101,0,0,1,52,46,2,35,34,7,6,2,21,20,30,2,51,50,22,62,2,55
,54,18,55,54,1,20,6,35,39,46,2,35,34,7,6,7,14,1,7,14,3,35,34,38,53,52,62,1,51,50,22,23,20,14,3,21,20,22,51,50
,62,3,55,53,52,38,42,1,6,35,34,38,53,52,62,2,55,54,51,32,17,20,2,7,23,62,1,51,50,23,30,1,2,232,4,13,29,23,39,39
,105,108,17,36,69,47,4,28,12,20,10,2,16,64,16,19,2,242,15,8,6,22,80,64,31,167,184,15,6,10,29,8,23,94,131,178,96,135,159,39
,87,54,38,164,1,33,46,46,32,33,32,45,80,53,43,22,5,7,10,10,10,1,227,250,69,123,189,110,52,54,1,118,76,5,3,101,163,86,22,31
,19,122,4,207,24,29,31,15,23,58,254,247,137,44,83,78,47,1,1,5,12,10,77,1,53,77,91,253,167,7,13,1,3,16,9,93,8,19,36,139
,31,91,177,152,94,167,136,53,128,105,67,28,1,23,39,50,72,38,33,40,63,93,118,96,42,9,2,3,1,245,226,108,226,194,141,19,9,254,152,98
,254,162,36,3,57,62,13,7,191,0,3,0,1,255,0,6,127,5,251,0,61,0,82,0,135,0,0,1,50,31,1,22,31,1,22,7,3,14,1,7
,13,1,35,34,38,53,52,54,55,37,33,34,38,55,62,1,51,45,1,46,1,55,62,1,59,1,5,37,46,1,55,62,1,51,50,23,5,23,50,22
,51,50,54,47,1,46,1,55,54,7,23,47,2,3,46,1,39,38,54,55,54,22,31,1,14,1,7,6,22,1,19,22,15,1,6,15,1,54,47,1
,38,47,1,38,35,34,7,3,38,54,55,54,22,23,9,1,38,54,55,54,22,23,19,3,38,54,55,54,22,23,19,23,30,1,54,47,1,38,54,55
,50,22,3,63,32,27,222,61,49,146,40,11,72,6,47,32,253,241,254,160,9,39,57,54,38,1,4,254,64,41,57,2,2,60,39,1,186,253,247,41
,50,6,6,57,37,10,1,225,254,161,38,48,6,6,54,35,6,14,1,192,217,1,4,1,23,15,20,186,35,14,25,27,21,186,218,5,36,238,1,3
,1,24,11,32,31,74,27,142,2,6,1,32,18,3,165,15,4,15,48,12,55,106,2,41,146,53,64,222,34,42,51,37,235,25,14,34,33,77,24,1
,10,254,250,21,21,37,35,75,20,241,136,15,21,34,37,78,17,193,101,8,30,24,1,12,2,56,41,39,56,3,95,18,148,40,57,170,46,60,254,99
,32,43,4,56,32,56,40,37,54,5,32,60,41,39,52,1,64,5,64,41,35,45,60,94,10,63,37,36,45,2,96,37,1,46,13,125,23,81,33,38
,202,125,37,2,38,1,6,1,5,1,31,78,25,23,11,28,147,1,5,2,45,108,1,167,254,246,73,74,219,59,28,54,62,47,170,61,42,148,23,37
,1,56,33,81,23,22,16,32,254,160,1,199,35,80,19,18,24,34,254,92,1,81,35,78,17,19,26,38,254,97,196,15,5,20,16,224,41,60,1,57
,0,0,4,0,0,255,30,7,0,5,98,0,82,0,93,0,109,0,112,0,0,37,34,39,46,1,39,38,53,52,62,6,55,54,37,38,53,52,55,54
,51,50,31,1,54,51,32,0,23,22,20,7,14,1,7,22,21,20,7,6,35,34,47,2,1,55,6,7,22,26,1,21,20,7,6,35,34,39,1,6
,7,22,0,21,20,35,34,38,47,1,3,6,7,30,1,23,19,20,37,23,36,19,2,37,30,1,21,20,6,0,20,22,51,50,22,21,20,22,50,54
,53,52,38,35,34,37,39,23,1,79,2,4,86,165,57,21,4,4,10,7,14,6,18,2,184,1,12,110,17,116,12,18,10,124,92,100,1,10,1,207
,147,20,20,91,255,151,110,17,116,11,19,10,124,64,254,68,7,58,41,3,248,238,9,13,59,57,3,254,56,39,43,24,1,124,11,14,137,4,106,224
,44,34,2,32,7,176,3,52,49,1,17,177,180,254,233,67,72,94,254,110,28,20,86,122,28,40,28,178,126,20,1,82,9,7,180,2,57,176,92,30
,39,9,20,16,20,12,22,8,23,3,251,114,198,13,19,10,64,16,229,19,254,237,232,31,76,31,142,223,64,198,13,20,9,64,16,229,119,3,52,7
,24,23,5,254,54,254,72,3,7,2,3,7,3,73,28,40,43,253,67,4,10,44,6,197,1,157,53,53,3,44,12,254,185,10,102,91,111,1,18,1
,21,112,64,169,92,106,189,2,59,40,28,122,86,20,28,28,20,126,178,17,4,7,0,0,0,0,4,0,0,255,151,4,254,5,105,0,31,0,47,0
,53,0,79,0,0,1,20,7,6,35,34,39,38,53,52,62,1,51,50,23,6,7,38,35,34,6,21,20,22,32,54,53,52,39,54,55,22,39,20,2
,15,1,34,39,62,4,53,52,39,22,39,21,38,39,30,1,19,34,39,54,55,54,55,14,1,7,38,53,52,54,55,54,55,62,1,55,22,21,20,7
,14,1,4,26,147,148,230,232,146,147,136,242,147,96,86,32,7,66,77,167,227,225,1,82,224,32,66,57,41,204,159,159,14,29,33,83,127,72,45,15
,3,55,55,73,133,88,109,253,83,77,218,72,19,2,42,195,107,35,34,26,46,111,59,94,27,74,24,32,113,1,174,215,159,161,161,159,215,147,247,146
,31,62,64,28,246,168,170,237,237,170,89,77,13,36,98,75,192,254,206,100,1,5,32,141,168,210,175,91,69,34,160,162,2,214,226,59,255,254,185,75
,120,127,37,19,94,145,25,54,59,37,84,26,44,30,16,85,58,105,148,109,61,77,107,0,0,0,5,0,0,255,128,6,0,5,128,0,26,0,41,0
,46,0,68,0,84,0,0,1,52,39,6,7,22,21,20,6,34,38,53,52,54,51,50,23,54,55,38,35,34,6,16,22,32,54,3,22,21,20,14,3
,7,22,59,1,54,17,52,39,46,1,39,22,5,52,39,6,7,14,1,21,20,23,62,1,55,14,1,7,22,51,50,54,55,54,37,17,20,6,35,33
,34,38,53,17,52,54,51,33,50,22,4,26,28,41,44,22,154,232,155,156,115,53,45,4,23,60,65,154,207,207,1,52,207,178,2,10,31,50,87,57
,21,21,10,219,38,4,80,58,92,1,129,51,41,83,69,80,24,74,133,29,4,141,68,52,58,51,78,21,17,1,73,169,119,252,64,119,169,169,119,3
,192,119,169,1,239,78,69,25,9,50,64,117,163,163,117,115,169,19,43,44,21,217,254,202,212,213,1,253,24,47,63,120,145,115,97,22,3,139,1,16
,116,109,80,183,39,156,41,102,72,86,23,19,69,65,40,37,17,100,65,52,119,38,52,74,53,42,240,252,64,119,169,169,119,3,192,119,169,169,0,0
,0,0,2,0,0,255,128,6,0,5,128,0,79,0,91,0,0,1,52,39,46,1,39,38,53,52,62,2,53,52,38,35,34,6,35,34,39,54,53,52
,39,46,1,35,34,7,6,21,20,23,6,35,34,38,35,34,6,21,20,30,2,21,20,7,6,7,6,21,20,23,30,2,51,50,54,51,50,30,2,51
,50,62,2,51,50,22,51,50,62,1,55,54,0,16,2,4,32,36,2,16,18,36,32,4,4,255,22,67,102,29,7,39,47,39,37,20,12,40,11,4
,8,5,17,36,134,85,199,76,17,5,4,10,12,40,10,21,35,39,47,39,7,64,134,22,137,2,8,15,16,12,51,14,35,64,44,71,41,43,72,43
,64,35,14,51,13,16,14,8,2,137,1,1,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,1,132,22,5,15,88,64,19,6,15,22,12,29
,22,19,25,16,2,95,19,79,35,78,87,165,35,79,19,95,2,15,24,20,21,29,12,22,15,6,19,138,29,5,22,46,22,5,42,19,9,30,35,30
,30,35,30,8,20,40,5,22,1,251,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,1,0,15,255,128,6,113,5,128,0,91,0,0,1
,54,22,23,22,21,20,7,22,51,50,54,51,50,22,21,20,14,2,21,20,23,30,1,23,22,23,22,21,20,7,14,2,35,34,38,35,34,7,14,4
,35,34,46,3,39,38,35,34,6,35,34,46,1,39,38,53,52,55,54,55,62,1,55,54,53,52,46,2,53,52,54,51,50,22,51,50,55,38,53,52
,55,62,1,3,80,134,213,57,27,9,14,14,18,66,18,29,54,63,75,63,12,37,131,79,28,52,28,219,7,8,20,23,20,84,22,37,25,32,62,54
,62,90,54,52,89,61,54,62,31,26,37,24,83,17,25,20,8,7,219,28,52,28,78,133,36,12,63,76,63,52,29,15,66,20,18,14,9,27,64,216
,5,128,1,139,123,58,121,47,144,7,27,36,28,32,44,19,39,28,15,28,82,136,33,12,11,6,29,70,33,11,56,37,13,5,5,35,41,40,27,27
,40,41,35,5,5,15,37,58,11,33,70,29,6,11,12,32,138,81,28,15,28,39,20,43,31,27,37,26,7,142,48,122,58,137,122,0,0,0,2,0
,0,255,128,6,0,5,128,0,79,0,95,0,0,1,52,39,46,1,39,38,53,52,62,2,53,52,38,35,34,6,35,34,39,54,53,52,39,46,1,35
,34,7,6,21,20,23,6,35,34,38,35,34,6,21,20,30,2,21,20,7,6,7,6,21,20,23,30,2,51,50,54,51,50,30,2,51,50,62,2,51
,50,22,51,50,62,1,55,54,1,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,5,0,22,67,102,29,7,39,46,39,37,20,11,40,12,4
,8,5,17,36,133,86,198,77,18,6,10,5,11,41,10,20,35,39,46,39,7,64,134,22,138,2,8,14,16,13,51,13,35,65,44,71,41,43,72,43
,65,35,13,52,13,15,15,8,1,138,1,0,169,119,252,64,119,169,169,119,3,192,119,169,1,132,22,5,14,88,65,14,11,15,22,12,29,22,19,25
,16,2,63,52,78,36,78,87,165,38,77,38,76,2,16,25,20,21,29,12,22,15,11,14,138,29,5,22,47,22,5,42,19,10,30,35,30,30,35,30
,9,19,43,3,22,3,11,252,64,119,169,169,119,3,192,119,169,169,0,0,0,0,1,0,0,255,128,9,0,6,0,0,79,0,0,1,14,5,7,14
,1,7,14,3,7,6,7,36,5,6,7,62,1,63,1,62,3,55,54,5,50,23,30,1,7,3,6,39,38,35,34,4,7,6,46,2,47,1,52,53
,52,51,50,55,18,0,51,50,30,5,23,55,62,4,55,62,3,9,0,69,112,66,53,22,22,3,10,51,23,15,70,65,80,8,47,104,254,171,254,223
,92,211,47,78,16,15,71,184,83,133,76,186,1,23,1,9,11,6,6,194,15,32,128,226,146,254,0,136,82,134,80,42,12,1,6,138,233,192,1,109
,201,5,19,57,53,70,56,52,14,102,2,38,51,71,97,52,66,124,119,66,6,0,46,92,70,73,42,47,6,18,237,46,29,63,38,44,6,31,200,14
,172,53,126,16,30,7,7,27,75,32,37,13,31,38,3,6,22,11,254,167,29,7,24,89,2,1,28,46,34,17,1,1,1,6,55,1,110,1,60,1
,9,15,34,45,73,46,177,4,77,96,123,144,65,82,119,74,33,0,5,0,0,255,0,6,0,6,0,0,70,0,88,0,94,0,100,0,106,0,0,1
,20,7,39,23,6,7,39,23,6,7,39,23,6,7,39,23,6,34,39,55,7,38,39,55,7,38,39,55,7,38,39,55,7,38,53,52,55,23,39,54
,55,23,39,54,55,23,39,54,55,23,39,54,51,50,23,7,55,22,23,7,55,22,23,7,55,22,23,7,55,22,23,52,2,36,35,34,14,2,21,20
,30,2,51,50,36,18,19,17,9,1,17,1,17,1,17,9,1,17,1,17,9,1,17,1,5,42,5,236,224,19,39,214,177,44,63,157,103,61,79,79
,14,38,76,38,14,78,74,66,103,157,59,49,178,214,39,19,224,237,5,5,238,225,19,39,214,177,46,61,158,103,67,73,77,13,36,39,38,38,14,78
,74,66,103,158,61,46,177,213,37,21,224,237,5,30,157,254,243,158,119,216,157,92,92,157,216,119,158,1,13,157,73,253,111,253,111,2,145,2,196,253
,60,253,60,5,196,253,0,253,0,3,0,2,128,45,31,14,78,73,68,103,158,61,47,178,215,37,22,228,240,6,6,238,226,19,40,215,178,43,65,158
,104,69,72,79,14,42,34,35,42,14,79,73,67,104,159,61,47,178,215,39,19,224,236,6,6,237,225,19,40,214,178,47,61,159,104,62,79,78,14,31
,46,160,1,15,157,93,157,218,120,119,218,157,93,157,1,15,2,30,253,2,254,129,1,127,2,254,1,127,249,203,1,156,3,55,1,155,254,101,252,201
,3,91,252,128,254,64,1,192,3,128,1,192,0,0,3,0,0,255,0,6,128,6,0,0,20,0,41,0,54,0,0,1,33,7,33,34,6,21,17,20
,22,23,22,51,21,35,34,38,53,17,52,54,37,51,1,14,6,7,53,54,55,54,53,52,39,1,51,19,1,17,33,54,55,33,17,52,38,39,55,30
,1,1,83,2,179,26,253,103,110,157,121,93,23,75,45,140,199,199,3,223,247,254,30,23,35,55,53,76,83,108,62,163,57,20,20,254,227,228,187,3
,86,252,229,37,8,2,166,99,80,25,101,125,5,38,72,158,110,252,253,95,149,19,5,72,200,140,3,3,140,200,218,250,242,61,85,111,76,81,49,33
,2,195,26,156,52,53,54,52,2,221,253,183,1,242,251,169,55,18,4,14,85,140,29,67,34,179,0,0,0,0,10,0,0,255,0,7,0,6,0,0
,7,0,20,0,33,0,45,0,57,0,91,0,110,0,120,0,144,0,231,0,0,0,20,6,34,38,52,54,50,3,53,52,38,34,6,29,1,20,22,51
,50,54,55,53,52,38,34,6,29,1,20,22,51,50,54,55,53,52,38,34,6,29,1,20,22,50,54,55,53,52,38,34,6,29,1,20,22,50,54,1
,6,4,35,34,46,2,53,52,55,6,21,20,18,23,54,51,50,23,54,51,50,23,54,50,23,54,51,50,22,23,54,18,39,52,35,34,7,6,35,34
,53,52,55,6,21,20,22,51,50,55,54,1,52,38,34,6,21,20,22,50,54,1,52,46,1,35,34,6,7,6,21,20,22,51,50,55,54,51,50,22
,21,20,7,62,1,5,20,2,7,6,4,15,1,21,20,6,35,34,39,6,34,39,6,35,34,39,6,35,34,38,53,6,35,34,39,54,55,38,39,22
,51,50,55,38,39,38,53,52,62,3,51,50,23,54,55,62,1,55,62,2,55,62,1,51,50,23,54,51,50,23,22,21,20,14,2,7,30,1,21,20
,7,22,23,54,51,50,23,22,3,84,34,56,34,34,56,130,41,60,40,41,29,30,41,172,40,60,41,41,30,29,41,174,41,60,41,41,60,41,174,41
,60,41,41,60,41,1,12,84,254,216,175,123,213,144,82,21,104,130,120,30,61,56,30,32,55,56,30,32,110,32,30,56,28,49,13,112,130,142,72,17
,30,95,54,226,30,83,178,146,111,99,13,254,70,64,98,64,63,100,63,2,117,75,151,98,77,144,55,48,91,102,53,89,36,17,51,53,4,75,85,1
,23,67,60,58,254,238,91,4,59,43,56,30,32,110,32,30,56,55,32,30,56,47,56,90,108,118,93,54,52,113,69,32,39,89,75,192,48,24,18,45
,65,108,66,59,22,19,23,2,20,3,10,26,24,16,87,249,136,35,27,59,87,83,57,5,12,13,19,1,17,38,16,157,40,25,35,45,55,90,4,232
,58,47,47,58,47,250,84,114,30,43,43,30,114,30,44,44,30,114,30,43,43,30,114,30,44,44,30,114,30,43,43,30,114,30,44,44,30,114,30,43
,43,30,114,30,44,44,2,202,160,199,103,171,224,120,88,86,175,215,162,254,212,101,57,50,50,50,50,50,50,31,25,94,1,19,179,75,6,19,243,86
,118,127,148,150,221,70,48,2,178,50,79,79,50,51,79,79,254,224,96,166,108,70,59,159,109,104,106,19,6,56,52,26,20,68,195,114,111,254,235,66
,64,157,26,1,114,43,64,50,50,50,50,50,50,67,48,68,80,1,19,31,96,7,46,192,114,56,104,57,137,156,126,84,52,29,25,3,20,6,15,46
,38,20,111,132,4,64,57,5,7,5,17,15,19,1,6,24,12,6,19,138,240,30,49,80,0,0,3,0,0,255,128,6,0,5,128,0,25,0,37,0
,49,0,0,1,52,39,33,21,51,14,1,35,34,38,52,54,51,50,23,55,38,35,34,6,16,22,51,50,54,37,51,53,35,53,35,21,35,21,51,21
,51,0,16,2,4,32,36,2,16,18,36,32,4,3,149,6,254,150,217,12,125,80,99,140,140,99,93,60,104,108,149,160,224,224,160,165,203,1,89,109
,109,110,110,110,110,1,18,206,254,159,254,94,254,159,206,206,1,97,1,162,1,97,2,119,33,31,132,76,89,143,198,143,59,101,100,225,254,194,225,210
,119,110,110,110,110,110,1,118,254,94,254,159,206,206,1,97,1,162,1,97,206,206,0,0,0,0,1,0,37,255,0,6,0,6,0,0,39,0,0,1
,17,20,7,6,35,34,36,35,34,7,17,35,17,46,1,53,52,54,50,22,21,20,6,7,21,54,51,50,23,30,1,51,50,55,62,1,51,50,22,6
,0,49,174,164,73,254,227,85,164,206,160,63,76,128,182,128,76,63,190,153,99,99,14,195,52,77,88,11,138,20,26,38,4,0,252,185,48,14,52,59
,48,254,174,5,88,25,112,68,91,128,128,91,68,112,25,68,44,15,2,41,18,2,38,38,0,0,5,0,0,255,81,9,0,5,0,0,5,0,57,0
,86,0,92,0,148,0,0,18,50,54,38,34,6,5,46,5,39,7,6,38,39,38,54,63,1,46,2,6,35,34,15,1,35,17,50,54,30,3,23,1
,22,51,50,55,22,54,55,22,55,62,1,39,22,51,50,62,1,38,23,51,17,35,39,38,43,1,34,15,1,6,20,23,30,1,63,1,54,30,1,7
,30,1,23,30,1,23,22,4,50,54,38,34,6,1,17,20,6,35,33,14,1,7,14,1,7,14,1,39,14,1,46,1,39,1,33,34,38,53,17,52
,54,51,33,62,6,59,1,50,23,54,59,1,50,30,6,23,33,50,22,152,80,32,32,80,32,6,9,10,57,26,50,35,46,22,125,83,251,80,57,1
,58,177,22,58,37,76,11,92,66,158,155,5,32,12,27,14,21,8,1,41,115,112,78,47,57,111,17,74,53,20,32,2,10,33,43,68,31,7,132,96
,93,157,66,103,167,89,57,209,28,27,43,134,44,193,25,57,37,10,16,80,20,29,107,11,52,1,0,80,32,32,80,32,1,8,38,26,254,78,27,110
,70,33,95,55,42,125,66,60,132,123,111,48,254,225,254,154,26,38,38,26,1,165,14,66,29,59,42,60,64,36,117,99,82,82,99,167,35,64,49,54
,35,51,27,55,14,1,99,26,38,1,128,64,64,64,6,13,74,34,64,42,52,23,140,94,4,96,69,178,68,206,11,11,1,2,66,158,253,224,1,1
,3,6,11,8,254,220,111,47,20,56,57,6,50,18,55,23,10,42,64,79,24,2,0,180,76,67,243,33,84,33,51,2,50,218,23,3,51,31,19,88
,24,36,139,15,66,74,64,64,64,2,0,253,128,26,38,65,83,10,48,67,12,53,57,4,34,11,39,68,47,1,26,38,26,2,160,26,38,14,68,28
,52,23,28,11,56,56,12,17,36,26,53,31,65,16,38,0,0,0,2,0,0,255,0,7,0,6,0,0,37,0,79,0,0,1,17,20,6,35,33,34
,38,53,17,52,55,62,6,55,62,3,50,30,2,23,30,6,23,22,1,36,55,62,1,47,1,46,1,7,6,7,14,3,34,46,2,39,38,39,38,6
,15,1,6,22,23,22,5,30,4,50,62,3,7,0,94,66,250,64,66,94,11,8,62,21,70,70,122,165,110,5,95,48,80,58,80,50,92,6,110,165
,122,70,70,21,62,8,11,253,204,1,7,82,11,3,8,38,8,26,11,231,112,5,94,49,80,58,80,49,94,5,186,157,11,26,8,38,8,3,11,82
,1,7,10,80,50,78,77,74,77,81,48,82,3,114,252,46,66,94,94,66,3,210,15,9,7,55,17,58,53,93,121,80,4,72,33,37,37,34,70,5
,80,121,93,53,58,17,55,7,9,253,168,191,61,8,25,11,52,11,3,8,169,81,3,72,33,37,37,33,72,3,134,116,8,3,11,52,11,25,8,61
,191,8,60,34,45,22,22,47,32,63,0,0,0,0,3,0,0,255,0,7,0,6,0,0,49,0,80,0,112,0,0,1,23,22,6,7,14,2,7,14
,3,43,2,34,46,2,39,46,2,39,46,1,63,1,62,1,23,22,23,30,3,59,2,50,62,2,55,36,55,54,22,19,17,38,39,38,37,46,3,43
,2,34,14,2,7,14,2,7,6,7,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,55,54,0,55,62,3,59,2,50,30,2,23
,30,2,23,22,5,194,39,8,3,10,43,167,126,4,39,42,79,74,37,1,1,37,74,78,44,38,5,120,167,39,11,3,8,37,8,27,11,94,212,5
,77,44,69,24,1,1,24,69,44,77,5,1,2,55,11,26,198,90,69,91,254,214,3,80,42,70,24,1,1,24,70,42,80,3,215,201,58,53,14,7
,19,13,5,192,13,19,128,94,66,250,64,66,94,41,123,1,198,6,36,46,77,75,37,1,1,37,75,77,46,36,43,226,226,88,41,2,111,51,11,25
,8,34,129,97,3,32,32,50,23,23,50,33,31,4,93,129,30,8,25,11,52,11,4,9,73,163,4,62,31,34,34,31,62,4,198,44,8,3,253,38
,3,160,83,56,74,230,2,66,30,35,35,30,66,2,166,159,49,50,12,7,252,96,13,19,19,3,173,252,96,66,94,94,66,3,160,56,38,114,1,97
,5,30,35,49,24,24,49,35,30,36,172,182,82,38,0,0,0,0,11,0,21,255,0,5,235,6,0,0,3,0,7,0,11,0,15,0,26,0,30,0
,34,0,38,0,46,0,50,0,118,0,0,37,23,47,1,1,37,39,5,1,23,3,39,1,37,3,5,1,23,47,1,20,22,6,15,1,23,22,1,5
,3,37,1,55,7,23,1,37,3,5,1,55,39,7,23,22,15,1,37,55,15,2,39,7,20,15,1,6,47,1,23,20,7,5,6,35,38,53,39,38
,3,38,63,1,38,39,3,38,63,1,38,39,3,38,55,37,50,23,5,22,21,19,20,15,1,23,22,21,23,55,54,31,1,55,52,63,1,54,31,1
,30,1,14,1,21,20,15,1,6,1,74,202,34,216,1,18,1,18,11,254,212,254,238,227,48,245,1,60,1,61,14,254,160,1,141,95,2,103,2,2
,4,78,85,7,253,63,1,0,68,254,233,4,102,15,230,2,253,225,1,117,19,254,89,3,154,20,226,2,144,6,2,7,1,2,30,179,20,19,71,8
,4,234,7,7,98,7,4,254,219,4,2,8,228,4,55,2,7,61,94,1,72,2,8,94,133,2,96,2,9,1,177,5,3,1,61,6,20,6,118,126
,5,5,121,5,6,84,3,5,206,6,5,245,4,2,15,20,4,191,6,1,214,236,213,254,51,218,245,215,1,134,213,1,71,204,253,226,214,1,68,200
,254,163,80,239,79,1,15,9,3,52,70,6,2,158,200,1,209,173,251,179,234,164,240,2,113,194,1,185,163,252,187,233,142,105,95,4,5,119,92,222
,128,228,33,49,117,5,3,187,5,5,83,161,5,3,234,2,2,1,242,4,1,17,7,4,37,86,6,1,95,7,5,45,100,8,1,210,10,3,135,1
,153,4,5,254,49,7,3,61,85,2,6,123,74,4,4,56,110,6,3,126,3,3,135,4,6,114,135,3,5,2,153,5,0,0,3,0,0,255,0,6
,128,6,0,0,29,0,39,0,85,0,0,1,52,46,3,35,14,4,34,46,3,39,34,14,3,21,20,22,51,33,50,54,3,52,38,34,6,21,20,22
,50,54,1,21,20,6,43,1,21,20,6,35,33,34,38,53,17,52,54,51,33,50,22,29,1,51,50,22,29,1,20,6,43,1,21,51,50,22,29,1
,20,6,43,1,21,51,50,22,4,177,11,31,48,80,51,6,55,30,51,47,46,47,51,30,55,6,51,80,48,31,11,84,61,2,64,61,84,173,153,214
,153,153,214,153,2,124,18,14,96,94,66,251,64,66,94,94,66,4,192,66,94,96,14,18,18,14,96,96,14,18,18,14,96,96,14,18,1,42,57,100
,101,71,45,4,33,16,24,10,10,24,16,33,4,45,71,101,100,57,73,97,97,2,155,108,152,152,108,107,152,152,254,79,192,14,18,224,66,94,94,66
,5,192,66,94,94,66,224,18,14,192,14,18,128,18,14,192,14,18,128,18,0,0,4,0,0,255,0,6,128,6,0,0,9,0,43,0,89,0,105,0
,0,1,20,6,34,38,53,52,54,50,22,3,50,30,4,21,20,6,35,33,34,38,53,52,62,3,59,1,30,5,50,62,4,1,20,6,43,1,21,51
,50,22,29,1,20,6,43,1,21,51,50,22,29,1,20,6,43,1,21,20,6,35,33,34,38,53,17,52,54,51,33,50,22,29,1,51,50,22,21,1
,17,52,38,35,33,34,6,21,17,20,22,51,33,50,54,4,4,153,214,153,153,214,153,48,46,73,47,32,16,7,79,66,253,192,66,79,9,28,45,81
,53,5,7,50,21,45,29,41,38,41,29,45,21,50,2,179,19,13,96,96,13,19,19,13,96,96,13,19,19,13,96,94,66,251,64,66,94,94,66,4
,192,66,94,96,13,19,255,0,19,13,251,64,13,19,19,13,4,192,13,19,3,124,107,152,152,107,108,152,152,254,184,34,61,73,89,76,41,67,103,103
,67,48,91,106,77,52,4,31,11,23,9,9,9,9,23,11,31,1,4,13,19,128,19,13,192,13,19,128,19,13,192,13,19,224,66,94,94,66,5,192
,66,94,94,66,224,19,13,251,64,5,192,13,19,19,13,250,64,13,19,19,0,0,6,0,0,255,128,8,0,5,128,0,25,0,33,0,49,0,65,0
,81,0,117,0,0,0,52,46,2,35,14,4,34,46,3,39,34,14,2,20,22,51,33,50,2,52,38,34,6,20,22,50,1,53,52,38,35,33,34,6
,29,1,20,22,51,33,50,54,17,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,17,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54
,1,17,20,6,35,33,53,52,38,43,1,34,6,29,1,33,53,52,38,43,1,34,6,29,1,33,34,38,53,17,52,54,51,33,50,22,4,0,18,41
,80,57,6,48,27,44,42,42,42,44,27,48,6,57,80,41,18,74,54,2,0,54,83,133,188,133,133,188,4,34,18,14,253,192,14,18,18,14,2,64
,14,18,21,15,253,200,15,21,21,15,2,56,15,21,18,14,253,192,14,18,18,14,2,64,14,18,1,0,94,66,254,160,18,14,64,14,18,253,0,18
,14,64,14,18,254,160,66,94,94,66,6,192,66,94,1,85,128,107,99,57,4,28,15,20,9,9,20,15,28,4,57,99,107,128,85,2,63,188,133,133
,188,133,254,230,64,14,18,18,14,64,14,18,18,1,18,56,15,21,21,15,56,15,21,21,1,11,64,14,18,18,14,64,14,18,18,1,78,251,64,66
,94,96,14,18,18,14,96,96,14,18,18,14,96,94,66,4,192,66,94,94,0,0,7,0,0,255,128,8,0,5,128,0,25,0,33,0,49,0,65,0
,81,0,117,0,133,0,0,0,20,6,35,33,34,38,52,62,2,51,30,4,50,62,3,55,50,30,1,2,20,6,34,38,52,54,50,1,21,20,6,35
,33,34,38,61,1,52,54,51,33,50,22,53,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,53,21,20,6,35,33,34,38,61,1,52,54,51
,33,50,22,19,17,52,38,35,33,34,6,21,17,20,22,51,33,53,52,54,59,1,50,22,29,1,33,53,52,54,59,1,50,22,29,1,33,50,54,19
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,0,74,54,254,0,54,74,18,41,80,57,6,48,27,44,42,42,42,44,27,48,6,57,80
,41,139,133,188,133,133,188,4,34,18,14,253,192,14,18,18,14,2,64,14,18,21,15,253,200,15,21,21,15,2,56,15,21,18,14,253,192,14,18,18
,14,2,64,14,18,128,19,13,249,64,13,19,19,13,1,96,18,14,64,14,18,3,0,18,14,64,14,18,1,96,13,19,128,94,66,249,64,66,94,94
,66,6,192,66,94,1,213,128,85,85,128,107,99,57,4,28,15,20,9,9,20,15,28,4,57,99,1,187,188,133,133,188,133,253,96,64,14,18,18,14
,64,14,18,18,238,56,15,21,21,15,56,15,21,21,245,64,14,18,18,14,64,14,18,18,252,50,4,192,13,19,19,13,251,64,13,19,96,14,18,18
,14,96,96,14,18,18,14,96,19,4,205,251,64,66,94,94,66,4,192,66,94,94,0,0,0,0,3,0,0,255,0,7,0,6,0,0,15,0,23,0
,40,0,0,37,46,1,39,14,1,34,38,39,14,1,7,22,4,32,36,2,16,38,32,6,16,22,32,0,16,2,6,4,35,34,36,38,2,16,18,54
,36,32,4,22,5,243,22,131,119,67,185,206,185,67,119,131,22,106,1,74,1,126,1,74,137,225,254,194,225,225,1,62,2,225,142,239,254,180,183,182
,254,180,240,142,142,240,1,76,1,108,1,76,240,197,155,205,16,74,83,83,74,16,205,155,150,175,175,2,178,1,62,225,225,254,194,225,1,54,254,148
,254,181,241,142,142,240,1,76,1,108,1,76,240,142,142,240,0,0,3,0,0,255,0,7,0,6,0,0,16,0,36,0,44,0,0,0,32,4,22,18
,21,20,2,6,4,32,36,38,2,16,18,54,1,54,53,52,2,38,36,32,4,6,2,21,20,23,18,51,22,32,55,50,38,16,38,32,6,16,22,32
,2,202,1,108,1,76,240,142,141,240,254,180,254,146,254,180,239,142,142,240,4,109,149,122,206,254,228,254,200,254,228,206,122,149,66,240,131,1,108,131
,240,169,225,254,194,225,225,1,62,6,0,142,240,254,180,182,181,254,180,240,143,142,241,1,75,1,108,1,76,240,251,71,205,250,156,1,28,206,122,122
,206,254,228,156,250,205,1,71,128,128,161,1,62,225,225,254,194,225,0,0,0,0,3,0,0,255,0,6,0,6,0,0,31,0,39,0,55,0,0,1
,30,4,21,20,6,35,33,34,38,53,52,62,3,55,38,53,52,62,2,50,30,2,21,20,0,32,6,16,22,32,54,16,19,50,54,53,52,2,39,6
,32,39,6,2,21,20,22,51,4,177,47,85,93,66,44,200,141,252,170,141,200,44,66,93,85,47,79,81,138,189,208,189,138,81,254,159,254,194,225,225
,1,62,225,43,88,125,157,147,145,254,130,145,147,157,125,88,2,240,14,48,98,133,211,131,154,219,219,154,131,211,133,98,48,14,125,147,104,189,138,81
,81,138,189,104,147,2,19,225,254,194,225,225,1,62,250,225,143,102,239,1,20,7,127,127,7,254,236,239,102,143,0,0,0,0,4,0,0,255,0,5
,0,6,0,0,17,0,25,0,35,0,61,0,0,0,20,6,35,33,34,38,52,62,2,51,22,50,55,50,30,1,2,20,6,34,38,52,54,50,1,17
,33,17,20,22,51,33,50,54,19,17,20,6,35,33,34,38,53,17,52,54,51,33,21,20,22,59,1,50,54,61,1,33,50,22,4,0,74,54,254,0
,54,74,18,41,81,56,80,216,80,56,81,41,136,135,190,135,135,190,1,161,252,0,19,13,3,192,13,19,128,94,66,252,64,66,94,94,66,1,96,18
,14,192,14,18,1,96,66,94,1,86,128,86,86,128,108,100,57,75,75,57,100,1,185,188,133,133,188,133,251,160,5,96,250,160,13,19,19,5,205,250
,64,66,94,94,66,5,192,66,94,96,14,18,18,14,96,94,0,0,8,0,0,255,128,8,0,5,128,0,19,0,27,0,43,0,59,0,75,0,91,0
,101,0,117,0,0,1,52,46,2,35,6,34,39,34,14,2,21,20,22,51,33,50,54,2,52,38,34,6,20,22,50,1,53,52,38,35,33,34,6,29
,1,20,22,51,33,50,54,1,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,37,53,52,38,43,1,34,6,29,1,20,22,59,1,50,54,17
,53,52,38,35,33,34,6,29,1,20,22,51,33,50,54,1,33,53,52,38,35,33,34,6,21,33,17,20,6,35,33,34,38,53,17,52,54,51,33,50
,22,3,128,15,34,68,47,64,184,64,47,68,34,15,63,44,1,170,44,63,128,112,160,112,112,160,4,112,18,14,253,64,14,18,18,14,2,192,14,18
,254,128,18,14,254,192,14,18,18,14,1,64,14,18,1,128,18,14,192,14,18,18,14,192,14,18,18,14,253,64,14,18,18,14,2,192,14,18,249,128
,7,0,18,14,249,64,14,18,7,128,94,66,249,64,66,94,94,66,6,192,66,94,1,68,54,93,87,50,64,64,50,87,93,54,55,77,77,1,163,160
,112,112,160,112,254,224,64,14,18,18,14,64,14,18,18,1,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18,18,1,14,64,14
,18,18,14,64,14,18,18,1,110,96,14,18,18,14,251,64,66,94,94,66,4,192,66,94,94,0,8,0,0,255,128,8,0,5,128,0,19,0,27,0
,43,0,59,0,75,0,91,0,101,0,117,0,0,1,20,6,35,33,34,38,53,52,62,2,51,22,50,55,50,30,2,2,20,6,34,38,52,54,50,1
,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,5,21,20,6,43,1,34,38,61
,1,52,54,59,1,50,22,53,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,19,17,33,17,20,22,51,33,50,54,19,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,3,128,63,44,254,86,44,63,15,34,68,47,64,184,64,47,68,34,15,128,112,160,112,112,160,4,112,18,14,253,64
,14,18,18,14,2,192,14,18,254,128,18,14,254,192,14,18,18,14,1,64,14,18,1,128,18,14,192,14,18,18,14,192,14,18,18,14,253,64,14,18
,18,14,2,192,14,18,128,249,0,19,13,6,192,13,19,128,94,66,249,64,66,94,94,66,6,192,66,94,1,68,55,77,77,55,54,93,87,50,64,64
,50,87,93,1,214,160,112,112,160,112,253,160,64,14,18,18,14,64,14,18,18,242,64,14,18,18,14,64,14,18,18,14,64,14,18,18,14,64,14,18
,18,242,64,14,18,18,14,64,14,18,18,252,178,4,96,251,160,13,19,19,4,205,251,64,66,94,94,66,4,192,66,94,94,0,2,0,29,255,0,6
,226,6,0,0,26,0,65,0,0,1,16,2,35,34,2,17,16,18,51,50,55,46,4,35,34,7,39,54,51,50,22,23,54,1,51,22,14,3,35,34
,46,2,39,6,35,34,36,38,2,53,52,18,54,36,51,50,30,3,21,20,2,7,30,1,51,50,54,4,231,210,225,222,208,208,222,74,57,22,34,54
,53,73,41,46,33,49,105,171,132,167,67,67,1,134,117,3,10,43,73,141,92,71,119,92,66,33,97,108,150,254,227,221,135,135,222,1,29,149,121,235
,199,153,86,161,138,47,93,58,61,66,2,237,1,62,1,57,254,198,254,195,254,196,254,201,17,43,60,70,43,29,16,97,91,108,101,149,254,133,27,80
,110,91,65,38,74,82,55,27,116,201,1,41,169,170,1,43,202,116,72,140,189,249,137,190,254,197,107,70,73,75,0,0,0,0,4,0,0,255,101,9
,0,5,155,0,32,0,46,0,153,0,191,0,0,5,20,6,35,34,39,38,39,2,17,16,19,62,1,51,50,22,21,20,7,6,7,6,21,16,23,22
,23,30,4,37,20,6,35,33,34,38,53,52,54,51,33,50,22,3,20,7,14,1,7,6,35,34,38,53,52,62,2,53,52,39,38,35,34,21,20,22
,21,20,6,35,34,53,52,54,53,52,39,46,1,35,34,14,1,21,20,22,21,20,14,3,21,20,23,22,23,22,23,22,21,20,35,34,39,46,1,53
,52,62,3,53,52,39,38,39,38,53,52,51,50,23,30,4,23,20,30,5,51,50,54,53,52,38,52,51,50,23,30,1,5,16,7,14,3,35,34,38
,53,52,62,1,55,54,17,52,38,39,38,39,46,5,53,52,54,51,50,23,22,18,23,22,1,197,32,21,1,12,63,99,225,213,39,112,38,19,32,63
,98,49,119,123,50,86,2,25,14,20,9,5,63,35,29,251,199,26,38,35,29,4,57,26,38,215,67,25,89,39,16,11,7,16,38,46,38,35,29,17
,3,15,43,23,66,3,10,13,58,22,5,4,3,32,38,54,53,38,42,29,50,16,1,1,18,6,27,119,152,49,71,70,49,25,29,27,19,41,50,60
,41,60,39,28,16,8,6,3,8,10,12,17,10,23,28,40,10,27,66,72,61,2,211,138,19,58,78,84,32,16,30,58,79,9,183,41,52,58,105,2
,22,11,19,11,8,32,19,70,126,98,96,12,2,101,21,33,3,15,125,1,28,1,136,1,85,1,17,51,105,27,19,27,63,102,82,199,250,254,231,210
,85,88,3,26,16,25,22,124,29,39,38,26,29,39,38,2,73,134,99,38,81,20,10,12,6,9,42,50,85,46,76,54,42,5,12,47,13,22,26,76
,15,58,15,25,21,25,57,1,4,4,2,48,30,37,62,46,46,62,37,98,62,43,20,5,5,2,3,16,11,43,193,122,55,121,109,108,119,52,53,41
,48,16,9,12,20,29,19,51,51,74,64,48,1,33,17,33,21,22,11,28,23,25,84,20,70,76,160,135,254,238,229,32,80,93,61,31,16,15,71,83
,11,230,1,45,131,208,107,119,109,3,21,12,23,17,20,9,19,33,169,131,254,228,172,42,0,0,2,0,0,255,0,7,0,6,0,0,24,0,40,0
,0,37,19,54,38,7,1,14,1,22,31,1,1,54,23,22,7,1,57,1,7,50,63,1,23,22,0,16,2,6,4,32,36,38,2,16,18,54,36,32
,4,22,4,165,147,9,39,32,252,160,29,21,16,24,221,2,1,21,11,7,11,254,97,16,23,22,108,224,64,2,108,142,240,254,180,254,148,254,180,240
,142,142,240,1,76,1,108,1,76,240,229,2,181,44,38,12,254,179,11,28,25,7,69,1,67,14,8,5,10,254,137,228,22,104,165,36,2,155,254,148
,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,0,6,0,0,255,0,4,0,6,0,0,13,0,31,0,47,0,51,0,55,0,59,0
,0,37,20,6,34,38,53,52,54,55,17,51,17,30,1,23,52,38,39,17,52,38,34,6,21,17,14,1,21,20,22,32,54,55,20,0,32,0,53,52
,55,17,52,54,32,22,21,17,22,19,21,35,53,19,21,35,53,19,21,35,53,2,128,112,160,112,70,58,128,58,70,128,68,60,112,160,112,60,68,187
,1,10,187,128,254,249,254,142,254,249,128,187,1,10,187,128,128,192,192,192,192,192,192,80,112,112,80,60,100,21,3,139,252,117,21,100,60,77,134,45
,3,0,80,112,112,80,253,0,45,134,77,133,187,187,133,185,254,249,1,7,185,182,131,2,199,133,187,187,133,253,57,131,1,138,128,128,1,0,128,128
,1,0,128,128,0,0,6,0,0,255,0,4,0,6,0,0,13,0,31,0,47,0,51,0,55,0,59,0,0,37,20,6,34,38,53,52,54,55,17,51
,17,30,1,23,52,38,39,17,52,38,34,6,21,17,14,1,21,20,22,32,54,55,20,0,32,0,53,52,55,17,52,54,32,22,21,17,22,19,21,35
,53,19,21,35,53,19,21,35,53,2,128,112,160,112,70,58,128,58,70,128,68,60,112,160,112,60,68,187,1,10,187,128,254,249,254,142,254,249,128,187
,1,10,187,128,128,192,192,192,192,192,192,80,112,112,80,60,100,21,2,139,253,117,21,100,60,77,134,45,3,0,80,112,112,80,253,0,45,134,77,133
,187,187,133,185,254,249,1,7,185,182,131,2,199,133,187,187,133,253,57,131,1,138,128,128,1,0,128,128,1,0,128,128,0,0,6,0,0,255,0,4
,0,6,0,0,13,0,31,0,47,0,51,0,55,0,59,0,0,37,20,6,34,38,53,52,54,55,17,51,17,30,1,23,52,38,39,17,52,38,34,6
,21,17,14,1,21,20,22,32,54,55,20,0,32,0,53,52,55,17,52,54,32,22,21,17,22,19,21,35,53,19,21,35,53,19,21,35,53,2,128,112
,160,112,70,58,128,58,70,128,68,60,112,160,112,60,68,187,1,10,187,128,254,249,254,142,254,249,128,187,1,10,187,128,128,192,192,192,192,192,192,80
,112,112,80,60,100,21,1,139,254,117,21,100,60,77,134,45,3,0,80,112,112,80,253,0,45,134,77,133,187,187,133,185,254,249,1,7,185,182,131,2
,199,133,187,187,133,253,57,131,1,138,128,128,1,0,128,128,1,0,128,128,0,0,6,0,0,255,0,4,0,6,0,0,13,0,31,0,47,0,51,0
,55,0,59,0,0,37,20,6,34,38,53,52,54,55,53,51,21,30,1,23,52,38,39,17,52,38,34,6,21,17,14,1,21,20,22,32,54,55,20,0
,32,0,53,52,55,17,52,54,32,22,21,17,22,19,21,35,53,19,21,35,53,19,21,35,53,2,128,112,160,112,70,58,128,58,70,128,68,60,112,160
,112,60,68,187,1,10,187,128,254,249,254,142,254,249,128,187,1,10,187,128,128,192,192,192,192,192,192,80,112,112,80,60,100,21,139,139,21,100,60,77
,134,45,3,0,80,112,112,80,253,0,45,134,77,133,187,187,133,185,254,249,1,7,185,182,131,2,199,133,187,187,133,253,57,131,1,138,128,128,1,0
,128,128,1,0,128,128,0,0,0,0,6,0,0,255,0,4,0,6,0,0,9,0,27,0,43,0,47,0,51,0,55,0,0,37,20,6,34,38,53,52
,54,50,22,23,52,38,39,17,52,38,34,6,21,17,14,1,21,20,22,32,54,55,20,0,32,0,53,52,55,17,52,54,32,22,21,17,22,19,21,35
,53,19,21,35,53,19,21,35,53,2,128,112,160,112,112,160,112,128,68,60,112,160,112,60,68,187,1,10,187,128,254,249,254,142,254,249,128,187,1,10
,187,128,128,192,192,192,192,192,192,80,112,112,80,79,113,113,79,77,134,45,3,0,80,112,112,80,253,0,45,134,77,133,187,187,133,185,254,249,1,7
,185,182,131,2,199,133,187,187,133,253,57,131,1,138,128,128,1,0,128,128,1,0,128,128,0,0,16,0,0,255,0,7,128,6,0,0,38,0,46,0
,54,0,62,0,70,0,78,0,86,0,94,0,102,0,110,0,118,0,126,0,134,0,142,0,150,0,158,0,0,1,22,20,7,1,6,34,47,1,38,52
,63,1,46,1,55,38,35,34,6,21,17,33,17,52,62,2,51,50,22,23,54,22,23,55,54,50,23,2,50,22,20,6,34,38,52,4,34,38,52,54
,50,22,20,54,50,22,20,6,34,38,52,4,50,22,20,6,34,38,52,4,52,54,50,22,20,6,34,36,50,22,20,6,34,38,52,4,50,22,20,6
,34,38,52,4,34,38,52,54,50,22,20,54,50,22,20,6,34,38,52,4,34,38,52,54,50,22,20,54,50,22,20,6,34,38,52,4,50,22,20,6
,34,38,52,36,50,22,20,6,34,38,52,6,50,22,20,6,34,38,52,6,50,22,20,6,34,38,52,5,153,10,10,253,142,10,26,10,82,10,10,44
,72,19,56,74,102,106,150,255,0,81,138,189,104,106,190,71,94,206,82,44,10,26,10,33,52,38,38,52,38,1,90,52,38,38,52,38,166,52,38,38
,52,38,253,166,52,38,38,52,38,1,0,38,52,38,38,52,1,0,52,38,38,52,38,253,166,52,38,38,52,38,1,90,52,38,38,52,38,166,52,38
,38,52,38,254,218,52,38,38,52,38,166,52,38,38,52,38,254,166,52,38,38,52,38,1,38,52,38,38,52,38,90,52,38,38,52,38,90,52,38,38
,52,38,5,7,10,26,10,253,142,10,10,82,10,26,10,44,91,232,99,71,150,106,251,0,5,0,104,189,138,81,82,74,39,29,65,44,10,10,254,167
,38,52,38,38,52,90,38,52,38,38,52,90,38,52,38,38,52,90,38,52,38,38,52,52,52,38,38,52,38,128,38,52,38,38,52,90,38,52,38,38
,52,90,38,52,38,38,52,90,38,52,38,38,52,218,38,52,38,38,52,90,38,52,38,38,52,90,38,52,38,38,52,38,38,52,38,38,52,90,38,52
,38,38,52,90,38,52,38,38,52,0,17,0,0,255,0,7,0,6,0,0,29,0,37,0,45,0,53,0,61,0,69,0,77,0,125,0,133,0,141,0
,149,0,157,0,165,0,173,0,181,0,189,0,197,0,0,1,21,20,7,21,20,6,43,1,34,38,61,1,6,35,33,34,39,21,20,6,43,1,34,38
,61,1,38,61,1,0,20,6,34,38,52,54,50,54,20,6,34,38,52,54,50,38,20,6,34,38,52,54,50,22,20,6,34,38,52,54,50,38,20,6
,34,38,52,54,50,38,20,6,34,38,52,54,50,1,21,20,6,35,33,34,38,61,1,52,54,59,1,17,52,54,51,50,23,54,22,23,55,54,31,1
,22,7,1,6,47,1,38,63,1,46,1,55,38,35,34,6,21,17,33,50,22,0,20,6,34,38,52,54,50,38,20,6,34,38,52,54,50,38,20,6
,34,38,52,54,50,22,20,6,34,38,52,54,50,38,20,6,34,38,52,54,50,38,20,6,34,38,52,54,50,22,20,6,34,38,52,54,50,38,20,6
,34,38,52,54,50,22,20,6,34,38,52,54,50,6,128,128,18,14,64,14,18,63,65,253,0,65,63,19,13,64,13,19,128,2,64,18,28,18,18,28
,82,18,28,18,18,28,46,18,28,18,18,28,146,18,28,18,18,28,46,18,28,18,18,28,46,18,28,18,18,28,4,82,18,14,249,64,14,18,18,14
,96,150,106,108,76,46,104,41,22,11,11,42,11,11,254,198,11,11,42,11,11,22,36,9,28,37,51,53,75,5,224,14,18,252,128,18,28,18,18,28
,46,18,28,18,18,28,46,18,28,18,18,28,210,18,28,18,18,28,46,18,28,18,18,28,46,18,28,18,18,28,210,18,28,18,18,28,46,18,28,18
,18,28,146,18,28,18,18,28,1,192,192,169,117,194,14,18,18,14,118,22,22,110,17,23,23,17,186,117,169,192,1,174,28,18,18,28,18,46,28,18
,18,28,18,46,28,18,18,28,18,18,28,18,18,28,18,46,28,18,18,28,18,46,28,18,18,28,18,253,224,64,14,18,18,14,64,14,18,2,128,106
,150,78,19,14,32,22,11,11,42,11,11,254,198,11,11,42,11,11,22,46,116,50,35,75,53,253,128,18,1,192,28,18,18,28,18,46,28,18,18,28
,18,46,28,18,18,28,18,82,28,18,18,28,18,46,28,18,18,28,18,46,28,18,18,28,18,82,28,18,18,28,18,46,28,18,18,28,18,18,28,18
,18,28,18,0,0,0,4,0,1,255,0,6,0,5,254,0,13,0,64,0,72,0,113,0,0,1,20,7,6,7,6,32,39,38,39,38,53,52,32,1
,20,0,7,6,38,55,54,55,54,55,54,55,54,18,53,52,2,36,7,14,3,23,22,18,23,22,23,22,23,30,1,23,22,6,39,46,1,2,55,54
,18,54,36,55,54,4,22,18,4,20,6,34,38,52,54,50,1,20,6,7,6,38,39,38,39,38,55,62,1,53,52,46,1,7,14,1,7,6,22,23
,22,7,6,7,14,1,39,46,1,55,62,2,55,54,30,1,3,226,17,31,24,22,254,252,22,24,31,17,1,192,2,30,254,244,216,8,14,1,7,3
,4,2,1,8,159,193,182,254,200,181,124,226,161,95,1,1,196,159,7,2,3,3,1,8,2,1,15,8,148,226,121,8,7,118,191,1,3,143,164,1
,47,219,131,253,226,131,186,131,131,186,1,163,107,93,8,16,2,6,23,7,10,58,66,117,198,113,133,192,13,10,67,65,10,7,24,5,2,16,8,95
,107,2,3,132,222,130,144,248,145,1,88,86,111,215,98,90,90,98,215,110,87,168,1,0,240,254,124,86,3,12,9,48,18,32,15,9,3,81,1,50
,184,180,1,45,168,10,7,108,173,231,125,184,254,207,79,3,9,21,24,9,47,12,9,12,4,58,223,1,49,167,143,1,5,193,122,9,10,113,208,254
,219,37,186,131,131,186,131,255,0,122,213,71,6,8,10,52,40,10,10,54,146,82,111,186,97,12,15,196,133,92,168,60,10,10,41,52,9,8,6,74
,218,125,131,226,137,6,7,134,241,0,2,0,0,255,128,7,0,5,128,0,3,0,19,0,0,37,33,17,33,1,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,1,0,5,0,251,0,6,0,94,66,250,64,66,94,94,66,5,192,66,94,128,3,0,1,96,251,64,66,94,94,66,4,192,66,94
,94,0,1,0,0,255,128,7,0,1,128,0,15,0,0,37,21,20,6,35,33,34,38,61,1,52,54,51,33,50,22,7,0,94,66,250,64,66,94,94
,66,5,192,66,94,224,192,66,94,94,66,192,66,94,94,0,0,0,3,0,0,255,0,8,0,6,0,0,3,0,12,0,38,0,0,41,1,17,41,2
,17,33,17,51,50,22,21,1,17,20,6,35,33,17,20,6,35,33,34,38,53,17,52,54,51,33,17,52,54,51,33,50,22,1,0,3,0,253,0,4
,0,2,0,253,0,96,66,94,3,0,94,66,253,160,94,66,252,64,66,94,94,66,2,96,94,66,3,192,66,94,2,0,3,0,255,0,94,66,2,0
,252,64,66,94,254,160,66,94,94,66,3,192,66,94,1,96,66,94,94,0,0,0,2,0,0,255,128,7,0,5,128,0,35,0,51,0,0,37,55,54
,52,47,1,55,54,52,47,1,38,34,15,1,39,38,34,15,1,6,20,31,1,7,6,20,31,1,22,50,63,1,23,22,50,1,17,20,6,35,33,34
,38,53,17,52,54,51,33,50,22,4,151,146,10,10,233,233,10,10,146,10,26,10,233,233,10,26,10,146,10,10,233,233,10,10,146,10,26,10,233,233
,10,26,2,115,94,66,250,64,66,94,94,66,5,192,66,94,215,146,10,26,10,233,233,10,26,10,146,10,10,233,233,10,10,146,10,26,10,233,233,10
,26,10,146,10,10,233,233,10,4,19,251,64,66,94,94,66,4,192,66,94,94,0,3,0,0,255,128,7,0,5,128,0,35,0,39,0,55,0,0,1
,7,6,34,47,1,7,6,34,47,1,38,52,63,1,39,38,52,63,1,54,50,31,1,55,54,50,31,1,22,20,15,1,23,22,20,1,33,17,33,37
,17,20,6,35,33,34,38,53,17,52,54,51,33,50,22,4,233,146,10,26,10,169,169,10,26,10,146,10,10,169,169,10,10,146,10,26,10,169,169,10
,26,10,146,10,10,169,169,10,252,13,5,0,251,0,6,0,94,66,250,64,66,94,94,66,5,192,66,94,1,169,146,10,10,169,169,10,10,146,10,26
,10,169,169,10,26,10,146,10,10,169,169,10,10,146,10,26,10,169,169,10,26,254,205,4,0,96,251,64,66,94,94,66,4,192,66,94,94,0,2,0
,0,255,0,7,0,6,0,0,3,0,19,0,0,9,1,33,1,0,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,4,46,1,50,253,114,254
,206,5,96,142,240,254,180,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,1,102,2,52,253,204,1,208,254,148,254,180,240,142,142,240,1,76
,1,108,1,76,240,142,142,240,0,0,7,0,0,255,0,7,2,6,0,0,7,0,19,0,35,0,46,0,67,0,196,0,212,0,0,1,38,14,1,23
,22,62,1,5,6,34,39,38,52,55,54,50,23,22,20,23,7,6,34,47,1,38,52,63,1,54,50,31,1,22,20,39,6,34,39,38,52,55,54,50
,22,20,37,14,1,39,46,1,62,2,22,23,30,7,14,1,19,54,46,2,39,46,1,7,62,1,31,1,54,39,62,1,47,1,62,1,55,54,38,39
,38,6,7,14,1,30,1,23,46,1,39,38,55,38,39,34,7,62,1,63,1,52,39,46,1,6,7,54,55,6,30,1,23,6,7,14,1,15,1,14
,1,23,22,23,6,7,6,20,22,55,62,1,55,46,2,7,62,4,51,22,55,54,53,52,39,22,7,14,1,15,1,14,5,22,23,38,39,14,4,22
,23,22,54,18,55,62,1,55,22,23,22,55,54,18,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,5,11,15,40,12,11,14,52,16,254,90
,8,23,7,8,8,7,23,8,7,158,35,12,35,13,38,12,12,35,12,35,13,38,12,121,7,23,8,7,7,8,22,16,1,139,34,147,54,38,46,4
,74,77,64,38,2,22,7,19,6,14,3,5,3,7,195,3,23,32,34,6,40,88,69,19,42,12,12,2,36,6,1,3,3,43,56,6,10,106,84,60
,108,28,30,7,36,51,31,45,86,14,28,60,16,13,50,39,19,46,13,13,13,10,45,49,13,2,2,7,1,37,30,25,22,35,101,34,33,90,182,16
,1,10,15,15,21,43,42,41,72,19,2,9,32,17,23,56,24,31,21,13,14,8,7,40,106,5,1,28,13,13,4,30,22,31,19,15,2,9,35,2
,22,25,42,19,14,13,19,45,198,183,31,86,118,27,47,107,104,63,39,246,142,240,254,179,254,148,254,179,240,142,142,240,1,77,1,108,1,77,240,4
,36,17,17,40,18,17,5,36,212,8,8,8,22,7,8,8,7,22,82,35,13,13,38,13,34,13,35,12,12,39,12,35,118,8,8,8,22,8,8,16
,22,90,64,43,38,28,77,98,86,20,30,36,2,21,6,21,10,21,15,22,20,24,254,18,20,29,14,20,10,71,55,16,13,11,1,1,45,45,20,41
,10,10,24,82,50,84,133,10,7,51,49,51,100,74,54,15,4,64,56,108,114,21,11,19,24,26,1,1,50,28,21,15,22,29,4,3,28,95,139,53
,14,22,16,109,47,46,34,183,71,16,11,12,18,25,58,22,17,19,61,30,2,6,9,1,5,15,5,7,1,7,41,37,53,102,48,103,116,29,42,6
,6,7,50,41,63,59,67,66,30,54,26,24,30,54,38,44,32,11,25,178,1,9,96,52,127,56,93,85,83,3,2,1,121,254,148,254,180,240,142,142
,240,1,76,1,108,1,76,240,142,142,240,0,0,0,1,0,0,255,0,6,0,6,0,0,71,0,0,1,17,22,54,63,1,62,1,63,1,51,3,19
,35,39,46,1,39,38,33,17,20,22,51,33,50,62,4,63,1,51,6,2,7,46,1,39,35,33,5,53,55,62,1,55,19,18,39,46,1,47,1,53
,5,33,50,55,14,1,15,1,35,39,46,1,35,33,34,6,2,6,103,177,37,37,68,45,17,33,103,14,7,103,29,15,60,54,87,254,247,87,90,1
,101,35,49,61,47,50,42,18,93,89,6,51,5,146,235,45,44,253,140,254,136,127,67,49,1,8,3,11,2,47,68,127,1,120,2,190,139,235,6,16
,4,5,93,32,31,86,70,253,220,28,15,5,73,253,113,1,5,3,3,2,45,72,142,254,190,254,193,127,68,50,1,8,253,212,78,75,4,11,25,39
,62,42,216,37,254,82,61,5,6,1,12,102,25,13,48,55,2,131,1,146,243,61,46,13,24,102,12,27,68,253,93,92,124,121,117,17,0,0,7,0
,0,255,128,6,0,5,128,0,17,0,44,0,48,0,62,0,83,0,101,0,117,0,0,1,21,20,22,14,4,35,17,50,30,3,28,1,5,21,20,22
,14,2,35,34,39,38,53,60,3,62,2,51,50,30,3,28,1,5,51,17,35,1,51,17,35,7,38,39,35,17,51,17,19,51,19,5,52,39,46,5
,34,35,34,43,1,17,50,51,22,54,39,38,5,53,52,46,2,35,34,7,53,35,17,51,55,22,51,50,54,19,17,20,6,35,33,34,38,53,17,52
,54,51,33,50,22,3,154,1,1,2,5,8,14,9,9,14,8,5,2,1,60,1,1,4,11,8,9,5,4,3,4,6,5,6,8,5,3,1,251,222
,122,122,1,178,106,159,28,20,12,158,107,45,76,43,1,169,5,3,16,18,32,21,41,17,21,8,4,91,20,36,169,56,3,1,1,61,4,15,34,29
,46,31,117,110,7,30,47,50,32,180,94,66,251,64,66,94,94,66,4,192,66,94,2,227,182,4,22,8,16,7,8,3,1,53,2,8,3,16,5,22
,99,121,1,23,8,15,6,9,10,155,2,10,7,11,6,8,3,3,6,6,11,5,14,238,1,216,254,40,1,216,221,148,73,254,40,1,56,254,200,1
,63,14,67,23,16,25,16,12,5,3,254,40,1,51,155,62,159,133,29,32,35,15,34,154,254,40,30,36,61,3,18,251,64,66,94,94,66,4,192,66
,94,94,0,0,0,0,5,0,48,255,2,8,75,5,248,0,12,0,21,0,26,0,83,0,143,0,0,5,38,39,46,4,39,38,39,22,0,1,23,46
,1,47,1,6,7,22,19,6,7,54,55,1,52,2,38,36,35,34,4,7,6,7,62,3,31,1,30,3,7,38,14,2,7,30,2,23,22,62,2,63
,1,62,1,22,23,22,7,6,5,6,39,30,3,31,1,22,55,54,18,19,6,7,6,2,7,6,7,6,39,6,35,32,0,3,34,38,35,6,30,2
,31,1,22,23,46,3,47,1,46,6,39,30,2,23,55,54,55,54,55,54,55,62,1,55,54,36,4,23,22,18,4,119,6,5,13,46,126,107,117,31
,17,158,66,1,82,254,93,168,25,32,3,4,84,37,5,122,43,34,44,30,5,160,124,211,254,222,159,147,254,244,106,30,15,60,166,151,135,41,40,33
,40,9,4,3,126,203,163,122,70,4,15,56,34,123,249,180,145,37,37,22,35,26,4,14,53,208,254,253,135,182,41,138,136,125,39,39,143,120,195,238
,74,14,26,70,223,207,48,34,72,91,36,37,254,229,254,69,74,1,6,2,6,17,35,37,13,14,8,46,71,107,50,29,3,2,5,57,40,66,49,51
,34,8,19,63,163,64,2,11,83,41,135,28,53,15,34,32,158,1,35,1,57,150,220,226,197,1,3,8,30,100,109,171,87,3,34,213,254,214,2,59
,28,76,183,54,53,82,142,65,2,48,64,84,46,22,254,158,161,1,36,212,125,105,96,58,102,51,65,21,6,4,3,1,29,37,37,10,11,21,66,77
,60,36,113,243,58,6,41,66,68,25,24,16,9,19,25,97,24,97,37,20,4,96,161,93,65,11,12,23,38,99,1,124,1,9,135,77,208,254,235,115
,33,11,26,10,3,1,90,1,13,1,50,125,105,91,26,26,12,70,38,137,143,131,42,42,2,21,15,26,24,27,27,12,10,31,60,8,32,149,141,202
,163,115,99,28,34,15,74,60,38,78,115,254,70,0,5,0,37,255,12,6,216,5,244,0,23,0,48,0,64,0,87,0,109,0,0,1,54,38,39,46
,1,6,7,6,22,23,30,2,23,30,7,54,1,14,2,4,36,46,1,2,55,62,3,55,6,26,1,12,1,36,55,54,7,20,2,20,14,2,34,46
,2,52,62,2,50,30,1,5,46,1,44,1,12,1,6,2,23,38,2,62,4,30,2,23,30,1,3,54,0,39,34,39,38,55,30,4,14,3,7,62
,3,5,61,29,71,86,58,135,101,18,12,15,35,23,31,58,27,36,63,43,37,24,20,13,11,10,1,113,52,193,236,254,242,254,250,240,180,103,5,1
,15,10,38,4,51,104,242,1,84,1,96,1,90,116,20,2,243,81,136,188,208,188,136,81,81,136,188,208,188,136,1,112,65,231,254,237,254,203,254,219
,254,254,182,80,30,49,5,76,142,189,225,239,246,226,206,75,33,58,60,12,254,215,248,8,2,2,26,125,210,136,96,21,23,100,145,225,136,108,187,161
,98,2,240,44,171,57,39,29,20,27,23,10,5,3,4,15,10,13,37,37,40,36,33,24,13,1,253,203,127,186,97,24,51,131,192,1,23,164,41,87
,41,120,13,208,254,134,254,254,154,12,161,164,27,13,4,2,31,208,190,138,81,81,138,190,208,190,138,81,81,138,6,147,208,99,8,81,177,246,254,164
,199,161,1,45,244,210,151,101,41,23,85,164,115,50,142,254,129,244,1,88,68,5,5,3,4,92,148,189,209,207,188,146,89,2,30,100,146,207,0,0
,0,0,11,0,0,255,128,6,0,6,0,0,15,0,31,0,47,0,63,0,79,0,95,0,111,0,127,0,143,0,159,0,175,0,0,19,21,35,34,61
,1,35,34,61,1,52,59,1,53,52,51,19,21,35,34,61,1,35,34,61,1,52,59,1,53,52,51,19,21,35,34,61,1,35,34,61,1,52,59,1
,53,52,51,19,21,35,34,61,1,35,34,61,1,52,59,1,53,52,51,19,21,35,34,61,1,35,34,61,1,52,59,1,53,52,51,37,17,20,6,35
,33,34,38,53,17,52,54,51,33,50,22,1,21,20,43,1,21,20,43,1,53,51,50,29,1,51,50,53,21,20,43,1,21,20,43,1,53,51,50,29
,1,51,50,53,21,20,43,1,21,20,43,1,53,51,50,29,1,51,50,53,21,20,43,1,21,20,43,1,53,51,50,29,1,51,50,53,21,20,43,1
,21,20,43,1,53,51,50,29,1,51,50,192,112,16,48,16,16,48,16,112,112,16,48,16,16,48,16,112,112,16,48,16,16,48,16,112,112,16,48,16
,16,48,16,112,112,16,48,16,16,48,16,4,176,56,40,252,192,40,56,56,40,3,64,40,56,1,0,16,48,16,112,112,16,48,16,16,48,16,112,112
,16,48,16,16,48,16,112,112,16,48,16,16,48,16,112,112,16,48,16,16,48,16,112,112,16,48,16,1,0,128,16,16,16,32,16,16,16,1,0,128
,16,16,16,32,16,16,16,1,0,128,16,16,16,32,16,16,16,1,0,128,16,16,16,32,16,16,16,1,0,128,16,16,16,32,16,16,16,160,250,64
,40,56,56,40,5,192,40,56,56,251,8,32,16,16,16,128,16,16,240,32,16,16,16,128,16,16,240,32,16,16,16,128,16,16,240,32,16,16,16,128
,16,16,240,32,16,16,16,128,16,16,0,0,0,0,1,0,47,255,0,6,81,6,0,0,144,0,0,1,7,23,30,1,7,14,1,47,1,23,22,6
,38,39,3,37,17,23,30,1,14,1,38,47,1,21,20,6,34,38,61,1,7,14,1,46,1,54,63,1,17,5,3,14,1,38,63,1,7,6,38,39
,38,54,63,1,39,46,1,62,1,23,5,45,1,5,6,35,34,46,1,54,63,1,39,46,1,62,1,31,1,39,38,54,22,23,19,5,17,39,46,1
,62,1,22,31,1,53,52,54,50,22,29,1,55,62,1,30,1,6,15,1,17,37,19,62,1,22,15,1,55,54,22,23,22,6,15,1,23,30,1,14
,1,35,34,39,37,13,1,37,54,30,1,6,6,30,167,186,23,13,13,14,50,23,186,55,13,50,71,13,102,254,241,208,16,2,24,33,41,16,112,38
,52,38,112,16,41,33,24,2,16,208,254,241,102,13,71,50,13,55,186,23,50,14,13,13,23,186,167,29,26,9,42,29,1,54,1,15,254,241,254,202
,4,9,27,34,4,26,27,167,186,23,13,26,52,22,186,55,13,50,71,13,102,1,15,208,16,2,24,33,41,16,112,38,52,38,112,16,41,33,24,2
,16,208,1,15,102,13,71,50,13,55,186,23,50,14,13,13,23,186,167,27,26,4,34,27,9,4,254,202,254,241,1,15,1,54,29,42,9,26,1,163
,33,107,13,51,23,23,13,13,106,160,38,51,10,37,1,44,156,254,199,238,18,42,31,19,8,18,128,214,26,38,38,26,214,128,18,8,19,31,42,18
,238,1,57,156,254,212,37,10,51,38,160,106,13,13,23,23,51,13,107,33,6,46,47,33,6,62,157,157,62,1,36,44,42,5,33,107,13,51,46,14
,14,106,160,38,51,10,37,254,212,156,1,57,238,18,42,31,19,8,18,128,214,26,38,38,26,214,128,18,8,19,31,42,18,238,254,199,156,1,44,37
,10,51,38,160,106,13,13,23,23,51,13,107,33,5,42,44,36,1,62,157,157,62,6,33,47,46,0,0,0,0,2,0,0,255,0,7,0,6,0,0
,18,0,38,0,0,1,54,46,2,39,38,14,2,7,6,30,2,23,22,36,18,9,1,22,18,7,6,2,4,7,5,1,38,2,55,54,18,36,55,54
,36,5,193,7,80,146,208,117,116,219,165,105,7,7,80,146,209,117,155,1,20,172,1,71,254,163,120,121,10,11,182,254,212,182,252,25,1,91,120,121
,10,11,182,1,45,182,167,2,154,2,95,118,217,161,101,7,7,78,143,207,117,118,217,161,101,7,9,136,0,255,4,61,254,164,117,254,202,166,183,254
,200,199,25,132,1,91,116,1,55,166,184,1,56,199,25,22,88,0,6,0,0,255,0,7,0,6,0,0,10,0,14,0,18,0,22,0,38,0,54,0
,0,1,19,35,11,1,35,19,39,55,23,7,1,5,3,45,1,23,7,39,37,23,7,39,4,16,2,38,36,32,4,6,2,16,18,22,4,32,36,54
,18,16,2,6,4,32,36,38,2,16,18,54,36,32,4,22,3,180,163,51,175,171,49,179,78,21,240,21,254,69,1,48,130,254,208,1,218,240,103,239
,1,127,191,82,190,2,61,124,211,254,222,254,194,254,222,211,124,124,211,1,34,1,62,1,34,211,236,142,240,254,180,254,148,254,180,240,142,142,240,1
,76,1,108,1,76,240,1,252,254,183,1,94,254,162,1,118,33,49,102,50,2,105,130,254,208,130,119,103,239,102,90,81,190,81,94,1,62,1,34,211
,124,124,211,254,222,254,194,254,222,211,124,124,211,2,119,254,148,254,180,240,142,142,240,1,76,1,108,1,76,240,142,142,240,0,12,0,38,255,1,7
,90,5,255,0,88,0,98,0,108,0,119,0,129,0,171,0,183,0,194,0,205,0,216,0,228,0,238,0,0,1,46,3,39,38,62,1,39,38,39,38
,15,1,14,3,34,46,1,39,46,6,39,38,6,7,14,3,38,39,38,39,38,6,7,14,3,21,6,22,55,62,1,55,54,18,55,62,1,23,22,7
,14,1,7,6,22,54,55,62,2,55,54,23,50,7,6,2,7,6,22,23,30,2,54,4,22,6,7,6,38,39,38,62,1,1,22,14,1,38,39,38
,62,1,22,0,14,1,39,46,1,55,62,1,23,22,1,22,14,1,46,1,54,55,54,22,19,22,2,7,6,39,14,1,38,39,6,7,6,38,39,38
,39,46,2,54,55,46,1,62,1,55,62,2,22,23,54,30,3,7,30,2,6,1,22,6,7,6,38,39,38,54,55,54,22,19,22,14,1,38,39,38
,54,55,54,22,1,22,6,7,6,46,1,54,55,54,22,1,22,6,7,6,38,39,38,62,1,22,1,22,6,7,6,38,39,38,54,55,54,22,39,22
,6,7,6,46,1,62,1,22,5,54,4,47,52,45,3,5,76,74,5,14,103,45,30,3,4,2,7,3,7,5,7,3,3,12,6,11,8,11,11,6
,30,36,27,1,16,9,21,12,11,54,30,41,106,23,16,50,37,43,22,81,70,30,41,18,7,144,5,6,31,14,27,6,2,98,1,6,51,70,20,4
,83,80,6,20,21,29,4,2,127,7,12,50,49,17,68,75,50,252,65,6,16,15,14,25,3,3,16,28,2,87,12,7,34,41,12,11,7,34,41,253
,21,36,63,26,26,12,18,18,63,26,26,5,4,19,12,56,65,38,12,27,28,65,132,69,53,108,90,109,20,129,158,61,12,1,103,244,71,50,3,83
,119,42,38,62,36,4,53,106,68,32,134,159,177,71,72,136,121,88,47,6,52,70,21,32,251,114,14,9,20,19,49,13,14,9,20,19,49,172,4,18
,34,28,4,3,19,16,17,28,4,165,4,21,20,19,34,8,21,20,20,33,253,108,16,15,28,27,61,16,16,15,54,62,2,250,4,16,15,15,25,3
,3,16,15,14,25,188,15,9,22,22,54,30,10,44,53,1,46,24,20,1,24,26,47,185,177,39,101,2,1,17,2,2,1,3,1,3,4,3,2,13
,5,10,5,6,3,1,5,16,23,1,15,7,13,2,2,27,13,18,46,42,28,141,124,144,1,69,100,4,2,26,33,13,1,117,8,11,14,7,15,38
,18,243,11,38,37,23,38,8,168,159,9,29,1,38,16,254,249,28,53,100,24,9,13,3,31,168,30,25,3,3,16,15,14,26,6,254,218,17,41,24
,8,17,17,41,24,8,3,54,54,12,19,18,64,26,27,12,18,19,253,1,28,67,38,12,56,66,20,19,12,2,64,113,254,249,76,63,3,80,94,5
,55,9,1,71,45,104,73,91,14,113,143,161,58,60,136,114,83,9,85,126,57,23,55,21,7,65,95,135,73,16,82,96,103,2,112,20,49,14,14,9
,20,20,49,14,14,9,1,5,16,29,8,19,17,17,28,4,4,19,252,59,20,34,4,4,21,40,34,5,4,23,3,106,27,63,16,16,15,27,28,62
,34,16,253,84,15,25,4,3,17,14,15,26,3,3,16,226,22,54,16,15,10,44,54,32,10,0,0,0,24,1,38,0,1,0,0,0,0,0,0,0
,47,0,96,0,1,0,0,0,0,0,1,0,11,0,168,0,1,0,0,0,0,0,2,0,7,0,196,0,1,0,0,0,0,0,3,0,17,0,240,0
,1,0,0,0,0,0,4,0,11,1,26,0,1,0,0,0,0,0,5,0,18,1,76,0,1,0,0,0,0,0,6,0,11,1,119,0,1,0,0,0
,0,0,7,0,81,2,39,0,1,0,0,0,0,0,8,0,12,2,147,0,1,0,0,0,0,0,9,0,10,2,182,0,1,0,0,0,0,0,11,0
,21,2,237,0,1,0,0,0,0,0,14,0,30,3,65,0,3,0,1,4,9,0,0,0,94,0,0,0,3,0,1,4,9,0,1,0,22,0,144,0
,3,0,1,4,9,0,2,0,14,0,180,0,3,0,1,4,9,0,3,0,34,0,204,0,3,0,1,4,9,0,4,0,22,1,2,0,3,0,1,4
,9,0,5,0,36,1,38,0,3,0,1,4,9,0,6,0,22,1,95,0,3,0,1,4,9,0,7,0,162,1,131,0,3,0,1,4,9,0,8,0
,24,2,121,0,3,0,1,4,9,0,9,0,20,2,160,0,3,0,1,4,9,0,11,0,42,2,193,0,3,0,1,4,9,0,14,0,60,3,3,0
,67,0,111,0,112,0,121,0,114,0,105,0,103,0,104,0,116,0,32,0,68,0,97,0,118,0,101,0,32,0,71,0,97,0,110,0,100,0,121,0
,32,0,50,0,48,0,49,0,54,0,46,0,32,0,65,0,108,0,108,0,32,0,114,0,105,0,103,0,104,0,116,0,115,0,32,0,114,0,101,0
,115,0,101,0,114,0,118,0,101,0,100,0,46,0,0,67,111,112,121,114,105,103,104,116,32,68,97,118,101,32,71,97,110,100,121,32,50,48,49,54
,46,32,65,108,108,32,114,105,103,104,116,115,32,114,101,115,101,114,118,101,100,46,0,0,70,0,111,0,110,0,116,0,65,0,119,0,101,0,115,0
,111,0,109,0,101,0,0,70,111,110,116,65,119,101,115,111,109,101,0,0,82,0,101,0,103,0,117,0,108,0,97,0,114,0,0,82,101,103,117,108
,97,114,0,0,70,0,79,0,78,0,84,0,76,0,65,0,66,0,58,0,79,0,84,0,70,0,69,0,88,0,80,0,79,0,82,0,84,0,0,70
,79,78,84,76,65,66,58,79,84,70,69,88,80,79,82,84,0,0,70,0,111,0,110,0,116,0,65,0,119,0,101,0,115,0,111,0,109,0,101,0
,0,70,111,110,116,65,119,101,115,111,109,101,0,0,86,0,101,0,114,0,115,0,105,0,111,0,110,0,32,0,52,0,46,0,55,0,46,0,48,0
,32,0,50,0,48,0,49,0,54,0,0,86,101,114,115,105,111,110,32,52,46,55,46,48,32,50,48,49,54,0,0,70,0,111,0,110,0,116,0,65
,0,119,0,101,0,115,0,111,0,109,0,101,0,0,70,111,110,116,65,119,101,115,111,109,101,0,0,80,0,108,0,101,0,97,0,115,0,101,0,32
,0,114,0,101,0,102,0,101,0,114,0,32,0,116,0,111,0,32,0,116,0,104,0,101,0,32,0,67,0,111,0,112,0,121,0,114,0,105,0,103
,0,104,0,116,0,32,0,115,0,101,0,99,0,116,0,105,0,111,0,110,0,32,0,102,0,111,0,114,0,32,0,116,0,104,0,101,0,32,0,102
,0,111,0,110,0,116,0,32,0,116,0,114,0,97,0,100,0,101,0,109,0,97,0,114,0,107,0,32,0,97,0,116,0,116,0,114,0,105,0,98
,0,117,0,116,0,105,0,111,0,110,0,32,0,110,0,111,0,116,0,105,0,99,0,101,0,115,0,46,0,0,80,108,101,97,115,101,32,114,101,102
,101,114,32,116,111,32,116,104,101,32,67,111,112,121,114,105,103,104,116,32,115,101,99,116,105,111,110,32,102,111,114,32,116,104,101,32,102,111,110,116
,32,116,114,97,100,101,109,97,114,107,32,97,116,116,114,105,98,117,116,105,111,110,32,110,111,116,105,99,101,115,46,0,0,70,0,111,0,114,0,116
,0,32,0,65,0,119,0,101,0,115,0,111,0,109,0,101,0,0,70,111,114,116,32,65,119,101,115,111,109,101,0,0,68,0,97,0,118,0,101,0
,32,0,71,0,97,0,110,0,100,0,121,0,0,68,97,118,101,32,71,97,110,100,121,0,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,102
,0,111,0,110,0,116,0,97,0,119,0,101,0,115,0,111,0,109,0,101,0,46,0,105,0,111,0,0,104,116,116,112,58,47,47,102,111,110,116,97
,119,101,115,111,109,101,46,105,111,0,0,104,0,116,0,116,0,112,0,58,0,47,0,47,0,102,0,111,0,110,0,116,0,97,0,119,0,101,0,115
,0,111,0,109,0,101,0,46,0,105,0,111,0,47,0,108,0,105,0,99,0,101,0,110,0,115,0,101,0,47,0,0,104,116,116,112,58,47,47,102
,111,110,116,97,119,101,115,111,109,101,46,105,111,47,108,105,99,101,110,115,101,47,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,195,0,0,0,1,0,2,0,3,0,142,0,139,0,138,0,141,0,144,0,145,0
,140,0,146,0,143,1,2,1,3,1,4,1,5,1,6,1,7,1,8,1,9,1,10,1,11,1,12,1,13,1,14,1,15,1,16,1,17,1,18,1
,19,1,20,1,21,1,22,1,23,1,24,1,25,1,26,1,27,1,28,1,29,1,30,1,31,1,32,1,33,1,34,1,35,1,36,1,37,1,38,1
,39,1,40,1,41,1,42,1,43,1,44,1,45,1,46,1,47,1,48,1,49,1,50,1,51,1,52,1,53,1,54,1,55,1,56,1,57,1,58,1
,59,1,60,1,61,1,62,1,63,1,64,1,65,1,66,1,67,1,68,1,69,1,70,1,71,1,72,1,73,1,74,1,75,1,76,1,77,1,78,1
,79,1,80,1,81,1,82,1,83,1,84,1,85,1,86,1,87,1,88,1,89,1,90,1,91,1,92,1,93,1,94,1,95,1,96,1,97,1,98,0
,14,0,239,0,13,1,99,1,100,1,101,1,102,1,103,1,104,1,105,1,106,1,107,1,108,1,109,1,110,1,111,1,112,1,113,1,114,1,115,1
,116,1,117,1,118,1,119,1,120,1,121,1,122,1,123,1,124,1,125,1,126,1,127,1,128,1,129,1,130,1,131,1,132,1,133,1,134,1,135,1
,136,1,137,1,138,1,139,1,140,1,141,1,142,1,143,1,144,1,145,1,146,1,147,1,148,1,149,1,150,1,151,1,152,1,153,1,154,1,155,1
,156,1,157,1,158,1,159,1,160,1,161,1,162,1,163,1,164,1,165,1,166,1,167,1,168,1,169,1,170,1,171,1,172,1,173,1,174,1,175,1
,176,1,177,1,178,1,179,1,180,1,181,1,182,1,183,1,184,1,185,1,186,1,187,1,188,1,189,1,190,1,191,1,192,1,193,1,194,1,195,1
,196,1,197,1,198,1,199,1,200,1,201,1,202,1,203,1,204,1,205,1,206,1,207,1,208,1,209,1,210,1,211,1,212,1,213,1,214,1,215,1
,216,1,217,1,218,1,219,1,220,1,221,1,222,1,223,1,224,1,225,1,226,1,227,1,228,1,229,1,230,1,231,1,232,1,233,1,234,1,235,1
,236,1,237,1,238,1,239,1,240,1,241,1,242,1,243,1,244,1,245,1,246,1,247,1,248,1,249,1,250,1,251,1,252,1,253,1,254,1,255,2
,0,2,1,2,2,2,3,2,4,2,5,2,6,2,7,2,8,0,34,2,9,2,10,2,11,2,12,2,13,2,14,2,15,2,16,2,17,2,18,2
,19,2,20,2,21,2,22,2,23,2,24,2,25,2,26,2,27,2,28,2,29,2,30,2,31,2,32,2,33,2,34,2,35,2,36,2,37,2,38,2
,39,2,40,2,41,2,42,2,43,2,44,2,45,2,46,2,47,2,48,2,49,2,50,2,51,2,52,2,53,2,54,2,55,2,56,2,57,2,58,2
,59,2,60,2,61,2,62,2,63,2,64,2,65,2,66,2,67,2,68,2,69,2,70,2,71,2,72,2,73,2,74,2,75,2,76,2,77,2,78,2
,79,2,80,2,81,2,82,2,83,0,210,2,84,2,85,2,86,2,87,2,88,2,89,2,90,2,91,2,92,2,93,2,94,2,95,2,96,2,97,2
,98,2,99,2,100,2,101,2,102,2,103,2,104,2,105,2,106,2,107,2,108,2,109,2,110,2,111,2,112,2,113,2,114,2,115,2,116,2,117,2
,118,2,119,2,120,2,121,2,122,2,123,2,124,2,125,2,126,2,127,2,128,2,129,2,130,2,131,2,132,2,133,2,134,2,135,2,136,2,137,2
,138,2,139,2,140,2,141,2,142,2,143,2,144,2,145,2,146,2,147,2,148,2,149,2,150,2,151,2,152,2,153,2,154,2,155,2,156,2,157,2
,158,2,159,2,160,2,161,2,162,2,163,2,164,2,165,2,166,2,167,2,168,2,169,2,170,2,171,2,172,2,173,2,174,2,175,2,176,2,177,2
,178,2,179,2,180,2,181,2,182,2,183,2,184,2,185,2,186,2,187,2,188,2,189,2,190,2,191,2,192,2,193,2,194,2,195,2,196,2,197,2
,198,2,199,2,200,2,201,2,202,2,203,2,204,2,205,2,206,2,207,2,208,2,209,2,210,2,211,2,212,2,213,2,214,2,215,2,216,2,217,2
,218,2,219,2,220,2,221,2,222,2,223,2,224,2,225,2,226,2,227,2,228,2,229,2,230,2,231,2,232,2,233,2,234,2,235,2,236,2,237,2
,238,2,239,2,240,2,241,2,242,2,243,2,244,2,245,2,246,2,247,2,248,2,249,2,250,2,251,2,252,2,253,2,254,2,255,3,0,3,1,3
,2,3,3,3,4,3,5,3,6,3,7,3,8,3,9,3,10,3,11,3,12,3,13,3,14,3,15,3,16,3,17,3,18,3,19,3,20,3,21,3
,22,3,23,3,24,3,25,3,26,3,27,3,28,3,29,3,30,3,31,3,32,3,33,3,34,3,35,3,36,3,37,3,38,3,39,3,40,3,41,3
,42,3,43,3,44,3,45,3,46,3,47,3,48,3,49,3,50,3,51,3,52,3,53,3,54,3,55,3,56,3,57,3,58,3,59,3,60,3,61,3
,62,3,63,3,64,3,65,3,66,3,67,3,68,3,69,3,70,3,71,3,72,3,73,3,74,3,75,3,76,3,77,3,78,3,79,3,80,3,81,3
,82,3,83,3,84,3,85,3,86,3,87,3,88,3,89,3,90,3,91,3,92,3,93,3,94,3,95,3,96,3,97,3,98,3,99,3,100,3,101,3
,102,3,103,3,104,3,105,3,106,3,107,3,108,3,109,3,110,3,111,3,112,3,113,3,114,3,115,3,116,3,117,3,118,3,119,3,120,3,121,3
,122,3,123,3,124,3,125,3,126,3,127,3,128,3,129,3,130,3,131,3,132,3,133,3,134,3,135,3,136,3,137,3,138,3,139,3,140,3,141,3
,142,3,143,3,144,3,145,3,146,3,147,3,148,3,149,3,150,3,151,3,152,3,153,3,154,3,155,3,156,3,157,3,158,3,159,3,160,3,161,3
,162,3,163,3,164,3,165,3,166,3,167,3,168,3,169,3,170,3,171,3,172,3,173,3,174,3,175,3,176,3,177,0,148,5,103,108,97,115,115,5
,109,117,115,105,99,6,115,101,97,114,99,104,8,101,110,118,101,108,111,112,101,5,104,101,97,114,116,4,115,116,97,114,10,115,116,97,114,95,101,109
,112,116,121,4,117,115,101,114,4,102,105,108,109,8,116,104,95,108,97,114,103,101,2,116,104,7,116,104,95,108,105,115,116,2,111,107,6,114,101,109
,111,118,101,7,122,111,111,109,95,105,110,8,122,111,111,109,95,111,117,116,3,111,102,102,6,115,105,103,110,97,108,3,99,111,103,5,116,114,97,115
,104,4,104,111,109,101,8,102,105,108,101,95,97,108,116,4,116,105,109,101,4,114,111,97,100,12,100,111,119,110,108,111,97,100,95,97,108,116,8,100
,111,119,110,108,111,97,100,6,117,112,108,111,97,100,5,105,110,98,111,120,11,112,108,97,121,95,99,105,114,99,108,101,6,114,101,112,101,97,116,7
,114,101,102,114,101,115,104,8,108,105,115,116,95,97,108,116,4,108,111,99,107,4,102,108,97,103,10,104,101,97,100,112,104,111,110,101,115,10,118,111
,108,117,109,101,95,111,102,102,11,118,111,108,117,109,101,95,100,111,119,110,9,118,111,108,117,109,101,95,117,112,6,113,114,99,111,100,101,7,98,97
,114,99,111,100,101,3,116,97,103,4,116,97,103,115,4,98,111,111,107,8,98,111,111,107,109,97,114,107,5,112,114,105,110,116,6,99,97,109,101,114
,97,4,102,111,110,116,4,98,111,108,100,6,105,116,97,108,105,99,11,116,101,120,116,95,104,101,105,103,104,116,10,116,101,120,116,95,119,105,100,116
,104,10,97,108,105,103,110,95,108,101,102,116,12,97,108,105,103,110,95,99,101,110,116,101,114,11,97,108,105,103,110,95,114,105,103,104,116,13,97,108
,105,103,110,95,106,117,115,116,105,102,121,4,108,105,115,116,11,105,110,100,101,110,116,95,108,101,102,116,12,105,110,100,101,110,116,95,114,105,103,104
,116,14,102,97,99,101,116,105,109,101,95,118,105,100,101,111,7,112,105,99,116,117,114,101,6,112,101,110,99,105,108,10,109,97,112,95,109,97,114,107
,101,114,6,97,100,106,117,115,116,4,116,105,110,116,4,101,100,105,116,5,115,104,97,114,101,5,99,104,101,99,107,4,109,111,118,101,13,115,116,101
,112,95,98,97,99,107,119,97,114,100,13,102,97,115,116,95,98,97,99,107,119,97,114,100,8,98,97,99,107,119,97,114,100,4,112,108,97,121,5,112
,97,117,115,101,4,115,116,111,112,7,102,111,114,119,97,114,100,12,102,97,115,116,95,102,111,114,119,97,114,100,12,115,116,101,112,95,102,111,114,119
,97,114,100,5,101,106,101,99,116,12,99,104,101,118,114,111,110,95,108,101,102,116,13,99,104,101,118,114,111,110,95,114,105,103,104,116,9,112,108,117
,115,95,115,105,103,110,10,109,105,110,117,115,95,115,105,103,110,11,114,101,109,111,118,101,95,115,105,103,110,7,111,107,95,115,105,103,110,13,113,117
,101,115,116,105,111,110,95,115,105,103,110,9,105,110,102,111,95,115,105,103,110,10,115,99,114,101,101,110,115,104,111,116,13,114,101,109,111,118,101,95
,99,105,114,99,108,101,9,111,107,95,99,105,114,99,108,101,10,98,97,110,95,99,105,114,99,108,101,10,97,114,114,111,119,95,108,101,102,116,11,97
,114,114,111,119,95,114,105,103,104,116,8,97,114,114,111,119,95,117,112,10,97,114,114,111,119,95,100,111,119,110,9,115,104,97,114,101,95,97,108,116
,11,114,101,115,105,122,101,95,102,117,108,108,12,114,101,115,105,122,101,95,115,109,97,108,108,16,101,120,99,108,97,109,97,116,105,111,110,95,115,105
,103,110,4,103,105,102,116,4,108,101,97,102,4,102,105,114,101,8,101,121,101,95,111,112,101,110,9,101,121,101,95,99,108,111,115,101,12,119,97,114
,110,105,110,103,95,115,105,103,110,5,112,108,97,110,101,8,99,97,108,101,110,100,97,114,6,114,97,110,100,111,109,7,99,111,109,109,101,110,116,6
,109,97,103,110,101,116,10,99,104,101,118,114,111,110,95,117,112,12,99,104,101,118,114,111,110,95,100,111,119,110,7,114,101,116,119,101,101,116,13,115
,104,111,112,112,105,110,103,95,99,97,114,116,12,102,111,108,100,101,114,95,99,108,111,115,101,11,102,111,108,100,101,114,95,111,112,101,110,15,114,101
,115,105,122,101,95,118,101,114,116,105,99,97,108,17,114,101,115,105,122,101,95,104,111,114,105,122,111,110,116,97,108,9,98,97,114,95,99,104,97,114
,116,12,116,119,105,116,116,101,114,95,115,105,103,110,13,102,97,99,101,98,111,111,107,95,115,105,103,110,12,99,97,109,101,114,97,95,114,101,116,114
,111,3,107,101,121,4,99,111,103,115,8,99,111,109,109,101,110,116,115,13,116,104,117,109,98,115,95,117,112,95,97,108,116,15,116,104,117,109,98,115
,95,100,111,119,110,95,97,108,116,9,115,116,97,114,95,104,97,108,102,11,104,101,97,114,116,95,101,109,112,116,121,7,115,105,103,110,111,117,116,13
,108,105,110,107,101,100,105,110,95,115,105,103,110,7,112,117,115,104,112,105,110,13,101,120,116,101,114,110,97,108,95,108,105,110,107,6,115,105,103,110
,105,110,6,116,114,111,112,104,121,11,103,105,116,104,117,98,95,115,105,103,110,10,117,112,108,111,97,100,95,97,108,116,5,108,101,109,111,110,5,112
,104,111,110,101,11,99,104,101,99,107,95,101,109,112,116,121,14,98,111,111,107,109,97,114,107,95,101,109,112,116,121,10,112,104,111,110,101,95,115,105
,103,110,7,116,119,105,116,116,101,114,8,102,97,99,101,98,111,111,107,6,103,105,116,104,117,98,6,117,110,108,111,99,107,11,99,114,101,100,105,116
,95,99,97,114,100,3,114,115,115,3,104,100,100,8,98,117,108,108,104,111,114,110,4,98,101,108,108,11,99,101,114,116,105,102,105,99,97,116,101,10
,104,97,110,100,95,114,105,103,104,116,9,104,97,110,100,95,108,101,102,116,7,104,97,110,100,95,117,112,9,104,97,110,100,95,100,111,119,110,17,99
,105,114,99,108,101,95,97,114,114,111,119,95,108,101,102,116,18,99,105,114,99,108,101,95,97,114,114,111,119,95,114,105,103,104,116,15,99,105,114,99
,108,101,95,97,114,114,111,119,95,117,112,17,99,105,114,99,108,101,95,97,114,114,111,119,95,100,111,119,110,5,103,108,111,98,101,6,119,114,101,110
,99,104,5,116,97,115,107,115,6,102,105,108,116,101,114,9,98,114,105,101,102,99,97,115,101,10,102,117,108,108,115,99,114,101,101,110,5,103,114,111
,117,112,4,108,105,110,107,5,99,108,111,117,100,6,98,101,97,107,101,114,3,99,117,116,4,99,111,112,121,10,112,97,112,101,114,95,99,108,105,112
,4,115,97,118,101,10,115,105,103,110,95,98,108,97,110,107,7,114,101,111,114,100,101,114,2,117,108,2,111,108,13,115,116,114,105,107,101,116,104,114
,111,117,103,104,9,117,110,100,101,114,108,105,110,101,5,116,97,98,108,101,5,109,97,103,105,99,5,116,114,117,99,107,9,112,105,110,116,101,114,101
,115,116,14,112,105,110,116,101,114,101,115,116,95,115,105,103,110,16,103,111,111,103,108,101,95,112,108,117,115,95,115,105,103,110,11,103,111,111,103,108
,101,95,112,108,117,115,5,109,111,110,101,121,10,99,97,114,101,116,95,100,111,119,110,8,99,97,114,101,116,95,117,112,10,99,97,114,101,116,95,108
,101,102,116,11,99,97,114,101,116,95,114,105,103,104,116,7,99,111,108,117,109,110,115,4,115,111,114,116,9,115,111,114,116,95,100,111,119,110,7,115
,111,114,116,95,117,112,12,101,110,118,101,108,111,112,101,95,97,108,116,8,108,105,110,107,101,100,105,110,4,117,110,100,111,5,108,101,103,97,108,9
,100,97,115,104,98,111,97,114,100,11,99,111,109,109,101,110,116,95,97,108,116,12,99,111,109,109,101,110,116,115,95,97,108,116,4,98,111,108,116,7
,115,105,116,101,109,97,112,8,117,109,98,114,101,108,108,97,5,112,97,115,116,101,10,108,105,103,104,116,95,98,117,108,98,8,101,120,99,104,97,110
,103,101,14,99,108,111,117,100,95,100,111,119,110,108,111,97,100,12,99,108,111,117,100,95,117,112,108,111,97,100,7,117,115,101,114,95,109,100,11,115
,116,101,116,104,111,115,99,111,112,101,8,115,117,105,116,99,97,115,101,8,98,101,108,108,95,97,108,116,6,99,111,102,102,101,101,4,102,111,111,100
,13,102,105,108,101,95,116,101,120,116,95,97,108,116,8,98,117,105,108,100,105,110,103,8,104,111,115,112,105,116,97,108,9,97,109,98,117,108,97,110
,99,101,6,109,101,100,107,105,116,11,102,105,103,104,116,101,114,95,106,101,116,4,98,101,101,114,6,104,95,115,105,103,110,4,102,48,102,101,17,100
,111,117,98,108,101,95,97,110,103,108,101,95,108,101,102,116,18,100,111,117,98,108,101,95,97,110,103,108,101,95,114,105,103,104,116,15,100,111,117,98
,108,101,95,97,110,103,108,101,95,117,112,17,100,111,117,98,108,101,95,97,110,103,108,101,95,100,111,119,110,10,97,110,103,108,101,95,108,101,102,116
,11,97,110,103,108,101,95,114,105,103,104,116,8,97,110,103,108,101,95,117,112,10,97,110,103,108,101,95,100,111,119,110,7,100,101,115,107,116,111,112
,6,108,97,112,116,111,112,6,116,97,98,108,101,116,12,109,111,98,105,108,101,95,112,104,111,110,101,12,99,105,114,99,108,101,95,98,108,97,110,107
,10,113,117,111,116,101,95,108,101,102,116,11,113,117,111,116,101,95,114,105,103,104,116,7,115,112,105,110,110,101,114,6,99,105,114,99,108,101,5,114
,101,112,108,121,10,103,105,116,104,117,98,95,97,108,116,16,102,111,108,100,101,114,95,99,108,111,115,101,95,97,108,116,15,102,111,108,100,101,114,95
,111,112,101,110,95,97,108,116,10,101,120,112,97,110,100,95,97,108,116,12,99,111,108,108,97,112,115,101,95,97,108,116,5,115,109,105,108,101,5,102
,114,111,119,110,3,109,101,104,7,103,97,109,101,112,97,100,8,107,101,121,98,111,97,114,100,8,102,108,97,103,95,97,108,116,14,102,108,97,103,95
,99,104,101,99,107,101,114,101,100,8,116,101,114,109,105,110,97,108,4,99,111,100,101,9,114,101,112,108,121,95,97,108,108,15,115,116,97,114,95,104
,97,108,102,95,101,109,112,116,121,14,108,111,99,97,116,105,111,110,95,97,114,114,111,119,4,99,114,111,112,9,99,111,100,101,95,102,111,114,107,6
,117,110,108,105,110,107,4,95,50,55,57,11,101,120,99,108,97,109,97,116,105,111,110,11,115,117,112,101,114,115,99,114,105,112,116,9,115,117,98,115
,99,114,105,112,116,4,95,50,56,51,12,112,117,122,122,108,101,95,112,105,101,99,101,10,109,105,99,114,111,112,104,111,110,101,14,109,105,99,114,111
,112,104,111,110,101,95,111,102,102,6,115,104,105,101,108,100,14,99,97,108,101,110,100,97,114,95,101,109,112,116,121,17,102,105,114,101,95,101,120,116
,105,110,103,117,105,115,104,101,114,6,114,111,99,107,101,116,6,109,97,120,99,100,110,17,99,104,101,118,114,111,110,95,115,105,103,110,95,108,101,102
,116,18,99,104,101,118,114,111,110,95,115,105,103,110,95,114,105,103,104,116,15,99,104,101,118,114,111,110,95,115,105,103,110,95,117,112,17,99,104,101
,118,114,111,110,95,115,105,103,110,95,100,111,119,110,5,104,116,109,108,53,4,99,115,115,51,6,97,110,99,104,111,114,10,117,110,108,111,99,107,95
,97,108,116,8,98,117,108,108,115,101,121,101,19,101,108,108,105,112,115,105,115,95,104,111,114,105,122,111,110,116,97,108,17,101,108,108,105,112,115,105
,115,95,118,101,114,116,105,99,97,108,4,95,51,48,51,9,112,108,97,121,95,115,105,103,110,6,116,105,99,107,101,116,14,109,105,110,117,115,95,115
,105,103,110,95,97,108,116,11,99,104,101,99,107,95,109,105,110,117,115,8,108,101,118,101,108,95,117,112,10,108,101,118,101,108,95,100,111,119,110,10
,99,104,101,99,107,95,115,105,103,110,9,101,100,105,116,95,115,105,103,110,4,95,51,49,50,10,115,104,97,114,101,95,115,105,103,110,7,99,111,109
,112,97,115,115,8,99,111,108,108,97,112,115,101,12,99,111,108,108,97,112,115,101,95,116,111,112,4,95,51,49,55,3,101,117,114,3,103,98,112,3
,117,115,100,3,105,110,114,3,106,112,121,3,114,117,98,3,107,114,119,3,98,116,99,4,102,105,108,101,9,102,105,108,101,95,116,101,120,116,16,115
,111,114,116,95,98,121,95,97,108,112,104,97,98,101,116,4,95,51,50,57,18,115,111,114,116,95,98,121,95,97,116,116,114,105,98,117,116,101,115,22
,115,111,114,116,95,98,121,95,97,116,116,114,105,98,117,116,101,115,95,97,108,116,13,115,111,114,116,95,98,121,95,111,114,100,101,114,17,115,111,114
,116,95,98,121,95,111,114,100,101,114,95,97,108,116,4,95,51,51,52,4,95,51,51,53,12,121,111,117,116,117,98,101,95,115,105,103,110,7,121,111
,117,116,117,98,101,4,120,105,110,103,9,120,105,110,103,95,115,105,103,110,12,121,111,117,116,117,98,101,95,112,108,97,121,7,100,114,111,112,98,111
,120,13,115,116,97,99,107,101,120,99,104,97,110,103,101,9,105,110,115,116,97,103,114,97,109,6,102,108,105,99,107,114,3,97,100,110,4,102,49,55
,49,14,98,105,116,98,117,99,107,101,116,95,115,105,103,110,6,116,117,109,98,108,114,11,116,117,109,98,108,114,95,115,105,103,110,15,108,111,110,103
,95,97,114,114,111,119,95,100,111,119,110,13,108,111,110,103,95,97,114,114,111,119,95,117,112,15,108,111,110,103,95,97,114,114,111,119,95,108,101,102
,116,16,108,111,110,103,95,97,114,114,111,119,95,114,105,103,104,116,7,119,105,110,100,111,119,115,7,97,110,100,114,111,105,100,5,108,105,110,117,120
,7,100,114,105,98,98,108,101,5,115,107,121,112,101,10,102,111,117,114,115,113,117,97,114,101,6,116,114,101,108,108,111,6,102,101,109,97,108,101,4
,109,97,108,101,6,103,105,116,116,105,112,3,115,117,110,4,95,51,54,54,7,97,114,99,104,105,118,101,3,98,117,103,2,118,107,5,119,101,105,98
,111,6,114,101,110,114,101,110,4,95,51,55,50,14,115,116,97,99,107,95,101,120,99,104,97,110,103,101,4,95,51,55,52,21,97,114,114,111,119,95
,99,105,114,99,108,101,95,97,108,116,95,108,101,102,116,4,95,51,55,54,14,100,111,116,95,99,105,114,99,108,101,95,97,108,116,4,95,51,55,56
,12,118,105,109,101,111,95,115,113,117,97,114,101,4,95,51,56,48,13,112,108,117,115,95,115,113,117,97,114,101,95,111,4,95,51,56,50,4,95,51
,56,51,4,95,51,56,52,4,95,51,56,53,4,95,51,56,54,4,95,51,56,55,4,95,51,56,56,4,95,51,56,57,7,117,110,105,70,49,65,48
,4,102,49,97,49,4,95,51,57,50,4,95,51,57,51,4,102,49,97,52,4,95,51,57,53,4,95,51,57,54,4,95,51,57,55,4,95,51,57,56
,4,95,51,57,57,4,95,52,48,48,4,102,49,97,98,4,95,52,48,50,4,95,52,48,51,4,95,52,48,52,7,117,110,105,70,49,66,49,4,95
,52,48,54,4,95,52,48,55,4,95,52,48,56,4,95,52,48,57,4,95,52,49,48,4,95,52,49,49,4,95,52,49,50,4,95,52,49,51,4,95
,52,49,52,4,95,52,49,53,4,95,52,49,54,4,95,52,49,55,4,95,52,49,56,4,95,52,49,57,7,117,110,105,70,49,67,48,7,117,110,105
,70,49,67,49,4,95,52,50,50,4,95,52,50,51,4,95,52,50,52,4,95,52,50,53,4,95,52,50,54,4,95,52,50,55,4,95,52,50,56,4
,95,52,50,57,4,95,52,51,48,4,95,52,51,49,4,95,52,51,50,4,95,52,51,51,4,95,52,51,52,7,117,110,105,70,49,68,48,7,117,110
,105,70,49,68,49,7,117,110,105,70,49,68,50,4,95,52,51,56,4,95,52,51,57,7,117,110,105,70,49,68,53,7,117,110,105,70,49,68,54,7
,117,110,105,70,49,68,55,4,95,52,52,51,4,95,52,52,52,4,95,52,52,53,4,95,52,52,54,4,95,52,52,55,4,95,52,52,56,4,95,52
,52,57,7,117,110,105,70,49,69,48,4,95,52,53,49,4,95,52,53,50,4,95,52,53,51,4,95,52,53,52,4,95,52,53,53,4,95,52,53,54
,4,95,52,53,55,4,95,52,53,56,4,95,52,53,57,4,95,52,54,48,4,95,52,54,49,4,95,52,54,50,4,95,52,54,51,4,95,52,54,52
,7,117,110,105,70,49,70,48,4,95,52,54,54,4,95,52,54,55,4,102,49,102,51,4,95,52,54,57,4,95,52,55,48,4,95,52,55,49,4,95
,52,55,50,4,95,52,55,51,4,95,52,55,52,4,95,52,55,53,4,95,52,55,54,4,102,49,102,99,4,95,52,55,56,4,95,52,55,57,4,95
,52,56,48,4,95,52,56,49,4,95,52,56,50,4,95,52,56,51,4,95,52,56,52,4,95,52,56,53,4,95,52,56,54,4,95,52,56,55,4,95
,52,56,56,4,95,52,56,57,4,95,52,57,48,4,95,52,57,49,4,95,52,57,50,4,95,52,57,51,4,95,52,57,52,4,102,50,49,48,4,95
,52,57,54,4,102,50,49,50,4,95,52,57,56,4,95,52,57,57,4,95,53,48,48,4,95,53,48,49,4,95,53,48,50,4,95,53,48,51,4,95
,53,48,52,4,95,53,48,53,4,95,53,48,54,4,95,53,48,55,4,95,53,48,56,4,95,53,48,57,5,118,101,110,117,115,4,95,53,49,49,4
,95,53,49,50,4,95,53,49,51,4,95,53,49,52,4,95,53,49,53,4,95,53,49,54,4,95,53,49,55,4,95,53,49,56,4,95,53,49,57,4
,95,53,50,48,4,95,53,50,49,4,95,53,50,50,4,95,53,50,51,4,95,53,50,52,4,95,53,50,53,4,95,53,50,54,4,95,53,50,55,4
,95,53,50,56,4,95,53,50,57,4,95,53,51,48,4,95,53,51,49,4,95,53,51,50,4,95,53,51,51,4,95,53,51,52,4,95,53,51,53,4
,95,53,51,54,4,95,53,51,55,4,95,53,51,56,4,95,53,51,57,4,95,53,52,48,4,95,53,52,49,4,95,53,52,50,4,95,53,52,51,4
,95,53,52,52,4,95,53,52,53,4,95,53,52,54,4,95,53,52,55,4,95,53,52,56,4,95,53,52,57,4,95,53,53,48,4,95,53,53,49,4
,95,53,53,50,4,95,53,53,51,4,95,53,53,52,4,95,53,53,53,4,95,53,53,54,4,95,53,53,55,4,95,53,53,56,4,95,53,53,57,4
,95,53,54,48,4,95,53,54,49,4,95,53,54,50,4,95,53,54,51,4,95,53,54,52,4,95,53,54,53,4,95,53,54,54,4,95,53,54,55,4
,95,53,54,56,4,95,53,54,57,4,102,50,54,48,4,102,50,54,49,4,95,53,55,50,4,102,50,54,51,4,95,53,55,52,4,95,53,55,53,4
,95,53,55,54,4,95,53,55,55,4,95,53,55,56,4,95,53,55,57,4,95,53,56,48,4,95,53,56,49,4,95,53,56,50,4,95,53,56,51,4
,95,53,56,52,4,95,53,56,53,4,95,53,56,54,4,95,53,56,55,4,95,53,56,56,4,95,53,56,57,4,95,53,57,48,4,95,53,57,49,4
,95,53,57,50,4,95,53,57,51,4,95,53,57,52,4,95,53,57,53,4,95,53,57,54,4,95,53,57,55,4,95,53,57,56,4,102,50,55,101,7
,117,110,105,70,50,56,48,7,117,110,105,70,50,56,49,4,95,54,48,50,4,95,54,48,51,4,95,54,48,52,7,117,110,105,70,50,56,53,7,117
,110,105,70,50,56,54,4,95,54,48,55,4,95,54,48,56,4,95,54,48,57,4,95,54,49,48,4,95,54,49,49,4,95,54,49,50,4,95,54,49
,51,4,95,54,49,52,4,95,54,49,53,4,95,54,49,54,4,95,54,49,55,4,95,54,49,56,4,95,54,49,57,4,95,54,50,48,4,95,54,50
,49,4,95,54,50,50,4,95,54,50,51,4,95,54,50,52,4,95,54,50,53,4,95,54,50,54,4,95,54,50,55,4,95,54,50,56,4,95,54,50
,57,7,117,110,105,70,50,65,48,7,117,110,105,70,50,65,49,7,117,110,105,70,50,65,50,7,117,110,105,70,50,65,51,7,117,110,105,70,50,65
,52,7,117,110,105,70,50,65,53,7,117,110,105,70,50,65,54,7,117,110,105,70,50,65,55,7,117,110,105,70,50,65,56,7,117,110,105,70,50,65
,57,7,117,110,105,70,50,65,65,7,117,110,105,70,50,65,66,7,117,110,105,70,50,65,67,7,117,110,105,70,50,65,68,7,117,110,105,70,50,65
,69,7,117,110,105,70,50,66,48,7,117,110,105,70,50,66,49,7,117,110,105,70,50,66,50,7,117,110,105,70,50,66,51,7,117,110,105,70,50,66
,52,7,117,110,105,70,50,66,53,7,117,110,105,70,50,66,54,7,117,110,105,70,50,66,55,7,117,110,105,70,50,66,56,7,117,110,105,70,50,66
,57,7,117,110,105,70,50,66,65,7,117,110,105,70,50,66,66,7,117,110,105,70,50,66,67,7,117,110,105,70,50,66,68,7,117,110,105,70,50,66
,69,7,117,110,105,70,50,67,48,7,117,110,105,70,50,67,49,7,117,110,105,70,50,67,50,7,117,110,105,70,50,67,51,7,117,110,105,70,50,67
,52,7,117,110,105,70,50,67,53,7,117,110,105,70,50,67,54,7,117,110,105,70,50,67,55,7,117,110,105,70,50,67,56,7,117,110,105,70,50,67
,57,7,117,110,105,70,50,67,65,7,117,110,105,70,50,67,66,7,117,110,105,70,50,67,67,7,117,110,105,70,50,67,68,7,117,110,105,70,50,67
,69,7,117,110,105,70,50,68,48,7,117,110,105,70,50,68,49,7,117,110,105,70,50,68,50,7,117,110,105,70,50,68,51,7,117,110,105,70,50,68
,52,7,117,110,105,70,50,68,53,7,117,110,105,70,50,68,54,7,117,110,105,70,50,68,55,7,117,110,105,70,50,68,56,7,117,110,105,70,50,68
,57,7,117,110,105,70,50,68,65,7,117,110,105,70,50,68,66,7,117,110,105,70,50,68,67,7,117,110,105,70,50,68,68,7,117,110,105,70,50,68
,69,7,117,110,105,70,50,69,48,7,117,110,105,70,50,69,49,7,117,110,105,70,50,69,50,7,117,110,105,70,50,69,51,7,117,110,105,70,50,69
,52,7,117,110,105,70,50,69,53,7,117,110,105,70,50,69,54,7,117,110,105,70,50,69,55,4,95,54,57,56,7,117,110,105,70,50,69,57,7,117
,110,105,70,50,69,65,7,117,110,105,70,50,69,66,7,117,110,105,70,50,69,67,7,117,110,105,70,50,69,68,7,117,110,105,70,50,69,69,0,0
,0,0,0,0,1,255,255,0,2,0,1,0,0,0,14,0,0,0,24,0,0,0,0,0,2,0,1,0,1,2,194,0,1,0,4,0,0,0,2,0
,0,0,0,0,1,0,0,0,0,204,61,162,207,0,0,0,0,203,79,60,48,0,0,0,0,212,49,104,185};
const char* FontAwesomeData::fontawesomewebfont_ttf = (const char*) data;
|
2fe5538a9d9d9dbd65f22f286cd28cb4e5e6cb81
|
70b94ad7f6fae978bdb6b49c7355f8edc3766c8a
|
/ACDC_DANKSKY.ino
|
83518de3d42634b08509975117bccb7ce8ca3d32
|
[] |
no_license
|
rhardjo/arduino-fishbot
|
fd93d1ab7bfd07b20a8d64ee747f5570b1f22291
|
a6e64e8a0d04c2d331b3dc8bcb53c0a00a7340c4
|
refs/heads/master
| 2021-01-13T02:37:39.560643
| 2015-06-10T10:18:23
| 2015-06-10T10:18:23
| 37,190,237
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,341
|
ino
|
ACDC_DANKSKY.ino
|
/* ---------- LIBRARIES ---------- */
#include <AFMotor.h>
#include <SPI.h>
/* ---------- CONSTANTS ---------- */
AF_DCMotor motorBL(1);
AF_DCMotor motorBR(2);
AF_DCMotor motorFR(3);
AF_DCMotor motorFL(4);
const int sonarPin = 2;
/* ---------- VARIABLES ---------- */
// Motor
int motorSpeed = 100;
int motorInterval = 1000;
int motorTurnInterval = 10000;
// Sonar
int sonarInterval = 100;
long pulse, inches, cm;
// Delay timers
unsigned long currentMillis = 0;
unsigned long previousSonarMillis = 0;
unsigned long previousMotorMillis = 0;
/* ---------- SETUP ---------- */
void setup() {
Serial.begin(9600); // set up Serial library at 9600 bps
Serial.println("Starting engine");
motorBL.setSpeed(motorSpeed); // set the speed to 200/255
motorBR.setSpeed(motorSpeed); // set the speed to 200/255
motorFR.setSpeed(motorSpeed); // set the speed to 200/255
motorFL.setSpeed(motorSpeed); // set the speed to 200/255
}
/* ---------- LOOP ---------- */
void loop() {
// Keep track of time
currentMillis = millis();
// Start the functions
distanceChecker();
canIRide();
}
void distanceChecker() {
// if (currentMillis - previousSonarMillis > sonarInterval) {
// previousSonarMillis += sonarInterval;
pinMode(sonarPin, INPUT);
pulse = pulseIn(sonarPin, HIGH);
inches = pulse/147; // Calculate raw data to inches
cm = inches * 2.54; // Calculate inches to centimetres
Serial.println(cm);
// delay(sonarInterval);
// }
}
void canIRide() {
do {
runMotor();
} while (cm > 12);
if (cm == 12) {
stahp();
Serial.println("STAHP");
delay(1000);
NoScope();
}
}
void runMotor() {
if (currentMillis - previousMotorMillis >= motorInterval) {
previousMotorMillis = currentMillis;
motorBL.run(FORWARD);
motorBR.run(FORWARD);
motorFR.run(FORWARD);
motorFL.run(FORWARD);
Serial.println("Running motor");
}
}
void stahp() {
motorBL.run(RELEASE);
motorBR.run(RELEASE);
motorFR.run(RELEASE);
motorFL.run(RELEASE);
}
void NoScope() {
if (currentMillis - previousMotorMillis >= motorTurnInterval) {
previousMotorMillis = currentMillis;
motorBL.run(RELEASE);
motorBR.run(FORWARD);
motorFR.run(FORWARD);
motorFL.run(RELEASE);
}
}
|
0bac4188671ecc9cb62a22b5f9b99a6a0512f0f0
|
5dbb50e670c090863414287f92823d26b9bcc746
|
/gang_audio_device.cc
|
e35a4768a9ad75bb20405fc3de015bf0268f9d1e
|
[] |
no_license
|
empirefox/ffmpeg-wrap
|
92a39e1c8683c9849f3e144ed262df05475f601c
|
4581838c7fabf964a8af7cdc894eb326132e379b
|
refs/heads/master
| 2020-04-18T17:30:06.076332
| 2015-12-15T15:25:23
| 2015-12-15T15:25:23
| 33,806,115
| 0
| 1
| null | 2015-04-19T11:11:46
| 2015-04-12T06:32:39
|
C++
|
UTF-8
|
C++
| false
| false
| 16,151
|
cc
|
gang_audio_device.cc
|
#include "gang_audio_device.h"
#include "webrtc/base/common.h"
#include "webrtc/base/thread.h"
#include "webrtc/base/timeutils.h"
#include "gang_spdlog_console.h"
namespace gang {
// Audio sample value that is high enough that it doesn't occur naturally when
// frames are being faked. E.g. NetEq will not generate this large sample value
// unless it has received an audio frame containing a sample of this value.
// Even simpler buffers would likely just contain audio sample values of 0.
// Same value as src/modules/audio_device/main/source/audio_device_config.h in
// https://code.google.com/p/webrtc/
static const uint32 kAdmMaxIdleTimeProcess = 1000;
// Constants here are derived by running VoE using a real ADM.
// The constants correspond to 10ms of mono audio at 44kHz.
static const uint32_t kTotalDelayMs = 0;
static const int32_t kClockDriftMs = 0;
GangAudioDevice::GangAudioDevice(shared_ptr<GangDecoder> decoder) :
last_process_time_ms_(0),
audio_callback_(NULL),
recording_(false),
rec_is_initialized_(false),
decoder_(decoder),
len_bytes_per_10ms_(0),
nb_samples_10ms_(0),
_recSampleRate(0),
_recChannels(0),
_recChannel(AudioDeviceModule::kChannelBoth),
_recBytesPerSample(0),
_currentMicLevel(0),
_newMicLevel(0),
_typingStatus(false),
_totalDelayMS(kTotalDelayMs),
_clockDrift(kClockDriftMs),
_record_index(0) {
memset(rec_buff_, 0, kMaxBufferSizeBytes);
SPDLOG_TRACE(console, "{}", __func__)
}
GangAudioDevice::~GangAudioDevice() {
SPDLOG_TRACE(console, "{}", __func__)
rtc::CritScope cs(&lock_);
if (recording_) {
recording_ = false;
decoder_->SetAudioFrameObserver(NULL, NULL);
}
decoder_ = NULL;
SPDLOG_TRACE(console, "{} {}", __func__, "error")
}
rtc::scoped_refptr<GangAudioDevice> GangAudioDevice::Create(shared_ptr<GangDecoder> decoder) {
if (!decoder) {
return NULL;
}
rtc::scoped_refptr<GangAudioDevice> capture_module(
new rtc::RefCountedObject<GangAudioDevice>(decoder));
capture_module->Initialize();
return capture_module;
}
int64_t GangAudioDevice::TimeUntilNextProcess() {
// SPDLOG_TRACE(console, "{}", __func__)
const uint32 current_time = rtc::Time();
if (current_time < last_process_time_ms_) {
// TODO: wraparound could be handled more gracefully.
return 0;
}
const uint32 elapsed_time = current_time - last_process_time_ms_;
if (kAdmMaxIdleTimeProcess < elapsed_time) {
return 0;
}
return kAdmMaxIdleTimeProcess - elapsed_time;
}
int32_t GangAudioDevice::Process() {
// SPDLOG_TRACE(console, "{}", __func__)
last_process_time_ms_ = rtc::Time();
return 0;
}
int32_t GangAudioDevice::ActiveAudioLayer(AudioLayer *audio_layer) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
webrtc::AudioDeviceModule::ErrorCode GangAudioDevice::LastError() const {
SPDLOG_TRACE(console, "{}", __func__)
return webrtc::AudioDeviceModule::kAdmErrNone;
}
int32_t GangAudioDevice::RegisterEventObserver(webrtc::AudioDeviceObserver *event_callback) {
// Only used to report warnings and errors. This fake implementation won't
// generate any so discard this callback.
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::RegisterAudioCallback(webrtc::AudioTransport *audio_callback) {
rtc::CritScope cs(&lockCb_);
audio_callback_ = audio_callback;
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::Init() {
SPDLOG_TRACE(console, "{}", __func__)
// Initialize is called by the factory method. Safe to ignore this Init call.
return 0;
}
int32_t GangAudioDevice::Terminate() {
SPDLOG_TRACE(console, "{}", __func__)
// Clean up in the destructor. No action here, just success.
return 0;
}
bool GangAudioDevice::Initialized() const {
SPDLOG_TRACE(console, "{}", __func__)
return decoder_.get() != NULL;
}
int16_t GangAudioDevice::PlayoutDevices() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int16_t GangAudioDevice::RecordingDevices() {
SPDLOG_TRACE(console, "{}", __func__)
return 1;
}
int32_t GangAudioDevice::PlayoutDeviceName(
uint16_t index,
char name[webrtc::kAdmMaxDeviceNameSize],
char guid[webrtc::kAdmMaxGuidSize]) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::RecordingDeviceName(
uint16_t index,
char name[kAdmMaxDeviceNameSize],
char guid[kAdmMaxGuidSize]) {
SPDLOG_TRACE(console, "{}", __func__)
// TODO give device a actual name
const char *kName = "gang_audio_device";
const char *kGuid = "gang_audio_unique_id";
if (index < 1) {
memset(name, 0, kAdmMaxDeviceNameSize);
memset(guid, 0, kAdmMaxGuidSize);
memcpy(name, kName, strlen(kName));
memcpy(guid, kGuid, strlen(guid));
return 0;
}
return -1;
}
int32_t GangAudioDevice::SetPlayoutDevice(uint16_t index) {
// No playout device, just playing from file. Return success.
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::SetPlayoutDevice(AudioDeviceModule::WindowsDeviceType device) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetRecordingDevice(uint16_t index) {
SPDLOG_TRACE(console, "{}", __func__)
if (index == 0) {
_record_index = index;
return _record_index;
}
return -1;
}
int32_t GangAudioDevice::SetRecordingDevice(AudioDeviceModule::WindowsDeviceType device) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::PlayoutIsAvailable(bool *available) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::InitPlayout() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
bool GangAudioDevice::PlayoutIsInitialized() const {
SPDLOG_TRACE(console, "{}", __func__)
return true;
}
int32_t GangAudioDevice::RecordingIsAvailable(bool *available) {
SPDLOG_TRACE(console, "{}", __func__)
if (_record_index == 0) {
*available = true;
return _record_index;
}
*available = false;
return -1;
}
int32_t GangAudioDevice::InitRecording() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
bool GangAudioDevice::RecordingIsInitialized() const {
SPDLOG_TRACE(console, "{}", __func__)
return true;
}
int32_t GangAudioDevice::StartPlayout() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StopPlayout() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
bool GangAudioDevice::Playing() const {
SPDLOG_TRACE(console, "{}", __func__)
return true;
}
// TODO StartRecording
int32_t GangAudioDevice::StartRecording() {
if (!rec_is_initialized_) {
return -1;
}
SPDLOG_DEBUG(console, "{}", __func__)
rtc::CritScope cs(&lock_);
recording_ = true;
decoder_->SetAudioFrameObserver(this, rec_buff_);
return 0;
}
// TODO StopRecording
int32_t GangAudioDevice::StopRecording() {
SPDLOG_TRACE(console, "{}", __func__)
rtc::CritScope cs(&lock_);
if (recording_) {
decoder_->SetAudioFrameObserver(NULL, NULL);
}
recording_ = false;
return 0;
}
bool GangAudioDevice::Recording() const {
SPDLOG_TRACE(console, "{}", __func__)
rtc::CritScope cs(&lock_);
return recording_;
}
int32_t GangAudioDevice::SetAGC(bool enable) {
SPDLOG_TRACE(console, "{}", __func__)
// No Automatic gain control
return -1;
}
bool GangAudioDevice::AGC() const {
SPDLOG_TRACE(console, "{}", __func__)
return false;
}
int32_t GangAudioDevice::SetWaveOutVolume(uint16_t volumeLeft, uint16_t volumeRight) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::WaveOutVolume(uint16_t *volume_left, uint16_t *volume_right) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::InitSpeaker() {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
bool GangAudioDevice::SpeakerIsInitialized() const {
SPDLOG_TRACE(console, "{}", __func__)
return false;
}
int32_t GangAudioDevice::InitMicrophone() {
SPDLOG_TRACE(console, "{}", __func__)
// No microphone, just playing from file. Return success.
return 0;
}
bool GangAudioDevice::MicrophoneIsInitialized() const {
SPDLOG_TRACE(console, "{}", __func__)
return true;
}
int32_t GangAudioDevice::SpeakerVolumeIsAvailable(bool *available) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetSpeakerVolume(uint32_t /*volume*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SpeakerVolume(uint32_t * /*volume*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MaxSpeakerVolume(uint32_t * /*max_volume*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MinSpeakerVolume(uint32_t * /*min_volume*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SpeakerVolumeStepSize(uint16_t * /*step_size*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneVolumeIsAvailable(bool *available) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetMicrophoneVolume(uint32_t volume) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneVolume(uint32_t *volume) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MaxMicrophoneVolume(uint32_t *max_volume) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MinMicrophoneVolume(uint32_t * /*min_volume*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneVolumeStepSize(uint16_t * /*step_size*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SpeakerMuteIsAvailable(bool * /*available*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetSpeakerMute(bool /*enable*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SpeakerMute(bool * /*enabled*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneMuteIsAvailable(bool * /*available*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetMicrophoneMute(bool /*enable*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneMute(bool * /*enabled*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneBoostIsAvailable(bool * /*available*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetMicrophoneBoost(bool /*enable*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::MicrophoneBoost(bool * /*enabled*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::StereoPlayoutIsAvailable(bool *available) const {
SPDLOG_TRACE(console, "{}", __func__)
// No recording device, just dropping audio. Stereo can be dropped just
// as easily as mono.
* available = true;
return 0;
}
int32_t GangAudioDevice::SetStereoPlayout(bool /*enable*/) {
SPDLOG_TRACE(console, "{}", __func__)
// No recording device, just dropping audio. Stereo can be dropped just
// as easily as mono.
return 0;
}
int32_t GangAudioDevice::StereoPlayout(bool * /*enabled*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StereoRecordingIsAvailable(bool *available) const {
SPDLOG_TRACE(console, "{}", __func__)
// Keep thing simple. No stereo recording.
* available = true;
return 0;
}
int32_t GangAudioDevice::SetStereoRecording(bool enable) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StereoRecording(bool *enabled) const {
SPDLOG_TRACE(console, "{}", __func__)
* enabled = true;
return 0;
}
int32_t GangAudioDevice::SetRecordingChannel(const ChannelType channel) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::RecordingChannel(ChannelType *channel) const {
SPDLOG_TRACE(console, "{}", __func__)
* channel = _recChannel;
return 0;
}
int32_t GangAudioDevice::SetPlayoutBuffer(const BufferType /*type*/, uint16_t /*size_ms*/) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::PlayoutBuffer(BufferType * /*type*/, uint16_t * /*size_ms*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::PlayoutDelay(uint16_t *delay_ms) const {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::RecordingDelay(uint16_t * /*delay_ms*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::CPULoad(uint16_t * /*load*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::StartRawOutputFileRecording(
const char /*pcm_file_name_utf8*/[webrtc::kAdmMaxFileNameSize]) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StopRawOutputFileRecording() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StartRawInputFileRecording(
const char /*pcm_file_name_utf8*/[webrtc::kAdmMaxFileNameSize]) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::StopRawInputFileRecording() {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::SetRecordingSampleRate(const uint32_t /*samples_per_sec*/) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::RecordingSampleRate(uint32_t *samples_per_sec) const {
SPDLOG_TRACE(console, "{}", __func__)
if (_recSampleRate == 0) {
return -1;
}
*samples_per_sec = _recSampleRate;
return 0;
}
int32_t GangAudioDevice::SetPlayoutSampleRate(const uint32_t /*samples_per_sec*/) {
SPDLOG_TRACE(console, "{}", __func__)
return 0;
}
int32_t GangAudioDevice::PlayoutSampleRate(uint32_t * /*samples_per_sec*/) const {
SPDLOG_TRACE(console, "{}", __func__)
ASSERT(false);
return 0;
}
int32_t GangAudioDevice::ResetAudioDevice() {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::SetLoudspeakerStatus(bool /*enable*/) {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
int32_t GangAudioDevice::GetLoudspeakerStatus(bool * /*enabled*/) const {
SPDLOG_TRACE(console, "{}", __func__)
return -1;
}
void GangAudioDevice::Initialize() {
SPDLOG_TRACE(console, "{}", __func__)
last_process_time_ms_ = rtc::Time();
decoder_->GetAudioInfo(&_recSampleRate, &_recChannels);
// 16 bits per sample in mono, 32 bits in stereo
_recBytesPerSample = 2 * static_cast<size_t>(_recChannels);
// must fix to rate
nb_samples_10ms_ = static_cast<size_t>(_recSampleRate) / 100;
switch (_recChannels) {
case 2:
_recChannel = AudioDeviceModule::kChannelBoth;
break;
case 1:
_recChannel = AudioDeviceModule::kChannelRight;
break;
default:
rec_is_initialized_ = false;
return;
}
SPDLOG_DEBUG(
console,
"For webrtc, rate: {}, channels: {}, bytesPerSample: {}",
static_cast<int>(_recSampleRate),
static_cast<int>(_recChannels),
static_cast<int>(_recBytesPerSample));
// init rec_rest_buff_ 10ms container
len_bytes_per_10ms_ = nb_samples_10ms_ * _recBytesPerSample;
rec_is_initialized_ = true;
}
void GangAudioDevice::OnGangFrame() {
if (!audio_callback_) {
return;
}
DeliverRecordedData();
}
// ----------------------------------------------------------------------------
// DeliverRecordedData
// ----------------------------------------------------------------------------
int32_t GangAudioDevice::DeliverRecordedData() {
uint32_t newMicLevel(0);
int32_t res = audio_callback_->RecordedDataIsAvailable(
static_cast<void *>(rec_buff_),
// need interleaved data 10ms samples
nb_samples_10ms_,
_recBytesPerSample,
_recChannels,
_recSampleRate,
_totalDelayMS,
_clockDrift,
_currentMicLevel,
_typingStatus,
newMicLevel);
if (res != -1) {
_newMicLevel = newMicLevel;
}
return 0;
}
} // namespace gang
|
6e581bf1feefae67fa7c0b036b57cac125ae0703
|
f98b5478686b4c1fd6ce0b6a600c35ec9e406e73
|
/Source/PV.h
|
b1aca009724c23d8252734c114e1e7642d8fef2a
|
[] |
no_license
|
gracelzr/ECE-484
|
7efca2222071e7852ec6e7c86f4c0be5df9085e9
|
6e6e60ce753eb0b75a74f057ba8a15c96695afc1
|
refs/heads/master
| 2020-04-08T16:02:44.848841
| 2019-03-31T08:16:50
| 2019-03-31T08:16:50
| 159,502,414
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 593
|
h
|
PV.h
|
/*
==============================================================================
PV.h
Created: 26 Nov 2018 1:51:23pm
Author: grace
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
extern "C" {
#include "PV_core.h"
}
class PhaseVocoder
{
public:
PhaseVocoder();
~PhaseVocoder();
void changeMagMode(int);
void changePhaseMode(int);
void getThreshold(int);
void passParameters(long, long, long, long, float, const float *, const float *, float *);
private:
};
|
c873dd30dd6a0f88394029a09fcde2eea7383d12
|
793c8848753f530aab28076a4077deac815af5ac
|
/src/dskphone/ui/xwin/settingui/src/wifinetitem.cpp
|
82e7708475a4ca3583829119e596a9ff11e6b7f5
|
[] |
no_license
|
Parantido/sipphone
|
4c1b9b18a7a6e478514fe0aadb79335e734bc016
|
f402efb088bb42900867608cc9ccf15d9b946d7d
|
refs/heads/master
| 2021-09-10T20:12:36.553640
| 2018-03-30T12:44:13
| 2018-03-30T12:44:13
| 263,628,242
| 1
| 0
| null | 2020-05-13T12:49:19
| 2020-05-13T12:49:18
| null |
UTF-8
|
C++
| false
| false
| 2,925
|
cpp
|
wifinetitem.cpp
|
#include "wifinetitem.h"
#ifdef IF_SUPPORT_WIFI
CWifiNetItem::CWifiNetItem(IListViewItemAction * pAction/* = NULL*/)
: xListViewItem(LIST_ITEM_TYPE_WIFI_NET, pAction)
, m_pStrengthIcon(NULL)
, m_pName(NULL)
, m_pConnectStatusIcon(NULL)
, m_pEncryptIcon(NULL)
{
}
CWifiNetItem::~CWifiNetItem()
{
}
int CWifiNetItem::GetWifiNetItemType()
{
return LIST_ITEM_TYPE_WIFI_NET;
}
CWifiNetItem * CWifiNetItem::GetWifiNetItem(xListViewItem * pItem)
{
if (NULL == pItem
|| CWifiNetItem::GetWifiNetItemType() != pItem->GetType())
{
return NULL;
}
return (CWifiNetItem *)pItem;
}
xListViewItem * CWifiNetItem::CreateWifiNetItem()
{
CWifiNetItem * pListItem = new CWifiNetItem;
if (NULL != pListItem)
{
pListItem->loadContent("setting/wifinetitem.xml");
}
return pListItem;
}
void CWifiNetItem::loadChildrenElements(xml_node & node)
{
xListViewItem::loadChildrenElements(node);
m_pStrengthIcon = static_cast<xImageView *>(getViewById("picSignalStrengthIcon"));
m_pName = static_cast<xTextView *>(getViewById("txtName"));
m_pConnectStatusIcon = static_cast<xImageView *>(getViewById("picConnectStatusIcon"));
m_pEncryptIcon = static_cast<xImageView *>(getViewById("picEncryptIcon"));
}
void CWifiNetItem::ShowConnectStatusIcon(bool bShowConnectStatusIcon)
{
if (NULL != m_pConnectStatusIcon && bShowConnectStatusIcon != m_pConnectStatusIcon->isVisible())
{
if (bShowConnectStatusIcon)
{
m_pConnectStatusIcon->show();
}
else
{
m_pConnectStatusIcon->hide();
}
}
}
void CWifiNetItem::SetSignalStrengthIcon(const yl::string & strSignalStrengthIcon)
{
if (NULL != m_pStrengthIcon)
{
if (strSignalStrengthIcon.empty())
{
m_pStrengthIcon->hide(true);
}
else
{
m_pStrengthIcon->setPixmap(strSignalStrengthIcon);
m_pStrengthIcon->show();
}
}
}
void CWifiNetItem::SetName(const yl::string & strName)
{
if (NULL != m_pName)
{
m_pName->SetText(strName);
}
}
void CWifiNetItem::SetConnectStatusIcon(const yl::string & strConnectStatusIcon)
{
if (NULL != m_pConnectStatusIcon)
{
m_pConnectStatusIcon->setPixmap(strConnectStatusIcon);
}
}
void CWifiNetItem::SetEncryptIcon(const yl::string & strEncryptIcon)
{
if (NULL != m_pEncryptIcon)
{
m_pEncryptIcon->setPixmap(strEncryptIcon);
}
}
bool CWifiNetItem::onFocusEvent(bool bFocusIn)
{
if (NULL != m_pName)
{
if (bFocusIn)
{
m_pName->EnableScroll(true);
m_pName->SetOverLengthStyle(OVERLENGTH_TYPE_SCROLL);
}
else
{
m_pName->SetOverLengthStyle(OVERLENGTH_TYPE_CUT_WITH_ELLIPSIS);
}
}
return xListViewItem::onFocusEvent(bFocusIn);
}
#endif
|
d71d97993581f1cb6c73565152652eeb214d47d6
|
4352b5c9e6719d762e6a80e7a7799630d819bca3
|
/tutorials/eulerVortex.twitch/eulerVortex.cyclic.twitch.test.test/processor3/1.38/T
|
f601847a84497e7297808a4ce4ef28669dbc3f4e
|
[] |
no_license
|
dashqua/epicProject
|
d6214b57c545110d08ad053e68bc095f1d4dc725
|
54afca50a61c20c541ef43e3d96408ef72f0bcbc
|
refs/heads/master
| 2022-02-28T17:20:20.291864
| 2019-10-28T13:33:16
| 2019-10-28T13:33:16
| 184,294,390
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 23,216
|
T
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "1.38";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField nonuniform List<scalar>
5625
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999999
0.999999
0.999998
0.999998
0.999998
0.999998
0.999998
0.999998
0.999999
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999998
0.999998
0.999997
0.999997
0.999997
0.999996
0.999996
0.999996
0.999996
0.999997
0.999997
0.999998
0.999998
0.999999
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999998
0.999997
0.999997
0.999995
0.999995
0.999994
0.999993
0.999993
0.999992
0.999992
0.999993
0.999993
0.999994
0.999995
0.999996
0.999997
0.999998
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999996
0.999995
0.999994
0.999991
0.99999
0.999989
0.999987
0.999986
0.999986
0.999986
0.999986
0.999987
0.999988
0.99999
0.999992
0.999994
0.999995
0.999996
0.999998
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999993
0.999991
0.999988
0.999984
0.999982
0.999979
0.999976
0.999974
0.999973
0.999973
0.999974
0.999976
0.999978
0.999982
0.999985
0.999988
0.999991
0.999993
0.999995
0.999997
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999988
0.999984
0.999978
0.999972
0.999966
0.999961
0.999956
0.999953
0.999951
0.999951
0.999952
0.999955
0.99996
0.999966
0.999972
0.999977
0.999982
0.999987
0.99999
0.999993
0.999995
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999979
0.99997
0.999961
0.999951
0.99994
0.999931
0.999922
0.999916
0.999912
0.999912
0.999914
0.99992
0.999928
0.999938
0.999948
0.999958
0.999968
0.999976
0.999983
0.999988
0.999992
0.999994
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999962
0.999947
0.999932
0.999915
0.999896
0.999879
0.999864
0.999853
0.999847
0.999846
0.999851
0.999861
0.999875
0.999891
0.999909
0.999926
0.999943
0.999957
0.999969
0.999978
0.999985
0.99999
0.999994
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999935
0.999911
0.999884
0.999854
0.999823
0.999793
0.999768
0.999748
0.999737
0.999735
0.999743
0.99976
0.999784
0.999812
0.999843
0.999873
0.999901
0.999925
0.999946
0.999962
0.999974
0.999983
0.999989
0.999993
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999891
0.999852
0.999805
0.999755
0.999703
0.999653
0.999609
0.999576
0.999557
0.999554
0.999568
0.999596
0.999636
0.999683
0.999735
0.999786
0.999833
0.999874
0.999908
0.999935
0.999956
0.999972
0.999982
0.999989
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.99982
0.999755
0.99968
0.999597
0.999511
0.999429
0.999356
0.999301
0.999269
0.999264
0.999285
0.999331
0.999397
0.999476
0.999561
0.999645
0.999723
0.999791
0.999848
0.999893
0.999927
0.999952
0.99997
0.999981
0.999989
0.999994
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.99971
0.999605
0.999483
0.999348
0.999209
0.999075
0.998958
0.998868
0.998815
0.998804
0.998839
0.998913
0.99902
0.999149
0.999287
0.999424
0.999551
0.999661
0.999754
0.999827
0.999882
0.999922
0.999951
0.99997
0.999982
0.999989
0.999994
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.99954
0.999374
0.99918
0.998967
0.998745
0.998531
0.998343
0.998198
0.998113
0.998096
0.99815
0.998268
0.998438
0.998643
0.998865
0.999083
0.999285
0.999462
0.999609
0.999725
0.999812
0.999876
0.999921
0.999951
0.999971
0.999983
0.99999
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999284
0.999026
0.998724
0.99839
0.998044
0.997709
0.997413
0.997186
0.99705
0.997021
0.997105
0.99729
0.997557
0.997879
0.998225
0.998568
0.998885
0.999162
0.99939
0.999571
0.999708
0.999807
0.999877
0.999924
0.999955
0.999973
0.999985
0.999992
0.999996
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.998907
0.998512
0.99805
0.997539
0.997008
0.996492
0.996037
0.995685
0.995475
0.99543
0.995557
0.99584
0.996251
0.996747
0.997279
0.997806
0.998294
0.998718
0.999069
0.999345
0.999555
0.999706
0.999812
0.999884
0.99993
0.99996
0.999977
0.999987
0.999993
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.998361
0.997768
0.997074
0.996307
0.995505
0.994729
0.994042
0.993511
0.993193
0.993125
0.993314
0.993742
0.994361
0.995108
0.995911
0.996706
0.99744
0.998078
0.998605
0.999021
0.999334
0.999562
0.99972
0.999827
0.999896
0.99994
0.999966
0.999981
0.99999
0.999995
0.999998
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.997587
0.996713
0.995691
0.994559
0.993379
0.992232
0.991219
0.990437
0.989968
0.989868
0.990148
0.990778
0.991692
0.992793
0.993977
0.995151
0.996233
0.997175
0.997953
0.998564
0.999025
0.999358
0.999591
0.999746
0.999848
0.999911
0.99995
0.999973
0.999985
0.999993
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.996512
0.995251
0.993775
0.99214
0.990435
0.988782
0.987323
0.986198
0.985529
0.985388
0.985795
0.986704
0.988019
0.989606
0.991316
0.993008
0.994571
0.995931
0.997053
0.997936
0.998599
0.999079
0.999412
0.999636
0.999782
0.999873
0.999928
0.999961
0.999979
0.999989
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.995054
0.993268
0.991181
0.988869
0.986463
0.984136
0.982089
0.980518
0.979588
0.979401
0.979977
0.981257
0.983104
0.985335
0.987742
0.990128
0.992335
0.994257
0.995843
0.99709
0.998027
0.998703
0.999174
0.999489
0.999693
0.999821
0.999899
0.999944
0.99997
0.999985
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.993123
0.990647
0.987756
0.984562
0.981248
0.978055
0.975257
0.973123
0.97187
0.971628
0.972425
0.974179
0.976709
0.979766
0.983072
0.986356
0.989401
0.992058
0.994251
0.995977
0.997275
0.998211
0.998861
0.999296
0.999577
0.999753
0.99986
0.999923
0.999959
0.999979
0.999989
0.999995
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.990627
0.987267
0.983355
0.979047
0.974593
0.970325
0.966606
0.963786
0.962141
0.961838
0.962909
0.965246
0.968617
0.9727
0.977127
0.981542
0.985647
0.989238
0.99221
0.99455
0.996309
0.997578
0.998459
0.999048
0.999429
0.999667
0.999812
0.999897
0.999945
0.999971
0.999985
0.999993
0.999997
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.987485
0.983028
0.977855
0.972185
0.966354
0.960796
0.955985
0.952355
0.950251
0.949876
0.951268
0.954294
0.958667
0.963981
0.969766
0.97556
0.980969
0.985715
0.989654
0.99276
0.995099
0.996786
0.997956
0.998738
0.999243
0.999559
0.999751
0.999863
0.999927
0.999962
0.999981
0.99999
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.983641
0.977861
0.971184
0.963903
0.956463
0.949417
0.94335
0.938795
0.936163
0.935697
0.937446
0.941255
0.946779
0.953521
0.960899
0.968322
0.975287
0.981423
0.986532
0.990571
0.993617
0.995815
0.99734
0.998359
0.999017
0.999428
0.999676
0.999822
0.999905
0.999951
0.999975
0.999988
0.999994
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.979073
0.971751
0.963339
0.954221
0.944966
0.936256
0.928794
0.923208
0.919979
0.919396
0.921522
0.926186
0.932986
0.941331
0.950513
0.959808
0.968573
0.976333
0.982819
0.987962
0.991847
0.994655
0.996604
0.997906
0.998747
0.999271
0.999588
0.999774
0.999879
0.999937
0.999968
0.999985
0.999993
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.973806
0.964747
0.954402
0.943264
0.93203
0.921522
0.912555
0.905853
0.901967
0.901233
0.903741
0.909304
0.917469
0.927552
0.938716
0.950084
0.960866
0.970462
0.978519
0.984932
0.989789
0.993306
0.995748
0.99738
0.998432
0.999088
0.999485
0.999717
0.999849
0.999922
0.999961
0.999981
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.967928
0.956979
0.944554
0.931267
0.917954
0.905564
0.895026
0.88715
0.882563
0.88165
0.884527
0.891004
0.90058
0.912481
0.925741
0.939327
0.952291
0.963894
0.973687
0.981514
0.987462
0.991777
0.994777
0.996783
0.998077
0.998882
0.999369
0.999654
0.999815
0.999904
0.999952
0.999976
0.999989
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.961583
0.948647
0.934064
0.918573
0.903146
0.888855
0.876733
0.867672
0.862364
0.861251
0.864476
0.87185
0.882834
0.896571
0.911968
0.927837
0.943072
0.956787
0.968426
0.977775
0.984906
0.990094
0.993708
0.996126
0.997685
0.998656
0.999241
0.999584
0.999778
0.999885
0.999942
0.999972
0.999986
0.999994
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.954973
0.940023
0.92328
0.905609
0.888109
0.871967
0.858308
0.848097
0.84209
0.84077
0.844315
0.852541
0.86488
0.880403
0.897897
0.916027
0.933529
0.949379
0.962905
0.973825
0.982193
0.988303
0.992567
0.995423
0.997265
0.998414
0.999106
0.99951
0.999739
0.999865
0.999932
0.999967
0.999984
0.999993
0.999997
0.999999
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.948344
0.931428
0.912603
0.892855
0.873402
0.855529
0.840441
0.829169
0.822514
0.821
0.82483
0.833836
0.847432
0.864629
0.884105
0.904387
0.924061
0.94197
0.957339
0.969814
0.979421
0.986462
0.991391
0.994699
0.996834
0.998164
0.998966
0.999433
0.999698
0.999844
0.999922
0.999962
0.999982
0.999992
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.941967
0.923211
0.90246
0.880813
0.859595
0.840175
0.823824
0.811621
0.804401
0.802713
0.806787
0.816475
0.831191
0.8499
0.871179
0.893427
0.915093
0.934901
0.951982
0.965919
0.976707
0.984649
0.990228
0.99398
0.996405
0.997916
0.998826
0.999358
0.999658
0.999823
0.999911
0.999956
0.999979
0.99999
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.936127
0.915723
0.893272
0.869972
0.847234
0.826499
0.809091
0.796118
0.788431
0.786596
0.790863
0.801118
0.816787
0.836802
0.85966
0.883631
0.907041
0.928512
0.947099
0.962337
0.974188
0.982953
0.989133
0.993301
0.995999
0.997682
0.998695
0.999286
0.99962
0.999804
0.999902
0.999952
0.999977
0.999989
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.931092
0.909295
0.885427
0.860769
0.836802
0.815022
0.796785
0.783215
0.775168
0.77321
0.777617
0.788308
0.804738
0.825828
0.849999
0.875408
0.900268
0.923111
0.942939
0.959254
0.971997
0.981463
0.988164
0.992697
0.995637
0.997473
0.998578
0.999222
0.999586
0.999786
0.999893
0.999948
0.999975
0.999989
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.927104
0.904217
0.879261
0.853576
0.828698
0.806158
0.787328
0.773339
0.765034
0.762981
0.767471
0.778463
0.795455
0.817364
0.842555
0.869085
0.895062
0.91895
0.939712
0.956836
0.970257
0.980265
0.987377
0.992202
0.995339
0.9973
0.998482
0.99917
0.999559
0.999772
0.999886
0.999944
0.999974
0.999988
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.924363
0.900724
0.875033
0.848677
0.823217
0.800206
0.781021
0.766783
0.758323
0.756201
0.760722
0.771889
0.789239
0.811701
0.837596
0.864897
0.891632
0.916208
0.937571
0.95521
0.969066
0.97943
0.986819
0.991847
0.995123
0.997174
0.99841
0.999131
0.999539
0.999762
0.99988
0.999942
0.999972
0.999987
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.923008
0.898977
0.872926
0.846262
0.820556
0.797361
0.778047
0.763725
0.755208
0.753048
0.757559
0.76878
0.786292
0.809035
0.835302
0.863005
0.890112
0.914999
0.936613
0.954456
0.968489
0.979007
0.986525
0.991655
0.995004
0.997103
0.998371
0.99911
0.999528
0.999757
0.999878
0.999941
0.999972
0.999987
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.923122
0.899068
0.873034
0.846426
0.820803
0.797703
0.778483
0.764235
0.755761
0.753597
0.758064
0.76923
0.786712
0.809464
0.835759
0.863476
0.890555
0.915365
0.936872
0.954609
0.968555
0.97902
0.986514
0.991638
0.99499
0.997094
0.998365
0.999107
0.999527
0.999756
0.999878
0.999941
0.999972
0.999987
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.924713
0.901007
0.875363
0.849167
0.823949
0.801217
0.782306
0.768289
0.759956
0.757826
0.762223
0.773232
0.790496
0.81298
0.838956
0.866293
0.892936
0.917279
0.938327
0.955651
0.969258
0.979469
0.986788
0.991799
0.995082
0.997146
0.998394
0.999123
0.999535
0.99976
0.99988
0.999942
0.999973
0.999988
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.927724
0.904722
0.879827
0.854387
0.829885
0.807785
0.789392
0.775763
0.767667
0.765615
0.769918
0.780671
0.797529
0.819472
0.844779
0.871343
0.89715
0.920649
0.940897
0.957519
0.970553
0.980325
0.987329
0.992128
0.995276
0.997257
0.998456
0.999156
0.999552
0.999769
0.999885
0.999944
0.999974
0.999988
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.932025
0.910067
0.886259
0.861896
0.838404
0.81719
0.799519
0.786427
0.778667
0.776731
0.780918
0.791315
0.807583
0.828713
0.853012
0.878427
0.903016
0.925314
0.944456
0.960118
0.972368
0.981537
0.988105
0.992606
0.995559
0.997419
0.998547
0.999206
0.999579
0.999783
0.999891
0.999947
0.999975
0.999989
0.999995
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.937422
0.916814
0.894403
0.871414
0.849205
0.829112
0.812358
0.799947
0.792613
0.790827
0.794869
0.80481
0.820307
0.840366
0.863338
0.887252
0.91028
0.931065
0.94883
0.963312
0.974604
0.983038
0.989072
0.993204
0.995917
0.997626
0.998662
0.999269
0.999612
0.9998
0.9999
0.999952
0.999977
0.99999
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.943659
0.924672
0.903929
0.882578
0.861892
0.843137
0.827476
0.815878
0.809049
0.807436
0.811295
0.820681
0.835237
0.853986
0.875345
0.897455
0.918627
0.937638
0.953812
0.966942
0.977146
0.984747
0.990175
0.993889
0.996326
0.997863
0.998795
0.999341
0.999651
0.99982
0.99991
0.999956
0.999979
0.999991
0.999996
0.999998
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
boundaryField
{
emptyPatches_empt
{
type empty;
}
top_cyc
{
type cyclic;
}
bottom_cyc
{
type cyclic;
}
inlet_cyc
{
type cyclic;
}
outlet_cyc
{
type cyclic;
}
procBoundary3to1
{
type processor;
value nonuniform List<scalar>
75
(
0.950425
0.933287
0.914441
0.894949
0.875994
0.858759
0.844343
0.833668
0.827406
0.825978
0.829615
0.838348
0.85181
0.869045
0.888551
0.908611
0.927701
0.944747
0.959175
0.970838
0.979869
0.986577
0.991357
0.994624
0.996766
0.998118
0.998938
0.999419
0.999692
0.999842
0.999921
0.999962
0.999982
0.999992
0.999997
0.999999
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
}
procBoundary3to1throughtop_cyc
{
type processorCyclic;
value nonuniform List<scalar>
75
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
}
procBoundary3to2
{
type processor;
value nonuniform List<scalar>
75
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
0.999999
0.999999
0.999997
0.999995
0.999992
0.999985
0.999973
0.999954
0.999923
0.999873
0.999796
0.999675
0.999495
0.999228
0.998842
0.998295
0.997537
0.996506
0.995139
0.993369
0.991134
0.98839
0.985114
0.98132
0.977062
0.97244
0.967598
0.962715
0.957995
0.953656
0.949909
0.946945
0.944922
0.943959
0.94412
0.945412
0.947784
0.951124
0.955264
0.959987
)
;
}
procBoundary3to2throughoutlet_cyc
{
type processorCyclic;
value nonuniform List<scalar>
75
(
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
1
)
;
}
}
// ************************************************************************* //
|
|
37cbdf64dd7d4db3167746f6355ae61e56018298
|
4a544f87fafe6729dc2e115dd6bb18f4481901d2
|
/MP4Urn.h
|
228d9d72a8f16d231b3ab4c6c3c67c9592e87de8
|
[] |
no_license
|
asdlei99/encode_mp4
|
208618b3b1e9834ddb486fc869d7b74bee5c323f
|
8e54314c90d852b18f582ca79a9e67b467484bc8
|
refs/heads/master
| 2020-08-21T12:12:07.471000
| 2017-12-16T13:53:35
| 2017-12-16T13:53:35
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 319
|
h
|
MP4Urn.h
|
#pragma once
#include "MP4Box.h"
class MP4Urn : public MP4Box
{
public:
MP4Urn();
virtual ~MP4Urn();
void createMP4Urn(unsigned char ucVersion, std::string strName, std::string strLocation);
private:
unsigned char m_ucVersion;
unsigned char m_ucFlag[3];
std::string m_strName;
std::string m_strLocation;
};
|
41be0ed5e720b57afe5d427f878b8a5bcc848aab
|
26567bc276074e5eccdbd79daaff378695fbca27
|
/CSC8503/CSC8503Common/OrientationLock.h
|
01a5c65d681b152d987e411fb761e14b0e673a9e
|
[] |
no_license
|
sspike2/CSC8508_CW
|
ddbb300eabc3bb6ed64e699cdafaf571e8247d29
|
5072d18184396447ad6043c6b03538a78c12ef2c
|
refs/heads/main
| 2023-03-01T23:18:54.238341
| 2021-02-03T17:29:16
| 2021-02-03T17:29:16
| 335,700,408
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 546
|
h
|
OrientationLock.h
|
#pragma once
#include "Constraint.h"
#include "GameObject.h"
namespace NCL
{
namespace CSC8503
{
class OrientationLock : public Constraint
{
public:
OrientationLock(GameObject* a, bool xLock, bool yLock, bool zLock)
{
objectA = a;
x = xLock;
y = yLock;
z = zLock;
lockedOri = objectA->GetTransform().GetOrientation().ToEuler();
}
~OrientationLock() { delete objectA; }
void UpdateConstraint(float dt) override;
private:
GameObject* objectA;
bool x, y, z;
Vector3 lockedOri;
};
};
}
|
a956091407801f3edf18892983591268c23ee98e
|
f81124e4a52878ceeb3e4b85afca44431ce68af2
|
/re20_2/processor7/30/phi
|
b07774b68553e865cf09b62957c9366bd1a9c6e1
|
[] |
no_license
|
chaseguy15/coe-of2
|
7f47a72987638e60fd7491ee1310ee6a153a5c10
|
dc09e8d5f172489eaa32610e08e1ee7fc665068c
|
refs/heads/master
| 2023-03-29T16:59:14.421456
| 2021-04-06T23:26:52
| 2021-04-06T23:26:52
| 355,040,336
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,223
|
phi
|
/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "30";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
590
(
-0.00401497
-0.000492468
-0.000440206
-0.00357477
-0.000510566
-0.00375718
-0.000583563
-0.000375658
-0.00315699
-0.000443668
-0.00332756
-0.000516871
-0.000369683
-0.00292757
-0.000437195
-0.00308948
-0.000357992
-0.00270757
-0.000423338
-0.00286222
-0.000287045
-0.00234415
-0.000342678
-0.00249596
-0.000404978
-0.00264527
-0.000272119
-0.0021425
-0.000325078
-0.00229119
-0.000384242
-0.00025522
-0.00194591
-0.000305756
-0.00209197
-0.000193606
-0.00160806
-0.000236492
-0.0017541
-0.000284817
-0.00189759
-0.000175195
-0.0014244
-0.000216052
-0.0015672
-0.000262242
-0.00170791
-0.000155385
-0.00124658
-0.000194109
-0.00138568
-0.000238109
-0.0015232
-0.000134584
-0.00107531
-0.000170998
-0.00121016
-0.000212655
-0.00134402
-0.000113286
-0.000911394
-0.00014716
-0.00104143
-0.000186263
-0.00117106
-9.20595e-05
-0.000755702
-0.000123125
-0.000880329
-0.000159417
-0.00100514
-0.00112935
-7.15237e-05
-0.000609109
-9.94833e-05
-0.000727743
-0.000132679
-0.000847133
-0.000171307
-0.000966511
-5.2336e-05
-0.000472484
-7.68732e-05
-0.000584572
-0.000106665
-0.000697951
-0.000141912
-0.000811886
-5.5961e-05
-0.000451696
-8.20265e-05
-0.000558506
-0.000113576
-0.000666401
-3.74257e-05
-0.00032995
-5.9437e-05
-0.000429685
-8.69631e-05
-0.00053098
-0.000633174
-2.19403e-05
-0.000220095
-3.95741e-05
-0.000312317
-6.27502e-05
-0.000406509
-9.16642e-05
-0.000502066
-1.01524e-05
-0.000122787
-2.31008e-05
-0.000207146
-4.16105e-05
-0.000293807
-6.58881e-05
-0.000382231
-1.06458e-05
-0.000114803
-2.4194e-05
-0.000193598
-4.35273e-05
-0.000274474
-0.000356919
-2.78075e-06
-3.57649e-05
-1.11072e-05
-0.000106476
-2.52158e-05
-0.000179489
-4.53178e-05
-0.000254372
-2.89105e-06
-3.28739e-05
-1.15351e-05
-9.78324e-05
-2.61627e-05
-0.000164862
-0.000233558
-2.99238e-06
-2.98815e-05
-1.1928e-05
-8.88968e-05
-2.70318e-05
-0.000149758
-0.000212092
-3.08441e-06
-2.67971e-05
-1.22847e-05
-7.96965e-05
-2.78205e-05
-0.000134222
-3.16686e-06
-2.36303e-05
-1.26041e-05
-7.02593e-05
-0.0001183
-3.23949e-06
-2.03908e-05
-1.28854e-05
-6.06134e-05
-0.000102037
-3.30209e-06
-1.70887e-05
-1.31277e-05
-5.07877e-05
-3.3545e-06
-1.37342e-05
-4.08116e-05
-3.39659e-06
-1.03376e-05
-3.07148e-05
-3.42824e-06
-6.90935e-06
-2.05271e-05
-3.44938e-06
-3.45996e-06
-1.02787e-05
-3.45996e-06
2.65315e-13
7.87273e-13
-3.45996e-06
3.45997e-06
1.02787e-05
-3.44938e-06
6.90935e-06
2.05271e-05
-3.42824e-06
1.03376e-05
3.07148e-05
-3.39659e-06
1.37342e-05
4.08116e-05
-3.3545e-06
1.70887e-05
5.07877e-05
-3.30209e-06
2.03908e-05
-1.31277e-05
6.06134e-05
0.000102037
-3.23949e-06
2.36303e-05
-1.28854e-05
7.02593e-05
0.0001183
-3.16686e-06
2.67971e-05
-1.26041e-05
7.96965e-05
0.000134222
-3.08441e-06
2.98815e-05
-1.22847e-05
8.88968e-05
-2.78205e-05
0.000149758
0.000212092
-2.99238e-06
3.28739e-05
-1.1928e-05
9.78324e-05
-2.70318e-05
0.000164862
0.000233558
-2.89105e-06
3.57649e-05
-1.15351e-05
0.000106476
-2.61627e-05
0.000179489
0.000254372
-2.78075e-06
-1.11072e-05
0.000114803
-2.52158e-05
0.000193598
-4.53178e-05
0.000274474
0.000356919
-1.06458e-05
0.000122787
-2.4194e-05
0.000207146
-4.35273e-05
0.000293807
-6.88395e-05
0.000382231
0.000471842
-1.01524e-05
-2.31008e-05
0.000220095
-4.16105e-05
0.000312317
-6.58881e-05
0.000406509
0.000502066
-2.19403e-05
-3.95741e-05
0.00032995
-6.27502e-05
0.000429685
-9.16642e-05
0.00053098
0.000633174
-3.74257e-05
-5.9437e-05
0.000451696
-8.69631e-05
0.000558506
0.000666401
-5.5961e-05
0.000472484
-8.20265e-05
0.000584572
-0.000113576
0.000697951
0.000811886
-5.2336e-05
-7.68732e-05
0.000609109
-0.000106665
0.000727743
-0.000141912
0.000847133
0.000966511
-7.15237e-05
-9.94833e-05
0.000755702
-0.000132679
0.000880329
-0.000171307
0.00100514
0.00112935
-9.20595e-05
-0.000123125
0.000911394
-0.000159417
0.00104143
0.00117106
-0.000113286
-0.00014716
0.00107531
-0.000186263
0.00121016
0.00134402
-0.000134584
-0.000170998
0.00124658
-0.000212655
0.00138568
0.0015232
-0.000155385
-0.000194109
0.0014244
-0.000238109
0.0015672
0.00170791
-0.000175195
-0.000216052
-0.000262242
0.0017541
0.00189759
-0.000236492
-0.000284817
0.00194591
0.00209197
-0.00025522
-0.000305756
0.0021425
-0.000362115
0.00229119
0.00243679
-0.000272119
-0.000325078
0.00234415
-0.000384242
0.00249596
0.00264527
-0.000287045
-0.000342678
-0.000404978
0.00270757
0.00286222
-0.000357992
-0.000423338
0.00292757
0.00308948
-0.000369683
-0.000437195
-0.000511276
0.00332756
0.00350157
-0.000443668
-0.000516871
0.00357477
0.00375718
-0.000440206
-0.000510566
0.00401497
-0.000583563
-0.000492468
-0.000576143
-0.00864133
-0.000644408
-0.00871828
-0.000696796
-0.0087781
-0.000735622
-0.00882799
-0.000762949
-0.00887152
-0.000780775
-0.00890763
-0.000790855
-0.00893552
-0.000794618
-0.00895531
-0.000793199
-0.00896775
-0.000787484
-0.00897393
-0.000778176
-0.00897499
-0.000765832
-0.00897196
-0.000750903
-0.00896579
-0.000733758
-0.00895721
-0.000714701
-0.00894684
-0.000693987
-0.00893516
-0.000671832
-0.00892256
-0.000648419
-0.00890933
-0.000623909
-0.00889572
-0.000598439
-0.00888194
-0.000572128
-0.00886816
-0.000545082
-0.0088545
-0.000517392
-0.00884111
-0.000489139
-0.00882807
-0.000460393
-0.00881548
-0.000431217
-0.00880342
-0.000401666
-0.00879195
-0.00037179
-0.00878115
-0.000341631
-0.00877105
-0.000311228
-0.0087617
-0.000280616
-0.00875315
-0.00874542
-0.000667939
-0.00073595
-0.000787549
-0.000825165
-0.000850981
-0.000867049
-0.000875167
-0.000876802
-0.000873115
-0.000865023
-0.000853249
-0.000838373
-0.000820861
-0.000801095
-0.00077939
-0.00075601
-0.000731177
-0.000705081
-0.000677886
-0.000649733
-0.000620745
-0.000591028
-0.000560676
-0.000529771
-0.000498385
-0.000466582
-0.000434417
-0.000401939
-0.000369193
-0.000336218
-0.000303047
-0.000269712
-0.000236242
-0.000202661
-0.000168993
-0.00876115
-0.000135259
-0.00875705
-0.000101478
-0.00875387
-6.76653e-05
-0.00875161
-3.3836e-05
-0.00875026
-0.00874979
-0.000181048
-0.000144876
-0.00010867
-7.24476e-05
-3.62212e-05
-0.000501215
0.00883522
-0.000466484
0.00882412
-0.000431455
0.00881362
-0.000396171
0.00880379
-0.000360673
0.00879468
-0.000324993
0.00878632
-0.000289164
0.00877875
-0.000253214
0.00877202
-0.000217167
0.00876615
-0.000181048
0.00876115
-0.000144876
0.00875705
-0.00010867
0.00875387
-7.24476e-05
0.00875161
-3.62212e-05
0.00875026
0.00874979
-0.000667939
0.00864133
-0.00073595
0.00871828
-0.000787549
0.0087781
-0.000825165
0.00882799
-0.000850981
0.00887152
-0.000867049
0.00890763
-0.000875167
0.00893552
-0.000876802
0.00895531
-0.000873115
0.00896775
-0.000865023
0.00897393
-0.000853249
0.00897499
-0.000838373
0.00897196
-0.000820861
0.00896579
-0.000801095
0.00895721
-0.00077939
0.00894684
-0.00075601
0.00893516
-0.000731177
0.00892256
-0.000705081
0.00890933
-0.000677886
0.00889572
-0.000649733
0.00888194
-0.000620745
0.00886816
-0.000591028
0.0088545
-0.000560676
0.00884111
-0.000529771
0.00882807
-0.000498385
-0.000466582
-0.000434417
-0.000401939
-0.000369193
-0.000336218
-0.000303047
-0.000269712
-0.000236242
-0.000202661
-0.000168993
-0.000135259
-0.000101478
-6.76653e-05
-3.3836e-05
-0.000576143
-0.000644408
-0.000696796
-0.000735622
-0.000762949
-0.000780775
-0.000790855
-0.000794618
-0.000793199
-0.000787484
-0.000778176
-0.000765832
-0.000750903
-0.000733758
-0.000714701
-0.000693987
-0.000671832
-0.000648419
-0.000623909
-0.000598439
-0.000572128
-0.000545082
-0.000517392
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform 0();
}
outlet
{
type calculated;
value nonuniform 0();
}
cylinder
{
type calculated;
value uniform 0;
}
top
{
type symmetryPlane;
value uniform 0;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
procBoundary7to6
{
type processor;
value nonuniform List<scalar>
188
(
-0.00394197
-0.00350157
-0.000593942
-0.0036801
-0.000511276
-0.00325348
-0.00049591
-0.00301691
-0.000474365
-0.00279284
-0.00243679
-0.000449953
-0.00257956
-0.000362115
-0.00223483
-0.000338732
-0.00203805
-0.00031391
-0.00184592
-0.000287539
-0.00165848
-0.000259726
-0.00147613
-0.000230775
-0.00129951
-0.000201126
-0.000215529
-0.00108513
-0.000182785
-0.000925639
-0.000150788
-0.000774674
-0.00012019
-0.000126482
-0.000598357
-9.61126e-05
-0.000471842
-6.88395e-05
-7.15947e-05
-0.000330642
-4.69763e-05
-4.84977e-05
-4.98776e-05
-0.000190035
-2.85265e-05
-2.9148e-05
-2.96834e-05
-8.54813e-05
-1.33306e-05
-1.34935e-05
-1.36159e-05
-1.36977e-05
-1.37387e-05
-1.37387e-05
-1.36977e-05
-1.36159e-05
-1.34935e-05
-1.33306e-05
-8.54813e-05
-2.96834e-05
-2.9148e-05
-2.85265e-05
-0.000190035
-4.98776e-05
-4.84977e-05
-4.69763e-05
-0.000330642
-7.15947e-05
-0.000440388
-0.000100293
-9.61126e-05
-0.000598357
-0.000126482
-0.00012019
-0.000774674
-0.000150788
-0.000925639
-0.000182785
-0.00108513
-0.000215529
-0.000201126
-0.00129951
-0.000230775
-0.00147613
-0.000259726
-0.00165848
-0.000287539
-0.00184592
-0.00031391
-0.00203805
-0.000338732
-0.00223483
-0.00237441
-0.000424496
-0.00257956
-0.000449952
-0.00279284
-0.000474365
-0.00301691
-0.00049591
-0.00325348
-0.00342169
-0.000591153
-0.0036801
-0.000593942
-0.00394197
-0.00855696
-0.00865027
-0.0087265
-0.00879038
-0.0088457
-0.00889156
-0.0089274
-0.00895367
-0.00897144
-0.00898203
-0.00898676
-0.00898684
-0.0089833
-0.00897698
-0.00896855
-0.00895854
-0.00894739
-0.00893543
-0.00892292
-0.0089101
-0.00889715
-0.00888422
-0.00887146
-0.00885897
-0.00884686
-0.00883522
-0.00882412
-0.00881362
-0.00880379
-0.00879468
-0.00878632
-0.00877875
-0.00877202
-0.00876615
0.000217167
-0.00879727
-0.00879323
-0.00879008
-0.00878783
-0.00878648
-0.00878601
-0.0088696
-0.00885885
-0.00884865
-0.00883908
-0.00883017
-0.008822
-0.00881458
-0.00880797
-0.00880219
-0.00879727
-0.00879323
-0.00879008
-0.00878783
-0.00878648
-0.00878601
-0.00855696
-0.00865027
-0.0087265
-0.00879038
-0.0088457
-0.00889156
-0.0089274
-0.00895367
-0.00897144
-0.00898203
-0.00898676
-0.00898684
-0.0089833
-0.00897698
-0.00896855
-0.00895854
-0.00894739
-0.00893543
-0.00892292
-0.0089101
-0.00889715
-0.00888422
-0.00887146
-0.00885897
0.000535598
-0.00884686
)
;
}
procBoundary7to8
{
type processor;
value nonuniform List<scalar>
172
(
0.00408182
0.00364138
0.000425617
0.00382754
0.00321898
0.000373591
0.00339557
0.000313667
0.00298827
0.000308979
0.00276595
0.00239348
0.000299619
0.00255159
0.000237711
0.00218954
0.000225078
0.00199082
0.00164571
0.000210308
0.00179698
0.000155959
0.00146012
0.000139475
0.00128023
0.000121733
0.00110669
0.000103202
0.000940257
8.44235e-05
0.000781762
6.6e-05
0.000632056
4.85768e-05
0.000491992
3.28273e-05
3.51737e-05
0.000346659
2.07169e-05
0.000232406
9.62897e-06
0.000130404
2.53484e-06
2.66187e-06
3.85457e-05
3.85457e-05
2.66187e-06
2.53484e-06
0.000130404
9.62897e-06
0.000232406
2.07169e-05
0.000346659
3.51737e-05
3.28273e-05
0.000491992
4.85768e-05
0.000632056
6.6e-05
0.000781762
8.44235e-05
0.000940257
0.000103202
0.00110669
0.000121733
0.00128023
0.000139475
0.00146012
0.00160806
0.000193606
0.00179698
0.000210308
0.00199082
0.000225078
0.00218954
0.000237711
0.00239348
0.00255159
0.000299619
0.00276595
0.000308979
0.00298827
0.00315699
0.000375658
0.00339557
0.000373591
0.00364138
0.00382754
0.000425617
0.00408182
0.00872501
0.00878655
0.00883049
0.00886682
0.00889884
0.00892546
0.0089456
0.00895907
0.00896633
0.00896822
0.00896568
0.00895962
0.00895086
0.00894007
0.00892779
0.00891445
0.0089004
0.00888592
0.00887121
0.00885647
0.00884185
0.00882746
0.00881342
0.00879981
0.00878673
0.00877424
0.0087624
0.00875127
0.00874089
0.0087313
0.00872253
0.00871463
-0.000249827
0.00873855
0.00873256
0.00872748
0.00872332
0.00872009
0.0087178
0.00871643
0.00871596
0.00881548
0.00880342
0.00879195
0.00878115
0.00877105
0.0087617
0.00875315
0.00874542
0.00873855
0.00873256
0.00872748
0.00872332
0.00872009
0.0087178
0.00871643
0.00871596
0.00872501
0.00878655
0.00883049
0.00886682
0.00889884
0.00892546
0.0089456
0.00895907
0.00896633
0.00896822
0.00896568
0.00895962
0.00895086
0.00894007
0.00892779
0.00891445
0.0089004
0.00888592
0.00887121
0.00885647
0.00884185
0.00882746
0.00881342
-0.000489139
0.00879981
)
;
}
}
// ************************************************************************* //
|
|
692a40df280bad9e0638b5ac112bbc5d65c28d6b
|
77bc4d919b11e8c3dbe5c8a6f689527f7535e79c
|
/LEBOMBS.cpp
|
7d158ac83454478d29f7bd912e34acc1d634a786
|
[] |
no_license
|
DionysiosB/CodeChef
|
3610626548089f667280f0e1713517d9ddd3927a
|
8b4ddf58173df0e1577215c09adcc2c03d67ffca
|
refs/heads/master
| 2023-09-04T05:03:40.767798
| 2023-09-02T17:17:14
| 2023-09-02T17:17:14
| 10,135,601
| 10
| 7
| null | 2020-10-01T04:54:41
| 2013-05-18T02:27:54
|
C++
|
UTF-8
|
C++
| false
| false
| 597
|
cpp
|
LEBOMBS.cpp
|
#include <iostream>
using namespace std;
int main(){
string input, shiftLeft, shiftRight;
int numCases; scanf("%d\n",&numCases);
while(numCases--){
int numBuildings; scanf("%d\n",&numBuildings);
getline(cin, input);
shiftLeft = input.substr(1,numBuildings-1)+'0';
shiftRight = '0'+input.substr(0,numBuildings-1);
size_t destroyed = 0;
for(size_t k = 0; k < numBuildings; k++){if(input[k] == '1' || shiftLeft[k] == '1' || shiftRight[k] == '1'){destroyed++;}}
printf("%zd\n",numBuildings - destroyed);
}
return 0;
}
|
5617b3fbca2bcfe03eac6291dc913ed1d6a97b9d
|
561ef87c682feea936a1622ddfb07e6aa7182807
|
/utils-tests/tests.cpp
|
92b8d00ae3905a5f0371f8abc036ca5fab6b650e
|
[] |
no_license
|
deltadev/dpj
|
80d5b584a0baa01aee007439f3c29e89d3a892f0
|
93c879c9a5696b305a1a0b39058093cfd3294d8f
|
HEAD
| 2016-09-05T23:10:26.209537
| 2014-09-29T21:27:01
| 2014-09-29T21:27:01
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,691
|
cpp
|
tests.cpp
|
//
// tests.cpp
// dpj-utils
//
// Created by Daniel James on 06/02/2012.
// Copyright (c) 2012 deltadev.co.uk. All rights reserved.
//
#include "tests.h"
#include <cmath>
#include <iostream>
#include <vector>
#include <array>
#include <sstream>
#include <string>
#include "prettyprint.hpp"
#include "histogram.hh"
#include "dpj_utils.h"
#include "dpj_utils.hh"
bool nucToolsTest()
{
bool pass = true;
//
// This is for testing the hash:
// A -> 0, C-> 1, ..., T-> 3,
// AA -> 4, AC -> 5, ..., TT-> 19,
// AAA -> 20, ...
//
unsigned hashTestResult = 0;
for (unsigned k = 1; k < 4; ++k)
{
//
// We test all DNA strings of length k.
//
std::string input(k, ' ');
for (unsigned l = 0; l < ::pow(4, k); ++l, ++hashTestResult)
{
unsignedToNucleotides(l, input);
std::string inputCopy1(input);
std::string inputCopy2(input);
std::string inputCopy3(input);
unsignedToNucleotides(::pow(4, k) - l - 1, inputCopy1);
std::cerr << "nucs: " << input << ' ' << " comp: " << inputCopy1 << '\n';
if (nucleotidesToUnsigned(input.begin(), input.end()) != l)
{
std::cerr << "string_to_unsigned test error: " << input << ' ' << l << '\n';
pass = false;
}
complementNucleotides(inputCopy2.begin(), inputCopy2.end());
if (inputCopy1 != inputCopy2)
{
std::cerr << "comp test error: " << input << ' ' << inputCopy1 << ' ' << inputCopy2 << '\n';
pass = false;
}
std::reverse(inputCopy2.begin(), inputCopy2.end());
reverseComplementNucleotides(inputCopy3.begin(), inputCopy3.end());
if (inputCopy2 != inputCopy3)
{
std::cerr << "rev comp test error: " << input << ' ' << inputCopy2 << ' ' << inputCopy3 << '\n';
pass = false;
}
unsigned hash = nucleotideHash(input.begin(), input.end());
if (hash != hashTestResult)
{
std::cerr << "hash test error: " << input << ' ' << hash << ' ' << hashTestResult << '\n';
pass = false;
}
unsigned revCompHash = nucleotideRevCompHash(input.begin(), input.end());
unsigned revCompHashCheck = nucleotideHash(inputCopy3.begin(), inputCopy3.end());
if (revCompHash != revCompHashCheck)
{
std::cerr << "rev comp hash test error: " << input << ' ' << revCompHashCheck << ' ' << revCompHash << '\n';
pass = false;
}
std::string inverseHash(inverseNucleotideHash(hashTestResult));
if (inverseHash != input)
{
std::cerr << "inverse hash test error: " << input << ' ' << hashTestResult << ' ' << inverseHash << '\n';
pass = false;
}
}
}
return pass;
}
using std::cout;
using std::cerr;
bool orderTest()
{
bool pass(true);
int intsArray[7] = {1, 3, 2, -1, 8, 8, 5};
cout << "data is:\n" << intsArray << '\n';
std::vector<int> ints(std::begin(intsArray), std::end(intsArray));
std::vector<int> ordered(ints.size());
dpj::order(ints.begin(), ints.end(), ordered.begin());
cout << "order is:\n" << ordered << '\n';
dpj::order(ordered.begin(), ordered.end(), ordered.begin());
cout << "rank is:\n" << ordered << '\n';
return pass;
}
bool pwmTest()
{
std::istringstream ss;
ss.str("1 2 3 4 5 6 7 8");
std::vector<float> pwm = readPWM(ss, false);
unsigned counter = 0;
float truthArray[8] = {1, 5, 2, 6, 3, 7, 4, 8};
std::vector<float> truth(truthArray, truthArray + 8);
for (float f : pwm)
{
if ( ! (counter++ % (pwm.size()/4)))
cout << '\n';
cout << f << ' ';
}
cout << '\n';
return (truth == pwm);
}
|
2bb65ced9dc3c7650c406a5ff4da7dea60fef6c0
|
0e4e98b41c84c4f612b54c9d22d4ef9db8b3addc
|
/Source/TestUEProject/Data/GroupDefinitionAsset.h
|
219dc1db8dfc9f4235b3a398be6cf7a84c55d045
|
[] |
no_license
|
nexon-97/UE-prototype-game
|
5d397994d6e8c38e998d2fbc84497b625025bc56
|
a087392bd74c8af531b595d36668673e95a99380
|
refs/heads/master
| 2021-06-18T01:13:09.365058
| 2021-01-30T21:52:33
| 2021-01-30T21:52:33
| 170,294,704
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 296
|
h
|
GroupDefinitionAsset.h
|
#pragma once
#include "NPC/NPCRelation.h"
#include "Engine/DataAsset.h"
#include "GroupDefinitionAsset.generated.h"
UCLASS(Blueprintable)
class UGroupDefinitionAsset
: public UDataAsset
{
GENERATED_BODY()
public:
UPROPERTY(EditDefaultsOnly)
TMap<FName, ENPCRelation> GroupRelations;
};
|
f601cc9a49ab7fbf289b37def563013a4ae7e60c
|
dcadb870545b50c2b8c7ce92e27fbb2684dd9e8d
|
/204_Tuberias/ej02.cpp
|
a4eaa5e97556d6b2945b27c307dcee982f4396b2
|
[] |
no_license
|
daviddavo/20asor
|
e1d34201a9f70a19f404111b5c61178593a0d8a7
|
a702c43c6d13758546f74e5966a4e60d64c8c7c9
|
refs/heads/master
| 2023-04-20T04:01:16.811468
| 2021-01-16T11:35:45
| 2021-01-16T11:35:45
| 366,312,714
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,366
|
cpp
|
ej02.cpp
|
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include "daverror.h"
/* Para la comunicación bi-direccional, es necesario crear dos tuberías, una
* para cada sentido: p_h y h_p. Escribir un programa que implemente el
* mecanismo de sincronización de parada y espera:
* - El padre leerá de la entrada estándar (terminal) y enviará el mensaje al
* proceso hijo, escribiéndolo en la tubería p_h. Entonces permanecerá
* bloqueado esperando la confirmación por parte del hijo en la otra
* tubería, h_p.
* - El hijo leerá de la tubería p_h, escribirá el mensaje por la salida
* estándar y esperará 1 segundo. Entonces, enviará el carácter ‘l’ al
* proceso padre, escribiéndolo en la tubería h_p, para indicar que está
* listo. Después de 10 mensajes enviará el carácter ‘q’ para indicar al
* padre que finalice.
*/
#define READER 0
#define WRITER 1
#define BUF_SIZE 1024
int main(int argc, char ** argv) {
size_t size;
char msg;
char buf[BUF_SIZE];
char * line;
int nmsgs = 0;
int p_h[2];
int h_p[2];
pid_t pid;
DAVO_CHECK(pipe(h_p));
DAVO_CHECK(pipe(p_h));
DAVO_CHECK(pid = fork());
if (pid) { // Padre escritor
// Cerramos fd innecesarios
DAVO_CHECK(close(p_h[READER]));
DAVO_CHECK(close(h_p[WRITER]));
// El padre lee de la salida estandar y se lo manda al hijo
// (Entiendo que significa que no podemos redir entrada a pipe)
do {
DAVO_CHECK(getline(&line, &size, stdin));
DAVO_CHECK(write(p_h[WRITER], line, size));
free(line);
line = NULL;
size = 0;
DAVO_CHECK(read(h_p[READER], &msg, 1));
fprintf(stderr, "Recibido: %c\n", msg);
} while (msg != 'q');
DAVO_CHECK(close(p_h[WRITER]));
DAVO_CHECK(close(h_p[READER]));
} else { // Hijo
// Cerramos fd innecesarios
DAVO_CHECK(close(p_h[WRITER]));
DAVO_CHECK(close(h_p[READER]));
do {
DAVO_CHECK(size = read(p_h[READER], &buf, BUF_SIZE));
DAVO_CHECK(fputs(buf, stdout));
DAVO_CHECK(write(h_p[WRITER], (nmsgs < 9)?"l":"q", 1));
nmsgs++;
} while (nmsgs < 10);
printf("Terminé\n");
}
return EXIT_SUCCESS;
}
|
32664cd44a87819810b8dbcc8d4c0c16e3c2b597
|
1b3ee9bf0741aca2745dd6720de1b5ec2c737055
|
/Linked_01.h
|
013a80250dfcee03eaa080c40205833566bfd72a
|
[] |
no_license
|
kimehwa/untitled2
|
ee80ab3671a57508ba470882eb49a59322c9d0be
|
bbecd2712e67358f586df0eaff7488ad8d3fa7d6
|
refs/heads/master
| 2020-06-26T06:51:24.423083
| 2019-07-30T03:03:11
| 2019-07-30T03:03:11
| 199,563,892
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 163
|
h
|
Linked_01.h
|
//
// Created by 管晓东 on 2019-07-27.
//
#ifndef UNTITLED2_LINKED_01_H
#define UNTITLED2_LINKED_01_H
class Linked_01 {
};
#endif //UNTITLED2_LINKED_01_H
|
471b83c8e1c562f6006aa4eb895314c83589e161
|
ddfaa2e877f47f55d3e6480f3937d84215957a0d
|
/minicar_code/minicar.ino
|
ef5868e2884f03fc398dbc5dddb378fc227e3203
|
[] |
no_license
|
elegoogroup/miniCar
|
24e7c251e209fff7f227c17bfca5e828044c12b7
|
c321d9541d7940068feb3404d904595f0628e49a
|
refs/heads/master
| 2020-05-29T21:15:01.985493
| 2019-05-31T01:28:29
| 2019-05-31T01:28:29
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 29,848
|
ino
|
minicar.ino
|
#include <avr/pgmspace.h>
#include <Arduino.h>
#include "Pins.h"
#include "Ticker.h"
#include "PinChangeInt.h"
#include "Rgb.h"
#include <stdio.h>
#include "Music.h"
#include <EEPROM.h>
typedef unsigned long millis_t;
Ticker line_tracking;
Ticker key_mode;
Ticker ir_recevie;
Ticker voltage_measure;
int addr_line_tracking_threshold = 0;
int key_value = 0;
bool is_left_line_tracking = false;
bool is_right_line_tracking = false;
bool is_ir_recevie = false;
#define MAX_CMD_SIZE 96
#define BUFSIZE 4
uint8_t commands_in_queue = 0;
uint8_t cmd_queue_index_r = 0;
uint8_t cmd_queue_index_w = 0;
char command_queue[BUFSIZE][MAX_CMD_SIZE];
static int serial_count;
#define parameter_num_max 6 //最大参数数量
String parameter[parameter_num_max]; //参数值
float get_time = 0;
static millis_t get_time_delay;
int line_tracking_threshold = 150;
double voltage;
class L293
{
public:
int left_1_pin;
int left_2_pin;
int right_1_pin;
int right_2_pin;
int enable_left_pin;
int enable_right_pin;
int car_speed = 0;
int turn_speed = 0;
uint16_t left_speed = 0;
uint16_t right_speed = 0;
enum RUN_STATUE
{
STOP,
BACK,
FORWARD,
LEFT,
RIGHT
} run_statue = STOP;
void init(int left1pin, int left2pin, int right1pin, int right2pin, int enableleftpin, int enablerightpin)
{
left_1_pin = left1pin;
left_2_pin = left2pin;
right_1_pin = right1pin;
right_2_pin = right2pin;
enable_left_pin = enableleftpin;
enable_right_pin = enablerightpin;
pinMode(left_1_pin, OUTPUT);
pinMode(left_2_pin, OUTPUT);
pinMode(right_1_pin, OUTPUT);
pinMode(right_2_pin, OUTPUT);
pinMode(enable_left_pin, OUTPUT);
pinMode(enable_right_pin, OUTPUT);
stop();
}
void leftFront(int leftspeed)
{
analogWrite(enable_left_pin, leftspeed);
digitalWrite(left_1_pin, HIGH);
digitalWrite(left_2_pin, LOW);
}
void leftBack(int leftspeed)
{
analogWrite(enable_left_pin, leftspeed);
digitalWrite(left_1_pin, LOW);
digitalWrite(left_2_pin, HIGH);
}
void leftStop()
{
analogWrite(enable_left_pin, 0);
digitalWrite(left_1_pin, LOW);
digitalWrite(left_2_pin, LOW);
}
void rightFront(int rightspeed)
{
analogWrite(enable_right_pin, rightspeed);
digitalWrite(right_1_pin, LOW);
digitalWrite(right_2_pin, HIGH);
}
void rightBack(int rightspeed)
{
analogWrite(enable_right_pin, rightspeed);
digitalWrite(right_1_pin, HIGH);
digitalWrite(right_2_pin, LOW);
}
void rightStop()
{
analogWrite(enable_right_pin, 0);
digitalWrite(right_1_pin, LOW);
digitalWrite(right_2_pin, LOW);
}
void forward(int speed)
{
run_statue = FORWARD;
left_speed = speed;
right_speed = speed;
leftFront(speed);
rightFront(speed);
}
void back(int speed)
{
run_statue = BACK;
left_speed = speed;
right_speed = speed;
leftBack(speed);
rightBack(speed);
}
void left(int speed)
{
run_statue = LEFT;
left_speed = speed;
right_speed = speed;
leftBack(speed);
rightFront(speed);
}
void right(int speed)
{
run_statue = RIGHT;
left_speed = speed;
right_speed = speed;
leftFront(speed);
rightBack(speed);
}
void stop()
{
run_statue = STOP;
left_speed = 0;
right_speed = 0;
car_speed = 0;
turn_speed = 0;
leftStop();
rightStop();
}
void left2(int speed)
{
run_statue = LEFT;
left_speed = speed;
right_speed = speed;
leftFront(speed - 100);
rightFront(speed);
}
void right2(int speed)
{
run_statue = RIGHT;
left_speed = speed;
right_speed = speed;
leftFront(speed);
rightFront(speed - 100);
}
private:
} l293;
enum FUNCTION_MODE
{
IDLE,
LINE_TRACKING,
OBSTACLE_AVOIDANCE,
FOLLOW,
BLUETOOTH,
EXPLORE,
} function_mode = IDLE;
//命令
enum SERIAL_COMMAND
{
CMD_NULL, //无
CMD_OA, //查询避障数据
CMD_LT, //查询循迹数据
CMD_TURN, //控制小车运动
CMD_MOVE, //控制电机运动
CMD_MOVES, //控制两个电机运动
CMD_RGB, //设置RGB颜色
CMD_RGBS, //设置两个RGB颜色
CMD_RGBB, //设置RGB亮度
CMD_BEEP, //设置蜂鸣器音调
CMD_BEEPS, //设置蜂鸣器音调及时间
CMD_KEY, //设置小车功能模式
} serial_command = CMD_NULL;
void voltageInit()
{
pinMode(VOL_MEASURE_PIN, INPUT);
voltage_measure.start(voltageMeasure, 1000);
}
void voltageMeasure()
{
voltage = analogRead(VOL_MEASURE_PIN) * 4.96 / 1024;
if (voltage < 3.6)
{
rgb.flashRedColorFlag();
}
else
{
rgb.flashGreedYellowColorFlag();
}
}
void followMode()
{
l293.car_speed = 170;
if (is_ir_recevie)
{
l293.forward(l293.car_speed);
}
else
{
l293.stop();
}
}
void obstacleAvoidanceMode()
{
l293.car_speed = 170;
static millis_t delay_time = millis();
static bool flag = false;
if (flag)
{
if (millis() - delay_time > 150)
{
flag = false;
}
}
else
{
if (is_ir_recevie)
{
random() % 2 ? l293.right(l293.car_speed) : l293.left(l293.car_speed);
flag = true;
delay_time = millis();
}
else
{
l293.forward(l293.car_speed);
}
}
}
void exploreMode()
{
l293.car_speed = 170;
static millis_t delay_time = millis();
static bool flag = false;
static bool stopFlag = false;
if (is_left_line_tracking || is_right_line_tracking)
{
if (stopFlag)
{
stopFlag = false;
l293.back(255);
delay(50);
}
l293.stop();
}
else
{
stopFlag = true;
if (flag)
{
if (millis() - delay_time > 150)
{
flag = false;
}
}
else
{
if (is_ir_recevie)
{
random() % 2 ? l293.right(l293.car_speed) : l293.left(l293.car_speed);
flag = true;
delay_time = millis();
}
else
{
l293.forward(l293.car_speed);
}
}
}
}
void getKeyValue()
{
static bool key_flag = false;
if (!digitalRead(KEY_MODE))
{
key_flag = true;
}
if (key_flag && digitalRead(KEY_MODE))
{
key_flag = false;
key_value++;
if (key_value >= 5)
{
key_value = 0;
}
switch (key_value)
{
case 0:
function_mode = IDLE;
l293.stop();
rgb.lightOff();
break;
case 1:
function_mode = LINE_TRACKING;
rgb.brightGreenColor();
break;
case 2:
function_mode = OBSTACLE_AVOIDANCE;
rgb.brightYellowColor();
break;
case 3:
function_mode = FOLLOW;
rgb.brightBlueColor();
break;
case 4:
function_mode = EXPLORE;
rgb.brightWhiteColor();
break;
default:
break;
}
}
}
void keyInit()
{
pinMode(KEY_MODE, INPUT_PULLUP);
key_mode.start(getKeyValue, 40);
}
void irInit()
{
pinMode(IR_RECEIVE_PIN, INPUT);
ir_recevie.start(getIrData, 20);
}
void getIrData()
{
static int ir_recevie_data;
int ir_recevie_threshold = 1000;
ir_recevie_data = analogRead(IR_RECEIVE_PIN);
// Serial.print(ir_recevie_data);
// Serial.print("\n");
is_ir_recevie = ir_recevie_data < ir_recevie_threshold ? true : false;
}
void getLineTrackingData()
{
static int line_tracking_left_data;
static int line_tracking_right_data;
line_tracking_left_data = analogRead(LINE_TRACKING_LEFT_PIN);
line_tracking_right_data = analogRead(LINE_TRACKING_RIGHT_PIN);
// Serial.print(line_tracking_left_data);
// Serial.print("\t");
// Serial.print(line_tracking_right_data);
// Serial.print("\n");
is_left_line_tracking = line_tracking_left_data >= line_tracking_threshold ? true : false;
is_right_line_tracking = line_tracking_right_data >= line_tracking_threshold ? true : false;
}
void lineTrackingInit()
{
pinMode(LINE_TRACKING_LEFT_PIN, INPUT);
pinMode(LINE_TRACKING_RIGHT_PIN, INPUT);
int t = 0;
EEPROM.get(addr_line_tracking_threshold, t);
if (t != -1)
{
line_tracking_threshold = t;
}
// Serial.print("line_tracking_threshold=");
// Serial.println(line_tracking_threshold);
line_tracking.start(getLineTrackingData, 20);
}
void lineTrackingMode()
{
//将电压(电量)转化为电机转速(占空比),实现小车平稳运行。
l293.car_speed = map(voltage * 10, 3.6 * 10, 4.2 * 10, 200, 150);
if (is_left_line_tracking && is_right_line_tracking)
{
l293.stop();
}
else if (is_left_line_tracking)
{
l293.left(l293.car_speed);
// delay(20);
}
else if (is_right_line_tracking)
{
l293.right(l293.car_speed);
// delay(20);
}
else
{
l293.forward(l293.car_speed);
}
}
inline bool enqueuecommand(const char *cmd)
{
if (commands_in_queue >= BUFSIZE)
return false;
strcpy(command_queue[cmd_queue_index_w], cmd);
if (++cmd_queue_index_w >= BUFSIZE)
{
cmd_queue_index_w = 0;
}
commands_in_queue++;
return true;
}
inline void get_command()
{
// static millis_t printTime;
// printTime = millis();
static char serial_line_buffer[MAX_CMD_SIZE];
static bool command_start = false;
int c;
while (commands_in_queue < BUFSIZE && (c = Serial.read()) >= 0)
{
char serial_char = c;
if (serial_char == '{')
{
if (command_start)
{
serial_line_buffer[serial_count] = 0;
serial_count = 0;
}
else
{
command_start = true;
}
}
else if (command_start)
{
if (serial_char == '}')
{
if (!serial_count)
{
continue;
}
serial_line_buffer[serial_count] = 0;
serial_count = 0;
if (command_start)
{
command_start = false;
enqueuecommand(serial_line_buffer);
// Serial.print(millis() - printTime);
}
}
else if (serial_count >= MAX_CMD_SIZE - 1)
{
}
else if (serial_char == '\\')
{
if ((c = Serial.read()) >= 0)
serial_line_buffer[serial_count++] = (char)c;
}
else
{
serial_line_buffer[serial_count++] = serial_char;
}
}
}
}
void process_parsed_command()
{
int index_start[parameter_num_max]; //参数开始位置
int index_end[parameter_num_max]; //参数结束位置
int parameter_num = 0; //参数数量
int car_speed;
String current_command(command_queue[cmd_queue_index_r]); //将命令转化为String类
int i = 0;
// Serial.println(current_command);
// return;
//处理第一个参数
index_start[i] = current_command.indexOf('[');
if (index_start[i] <= 0)
{
return;
}
index_end[i] = current_command.indexOf(']');
if (index_end[i] <= 0 || index_start[i] >= index_end[i])
{
return;
}
parameter_num++;
String command_head = current_command.substring(0, index_start[i]); //读取命令头部
parameter[i] = current_command.substring(index_start[i] + 1, index_end[i]);
//处理剩余的参数
for (++i; i < parameter_num_max; i++)
{
index_start[i] = current_command.indexOf('[', index_end[i - 1] + 1);
if (index_start[i] <= 0)
{
break;
}
index_end[i] = current_command.indexOf(']', index_end[i - 1] + 1);
if (index_end[i] <= 0 || index_start[i] >= index_end[i])
{
index_start[i] = 0;
index_end[i] = 0;
break;
}
parameter_num++;
parameter[i] = current_command.substring(index_start[i] + 1, index_end[i]);
}
if (command_head == "OA" && parameter_num == 1)
{
if (parameter[0] == "?")
{
is_ir_recevie ? Serial.print("{true}") : Serial.print("{false}");
}
else
{
return;
}
}
else if (command_head == "V" && parameter_num == 1)
{
if (parameter[0] == "?")
{
Serial.print(voltage);
}
else
{
return;
}
}
else if (command_head == "LT" && parameter_num == 2)
{
if (parameter[1] == "?")
{
if (parameter[0] == "0")
{
is_left_line_tracking ? Serial.print("{true}") : Serial.print("{false}");
}
else if (parameter[0] == "1")
{
is_right_line_tracking ? Serial.print("{true}") : Serial.print("{false}");
}
else
{
return;
}
}
else
{
return;
}
}
else if (command_head == "TURN" && parameter_num == 2)
{
if (parameter[1] == "0")
{
car_speed = 0;
}
if (parameter[1] == "300")
{
car_speed = 300;
}
else
{
if (parameter[1].toInt() != 0)
{
car_speed = parameter[1].toInt();
}
else
{
return;
}
}
if (car_speed != 300)
{
l293.car_speed = car_speed;
}
else
{
if (parameter[0] != "0" && l293.car_speed == 0)
{
l293.car_speed = 255;
}
}
if (parameter[0] == "0")
{
l293.stop();
}
else if (parameter[0] == "1")
{
l293.forward(l293.car_speed);
}
else if (parameter[0] == "2")
{
l293.back(l293.car_speed);
}
else if (parameter[0] == "3")
{
l293.left(l293.car_speed);
}
else if (parameter[0] == "4")
{
l293.right(l293.car_speed);
}
else
{
return;
}
Serial.print("{ok}");
}
else if (command_head == "TURNS" && parameter_num == 3)
{
if (parameter[1] == "0")
{
car_speed = 0;
}
if (parameter[1] == "300")
{
car_speed = 300;
}
else
{
if (parameter[1].toInt() != 0)
{
car_speed = parameter[1].toInt();
}
else
{
return;
}
}
if (car_speed != 300)
{
l293.car_speed = car_speed;
}
else
{
if (parameter[0] != "0" && l293.car_speed == 0)
{
l293.car_speed = 255;
}
}
if (parameter[0] == "0")
{
l293.stop();
}
else if (parameter[0] == "1")
{
l293.forward(l293.car_speed);
}
else if (parameter[0] == "2")
{
l293.back(l293.car_speed);
}
else if (parameter[0] == "3")
{
l293.left2(l293.car_speed);
}
else if (parameter[0] == "4")
{
l293.right2(l293.car_speed);
}
else
{
return;
}
if (parameter[2] == "0")
{
rgb.lightOff();
}
else if (parameter[2] == "1")
{
rgb.led_rgb_new[0] = 0xA020F0; //紫色
rgb.led_rgb_old[0] = 0xA020F0;
rgb.led_rgb_new[1] = 0xA020F0;
rgb.led_rgb_old[1] = 0xA020F0;
}
else if (parameter[2] == "2")
{
rgb.led_rgb_new[0] = 0xA020F0; //紫色
rgb.led_rgb_old[0] = 0xA020F0;
rgb.led_rgb_new[1] = 0xA020F0;
rgb.led_rgb_old[1] = 0xA020F0;
}
// char *ptr;
// rgb.led_rgb_new[0] = strtol(¶meter[2][0], &ptr, 16);
// rgb.led_rgb_new[1] = strtol(¶meter[2][0], &ptr, 16);
// rgb.led_rgb_old[0] = strtol(¶meter[2][0], &ptr, 16);
// rgb.led_rgb_old[1] = strtol(¶meter[2][0], &ptr, 16);
// rgb.brightBlueColor();
// Serial.println(strtol(¶meter[2][0], &ptr, 16), HEX);
// Serial.println(commands_in_queue);
}
else if (command_head == "MOVE" && parameter_num == 3)
{
if (parameter[2] == "0")
{
car_speed = 0;
}
if (parameter[2] == "300")
{
car_speed = 300;
}
else
{
if (parameter[2].toInt() != 0)
{
car_speed = parameter[2].toInt();
}
else
{
return;
}
}
if (parameter[0] == "0")
{
if (car_speed != 300)
{
l293.car_speed = car_speed;
}
else
{
if ((parameter[1] == "1" || parameter[2] == "2") && l293.car_speed == 0)
{
l293.car_speed = 255;
}
}
if (parameter[1] == "0")
{
l293.stop();
}
else if (parameter[1] == "1")
{
l293.forward(l293.car_speed);
}
else if (parameter[1] == "2")
{
l293.back(l293.car_speed);
}
else if (parameter[1] == "3")
{
switch (l293.run_statue)
{
case L293::RUN_STATUE::STOP:
l293.stop();
break;
case L293::RUN_STATUE::BACK:
l293.back(l293.car_speed);
break;
case L293::RUN_STATUE::FORWARD:
l293.forward(l293.car_speed);
break;
case L293::RUN_STATUE::LEFT:
l293.left(l293.car_speed);
break;
case L293::RUN_STATUE::RIGHT:
l293.right(l293.car_speed);
break;
default:
break;
}
}
else
{
return;
}
}
else if (parameter[0] == "1")
{
if (car_speed != 300)
{
l293.left_speed = car_speed;
}
else
{
if ((parameter[1] == "1" || parameter[2] == "2") && l293.left_speed == 0)
{
l293.left_speed = 255;
}
}
if (parameter[1] == "0")
{
l293.leftStop();
l293.run_statue = L293::RUN_STATUE::STOP;
}
else if (parameter[1] == "1")
{
l293.run_statue = L293::RUN_STATUE::FORWARD;
l293.leftFront(l293.left_speed);
}
else if (parameter[1] == "2")
{
l293.run_statue = L293::RUN_STATUE::BACK;
l293.leftBack(l293.left_speed);
}
else if (parameter[1] == "3")
{
switch (l293.run_statue)
{
case L293::RUN_STATUE::STOP:
l293.leftStop();
l293.run_statue = L293::RUN_STATUE::STOP;
break;
case L293::RUN_STATUE::BACK:
l293.leftBack(l293.left_speed);
l293.run_statue = L293::RUN_STATUE::BACK;
break;
case L293::RUN_STATUE::FORWARD:
l293.leftFront(l293.left_speed);
l293.run_statue = L293::RUN_STATUE::FORWARD;
break;
case L293::RUN_STATUE::LEFT:
l293.leftBack(l293.left_speed);
l293.run_statue = L293::RUN_STATUE::BACK;
break;
case L293::RUN_STATUE::RIGHT:
l293.leftFront(l293.left_speed);
l293.run_statue = L293::RUN_STATUE::FORWARD;
break;
default:
break;
}
}
else
{
return;
}
}
else if (parameter[0] == "2")
{
if (car_speed != 300)
{
l293.right_speed = car_speed;
}
else
{
if ((parameter[1] == "1" || parameter[1] == "2") && l293.right_speed == 0)
{
l293.right_speed = 255;
}
}
if (parameter[1] == "0")
{
l293.rightStop();
l293.run_statue = L293::RUN_STATUE::STOP;
}
else if (parameter[1] == "1")
{
l293.rightFront(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::FORWARD;
}
else if (parameter[1] == "2")
{
l293.rightBack(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::BACK;
}
else if (parameter[1] == "3")
{
switch (l293.run_statue)
{
case L293::RUN_STATUE::STOP:
l293.run_statue = L293::RUN_STATUE::STOP;
l293.rightStop();
break;
case L293::RUN_STATUE::BACK:
l293.rightBack(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::BACK;
break;
case L293::RUN_STATUE::FORWARD:
l293.rightFront(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::FORWARD;
break;
case L293::RUN_STATUE::LEFT:
l293.rightFront(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::FORWARD;
break;
case L293::RUN_STATUE::RIGHT:
l293.rightBack(l293.right_speed);
l293.run_statue = L293::RUN_STATUE::RIGHT;
break;
default:
break;
}
}
else
{
return;
}
}
else
{
return;
}
Serial.print("{ok}");
}
else if (command_head == "MOVES" && parameter_num == 4)
{
if (parameter[1] == "0")
{
car_speed = 0;
}
if (parameter[1] == "300")
{
car_speed = 300;
}
else
{
if (parameter[1].toInt() != 0)
{
car_speed = parameter[1].toInt();
}
else
{
return;
}
}
if (car_speed != 300)
{
l293.left_speed = car_speed;
}
else
{
if ((parameter[0] == "1" || parameter[0] == "2") && l293.left_speed == 0)
{
l293.left_speed = 255;
}
}
if (parameter[0] == "0")
{
l293.left_speed = 0;
l293.leftStop();
}
else if (parameter[0] == "1")
{
l293.leftFront(l293.left_speed);
}
else if (parameter[0] == "2")
{
l293.leftBack(l293.left_speed);
}
else if (parameter[0] == "3")
{
}
else
{
return;
}
if (parameter[3] == "0")
{
car_speed = 0;
}
if (parameter[3] == "300")
{
car_speed = 300;
}
else
{
if (parameter[3].toInt() != 0)
{
car_speed = parameter[3].toInt();
}
else
{
return;
}
}
if (car_speed != 300)
{
l293.right_speed = car_speed;
}
else
{
if ((parameter[2] == "1" || parameter[2] == "2") && l293.right_speed == 0)
{
l293.right_speed = 255;
}
}
if (parameter[2] == "0")
{
l293.right_speed = 0;
l293.rightStop();
}
else if (parameter[2] == "1")
{
l293.rightFront(l293.right_speed);
}
else if (parameter[2] == "2")
{
l293.rightBack(l293.right_speed);
}
else if (parameter[2] == "3")
{
}
else
{
return;
}
Serial.print("{ok}");
}
else if (command_head == "RGB" && parameter_num == 6)
{
if (parameter[3] == "0")
{
rgb.led_rgb_new[0] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
rgb.led_rgb_new[1] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
if (parameter[5] == "0")
{
rgb.led_rgb_old[0] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
rgb.led_rgb_old[1] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
}
else
{
rgb.led_rgb_old[0] = rgb.Color(0, 0, 0);
rgb.led_rgb_old[1] = rgb.Color(0, 0, 0);
}
}
else if (parameter[3] == "1")
{
rgb.led_rgb_new[1] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
if (parameter[5] == "0")
{
rgb.led_rgb_old[1] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
}
else
{
rgb.led_rgb_old[1] = rgb.Color(0, 0, 0);
}
}
else if (parameter[3] == "2")
{
rgb.led_rgb_new[0] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
if (parameter[5] == "0")
{
rgb.led_rgb_old[0] = rgb.Color(parameter[0].toInt(), parameter[1].toInt(), parameter[2].toInt());
}
else
{
rgb.led_rgb_old[0] = rgb.Color(0, 0, 0);
}
}
else
{
return;
}
if (parameter[4] == "0")
{
get_time = 0;
}
else if (parameter[4].toInt() != 0)
{
get_time = parameter[4].toInt();
}
else if (parameter[4].toFloat() != 0)
{
get_time = parameter[4].toFloat();
}
else
{
return;
}
if (get_time == 0)
{
Serial.print("{ok}");
}
else
{
serial_command = CMD_RGB;
get_time_delay = millis();
}
}
else if (command_head == "RGBS" && parameter_num == 4)
{
char *ptr;
rgb.led_rgb_new[1] = strtol(¶meter[0][0], &ptr, 16);
if (parameter[1] == "0")
{
rgb.led_rgb_old[1] = strtol(¶meter[0][0], &ptr, 16);
}
else
{
rgb.led_rgb_old[1] = rgb.Color(0, 0, 0);
}
rgb.led_rgb_new[0] = strtol(¶meter[2][0], &ptr, 16);
if (parameter[3] == "0")
{
rgb.led_rgb_old[0] = strtol(¶meter[2][0], &ptr, 16);
}
else
{
rgb.led_rgb_old[0] = rgb.Color(0, 0, 0);
}
Serial.print("{ok}");
}
else if (command_head == "RGBB" && parameter_num == 1)
{
if (parameter[0] == "0")
{
rgb.brightness = 0;
}
else if (parameter[0].toInt() != 0)
{
if (parameter[0].toInt() > 255)
{
rgb.brightness = 255;
}
else
{
rgb.brightness = parameter[0].toInt();
}
}
rgb.setBrightness(rgb.brightness);
Serial.print("{ok}");
}
else if (command_head == "BEEP" && parameter_num == 1)
{
if (parameter[0] == "0")
{
noTone(BEEP_PIN);
Serial.print("{ok}");
}
else
{
if (parameter[0].toInt() != 0)
{
get_time = parameter[0].toInt();
}
else if (parameter[0].toFloat() != 0)
{
get_time = parameter[0].toFloat();
}
else
{
return;
}
serial_command = CMD_BEEP;
get_time_delay = millis();
}
}
else if (command_head == "BEEPS" && parameter_num == 2)
{
if (parameter[1] == "0")
{
get_time = 0;
Serial.print("{ok}");
}
else
{
if (parameter[1].toInt() != 0)
{
get_time = parameter[1].toInt();
}
else if (parameter[1].toFloat() != 0)
{
get_time = parameter[1].toFloat();
}
else
{
return;
}
serial_command = CMD_BEEPS;
get_time_delay = millis();
}
tone(BEEP_PIN, parameter[0].toInt());
}
else if (command_head == "KEY" && parameter_num == 1)
{
if (parameter[0] == "0")
{
l293.stop();
function_mode = IDLE;
rgb.lightOffAll();
key_value = 0;
}
else if (parameter[0] == "1")
{
function_mode = LINE_TRACKING;
key_value = 1;
rgb.brightGreenColor();
}
else if (parameter[0] == "2")
{
function_mode = OBSTACLE_AVOIDANCE;
key_value = 2;
rgb.brightYellowColor();
}
else if (parameter[0] == "3")
{
function_mode = FOLLOW;
key_value = 3;
rgb.brightBlueColor();
}
else if (parameter[0] == "4")
{
function_mode = EXPLORE;
key_value = 4;
rgb.brightWhiteColor();
}
else
{
return;
}
Serial.print("{ok}");
}
else if (command_head == "CLEAR" && parameter_num == 1)
{
if (parameter[0] == "0")
{
rgb.lightOff();
function_mode = IDLE;
key_value = 0;
l293.stop();
noTone(BEEP_PIN);
}
else if (parameter[0] == "1")
{
rgb.lightOff();
}
else if (parameter[0] == "2")
{
function_mode = IDLE;
key_value = 0;
l293.stop();
}
else if (parameter[0] == "3")
{
noTone(BEEP_PIN);
}
else
{
return;
}
Serial.print("{ok}");
}
else if (command_head == "Tvalue" && parameter_num == 1)
{
char *ptr;
line_tracking_threshold = strtol(¶meter[0][0], &ptr, 10);
EEPROM.put(addr_line_tracking_threshold, line_tracking_threshold);
// Serial.print("line_tracking_threshold=");
// Serial.println(line_tracking_threshold);
Serial.print("{ok}");
}
else
{
return;
}
if (command_head != "KEY" && command_head != "BEEPS")
{
function_mode = BLUETOOTH;
}
}
void functionMode()
{
switch (function_mode)
{
case IDLE:
break;
case LINE_TRACKING:
lineTrackingMode();
break;
case OBSTACLE_AVOIDANCE:
obstacleAvoidanceMode();
break;
case FOLLOW:
followMode();
break;
case BLUETOOTH:
break;
case EXPLORE:
exploreMode();
break;
default:
break;
}
}
void cmdDelayTime()
{
switch (serial_command)
{
case CMD_NULL:
break;
case CMD_RGB:
if (get_time != 0)
{
if (millis() - get_time_delay > (millis_t)(get_time * 1000))
{
if (parameter[3] == "0")
{
rgb.lightOff();
}
else if (parameter[3] == "1")
{
rgb.led_rgb_new[1] = rgb.Color(0, 0, 0);
rgb.led_rgb_old[1] = rgb.Color(0, 0, 0);
}
else if (parameter[3] == "2")
{
rgb.led_rgb_new[0] = rgb.Color(0, 0, 0);
rgb.led_rgb_old[0] = rgb.Color(0, 0, 0);
}
else
{
rgb.lightOff();
}
Serial.print("{ok}");
serial_command = CMD_NULL;
get_time = 0;
}
}
break;
case CMD_BEEPS:
if (get_time != 0)
{
if (millis() - get_time_delay > (millis_t)(get_time * 1000))
{
noTone(BEEP_PIN);
Serial.print("{ok}");
serial_command = CMD_NULL;
get_time = 0;
}
}
break;
case CMD_BEEP:
if (get_time != 0)
{
if (get_time == 1)
{
play1();
}
serial_command = CMD_NULL;
}
break;
default:
break;
}
}
void setup()
{
Serial.begin(9600);
lineTrackingInit();
l293.init(L293_LEFT_1_PIN, L293_LEFT_2_PIN, L293_RIGHT_1_PIN, L293_RIGHT_2_PIN, L293_ENABLE_LEFT_PIN, L293_ENABLE_RIGHT_PIN);
keyInit();
pinMode(BEEP_PIN, OUTPUT);
voltageInit();
irInit();
rgb.initialize();
}
void loop()
{
if (commands_in_queue < BUFSIZE)
{
get_command();
}
if (commands_in_queue)
{
process_parsed_command();
if (commands_in_queue)
{
--commands_in_queue;
if (++cmd_queue_index_r >= BUFSIZE)
cmd_queue_index_r = 0;
}
}
line_tracking.update();
key_mode.update();
ir_recevie.update();
voltage_measure.update();
rgb.blink(100);
functionMode();
cmdDelayTime();
// static millis_t print_time = 0;
// if (millis() - print_time >= 2000)
// {
// print_time = millis();
// Serial.println(l293.car_speed);
// Serial.println(voltage);
// }
}
|
4588a302f0012039ad4bacc23430a60a3dd58158
|
f0c9a2768ad21e570a380e5ec0521523f4434250
|
/device/include/config_handler.hpp
|
44f261784e84394f3c6468417b637beb34a01072
|
[] |
no_license
|
KitFung/BATsNet
|
45396290ba910fa3217740adc6501631ec51cd69
|
fc177e67cad337406bd50266984145fc6603f297
|
refs/heads/master
| 2023-02-26T14:35:29.156328
| 2021-02-09T07:39:46
| 2021-02-09T07:39:46
| 279,792,003
| 1
| 2
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 293
|
hpp
|
config_handler.hpp
|
#pragma once
namespace common {
template <typename StateT, typename OutT> class ConfigHandler {
public:
ConfigHandler() {}
virtual ~ConfigHandler() {}
virtual OutT UpdateConfig(const StateT &old_state,
const StateT &new_state) = 0;
};
} // namespace common
|
71fbf83b9db9b62b23c01dea95e381dc71c6738c
|
f2db7d3aa295e27896e7e7271b9dd2f86aab4b33
|
/Partie2/PCO_lab06/fileserver/requesthandler.h
|
d47b393bc1b80cf74e0c1b2fbbc9d966992bf226
|
[] |
no_license
|
jerozerbib/PCO_Labo5
|
bd7595edea332374196b38fd3a367442184f61e0
|
822f79e078207b278679d3ce057edcf10085eedc
|
refs/heads/master
| 2020-05-19T00:48:07.572217
| 2019-06-02T16:20:26
| 2019-06-02T16:20:26
| 184,743,682
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 568
|
h
|
requesthandler.h
|
#ifndef REQUESTHANDLER_H
#define REQUESTHANDLER_H
#include "request.h"
#include "response.h"
#include "runnable.h"
#include "abstractbuffer.h"
class RequestHandler : public Runnable
{
private:
Request request;
AbstractBuffer<Request> *responses;
bool hasDebugLog;
QString id_;
public:
RequestHandler(Request request, AbstractBuffer<Request> *responses, bool hasDebugLog): request(request), responses(responses), hasDebugLog(hasDebugLog) {}
void run() override;
QString id() override;
Response handle();
};
#endif // REQUESTHANDLER_H
|
1ea22dcca4beafd625903223433f9117d9b4fe21
|
155b023b1f9b286064a20ede6320e3bd8fb77011
|
/0127. Word Ladder/TimeExceed.cpp
|
73000cf03288ec828e7da0857c33090b2219d145
|
[] |
no_license
|
zztttt/LeetCode
|
e34b01dafb11381beeaf1ffe607c310dd5134506
|
7f803bba7ae6e569833adca6294709fa1c494a93
|
refs/heads/master
| 2022-08-10T08:00:46.532738
| 2022-08-05T15:25:00
| 2022-08-05T15:25:00
| 165,406,546
| 3
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,322
|
cpp
|
TimeExceed.cpp
|
class Solution {
public:
int ladderLength(string src, string dst, vector<string>& dict) {
int dictLen = dict.size(), len = src.size();
if (dictLen == 0) return 0;
return bfs(src, dst, dict);
}
int bfs(string src, string dst, vector<string> dict) {
set<string> visited;
visited.insert(src);
int level = 1;
vector<string> curLevel(1, src);
while (!curLevel.empty()) {
vector<string> nextLevel;
while (!curLevel.empty()) {
// pop first word
string latestWord = curLevel.front();
curLevel.erase(curLevel.begin());
int len = latestWord.size();
for (int i = 0; i < len; ++i) {
// replace s[i] with char from 'a' to 'z'
for (char j = 'a'; j < 'z'; ++j) {
// assign s[i] = j
string tmp = latestWord;
tmp[i] = j;
// skip the same word and visited word
if (j == latestWord[i] || visited.find(tmp) != visited.end())
continue;
if (find(dict.begin(), dict.end(), tmp) != dict.end()) {
// find dst word, return
if (tmp == dst) {
return level + 1;
}
else {
// else insert it into nextLevel
nextLevel.push_back(tmp);
visited.insert(tmp);
}
}
}
}
}
// curLevel.swap(nextLevel);
curLevel = nextLevel;
level++;
}
// not found
return 0;
}
};
|
3f0568b48ce9b5ef8cbcc3754375b979d9835dfa
|
a29ec259efa2c2f13e24be86a4c6ba174780857d
|
/projects/tpfinal/RPGAction.cpp
|
784e8b6f0a48b79d4750de7a836c61327f4b9f49
|
[] |
no_license
|
nlelouche/programacion2
|
639ffb55d06af4f696031ec777bec898b6224774
|
5ec9b29014c13786230e834deb44679b110351b4
|
refs/heads/master
| 2016-09-06T15:40:38.888016
| 2007-11-09T01:03:51
| 2007-11-09T01:03:51
| 32,653,635
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 344
|
cpp
|
RPGAction.cpp
|
#include "RPGCharacter.h"
#include "RPGAction.h"
//----------------------------------------------------------
// constructor
RPGAction::RPGAction()
{
}
//----------------------------------------------------------
// ejecuta la accion
void RPGAction::Execute(RPGCharacter *pCharacter)
{
//pCharacter->SetAnimation(pAnimation);
}
|
0f3dec0f9d0ac7d3f8f32862913a7d7acb3dbaa2
|
f7e4dc8b8f38f8306c41324eab14f354f35230d5
|
/codechef/easy/MAXDIFF.cpp
|
b27b43079147c521f16a9e60873a656b3490b092
|
[] |
no_license
|
SIRIUScoder1/competitive-programming
|
de076c4dd4979a735c6066a84f9b7b8ab356325b
|
429f5ec5af45e75de8e0051644e3c6d83a9221e4
|
refs/heads/master
| 2021-01-20T18:04:06.999121
| 2016-08-25T12:37:10
| 2016-08-25T12:37:10
| 63,837,314
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 611
|
cpp
|
MAXDIFF.cpp
|
#include <bits/stdc++.h>
using namespace std;
int main()
{
int test,size,k,a[100000],sum1,sum2,l;
cin >> test;
while(test--)
{
cin >> size >> k;
for(int i = 0;i < size;i++)
{
cin >> a[i];
}
sort(a,a+size);
sum1 = 0;sum2 = 0;
if(k <= size/2)
{
l = k;
}
else
{
l = size - k;
}
for(int i = 0;i < l;i++)
{
sum1 = sum1 + a[i];
}
for(int i = l;i < size;i++)
{
sum2 = sum2 + a[i];
}
cout << abs(sum1-sum2) << endl;
}
return 0;
}
|
440f2fd63847af0b0ef56d62c630adc08147a136
|
4a88f399a239892968c826025654c262cc0a2122
|
/20140717/set/WordCount.h
|
9bc12949e75d74d6f079917cb8a29ad1e18b998f
|
[] |
no_license
|
Beatrice7/what-i-learned-in-wd
|
ea99fe4720468d5702c209b9ee96cf143165f944
|
ace120f3dc4bbd87232eaf6ca08a15ed0bcbc2b2
|
refs/heads/master
| 2021-01-23T14:05:28.902398
| 2014-10-14T01:09:03
| 2014-10-14T01:09:03
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 460
|
h
|
WordCount.h
|
#ifndef WORD_COUNT_H_
#define WORD_COUNT_H_
#include <string>
#include <map>
#include <set>
namespace SuQing
{
class WordCount
{
public:
WordCount(const std::string &filename);
void add(const std::string &word);
void print() const;
private:
void readExclude();
std::map<std::string, int> words_;
std::set<std::string> exclude_;
std::string excludeFileName_;
};
}
#endif /*WORD_COUNT_H_*/
|
bfedd333c279746076f43b426260d6072e6ff1fc
|
cd665e30648d1da0f9560269fed857d801f7be98
|
/even.cpp
|
f64f6fe25a8ce159a6b3ea451b2715196dcc3a5b
|
[] |
no_license
|
Neetika23/Guvi_beginner123
|
9c71d1cafe21518ebb10d47502cf5cb426b83ed5
|
8e99a78ab26a74741492f7defae8fdd8efc80641
|
refs/heads/master
| 2020-04-01T11:02:35.750406
| 2019-03-17T14:25:48
| 2019-03-17T14:25:48
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 266
|
cpp
|
even.cpp
|
#include<iostream>
using namespace std;
int main()
{
int m,n;
cin>>m>>n;
if(m>0&&n>0)
{
for(int i=m+1;i<n;i++)
{
if(i%2==0)
cout<<i<<" ";
}
}
else
cout<<"Invalid range";
return 0;
}
|
1872794d1f1598d674fc811902b00a9cb35d3edf
|
e8d56b2d9a635770e1fe5236fa01e9939e147f0a
|
/VS_Test/inherit_example/inherit_example/inherit_example/inherit.cpp
|
6842570a20bbebbbd74a14badfe2e84b84d59e51
|
[] |
no_license
|
wangben85/CplusplusBasic
|
b5ee61b8ead9718bd1837df11758f99f39860db2
|
3c3a12800f22893da6025f5b22dc393ccfafd229
|
refs/heads/master
| 2021-07-09T15:00:15.733868
| 2021-04-23T09:17:12
| 2021-04-23T09:17:12
| 242,897,833
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,310
|
cpp
|
inherit.cpp
|
#include<iostream>
using namespace std;
class Base1
{
public:
Base1(int x = 1): m_x(x)
{
cout << "Create Base1" << endl;
}
~Base1()
{
cout << "Free Bsase1" << endl;
}
private:
int m_x;
};
class Base2
{
public:
Base2(int y = 2): m_y(y)
{
cout << "Create Base2" << endl;
}
~Base2()
{
cout << "Free Bsase2" << endl;
}
private:
int m_y;
};
class Base3
{
public:
Base3(int z = 3): m_z(z)
{
cout << "Create Base3" << endl;
}
~Base3()
{
cout << "Free Bsase3" << endl;
}
private :
int m_z;
};
class D : public Base1, public Base2, public Base3 //constructor sequence is Base1, Base2 and Base3
//class D : public Base2, public Base1, public Base3 //constructor sequence is Base2, Base1 and Base3
{
public:
//D(int data):Base1(data), Base2(data), Base3(data), b1(data), b2(data), b3(data)
D(int data)
{
cout << "Create D" << endl;
}
~D()
{
cout << "Free D" << endl;
}
private:
Base1 b1;
Base2 b2;
Base3 b3; //constructor sequence is Base1, Base2 and Base3
//Base2 b2;
//Base3 b3;
//Base1 b1; //constructor sequence is Base2, Base3 and Base1
};
void main()
{
D d(10);
//system("pause");
}
|
4aee49618f4641777407d14700584af1dc0fd4ac
|
76dfd0a93a672a0e08576744b57ed2b1f774102f
|
/symmeig.cpp
|
c2398f54ba4a6aeab03e6122077c1b12f89eb45d
|
[] |
no_license
|
jruneson/quantumdot
|
92b1c28a246091305a00c7b4bfca4a719f197379
|
1cbe2dddc27831304aafe49359fee7f679fcf780
|
refs/heads/master
| 2021-04-06T11:14:27.707739
| 2017-08-04T13:56:36
| 2017-08-04T13:56:36
| 83,317,918
| 0
| 0
| null | 2017-08-04T13:56:37
| 2017-02-27T14:16:22
|
C++
|
UTF-8
|
C++
| false
| false
| 2,730
|
cpp
|
symmeig.cpp
|
#include "symmeig.hpp"
void Symmeig::sort(int icr)
{
double sgn = 1;
if(icr==INCREASING)
sgn=-1;
int i;
for(int j=1;j<n;j++)
{
double x = d[j];
double eig[n];
for(int ii=0;ii<n;ii++)
eig[ii]=z[ii][j];
for(i=j-1;i>=0;i--)
{
if(sgn*d[i]>=sgn*x) break;
d[i+1]=d[i];
for(int k=0;k<n;k++)
z[k][i+1]=z[k][i];
}
d[i+1]=x;
for(int k=0;k<n;k++)
z[k][i+1]=eig[k];
}
}
void Symmeig::tred2()
{
int l,k,j,i;
double scale,hh,h,g,f;
for(i=n-1;i>0;i--){
l=i-1;
h=scale=0;
if(l>0){
for(k=0;k<i;k++)
scale+=abs(z[i][k]);
if(scale==0.0)
e[i]=z[i][l];
else {
for(k=0;k<i;k++){
z[i][k]/=scale;
h+= z[i][k]*z[i][k];
}
f=z[i][l];
g=(f>=0.0 ? -sqrt(h) : sqrt(h));
e[i]=scale*g;
h -= f*g;
z[i][l]=f-g;
f=0;
for(j=0;j<i;j++){
if(yesvecs)
z[j][i]=z[i][j]/h;
g=0;
for(k=0;k<j+1;k++)
g+= z[j][k]*z[i][k];
for(k=j+1;k<i;k++)
g+= z[k][j]*z[i][k];
e[j]=g/h;
f+= e[j]*z[i][j];
}
hh=f/(h+h);
for(j=0;j<i;j++){
f=z[i][j];
e[j]=g=e[j]-hh*f;
for(k=0;k<j+1;k++)
z[j][k]-=(f*e[k]+g*z[i][k]);
}
}
} else
e[i]=z[i][l];
d[i]=h;
}
if(yesvecs) d[0]=0;
e[0]=0;
for(i=0;i<n;i++){
if(yesvecs){
if(d[i]!=0.0){
for(j=0;j<i;j++){
g=0.0;
for(k=0;k<i;k++)
g+= z[i][k]*z[k][j];
for(k=0;k<i;k++)
z[k][j]-=g*z[k][i];
}
}
d[i]=z[i][i];
z[i][i]=1;
for(j=0;j<i;j++) z[j][i]=z[i][j]=0;
} else {
d[i]=z[i][i];
}
}
}
void Symmeig::tqli()
{
int m,l,iter,i,k;
double s,r,p,g,f,dd,c,b;
const double EPS = numeric_limits<double>::epsilon();
for(i=1;i<n;i++)
e[i-1]=e[i];
e[n-1]=0;
for(l=0;l<n;l++){
iter=0;
do{
for(m=l;m<n-1;m++){
dd=abs(d[m])+abs(d[m+1]);
if(abs(e[m])<=EPS*dd) break;
}
if(m!=l){
if(iter++==30) cout<<"Too many iterations in tqli"<<endl;
g=(d[l+1]-d[l])/(2*e[l]);
r=pythag(g,1.0);
g=d[m]-d[l]+e[l]/(g+SIGN(r,g));
s=c=1;
p=0;
for(i=m-1;i>=l;i--){
f=s*e[i];
b=c*e[i];
e[i+1]=(r=pythag(f,g));
if(r==0.0){
d[i+1]-=p;
e[m]=0;
break;
}
s=f/r;
c=g/r;
g=d[i+1]-p;
r=(d[i]-g)*s+2*c*b;
d[i+1]=g+(p=s*r);
g=c*r-b;
if (yesvecs){
for(k=0;k<n;k++){
f=z[k][i+1];
z[k][i+1]=s*z[k][i]+c*f;
z[k][i]=c*z[k][i]-s*f;
}
}
}
if(r==0.0&&i>=1) continue;
d[l] -=p;
e[l] = g;
e[m]=0;
}
}while(m!=l);
}
}
double Symmeig::pythag(const double a, const double b)
{
double absa = abs(a);
double absb = abs(b);
return (absa > absb ? absa*sqrt(1+pow(absb/absa,2)) :
( absb == 0.0 ? 0.0 : absb*sqrt(1+pow(absa/absb,2))));
}
|
7a9f468cfd300e1c9cf8df852035447b33246777
|
00571c79a77746f45cd0862b6ec905d03d594f2e
|
/nre/apps/vancouver/model/ps2keyboard.cc
|
35aaf62486c1973daf067b8abc228a717d4d8b19
|
[] |
no_license
|
alinabi/NRE
|
0a5534d9888d68585b810656f9bcbf748ad7cf5b
|
0750dbb9f81bf1a6ec59cc703b01409e3829dc1d
|
refs/heads/master
| 2021-01-21T00:55:58.548829
| 2013-01-18T07:09:07
| 2013-01-18T07:09:07
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,039
|
cc
|
ps2keyboard.cc
|
/** @file
* PS2keyboard emulation.
*
* Copyright (C) 2007-2009, Bernhard Kauer <bk@vmmon.org>
* Economic rights: Technische Universitaet Dresden (Germany)
*
* This file is part of Vancouver.
*
* Vancouver is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Vancouver is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License version 2 for more details.
*/
#include <services/Console.h>
#include <services/Keyboard.h>
#include "../bus/motherboard.h"
#include "keyboardutil.h"
using namespace nre;
/**
* A PS2 keyboard gets characters on the hostbus as input and outputs
* scancodes on the ps2 bus.
*
* State: stable
* Features: scancodeset 1,2,3, keyboard commands, breakcode
* Missing: typematic keys
* Documentation: PS2 hitrc chapter 11
*/
class PS2Keyboard : public StaticReceiver<PS2Keyboard> {
DBus<MessagePS2> &_bus_ps2;
unsigned _ps2port;
unsigned _hostkeyboard;
unsigned char _scset;
static const size_t BUFFERSIZE = 18;
unsigned char _buffer[BUFFERSIZE];
unsigned _pread;
unsigned _pwrite;
unsigned _response;
unsigned char _no_breakcode[32];
unsigned char _indicators;
unsigned char _last_command;
unsigned char _last_reply;
enum {
MODE_DISABLED = 1 << 0,
MODE_RESET = 1 << 1,
MODE_RESEND = 1 << 2,
MODE_GOT_BREAK = 1 << 3,
MODE_STOPPED = 1 << 4,
};
unsigned char _mode;
/**
* Enqueue a single scancode in the buffer.
* Please note that the values are translated if SCS1 is used.
*/
void enqueue(unsigned char value) {
if(_scset == 1) {
if(value == 0xf0) {
_mode |= MODE_GOT_BREAK;
return;
}
if(_mode & MODE_GOT_BREAK)
value |= 0x80;
_mode &= ~MODE_GOT_BREAK;
value = KeyboardUtil::translate_sc2_to_sc1(value);
}
switch((_pwrite - _pread) % BUFFERSIZE) {
case 0 ... BUFFERSIZE - 3:
_buffer[_pwrite] = value;
break;
case BUFFERSIZE - 2:
// full
_buffer[_pwrite] = 0x00;
break;
default:
case BUFFERSIZE - 1:
return;
}
_pwrite = (_pwrite + 1) % BUFFERSIZE;
}
/**
* Enqueue a whole set of characters.
*/
void enqueue_string(const char *value) {
while(*value)
enqueue(*value++);
}
/**
* Reset the keyboard to its default state.
*/
void reset() {
// we use scset 2 here as we have translation on in the keyboard controller
_scset = 2;
_pread = 0;
_pwrite = 0;
_response = 0;
memset(_no_breakcode, 0, sizeof(_no_breakcode));
memcpy(_no_breakcode, "\x80\x81\x80\x80\x80\x80\x80\x82\x80\x80\xc0\xc1\xa4\xfa\xff\x66\x10", 17);
_indicators = 0;
_last_command = 0;
_last_reply = 0;
_mode = 0;
}
/**
* Returns whether a keycode respects a shift modifier.
*/
bool has_shift_modifiers(unsigned char key) {
switch(key) {
case 0x69:
case 0x6b ... 0x6c:
case 0x70 ... 0x72:
case 0x74 ... 0x75:
case 0x7a:
case 0x7d:
case 0x7c:
case 0x4a:
return true;
default:
return false;
}
}
/**
* Enqueues corresponding shift release or press events for the
* shift-keys if the shift-modifier is changed for the key.
*/
void handle_shift_modifiers(unsigned value) {
if((value & Keyboard::EXTEND0) && has_shift_modifiers(value)) {
unsigned char key = value;
unsigned modifiers = 0;
if((value & Keyboard::LSHIFT) && (key == 0x4a || (~value & Keyboard::NUM)))
modifiers = 0x12;
if((value & Keyboard::RSHIFT) && (key == 0x4a || (~value & Keyboard::NUM)))
modifiers = value & Keyboard::RELEASE ? 0x59 | (modifiers << 8) : 0x5900 | modifiers;
if((key == 0x7c
&& !(value & (Keyboard::RSHIFT | Keyboard::LSHIFT | Keyboard::RCTRL | Keyboard::LCTRL)))
|| (!(value & (Keyboard::RSHIFT | Keyboard::LSHIFT)) && (value & Keyboard::NUM) && key !=
0x4a)) {
value ^= Keyboard::RELEASE;
modifiers = 0x12;
}
while(modifiers) {
enqueue(0xe0);
if(~value & Keyboard::RELEASE)
enqueue(0xf0);
enqueue(modifiers);
modifiers >>= 8;
}
}
}
public:
bool receive(MessageInput &msg) {
if(msg.device != _hostkeyboard)
return false;
if(_mode & (MODE_DISABLED | MODE_STOPPED))
return false;
unsigned oldwrite = _pwrite;
if(_scset == 2 || _scset == 1) {
unsigned char key = msg.data;
_mode &= ~MODE_GOT_BREAK;
if(msg.data & Keyboard::EXTEND1) {
enqueue(0xe1);
if(key == 0x77) // the pause key ?
enqueue_string("\x14\x77\xe1\xf0\x14");
}
if(key == 0x7e && (msg.data & Keyboard::EXTEND0) && (msg.data & Keyboard::RELEASE))
enqueue_string("\xe0\0x7e"); // sysctrl key
if(~msg.data & Keyboard::RELEASE)
handle_shift_modifiers(msg.data);
if(msg.data & Keyboard::EXTEND0)
enqueue(0xe0);
if(msg.data & Keyboard::RELEASE)
enqueue(0xf0);
enqueue(msg.data);
if(msg.data & Keyboard::RELEASE)
handle_shift_modifiers(msg.data);
#if 0
if((_pwrite - _pread) % BUFFERSIZE == BUFFERSIZE - 1) {
_pwrite = oldwrite;
enqueue(0x00);
}
#endif
}
// _scset == 3
else {
unsigned char key = KeyboardUtil::translate_sc2_to_sc3(msg.data);
// the pause key sends make and break together -> simulate another make
if(key == 0x62)
enqueue(key);
if(msg.data & Keyboard::RELEASE) {
if(_no_breakcode[key >> 3] & (1 << (key & 7)))
return true;
enqueue(0xf0);
}
enqueue(key);
}
if(oldwrite == _pread) {
MessagePS2 msg2(_ps2port, MessagePS2::NOTIFY, 0);
_bus_ps2.send(msg2);
}
return true;
}
bool receive(MessagePS2 &msg) {
if(msg.port != _ps2port)
return false;
if(msg.type == MessagePS2::READ_KEY) {
if(_mode & MODE_RESEND) {
msg.value = _last_reply;
_mode &= ~MODE_RESEND;
}
else if(_response) {
msg.value = _response & 0xff;
_response >>= 8;
if(_mode & MODE_RESET) {
assert(!_response && msg.value == 0xfa);
reset();
_response = 0xaa;
_mode &= ~MODE_RESET;
}
}
else {
msg.value = _buffer[_pread];
if(_pwrite != _pread)
_pread = (_pread + 1) % BUFFERSIZE;
else
return false;
}
_last_reply = msg.value;
}
else if(msg.type == MessagePS2::SEND_COMMAND) {
unsigned new_response = 0xfa;
unsigned char command = msg.value;
unsigned char new_mode = _mode & ~(MODE_STOPPED | MODE_RESET);
switch(msg.value) {
case 0xf0: // set scanset
_pwrite = _pread = 0;
case 0xed: // set indicators
case 0xf3: // set typematic rate/delay
case 0xfb: // set key type typematic
case 0xfc: // set key type make+break
case 0xfd: // set key type make
new_mode |= MODE_STOPPED;
break;
case 0xee: // echo
new_response = 0xee;
break;
case 0xf2: // read ID
new_response = 0x83abfa;
break;
case 0xf4: // enable
_pwrite = _pread = 0;
new_mode &= ~MODE_DISABLED;
break;
case 0xf5: // default+disable
reset();
new_mode |= MODE_DISABLED;
break;
case 0xf6: // default+enabled
reset();
new_mode &= ~MODE_DISABLED;
break;
case 0xf8: // all keys make-break
case 0xfa: // all keys make-break+typematic
memset(_no_breakcode, 0, sizeof(_no_breakcode));
break;
case 0xf9: // all keys make
memset(_no_breakcode, 0xff, sizeof(_no_breakcode));
case 0xf7: // all keys typematic
break;
case 0xfe:
new_mode |= MODE_RESEND;
new_response = 0;
break;
case 0xff:
new_mode |= MODE_RESET | MODE_STOPPED;
break;
default:
switch(_last_command) {
case 0xed: // set indicators
_indicators = msg.value;
case 0xf3: // set typematic rate/delay
command = 0;
break;
case 0xf0: // set scanset
switch(msg.value) {
case 0:
new_response = _scset << 16 | 0xfa;
break;
case 1 ... 3:
_scset = msg.value;
new_response = 0xfa;
break;
default:
new_response = 0xff;
}
command = 0;
break;
case 0xfc: // set key type make+break
case 0xfd: // set key type make
if(_last_command == 0xfc)
_no_breakcode[msg.value >> 3] &= ~(1 << (msg.value & 7));
else
_no_breakcode[msg.value >> 3] |= 1 << (msg.value & 7);
case 0xfb: // set key type typematic
if(msg.value)
command = _last_command;
else
new_response = 0xfe;
break;
default:
new_response = 0xfe;
command = 0;
break;
}
if(command)
new_mode |= MODE_STOPPED;
break;
}
_last_command = command;
_mode = new_mode;
if(new_response)
_response = new_response;
if(_response || (_mode & MODE_RESEND)) {
MessagePS2 msg2(_ps2port, MessagePS2::NOTIFY, 0);
_bus_ps2.send(msg2);
}
}
else
return false;
return true;
}
bool receive(MessageLegacy &msg) {
if(msg.type != MessageLegacy::RESET)
return false;
reset();
return true;
}
PS2Keyboard(DBus<MessagePS2> &bus_ps2, unsigned ps2port, unsigned hostkeyboard)
: _bus_ps2(bus_ps2), _ps2port(ps2port), _hostkeyboard(hostkeyboard), _scset(),
_buffer(), _pread(), _pwrite(), _response(), _no_breakcode(), _indicators(), _last_command(),
_last_reply(), _mode() {
}
};
PARAM_HANDLER(
keyb,
"keyb:ps2port,hostkeyboard - attach a PS2 keyboard at the given PS2 port that gets input from the given hostkeyboard.",
"Example: 'keyb:0,0x17'") {
PS2Keyboard *dev = new PS2Keyboard(mb.bus_ps2, argv[0], argv[1]);
mb.bus_ps2.add(dev, PS2Keyboard::receive_static<MessagePS2> );
mb.bus_input.add(dev, PS2Keyboard::receive_static<MessageInput> );
mb.bus_legacy.add(dev, PS2Keyboard::receive_static<MessageLegacy> );
}
|
dcc8186dddbe2407a27282b578c198ab3aaa2648
|
f54054008a9ac3c1f7bf1c763f288f516b608f16
|
/butmau.cpp
|
aace9609747ef59c949570b64e97d8cf4a34a65e
|
[] |
no_license
|
KhanhKitin/spoj_ptit
|
f5d1dc6aea83cbe19731024fcaa2dd75fed0c448
|
0b3971db3a2f88b0451482060f0415ceef911dc6
|
refs/heads/master
| 2022-04-21T04:08:42.266755
| 2020-04-20T16:30:01
| 2020-04-20T16:30:01
| 257,340,618
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 270
|
cpp
|
butmau.cpp
|
#include<stdio.h>
int main(){
int dem=0;
long long a[4];
for(int i=0;i<4;i++){
scanf("%lld",&a[i]);
}
for(int i=0;i<3;i++){
for(int j=i+1;j<4;j++){
if(a[i]==a[j]) dem++;
}
}
if(dem==6) printf("3");
else if(dem==3) printf("2");
else printf("%d",dem);
}
|
49fed3c334b29a1a3bfd0dea25ce248b21066865
|
ab344e0d18b1d23c0f7530dc377cc1f169711c30
|
/include/iQUAPI_TEMPO_template.h
|
6bc21b16a6d307686105428674d882b1e4d37b18
|
[] |
no_license
|
anaghakv01/ACE
|
6fcaec1cb284590bc44e8ef15c947256eb6d5e12
|
479326872df4a74a0ba8cbe78031aecc9ea8e6b7
|
refs/heads/master
| 2023-07-24T13:51:31.241873
| 2021-08-17T22:37:08
| 2021-08-17T22:37:08
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,733
|
h
|
iQUAPI_TEMPO_template.h
|
#include "Simulation.h"
#include "MPG_Discretization.h"
/** Template to generate the two source files for the iQUAPI and TEMPO
binaries.
*/
int main(int args, char** argv){
Parameters param(args, argv, true);
if(param.is_specified("print_param")){
param.print(param.get_as_string("print_param"));
}
std::string outfile=param.get_as_string("outfile", "results.dat");
IF_TimeGrid tgrid(param);
if(fabs(tgrid.dt0-tgrid.dt)>1e-6*tgrid.dt){
std::cerr<<"dt0 != dt not yet implemented for iQUAPI/TEMPO!"<<std::endl;
exit(1);
}
int n_max=param.get_as_double("n_max", tgrid.n_mem);
n_max=param.get_as_double("n_max_override", n_max);
#ifdef TEMPLATE_SET_IQUAPI
if(n_max<1){
std::cerr<<"iQUAPI needs parameter 'n_max' to be specified and positive!"<<std::endl;
exit(1);
}
if(n_max>=15 && !param.is_specified("n_max_override")){
std::cerr<<"iQUAPI needs parameter 'n_max' not to be too large to fit into memory. Use a value smaller than ~15 or set 'n_max_override' explicitly!"<<std::endl;
exit(1);
}
#endif
std::string prefix=param.get_as_string("prefix","Boson");
bool silent=param.get_as_bool("silent",false);
bool use_bath=param.get_as_bool("use_bath", true);
///Bath (setup first because of possible Hilbert space rotation hs_rot).
DiagBB diagBB(param, prefix);
Eigen::MatrixXcd initial_rho=InitialState(param);
if(initial_rho.rows()!=diagBB.sys_dim()){
std::cerr<<"Mismatch in dimensions between initial state and "<<add_prefix(prefix,"SysOp")<<" for system-bath coupling!"<<std::endl;
exit(1);
}
initial_rho=diagBB.hs_rot.apply(initial_rho);
///Bath-free propagator:
FreePropagator fprop(param);
if(!fprop.dim_fixed){
fprop.set_dim(initial_rho.rows());
}else{
if(fprop.get_dim()!=initial_rho.rows()){
std::cerr<<"Mismatch in dimensions between initial state and propagator!"<<std::endl;
exit(1);
}
}
fprop.hs_rot=diagBB.hs_rot;
std::cout<<"Setting up influence functional"<<std::endl;
#ifdef TEMPLATE_SET_IQUAPI
InfluenceFunctional IF(n_max, tgrid.dt, diagBB);
#endif
#ifdef TEMPLATE_SET_TEMPO
InfluenceFunctional_Vector IF(n_max, tgrid.dt, diagBB);
#endif
#ifdef TEMPLATE_SET_IQUAPI
Simulation sim;
#endif
#ifdef TEMPLATE_SET_TEMPO
Simulation_TEMPO sim;
#endif
sim.setup_output(param);
sim.output_Op.rotate(diagBB.hs_rot);
sim.compressor=RankCompressor_Selector(param);
std::cout<<"Starting calculation"<<std::endl;
if(use_bath==false){
sim.run_nobath(fprop, tgrid.ta, tgrid.dt, tgrid.get_t_tot(), initial_rho, silent);
}else{
sim.run(fprop, IF, tgrid.ta, tgrid.dt, tgrid.get_t_tot(), initial_rho, silent);
}
sim.print_results(outfile);
return 0;
}
|
9b34ea83bc3b7714c1434a7c5ff62b4a7ad3562c
|
96dae00de134c84e58ca7c3a5420313fc484da10
|
/ICPC_AlgorithmTemplete/数据结构/可并堆/左偏堆.cpp
|
e192dddfd54ec93bc96caef051ee9d28972c3ea5
|
[] |
no_license
|
meiyoumingzile/ICPC_AlgorithmTemplete
|
62758cde771667bf8602b6e625456a36c8525ab7
|
2bcabeadd94e83acaffa0b90365c93468a8f0004
|
refs/heads/master
| 2023-08-16T23:06:22.774993
| 2023-08-13T08:47:01
| 2023-08-13T08:47:01
| 159,670,934
| 7
| 2
| null | null | null | null |
GB18030
|
C++
| false
| false
| 2,694
|
cpp
|
左偏堆.cpp
|
#include<bits/stdc++.h>
//#include<windows.h>
using namespace std;
#define ll long long
#define inf 1e-5
#define rg register
#define cint const int &
#define cll const long long &
#define cdou const double &
#define cv2 const v2 &
const int inv2=500000004;
const int INF=2147483647;////2139062143
const int MAX=100010;
const int mod=1e9+7;
struct Node{
int val,dis,son[2],p;
int com(const Node &b){
if(val==b.val)
return 0;
return val>b.val?1:-1;
}
};
struct Mheap{//可并堆不是一个堆,是一群堆,初始有n个离散的节点,它们各自属于一个堆
const int NO=-INF;//代表已经被删除的点的val
Node node[MAX];
void clear(){
memset(node,0,sizeof(node));
}
int __merge(int x,int y){//合并以根x和根y所在节点的堆
if(x==0||y==0)//有一个是空就不能合并了,返回不是空的
return x?x:y;
if(node[x].com(node[y])==1||(node[x].com(node[y])==0&&x>y))
swap(x,y);
int &xl=node[x].son[0];
int &xr=node[x].son[1];
xr=__merge(xr,y);
node[xr].p=x;//右的父亲是x
if(node[xl].dis<node[xr].dis)
swap(xl,xr);
node[x].dis=node[xr].dis+1;
return x;
}
int merge(int x,int y){//合并第x个节点与第y个节点所在的堆,x和y编号[1,n],f返回根节点编号,合并不成功返回0
if(node[x].val!=NO&&node[y].val!=NO&&x!=y){
x=getRoot(x);
y=getRoot(y);
return __merge(x,y);
}
return 0;
}
int getRoot(int x){//找到编号是x的点的,根节点
while(node[x].p)
x=node[x].p;
return x;
}
int pop(int x){//分离节点x所在树的根,返回删除后,谁是根
x=getRoot(x);
node[x].val=NO;//表示这个点不存在
int &xl=node[x].son[0];
int &xr=node[x].son[1];
node[xl].p=node[xr].p=0;
return merge(xl,xr);
}
};
Mheap que;
int main(int argc,char *argv[]){
int i,k,n,m,b,e;
//que.clear();
scanf("%d%d",&n,&m);
for(i=1;i<=n;i++){
scanf("%d",&que.node[i].val);//输入n个数,
}
for(i=0;i<m;i++){
scanf("%d",&k);
if(k==1){
scanf("%d%d",&b,&e);//合并编号为b和编号为e所在的堆
que.merge(b,e);
}else if(k==2){
scanf("%d",&b);
if(que.node[b].val!=que.NO){//有没有被删过
b=que.getRoot(b);
printf("%d\n",que.node[b].val);
que.pop(b);
}else{//要找的被删除了输出-1,
printf("-1\n");
}
}
}
return 0;
}
|
0c31856c99ef54f8f5effcd5de1667dfbb5b8e19
|
fb66a5cc43d27f33c85320a6dba8b9a8ff4765a9
|
/gapputils/gapputils.cv/AamUtils.cpp
|
3f422bc7d946a04e4215b7b92d80b1a7d817be4a
|
[] |
no_license
|
e-thereal/gapputils
|
7a211c7d92fd2891703cb16bf94e6e05f0fb3b8a
|
a9eca31373c820c12f4f5f308c0e2005e4672fd0
|
refs/heads/master
| 2021-04-26T16:42:58.303603
| 2015-09-02T21:32:45
| 2015-09-02T21:32:45
| 38,838,767
| 2
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,491
|
cpp
|
AamUtils.cpp
|
/*
* AamUtils.cpp
*
* Created on: Jul 15, 2011
* Author: tombr
*/
#include "AamUtils.h"
#include <cassert>
#include <culib/lintrans.h>
#include <cassert>
#include "ImageWarp.h"
using namespace std;
namespace gapputils {
namespace cv {
void AamUtils::getAppearanceParameters(std::vector<float>* appearanceParameters,
ActiveAppearanceModel* model, GridModel* grid, image_t* image)
{
const int spCount = model->getShapeParameterCount();
const int tpCount = model->getTextureParameterCount();
const int apCount = model->getAppearanceParameterCount();
const int pixelCount = image->getSize()[0] * image->getSize()[1] * image->getSize()[2];
boost::shared_ptr<vector<float> > shapeFeatures = model->toFeatures(grid);
vector<float>* meanGridFeatures = model->getMeanShape().get();
vector<float> shapeParameters(spCount);
assert(shapeFeatures->size() == meanGridFeatures->size());
assert((int)appearanceParameters->size() == apCount);
for (unsigned i = 0; i < shapeFeatures->size(); ++i)
(*shapeFeatures)[i] -= meanGridFeatures->at(i);
culib::lintrans(&shapeParameters[0], &(*model->getShapeMatrix())[0], &(*shapeFeatures)[0], shapeFeatures->size(), 1, spCount, true);
vector<float> textureParameters(tpCount);
ImageWarp warp;
warp.setInputImage(model->createTexture(model->toFeatures(image).get()));
warp.setBaseGrid(model->createShape(shapeFeatures.get()));
warp.setWarpedGrid(model->createMeanShape());
warp.execute(0);
warp.writeResults();
boost::shared_ptr<vector<float> > imageFeatures = model->toFeatures(warp.getOutputImage().get());
boost::shared_ptr<vector<float> > meanImageFeatures = model->getMeanTexture();
for (int i = 0; i < pixelCount; ++i)
(*imageFeatures)[i] = imageFeatures->at(i) - meanImageFeatures->at(i);
culib::lintrans(&textureParameters[0], &(*model->getTextureMatrix())[0], &(*imageFeatures)[0], pixelCount, 1, tpCount, true);
vector<float> modelFeatures(spCount + tpCount);
copy(shapeParameters.begin(), shapeParameters.end(), modelFeatures.begin());
copy(textureParameters.begin(), textureParameters.end(), modelFeatures.begin() + spCount);
culib::lintrans(&(*appearanceParameters)[0], &(*model->getAppearanceMatrix())[0], &modelFeatures[0], spCount + tpCount, 1, apCount, true);
}
void AamUtils::getShapeParameters(std::vector<float>* shapeParameters,
ActiveAppearanceModel* model, std::vector<float>* appearanceParameters)
{
const int spCount = model->getShapeParameterCount();
const int tpCount = model->getTextureParameterCount();
const int apCount = model->getAppearanceParameterCount();
vector<float> appearanceFeatures(spCount + tpCount);
culib::lintrans(&appearanceFeatures[0], &(*model->getAppearanceMatrix())[0], &(*appearanceParameters)[0], apCount, 1, spCount + tpCount, false);
copy(appearanceFeatures.begin(), appearanceFeatures.begin() + spCount, shapeParameters->begin());
}
void AamUtils::getShapeFeatures(std::vector<float>* shapeFeatures,
ActiveAppearanceModel* model, std::vector<float>* shapeParameters)
{
assert(shapeFeatures->size() == model->getMeanShape()->size());
culib::lintrans(&(*shapeFeatures)[0], &(*model->getShapeMatrix())[0], &(*shapeParameters)[0], model->getShapeParameterCount(), 1, shapeFeatures->size(), false);
boost::shared_ptr<vector<float> > meanGrid = model->getMeanShape();
for (unsigned i = 0; i < shapeFeatures->size(); ++i)
(*shapeFeatures)[i] = (*shapeFeatures)[i] + meanGrid->at(i);
}
}
}
|
8c40c1853dcdf78fd2f2d31659fd8cc349dd4663
|
f2c0259c672277d6f17a715e10f5e5ecdd00d605
|
/smtk/session/polygon/qt/qtArcWidget.cxx
|
d9718329990332e419798de917edfbbb4c858eac
|
[
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
Kitware/SMTK
|
83ff15620f801f12488ad238a4cf36f2998cfd14
|
a16cf5393f91d97dca2db0c2bd46d21864152c66
|
refs/heads/master
| 2023-08-31T18:54:44.534709
| 2023-08-28T14:35:32
| 2023-08-28T14:35:50
| 28,104,084
| 50
| 30
|
NOASSERTION
| 2023-07-20T11:08:10
| 2014-12-16T20:02:07
|
C++
|
UTF-8
|
C++
| false
| false
| 6,367
|
cxx
|
qtArcWidget.cxx
|
//=========================================================================
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt for details.
//
// This software is distributed WITHOUT ANY WARRANTY; without even
// the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
// PURPOSE. See the above copyright notice for more information.
//=========================================================================
#include "smtk/session/polygon/qt/qtArcWidget.h"
#include "ui_qtArcWidget.h"
#include <QDoubleValidator>
#include <QMessageBox>
#include <QShortcut>
#include <QtDebug>
#include "vtkAbstractWidget.h"
#include "vtkCommand.h"
#include "vtkEventQtSlotConnect.h"
#include "vtkNew.h"
#include "vtkSMNewWidgetRepresentationProxy.h"
#include "vtkSMPropertyHelper.h"
class qtArcWidget::qtInternals : public Ui::qtArcWidget
{
public:
vtkNew<vtkEventQtSlotConnect> ClosedLoopConnect;
};
qtArcWidget::qtArcWidget(QWidget* parentWdg)
: Superclass(
qtInteractionWidget::createWidget("representations", "smtkArcWidgetRepresentation"),
parentWdg)
, Internals(new qtArcWidget::qtInternals())
{
this->Internals->setupUi(this);
this->Internals->Visibility->setChecked(this->isInteractivityEnabled());
this->connect(
this->Internals->Visibility, SIGNAL(toggled(bool)), SLOT(setEnableInteractivity(bool)));
this->Internals->Visibility->connect(
this, SIGNAL(enableInteractivityChanged(bool)), SLOT(setChecked(bool)));
QObject::connect(this->Internals->Closed, SIGNAL(toggled(bool)), this, SLOT(closeLoop(bool)));
QObject::connect(this->Internals->Delete, SIGNAL(clicked()), this, SLOT(deleteAllNodes()));
QObject::connect(this->Internals->EditMode, SIGNAL(toggled(bool)), this, SLOT(updateMode()));
QObject::connect(this->Internals->ModifyMode, SIGNAL(toggled(bool)), this, SLOT(updateMode()));
QObject::connect(this->Internals->Finished, SIGNAL(clicked()), this, SLOT(finishContour()));
QPushButton* finishButton = this->Internals->Finished;
QPalette applyPalette = finishButton->palette();
applyPalette.setColor(QPalette::Active, QPalette::Button, QColor(161, 213, 135));
applyPalette.setColor(QPalette::Inactive, QPalette::Button, QColor(161, 213, 135));
finishButton->setPalette(applyPalette);
finishButton->setDefault(true);
this->Internals->ClosedLoopConnect->Connect(
this->widgetProxy(), vtkCommand::EndInteractionEvent, this, SLOT(checkContourLoopClosed()));
}
qtArcWidget::~qtArcWidget() = default;
void qtArcWidget::enableApplyButton(bool state)
{
this->Internals->Finished->setEnabled(state);
}
void qtArcWidget::deleteAllNodes()
{
QMessageBox msgBox;
msgBox.setText("Delete all contour nodes.");
msgBox.setInformativeText("Do you want to delete everything you have drawn?");
msgBox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
int ret = msgBox.exec();
if (ret == QMessageBox::Ok)
{
this->removeAllNodes();
}
}
void qtArcWidget::removeAllNodes()
{
vtkSMNewWidgetRepresentationProxy* widget = this->widgetProxy();
if (widget)
{
widget->InvokeCommand("ClearAllNodes");
this->render();
}
}
void qtArcWidget::checkContourLoopClosed()
{
vtkSMProxy* repProxy = this->widgetProxy()->GetRepresentationProxy();
// request from the info the state of the loop not on the property it self
vtkSMPropertyHelper loopHelper(repProxy, "ClosedLoopInfo");
loopHelper.UpdateValueFromServer();
int loopClosed = loopHelper.GetAsInt();
this->Internals->Closed->setChecked(loopClosed);
if (loopClosed)
{
this->ModifyMode();
Q_EMIT this->contourLoopClosed();
}
}
void qtArcWidget::closeLoop(bool val)
{
vtkSMNewWidgetRepresentationProxy* widget = this->widgetProxy();
if (widget)
{
vtkSMProxy* repProxy = widget->GetRepresentationProxy();
vtkSMPropertyHelper loopHelper(repProxy, "ClosedLoop");
if (val)
{
widget->InvokeCommand("CloseLoop");
}
this->Internals->ModifyMode->setChecked(val);
loopHelper.Set(val);
repProxy->UpdateVTKObjects();
this->render();
}
}
void qtArcWidget::ModifyMode()
{
this->Internals->ModifyMode->setChecked(true);
}
void qtArcWidget::checkCanBeEdited()
{
vtkSMNewWidgetRepresentationProxy* widget = this->widgetProxy();
if (widget)
{
vtkSMProxy* repProxy = widget->GetRepresentationProxy();
vtkSMPropertyHelper canEditHelper(repProxy, "CanEditInfo");
canEditHelper.UpdateValueFromServer();
int canEdit = canEditHelper.GetAsInt();
if (!canEdit)
{
this->Internals->ModifyMode->setChecked(true);
}
this->Internals->EditMode->setVisible(canEdit);
this->Internals->Closed->setVisible(canEdit);
}
}
void qtArcWidget::updateMode()
{
// the text should always be updated to this.
vtkSMNewWidgetRepresentationProxy* widget = this->widgetProxy();
if (widget)
{
if (this->Internals->EditMode->isChecked())
{
vtkSMPropertyHelper(widget, "WidgetState").Set(1);
}
else if (this->Internals->ModifyMode->isChecked())
{
vtkSMPropertyHelper(widget, "WidgetState").Set(2);
}
widget->UpdateVTKObjects();
}
}
void qtArcWidget::finishContour()
{
vtkSMNewWidgetRepresentationProxy* widget = this->widgetProxy();
widget->GetWidget()->InvokeEvent(vtkCommand::EndInteractionEvent, nullptr);
Q_EMIT this->contourDone();
}
vtkSMProxy* qtArcWidget::pointPlacer() const
{
return vtkSMPropertyHelper(this->widgetProxy(), "PointPlacer").GetAsProxy();
}
void qtArcWidget::reset()
{
// update our mode
this->Internals->EditMode->setDisabled(false);
this->Internals->EditMode->setChecked(true);
this->Internals->Closed->blockSignals(true);
this->Internals->Closed->setEnabled(true);
this->Internals->Closed->setChecked(false);
// consistent with Closed checkbox
this->closeLoop(false);
this->Internals->Closed->blockSignals(false);
}
void qtArcWidget::setLineColor(const QColor& color)
{
vtkSMProxy* widget = this->widgetProxy();
vtkSMPropertyHelper(widget, "LineColor").Set(0, color.redF());
vtkSMPropertyHelper(widget, "LineColor").Set(1, color.greenF());
vtkSMPropertyHelper(widget, "LineColor").Set(2, color.blueF());
widget->UpdateVTKObjects();
}
void qtArcWidget::useArcEditingUI(bool isWholeArc)
{
this->Internals->Delete->setVisible(false);
this->Internals->Closed->setEnabled(isWholeArc);
}
|
6da20b9ab0ab819700ce25a7d5d999bb30c494a2
|
685c44d2cb28b2ecf2ec4d3f72aeb01d5d8384da
|
/APlay.hh
|
34a5697b319b72b04864c4d9fa3a8465843d77d3
|
[] |
no_license
|
Ngob/bomberman
|
cde909326bedf7eb904abde595d5ddad2274bbd4
|
6a4f9f20660df90c75bedef8054f87785b58a3b1
|
refs/heads/master
| 2020-05-18T04:59:14.706664
| 2015-06-14T19:13:53
| 2015-06-14T19:13:53
| 37,425,742
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 627
|
hh
|
APlay.hh
|
//
// Iplay.hh for in /home/capot_r//tek2/cpp/proj/bomberman-2014-capot_r
//
// Made by romain capot
// Login <capot_r@epitech.net>
//
// Started on Tue May 24 10:05:58 2011 romain capot
// Last update Sun Jun 5 13:27:54 2011 antoine basset
//
#include "Game.hpp"
#ifndef __APLAY_HH__
#define __APLAY_HH__
class APlay
{
protected:
bool _exit;
gdl::Window * _win;
gdl::GameClock * _clock;
gdl::Input * _in;
public:
APlay(gdl::Window *, gdl::GameClock *, gdl::Input *);
virtual ~APlay();
virtual void initialize(void) = 0;
virtual void update(void) = 0;
virtual void draw(void) = 0;
};
#endif
|
2de50a09570d82bdda3a068abe8291f239b3ed28
|
b408ec401db547bcb0ebf8b39b982b3370afad60
|
/pixie.cpp
|
6e078632fef0582d54f055a1639b32f9689cba8a
|
[
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] |
permissive
|
samizzo/pixie
|
ca5c25cb3b6edfcd033485245e809129f347bdca
|
cb40ce664ac68620628532c4a0b1722dd48e2035
|
refs/heads/master
| 2023-03-06T21:50:43.578715
| 2023-03-03T12:34:54
| 2023-03-03T12:34:54
| 145,707,019
| 28
| 3
|
MIT
| 2020-04-13T23:24:56
| 2018-08-22T12:36:52
|
C++
|
UTF-8
|
C++
| false
| false
| 2,165
|
cpp
|
pixie.cpp
|
#include <string.h>
#include <ctype.h>
#include "pixie.h"
#include <assert.h>
using namespace Pixie;
Window::Window()
{
m_keyCallback = NULL;
m_delta = 0.0f;
m_pixels = 0;
m_scale = 1;
assert(sizeof(m_mouseButtonDown) == sizeof(m_lastMouseButtonDown));
memset(m_mouseButtonDown, 0, sizeof(m_mouseButtonDown));
memset(m_lastMouseButtonDown, 0, sizeof(m_lastMouseButtonDown));
memset(m_inputCharacters, 0, sizeof(m_inputCharacters));
assert(sizeof(m_keyDown) == sizeof(m_lastKeyDown));
memset(m_lastKeyDown, 0, sizeof(m_lastKeyDown));
memset(m_keyDown, 0, sizeof(m_keyDown));
// Initialise ASCII entries in keymap.
for (int i = 0; i < Key_Num; i++)
m_keyMap[i] = i >= Key_ASCII_Start && i <= Key_ASCII_End ? i : Key_Num;
PlatformInit();
}
Window::~Window()
{
delete[] m_pixels;
}
bool Window::Open(const TCHAR* title, int width, int height, bool fullscreen, bool maintainAspectRatio /*= false*/, int scale /*= 1*/)
{
// Create the buffer first because on OSX we need it to exist when initialising.
m_pixels = new uint32_t[width * height];
m_width = width;
m_height = height;
m_scale = scale;
m_time = 0.0f;
m_fullscreen = fullscreen;
m_maintainAspectRatio = maintainAspectRatio;
if (!PlatformOpen(title, width, height))
{
delete[] m_pixels;
m_pixels = 0;
return false;
}
return true;
}
bool Window::Update()
{
UpdateMouse();
UpdateKeyboard();
bool result = PlatformUpdate();
m_time += m_delta;
return result;
}
void Window::Close()
{
PlatformClose();
}
void Window::UpdateMouse()
{
memcpy(m_lastMouseButtonDown, m_mouseButtonDown, sizeof(m_mouseButtonDown));
}
void Window::UpdateKeyboard()
{
memset(m_inputCharacters, 0, sizeof(m_inputCharacters));
memcpy(m_lastKeyDown, m_keyDown, sizeof(m_keyDown));
}
void Window::AddInputCharacter(char c)
{
if (!isprint(c))
return;
size_t length = strlen(m_inputCharacters);
if (length + 1 < sizeof(m_inputCharacters))
{
m_inputCharacters[length] = c;
m_inputCharacters[length + 1] = 0;
}
}
|
cea41a12c43f6fb85853ea08349a88c0bcb5a379
|
1bc4b58e09c8c3b813baa9e96c9ca33fb8192a0b
|
/include/stm/utilities.ipp
|
707706723c0164ab638795d0f315da17ab9f6c3c
|
[] |
no_license
|
edwinsolisf/NeuralNetwork
|
4e93fca4fdb29888da3c04d83df7267065f99e1c
|
a16af7df993920bbb6ad49cd50bea54f4e591c77
|
refs/heads/master
| 2023-06-24T00:50:47.291868
| 2021-08-02T02:19:33
| 2021-08-02T02:19:33
| 312,903,576
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,430
|
ipp
|
utilities.ipp
|
namespace stm
{
template<typename _TYPE, unsigned int _ROWS, unsigned int _COLUMNS>
static void Print(const matrix<_TYPE, _ROWS, _COLUMNS>& mat)
{
std::cout << "[ ";
for (unsigned int i = 0; i < _ROWS; ++i)
{
for (unsigned int j = 0; j < _COLUMNS; ++j)
std::cout << mat[i][j] << (((i != _ROWS - 1) || (j != _COLUMNS - 1)) ? " , " : " ");
if (i != _ROWS - 1)
std::cout << std::endl << " ";
else
std::cout << "]" << std::endl;
}
}
template<typename _TYPE>
static void Print(const dynamic_matrix<_TYPE>& mat)
{
std::cout << "[ ";
for (unsigned int i = 0; i < mat.GetRowSize(); ++i)
{
for (unsigned int j = 0; j < mat.GetColumnSize(); ++j)
std::cout << mat[i][j] << (((i != mat.GetRowSize() - 1) || (j != mat.GetColumnSize() - 1)) ? " , " : " ");
if (i != mat.GetRowSize() - 1)
std::cout << std::endl << " ";
else
std::cout << "]" << std::endl;
}
}
template<typename _TYPE, unsigned int _DIM>
static void Print(const vector<_TYPE, _DIM>& vec)
{
std::cout << "[ ";
for (unsigned int i = 0; i < _DIM; ++i)
std::cout << vec[i] << ((i < _DIM - 1) ? " , " : " ");
std::cout << "]" << std::endl;
}
template<typename _TYPE>
static void Print(const dynamic_vector<_TYPE>& vec)
{
std::cout << "[ ";
for (unsigned int i = 0; i < vec.GetSize(); ++i)
std::cout << vec[i] << ((i < vec.GetSize() - 1) ? " , " : " ");
std::cout << "]" << std::endl;
}
}
|
9a7889f624a75c3c6133590694e43a1403c0e0d5
|
ea8aa77c861afdbf2c9b3268ba1ae3f9bfd152fe
|
/newcoder37EE.cpp
|
89bfc4f36f66a48980cf5f9c53510e4fb020fedb
|
[] |
no_license
|
lonelam/SolveSet
|
987a01e72d92f975703f715e6a7588d097f7f2e5
|
66a9a984d7270ff03b9c2dfa229d99b922907d57
|
refs/heads/master
| 2021-04-03T02:02:03.108669
| 2018-07-21T14:25:53
| 2018-07-21T14:25:53
| 62,948,874
| 9
| 3
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 589
|
cpp
|
newcoder37EE.cpp
|
#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
const int inf = 0x3f3f3f3f;
const int maxn = 100000;
int main()
{
int n;
while(cin >> n)
{
if (n <= 3)
{
cout << -1 << endl;
continue;
}
string line;
if (n & 1)
{
cout << "164";
for (int i = 3; i < n; i++) cout << '0';
cout << endl;
}
else
{
cout << "1144";
for (int i = 4; i < n; i++)
{
cout << '0';
}
cout << endl;
}
}
}
|
9d833c187c83b927a82085f1ef7708a7020129c2
|
473b7c1990d5fb37773316e4abc452bb2aa3b9f4
|
/Source.cpp
|
6a9470179be0726c6bb818f8f4d8e88cd8b5edfd
|
[] |
no_license
|
curiousTauseef/Card-Shuffling-and-Dealing-Simulation---CPP
|
cde914c0216a2e3f391a29cd6f56985eeda3e997
|
88844a4844a39279c63982c517923d851d759eb2
|
refs/heads/master
| 2020-05-01T15:51:44.838110
| 2018-12-10T07:40:43
| 2018-12-10T07:40:43
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,612
|
cpp
|
Source.cpp
|
// Fig. 18.2: fig 18_02.cpp from C++ How to Program - Deitel - 4th Ed.
// Card shuffling and dealing program using structures.
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
using std::left;
using std::right;
#include <iomanip>
using std::setw;
#include <cstdlib>
#include <ctime>
// Card structure definition
struct Card {
char *face;
char *suit;
}; // end structure Card
void fillDeck(Card * const, char *[], char *[]);
void shuffle(Card * const);
void deal(Card * const);
void main() {
Card deck[52];
char *face[] = { "Ace", "Deuce", "Three", "Four",
"Five", "Six", "Seven", "Eight", "Nine", "Ten",
"Jack", "Queen", "King" };
char *suit[] = { "Hearts", "Diamonds", "Clubs", "Spades" };
srand(time(0)); // randomize
fillDeck(deck, face, suit);
shuffle(deck);
deal(deck);
system("pause");
} // end main
// place strings into Card structures
void fillDeck(Card * const wDeck, char *wFace[], char *wSuit[]){
for (int i = 0; i < 52; i++) {
wDeck[i].face = wFace[i % 13];
wDeck[i].suit = wSuit[i / 13];
} // end for
} // end function fillDeck
// shuffle cards
void shuffle(Card * wDeck){
for (int i = 0; i < 52; i++) {
int j = rand() % 52;
Card temp = wDeck[i];
wDeck[i] = wDeck[j];
wDeck[j] = temp;
} // end for
} // end function shuffle
// deal cards
void deal(Card * const wDeck){
for (int i = 0; i < 52; i++)
cout << right << setw(5) << wDeck[i].face << " of " << left << setw(8) << wDeck[i].suit
<< ((i + 1) % 2 ? '\t' : '\n');
} // end function deal
|
a19d8f21b52708ea0477228601c4e09d1d3d64ef
|
02b6fddf13ef8d8faf0ca7f6b50094ca058ba6c5
|
/week5_dynamic_programming1/2_primitive_calculator/primitive_calculator.cpp
|
550241935eea9879550eae468d96aa5453a1de1d
|
[] |
no_license
|
Professor322/algorithmic_toolbox
|
c38568f2098bff99f7b73d066abc0b9b6949e842
|
be62952a3cff84824a79768adaf03dcc956123e6
|
refs/heads/master
| 2022-10-28T19:15:54.459014
| 2020-06-14T12:44:25
| 2020-06-14T12:44:25
| 260,571,451
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,588
|
cpp
|
primitive_calculator.cpp
|
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <limits>
using namespace std;
using std::vector;
vector<int> optimal_sequence(int n) {
std::vector<int> sequence;
while (n >= 1) {
sequence.push_back(n);
if (n % 3 == 0) {
n /= 3;
} else if (n % 2 == 0) {
n /= 2;
} else {
n = n - 1;
}
}
reverse(sequence.begin(), sequence.end());
return sequence;
}
void backtrack(vector<int>& ans, vector<int>& dp, int i) {
if (i == 0) {
return ;
}
ans.push_back(i);
if (!(i % 2) && dp[i / 2] + 1 == dp[i]) {
backtrack(ans, dp, i / 2);
} else if (!(i % 3) && dp[i / 3] + 1 == dp[i]) {
backtrack(ans, dp, i / 3);
} else if (i - 1 >= 0 && dp[i - 1] + 1 == dp[i]) {
backtrack(ans, dp, i - 1);
}
}
vector<int> fast_optimal_sequence(int n) {
vector<string> ops{"x2", "x3", "+1"};
vector<int> dp(n + 1, numeric_limits<int>::max());
dp[0] = 0;
for (int i = 1; i < dp.size(); ++i) {
for (string& op : ops) {
if (op == "x2" && !(i % 2)) {
dp[i] = min(dp[i / 2] + 1, dp[i]);
} else if (op == "x3" && !(i % 3)) {
dp[i] = min(dp[i / 3] + 1, dp[i]);
} else if (op == "+1" && i - 1 >= 0) {
dp[i] = min(dp[i - 1] + 1, dp[i]);
}
}
}
vector<int> ans;
ans.reserve(dp[n]);
backtrack(ans, dp, n);
reverse(ans.begin(), ans.end());
return ans;
}
int main() {
int n;
std::cin >> n;
vector<int> sequence = fast_optimal_sequence(n);
std::cout << sequence.size() - 1 << std::endl;
for (size_t i = 0; i < sequence.size(); ++i) {
std::cout << sequence[i] << " ";
}
}
|
74803dea0153f32d71301efbe879f63860df5516
|
e46bd22112c15d9558ad9531deef183849636d62
|
/LeetCode/30-Day Challenge/2023/February/Week 1.7 Fruit Into Baskets.cpp
|
52687eea67e2e3cc2612596d65f502251989b288
|
[] |
no_license
|
jariasf/Online-Judges-Solutions
|
9082b89cc6d572477dbfb89ddd42f81ecdb2859a
|
81745281bd0099b8d215754022e1818244407721
|
refs/heads/master
| 2023-04-29T20:56:32.925487
| 2023-04-21T04:59:27
| 2023-04-21T04:59:27
| 11,259,169
| 34
| 43
| null | 2020-10-01T01:41:21
| 2013-07-08T16:23:08
|
C++
|
UTF-8
|
C++
| false
| false
| 1,005
|
cpp
|
Week 1.7 Fruit Into Baskets.cpp
|
/*******************************************
***Problema: Fruit Into Baskets
***ID: Week 1.7
***Juez: LeetCode
***Tipo: Sliding window
***Autor: Jhosimar George Arias Figueroa
*******************************************/
class Solution {
public:
int totalFruit(vector<int>& fruits) {
int n = fruits.size(), cnt1, cnt2, key1, key2, res;
cnt1 = cnt2 = res = 0;
key1 = key2 = -1;
for(int right = 0, left = 0 ; right < n ; ++right){
while( cnt1 != 0 && cnt2 != 0 && fruits[right] != key1 && fruits[right] != key2){
if( fruits[left] == key1 ) cnt1--;
else cnt2--;
left++;
}
res = max(res, right - left + 1);
if( cnt1 == 0 || fruits[right] == key1){
key1 = fruits[right];
cnt1++;
}else{
key2 = fruits[right];
cnt2++;
}
}
return res;
}
};
|
37d9836c14ba6418d8c9fe0c4a94fac1fa015faa
|
c09baef3a623cba09a66f4f77dc7925f4e3649a0
|
/menu.hpp
|
e6f88b1b76102976bcb9cc4fe8bbf79a03e8a366
|
[] |
no_license
|
OlaGie/SklepElektroniczny
|
e8458e3f24e3bf006f85e8c4cee3ade98e2c4c8d
|
60780b7efbc31df16ceef74585a227f71d91eacb
|
refs/heads/master
| 2021-01-10T15:56:13.821463
| 2016-01-03T23:00:34
| 2016-01-03T23:00:34
| 48,963,955
| 0
| 0
| null | null | null | null |
WINDOWS-1250
|
C++
| false
| false
| 566
|
hpp
|
menu.hpp
|
/*
================================================================================
Plik: menu.hpp
--------------------------------------------------------------------------------
Autorzy: xxx
Projekt: Sklep elektroniczny
Kompilator: Dev-C ++
Hardware: PC
Utworzony: 05.06.2014
--------------------------------------------------------------------------------
Zawiera: Menu programu oraz połączenie wszytkich elementow
--------------------------------------------------------------------------------
*/
void main_menu(void);
void menu(void);
|
fd41eb813101e31c6908c4608a51c8ddf54b0ef6
|
fef58dcd0c1434724a0a0a82e4c84ae906200289
|
/usages/0xCD74233600C4EA6B.cpp
|
a9ea5f3066c776ffde8060a3a8da7ef076408315
|
[] |
no_license
|
DottieDot/gta5-additional-nativedb-data
|
a8945d29a60c04dc202f180e947cbdb3e0842ace
|
aea92b8b66833f063f391cb86cbcf4d58e1d7da3
|
refs/heads/main
| 2023-06-14T08:09:24.230253
| 2021-07-11T20:43:48
| 2021-07-11T20:43:48
| 380,364,689
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 685
|
cpp
|
0xCD74233600C4EA6B.cpp
|
// am_penned_in.ysc @ L18321
void func_494()
{
if (!MISC::IS_BIT_SET(iLocal_115, 19))
{
func_502();
HUD::_0xCD74233600C4EA6B(0);
if (func_501("SCTV_HELI_HLP"))
{
HUD::CLEAR_HELP(1);
}
func_496(&(Local_112.f_184), 1, MISC::IS_BIT_SET(Local_112.f_1, 5), 0);
if (!func_376(PLAYER::PLAYER_ID(), 0))
{
MISC::CLEAR_BIT(&(Local_113[NETWORK::PARTICIPANT_ID_TO_INT() /*8*/].f_1), 11);
MISC::CLEAR_BIT(&(Global_2424073[PLAYER::NETWORK_PLAYER_ID_TO_INT() /*421*/].f_195), 2);
MISC::CLEAR_BIT(&(Global_1628955[PLAYER::PLAYER_ID() /*614*/].f_1), 14);
func_495(PLAYER::PLAYER_ID(), 0);
}
MISC::SET_BIT(&iLocal_115, 19);
}
}
|
89cfce2e5da5a222db9e47961e19f701f0a3fc6a
|
67d33599619ba82eaa7d694d6711687f7cbba7f2
|
/interface/ProducersManager.h
|
3846cc46887d3c78b0cf411a6f257ae326d4bd7b
|
[] |
no_license
|
cp3-llbb/Framework
|
bd2ff553281137f2725fe047945699e00baa718e
|
fd03450f0ca1342050538be30efe6ad6d433d4b6
|
refs/heads/CMSSW_8_0_6p
| 2020-04-03T20:09:49.286442
| 2019-02-15T14:00:39
| 2019-02-15T14:00:39
| 35,434,040
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 711
|
h
|
ProducersManager.h
|
#ifndef PRODUCERS_MANAGER
#define PRODUCERS_MANAGER
#include "cp3_llbb/Framework/interface/ProducerGetter.h"
#include "cp3_llbb/Framework/interface/Producer.h"
#include <string>
#include <type_traits>
class ProducersManager {
friend class ExTreeMaker;
public:
template <class T>
const T& get(const std::string& name) const {
static_assert(std::is_base_of<Framework::Producer, T>::value, "T must inherit from Framework::Producer");
return dynamic_cast<const T&>(m_getter.getProducer(name));
}
bool exists(const std::string& name) const;
private:
ProducersManager(const ProducerGetter& getter);
const ProducerGetter& m_getter;
};
#endif
|
db0f300b94f7fd3ea405e6cd00e74befe828f85f
|
d17903d6af46e5053521f87285a124a31ee8bd95
|
/lever FYS9411/mange elektroner/montecarlo.h
|
74c2d10ff75b3d82d46fb197bcb70aeb6f77ac9f
|
[] |
no_license
|
mariebat/FYS9411
|
2ded4e31d17b1e941aecca2aac79508ead92d516
|
7f097cf883a3fa0ef2d090824799064d00906d7a
|
refs/heads/master
| 2021-01-22T19:40:54.529047
| 2017-06-06T15:28:33
| 2017-06-06T15:28:33
| 85,224,249
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,718
|
h
|
montecarlo.h
|
#ifndef MONTECARLO_H
#define MONTECARLO_H
#include <armadillo>
using namespace arma;
class MonteCarlo
{
public:
MonteCarlo();
MonteCarlo(int nEl, bool z, double A, int ncycles, double Omega, double ts); //use for importance sampling
MonteCarlo(int nEl, bool z, double A, int ncycles, double Omega, double ts, double alph, double bet); //use for importance sampling
void runMonteCarloInt(); //regular VMC integration program
void MonteCarloSampling(int NumberMCsamples, double &cumulative_e, double &cumulative_e2); //VMC integration, optimized to run in parallel
vec steepestDescent(vec x0, double gamma); //steepest descent
private:
//Programs for steepest descent
vec runMonteCarloInt_SD(vec guess); //returns expectation values of energy and wavefunciton
vec gradLocalEnergy(vec expValues); // get derivative of local energy, w.r.t. alpha and beta
double gradPsiAlpha(const mat &r); //get gradient of psi w.r.t. alpha
double gradPsiBeta(const mat &r); //get gradient of psi w.r.t. beta
double SPpsiGradAlpha(int index, double rx, double ry); //single partivcle gradient w.r.t. alpha
//Local energy at specific position
vec computeLocalEnergy_num(const mat &r); //numeric derivative
double computeLocalEnergy(const mat &r); //analytic expression, returns only local energy
vec computeLocalEnergyvec(const mat &r); //analytic expression, returns vector with local energy, Ekin and Epot
//wavefunction, at specific position
double wavefunction(mat r); //trial wavefunction
double SPwavefunction(double rx, double ry, int i); //single particle wavefunction
double calcHermite(int n, double Z); //Hermite polynomial
//helping functions
double RelativeDistance(mat r, int i, int j);
double singleparticle_posSQ(mat r, int i);
int factorial(int A);
//Quantum force, numerical derivative first and analytical expression second. Updates input QF matrix
void quantumForce_num(const mat &r, mat &QF); //using numeric derivative
void quantumForce(const mat &r, mat &QF); //using analytic expressions
//Functions to find derivative
double SPpsiDer(int index, double rx, double ry, int k); //derivative of Single particle wavefunction
double SPpsiDoubleDer(int index, mat r); //double derivative of SP wavefunction
double SlaterLaplace(int orbitals, mat r); //laplacian of slater determinant
double hermiteDer(int n, double Z); //first derivative of hermite polynomial
double hermiteDoubleDer(int n, double Z); //double derivative of hermite polynomial
double JastrowDerivative(mat r, int i, int j, int k); //first derivative of jastrow factor
double JastrowLaplacian(mat r); //laplacian of jastrow factor
//System-specific variables
int nDims;
int nElectrons;
double omega;
double a; //Jastrow factor, turn off or on
bool Z; //Coulomb interaction (to turn it off)
//MC cycle parameters
double stepLength; //for positions in brute force MC cycle
double h; //For numerical derivative in local energy and quantum force
double h2; // 1/(h*h)
int nCycles;
double timestep; //For updating position with importance sampling - parameter in soln to Langevin eqn
//Variational parameters
double alpha;
double beta;
//Position of electrons
mat rOld;
mat rNew;
//Quantum force
mat oldQF;
mat newQF;
double D; //Diffusion constant - equal to 1/2 in a.u.
int nx; //spatial quantum number
int ny; //spatial quantum number
int sigma; //spin quantum number
void map(int index); //maps orbital index to quantum numbers
double pi = 3.14159265359;
};
#endif // MONTECARLO_H
|
69a2d4d668d8c3a4478a4f7f459fb8a86c4be7c9
|
5e37052b3bdd009b990df312ec4a8ae9acb2303b
|
/trinode.cpp
|
e7fbde6ed8d23f0d6b806b376ac19ecfb719cc11
|
[] |
no_license
|
AdhamNour/InvertedIndex
|
26a741779e5673b91b43abdd871f776839e87631
|
0d0f9c23916555f7dee2306771a62200ca902396
|
refs/heads/master
| 2022-09-17T02:55:32.145669
| 2020-05-31T04:52:22
| 2020-05-31T04:52:22
| 263,547,214
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,879
|
cpp
|
trinode.cpp
|
#include "trinode.h"
#include <QFile>
#include<QTextStream>
TrieNode::TrieNode()
{
}
TrieNode::~TrieNode()
{
for (auto i = ChildNodes.begin(); i != ChildNodes.end(); i++)
delete i->second;
if (Files != nullptr)
delete Files;
}
void TrieNode::AddWord(const QString &word, const QFileInfo &File, int index)
{
if (index >= word.size()){
this->isCompleteWord = true;
if (this->Files == nullptr){
this->Files = new QFileInfoList;
}
this->Files->append(File);
return;
}
auto i = ChildNodes[word[index]];
if (i != nullptr)
i->AddWord(word, File, index + 1);
else{
i = new TrieNode;
i->AddWord(word, File, index + 1);
ChildNodes[word[index]] = i;//bug may exist here
}
}
QFileInfoList* TrieNode::getContainingFiles(const QString&TargetWord, int index)
{
if ((this->isCompleteWord) && (index == TargetWord.size()))
return this->Files;
else if (index != TargetWord.size())
{
auto i = ChildNodes[TargetWord[index]];
if (i != nullptr){
return i->getContainingFiles(TargetWord, index + 1);
}
else {
return nullptr;
}
}
else if (index == TargetWord.size()&& !(this->isCompleteWord))
{
return nullptr;
}
else{
return nullptr;
}
}
void TrieNode::saveTrie(QString word) {
if(this->isCompleteWord){
QFile save_file("/home/adhamnour/");
if(!save_file.open(QFile::Append|QFile::Text)){
cout<<"err"<<endl;
} else if(!save_file.open(QFile::WriteOnly|QFile::Text)){
cout<<"err2"<<endl;
}
QTextStream in(&save_file);
QString files;
for(auto file:*(this->Files)){
files += file.baseName()+'.'+file.completeSuffix()+",";
}
in<<word<<" "<<files<<"\n";
}
for(auto child : this->ChildNodes){
child.second->saveTrie(word + child.first);
}
}
|
da163bbeed2ede4f8b29da15cbdc474ce9187790
|
003675a2e2be3f835efd723626f0ee6d862e914f
|
/Codeforces/A/117A.cpp
|
5638537476a86c3a9cd906277a4f3d53021fde52
|
[] |
no_license
|
AkibShahrear/Competitive-Programming
|
6f4b26af1ae011d3cf45885dc86c4f64fca4334d
|
7fba94f669881dd7e7cb63b264c288c380c5d544
|
refs/heads/main
| 2023-08-12T16:57:41.020418
| 2021-10-18T19:49:44
| 2021-10-18T19:49:44
| 323,955,265
| 0
| 0
| null | 2020-12-23T17:17:59
| 2020-12-23T16:49:51
| null |
UTF-8
|
C++
| false
| false
| 670
|
cpp
|
117A.cpp
|
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int , int> pi;
#define pb push_back
void solve()
{
int n , m;
cin >> n >> m;
int d = 2*m - 2;
for(int i = 0; i < n; i++)
{
int s , f , t;
cin >> s >> f >> t;
int p = t/d*d;
if(s == f){cout<<t<<'\n'; continue; }
if(s < f){
if(p + (s - 1) < t) p += d;
cout<<p + f - 1<<'\n';
}
else{
p +=m-1;
if(p + (m -s) < t) p += d;
cout<<p + m - f<<'\n';
}
}
}
int main(int argc, char ** argv)
{
ios::sync_with_stdio(0);cin.tie(0);
solve();
return 0;
}
|
5623b8fdfd461d22a5d7c0e8258fe75a6efa9fb0
|
94dbc91d93df5778a2519a7112227c82f0600c65
|
/common/command.cpp
|
23dd8483c31f52bfa584ef14722080644f6d2146
|
[] |
no_license
|
kevinptt0323/NP-Project2
|
1a10e0e255784d7f1ffc79a2e4ff739c99234087
|
c1a63b9df6d0f4ac4317bb1891e49b0042c23024
|
refs/heads/master
| 2020-04-09T07:35:59.872473
| 2018-12-03T09:12:15
| 2018-12-03T09:12:15
| 160,162,846
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 761
|
cpp
|
command.cpp
|
#include "command.h"
#include <cstring>
#include <string>
#include <glob.h>
command::command() : file_in(""), file_out(""), user_pipe_in(-1), user_pipe_out(-1) {
}
command::command(const char* _cmd) : command() {
char *cmd = new char[strlen(_cmd)+1];
strcpy(cmd, _cmd);
char *argv, *ptr;
argv = strtok_r(cmd, " ", &ptr);
do {
if (strcmp(argv, "<") == 0)
file_in = strtok_r(NULL, " ", &ptr);
else if (strcmp(argv, ">") == 0)
file_out = strtok_r(NULL, " ", &ptr);
else if (argv[0] == '<')
user_pipe_in = atoi(argv+1);
else if (argv[0] == '>')
user_pipe_out = atoi(argv+1);
else
emplace_back(argv);
} while ((argv = strtok_r(NULL, " ", &ptr)));
delete[] cmd;
}
command::command(const std::string& cmd) : command(cmd.c_str()) {
}
|
3f4248aa5279eed62477ff627b43dd6254396e68
|
9a2cf82a9f705b03b1ce95136f03ba7bdf7c9b11
|
/bzoj/1013 [JSOI2008]球形空间产生器sphere.cpp
|
9c230123330ab3b60ccfc2836884d958d6263815
|
[] |
no_license
|
lowsfish/OI
|
de89c4431110941335a76a6fc47d52e73f445206
|
b00ee073bc8c37ea5992ef1fbdf9fb953a82aef4
|
refs/heads/master
| 2020-03-19T04:09:38.804926
| 2018-06-02T09:04:53
| 2018-06-02T09:04:53
| 135,800,512
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 985
|
cpp
|
1013 [JSOI2008]球形空间产生器sphere.cpp
|
#include<cstdio>
#include<algorithm>
#include<cmath>
const int MAXN=10+5;
const double eps=1e-10;
typedef double Matrix[MAXN][MAXN];
double po[MAXN][MAXN];
inline double sqr(double x)
{
return x*x;
}
void gauss(Matrix A,int n)
{
for(int i=0;i<n;++i)
{
int r=i;
for(int j=i+1;j<n;++j) if(fabs(A[j][i])>fabs(A[r][i])) r=j;
if(r!=i) std::swap(A[r],A[i]);
for(int j=i+1;j<n;++j)
{
double f=A[j][i]/A[i][i];
for(int k=i;k<=n;++k) A[j][k]-=f*A[i][k];
}
}
for(int i=n-1;i>=0;--i)
{
A[i][n]/=A[i][i];
for(int j=i-1;j>=0;--j) A[j][n]-=A[i][n]*A[j][i];
}
}
Matrix A;
int n;
int main()
{
scanf("%d",&n);
for(int i=0;i<=n;++i)
for(int j=0;j<n;++j) scanf("%lf",&po[i][j]);
double tmp=0;
for(int i=0;i<n;++i) tmp+=sqr(po[0][i]);
for(int i=0;i<n;++i)
{
A[i][n]=tmp;
for(int j=0;j<n;++j)
{
A[i][n]-=sqr(po[i+1][j]);
A[i][j]=2*(po[0][j]-po[i+1][j]);
}
}
gauss(A,n);
for(int i=0;i<n;++i)
printf("%.3f%c",A[i][n]+eps,i==n-1?'\n':' ');
return 0;
}
|
0aaf218e8cd4320d4c514ed8c3afab98a664ff6d
|
eded95d9e891342b51a686a4ae13c1eea96e1583
|
/ValidateBinarySearchTree.cpp
|
84e39d500ab7c7b87fc79a835c0e374522098e2d
|
[] |
no_license
|
suzhiyang/leetcode
|
caedddf3b6abb783f92bf91acb84e0e0ef664835
|
dc1cbaf25f6c2d12021cfffce88e54f0a29510e6
|
refs/heads/master
| 2021-01-18T22:46:51.577537
| 2016-08-03T15:40:59
| 2016-08-03T15:40:59
| 14,562,268
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,023
|
cpp
|
ValidateBinarySearchTree.cpp
|
#include <iostream>
#include "ds.h"
// class Solution {
// public:
// bool dfs(TreeNode *root, int l, int h)
// {
// if (root == NULL) return true;
// if (root->val <= l || root->val >= h) return false;
// return dfs(root->left, l, root->val) && dfs(root->right, root->val, h);
// }
// bool isValidBST(TreeNode* root) {
// if (root == NULL) return true;
// return dfs(root->left, INT_MIN, root->val) &&
// dfs(root->right, root->val, INT_MAX);
// }
// };
class Solution {
public:
bool inorder(TreeNode **prev, TreeNode *cur)
{
if (cur == NULL) return true;
if (inorder(prev, cur->left) == false) return false;
if (*prev != NULL && (*prev)->val >= cur->val) return false;
*prev = cur;
if (inorder(prev, cur->right) == false) return false;
return true;
}
bool isValidBST(TreeNode* root) {
TreeNode *prev = NULL;
return inorder(&prev, root);
}
};
int main()
{
}
|
d0a6f67cd6f1fdcf9f65b565401967381dff490e
|
97bbfa4d150b05427b3aaad489aa3bb87a54b808
|
/FlickrImageViewer/include/ph/TextureStore.h
|
0f63dd8dfa72d5c50a016241a2f6996248b7b015
|
[
"BSD-2-Clause"
] |
permissive
|
audionerd/Cinder-Samples
|
f41fdd59e426359a098aa18cbe28340ba9951c5b
|
73a24877c94fc10947b2ad1f0b0dbf085699ca8b
|
refs/heads/master
| 2021-01-15T23:45:11.023931
| 2012-12-03T20:41:37
| 2012-12-03T20:41:37
| 7,808,727
| 1
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 7,150
|
h
|
TextureStore.h
|
/*
Copyright (c) 2010-2012, Paul Houx - All rights reserved.
This code is intended for use with the Cinder C++ library: http://libcinder.org
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.
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.
*/
#pragma once
#include "cinder/Cinder.h"
#include "cinder/DataSource.h"
#include "cinder/ImageIo.h"
#include "cinder/Utilities.h"
#include "cinder/app/AppBasic.h"
#include "cinder/gl/Texture.h"
#include "ph/ConcurrentDeque.h"
#include "ph/ConcurrentMap.h"
#include <boost/thread.hpp>
#include <boost/functional/hash.hpp>
namespace ph {
typedef std::vector< boost::shared_ptr<boost::thread> > TextureStoreThreadPool;
// add a getUseCount() function to the gl::Texture class by extending it
class Texture : public ci::gl::Texture
{
public:
//! Default initializer. Points to a null Obj
Texture() : ci::gl::Texture(){};
/** \brief Constructs a texture of size(\a aWidth, \a aHeight), storing the data in internal format \a aInternalFormat. **/
Texture( int aWidth, int aHeight, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(aWidth, aHeight, format){};
/** \brief Constructs a texture of size(\a aWidth, \a aHeight), storing the data in internal format \a aInternalFormat. Pixel data is provided by \a data and is expected to be interleaved and in format \a dataFormat, for which \c GL_RGB or \c GL_RGBA would be typical values. **/
Texture( const unsigned char *data, int dataFormat, int aWidth, int aHeight, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(data, dataFormat, aWidth, aHeight, format){};
/** \brief Constructs a texture based on the contents of \a surface. A default value of -1 for \a internalFormat chooses an appropriate internal format automatically. **/
Texture( const ci::Surface8u &surface, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(surface, format){};
/** \brief Constructs a texture based on the contents of \a surface. A default value of -1 for \a internalFormat chooses an appropriate internal format automatically. **/
Texture( const ci::Surface32f &surface, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(surface, format){};
/** \brief Constructs a texture based on the contents of \a channel. A default value of -1 for \a internalFormat chooses an appropriate internal format automatically. **/
Texture( const ci::Channel8u &channel, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(channel, format){};
/** \brief Constructs a texture based on the contents of \a channel. A default value of -1 for \a internalFormat chooses an appropriate internal format automatically. **/
Texture( const ci::Channel32f &channel, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(channel, format){};
/** \brief Constructs a texture based on \a imageSource. A default value of -1 for \a internalFormat chooses an appropriate internal format based on the contents of \a imageSource. **/
Texture( ci::ImageSourceRef imageSource, ci::gl::Texture::Format format = Format() ) : ci::gl::Texture(imageSource, format){};
//! Constructs a Texture based on an externally initialized OpenGL texture. \a aDoNotDispose specifies whether the Texture is responsible for disposing of the associated OpenGL resource.
Texture( GLenum aTarget, GLuint aTextureID, int aWidth, int aHeight, bool aDoNotDispose ) : ci::gl::Texture(aTarget, aTextureID, aWidth, aHeight, aDoNotDispose){};
//! provide useCount for memory management
long getUseCount(){ return mObj.use_count(); };
};
class TextureStore
{
private:
TextureStore(void);
virtual ~TextureStore(void);
public:
// singleton implementation
static TextureStore& getInstance() {
static TextureStore tm;
return tm;
};
//! synchronously loads an image into a texture, stores it and returns it
ci::gl::Texture load(const std::string &url, ci::gl::Texture::Format fmt=ci::gl::Texture::Format());
//! asynchronously loads an image into a texture, returns immediately
ci::gl::Texture fetch(const std::string &url, ci::gl::Texture::Format fmt=ci::gl::Texture::Format());
//! remove url from the queue. Has no effect if image has already been loaded
bool abort(const std::string &url);
//! returns a list of valid extensions for image files. ImageIO::getLoadExtensions() does not seem to work.
std::vector<std::string> getLoadExtensions();
//! returns TRUE if image is scheduled for loading but has not been turned into a Texture yet
bool isLoading(const std::string &url);
//! returns TRUE if image has been turned into a Texture
bool isLoaded(const std::string &url);
//! returns an empty texture. Override it to supply something else in case a texture was not available.
virtual ci::gl::Texture empty(){ return ci::gl::Texture(); };
protected:
//!
boost::hash<std::string> hash;
//! list of created Textures
std::map<std::string, ph::Texture> mTextures;
//! queue of textures to load asynchronously
ConcurrentDeque<std::string> mQueue;
ConcurrentDeque<std::string> mLoadingQueue;
//! container for the asynchronously loaded surfaces
ConcurrentMap<std::string, ci::Surface> mSurfaces;
//! one or more worker threads
TextureStoreThreadPool mThreads;
private:
//! loads files in a separate thread and creates Surfaces. These are then passed to the main thread and turned into Textures.
void threadLoad();
public:
//! removes Textures from memory if no longer in use
void garbageCollect();
};
// helper functions for easier access
//! synchronously loads an image into a texture, stores it and returns it
inline ci::gl::Texture loadTexture(const std::string &url, ci::gl::Texture::Format fmt=ci::gl::Texture::Format()){ return TextureStore::getInstance().load(url, fmt); };
//! asynchronously loads an image into a texture, returns immediately
inline ci::gl::Texture fetchTexture(const std::string &url, ci::gl::Texture::Format fmt=ci::gl::Texture::Format()){ return TextureStore::getInstance().fetch(url, fmt); };
} // namespace ph
|
f24f2a5c431566fe78ac085271c7388f8f23460d
|
5d5baef098c65be072a7ce12899d320847e8636d
|
/Editor/energy_status_dlg.cpp
|
a5d3d8fb89869166a23911960f6e638ad59c0ef8
|
[] |
no_license
|
OlafvdSpek/xcc
|
e43bfdaf2fbac4c413fc7855ddf378b6d7975024
|
76adf95fc048d8c1143b3bcc8e777f870245680d
|
refs/heads/master
| 2023-03-23T13:10:33.983570
| 2023-03-12T08:30:29
| 2023-03-12T08:30:29
| 44,600,393
| 44
| 18
| null | 2016-02-17T17:16:10
| 2015-10-20T10:59:00
|
C++
|
UTF-8
|
C++
| false
| false
| 1,928
|
cpp
|
energy_status_dlg.cpp
|
#include "stdafx.h"
#include "energy_status_dlg.h"
#include "xcc_structures.h"
Cenergy_status_dlg::Cenergy_status_dlg(const Cxcc_level& level)
: CDialog(Cenergy_status_dlg::IDD, 0),
m_level(level)
{
//{{AFX_DATA_INIT(Cenergy_status_dlg)
//}}AFX_DATA_INIT
for (int i = 0; i < c_side_id; i++)
m_power_in[i] = m_power_out[i] = 0;
for (auto& i : m_level.structure_data)
{
m_power_in[i.side] += i.t->power_out;
m_power_out[i.side] += i.t->power_in;
}
}
void Cenergy_status_dlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Cenergy_status_dlg)
//}}AFX_DATA_MAP
DDX_Text(pDX, IDC_EDIT_BADGUY_IN, m_power_in[s_badguy]);
DDX_Text(pDX, IDC_EDIT_BADGUY_OUT, m_power_out[s_badguy]);
DDX_Text(pDX, IDC_EDIT_GOODGUY_IN, m_power_in[s_goodguy]);
DDX_Text(pDX, IDC_EDIT_GOODGUY_OUT, m_power_out[s_goodguy]);
DDX_Text(pDX, IDC_EDIT_MULTI1_IN, m_power_in[s_multi1]);
DDX_Text(pDX, IDC_EDIT_MULTI1_OUT, m_power_out[s_multi1]);
DDX_Text(pDX, IDC_EDIT_MULTI2_IN, m_power_in[s_multi2]);
DDX_Text(pDX, IDC_EDIT_MULTI2_OUT, m_power_out[s_multi2]);
DDX_Text(pDX, IDC_EDIT_MULTI3_IN, m_power_in[s_multi3]);
DDX_Text(pDX, IDC_EDIT_MULTI3_OUT, m_power_out[s_multi3]);
DDX_Text(pDX, IDC_EDIT_MULTI4_IN, m_power_in[s_multi4]);
DDX_Text(pDX, IDC_EDIT_MULTI4_OUT, m_power_out[s_multi4]);
DDX_Text(pDX, IDC_EDIT_MULTI5_IN, m_power_in[s_multi5]);
DDX_Text(pDX, IDC_EDIT_MULTI5_OUT, m_power_out[s_multi5]);
DDX_Text(pDX, IDC_EDIT_MULTI6_IN, m_power_in[s_multi6]);
DDX_Text(pDX, IDC_EDIT_MULTI6_OUT, m_power_out[s_multi6]);
DDX_Text(pDX, IDC_EDIT_NEUTRAL_IN, m_power_in[s_neutral]);
DDX_Text(pDX, IDC_EDIT_NEUTRAL_OUT, m_power_out[s_neutral]);
DDX_Text(pDX, IDC_EDIT_SPECIAL_IN, m_power_in[s_special]);
DDX_Text(pDX, IDC_EDIT_SPECIAL_OUT, m_power_out[s_special]);
}
BEGIN_MESSAGE_MAP(Cenergy_status_dlg, CDialog)
//{{AFX_MSG_MAP(Cenergy_status_dlg)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
|
3abd2abca5c32ee69c92066f0e0535f2b3f131af
|
564bddfa333cc31f847d68cd97ad5ecffaa30352
|
/main/src/deps/gpusurf/gpusurf/src/gpu_stereomatch.h
|
48ebb4714b8190c45ddbb873ffb58921ba41c3d0
|
[
"Apache-2.0"
] |
permissive
|
bhavitp/vtr3
|
11b452bd0a0f5233aed70cb6049620fa3bc1cb21
|
bdcad784ffe26fabfa737d0e195bcb3bacb930c3
|
refs/heads/main
| 2023-08-27T03:31:31.566239
| 2021-10-30T00:28:20
| 2021-10-30T00:28:20
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,634
|
h
|
gpu_stereomatch.h
|
#ifndef ASRL_SURF_GPU_STEREOMATCH_HPP
#define ASRL_SURF_GPU_STEREOMATCH_HPP
namespace asrl {
/**
* A function to find stereo matches between a rectified stereo pair of images that have had thier
* descriptors correlated.
*
* @param d_keypointsLeft Device pointer to the left keypoints.
* @param n_keypointsLeft The number of left keypoints.
* @param d_keypointsRight Device pointer to the right keypoints
* @param n_keypointsRight The number of right keypoints
* @param d_descriptorCorrelationMatrix The correlation matrix such that C[i,j] is the correlation value of the ith left descriptor with the ith right descriptor.
* @param d_leftRightMatches An array to hold the resulting left-right matches.
* @param y_tolerance The tolerance on the difference in y coordinates (number of standard deviations the right y coordinate can be from the left y coordinate)
* @param correlation_tolerance The minimum correlation value acceptable for a match.
* @param min_disparity The minimum allowable disparity.
* @param max_disparity The maximum allowable disparity.
* @param scale_tolerance The minimum allowable scale ratio between two matched features.
*/
void find_stereo_matches(Keypoint * d_keypointsLeft, int n_keypointsLeft, float * d_descriptorLeft,
Keypoint * d_keypointsRight, int n_keypointsRight, float * d_descriptorRight,
/*float * d_descriptorCorrelationMatrix,*/ int * d_leftRightMatches,
float y_tolerance, float correlation_tolerance, float min_disparity,
float max_disparity, float scale_tolerance);
};
#endif // ASRL_SURF_GPU_STEREOMATCH_HPP
|
88b15e127e312429fc6beaae63e08c84d23a5ea0
|
2d6c0fd4a2e97a39df4c350162807d4f8ad55c6c
|
/src/matrix.cpp
|
9de97951c68d9f10bb846d2d767c7b0c9a6c5440
|
[] |
no_license
|
gralm/Fraction
|
bbfa74c703f21947a16c5b37e423a4e65b2f1c50
|
afff4691baf75eb69f14845fd150bc1142404cd9
|
refs/heads/master
| 2021-05-16T07:01:41.466289
| 2017-09-14T20:22:08
| 2017-09-14T20:22:08
| 103,572,109
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,549
|
cpp
|
matrix.cpp
|
#include "matrix.hpp"
using namespace std;
template<class T>
void Matrix<T>::set(const Matrix<T> &M) {
for (int i=0; i<9; i++) {
x[i] = M.x[i];
}
}
template<class T>
Matrix<T>::Matrix() {
x = new T[9];
set(Unit);
}
template<class T>
Matrix<T>::~Matrix() {
delete[] x;
}
template<class T>
Matrix<T>::Matrix(const T *t) {
x = new T[9];
for (int i=0; i<9; i++) {
x[i] = t[i];
}
}
template<class T>
Matrix<T>::Matrix(
const T &t00, const T &t01, const T &t02,
const T &t10, const T &t11, const T &t12,
const T &t20, const T &t21, const T &t22) {
x = new T[9] {
t00, t01, t02,
t10, t11, t12,
t20, t21, t22
};
}
template<class T>
Matrix<T>::Matrix(const Matrix &M) {
x = new T[9];
set(M);
}
template<class T>
const Matrix<T> Matrix<T>::Unit(
static_cast<T>(1), static_cast<T>(0), static_cast<T>(0),
static_cast<T>(0), static_cast<T>(1), static_cast<T>(0),
static_cast<T>(0), static_cast<T>(0), static_cast<T>(1));
template<class T>
std::string Matrix<T>::toString() const {
return "";
}
template<class T>
T* Matrix<T>::operator[](int val) {
return x + (val*3);
}
template<class T> Matrix<T>& Matrix<T>::operator=(const Matrix<T> &M)
{
set(M);
return *this;
}
template<class T>
T Matrix<T>::getDeterminant() const {
T t(0);
for (int i=0; i<3; i++) {
t += x[i] * x[3+(i+1)%3] * x[6+(i+2)%3];
t -= x[i] * x[3+(i+2)%3] * x[6+(i+1)%3];
}
return t;
}
template<class T>
void Matrix<T>::invert() {
Matrix<T> V;
V = getInversion();
set(V);
}
template<class T>
Matrix<T> Matrix<T>::getInversion() const {
T det = getDeterminant();
Matrix<T> toReturn;
for (int r=0; r<3; r++) {
for (int c=0; c<3; c++) {
T A11(x[((c+1)%3)*3 + ((r+1)%3)]);
T A12(x[((c+1)%3)*3 + ((r+2)%3)]);
T A21(x[((c+2)%3)*3 + ((r+1)%3)]);
T A22(x[((c+2)%3)*3 + ((r+2)%3)]);
toReturn.x[r*3+c] = A11*A22;
toReturn.x[r*3+c] -= A12*A21;
toReturn.x[r*3+c] /= det;
}
}
return toReturn;
}
template<class T>
Matrix<T> Matrix<T>::multiply(const Matrix<T> &M) const {
Matrix<T> t;
for (int r=0; r<3; r++) {
for (int c=0; c<3; c++) {
t.x[r*3+c] = 0;
for (int i=0; i<3; i++) {
t.x[r*3+c] += x[r*3+i] * M.x[i*3+c];
}
}
}
return t;
}
template<class T>
Matrix<T> Matrix<T>::operator*(const Matrix &M) const {
Matrix<T> t;
for (int r=0; r<3; r++) {
for (int c=0; c<3; c++) {
t.x[r*3+c] = 0;
for (int i=0; i<3; i++) {
t.x[r*3+c] += x[r*3+i] * M.x[i*3+c];
}
}
}
return t;
}
template<class T>
bool Matrix<T>::test() const {
bool result = true;
for (int r=0; r<3; r++) {
for (int c=0; c<3; c++) {
T val = static_cast<T>(r==c? 1: 0);
if (x[r*3+c] != val) {
cout << "error: X[" << r << "][" << c << "] = " << x[3*r+c] << " != " << (r==c? 1: 0) << endl;
result = false;
}
}
}
return result;
}
template<class T> bool Matrix<T>::operator==(const Matrix<T> &M) {
for (int i=0; i<9; i++) {
if (x[i] != M.x[i])
return false;
}
return true;
}
template<class T> bool Matrix<T>::operator!=(const Matrix<T> &M) {
return !(*this == M);
}
template<class U>
ostream& operator<<(ostream &os, const Matrix<U> &m) {
os << "[" << m.x[0] << ",\t" << m.x[1] << ",\t" << m.x[2] << ",\n";
os << m.x[3] << ",\t" << m.x[4] << ",\t" << m.x[5] << ",\n";
os << m.x[6] << ",\t" << m.x[7] << ",\t" << m.x[8] << "]";
return os;
}
template class Matrix<double>;
template class Matrix<Fraction>;
template std::ostream& operator<<(std::ostream &os, const Matrix<double> &m);
template std::ostream& operator<<(std::ostream &os, const Matrix<Fraction> &m);
|
649116247cc655d57c73a3e3b637ad56d2b5688d
|
ce74f818cd970f01a703fcecbbba833dc14a8ae6
|
/voltage-sensor-with-esp32-wifi.ino
|
eab0aa7fbcb23f94fda061d1d742b4722a1b1471
|
[] |
no_license
|
Sandromesquita/ESP32
|
60ca0b4b16503fb81484faf5207777243f3101a8
|
9eedee73c3b2c68173022d6deca0cc4e442be9dd
|
refs/heads/main
| 2023-05-05T07:30:09.253257
| 2021-05-24T18:56:37
| 2021-05-24T18:56:37
| 370,328,379
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,446
|
ino
|
voltage-sensor-with-esp32-wifi.ino
|
#include <WiFi.h>
const char* ssid = "ATACON-2.4G";
const char* password = "05270902";
WiFiServer server(80);
int readPinSensor; //Variável para leitura da porta analógica
float volts, volts2; //Armazenar o cálculo
void setup() {
Serial.begin(115200);
pinMode(33, INPUT);
Serial.println();
Serial.print("Conectando-se a ");
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi conectada.");
Serial.println("Endereço de IP: ");
Serial.println(WiFi.localIP());
server.begin();
}
void loop() {
WiFiClient client = server.available();
if (client) {
Serial.println("Novo Cliente.");
while (client.connected()) {
readPinSensor = analogRead(33);
volts = ((readPinSensor * 0.00123) * 3.6);
volts = volts + volts*0.06;
String request = client.readStringUntil('\r');
Serial.println(request);
client.flush();
client.println("<html>");
client.println();
client.println("<h1><center>ARDUINO OMEGA</center></h1>");
client.print("<center><font size='5'>Valor da Tensao: " + String(volts) + "</center>");
client.println();
client.println("</html>");
delay(1);
}
}
client.stop();
//Serial.println("Client Disconnected.");
delay(1);
}
|
a8df078ee86083e8d64f21d7cafc95eb4652846e
|
c29d3927edc897dca78865b4d19a243462f6ac93
|
/hylafax/src/libhylafax/TypeRules.cpp
|
54d9b8a7e5429c3f51fb1a4dc1c4ccd80bbd4611
|
[] |
no_license
|
trandaihiep/hylafax
|
f74b58935e8b4794fe809ad7ec8afedfd6afc937
|
1409e7664404db7887116a56fa47e9272e7b5883
|
refs/heads/master
| 2021-01-01T17:53:22.699025
| 2017-07-27T17:52:36
| 2017-07-27T17:52:36
| 98,186,718
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 13,499
|
cpp
|
TypeRules.cpp
|
/* $Id$ */
/*
* Copyright (c) 1990-1996 Sam Leffler
* Copyright (c) 1991-1996 Silicon Graphics, Inc.
* HylaFAX is a trademark of Silicon Graphics
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that (i) the above copyright notices and this permission notice appear in
* all copies of the software and related documentation, and (ii) the names of
* Sam Leffler and Silicon Graphics may not be used in any advertising or
* publicity relating to the software without the specific, prior written
* permission of Sam Leffler and Silicon Graphics.
*
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
*
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
#include <ctype.h>
#include "Array.h"
#include "TypeRules.h"
#include "PageSize.h"
#include "config.h"
#include <string.h>
#include <stdlib.h>
#ifdef _XOPEN_SOURCE_EXTENDED
#include <arpa/inet.h>
#else
extern "C" {
#include <netinet/in.h>
}
#endif
#include "NLS.h"
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
TypeRule::TypeRule() {}
TypeRule::~TypeRule() {}
TypeRule::TypeRule(const TypeRule& other)
: fxObj(other)
, cmd(other.cmd)
{
off = other.off;
cont = other.cont;
type = other.type;
op = other.op;
value.v = other.value.v;
result = other.result;
}
static const char* typeNames[] =
{ "ascii", "asciiesc", "string", "istring", "address", "byte", "short", "long" };
static const char* opNames[] =
{ "<any>", "=", "!=", "<", "<=", ">", ">=", "&", "^", "!" };
static const char* resultNames[] = { "tiff", "postscript", "pdf", "pcl", "error" };
fxStr
quoted(const fxStr& s)
{
fxStr q("'");;
for (u_int i = 0; i < s.length(); i++) {
if (s[i] == '\'')
q.append("'\\''");
else
q.append(s[i]);
}
q.append("'");
return (q);
}
bool
TypeRule::match(const void* data, size_t size, bool verbose) const
{
if (verbose) {
// translator: This shows the rule to be processed (the last two %s) starting at offset %#lx.
printf(NLS::TEXT("rule: %soffset %#lx %s %s"),
cont ? ">" : "",
(u_long) off,
typeNames[type],
opNames[op]
);
if (type == STRING || type == ISTRING)
printf(" \"%s\"", value.s);
else if (type != ASCII && type != ASCIIESC) {
if (op == ANY)
printf(NLS::TEXT(" <any value>"));
else
printf(" %#llx", (long long) value.v);
}
printf(" -- ");
}
if (off > (off_t)size) {
if (verbose)
printf(NLS::TEXT("failed (offset past data)\n"));
return (false);
}
bool ok = false;
long v = 0;
const u_char* cp = (const u_char*) data;
switch (type) {
case ASCII:
{
u_int i;
for (i = 0; i < size; i++)
if (!isprint(cp[i]) && !isspace(cp[i])) {
if (verbose)
printf(NLS::TEXT("failed (unprintable char %#x)\n"), cp[i]);
return (false);
}
ok = true;
goto done;
}
case ASCIIESC:
{
u_int i;
for (i = 0; i < size; i++)
if (!isprint(cp[i]) && !isspace(cp[i]) && cp[i] != '\033') {
if (verbose)
printf(NLS::TEXT("failed (unprintable char %#x)\n"), cp[i]);
return (FALSE);
}
ok = TRUE;
goto done;
}
case STRING:
ok = (strncmp((const char*)(cp+off), value.s,
fxmin((u_int) strlen(value.s), (u_int)(size-off))) == 0);
goto done;
case ISTRING:
ok = (strncasecmp((const char*)(cp+off), value.s,
fxmin((u_int) strlen(value.s), (u_int)(size-off))) == 0);
goto done;
case ADDR:
v = (u_long) off;
break;
case BYTE:
v = *cp;
break;
case SHORT:
if (off + 2 < (off_t)size) {
u_short w;
memcpy(&w, cp+off, 2);
v = ntohs(w);
break;
}
if (verbose)
printf(NLS::TEXT("failed (insufficient data)\n"));
return (false);
case LONG:
if (off + 4 < (off_t)size) {
memcpy(&v, cp+off, 4);
v = ntohl(v);
break;
}
if (verbose)
printf(NLS::TEXT("failed (insufficient data)\n"));
return (false);
}
/*
* Numeric value, use operation.
*/
switch (op) {
case ANY: ok = true; break;
case EQ: ok = (v == value.v); break;
case NE: ok = (v != value.v); break;
case LT: ok = (v < value.v); break;
case LE: ok = (v <= value.v); break;
case GT: ok = (v > value.v); break;
case GE: ok = (v >= value.v); break;
case AND: ok = ((v&value.v) == value.v); break;
case NOT: ok = ((v&value.v) != value.v); break;
case XOR: ok = ((v^value.v) != 0); break;
}
done:
if (verbose) {
if (ok)
printf(NLS::TEXT("success (result %s, rule \"%s\")\n"),
resultNames[result], (const char*) cmd);
else
printf(NLS::TEXT("failed (comparison)\n"));
}
return (ok);
}
/*
* rule: a string passed to the shell to convert the input file
* to the result format (suitable for sending as facsimile).
* The rule string is a printf-like string that should use the
* following "%" escapes:
* %i input file name
* %o output file name
* %r output horizontal resolution in pixels/mm
* %R output horizontal resolution in pixels/inch
* %v output vertical resolution in lines/mm
* %V output vertical resolution in lines/inch
* %f data format, 1 for 1-d encoding or 2 for 2-d encoding
* %w page width in pixels
* %W page width in mm
* %l page length in pixels
* %L page length in mm
* %s page size by name
* %F the pathname of the fax library (e.g./usr/local/lib/fax)
* %<x> the <x> character (e.g. ``%%'' results in ``%''
*/
fxStr
TypeRule::getFmtdCmd(
const fxStr& input, const fxStr& output,
float hr, float vr, const fxStr& df, const fxStr& pname) const
{
fxStr fmtd;
const PageSizeInfo* info = PageSizeInfo::getPageSizeByName(pname);
float pw = info->width();
float pl = info->height();
for (u_int i = 0, n = cmd.length(); i < n; i++) {
char c = cmd[i];
if (c == '%' && i+1 < n) {
i++;
switch (c = cmd[i]) {
case 'i': fmtd.append(quoted(input)); continue;
case 'o': fmtd.append(quoted(output)); continue;
case 'R': fmtd.append(fxStr(hr, "%.2f")); continue;
case 'r': fmtd.append(fxStr(hr/25.4, "%.2g")); continue;
case 'V': fmtd.append(fxStr(vr, "%.2f")); continue;
case 'v': fmtd.append(fxStr(vr/25.4, "%.2g")); continue;
case 'f': fmtd.append(df); continue;
case 'W': fmtd.append(fxStr(pw, "%.4g")); continue;
case 'w': fmtd.append(fxStr(pw*hr/25.4, "%.0f")); continue;
case 'L': fmtd.append(fxStr(pl, "%.4g")); continue;
case 'l': fmtd.append(fxStr(pl*vr/25.4, "%.0f")); continue;
case 'F': fmtd.append(fxStr(FAX_LIBEXEC)); continue;
case 's': fmtd.append(pname); continue;
}
}
fmtd.append(c);
}
return fmtd;
}
fxDECLARE_ObjArray(TypeRuleArray, TypeRule)
fxIMPLEMENT_ObjArray(TypeRuleArray, TypeRule)
TypeRules::TypeRules()
{
verbose = false;
rules = new TypeRuleArray;
}
TypeRules::~TypeRules()
{
delete rules;
}
void
TypeRules::setVerbose(bool b)
{
verbose = b;
}
#include <ctype.h>
static bool
appendLine(fxStr& s, const char* line)
{
const char* cp = line;
for (; isspace(*cp); cp++)
;
if (cp > line) // put back one bit of white space
cp--;
const char* cmd = cp;
if (*cp != '\0' && *cp != '\n' && *cp != '#') {
do {
cp++;
if (cp[-1] == '\\') {
if (*cp == '\n') { // continue cmd string on next line
s.append(cmd, cp-1 - cmd);
return (true);
} else if (*cp) // accept anything but \\0
cp++;
}
} while (*cp != '\0' && *cp != '\n' && *cp != '#');
s.append(fxStr(cmd, cp-cmd));
}
return (false);
}
#include <stdarg.h>
static void
parseError(const char* file, u_int lineno, const char* fmt ...)
{
va_list ap;
va_start(ap, fmt);
// translator: "line" as in the line number %u of filename %s.
fprintf(stderr, NLS::TEXT("%s: line %u: "), file, lineno);
vfprintf(stderr, fmt, ap);
va_end(ap);
}
TypeRules*
TypeRules::read(const fxStr& file)
{
FILE* fp;
fp = fopen(file, "r");
if (fp == NULL) {
fprintf(stderr, NLS::TEXT("%s: Can not open type rules file.\n"),
(const char*) file);
return NULL;
}
TypeRules* tr = new TypeRules;
char line[256];
u_int lineno = 0;
while (fgets(line, sizeof (line), fp) != NULL) {
lineno++;
char* cp = line;
if (*cp == '\n' || *cp == '#')
continue;
TypeRule rule;
if (*cp == '>') { // continuation
rule.cont = true;
cp++;
} else
rule.cont = false;
const char *op = cp;
rule.off = strtoul(op, &cp, 0); // file offset
if (cp == op) {
parseError(file, lineno, NLS::TEXT("Missing file offset"));
continue;
}
while (isspace(*cp))
cp++;
const char* tp = cp;
while (*cp && !isspace(*cp)) // data type
cp++;
if (strncasecmp(tp, "byte", cp-tp) == 0)
rule.type = TypeRule::BYTE;
else if (strncasecmp(tp, "short", cp-tp) == 0)
rule.type = TypeRule::SHORT;
else if (strncasecmp(tp, "long", cp-tp) == 0)
rule.type = TypeRule::LONG;
else if (strncasecmp(tp, "string", cp-tp) == 0)
rule.type = TypeRule::STRING;
else if (strncasecmp(tp, "istring", cp-tp) == 0)
rule.type = TypeRule::ISTRING;
else if (strncasecmp(tp, "ascii", cp-tp) == 0)
rule.type = TypeRule::ASCII;
else if (strncasecmp(tp, "asciiesc", cp-tp) == 0)
rule.type = TypeRule::ASCIIESC;
else if (strncasecmp(tp, "addr", cp-tp) == 0)
rule.type = TypeRule::ADDR;
else {
parseError(file, lineno, NLS::TEXT("Unknown datatype \"%.*s\""), cp-tp, tp);
continue; // bad type
}
while (isspace(*cp))
cp++;
rule.op = TypeRule::EQ; // default is '='
const char* vp = cp;
if (rule.type != TypeRule::STRING && rule.type != TypeRule::ISTRING
&& rule.type != TypeRule::ASCII && rule.type != TypeRule::ASCIIESC) {
// numeric value
switch (*vp) {
case '=': rule.op = TypeRule::EQ; cp++; break;
case '^': rule.op = TypeRule::XOR; cp++; break;
case '&': rule.op = TypeRule::AND; cp++; break;
case 'x': rule.op = TypeRule::ANY; cp++; break;
case '>':
if (cp[1] == '=') {
rule.op = TypeRule::GE; cp++;
} else
rule.op = TypeRule::GT;
cp++;
break;
case '<':
if (cp[1] == '=') {
rule.op = TypeRule::LE; cp++;
} else
rule.op = TypeRule::LT;
cp++;
break;
case '!':
if (cp[1] == '=') {
rule.op = TypeRule::NE; cp++;
} else
rule.op = TypeRule::NOT;
cp++;
break;
}
if (rule.op != TypeRule::ANY) {
const char* vp = cp;
rule.value.v = strtol(vp, &cp, 0);
if (vp == cp) {
parseError(file, lineno, NLS::TEXT("Missing match value"));
continue;
}
}
} else { // string value
while (*cp != '\0' && *cp != '\t') // NB: accept blanks
cp++;
if (*cp != '\t')
continue;
u_int len = cp-vp;
rule.value.s = (char*) malloc(len+1); // +1 for \0
memcpy(rule.value.s, vp, len);
rule.value.s[len] = '\0';
}
while (isspace(*cp))
cp++;
const char* rp = cp;
while (isalpha(*cp))
cp++;
if (strncasecmp(rp, "tiff", cp-rp) == 0)
rule.result = TypeRule::TIFF;
else if (strncasecmp(rp, "ps", cp-rp) == 0)
rule.result = TypeRule::POSTSCRIPT;
else if (strncasecmp(rp, "pdf", cp-rp) == 0)
rule.result = TypeRule::PDF;
else if (strncasecmp(rp, "pcl", cp-rp) == 0)
rule.result = TypeRule::PCL;
else if (strncasecmp(rp, "error", cp-rp) == 0)
rule.result = TypeRule::ERROR;
else {
parseError(file, lineno, NLS::TEXT("Unknown result \"%.*s\""), cp-rp, rp);
continue;
}
while (isspace(*cp))
cp++;
const char* cmd = cp; // collect cmd string
if (*cp != '\0' && *cp != '\n' && *cp != '#') {
bool done = false; // XXX workaround compiler limitation
do {
cp++;
if (cp[-1] == '\\') {
if (*cp == '\n') { // continue cmd string on next line
rule.cmd = fxStr(cmd, cp-1 - cmd);
while (fgets(line, sizeof (line), fp) != NULL &&
appendLine(rule.cmd, line))
;
done = true;
} else if (*cp) // accept anything but \\0
cp++;
}
} while (!done && *cp != '\0' && *cp != '\n' && *cp != '#');
if (!done)
rule.cmd = fxStr(cmd, cp-cmd);
}
tr->rules->append(rule);
}
(void) fclose(fp);
return (tr);
}
/*
* Check secondary matching rules after a primary match.
*/
u_int
TypeRules::match2(u_int base, const void* data, u_int size, bool verb) const
{
for (u_int i = 1, n = (*rules).length() - base; i < n; i++) {
TypeRule& rule = (*rules)[base+i];
if (!rule.isContinuation())
break;
if (rule.match(data, size, verb))
return (i);
}
return 0;
}
const TypeRule*
TypeRules::match(const void* data, u_int size) const
{
if (verbose)
printf(NLS::TEXT("match against (..., %u)\n"), size);
for (u_int i = 0, n = (*rules).length(); i < n; i++) {
TypeRule& rule = (*rules)[i];
if (!rule.isContinuation() && rule.match(data, size, verbose))
return (&(*rules)[i + match2(i, data, size, verbose)]);
}
if (verbose)
printf(NLS::TEXT("no match\n"));
return (NULL);
}
|
2d3e55e6e703c6bc8b7de4555a0d32419537bd00
|
4b8ed0675608801b3678d3826e24e7e7c405b9a9
|
/BOJ/1261.cpp
|
972112711a7a0cda738c72ddaf2fe4842ae54cbb
|
[] |
no_license
|
youngwo-o/Algorithm
|
33d8f4e056e54c6553ac06234b305b756160200c
|
0a9c387df644f15782ab92f32dfff846eb509c31
|
refs/heads/master
| 2023-04-16T17:11:14.309247
| 2021-04-24T13:15:53
| 2021-04-24T13:15:53
| 264,844,112
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,041
|
cpp
|
1261.cpp
|
#include <bits/stdc++.h>
#define MAX 100
using namespace std;
typedef struct _info {
int r, c, cnt;
}Info;
struct compare {
bool operator()(const Info& a, const Info& b) {
return a.cnt > b.cnt;
}
};
int N, M;
string arr[MAX];
int visited[MAX][MAX];
int d[4][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
void solution() {
memset(visited, 0x3f, sizeof(visited));
priority_queue<Info, vector<Info>, compare> pq;
pq.push({ 0, 0, 0 });
visited[0][0] = 0;
while (!pq.empty()) {
Info now = pq.top();
pq.pop();
if (now.cnt > visited[now.r][now.c]) continue;
for (int i = 0; i < 4; ++i) {
int nr = now.r + d[i][0];
int nc = now.c + d[i][1];
if (nr < 0 || nr >= N || nc < 0 || nc >= M) continue;
int nextCnt = now.cnt;
if (arr[nr][nc] == '1') nextCnt++;
if (visited[nr][nc] > nextCnt) {
visited[nr][nc] = nextCnt;
pq.push({ nr, nc, nextCnt });
}
}
}
}
int main() {
cin >> M >> N;
for (int i = 0; i < N; ++i) {
cin >> arr[i];
}
solution();
cout << visited[N - 1][M - 1];
return 0;
}
|
ab66168cd9c97a1fa04f034e2387e3af9a66ca28
|
a7b9ab2b2bf1302ba2d4267fd77916245f96fa00
|
/assignments/program_4/main.cpp
|
d70bac5451fcdece42ffa133637c90999012b88d
|
[] |
no_license
|
saikiranpalimpati/3013-Algorithms-palimpati
|
448dfcbecefe6ba2d856114cbfdb7c30449d0e94
|
7772addf939b6b132163f71e396228b87b828fbe
|
refs/heads/master
| 2023-07-20T05:40:46.374101
| 2023-07-07T05:19:11
| 2023-07-07T05:19:11
| 118,012,590
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 5,365
|
cpp
|
main.cpp
|
///////////////////////////////////////////////////////////////////////////////
//
// Title: Spanning Trees
// Files: csv.h, distance.h, edge_heap.h, graph.h,
// filtered_cities.csv, main.cpp
// Semester: (3013 Adv structures Algorithm) Spring 2018
//
// Author: saikiran palimpati
// Email: palimpatisaikiran@yahoo.in
// Description:
// A list of cities are taken and then a graph structure is created
// in which each city is connected to one of its neighbouring cities and
// then distance is calculated between them by calculating the sum of
// weights of edges which are passed during the reach of a city from one
/////////////////////////////////////////////////////////////////////////////////
// A simple representation of graph using STL
#include "graph.h"
using namespace std;
//// Create a graph structure with cities as Vertices and no Edges initially
graph loadGraphCSV(string filename)
{
printf("Loading Data from csv\n");
int zip;
double lat;
double lon;
string city;
string state;
string county;
strMapInt cityCheck;
int i = 0;
graph G;
ifstream file(filename);
for (CSVIterator loop(file); loop != CSVIterator(); ++loop)
{
zip = stoi((*loop)[0]);
if ((*loop)[1].length() > 0)
{
lat = stod((*loop)[1]);
}
else
{
lat = 0.0;
}
if ((*loop)[2].length() > 0)
{
lon = stod((*loop)[2]);
}
else
{
lon = 0.0;
}
city = (*loop)[3];
state = (*loop)[4];
county = (*loop)[5];
//cout << city << " " << state << endl;
if (cityCheck.find(city) == cityCheck.end())
{
// Add the city as a key to the map.
cityCheck[city] = 0;
G.addVertex(city, state, lat, lon);
i++;
}
}
return G;
}
int minDistance(double dist[], bool sptSet[], int V)
{
// Initialize min value
int min = INT_MAX, min_index;
for (int v = 0; v <V; v++)
if (sptSet[v] == false && dist[v] <= min)
min = dist[v], min_index = v;
return min_index;
}
std::ofstream outfile;
///calculating the neighbour distance + edges
double* calculateNeighbour(graph g, int src, int dest)
{
int V = g.id;
double *dist = new double[V]; // The output array. dist[i] will hold the shortest
// distance from src to i
int *edge = new int[V];
int fe = 0;
bool *sptSet = new bool[V]; // sptSet[i] will true if vertex i is included in shortest
// path tree or shortest distance from src to i is finalized
// Initialize all distances as INFINITE and stpSet[] as false
for (int i = 0; i < V; i++)
dist[i] = 999999999, edge[i] = 0, sptSet[i] = false;
// Distance of source vertex from itself is always 0
dist[src] = 0;
// Find shortest path for all vertices
for (int count = 0; count < V - 1; count++)
{
// Pick the minimum distance vertex from the set of vertices not
// yet processed. u is always equal to src in first iteration.
int u = minDistance(dist, sptSet, V);
// Mark the picked vertex as processed
sptSet[u] = true;
int v = 0;
// Update dist value of the adjacent vertices of the picked vertex.
for (v = 0; v < g.vertexList[u]->E.size(); v++)
{
// Update dist[v] only if is not in sptSet, there is an edge from
// u to v, and total weight of path from src to v through u is
// smaller than current value of dist[v]
int t = g.vertexList[u]->E.at(v).toID;
double distance = distanceEarth(g.vertexList[u]->loc.lat, g.vertexList[u]->loc.lon, g.vertexList[t]->loc.lat, g.vertexList[t]->loc.lon);
if (!sptSet[t] && distance > 0 && dist[u] != INT_MAX && dist[u] + distance < dist[t])
{
edge[dest]++;
dist[t] = dist[u] + distance;
dist[dest] = t;
}
}
}
dist[dest] = (dist[dest] / dest);
int val = dist[dest];
val = val % 2000;
int ed = dest % 200 + edge[dest] % 200;
outfile << ed * 2 << " miles " << ed << " edges" << endl;
return dist;
}
///return vertex id for lat and lon
int searchVertexId(graph g, double lat, double lon)
{
double min = 9999999999;
int id = 0;
for (int i = 0; i < g.vertexList.size(); i++)
{
double distance = distanceEarth(g.vertexList[i]->loc.lat, g.vertexList[i]->loc.lon, lat, lon);
if (distance < min)
{
min = distance;
id = g.vertexList[i]->ID;
//cout << distance<<endl;
}
}
return id;
}
// Test Driver
int main(int argc, char **argv)
{
graph G = loadGraphCSV("filtered_cities.csv");
G.createSpanningTree("PR");
outfile.open("result.txt", std::ios_base::app);
ofstream outfile2("visualize.txt");
/// lebanon,kansas
int vId = searchVertexId(G, 39.8097, -98.5556);
int sId = searchVertexId(G, 18.1133, -67.0397);
outfile << "- Lebanon, Kansas\n";
calculateNeighbour(G, sId, vId);
printf("Running Algo\n");
outfile << "- Miami, Florida" << endl;
vId = searchVertexId(G, 25.5584, -80.4582);
calculateNeighbour(G, sId, vId);
outfile << "- Dallas, Texas" << endl;
vId = searchVertexId(G, 33.1311, -97.0086);
calculateNeighbour(G, sId, vId);
outfile << "- Boston, Massachusetts" << endl;
vId = searchVertexId(G, 42.3706, -71.027);
calculateNeighbour(G, sId, vId);
outfile << "- San Juan, Puerto Rico (and staying in Puerto Rico)" << endl;
vId = searchVertexId(G, 18.1133, -67.0397);
calculateNeighbour(G, sId, vId);
outfile.close();
outfile2 << G.graphViz(false);
outfile2.close();
}
|
351ebf25ce2e3410f072d71dd1b1b93911c7465f
|
0a65d208bc5237583274656e2b12abd060953e7c
|
/Src/Turn.h
|
40b4dbcb66a81734c77e029a3cfc31944b862e06
|
[
"MIT"
] |
permissive
|
acprog/kozel
|
9065e079aebd8bdf7738a940bbc1de1e0d85e419
|
3617ebc82c4e855bdb6f1f18aa611fcb6ff5c781
|
refs/heads/master
| 2023-04-11T00:34:29.757838
| 2021-04-26T14:07:32
| 2021-04-26T14:07:32
| 361,771,622
| 0
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 1,393
|
h
|
Turn.h
|
/* Kozel
Copyright (C) 2004
Author: Alexander Semenov <acmain@gmail.com>
*/
#ifndef TURN_H_
#define TURN_H_
#include "Kozel.h"
#include "card.h"
class player;
class card;
enum move_test
{
pass, // можно ходить
bad_suit,// ход не в масть
trump // первый ход козырем
};
//==============================================================
// один ход
//==============================================================
class turn
{
public:
turn();
turn(const turn &t);
const turn &operator=(const turn &t);
void clear();
void add_move(const player *p, card c);
bool end() const { return n==g_prefs.n_players || k6_and_kq==2; };
void draw() const; // вид от VIEW_PLAYER
void draw_card(int x, int y, card c) const;
move_test correct_move(const card &c) const;
bool kq_caught() const { return k6_and_kq==2; };
//-------------------------------------------------------------------------
static bool catch_possible; // есть шанс поймать
Level first; // заход
private:
card move[4]; // ходы всех игроков. move[].droped - уже сходил
Int8 cast, // взятка
winer, // id берущего игрока
n, // кол-во сходивших
k6_and_kq; // в заходе есть k6 или kq (0 - нет, 1-одна, 2 -обе)
friend class player;
};
#endif // TURN_H_
|
b5d1493f763b58a7942cdec9af28d9ff3139646d
|
91b61b0a8ef30046cb9a168b9220b042893bebe8
|
/Practica5/Ej2Ra/StringService.h
|
36fae850cfafb9c457555a631aea825ebe42a7bd
|
[] |
no_license
|
yosoyfucho/arq2
|
8bcd1cb70a2d090571933b187a139ab159a061b3
|
082864d124d48022ea40d2f35845ffff24816bae
|
refs/heads/master
| 2020-06-04T21:55:37.471974
| 2015-05-12T07:48:01
| 2015-05-12T07:48:01
| 28,831,615
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 27,773
|
h
|
StringService.h
|
// **********************************************************************
//
// Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.5.0
//
// <auto-generated>
//
// Generated from file `StringService.ice'
//
// Warning: do not edit this file.
//
// </auto-generated>
//
#ifndef __StringService_h__
#define __StringService_h__
#include <Ice/ProxyF.h>
#include <Ice/ObjectF.h>
#include <Ice/Exception.h>
#include <Ice/LocalObject.h>
#include <Ice/StreamHelpers.h>
#include <Ice/Proxy.h>
#include <Ice/Object.h>
#include <Ice/Outgoing.h>
#include <Ice/OutgoingAsync.h>
#include <Ice/Incoming.h>
#include <Ice/Direct.h>
#include <IceUtil/ScopedArray.h>
#include <IceUtil/Optional.h>
#include <Ice/StreamF.h>
#include <Ice/UndefSysMacros.h>
#ifndef ICE_IGNORE_VERSION
# if ICE_INT_VERSION / 100 != 305
# error Ice version mismatch!
# endif
# if ICE_INT_VERSION % 100 > 50
# error Beta header file detected
# endif
# if ICE_INT_VERSION % 100 < 0
# error Ice patch level mismatch!
# endif
#endif
namespace IceProxy
{
namespace UC3M
{
class StringService;
void __read(::IceInternal::BasicStream*, ::IceInternal::ProxyHandle< ::IceProxy::UC3M::StringService>&);
::IceProxy::Ice::Object* upCast(::IceProxy::UC3M::StringService*);
}
}
namespace UC3M
{
class StringService;
bool operator==(const StringService&, const StringService&);
bool operator<(const StringService&, const StringService&);
::Ice::Object* upCast(::UC3M::StringService*);
typedef ::IceInternal::Handle< ::UC3M::StringService> StringServicePtr;
typedef ::IceInternal::ProxyHandle< ::IceProxy::UC3M::StringService> StringServicePrx;
void __patch(StringServicePtr&, const ::Ice::ObjectPtr&);
}
namespace UC3M
{
class Callback_StringService_stringSize_Base : virtual public ::IceInternal::CallbackBase { };
typedef ::IceUtil::Handle< Callback_StringService_stringSize_Base> Callback_StringService_stringSizePtr;
class Callback_StringService_toUpperCase_Base : virtual public ::IceInternal::CallbackBase { };
typedef ::IceUtil::Handle< Callback_StringService_toUpperCase_Base> Callback_StringService_toUpperCasePtr;
}
namespace IceProxy
{
namespace UC3M
{
class StringService : virtual public ::IceProxy::Ice::Object
{
public:
::Ice::Int stringSize(const ::std::string& s)
{
return stringSize(s, 0);
}
::Ice::Int stringSize(const ::std::string& s, const ::Ice::Context& __ctx)
{
return stringSize(s, &__ctx);
}
#ifdef ICE_CPP11
::Ice::AsyncResultPtr
begin_stringSize(const ::std::string& s, const ::IceInternal::Function<void (::Ice::Int)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& sent = ::IceInternal::Function<void (bool)>())
{
return __begin_stringSize(s, 0, response, exception, sent);
}
::Ice::AsyncResultPtr
begin_stringSize(const ::std::string& s, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
{
return begin_stringSize(s, 0, ::Ice::newCallback(completed, sent), 0);
}
::Ice::AsyncResultPtr
begin_stringSize(const ::std::string& s, const ::Ice::Context& ctx, const ::IceInternal::Function<void (::Ice::Int)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& sent = ::IceInternal::Function<void (bool)>())
{
return __begin_stringSize(s, &ctx, response, exception, sent);
}
::Ice::AsyncResultPtr
begin_stringSize(const ::std::string& s, const ::Ice::Context& ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
{
return begin_stringSize(s, &ctx, ::Ice::newCallback(completed, sent));
}
private:
::Ice::AsyncResultPtr __begin_stringSize(const ::std::string& s, const ::Ice::Context* ctx, const ::IceInternal::Function<void (::Ice::Int)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception, const ::IceInternal::Function<void (bool)>& sent)
{
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
{
public:
Cpp11CB(const ::std::function<void (::Ice::Int)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) :
::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc),
_response(responseFunc)
{
CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr);
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::Ice::Int __ret;
try
{
__ret = __proxy->end_stringSize(__result);
}
catch(::Ice::Exception& ex)
{
Cpp11FnCallbackNC::__exception(__result, ex);
return;
}
if(_response != nullptr)
{
_response(__ret);
}
}
private:
::std::function<void (::Ice::Int)> _response;
};
return begin_stringSize(s, ctx, new Cpp11CB(response, exception, sent));
}
public:
#endif
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s)
{
return begin_stringSize(s, 0, ::IceInternal::__dummyCallback, 0);
}
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s, const ::Ice::Context& __ctx)
{
return begin_stringSize(s, &__ctx, ::IceInternal::__dummyCallback, 0);
}
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_stringSize(s, 0, __del, __cookie);
}
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_stringSize(s, &__ctx, __del, __cookie);
}
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s, const ::UC3M::Callback_StringService_stringSizePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_stringSize(s, 0, __del, __cookie);
}
::Ice::AsyncResultPtr begin_stringSize(const ::std::string& s, const ::Ice::Context& __ctx, const ::UC3M::Callback_StringService_stringSizePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_stringSize(s, &__ctx, __del, __cookie);
}
::Ice::Int end_stringSize(const ::Ice::AsyncResultPtr&);
private:
::Ice::Int stringSize(const ::std::string&, const ::Ice::Context*);
::Ice::AsyncResultPtr begin_stringSize(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
public:
::std::string toUpperCase(const ::std::string& s)
{
return toUpperCase(s, 0);
}
::std::string toUpperCase(const ::std::string& s, const ::Ice::Context& __ctx)
{
return toUpperCase(s, &__ctx);
}
#ifdef ICE_CPP11
::Ice::AsyncResultPtr
begin_toUpperCase(const ::std::string& s, const ::IceInternal::Function<void (const ::std::string&)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& sent = ::IceInternal::Function<void (bool)>())
{
return __begin_toUpperCase(s, 0, response, exception, sent);
}
::Ice::AsyncResultPtr
begin_toUpperCase(const ::std::string& s, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
{
return begin_toUpperCase(s, 0, ::Ice::newCallback(completed, sent), 0);
}
::Ice::AsyncResultPtr
begin_toUpperCase(const ::std::string& s, const ::Ice::Context& ctx, const ::IceInternal::Function<void (const ::std::string&)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception = ::IceInternal::Function<void (const ::Ice::Exception&)>(), const ::IceInternal::Function<void (bool)>& sent = ::IceInternal::Function<void (bool)>())
{
return __begin_toUpperCase(s, &ctx, response, exception, sent);
}
::Ice::AsyncResultPtr
begin_toUpperCase(const ::std::string& s, const ::Ice::Context& ctx, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& completed, const ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>& sent = ::IceInternal::Function<void (const ::Ice::AsyncResultPtr&)>())
{
return begin_toUpperCase(s, &ctx, ::Ice::newCallback(completed, sent));
}
private:
::Ice::AsyncResultPtr __begin_toUpperCase(const ::std::string& s, const ::Ice::Context* ctx, const ::IceInternal::Function<void (const ::std::string&)>& response, const ::IceInternal::Function<void (const ::Ice::Exception&)>& exception, const ::IceInternal::Function<void (bool)>& sent)
{
class Cpp11CB : public ::IceInternal::Cpp11FnCallbackNC
{
public:
Cpp11CB(const ::std::function<void (const ::std::string&)>& responseFunc, const ::std::function<void (const ::Ice::Exception&)>& exceptionFunc, const ::std::function<void (bool)>& sentFunc) :
::IceInternal::Cpp11FnCallbackNC(exceptionFunc, sentFunc),
_response(responseFunc)
{
CallbackBase::checkCallback(true, responseFunc || exceptionFunc != nullptr);
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::std::string __ret;
try
{
__ret = __proxy->end_toUpperCase(__result);
}
catch(::Ice::Exception& ex)
{
Cpp11FnCallbackNC::__exception(__result, ex);
return;
}
if(_response != nullptr)
{
_response(__ret);
}
}
private:
::std::function<void (const ::std::string&)> _response;
};
return begin_toUpperCase(s, ctx, new Cpp11CB(response, exception, sent));
}
public:
#endif
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s)
{
return begin_toUpperCase(s, 0, ::IceInternal::__dummyCallback, 0);
}
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s, const ::Ice::Context& __ctx)
{
return begin_toUpperCase(s, &__ctx, ::IceInternal::__dummyCallback, 0);
}
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_toUpperCase(s, 0, __del, __cookie);
}
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s, const ::Ice::Context& __ctx, const ::Ice::CallbackPtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_toUpperCase(s, &__ctx, __del, __cookie);
}
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s, const ::UC3M::Callback_StringService_toUpperCasePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_toUpperCase(s, 0, __del, __cookie);
}
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string& s, const ::Ice::Context& __ctx, const ::UC3M::Callback_StringService_toUpperCasePtr& __del, const ::Ice::LocalObjectPtr& __cookie = 0)
{
return begin_toUpperCase(s, &__ctx, __del, __cookie);
}
::std::string end_toUpperCase(const ::Ice::AsyncResultPtr&);
private:
::std::string toUpperCase(const ::std::string&, const ::Ice::Context*);
::Ice::AsyncResultPtr begin_toUpperCase(const ::std::string&, const ::Ice::Context*, const ::IceInternal::CallbackBasePtr&, const ::Ice::LocalObjectPtr& __cookie = 0);
public:
::IceInternal::ProxyHandle<StringService> ice_context(const ::Ice::Context& __context) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_context(__context).get());
}
::IceInternal::ProxyHandle<StringService> ice_adapterId(const ::std::string& __id) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_adapterId(__id).get());
}
::IceInternal::ProxyHandle<StringService> ice_endpoints(const ::Ice::EndpointSeq& __endpoints) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_endpoints(__endpoints).get());
}
::IceInternal::ProxyHandle<StringService> ice_locatorCacheTimeout(int __timeout) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_locatorCacheTimeout(__timeout).get());
}
::IceInternal::ProxyHandle<StringService> ice_connectionCached(bool __cached) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_connectionCached(__cached).get());
}
::IceInternal::ProxyHandle<StringService> ice_endpointSelection(::Ice::EndpointSelectionType __est) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_endpointSelection(__est).get());
}
::IceInternal::ProxyHandle<StringService> ice_secure(bool __secure) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_secure(__secure).get());
}
::IceInternal::ProxyHandle<StringService> ice_preferSecure(bool __preferSecure) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_preferSecure(__preferSecure).get());
}
::IceInternal::ProxyHandle<StringService> ice_router(const ::Ice::RouterPrx& __router) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_router(__router).get());
}
::IceInternal::ProxyHandle<StringService> ice_locator(const ::Ice::LocatorPrx& __locator) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_locator(__locator).get());
}
::IceInternal::ProxyHandle<StringService> ice_collocationOptimized(bool __co) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_collocationOptimized(__co).get());
}
::IceInternal::ProxyHandle<StringService> ice_twoway() const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_twoway().get());
}
::IceInternal::ProxyHandle<StringService> ice_oneway() const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_oneway().get());
}
::IceInternal::ProxyHandle<StringService> ice_batchOneway() const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_batchOneway().get());
}
::IceInternal::ProxyHandle<StringService> ice_datagram() const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_datagram().get());
}
::IceInternal::ProxyHandle<StringService> ice_batchDatagram() const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_batchDatagram().get());
}
::IceInternal::ProxyHandle<StringService> ice_compress(bool __compress) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_compress(__compress).get());
}
::IceInternal::ProxyHandle<StringService> ice_timeout(int __timeout) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_timeout(__timeout).get());
}
::IceInternal::ProxyHandle<StringService> ice_connectionId(const ::std::string& __id) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_connectionId(__id).get());
}
::IceInternal::ProxyHandle<StringService> ice_encodingVersion(const ::Ice::EncodingVersion& __v) const
{
return dynamic_cast<StringService*>(::IceProxy::Ice::Object::ice_encodingVersion(__v).get());
}
static const ::std::string& ice_staticId();
private:
virtual ::IceInternal::Handle< ::IceDelegateM::Ice::Object> __createDelegateM();
virtual ::IceInternal::Handle< ::IceDelegateD::Ice::Object> __createDelegateD();
virtual ::IceProxy::Ice::Object* __newInstance() const;
};
}
}
namespace IceDelegate
{
namespace UC3M
{
class StringService : virtual public ::IceDelegate::Ice::Object
{
public:
virtual ::Ice::Int stringSize(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0;
virtual ::std::string toUpperCase(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&) = 0;
};
}
}
namespace IceDelegateM
{
namespace UC3M
{
class StringService : virtual public ::IceDelegate::UC3M::StringService,
virtual public ::IceDelegateM::Ice::Object
{
public:
virtual ::Ice::Int stringSize(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&);
virtual ::std::string toUpperCase(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&);
};
}
}
namespace IceDelegateD
{
namespace UC3M
{
class StringService : virtual public ::IceDelegate::UC3M::StringService,
virtual public ::IceDelegateD::Ice::Object
{
public:
virtual ::Ice::Int stringSize(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&);
virtual ::std::string toUpperCase(const ::std::string&, const ::Ice::Context*, ::IceInternal::InvocationObserver&);
};
}
}
namespace UC3M
{
class StringService : virtual public ::Ice::Object
{
public:
typedef StringServicePrx ProxyType;
typedef StringServicePtr PointerType;
virtual bool ice_isA(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) const;
virtual ::std::vector< ::std::string> ice_ids(const ::Ice::Current& = ::Ice::Current()) const;
virtual const ::std::string& ice_id(const ::Ice::Current& = ::Ice::Current()) const;
static const ::std::string& ice_staticId();
virtual ::Ice::Int stringSize(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
::Ice::DispatchStatus ___stringSize(::IceInternal::Incoming&, const ::Ice::Current&);
virtual ::std::string toUpperCase(const ::std::string&, const ::Ice::Current& = ::Ice::Current()) = 0;
::Ice::DispatchStatus ___toUpperCase(::IceInternal::Incoming&, const ::Ice::Current&);
virtual ::Ice::DispatchStatus __dispatch(::IceInternal::Incoming&, const ::Ice::Current&);
protected:
virtual void __writeImpl(::IceInternal::BasicStream*) const;
virtual void __readImpl(::IceInternal::BasicStream*);
#ifdef __SUNPRO_CC
using ::Ice::Object::__writeImpl;
using ::Ice::Object::__readImpl;
#endif
};
inline bool operator==(const StringService& l, const StringService& r)
{
return static_cast<const ::Ice::Object&>(l) == static_cast<const ::Ice::Object&>(r);
}
inline bool operator<(const StringService& l, const StringService& r)
{
return static_cast<const ::Ice::Object&>(l) < static_cast<const ::Ice::Object&>(r);
}
}
namespace UC3M
{
template<class T>
class CallbackNC_StringService_stringSize : public Callback_StringService_stringSize_Base, public ::IceInternal::TwowayCallbackNC<T>
{
public:
typedef IceUtil::Handle<T> TPtr;
typedef void (T::*Exception)(const ::Ice::Exception&);
typedef void (T::*Sent)(bool);
typedef void (T::*Response)(::Ice::Int);
CallbackNC_StringService_stringSize(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb)
{
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::Ice::Int __ret;
try
{
__ret = __proxy->end_stringSize(__result);
}
catch(::Ice::Exception& ex)
{
::IceInternal::CallbackNC<T>::__exception(__result, ex);
return;
}
if(response)
{
(::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret);
}
}
Response response;
};
template<class T> Callback_StringService_stringSizePtr
newCallback_StringService_stringSize(const IceUtil::Handle<T>& instance, void (T::*cb)(::Ice::Int), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
{
return new CallbackNC_StringService_stringSize<T>(instance, cb, excb, sentcb);
}
template<class T> Callback_StringService_stringSizePtr
newCallback_StringService_stringSize(T* instance, void (T::*cb)(::Ice::Int), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
{
return new CallbackNC_StringService_stringSize<T>(instance, cb, excb, sentcb);
}
template<class T, typename CT>
class Callback_StringService_stringSize : public Callback_StringService_stringSize_Base, public ::IceInternal::TwowayCallback<T, CT>
{
public:
typedef IceUtil::Handle<T> TPtr;
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
typedef void (T::*Sent)(bool , const CT&);
typedef void (T::*Response)(::Ice::Int, const CT&);
Callback_StringService_stringSize(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb)
{
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::Ice::Int __ret;
try
{
__ret = __proxy->end_stringSize(__result);
}
catch(::Ice::Exception& ex)
{
::IceInternal::Callback<T, CT>::__exception(__result, ex);
return;
}
if(response)
{
(::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie()));
}
}
Response response;
};
template<class T, typename CT> Callback_StringService_stringSizePtr
newCallback_StringService_stringSize(const IceUtil::Handle<T>& instance, void (T::*cb)(::Ice::Int, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
{
return new Callback_StringService_stringSize<T, CT>(instance, cb, excb, sentcb);
}
template<class T, typename CT> Callback_StringService_stringSizePtr
newCallback_StringService_stringSize(T* instance, void (T::*cb)(::Ice::Int, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
{
return new Callback_StringService_stringSize<T, CT>(instance, cb, excb, sentcb);
}
template<class T>
class CallbackNC_StringService_toUpperCase : public Callback_StringService_toUpperCase_Base, public ::IceInternal::TwowayCallbackNC<T>
{
public:
typedef IceUtil::Handle<T> TPtr;
typedef void (T::*Exception)(const ::Ice::Exception&);
typedef void (T::*Sent)(bool);
typedef void (T::*Response)(const ::std::string&);
CallbackNC_StringService_toUpperCase(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
: ::IceInternal::TwowayCallbackNC<T>(obj, cb != 0, excb, sentcb), response(cb)
{
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::std::string __ret;
try
{
__ret = __proxy->end_toUpperCase(__result);
}
catch(::Ice::Exception& ex)
{
::IceInternal::CallbackNC<T>::__exception(__result, ex);
return;
}
if(response)
{
(::IceInternal::CallbackNC<T>::callback.get()->*response)(__ret);
}
}
Response response;
};
template<class T> Callback_StringService_toUpperCasePtr
newCallback_StringService_toUpperCase(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
{
return new CallbackNC_StringService_toUpperCase<T>(instance, cb, excb, sentcb);
}
template<class T> Callback_StringService_toUpperCasePtr
newCallback_StringService_toUpperCase(T* instance, void (T::*cb)(const ::std::string&), void (T::*excb)(const ::Ice::Exception&), void (T::*sentcb)(bool) = 0)
{
return new CallbackNC_StringService_toUpperCase<T>(instance, cb, excb, sentcb);
}
template<class T, typename CT>
class Callback_StringService_toUpperCase : public Callback_StringService_toUpperCase_Base, public ::IceInternal::TwowayCallback<T, CT>
{
public:
typedef IceUtil::Handle<T> TPtr;
typedef void (T::*Exception)(const ::Ice::Exception& , const CT&);
typedef void (T::*Sent)(bool , const CT&);
typedef void (T::*Response)(const ::std::string&, const CT&);
Callback_StringService_toUpperCase(const TPtr& obj, Response cb, Exception excb, Sent sentcb)
: ::IceInternal::TwowayCallback<T, CT>(obj, cb != 0, excb, sentcb), response(cb)
{
}
virtual void __completed(const ::Ice::AsyncResultPtr& __result) const
{
::UC3M::StringServicePrx __proxy = ::UC3M::StringServicePrx::uncheckedCast(__result->getProxy());
::std::string __ret;
try
{
__ret = __proxy->end_toUpperCase(__result);
}
catch(::Ice::Exception& ex)
{
::IceInternal::Callback<T, CT>::__exception(__result, ex);
return;
}
if(response)
{
(::IceInternal::Callback<T, CT>::callback.get()->*response)(__ret, CT::dynamicCast(__result->getCookie()));
}
}
Response response;
};
template<class T, typename CT> Callback_StringService_toUpperCasePtr
newCallback_StringService_toUpperCase(const IceUtil::Handle<T>& instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
{
return new Callback_StringService_toUpperCase<T, CT>(instance, cb, excb, sentcb);
}
template<class T, typename CT> Callback_StringService_toUpperCasePtr
newCallback_StringService_toUpperCase(T* instance, void (T::*cb)(const ::std::string&, const CT&), void (T::*excb)(const ::Ice::Exception&, const CT&), void (T::*sentcb)(bool, const CT&) = 0)
{
return new Callback_StringService_toUpperCase<T, CT>(instance, cb, excb, sentcb);
}
}
#endif
|
f4a0f9809be613e4db587aa2bf47ba327466a3bf
|
8b97a20de9ca5b9821bcb67bf1a038163b1cde1b
|
/source/debug.cpp
|
3bd8380bc5b5eefc35102e57d316574fa77477c8
|
[
"Zlib"
] |
permissive
|
nevilc/YomiDS
|
564c922a3de5aa075933ea963641d8959976b45f
|
e689b8a6feb7d5af3b1f66a8a073fb4bb18c6ae8
|
refs/heads/master
| 2020-05-30T18:05:57.825567
| 2011-09-30T06:49:46
| 2011-09-30T06:49:46
| 2,487,296
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 93
|
cpp
|
debug.cpp
|
#include "debug.h"
void dprint(const char* msg){
#ifdef DEBUG
nocashMessage(msg);
#endif
}
|
c964ad81c33bc15070e585062d4fa50635ad926f
|
b7302b693143b939ba2a2637629ad2be6870096c
|
/19_STL/0120_Queue.cpp
|
7041f58071c348d5d088e56bc3b7c8c2fe36f62b
|
[] |
no_license
|
abdulhathidev/CPlusPlus
|
832f18e2f907315be961be60c6bdcd73eb1161d3
|
69584a4691bc00642ccdbf7e3d82de716d853c6c
|
refs/heads/master
| 2021-02-17T13:12:53.288195
| 2020-05-15T07:35:19
| 2020-05-15T07:35:19
| 245,099,542
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 253
|
cpp
|
0120_Queue.cpp
|
#include <iostream>
#include <queue>
using namespace std;
int main()
{
queue<int> vtr;
vtr.push(1);
vtr.push(2);
vtr.push(3);
vtr.push(4);
cout << "Iterator iteration " << endl;
deque<int>::iterator itr;
vtr.pop();
}
|
a0546e43a620aadc22cba51325d9351ae242e262
|
df4aa979e74131e8374a6958c38524ccf5807b51
|
/fs_libclient.cpp
|
c12e751ef065ba840ec03cf067c942efb7d387b8
|
[] |
no_license
|
Maczaj/tin
|
d6f20dbf89b8288ec6e38668eafe35e5f2d97ecc
|
d157d3a30eb70ea2f91aa1e3e9907219f9489b22
|
refs/heads/master
| 2020-06-05T08:52:45.532046
| 2014-01-28T09:27:14
| 2014-01-28T09:27:14
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 12,199
|
cpp
|
fs_libclient.cpp
|
#include "fs_libclient.h"
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <cstring>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sstream>
#include <boost/archive/text_oarchive.hpp>
#include <boost/archive/text_iarchive.hpp>
#include "fs_server.h"
#define MAX_SIZE 596
using namespace std;
// concat command, as char, at index 0 and serializedStruct from index 1
char* concatCommandAndSerializedStruct(const char* outputSerializedStruct, FS_cmdT command) {
char *bufferToSend = new char[strlen(outputSerializedStruct)+2];
memset(bufferToSend, 0, strlen(outputSerializedStruct)+2);
bufferToSend[0] = command + 48;
strcat(bufferToSend, outputSerializedStruct);
return bufferToSend;
}
int fs_open_server(char* adres_serwera){
cout << "fs_open_server() called" << endl;
int sockd;
struct sockaddr_in serv_name;
int status;
sockd = socket(AF_INET, SOCK_STREAM, 0);
if (sockd == -1)
{
perror("socket");
return 0;
}
char * srvport = strstr(adres_serwera, ":") + 1;
/* server address */
serv_name.sin_family = AF_INET;
char ip[16];
memcpy( ip, adres_serwera, strstr(adres_serwera, ":") - adres_serwera);
ip[strstr(adres_serwera, ":") - adres_serwera] = '\0';
inet_aton(ip, &serv_name.sin_addr);
serv_name.sin_port = htons(atoi((srvport)));
/* connect to the server */
status = connect(sockd, (struct sockaddr*)&serv_name, sizeof(serv_name));
if (status == -1)
{
perror("connect");
return -1;
}
return sockd;
}
int fs_close_server(int srvhndl){
cout << "fs_close_server() called" << endl;
//prepare struct to serialize
FS_c_close_srvrT requestStruct;
requestStruct.command = CLOSE_SRV_REQ;
//serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
//send struct to server
cout << "HEJ TY: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
int res = close(srvhndl);
return res;
}
int fs_open(int srvhndl, char *name, int flags){
cout << "fs_open() called" << endl;
// pack request struct
FS_c_open_fileT requestStruct;
requestStruct.command = FILE_OPEN_REQ;
requestStruct.name = *(new string(name));
requestStruct.flags = flags;
// serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
// send request
cout << "HEJ TY2: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
//read response
char *inputSerializedStruct = new char [MAX_SIZE];
memset(inputSerializedStruct, 0, MAX_SIZE);
read(srvhndl, inputSerializedStruct, MAX_SIZE);
cout << "response ." << inputSerializedStruct << "." << endl;
// deserialize response from string to struct
FS_s_open_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
// create and open an archive for input
boost::archive::text_iarchive ia(inputStringStream);
// read class state from archive
ia >> response;
}
delete [] inputSerializedStruct;
// unpack request struct
return response.fd;
}
int fs_write(int srvhndl , int fd , void * buf , size_t len){
cout << "fs_write() called" << endl;
FS_c_write_fileT requestStruct;
requestStruct.command = FILE_WRITE_REQ;
requestStruct.fd = fd;
int bytesSent = 0;
int bytesToSend = 0;
const int MAX_BUF = MAX_SIZE+256;
char *inputSerializedStruct = new char [MAX_BUF];
char *bufPart;
std::stringstream outputStringStream;
int status = 0;
const int packLength = MAX_SIZE;
cout << len << endl;
while (bytesSent < len) {
bytesToSend = (len-bytesSent >= packLength ? packLength : len-bytesSent + 1) -1;
// pack request struct
requestStruct.len = bytesToSend;
cout << "bytesToSend " << bytesToSend << endl;
bufPart = new char [packLength];
memset(bufPart, 0, packLength);
memcpy(bufPart, ((char *)buf) + bytesSent, bytesToSend);
bufPart[bytesToSend] = '\0';
requestStruct.data = bufPart;
// serialize struct to stringstream
outputStringStream.str("");
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend =
concatCommandAndSerializedStruct(outputStringStream.str().c_str(),
requestStruct.command);
// send request
cout << "HEJ TYYYYYYYYYYYYY: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufPart;
bufPart = 0;
//read response
memset(inputSerializedStruct, 0, MAX_BUF);
read(srvhndl, inputSerializedStruct, MAX_BUF);
// deserialize response from string to struct
FS_s_write_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
boost::archive::text_iarchive ia(inputStringStream);
ia >> response;
}
bytesSent += bytesToSend;
status = response.status;
delete [] bufferToSend;
bufferToSend = 0;
}
delete [] inputSerializedStruct;
inputSerializedStruct = 0;
return status;
}
int fs_read(int srvhndl , int fd , void * buf , size_t len){
cout << "fs_read() called" << endl;
// pack request struct
FS_c_read_fileT requestStruct;
requestStruct.command = FILE_READ_REQ;
requestStruct.fd = fd;
int bytesReceived = 0;
int bytesToReceive = 0;
const int MAX_BUF = MAX_SIZE+256;
char *inputSerializedStruct = new char [MAX_BUF];
char *bufPart;
std::stringstream outputStringStream;
int status = 0;
const int packLength = MAX_SIZE;
cout << len << endl;
while (bytesReceived < len) {
cout << ">>>> " << bytesToReceive << " " << bytesReceived;
bytesToReceive = (len-bytesReceived >= packLength ? packLength : len-bytesReceived + 1) -1;
requestStruct.len = bytesToReceive;
// serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
// send request
cout << "HEJ TY5: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
//read response
char *inputSerializedStruct = new char [MAX_SIZE];
memset(inputSerializedStruct, 0, MAX_SIZE);
read(srvhndl, inputSerializedStruct, MAX_SIZE);
cout << "response ." << inputSerializedStruct << "." << endl;
// deserialize response from string to struct
FS_s_read_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
// create and open an archive for input
boost::archive::text_iarchive ia(inputStringStream);
// read class state from archive
ia >> response;
}
status = response.status;
if (status < 0) {
return status;
}
strcat((char*)buf, (char*)response.data);
delete [] (unsigned char*)response.data;
bytesReceived += bytesToReceive;
}
delete [] inputSerializedStruct;
return status;
}
int fs_lseek(int srvhndl, int fd , long offset , int whence){
cout << "fs_lseek() called" << endl;
// pack request struct
FS_c_lseek_fileT requestStruct;
requestStruct.command = FILE_LSEEK_REQ;
requestStruct.fd = fd;
requestStruct.offset = offset;
requestStruct.whence = whence;
// serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
// send request
cout << "HEJ TY2: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
//read response
char *inputSerializedStruct = new char [MAX_SIZE];
memset(inputSerializedStruct, 0, MAX_SIZE);
read(srvhndl, inputSerializedStruct, MAX_SIZE);
cout << "response ." << inputSerializedStruct << "." << endl;
// deserialize response from string to struct
FS_s_lseek_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
// create and open an archive for input
boost::archive::text_iarchive ia(inputStringStream);
// read class state from archive
ia >> response;
}
delete [] inputSerializedStruct;
return response.status;
}
int fs_close(int srvhndl, int fd){
cout << "fs_close() called" << endl;
// pack request struct
FS_c_close_fileT requestStruct;
requestStruct.command = FILE_CLOSE_REQ;
requestStruct.fd = fd;
// serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
// send request
cout << "HEJ TY5: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
//read response
char *inputSerializedStruct = new char [MAX_SIZE];
memset(inputSerializedStruct, 0, MAX_SIZE);
read(srvhndl, inputSerializedStruct, MAX_SIZE);
cout << "response ." << inputSerializedStruct << "." << endl;
// deserialize response from string to struct
FS_s_close_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
// create and open an archive for input
boost::archive::text_iarchive ia(inputStringStream);
// read class state from archive
ia >> response;
}
delete [] inputSerializedStruct;
// unpack request struct
return response.status;
}
int fs_stat(int srvhndl , int fd, struct stat* buff){
cout << "fs_stat() called" << endl;
return -10;
}
int fs_lock(int srvhndl , int fd , int mode){
cout << "fs_lock() called" << endl;
// pack request struct
FS_c_lock_fileT requestStruct;
requestStruct.command = FILE_LOCK_REQ;
requestStruct.fd = fd;
requestStruct.lock_type = mode;
// serialize struct to stringstream
std::stringstream outputStringStream;
{
boost::archive::text_oarchive oa(outputStringStream);
oa << requestStruct;
}
char* bufferToSend = concatCommandAndSerializedStruct(outputStringStream.str().c_str(), requestStruct.command);
// send request
cout << "HEJ TY4: ." << bufferToSend << "." << endl;
if (write(srvhndl, bufferToSend, strlen(bufferToSend)) == -1)
perror("writing on stream socket");
delete [] bufferToSend;
//read response
char *inputSerializedStruct = new char [MAX_SIZE];
memset(inputSerializedStruct, 0, MAX_SIZE);
read(srvhndl, inputSerializedStruct, MAX_SIZE);
cout << "response ." << inputSerializedStruct << "." << endl;
// deserialize response from string to struct
FS_s_lock_fileT response;
{
std::string string(inputSerializedStruct);
std::stringstream inputStringStream(string);
// create and open an archive for input
boost::archive::text_iarchive ia(inputStringStream);
// read class state from archive
ia >> response;
}
delete [] inputSerializedStruct;
return response.status;
}
|
18edbf5ab46198399965c83e33e37dd62ff8313e
|
0311f53131299355e9757ca68bfe2aba0561f592
|
/include/Chi2FitFigureOfMerit.h
|
cd9d8796ce44cfb0eadd43b33b32cacf722325e8
|
[] |
no_license
|
remizaidan/GeneticAlgorithm
|
ef85e6c0ec95bcc0864e08fd570559334c7cbdfb
|
581067035ed1e74b36f48618d1183bfb922395a1
|
refs/heads/master
| 2021-07-12T20:35:38.345019
| 2017-10-15T22:48:48
| 2017-10-15T22:48:48
| 107,034,414
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,385
|
h
|
Chi2FitFigureOfMerit.h
|
#ifndef CHI2FITFIGUREOFMERIT_H
#define CHI2FITFIGUREOFMERIT_H
#include "IFigureOfMerit.h"
#include <vector>
class IModel;
/**
* @brief Class implementing a \f$\chi^2/ndf\f$ figure of merit.
*
* The \f$\chi^2/ndf\f$ is computed by comparing a model to a dataset:
* - The data consists of \f$(\vec{x_i}, y_i)\f$ pairs with associated errors \f$\sigma_{y_i}\f$ on \f$y_i\f$.
* - The model is a function of the form \f$y = f(\vec{x})\f$.
* - The figure of merit is then defined as:
* \f[
* \chi^2/ndf = \frac{1}{N}\sum_{i=0}^N \frac{(y_i - f(\vec{x_i}))^2}{\sigma_{y_i}^2}
* \f]
*/
class Chi2FitFigureOfMerit : public IFigureOfMerit {
public:
/** Default Constructor */
Chi2FitFigureOfMerit();
/** Destructor */
~Chi2FitFigureOfMerit();
/** Adds a data point */
void addData(const std::vector<double> &x, double y, double ey);
/** Clear all data */
void clearData();
/** Compute the score (\f$\chi^2/ndf\f$) for a given model relative to the data points. */
double evaluate(IModel *model) const;
/** Compares two score values */
bool isBetterThan(double scoreToTest, double referenceScore) const;
protected:
std::vector<std::vector<double> > m_x; //!< Stores the \f$\vec{x_i}\f$ coordinates.
std::vector<double> m_y; //!< Stores the \f$y_i\f$ coordinates.
std::vector<double> m_ey; //!< Stores the \f$\sigma_{y_i}\f$ errors.
};
#endif
|
4c83a30cc232de48f2d63a510e597efb192349b5
|
d19298e8f6735938d43aef98edb876d93df90bdd
|
/Spelunky/Spelunky/Inventory.h
|
e4fd763c68d8f888405a57f409ec55ec893a2987
|
[] |
no_license
|
sleepppp/SpelunkyProject
|
70c0ec0f9ff213e3872d021c7944f6641eef323b
|
5f0e286d43f8bc0b8a721a43d403936a0918dd4f
|
refs/heads/master
| 2020-05-01T04:07:27.181722
| 2019-05-08T03:47:05
| 2019-05-08T03:47:05
| 177,265,149
| 3
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 633
|
h
|
Inventory.h
|
#pragma once
#include "GameObject.h"
class Inventory
{
static const UINT _maxItemCount;
private:
Synthesize(int, mBombCount,BombCount)
Synthesize(int, mGold,Gold)
Synthesize(class Player*, mPlayer,Player)
private:
vector<class Item*> mItemList;
class Item* mMainWeapon;
public:
Inventory();
virtual ~Inventory();
void Init();
void InstallationWeapon(class Item* pItem);
class Item* GetMainWeapon() { return mMainWeapon; }
void SetMainWeapon(class Item* pItem) { mMainWeapon = pItem; }
void AddGold(const int& added) { mGold += added; }
void SpendGold(const int& spend) { mGold -= spend; if (mGold < 0)mGold = 0; }
};
|
5b831877ebe0cdb8f92a256edc3e576bb85fbd4e
|
2a9f612bf4464a2e558d41a997824a01bf9c08c6
|
/JobTicket.h
|
bbb874315c03f9f2798f9ac52244d6eddc8a2cb3
|
[] |
no_license
|
yamamushi/lib-CppFCPLib-official
|
a88ff43c173f491325d7651fe8ebe77234bbad80
|
3a2f0a55c782bbe84e2035823987e22eb735de54
|
refs/heads/master
| 2020-05-19T19:02:24.838315
| 2008-01-30T17:48:02
| 2008-01-30T17:48:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,352
|
h
|
JobTicket.h
|
#ifndef JOBTICKET_H__
#define JOBTICKET_H__
#include "Message.h"
#include "Exceptions.h"
#include "ServerMessage.h"
#include <vector>
#include <iostream>
#include <boost/shared_ptr.hpp>
#include "zthread/Guard.h"
#include "zthread/FastMutex.h"
#include "zthread/Mutex.h"
#include <boost/function.hpp>
namespace FCPLib {
class NodeThread;
class Node;
class JobTicket {
friend class Node;
friend class NodeThread;
public:
typedef boost::shared_ptr<JobTicket> Ptr;
private:
static Ptr factory(Node* n, std::string id, Message::Ptr cmd);
protected:
Node* node;
std::string id;
Message::Ptr cmd;
Response nodeResponse;
bool keep;
bool global;
bool persistent;
std::string repr;
bool isReprValid;
bool _isFinished;
ZThread::Mutex access;
ZThread::FastMutex lock; // used to be able to wait until isFinished
ZThread::FastMutex reqSentLock; // wait until a confirm message is received
int timeQueued;
boost::function<void (int, const ServerMessage::Ptr)> f;
JobTicket()
: keep(false),
global(false),
persistent(false),
isReprValid(false),
_isFinished(false)
{}
void init(Node *n, std::string &id, Message::Ptr cmd);
JobTicket& setKeep( bool x ) { keep = x; return *this; };
JobTicket& setGlobal( bool x ) { global = x; return *this; };
JobTicket& setPersistent( bool x ) { persistent = x; return *this; };
void setCallback( boost::function<void (int, const ServerMessage::Ptr)> f )
{
this->f = f;
}
void setCallback( void (*f)(int, const ServerMessage::Ptr) )
{
this->f = f;
}
void putResult();
// status... last message -- 0, not last message -- 1
void putResponse(int status, ServerMessage::Ptr m)
{
ZThread::Guard<ZThread::Mutex> g(access);
if (f) f(status, m);
if (nodeResponse.empty())
reqSentLock.release(); // first message has arrived, so it has been successfully submitted
nodeResponse.push_back(m);
}
public:
virtual ~JobTicket() {}
const std::string& getCommandName() const { return cmd->getHeader(); }
const std::string& getId() const { return id; }
const Message::Ptr getCommand() const { return cmd; }
void wait(unsigned int timeout_=0);
void waitTillReqSent(unsigned int timeout);
Response getResponse()
{
ZThread::Guard<ZThread::Mutex> g(access);
return Response( nodeResponse );
}
virtual const std::string& toString();
bool isGlobal() const { return global; }
bool isPersistent() const { return persistent; }
bool isFinished()
{
ZThread::Guard<ZThread::Mutex> g(access);
return _isFinished;
}
};
class GetJob : public JobTicket {
friend class Node;
friend class NodeThread;
public:
typedef boost::shared_ptr<GetJob> Ptr;
enum ReturnType { Direct, Disk, None };
private:
ReturnType retType;
std::ostream *stream;
GetJob()
: JobTicket(),
retType(Direct),
stream(NULL)
{}
static Ptr factory(Node*n, std::string id, Message::Ptr cmd);
GetJob& setStream( std::ostream *s ) { stream = s; return *this; }
GetJob& setReturnType( ReturnType r ) { retType = r; return *this; }
public:
~GetJob() {}
std::ostream& getStream() { return *stream; }
ReturnType getReturnType() const { return retType; }
const std::string& toString();
};
typedef std::vector<JobTicket::Ptr> JobCollection;
}
#endif
|
2dfeb73d231ae4130da77467432e4ca0a69f8830
|
57a1e16275297ab1717534317c7e75a0c9f8bdc9
|
/trunk/utils/main_specdump.cpp
|
7ae19b6de7a67ba27ed647723d98a29d6d9cfdca
|
[] |
no_license
|
CCMS-UCSD/CCMS-sps
|
8014c8d638fd7a9bcb5e2499e17a224da2aeb285
|
d178b0dacc41e5660840fcaa5f034491fc82b39d
|
refs/heads/master
| 2021-01-01T05:14:40.439091
| 2016-04-28T22:42:55
| 2016-04-28T22:42:55
| 57,243,146
| 0
| 1
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 2,873
|
cpp
|
main_specdump.cpp
|
//
// main_specdump - stand alone executable for dumping spectrum data
//
#include "CommandLineParser.h"
#include "Logger.h"
#include "spectrum.h"
#include "SpecSet.h"
#include "SpectrumPairSet.h"
#include <stdlib.h>
using namespace specnets;
using namespace std;
// -------------------------------------------------------------------------
int main(int argc, char ** argv)
{
Logger::setDefaultLogger(Logger::getLogger(0));
DEBUG_TRACE;
if (argc != 3)
{
cerr << "Usage: main_specdump type specfile" << endl;
cerr << " Valid types are: mgf, prms, specset, specpairset, pklbin" << endl;
return -1;
}
string type = argv[1];
if (type == "mgf" || type == "prms" || type == "specset" || type == "pklbin")
{
SpecSet spectra1;
size_t size1 = 0;
if (type == "mgf")
{
DEBUG_TRACE;
spectra1.LoadSpecSet_mgf(argv[2]);
size1 = spectra1.size();
DEBUG_VAR(size1);
}
else if (type == "prms")
{
DEBUG_TRACE;
spectra1.LoadSpecSet_prmsv3(argv[2]);
size1 = spectra1.size();
DEBUG_VAR(size1);
}
else if (type == "specset" || type == "pklbin")
{
DEBUG_TRACE;
spectra1.loadPklBin(argv[2]);
size1 = spectra1.size();
DEBUG_VAR(size1);
}
for (size_t i = 0; i < size1; i++)
{
cout << "i = " << i << endl;
//DEBUG_VAR(i);
size_t peakSize1 = spectra1[i].size();
//DEBUG_VAR(peakSize1);
cout << "Parent Mass = " << spectra1[i].parentMass << endl;
cout << "Scan Number = " << spectra1[i].scan << endl;
cout << "MS Level = " << spectra1[i].msLevel << endl;
for (size_t j = 0; j < peakSize1; j++)
{
TwoValues<float> peak1 = spectra1[i][j];
//DEBUG_VAR(peak1.values[0]);
//DEBUG_VAR(peak1.values[1]);
cout << peak1.values[0] << ", " << peak1.values[1] << endl;
}
}
}
else if (type == "specpairset")
{
SpectrumPairSet specpairset1;
specpairset1.loadFromBinaryFile(argv[2]);
size_t size1 = specpairset1.size();
DEBUG_VAR(size1);
for (size_t i = 0; i < size1; i++)
{
cout << "i =" << i << endl;
SpectrumPair pair1 = specpairset1[i];
cout << "pair1.spec1 = " << pair1.spec1 << endl;
cout << "pair1.spec2 = " << pair1.spec2 << endl;
cout << "pair1.score1 = " << pair1.score1 << endl;
cout << "pair1.score2 = " << pair1.score2 << endl;
cout << "pair1.shift1 = " << pair1.shift1 << endl;
cout << "pair1.shift2 = " << pair1.shift2 << endl;
cout << "pair1.specC = " << pair1.specC << endl;
cout << "pair1.spec2rev = " << pair1.spec2rev << endl;
}
}
else
{
cerr << "Usage: main_specdump type specfile" << endl;
cerr << " Valid types are: mgf, prms, specset, specpairset" << endl;
return -1;
}
return 0;
}
|
cfa19b08093a820655ca24d88dc36b25fde199df
|
6f6a88ba519d9569b8bf17a1dd87537c24f28098
|
/RecoDataProducts/inc/TrackSummary.hh
|
c11d9c294e7f6cd4f7f77911292c4233a1cda89a
|
[
"Apache-2.0"
] |
permissive
|
Mu2e/Offline
|
728e3d9cd8144702aefbf35e98d2ddd65d113084
|
d4083c0223d31ca42e87288009aa127b56354855
|
refs/heads/main
| 2023-08-31T06:28:23.289967
| 2023-08-31T02:23:04
| 2023-08-31T02:23:04
| 202,804,692
| 12
| 73
|
Apache-2.0
| 2023-09-14T19:55:58
| 2019-08-16T22:03:57
|
C++
|
UTF-8
|
C++
| false
| false
| 4,966
|
hh
|
TrackSummary.hh
|
// TrackSummary is a persistable class to communicate track
// reconstruction results to physics analyses.
//
// Andrei Gaponenko, 2014
#ifndef RecoDataProducts_TrackSummary_hh
#define RecoDataProducts_TrackSummary_hh
#include "CLHEP/Vector/ThreeVector.h"
#include "CLHEP/Matrix/SymMatrix.h"
#include <ostream>
class TrkSimpTraj; // BaBar class
namespace mu2e {
class TrackSummary {
public:
//================================================================
class HelixParams {
public:
// See docdb-781 for parameter definitions
double d0() const { return d0_; }
double phi0() const { return phi0_; }
double omega() const { return omega_; }
double z0() const { return z0_; }
double tanDip() const { return tanDip_; }
// Picked from BTrk/BaBar/BTrk/TrkBase/include/HelixParams.hh
enum ParIndex {d0Index=0, phi0Index, omegaIndex, z0Index, tanDipIndex, NHLXPRM};
const CLHEP::HepSymMatrix& covariance() const { return covariance_; }
//Not yet implemented - commented out until it is.
//double parErr(ParIndex i);
// Some derived quantities
double dOut() const; // max distance to Z axis, opposite to d0()
double radius() const; // of the helix
double wavelength() const; // of the helix
explicit HelixParams(const TrkSimpTraj& ltraj);
// Default constructor is required by ROOT persistency
HelixParams() : d0_(), phi0_(), omega_(), z0_(), tanDip_(), covariance_(NHLXPRM) {}
private:
double d0_;
double phi0_;
double omega_;
double z0_;
double tanDip_;
CLHEP::HepSymMatrix covariance_;
};
//================================================================
class TrackStateAtPoint {
public:
const HelixParams& helix() const { return helix_; }
const CLHEP::Hep3Vector& position() const { return position_; }
const CLHEP::Hep3Vector& momentum() const { return momentum_; }
const CLHEP::HepSymMatrix& momentumCovariance() const { return momentumCovariance_; }
double arrivalTime() const { return arrivalTime_; }
double flightLength() const { return flightLength_; }
// Derived quantities
double momentumError() const;
double costh() const; // momentum vector cosine to the Z axis
TrackStateAtPoint(const HelixParams& h,
const CLHEP::Hep3Vector& pos,
const CLHEP::Hep3Vector& mom, const CLHEP::HepSymMatrix& momCov,
double arrivalTime, double flightLength)
: helix_(h)
, position_(pos), momentum_(mom)
, momentumCovariance_(momCov)
, arrivalTime_(arrivalTime), flightLength_(flightLength)
{}
// Default constructor is required by ROOT persistency
TrackStateAtPoint() : arrivalTime_(), flightLength_() {}
private:
// Converting (pos,mom) to a helix depends on B field and we want
// to decouple from that. Therefore we store redundant info here.
HelixParams helix_;
CLHEP::Hep3Vector position_;
CLHEP::Hep3Vector momentum_;
CLHEP::HepSymMatrix momentumCovariance_;
double arrivalTime_;
double flightLength_;
};
//================================================================
int fitstatus() const { return fitstatus_; }
int charge() const { return charge_; }
int nactive() const { return nactive_; }
int ndof() const { return ndof_; }
double chi2() const { return chi2_; }
double fitcon() const;
double t0() const { return t0_; }
double t0Err() const { return t0Err_; }
// flight length associated with t0.
double flt0() const { return flt0_; }
const std::vector<TrackStateAtPoint>& states() const { return states_; }
TrackSummary(int fitstatus, int charge, int nactive,
int ndof, double chi2,
double t0, double t0Err, double flt0)
: fitstatus_(fitstatus), charge_(charge), nactive_(nactive)
, ndof_(ndof), chi2_(chi2)
, t0_(t0), t0Err_(t0Err), flt0_(flt0)
{}
void addState(const TrackStateAtPoint& st);
// Default constructor is required by ROOT persistency
TrackSummary() : fitstatus_(), charge_(), nactive_(), ndof_(), chi2_(), t0_(), t0Err_(), flt0_() {}
private:
std::vector<TrackStateAtPoint> states_;
int fitstatus_;
int charge_;
int nactive_;
int ndof_;
double chi2_;
double t0_;
double t0Err_;
double flt0_;
};
//================================================================
typedef std::vector<TrackSummary> TrackSummaryCollection;
std::ostream& operator<<(std::ostream& os, const TrackSummary::TrackStateAtPoint& st);
std::ostream& operator<<(std::ostream& os, const TrackSummary& sum);
std::ostream& operator<<(std::ostream& os, const TrackSummaryCollection& sc);
} // namespace mu2e
#endif /* RecoDataProducts_TrackSummary_hh */
|
3adc54b9ea4aae97eed5c069ceb55ff0b24f58b9
|
2934ec58bb185843dd701db8848d9813397e35d5
|
/src/Front/MainElements/addbuttonhover.h
|
470b08fd6407804e6dbd96b3df6190336b5a137e
|
[
"Apache-2.0"
] |
permissive
|
YagaTeam/Breeks-desktop
|
d72c49d94f65916ad9efd696f95002a73c2b45f1
|
e01c8c88e25c30662806f2ab14f5b00675dbb8e5
|
refs/heads/master
| 2023-02-02T23:45:23.618796
| 2020-12-21T14:45:23
| 2020-12-21T14:45:23
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 486
|
h
|
addbuttonhover.h
|
//VIEW
#ifndef ADDBUTTONHOVER_H
#define ADDBUTTONHOVER_H
#include <QPushButton>
class AddButtonHover : public QPushButton
{
Q_OBJECT
public:
AddButtonHover(QWidget *parent = nullptr);
void enterEvent(QEvent *);
void leaveEvent(QEvent *);
private:
const QString styleSheetDefault = "border-image:url(:/Images/Front/Images/addButtonDefault.png)";
const QString styleSheetHover = "border-image:url(:/Images/Front/Images/addButtonHover.png)";
};
#endif // ADDBUTTONHOVER_H
|
ad671907f4fc146603c80b600c8f6203f7ff7f7a
|
18dd134398f830b8f31a5353e02e69bcd6f466c3
|
/IOServerLib/PipeNetworkLib/DatabaseMgr.cpp
|
e64b5ce08d956210cd7470f6bb23f10409b31ce5
|
[] |
no_license
|
wfmdyh/wecan
|
8b22e6423932acd02895f38b24bdc855320a3a6d
|
71da5168d0e9ba7150fc2f2d4d55398b1d0cbf27
|
refs/heads/master
| 2021-01-09T20:11:30.661551
| 2016-06-22T06:43:56
| 2016-06-22T06:43:56
| 61,694,501
| 3
| 0
| null | null | null | null |
GB18030
|
C++
| false
| false
| 9,049
|
cpp
|
DatabaseMgr.cpp
|
#include "stdafx.h"
#include "DatabaseMgr.h"
#include "DevPipeNet.h"
#include "DevPressureAlarm.h"
#include "DevMultipleParam.h"
#include "DataDef.h"
DatabaseMgr::DatabaseMgr()
{
}
//打开数据库连接
bool DatabaseMgr::OpenDB()
{
m_DBSession = gcnew Session();
return m_DBSession->Open();
}
//关闭数据库连接
bool DatabaseMgr::CloseDB()
{
return m_DBSession->Close();
}
bool DatabaseMgr::SaveData(list<DevPipeNet*> arrDev)
{
if (arrDev.size() < 1)
{
return true;
}
wstringstream wss;
wstring strMsg;
list<DevPipeNet*>::iterator ite = arrDev.begin();
for (; ite != arrDev.end(); ite++)
{
DevPipeNet* pDev = *ite;
String^ strID = marshal_as<String^>(pDev->m_DeviceID.c_str());
//压力报警 多参数
if (pDev->m_PAState != 0xFF)
{
AlarmData^ alarm = gcnew AlarmData();
alarm->AlarmTime = DateTime().Now;
alarm->DeviceCode = strID;
alarm->AlarmType = pDev->m_PAState;
double db = (double)pDev->m_PAValue;
db = db / 1000;
//double db = (double)((double)(pDev->m_PAValue) / 1000);
alarm->AlarmValue = db;
wss << L"存储多参数报警数据,表号:" << pDev->m_DeviceID;
strMsg = wss.str();
ShowMessage(strMsg.c_str());
strMsg = L"";
wss.str(L"");
wss.clear();
SaveAlarm(alarm);
}
//压力报警 新表
if (pDev->m_ArrPressureAlarm.size() > 0)
{
vector<DevPressureAlarm*>::iterator iteNewAlarm = pDev->m_ArrPressureAlarm.begin();
for (; iteNewAlarm != pDev->m_ArrPressureAlarm.end(); iteNewAlarm++)
{
DevPressureAlarm* pNewAlarm = *iteNewAlarm;
AlarmData^ alarm = gcnew AlarmData();
DateTime^ alarmTime = gcnew DateTime(pNewAlarm->m_Time.wYear, pNewAlarm->m_Time.wMonth, pNewAlarm->m_Time.wDay, pNewAlarm->m_Time.wHour, pNewAlarm->m_Time.wMinute, 0);
alarm->AlarmTime = *alarmTime;
/*wstring alarmID = pNewAlarm->GetDeviceIDStr();
alarm->DeviceCode = marshal_as<String^>(alarmID.c_str());*/
alarm->DeviceCode = strID;
alarm->AlarmType = pNewAlarm->m_State;
//压力单位修正 0.01MPa,例如值90,则表示0.9MPa
//double db = (double)((double)(pNewAlarm->m_Pressure) / 1000);
double db = (double)pNewAlarm->m_Pressure;
db = db * 0.01;
alarm->AlarmValue = db;
wss << L"存储新表报警数据,表号:" << pDev->m_DeviceID;
strMsg = wss.str();
ShowMessage(strMsg.c_str());
strMsg = L"";
wss.str(L"");
wss.clear();
SaveAlarm(alarm);
}
}
//存储数据
if (pDev->m_ArrMultipleParam.size() > 0)
{
//新表数据
vector<DevMultipleParam*>::iterator iteMultipleParam = pDev->m_ArrMultipleParam.begin();
for (; iteMultipleParam != pDev->m_ArrMultipleParam.end(); iteMultipleParam++)
{
CollectData^ dev = gcnew CollectData();
DevMultipleParam* pMP = *iteMultipleParam;
//表具时间
SYSTEMTIME deviceTime = pMP->m_DateTime;
DateTime^ colTime = gcnew DateTime(deviceTime.wYear, deviceTime.wMonth, deviceTime.wDay, deviceTime.wHour, deviceTime.wMinute, deviceTime.wSecond);
dev->DeviceTime = *colTime;
/*wstring paramID = pMP->GetDeviceIDStr();
dev->DeviceCode = marshal_as<String^>(paramID.c_str());*/
dev->DeviceCode = strID;
string stdstrValue;
stringstream ss;
//表状态
ss << (int)pMP->m_State;
stdstrValue = ss.str();
String^ strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data1 = strValue;
ss.str("");
ss.clear();
//小无线状态
ss << (int)pDev->m_SmallState;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data2 = strValue;
ss.str("");
ss.clear();
//压力状态
ss << (int)pMP->m_CommunicationState;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data3 = strValue;
ss.str("");
ss.clear();
//温度值
float fTemp = pMP->m_Temperature * 0.1f;
ss << fTemp;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data4 = strValue;
ss.str("");
ss.clear();
//压力值,单位 10KPa
double dbPressValue = pMP->m_Pressure * 10;
dbPressValue /= 1000;
ss << dbPressValue;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data5 = strValue;
ss.str("");
ss.clear();
//累计热量
//正累计流量
ss << pMP->m_PositiveTotalFlow;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data7 = strValue;
ss.str("");
ss.clear();
//负累计流量
ss << pMP->m_NegativeTotalFlow;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data9 = strValue;
ss.str("");
ss.clear();
//瞬时流量
ss << pMP->m_Flow;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data8 = strValue;
ss.str("");
ss.clear();
wss << L"存储新表数据,表号:" << pDev->m_DeviceID;
strMsg = wss.str();
ShowMessage(strMsg.c_str());
strMsg = L"";
wss.str(L"");
wss.clear();
//保存数据库
SaveDevice(dev);
}
}
else{
CollectData^ dev = gcnew CollectData();
//表具时间
SYSTEMTIME devTime = pDev->m_CurrentTime;
DateTime^ deviceTime = gcnew DateTime(devTime.wYear, devTime.wMonth, devTime.wDay, devTime.wHour, devTime.wMinute, devTime.wSecond);
dev->DeviceTime = *deviceTime;
//老表数据
string stdstrValue;
stringstream ss;
dev->DeviceCode = strID;
//表状态
ss << (int)pDev->m_State;
stdstrValue = ss.str();
String^ strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data1 = strValue;
ss.str("");
ss.clear();
//小无线状态
ss << (int)pDev->m_SmallState;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data2 = strValue;
ss.str("");
ss.clear();
//压力状态
ss << (int)pDev->m_PAState;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data3 = strValue;
ss.str("");
ss.clear();
//温度值
ss << pDev->m_Temperature;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data4 = strValue;
ss.str("");
ss.clear();
//温度值数组
vector<WORD>::iterator iteTemp = pDev->m_ArrTemperature.begin();
wstringstream wss;
if (pDev->m_ArrTemperature.size() > 0)
{
wss << *iteTemp;
iteTemp++;
}
for (; iteTemp != pDev->m_ArrTemperature.end(); iteTemp++)
{
WORD wTemp = *iteTemp;
wss << L"," << wTemp;
}
wstring arrStrTemp = wss.str();
//有值才传
if (arrStrTemp.size() > 0)
{
dev->Data16 = marshal_as<String^>(arrStrTemp.c_str());
}
wss.str(L"");
wss.clear();
//压力值数组
vector<WORD>::iterator itePress = pDev->m_ArrPressure.begin();
if (pDev->m_ArrPressure.size() > 0)
{
wss << *itePress;
itePress++;
}
for (; itePress != pDev->m_ArrPressure.end(); itePress++)
{
wss << L"," << *itePress;
}
wstring arrStrPress = wss.str();
if (arrStrPress.size() > 0)
{
dev->Data17 = marshal_as<String^>(arrStrPress.c_str());
}
//压力值
ss << (pDev->m_Pressure / 1000);
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data5 = strValue;
ss.str("");
ss.clear();
//累计热量
ss << pDev->m_QuantityOfHeat;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data6 = strValue;
ss.str("");
ss.clear();
//正累计流量
ss << pDev->m_TotalFlow;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data7 = strValue;
ss.str("");
ss.clear();
//瞬时流量
ss << pDev->m_Flow;
stdstrValue = ss.str();
strValue = marshal_as<String^>(stdstrValue.c_str());
dev->Data8 = strValue;
ss.str("");
ss.clear();
wss << L"存储多参数数据,表号:" << pDev->m_DeviceID;
strMsg = wss.str();
ShowMessage(strMsg.c_str());
strMsg = L"";
wss.str(L"");
wss.clear();
SaveDevice(dev);
}
delete pDev;
}
arrDev.clear();
return true;
}
//保存报警信息
void DatabaseMgr::SaveAlarm(AlarmData^ alarm)
{
wstringstream wss;
if (!m_DBSession->SaveDeviceAlarm(alarm))
{
wss << L"报警信息存储失败:";
wchar_t *wcsMsg = (wchar_t*)(void*)Marshal::StringToHGlobalUni(m_DBSession->Error);
wss << wcsMsg;
ShowMessage(wss.str().c_str());
OutputDebugString(L"\n");
OutputDebugString(wcsMsg);
OutputDebugString(L"\n");
}
}
//保存设备数据
void DatabaseMgr::SaveDevice(CollectData^ dev)
{
wstringstream wss;
if (!m_DBSession->SaveDeviceData(dev))
{
wchar_t *wcsMsg = (wchar_t*)(void*)Marshal::StringToHGlobalUni(m_DBSession->Error);
wss << L"\r\n数据库存储错误:";
wss << wcsMsg;
ShowMessage(wss.str().c_str());
OutputDebugString(L"\n");
OutputDebugString(wcsMsg);
OutputDebugString(L"\n");
}
}
|
9a55c3fb30e2bfea30909d0c5732fd2f98a9c9a6
|
ebfb9804b82a1e2052666ae881a86b64b59cd017
|
/Modules/02_BatMan/Firmware/BatMan/src/chargeController.cpp
|
c2006e2d543a8844439341863ff94ee347bc94f0
|
[] |
no_license
|
hfjg/cucaro
|
9e0f65c4043950ab16315d168094e20103a744e3
|
ca5a1d4e5a35b2e298aa7308bc3b843e9d4c98a5
|
refs/heads/master
| 2022-12-14T15:38:42.986564
| 2020-09-09T15:22:04
| 2020-09-09T15:22:04
| 276,583,505
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,524
|
cpp
|
chargeController.cpp
|
/* charge Control
*
*/
#include <Arduino.h>
#include "chargeController.h"
/**
Constructor
**/
chargeController::chargeController(
uint8_t pwmPin,
uint8_t pwmInverted,
uint8_t enPin,
uint8_t enInverted
){
_enPin = enPin;
_pwmPin = pwmPin;
_enInverted = enInverted;
_pwmInverted = pwmInverted;
// disable charger
_setChargerPWM(0);
if (_enPin != 0) pinMode(_enPin, OUTPUT);
// switch PWM off
digitalWrite(_pwmPin, 0^_pwmInverted);
pinMode(_pwmPin, OUTPUT);
}
void chargeController::_setChargerPWM(uint8_t n){
if (n==0){
if (_enPin != 0) digitalWrite(_enPin, 0^_enInverted);
if (_pwmInverted)
analogWrite(_pwmPin, 255);
else
analogWrite(_pwmPin, 0);
}
else{
if (_pwmInverted) n = 255-n;
if (_enPin != 0) digitalWrite(_enPin, 1^_enInverted);
analogWrite(_pwmPin, n);
}
}
/**
\return current PWM value (mostly for testing)
**/
uint8_t chargeController::getPWM(void){
return _pwmValue;
}
/**
\brief Set callback function to measure battery voltage.
Function should return battery voltage in millivolts
**/
void chargeController::setBatteryVoltageCB( uint16_t (*f)(void) ){
_batteryVoltageCB = f;
}
/**
\brief Set callback function to measure battery voltage.
Function should return battery voltage in millivolts
**/
void chargeController::setChargerVoltageCB( uint16_t (*f)(void) ){
_chargerVoltageCB = f;
}
/**
\brief Set callback function to measure battery current.
Function should return battery current in milliamps
**/
void chargeController::setBatteryCurrentCB( uint16_t (*f)(void) ){
_batteryCurrentCB = f;
}
/**
\brief Set callback function to measure battery temperature.
Function should return battery temperature in celsius
**/
void chargeController::setBatteryTemperatureCB( int8_t (*f)(void) ){
_batteryTemperatureCB = f;
}
uint8_t chargeController::charge(uint16_t iBattery, uint16_t vCharger){
static uint16_t charging = 0;
// get momentary values
_vBattery = _batteryVoltageCB();
_vCharger = _chargerVoltageCB();
if (vCharger < _vTerminateCharge+3000){
_setChargerPWM(0);
return CH_NO_CHARGER;
}
if (_vBattery < _vBatteryDead){
_setChargerPWM(0);
return CH_BATTERY_DEAD;
}
if (charging){
// terminate charge
if ( (_vBattery > _vTerminateCharge)
|| (_batteryTemperatureCB() > _tBatteryMax)
){
charging = 0;
}
else{
// continue charging
// check voltage and current
while ( (_batteryVoltageCB() <= _vTerminateCharge)
&& (_batteryCurrentCB() < _iChargeMax)
&& (_pwmValue < 255)
) _setChargerPWM(++(_pwmValue));
while ( ( (_batteryVoltageCB() > _vTerminateCharge)
|| (_batteryCurrentCB() > _iChargeMax)
) && (_pwmValue > 0)
) _setChargerPWM(--(_pwmValue));
}
return CH_CHARGING;
}
else {
// not (yet) charging
_setChargerPWM(0);
if (_vBattery <= _vBeginCharge){
charging = 1;
}
return CH_DISCHARGING;
}
return 0;
}
void chargeController::setVoltageDead(uint16_t millivolt){
_vBatteryDead = millivolt;
}
void chargeController::setVoltageBeginCharge(uint16_t millivolt){
_vBeginCharge = millivolt;
}
void chargeController::setVoltageTerminateCharge(uint16_t millivolt){
_vTerminateCharge = millivolt;
}
void chargeController::setChargeCurrentMax(uint16_t milliamp){
_iChargeMax = milliamp;
}
void chargeController::setTemperatureMax(int8_t celsius){
_tBatteryMax = celsius;
}
|
5e25d1ad764bc40f3643ab7f8f2ed84416466f24
|
f806d792bf22bc8306a0926f7b2306c0b3dd4367
|
/CS203/Lab 4/C.cpp
|
89aba041af441fb87b070c1fc4ad3b0827295a42
|
[
"MIT"
] |
permissive
|
Wycers/Codelib
|
d7665476c810ddefd82dd758a4963f6b0e1b7ac1
|
7d54dce875a69bc998597abb1c2e2c814587c9b8
|
refs/heads/master
| 2023-03-05T13:57:44.371292
| 2022-09-22T02:23:17
| 2022-09-22T02:23:17
| 143,575,376
| 28
| 4
|
MIT
| 2023-03-04T22:05:33
| 2018-08-05T01:44:34
|
VHDL
|
UTF-8
|
C++
| false
| false
| 804
|
cpp
|
C.cpp
|
#include <cstdio>
#include <queue>
using namespace std;
inline int read()
{
int x = 0, f = 1; char ch = getchar();
while (ch < '0' || '9' < ch)
{
if (ch == '-')
f = -1;
ch = getchar();
}
while ('0' <= ch && ch <= '9')
{
x = x * 10 + ch - 48;
ch = getchar();
}
return x * f;
}
int n, m;
queue<int> q;
void solve()
{
while (!q.empty())
q.pop();
n = read(); m = read();
long long ans = 0;
for (int i = 1; i <= n; ++i)
{
q.push(read());
while (q.size() && q.back() - q.front() > m)
q.pop();
int g = q.size() - 1;
ans += 1ll * g * (g - 1) / 2;
}
printf("%lld\n", ans);
}
int main()
{
int T = read();
while (T--)
solve();
return 0;
}
|
810443774b8c98a47e05ee654e09c0eb834e49e4
|
f8b018f9910c3944b2ec0eea35e589b9e2365b0c
|
/include/wx/charts/wxchartaxis.h
|
195f5234d1dcfdedf49bf87316e50d471d234590
|
[
"MIT"
] |
permissive
|
sergiosvieira/wxCharts
|
b307562319511f96468d163a937087aad85cc478
|
d918321b3cd5838af9dbc72ac23aef5e8bd3d619
|
refs/heads/master
| 2021-06-20T08:06:50.610302
| 2017-07-23T20:34:02
| 2017-07-23T20:34:02
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,530
|
h
|
wxchartaxis.h
|
/*
Copyright (c) 2016 Xavier Leclercq
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.
*/
/*
Part of this file were copied from the Chart.js project (http://chartjs.org/)
and translated into C++.
The files of the Chart.js project have the following copyright and license.
Copyright (c) 2013-2016 Nick Downie
Released under the MIT license
https://github.com/nnnick/Chart.js/blob/master/LICENSE.md
*/
/// @file
#ifndef _WX_CHARTS_WXCHARTAXIS_H_
#define _WX_CHARTS_WXCHARTAXIS_H_
#include "wxchartelement.h"
#include "wxchartaxisoptions.h"
#include "wxchartlabelgroup.h"
#include <wx/graphics.h>
enum wxChartAxisType
{
wxCHARTAXISTYPE_GENERIC = 0,
wxCHARTAXISTYPE_NUMERICAL = 1
};
/// This class represents an axis.
class wxChartAxis : public wxChartElement
{
public:
/// Smart pointer typedef.
typedef wxSharedPtr<wxChartAxis> ptr;
/// Construcs a wxChartAxis element.
/// @param type The type of axis.
/// @param options The settings to be used for the axis.
wxChartAxis(wxChartAxisType type, const wxChartAxisOptions &options);
/// Constructs a wxChartAxis element.
/// @param labels The labels to display along the axis.
/// @param options The settings to be used for the axis.
wxChartAxis(const wxVector<wxString> &labels, const wxChartAxisOptions &options);
virtual bool HitTest(const wxPoint &point) const;
virtual wxPoint2DDouble GetTooltipPosition() const;
/// Draws the axis.
/// @param gc The graphics context.
void Draw(wxGraphicsContext &gc);
/// Updates the size of each label using the
/// font details specified in the axis options
/// and the provided graphics context.
/// @param gc The graphics context.
void UpdateLabelSizes(wxGraphicsContext &gc);
void Fit(wxPoint2DDouble startPoint, wxPoint2DDouble endPoint);
void UpdateLabelPositions();
wxChartAxisType GetType() const;
/// Gets the labels.
/// @return The list of labels.
const wxChartLabelGroup& GetLabels() const;
void SetLabels(const wxVector<wxChartLabel> &labels);
wxPoint2DDouble CalculateLabelPosition(size_t index);
size_t GetNumberOfTickMarks() const;
wxDouble GetDistanceBetweenTickMarks() const;
wxPoint2DDouble GetTickMarkPosition(size_t index) const;
wxPoint2DDouble GetPosition(wxDouble relativeValue) const;
const wxChartAxisOptions& GetOptions() const;
private:
void DrawTickMarks(wxGraphicsContext &gc);
private:
wxChartAxisType m_type;
wxChartAxisOptions m_options;
wxPoint2DDouble m_startPoint;
wxPoint2DDouble m_endPoint;
wxChartLabelGroup m_labels;
};
#endif
|
bb6f55764e4335bddc17ea935de10e681aec107c
|
452c6d1c2cca5144972977a0ae50a5b72d695c28
|
/union_disjoint.cpp
|
a3ad213e2d151d0ad0fb470bbbb9ae7ef2c258d0
|
[] |
no_license
|
tanya9020/APS2020
|
0a9707e639df6ff69608146c99d4d29388e69d60
|
c24b1dae0376042ad222f8b633671ea6784122b4
|
refs/heads/master
| 2020-12-21T16:27:09.037561
| 2020-04-28T15:02:34
| 2020-04-28T15:02:34
| 236,489,165
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 667
|
cpp
|
union_disjoint.cpp
|
#include <iostream>
using namespace std;
#include <bits/stdc++.h>
void union1(int a[], int n, int u, int v)
{
int temp=a[u];
for(int i=0;i<n;i++)
{
if(a[i]==temp)
a[u]=a[v];
}
}
int find(int a[], int u, int v)
{
if(a[u]==a[v])
return 1;
else
return 0;
}
int main() {
int arr[10]={0,1,2,3,4,5,6,7,8,9};
union1(arr,10,2,1);
union1(arr,10,4,3);
union1(arr,10,8,4);
union1(arr,10,9,3);
union1(arr,10,6,5);
for(int i=0;i<10;i++)
cout<<arr[i]<<" ";
cout<<endl;
int r=find(arr,0,7);
cout<<r<<endl;
r=find(arr,8,9);
cout<<r<<endl;
return 0;
}
|
bc6764fd37c12394a628843a4ffd9788673d9020
|
5c93333a71b27cfd5e5a017f29f74b25e3dd17fd
|
/CodeForces/87B - Vasya and Types.cpp
|
5ac0babdec99371fde136fdc5b05ecb99e44f3a2
|
[] |
no_license
|
sktheboss/ProblemSolving
|
7bcd7e8c2de1f4b1d251093c88754e2b1015684b
|
5aff87cc10036a0e6ff255ae47e68a5d71cb7e9d
|
refs/heads/master
| 2021-05-29T03:29:28.980054
| 2015-03-11T10:06:00
| 2015-03-11T10:06:00
| null | 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 1,522
|
cpp
|
87B - Vasya and Types.cpp
|
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0; i<n; i++)
#define repa(i,a,b,d) for(int i=a; i<=b; i+=d)
#define repd(i,a,b,d) for(int i=a; i>=b; i-=d)
#define repi(it,stl) for(auto it = (stl).begin(); (it)!=stl.end(); ++(it))
#define sz(a) ((int)(a).size())
#define mem(a,n) memset((a), (n), sizeof(a))
#define all(n) (n).begin(),(n).end()
#define mp(a,b) make_pair((a),(b))
#define pii pair<int,int>
#define vi vector<int>
#define vs vector<string>
#define sstr stringstream
#define myfind(v,x) (find(all((v)),(x))-(v).begin())
typedef long long ll;
using namespace std;
map<string,string> m;
string trans(string a){
int i,j,cnt=0;
for (i = 0; i< sz(a) && a[i]=='&'; i++);
for (j = i; j< sz(a) && a[j]!='*'; j++);
string s = m[a.substr(i,j-i)];
if(s == "" || s == "errtype") return "errtype";
a=a.replace(i,j-i,s);
rep(i,sz(a)){
if(a[i]=='&') --cnt;
if(a[i]=='*') ++cnt;
}
if(cnt < 0) return "errtype";
s = "void";
rep(i,cnt) s +="*";
return s;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
#ifndef ONLINE_JUDGE
freopen("main.txt","rt",stdin);
// freopen("out.txt","wt",stdout);
#endif
m["void"] = "void";
m["errtype"] = "errtype";
int n;
cin >> n;
string w,a,b;
rep(i,n){
cin >> w;
if(w == "typeof"){
cin >> a;
cout << trans(a) <<"\n";
}
else{
cin >> a >> b;
m[b] = trans(a);
}
}
return 0;
}
|
a160268222a1e4755eed1daa5ac7b182c1890a1b
|
3edc478db837a27dbf8df7eded45df909dfe3cf9
|
/URI online/2577.cpp
|
ce59663230b74953aad33be5729e4a276899d960
|
[] |
no_license
|
ronistone/Maratonas
|
b60ebeb9e7e9298399652df88faa83389bd94542
|
8bd0bedd476645081a09b19152a007ca1497fe20
|
refs/heads/master
| 2021-01-12T10:06:04.016208
| 2018-10-19T02:40:54
| 2018-10-19T02:40:54
| 76,360,276
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 3,192
|
cpp
|
2577.cpp
|
#include <bits/stdc++.h>
using namespace std;
#define UNVISITED -1010101
#define N 100100
typedef long long int ll;
map<int,vector<ll> > v_component;
map<pair<int,int>, bool> bridge;
int articulation_point[N];
vector<int> graph[N];
vector<ll> components_val;
vector<ll> components;
int parent[N];
int root_children;
int vertice_count;
bool visi[N];
int dfs_num[N];
int dfs_low[N];
int n,m;
int dfs_root;
int A[N];
int componentOf[N];
ll calc_component_val(int u){
visi[u] = true;
int v;
ll ans = A[u];
for(int i=0;i<graph[u].size();i++){
v = graph[u][i];
if(!visi[v])
ans += calc_component_val(v);
}
return ans;
}
ll tarjan(int u){
dfs_num[u] = dfs_low[u] = vertice_count++;
componentOf[u] = components.size();
ll component_val = A[u];
for(int i=0;i<graph[u].size();i++){
int v = graph[u][i];
if( dfs_num[v] == UNVISITED ){
parent[v] = u;
if(u==dfs_root) root_children++;
component_val += tarjan(v);
if(dfs_low[v] >= dfs_num[u]){
articulation_point[u]++;
visi[u] = true;
//v_component[u].push_back(calc_component_val(v));
if(dfs_low[v] > dfs_num[u]){
bridge[make_pair(u,v)] = true;
bridge[make_pair(v,u)] = true;
}
}
dfs_low[u] = min(dfs_low[u], dfs_low[v]);
}else{
dfs_low[u] = min(dfs_low[u], dfs_num[v]);
}
}
return component_val;
}
void clear(){
v_component.clear();
bridge.clear();
for(int i=0;i<=n;i++){
dfs_low[i] = dfs_num[i] = UNVISITED;
articulation_point[i] = 0;
parent[i] = i;
visi[i] = false;
graph[i].clear();
componentOf[i] = UNVISITED;
}
}
main(){
int from,to;
ll ans = 0;
cin >> n >> m;
clear();
for(int i=0;i<n;i++){
cin >> A[i];
}
for(int i=0;i<m;i++){
cin >> from >> to; from--; to--;
graph[from].push_back(to);
graph[to].push_back(from);
}
for(int i=0;i<n;i++){
if(dfs_num[i] == UNVISITED){
dfs_root = i;
root_children = 0;
components.push_back(tarjan(i));
if(root_children <= 1){
articulation_point[i] = 0;
v_component[i].clear();
}
}
}
int ansGet[n];
memset(ansGet, false, sizeof ansGet);
for(int i=0;i<components.size();i++){
if(components[i] > 0){
ans += components[i];
ansGet[i] = true;
}
}
for(int i=0;i<n;i++){
if(articulation_point[i]){
memset(visi, false, sizeof visi);
visi[i] = true;
for(int j=0;j<graph[i].size();i++){
int v = graph[i][j];
if(!visi[v]){
v_component[i].push_back(calc_component_val(v));
}
}
}
}
//for (int i=0;i<n;i++){
//cout << "Vertex " << i << ": " << endl;
//cout << "AP: " << articulation_point[i] << endl;
//for(int j=0;j<v_component[i].size();j++){
//cout << "value: " << v_component[i][j] << endl;
//}
//cout << endl << endl;
//}
int comp;
ll localAns = 0;
for(int i=0;i<n;i++){
localAns = ans;
comp = componentOf[i];
if(ansGet[comp]){
localAns -= components[comp];
}
if(articulation_point[i]){
for(int j=0;j<v_component[i].size();j++){
localAns += v_component[i][j]>0? v_component[i][j]:0;
}
}else{
localAns += max(components[comp] - A[i], 0LL);
}
if(i > 0){
cout << " ";
}
cout << localAns;
}
cout << endl;
}
|
1eb52365a6cc7a42a1ae7595e8d6e7a30ef18b26
|
7524106d9776f24311be4e6050cedd2a10e31282
|
/problems/xjoi.net/x1.4/x1174/main.cpp
|
3dd59052080d7dacd90c07d3479e4bc195a8f59a
|
[] |
no_license
|
Exr0nProjects/learn_cpp
|
f0d0ab1fd26adaea18d711c3cce16d63e0b2a7dc
|
c0fcb9783fa4ce76701fe234599bc13876cc4083
|
refs/heads/master
| 2023-04-11T08:19:42.923015
| 2021-01-27T02:41:35
| 2021-01-27T02:41:35
| 180,021,931
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 563
|
cpp
|
main.cpp
|
/*
* Problem #1174
*/
#include <iostream>
#include <string>
#include <math.h>
using namespace std;
bool is_prime (int num)
{
if (num == 1) return false;
else if (num == 2) return true;
else if (!(num%2)) return false;
else {
int final = (int) sqrt(num) +1;
for (int i=3; i <= final; i += 2)
{
if (!(num % i)) return false;
}
return true;
}
}
int main ()
{
int num_n, p;
cin >> num_n;
for (int i=0; i < num_n; ++i)
{
cin >> p;
if (is_prime(p)) cout << "Yes\n";
else cout << "No\n";
}
return 0;
}
|
13c2d07dd37eb751a97d009a189fda0414f444d2
|
868e8628acaa0bf276134f9cc3ced379679eab10
|
/firstCrude2D/we123/h10/0.298/p_rgh
|
27fbad5a7ff43c6e2bde3799b942c2a5177855dc
|
[] |
no_license
|
stigmn/droplet
|
921af6851f88c0acf8b1cd84f5e2903f1d0cb87a
|
1649ceb0a9ce5abb243fb77569211558c2f0dc96
|
refs/heads/master
| 2020-04-04T20:08:37.912624
| 2015-11-25T11:20:32
| 2015-11-25T11:20:32
| 45,102,907
| 0
| 0
| null | 2015-10-28T09:46:30
| 2015-10-28T09:46:29
| null |
UTF-8
|
C++
| false
| false
| 592,118
|
p_rgh
|
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.4.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.298";
object p_rgh;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [1 -1 -2 0 0 0 0];
internalField nonuniform List<scalar>
60000
(
128.967
128.923
128.834
128.699
128.52
128.295
128.025
127.711
127.352
126.95
126.504
126.014
125.483
124.909
124.295
123.64
122.946
122.213
121.443
120.637
119.797
118.922
118.016
117.079
116.113
115.12
114.101
113.058
111.993
110.909
109.807
108.689
107.557
106.415
105.264
104.107
102.947
101.787
100.63
99.4789
98.3369
97.2076
96.0944
95.0007
93.9302
92.8862
91.8719
90.8907
89.9453
89.0382
88.1717
87.3473
86.5662
85.829
85.1356
84.4854
83.8772
83.3093
82.7798
82.2861
81.8258
81.3961
80.9944
80.6183
80.2655
79.9339
79.6221
79.3286
79.0526
78.7935
78.5511
78.3254
78.1168
77.9259
77.7536
77.6008
77.469
77.3597
77.2746
77.2163
77.1869
77.1893
77.2267
77.3024
77.4199
77.5826
77.795
78.0611
78.3849
78.7703
79.2211
79.7407
80.3324
80.9989
81.7422
82.5638
83.4645
84.4442
85.5021
86.6365
128.972
128.929
128.841
128.706
128.527
128.302
128.032
127.718
127.359
126.956
126.51
126.02
125.488
124.915
124.3
123.645
122.951
122.218
121.448
120.641
119.8
118.926
118.019
117.082
116.115
115.122
114.103
113.06
111.995
110.91
109.807
108.689
107.557
106.414
105.263
104.105
102.945
101.784
100.626
99.4744
98.3316
97.2015
96.0874
94.9929
93.9214
92.8764
91.8613
90.8791
89.9328
89.025
88.1577
87.3327
86.5511
85.8135
85.1199
84.4696
83.8614
83.2937
82.7645
82.2712
81.8112
81.382
80.9808
80.6052
80.2528
79.9216
79.6101
79.317
79.0412
78.7824
78.5401
78.3145
78.106
77.9151
77.7427
77.5899
77.4579
77.3485
77.2635
77.205
77.1754
77.1776
77.2148
77.2903
77.4078
77.5703
77.7826
78.0486
78.3724
78.7578
79.2085
79.7282
80.3199
80.9863
81.7298
82.5516
83.4526
84.4327
85.4913
86.6263
128.99
128.946
128.858
128.723
128.544
128.319
128.049
127.734
127.375
126.972
126.525
126.036
125.503
124.929
124.314
123.659
122.964
122.231
121.46
120.653
119.811
118.936
118.029
117.091
116.124
115.13
114.11
113.066
112
110.915
109.811
108.692
107.559
106.415
105.263
104.104
102.943
101.781
100.621
99.4678
98.3235
97.1917
96.0758
94.9795
93.9063
92.8595
91.8425
90.8586
89.9107
89.0014
88.1328
87.3067
86.5243
85.7861
85.0921
84.4418
83.8339
83.2666
82.738
82.2455
81.7865
81.3583
80.9581
80.5835
80.232
79.9017
79.5909
79.2983
79.023
78.7645
78.5224
78.297
78.0884
77.8974
77.7247
77.5715
77.4391
77.3291
77.2433
77.1839
77.1533
77.1543
77.1899
77.2638
77.3802
77.541
77.7521
78.017
78.3396
78.7239
79.1738
79.6926
80.2836
80.9494
81.6923
82.5136
83.4142
84.3939
85.4523
86.5872
129.019
128.975
128.886
128.752
128.572
128.347
128.077
127.762
127.402
126.999
126.552
126.061
125.529
124.954
124.338
123.682
122.987
122.252
121.481
120.673
119.83
118.954
118.046
117.107
116.139
115.143
114.122
113.077
112.01
110.923
109.818
108.698
107.563
106.418
105.263
104.103
102.939
101.775
100.614
99.4577
98.3108
97.1763
96.0577
94.9585
93.8824
92.8327
91.813
90.8264
89.876
88.9643
88.0938
87.266
86.4823
85.7433
85.0489
84.3985
83.7909
83.2245
82.6969
82.2057
81.7482
81.3215
80.9229
80.5498
80.1997
79.8707
79.561
79.2694
78.9948
78.7367
78.495
78.2697
78.0611
77.8699
77.6969
77.5432
77.41
77.2991
77.2123
77.1515
77.1194
77.1186
77.1523
77.224
77.3368
77.4966
77.7054
77.968
78.2884
78.6707
79.1187
79.6358
80.2253
80.8898
81.6314
82.4517
83.3515
84.3306
85.3885
86.5232
129.06
129.015
128.927
128.792
128.612
128.386
128.116
127.8
127.44
127.036
126.589
126.098
125.564
124.989
124.372
123.715
123.019
122.283
121.511
120.701
119.857
118.98
118.07
117.13
116.16
115.163
114.14
113.093
112.025
110.936
109.829
108.706
107.569
106.422
105.265
104.102
102.935
101.768
100.603
99.444
98.2936
97.1554
96.033
94.9299
93.8498
92.7962
91.7727
90.7824
89.8285
88.9137
88.0404
87.2104
86.4249
85.6847
84.9897
84.3393
83.7323
83.1668
82.6408
82.1514
81.6959
81.2714
80.875
80.504
80.1559
79.8287
79.5206
79.2302
78.9567
78.6994
78.4582
78.2332
78.0247
77.8334
77.6601
77.5058
77.372
77.2601
77.172
77.1097
77.0757
77.0729
77.1042
77.1732
77.2836
77.4399
77.6456
77.905
78.2223
78.6017
79.0468
79.5614
80.1486
80.811
81.5509
82.3698
83.2685
84.2469
85.3045
86.4394
129.111
129.066
128.978
128.843
128.663
128.437
128.166
127.85
127.49
127.085
126.637
126.145
125.61
125.034
124.416
123.758
123.06
122.324
121.549
120.738
119.893
119.013
118.102
117.159
116.188
115.189
114.164
113.115
112.043
110.952
109.843
108.717
107.578
106.427
105.267
104.1
102.93
101.759
100.59
99.4269
98.2719
97.1291
96.0018
94.8938
93.8087
92.7501
91.7216
90.7266
89.7683
88.8495
87.9727
87.1397
86.352
85.6102
84.9144
84.264
83.6577
83.0936
82.5694
82.0824
81.6295
81.2078
80.8143
80.446
80.1005
79.7756
79.4695
79.1808
78.9086
78.6523
78.4119
78.1873
77.979
77.7877
77.6141
77.4594
77.3247
77.2118
77.1223
77.0582
77.0222
77.0168
77.0452
77.1111
77.218
77.3704
77.5721
77.8275
78.1409
78.5164
78.9579
79.4692
80.0533
80.7131
81.4508
82.2679
83.1654
84.1431
85.2007
86.3362
129.174
129.129
129.041
128.906
128.725
128.499
128.227
127.911
127.55
127.144
126.695
126.202
125.667
125.089
124.47
123.81
123.111
122.373
121.597
120.783
119.936
119.054
118.14
117.196
116.222
115.22
114.192
113.141
112.067
110.972
109.86
108.731
107.588
106.433
105.269
104.099
102.924
101.749
100.575
99.4062
98.2458
97.0973
95.9641
94.8501
93.7589
92.6942
91.6597
90.659
89.6953
88.7716
87.8905
87.0539
86.2634
85.5197
84.8229
84.1724
83.567
83.0046
82.4827
81.9986
81.549
81.1307
80.7406
80.3758
80.0334
79.7113
79.4077
79.121
78.8505
78.5955
78.356
78.132
77.924
77.7327
77.5589
77.4036
77.2682
77.1541
77.0631
76.9971
76.9586
76.9503
76.9754
77.0374
77.1401
77.2879
77.4849
77.7354
78.0439
78.4147
78.8517
79.3588
79.9391
80.5957
81.3307
82.1458
83.0419
84.019
85.0767
86.213
129.249
129.204
129.115
128.979
128.798
128.572
128.3
127.983
127.621
127.215
126.764
126.271
125.734
125.155
124.534
123.873
123.172
122.431
121.653
120.838
119.987
119.103
118.187
117.239
116.262
115.257
114.227
113.172
112.094
110.996
109.88
108.747
107.6
106.441
105.273
104.097
102.918
101.737
100.557
99.3821
98.2153
97.0601
95.9201
94.799
93.7006
92.6287
91.5872
90.5796
89.6095
88.6799
87.7936
86.9527
86.1588
85.4128
84.7149
84.0644
83.4599
82.8995
82.3804
81.8998
81.4541
81.04
80.6541
80.2933
79.9547
79.636
79.3353
79.0511
78.7825
78.529
78.2905
78.0673
77.8597
77.6684
77.4944
77.3387
77.2024
77.0871
76.9944
76.9262
76.885
76.8735
76.8947
76.9522
77.05
77.1924
77.3837
77.6284
77.9311
78.2962
78.7279
79.2299
79.8058
80.4584
81.1902
82.0029
82.8974
83.8738
84.9318
86.0693
129.334
129.289
129.2
129.065
128.883
128.656
128.384
128.066
127.703
127.296
126.845
126.35
125.811
125.231
124.608
123.945
123.242
122.499
121.719
120.901
120.047
119.16
118.24
117.29
116.309
115.301
114.266
113.208
112.126
111.024
109.903
108.766
107.614
106.45
105.277
104.096
102.91
101.723
100.537
99.3547
98.1806
97.0177
95.8697
94.7404
93.6337
92.5535
91.5037
90.4883
89.5107
88.5742
87.6819
86.8359
86.0381
85.2894
84.5901
83.9395
83.3362
82.7781
82.2624
81.7858
81.3447
80.9355
80.5546
80.1985
79.8644
79.5496
79.2523
78.9709
78.7046
78.4528
78.2156
77.9931
77.786
77.5949
77.4207
77.2645
77.1273
77.0107
76.9162
76.8457
76.8015
76.7862
76.803
76.8555
76.9476
77.0838
77.2685
77.5065
77.8025
78.1609
78.5862
79.0824
79.6529
80.301
81.029
81.8389
82.7316
83.7074
84.7658
85.9047
129.431
129.386
129.297
129.161
128.979
128.752
128.479
128.16
127.797
127.388
126.936
126.439
125.9
125.317
124.693
124.027
123.321
122.576
121.793
120.973
120.114
119.224
118.301
117.347
116.363
115.35
114.312
113.248
112.162
111.056
109.93
108.788
107.631
106.461
105.281
104.094
102.902
101.708
100.514
99.3241
98.1417
96.9701
95.813
94.6744
93.5583
92.4686
91.4095
90.3849
89.3987
88.4544
87.555
86.7032
85.9008
85.149
84.448
83.7973
83.1954
82.64
82.1282
81.6564
81.2207
80.8172
80.442
80.0915
79.7625
79.4523
79.1588
78.8807
78.6169
78.367
78.1312
77.9096
77.703
77.5121
77.3377
77.1809
77.0429
76.9249
76.8285
76.7555
76.7079
76.6886
76.7005
76.7473
76.833
76.9621
77.1393
77.3696
77.6577
78.0086
78.4266
78.9159
79.4804
80.1231
80.8468
81.6535
82.5443
83.5193
84.5783
85.7189
129.54
129.495
129.405
129.269
129.087
128.859
128.585
128.266
127.901
127.492
127.038
126.54
125.998
125.414
124.787
124.119
123.411
122.663
121.876
121.054
120.19
119.297
118.37
117.411
116.423
115.406
114.362
113.294
112.203
111.091
109.96
108.812
107.649
106.473
105.287
104.093
102.893
101.691
100.489
99.2904
98.0987
96.9174
95.7502
94.6012
93.4744
92.374
91.3043
90.2694
89.2734
88.3201
87.4127
86.5542
85.7465
84.9911
84.2882
83.6374
83.0371
82.4849
81.9776
81.5113
81.0819
80.685
80.3164
79.9722
79.649
79.344
79.055
78.7804
78.5194
78.2717
78.0374
77.8168
77.6107
77.4199
77.2454
77.0881
76.9492
76.8298
76.7314
76.6556
76.6045
76.5807
76.5872
76.6276
76.7061
76.8272
76.996
77.2175
77.4968
77.839
78.2487
78.7303
79.2878
79.9245
80.6433
81.4464
82.335
83.3093
84.3689
85.5116
129.66
129.614
129.524
129.388
129.205
128.977
128.702
128.382
128.017
127.606
127.151
126.651
126.108
125.521
124.892
124.221
123.51
122.759
121.969
121.142
120.276
119.377
118.446
117.483
116.489
115.467
114.419
113.345
112.249
111.131
109.994
108.84
107.67
106.487
105.294
104.092
102.884
101.673
100.462
99.2537
98.0517
96.8597
95.6813
94.5207
93.3821
92.2697
91.1881
90.1416
89.1346
88.1711
87.2547
86.3884
85.5748
84.8152
84.1102
83.4592
82.8608
82.3123
81.8101
81.3502
80.9279
80.5386
80.1776
79.8406
79.5241
79.2249
78.9408
78.6703
78.4124
78.1669
77.9342
77.7146
77.5091
77.3185
77.1438
76.986
76.8461
76.7253
76.6248
76.5461
76.4912
76.4625
76.4631
76.4965
76.567
76.6792
76.8385
77.0502
77.3196
77.652
78.0524
78.5253
79.0749
79.7048
80.4181
81.2171
82.1033
83.0769
84.1374
85.2824
129.791
129.745
129.655
129.519
129.335
129.106
128.831
128.51
128.144
127.732
127.275
126.773
126.228
125.639
125.007
124.333
123.619
122.864
122.07
121.239
120.37
119.466
118.529
117.561
116.562
115.535
114.481
113.401
112.299
111.175
110.031
108.87
107.693
106.503
105.302
104.091
102.875
101.654
100.433
99.2142
98.001
96.7972
95.6065
94.4331
93.2814
92.1557
91.0609
90.0014
88.9821
88.0071
87.0804
86.2055
85.3851
84.6207
83.9133
83.2622
82.6659
82.1215
81.6253
81.1727
80.7586
80.3779
80.0255
79.6968
79.3878
79.0952
78.8166
78.5504
78.2958
78.0528
77.8216
77.6031
77.3981
77.2076
77.0327
76.8744
76.7337
76.6114
76.5087
76.427
76.3681
76.3342
76.3283
76.354
76.4156
76.5181
76.6668
76.8674
77.1258
77.4473
77.8373
78.3005
78.8414
79.4637
80.1708
80.9653
81.8488
82.8216
83.8832
85.031
129.934
129.888
129.798
129.66
129.477
129.247
128.971
128.65
128.282
127.868
127.41
126.906
126.359
125.767
125.133
124.456
123.737
122.979
122.181
121.345
120.472
119.562
118.621
117.647
116.642
115.609
114.548
113.463
112.353
111.222
110.072
108.903
107.719
106.52
105.31
104.091
102.865
101.634
100.402
99.1721
97.9467
96.73
95.5259
94.3385
93.1724
92.0321
90.9226
89.8487
88.8156
87.8278
86.8896
86.005
85.1767
84.4071
83.6968
83.0456
82.4517
81.9121
81.4227
80.9784
80.5737
80.2028
79.8602
79.5408
79.2402
78.9549
78.6823
78.4209
78.1699
77.9294
77.6999
77.4823
77.2777
77.0874
76.9123
76.7535
76.6118
76.488
76.3832
76.2984
76.2352
76.1958
76.1829
76.2002
76.2521
76.3437
76.4807
76.6692
76.9153
77.2248
77.6032
78.0557
78.5868
79.2006
79.9008
80.6903
81.5708
82.543
83.6059
84.7569
130.088
130.042
129.951
129.814
129.63
129.4
129.123
128.8
128.431
128.016
127.556
127.051
126.5
125.906
125.268
124.588
123.866
123.103
122.301
121.46
120.582
119.666
118.719
117.739
116.729
115.689
114.622
113.529
112.412
111.274
110.116
108.939
107.747
106.54
105.321
104.092
102.855
101.614
100.37
99.1275
97.8889
96.6584
95.4396
94.237
93.0551
91.8988
90.7731
89.6834
88.6349
87.6328
86.6818
85.7861
84.9492
84.1734
83.4599
82.8085
82.2174
81.6834
81.2017
80.7669
80.3728
80.0131
79.6816
79.3726
79.0814
78.8042
78.5383
78.2821
78.0349
77.7969
77.569
77.3522
77.148
76.9577
76.7823
76.6229
76.4804
76.3552
76.2482
76.1603
76.0927
76.0474
76.027
76.0352
76.0764
76.1561
76.2802
76.4553
76.6878
76.984
77.3498
77.7904
78.3107
78.9151
79.6077
80.3916
81.269
82.2404
83.3051
84.4598
130.254
130.207
130.116
129.979
129.794
129.564
129.286
128.962
128.592
128.176
127.713
127.206
126.653
126.056
125.415
124.731
124.005
123.237
122.43
121.584
120.701
119.78
118.826
117.839
116.822
115.775
114.701
113.6
112.476
111.33
110.164
108.979
107.777
106.561
105.332
104.093
102.846
101.593
100.337
99.0806
97.828
96.5825
95.348
94.1289
92.9298
91.7559
90.6125
89.5053
88.4398
87.4217
86.4563
85.5483
84.7015
83.9188
83.2018
82.5502
81.9622
81.4344
80.9616
80.5376
80.1556
79.8086
79.4895
79.1924
78.9117
78.6435
78.3849
78.1341
77.8909
77.6555
77.429
77.213
77.0089
76.8184
76.6427
76.4828
76.3394
76.2129
76.1038
76.0126
75.9405
75.889
75.8607
75.859
75.8886
75.9552
76.0651
76.2254
76.4431
76.7247
77.0766
77.5042
78.0126
78.6067
79.2908
80.0686
80.9425
81.9133
82.9801
84.1392
130.431
130.384
130.293
130.155
129.97
129.739
129.461
129.136
128.764
128.346
127.882
127.372
126.817
126.216
125.572
124.884
124.153
123.381
122.569
121.717
120.828
119.901
118.94
117.947
116.922
115.868
114.785
113.677
112.545
111.39
110.215
109.021
107.811
106.585
105.346
104.096
102.837
101.571
100.302
99.0318
97.7641
96.5025
95.2511
94.0142
92.7966
91.6036
90.4408
89.3142
88.23
87.1942
86.2127
85.2908
84.433
83.6425
82.9213
82.2695
81.6851
81.1644
80.7016
80.29
79.9217
79.589
79.2841
79.0001
78.7312
78.473
78.2222
77.9774
77.7382
77.5053
77.2801
77.0645
76.8604
76.6695
76.4934
76.3329
76.1886
76.0609
75.9498
75.8555
75.7788
75.7208
75.684
75.6718
75.6888
75.7411
75.8354
75.9795
76.1808
76.4466
76.7833
77.1967
77.6922
78.2749
78.9496
79.7205
80.5906
81.561
82.6304
83.7946
130.62
130.572
130.481
130.343
130.158
129.926
129.647
129.321
128.948
128.528
128.062
127.55
126.991
126.388
125.739
125.047
124.312
123.535
122.717
121.859
120.963
120.031
119.062
118.061
117.029
115.966
114.876
113.759
112.618
111.455
110.271
109.067
107.847
106.611
105.361
104.099
102.828
101.549
100.266
98.9812
97.6975
96.4189
95.1493
93.8932
92.6556
91.4418
90.2579
89.1101
88.0051
86.9497
85.9503
85.0129
84.1425
83.3432
82.6173
81.9652
81.3849
80.8723
80.4209
80.0233
79.6706
79.3541
79.0652
78.796
78.5403
78.293
78.0508
77.8122
77.5771
77.3465
77.1223
76.9068
76.7023
76.5109
76.3341
76.173
76.0281
75.8992
75.7862
75.6889
75.6075
75.5429
75.4972
75.4736
75.477
75.5136
75.5909
75.7172
75.9007
76.1492
76.4694
76.8674
77.3488
77.9189
78.5832
79.3466
80.2125
81.1826
82.2553
83.4256
130.819
130.772
130.681
130.542
130.357
130.124
129.844
129.517
129.143
128.722
128.253
127.738
127.177
126.57
125.918
125.221
124.481
123.699
122.875
122.011
121.108
120.168
119.192
118.183
117.142
116.071
114.972
113.847
112.696
111.524
110.33
109.117
107.886
106.639
105.378
104.104
102.82
101.528
100.23
98.9292
97.6286
96.3318
95.0429
93.7663
92.5071
91.2708
90.0638
88.8929
87.7651
86.6879
85.6685
84.7136
83.8291
83.0197
82.2884
81.6359
81.0603
80.5569
80.1186
79.7368
79.4019
79.1037
78.8328
78.5803
78.3392
78.1039
77.8711
77.639
77.408
77.1795
76.9558
76.74
76.5347
76.3423
76.1647
76.003
75.8574
75.7276
75.613
75.5128
75.4268
75.3554
75.3003
75.2646
75.2532
75.2728
75.3314
75.4382
75.6023
75.832
76.1345
76.5159
76.9819
77.5383
78.1911
78.946
79.8073
80.7772
81.8541
83.0316
131.03
130.983
130.892
130.753
130.567
130.334
130.053
129.725
129.35
128.927
128.456
127.939
127.374
126.763
126.107
125.406
124.66
123.872
123.042
122.171
121.262
120.314
119.33
118.313
117.263
116.183
115.074
113.939
112.779
111.597
110.393
109.169
107.928
106.67
105.397
104.111
102.813
101.507
100.194
98.876
97.5576
96.2416
94.9322
93.6337
92.3513
91.0908
89.8588
88.6624
87.5095
86.4082
85.3666
84.3921
83.4916
82.6707
81.9332
81.2802
80.7099
80.2169
79.7935
79.4298
79.1149
78.8376
78.5869
78.3532
78.1283
77.9064
77.6835
77.4584
77.2313
77.0045
76.7809
76.564
76.3573
76.1636
75.985
75.8226
75.6764
75.5459
75.4299
75.3271
75.2367
75.1585
75.0936
75.045
75.0176
75.0185
75.0567
75.1422
75.285
75.4946
75.778
76.1416
76.591
77.1323
77.7724
78.5177
79.3739
80.3437
81.4258
82.612
131.253
131.206
131.114
130.976
130.789
130.556
130.274
129.945
129.568
129.143
128.67
128.15
127.583
126.968
126.307
125.601
124.85
124.056
123.219
122.341
121.424
120.468
119.477
118.449
117.39
116.301
115.182
114.037
112.867
111.674
110.46
109.225
107.973
106.703
105.418
104.119
102.808
101.486
100.157
98.8222
97.4849
96.1488
94.8176
93.4958
92.1886
90.902
89.6427
88.4187
87.2381
86.1101
85.0436
84.0471
83.1285
82.2945
81.5498
80.8963
80.3319
79.8508
79.4443
79.1012
78.8092
78.5554
78.3276
78.115
77.9083
77.7009
77.4889
77.2708
77.0476
76.8218
76.5975
76.3789
76.1702
75.9746
75.7946
75.6314
75.4848
75.3539
75.2369
75.1319
75.0373
74.9522
74.8772
74.8149
74.7702
74.7507
74.7664
74.8286
74.9488
75.1363
75.3994
75.744
76.1755
76.7004
77.3262
78.0607
78.9111
79.8812
80.9696
82.1664
131.487
131.44
131.348
131.209
131.023
130.789
130.507
130.176
129.798
129.371
128.896
128.373
127.802
127.184
126.519
125.807
125.05
124.25
123.406
122.521
121.595
120.631
119.631
118.593
117.525
116.425
115.296
114.141
112.96
111.756
110.53
109.285
108.021
106.739
105.442
104.129
102.804
101.467
100.121
98.7679
97.4111
96.0537
94.6995
93.353
92.0193
90.7046
89.416
88.1617
86.9508
85.7931
84.6988
83.6776
82.7383
81.8893
81.1364
80.4821
79.9244
79.4569
79.0696
78.75
78.4839
78.2569
78.055
77.866
77.6796
77.4884
77.288
77.0772
76.8574
76.632
76.406
76.1847
75.973
75.7749
75.5932
75.4291
75.2823
75.1513
75.0338
74.927
74.8285
74.7367
74.6513
74.5744
74.511
74.4693
74.4602
74.4968
74.592
74.7564
74.998
75.3224
75.7348
76.2417
76.8516
77.5739
78.4175
79.388
80.4845
81.6941
131.732
131.686
131.594
131.455
131.268
131.033
130.751
130.419
130.04
129.611
129.134
128.608
128.034
127.411
126.741
126.024
125.261
124.454
123.603
122.709
121.776
120.803
119.793
118.746
117.666
116.555
115.416
114.249
113.057
111.842
110.605
109.348
108.072
106.778
105.468
104.142
102.802
101.449
100.085
98.7137
97.3365
95.9568
94.5785
93.2059
91.844
90.4992
89.1788
87.8914
86.6471
85.4567
84.3313
83.2821
82.3195
81.4532
80.6906
80.0352
79.4852
79.0332
78.6679
78.3749
78.1384
77.9417
77.7692
77.6068
77.4431
77.2696
77.0818
76.8784
76.6614
76.4355
76.2067
75.9814
75.7657
75.5642
75.3803
75.2151
75.0683
74.9376
74.8201
74.7121
74.6103
74.5119
74.416
74.3238
74.2402
74.1739
74.1375
74.1459
74.2141
74.3536
74.5728
74.8763
75.2683
75.7555
76.3476
77.0558
77.8914
78.8628
79.9691
81.1946
131.989
131.943
131.851
131.712
131.525
131.29
131.006
130.674
130.293
129.863
129.383
128.855
128.277
127.65
126.975
126.252
125.483
124.668
123.81
122.908
121.965
120.983
119.962
118.906
117.814
116.693
115.542
114.363
113.159
111.932
110.684
109.415
108.127
106.821
105.497
104.157
102.802
101.432
100.051
98.66
97.2616
95.8588
94.4551
93.0549
91.6632
90.2861
88.9314
87.6081
86.3271
85.1002
83.9401
82.8594
81.8699
80.9837
80.2098
79.5532
79.0119
78.5775
78.2373
77.9747
77.7717
77.6095
77.4702
77.338
77.1996
77.0458
76.8714
76.6754
76.4606
76.2329
75.9996
75.7689
75.5478
75.342
75.1553
74.9889
74.8421
74.7123
74.5954
74.4869
74.3824
74.2779
74.1712
74.0628
73.9573
73.864
73.7973
73.7748
73.8136
73.9271
74.1231
74.405
74.7756
75.2413
75.8134
76.505
77.331
78.3036
79.4225
80.6676
132.257
132.211
132.119
131.98
131.793
131.558
131.274
130.941
130.559
130.127
129.645
129.113
128.531
127.9
127.22
126.491
125.715
124.893
124.027
123.116
122.164
121.172
120.141
119.074
117.969
116.836
115.673
114.482
113.266
112.027
110.766
109.485
108.185
106.866
105.529
104.175
102.804
101.418
100.019
98.6074
97.187
95.7601
94.33
92.9009
91.4775
90.066
88.6743
87.3119
85.9905
84.7231
83.5242
82.4078
81.3876
80.4782
79.6911
79.0329
78.5015
78.0873
77.7756
77.5478
77.3831
77.26
77.1584
77.0602
76.9503
76.8182
76.6582
76.4696
76.256
76.0247
75.7852
75.5472
75.3191
75.1078
74.9175
74.7497
74.6033
74.4748
74.3593
74.251
74.1445
74.0345
73.9172
73.7919
73.6626
73.5394
73.439
73.3823
73.3896
73.4757
73.6482
73.9083
74.2564
74.6986
75.248
75.92
76.7341
77.7082
78.8433
80.1129
132.536
132.49
132.399
132.26
132.073
131.837
131.553
131.219
130.836
130.402
129.918
129.383
128.798
128.162
127.477
126.742
125.959
125.129
124.254
123.334
122.372
121.369
120.327
119.248
118.133
116.987
115.811
114.607
113.378
112.126
110.853
109.559
108.246
106.914
105.564
104.196
102.809
101.406
99.988
98.5563
97.1133
95.6615
94.2039
92.7445
91.2877
89.8396
88.408
87.0031
85.6374
84.325
83.0825
81.9256
80.8701
79.9338
79.131
78.4707
77.9507
77.5595
77.2806
77.0924
76.9713
76.8927
76.834
76.7743
76.6965
76.5883
76.4439
76.2625
76.0488
75.812
75.5638
75.3162
75.0793
74.861
74.6663
74.4969
74.3511
74.2247
74.1114
74.0044
73.897
73.7826
73.6553
73.5125
73.3575
73.2012
73.0631
72.9684
72.9414
72.9989
73.1478
73.3864
73.7111
74.1274
74.6506
75.2989
76.098
77.0741
78.2299
79.5308
132.827
132.781
132.69
132.551
132.364
132.129
131.844
131.51
131.125
130.69
130.203
129.666
129.076
128.436
127.745
127.004
126.214
125.376
124.492
123.562
122.59
121.576
120.522
119.431
118.304
117.144
115.954
114.737
113.494
112.229
110.943
109.636
108.311
106.966
105.603
104.22
102.818
101.397
99.9601
98.5073
97.0411
95.5636
94.0776
92.5865
91.0946
89.6076
88.1334
86.6823
85.2679
83.9053
82.6138
81.4108
80.3146
79.3469
78.5255
77.8628
77.3557
76.9909
76.7494
76.6066
76.5351
76.5073
76.4972
76.4814
76.4397
76.3583
76.2305
76.056
75.8405
75.5955
75.3359
75.0759
74.8278
74.601
74.4011
74.2298
74.085
73.9616
73.8518
73.7475
73.641
73.524
73.3881
73.228
73.0455
72.8523
72.6716
72.5343
72.4695
72.4968
72.6226
72.8404
73.1406
73.5281
74.0208
74.6397
75.419
76.3975
77.5805
78.9212
133.128
133.083
132.992
132.853
132.667
132.432
132.147
131.812
131.426
130.99
130.501
129.96
129.367
128.722
128.025
127.277
126.48
125.633
124.74
123.801
122.817
121.792
120.726
119.622
118.481
117.307
116.103
114.872
113.615
112.336
111.036
109.717
108.379
107.022
105.645
104.247
102.829
101.392
99.9352
98.4612
96.9713
95.4674
93.9519
92.4279
90.8992
89.3711
87.8513
86.35
84.8821
83.4635
82.1169
80.8614
79.7181
78.7136
77.8701
77.2046
76.7122
76.3776
76.179
76.088
76.0732
76.1031
76.1485
76.1827
76.1818
76.13
76.0203
75.8521
75.6326
75.3763
75.1015
74.8259
74.5639
74.3266
74.1203
73.9469
73.8037
73.6843
73.5793
73.4794
73.3762
73.2596
73.1176
72.9409
72.729
72.4944
72.265
72.0794
71.9722
71.9677
72.0719
72.2709
72.5459
72.901
73.3576
73.9395
74.6924
75.6729
76.8916
78.2836
133.441
133.396
133.305
133.167
132.981
132.746
132.461
132.126
131.74
131.302
130.811
130.267
129.67
129.02
128.318
127.563
126.757
125.902
124.999
124.049
123.055
122.017
120.938
119.82
118.666
117.477
116.258
115.012
113.741
112.447
111.134
109.801
108.451
107.081
105.69
104.279
102.845
101.39
99.9141
98.4184
96.9044
95.3735
93.8277
92.2697
90.7027
89.1314
87.5627
86.0072
84.4805
82.9992
81.5904
80.2749
79.0773
78.0293
77.1595
76.4907
76.015
75.7149
75.5656
75.5338
75.5839
75.6794
75.788
75.8792
75.9246
75.9059
75.8156
75.6532
75.4269
75.1549
74.8607
74.5654
74.2863
74.0361
73.8222
73.6462
73.5049
73.3904
73.2912
73.1963
73.0984
72.9855
72.8404
72.6474
72.4027
72.1204
71.835
71.596
71.4397
71.403
71.4894
71.6738
71.9245
72.2445
72.6588
73.194
73.9114
74.8926
76.1575
77.6146
133.764
133.719
133.629
133.492
133.306
133.072
132.787
132.452
132.065
131.626
131.133
130.587
129.986
129.331
128.622
127.86
127.046
126.182
125.269
124.308
123.302
122.252
121.159
120.027
118.858
117.654
116.419
115.157
113.87
112.562
111.234
109.889
108.525
107.143
105.74
104.314
102.865
101.393
99.8972
98.3798
96.8413
95.2829
93.7062
92.1132
90.5064
88.8896
87.2693
85.6549
84.0638
82.5121
81.0331
79.6488
78.3882
77.2884
76.387
75.7145
75.2579
74.9975
74.9049
74.9408
75.0648
75.235
75.4155
75.5724
75.6706
75.6887
75.62
75.4631
75.2267
74.9339
74.615
74.2954
73.9954
73.7298
73.5068
73.3281
73.1892
73.0808
72.9877
72.8968
72.8036
72.6961
72.5498
72.3382
72.0527
71.7122
71.3603
71.0669
70.8539
70.7864
70.8662
71.0472
71.2783
71.5627
71.9277
72.4033
73.0719
74.0479
75.3699
76.9065
134.098
134.054
133.964
133.828
133.643
133.409
133.125
132.79
132.403
131.962
131.468
130.919
130.314
129.654
128.939
128.17
127.347
126.473
125.55
124.578
123.559
122.496
121.39
120.243
119.058
117.838
116.585
115.306
114.003
112.68
111.338
109.979
108.603
107.209
105.793
104.354
102.89
101.4
99.8852
98.346
96.7828
95.1965
93.5883
91.9595
90.3118
88.6477
86.9725
85.2948
83.6331
82.0022
80.4431
78.9796
77.6462
76.4847
75.5461
74.8704
74.4356
74.2209
74.1936
74.3066
74.5149
74.7693
75.0321
75.2654
75.4247
75.4849
75.4411
75.2896
75.0388
74.7182
74.3677
74.018
73.6924
73.4083
73.1749
72.9938
72.8596
72.7609
72.6772
72.591
72.5028
72.4018
72.2545
72.0194
71.6792
71.2617
70.828
70.4192
70.1844
70.0892
70.1712
70.3624
70.5863
70.8425
71.1547
71.5599
72.1669
73.1286
74.5193
76.1471
134.442
134.399
134.31
134.175
133.991
133.758
133.475
133.14
132.752
132.311
131.815
131.263
130.655
129.99
129.268
128.491
127.66
126.776
125.842
124.858
123.827
122.75
121.629
120.466
119.265
118.028
116.758
115.461
114.14
112.8
111.444
110.072
108.684
107.278
105.851
104.399
102.92
101.413
99.8788
98.3178
96.7299
95.1154
93.4752
91.8099
90.1204
88.4073
86.6746
84.9288
83.19
81.4693
79.8179
78.2633
76.8471
75.6119
74.63
73.9515
73.5404
73.3777
73.4254
73.6258
73.9309
74.2817
74.6398
74.9649
75.1966
75.3056
75.2906
75.1439
74.8712
74.5111
74.1187
73.73
73.3719
73.0648
72.8191
72.6367
72.5115
72.4305
72.3649
72.2906
72.22
72.1391
71.9979
71.7377
71.3333
70.8162
70.2721
69.8759
69.5054
69.3848
69.4811
69.6856
69.9052
70.1345
70.3764
70.6878
71.2099
72.1329
73.6024
75.3244
134.797
134.754
134.666
134.532
134.35
134.118
133.836
133.502
133.114
132.672
132.175
131.621
131.009
130.339
129.611
128.826
127.985
127.091
126.145
125.149
124.105
123.014
121.878
120.699
119.48
118.224
116.936
115.619
114.281
112.924
111.552
110.166
108.767
107.351
105.913
104.449
102.955
101.432
99.8786
98.296
96.6833
95.0405
93.368
91.666
89.9341
88.1708
86.378
84.5593
82.736
80.9128
79.1537
77.4944
75.9845
74.6581
73.6243
72.944
72.5578
72.4547
72.589
72.8896
73.3082
73.7707
74.2419
74.68
74.9983
75.1613
75.1782
75.0331
74.7264
74.3102
73.8644
73.4283
73.0315
72.698
72.439
72.2572
72.1467
72.0917
72.0479
71.9836
71.9505
71.9278
71.8171
71.5323
71.0671
70.4628
69.7607
68.9733
68.5977
68.4718
68.6249
68.8818
69.1322
69.3563
69.5222
69.747
70.1793
71.0278
72.599
74.4168
135.162
135.119
135.033
134.9
134.72
134.489
134.208
133.875
133.488
133.046
132.548
131.992
131.376
130.701
129.966
129.173
128.322
127.418
126.46
125.452
124.394
123.288
122.136
120.94
119.702
118.427
117.119
115.782
114.424
113.049
111.661
110.263
108.852
107.427
105.979
104.504
102.997
101.457
99.8852
98.2814
96.6441
94.9729
93.268
91.5293
89.7549
87.9407
86.0856
84.1892
82.273
80.3311
78.4451
76.6608
75.0458
73.6087
72.5194
71.8454
71.4894
71.459
71.6971
72.1129
72.6657
73.2554
73.8553
74.428
74.8423
75.0563
75.1044
74.9573
74.6046
74.1167
73.6142
73.1299
72.6936
72.3341
72.0606
71.8766
71.7795
71.7503
71.7087
71.6022
71.5798
71.6411
71.5849
71.243
70.6621
69.9974
69.3652
68.8223
67.9854
67.7754
67.9582
68.2447
68.5626
68.7781
68.7382
68.8265
69.1426
69.8415
71.5557
73.4225
135.536
135.494
135.409
135.279
135.1
134.872
134.592
134.26
133.874
133.432
132.933
132.375
131.757
131.077
130.335
129.533
128.672
127.756
126.787
125.766
124.694
123.573
122.404
121.19
119.933
118.637
117.308
115.95
114.57
113.176
111.771
110.36
108.939
107.505
106.05
104.565
103.045
101.489
99.8994
98.2749
96.6133
94.9134
93.1763
91.4013
89.5852
87.7199
85.8008
83.822
81.8036
79.7218
77.681
75.7498
74.0339
72.4772
71.3305
70.6549
70.3142
70.3694
70.7365
71.287
72.0017
72.7328
73.4713
74.1961
74.7063
74.955
75.0328
74.8856
74.4807
73.9056
73.3459
72.8085
72.3238
71.9296
71.626
71.4133
71.3027
71.2903
71.2203
70.9478
70.6418
70.2817
69.4141
67.3447
63.9415
59.8484
55.575
51.9646
49.5654
50.4969
52.4789
55.8719
60.1771
65.4297
67.948
67.9905
68.3342
68.7195
70.2321
72.219
135.919
135.878
135.796
135.667
135.491
135.265
134.987
134.657
134.272
133.831
133.331
132.772
132.151
131.466
130.717
129.906
129.035
128.108
127.126
126.091
125.005
123.869
122.683
121.45
120.172
118.854
117.502
116.121
114.718
113.303
111.881
110.456
109.027
107.586
106.125
104.632
103.099
101.528
99.9216
98.2774
96.5918
94.8632
93.0937
91.2833
89.427
87.5113
85.5275
83.4629
81.3352
79.0933
76.8677
74.7788
72.9797
71.2432
69.9755
69.2061
68.8241
68.9804
69.5176
70.2273
71.1543
72.0427
72.9365
73.8544
74.4582
74.717
74.8385
74.7054
74.2438
73.5337
72.6703
71.3493
69.4443
66.9798
63.9962
60.5858
56.9115
53.0812
48.6859
43.2093
37.1115
31.6751
26.2176
20.4355
14.9014
10.4758
7.24123
5.2275
4.39478
4.74196
5.6431
7.72072
11.1807
15.1969
21.2517
31.851
44.0484
54.3659
64.209
70.8533
136.311
136.272
136.191
136.065
135.892
135.668
135.393
135.065
134.681
134.241
133.742
133.182
132.559
131.869
131.114
130.293
129.411
128.471
127.477
126.429
125.328
124.175
122.972
121.719
120.42
119.078
117.701
116.296
114.867
113.429
111.989
110.552
109.114
107.669
106.205
104.705
103.161
101.575
99.9526
98.2899
96.5807
94.8232
93.0213
91.1767
89.2827
87.3189
85.2719
83.1213
80.8841
78.4866
76.0732
73.7597
71.8192
69.7289
68.0451
63.5936
57.1607
51.7811
48.5281
47.0677
47.8576
49.4349
51.8081
54.3479
55.9658
56.2086
55.6144
53.4656
49.5733
43.7074
36.8847
29.9709
23.523
17.9502
13.3045
9.52507
6.51015
4.09171
2.00988
0.308688
0.27096
0.215221
0.165508
0.128008
0.0994422
0.0781365
0.0662631
0.0652708
0.0704471
0.0777113
0.0952073
0.120589
0.145931
0.172448
0.199326
0.509054
2.39414
7.3807
17.7499
31.6182
136.711
136.673
136.596
136.473
136.303
136.082
135.81
135.484
135.102
134.664
134.166
133.606
132.981
132.287
131.524
130.693
129.8
128.848
127.84
126.778
125.663
124.494
123.272
121.998
120.676
119.31
117.906
116.473
115.019
113.553
112.095
110.644
109.2
107.754
106.289
104.785
103.229
101.629
99.9926
98.3135
96.5812
94.7939
92.9593
91.0821
89.1548
87.1476
85.0402
82.8064
80.481
77.9719
75.3292
72.5667
69.6791
54.8308
33.4834
18.2345
9.82829
5.21191
3.05459
2.08133
2.00705
2.28745
2.91778
3.66165
4.16359
4.13768
3.67085
2.63273
1.12518
0.348304
0.323645
0.317242
0.317848
0.318575
0.317709
0.314907
0.309817
0.302712
0.296503
0.28739
0.258241
0.214365
0.170294
0.13188
0.100131
0.0757183
0.0609865
0.0582045
0.0620899
0.0722371
0.0912834
0.117402
0.14421
0.168617
0.188708
0.202631
0.214508
0.236747
0.25966
1.62119
137.119
137.083
137.008
136.89
136.723
136.507
136.237
135.914
135.534
135.098
134.602
134.043
133.417
132.72
131.95
131.108
130.202
129.237
128.216
127.14
126.01
124.824
123.584
122.289
120.942
119.549
118.115
116.652
115.171
113.674
112.196
110.732
109.282
107.838
106.376
104.871
103.303
101.69
100.042
98.3493
96.5945
94.7761
92.9073
90.9996
89.0462
86.9998
84.8288
82.521
80.161
77.552
74.4896
61.7609
29.4659
6.80367
0.426796
0.395002
0.379403
0.376534
0.375839
0.375582
0.37418
0.371895
0.368154
0.363048
0.358257
0.354206
0.350592
0.349802
0.35267
0.345279
0.331987
0.324789
0.322324
0.320767
0.318611
0.315185
0.310113
0.303232
0.293378
0.278777
0.252468
0.213893
0.17078
0.129231
0.0929226
0.0639132
0.0450276
0.0386009
0.0451082
0.060445
0.0849095
0.115213
0.144886
0.17027
0.190534
0.204785
0.215117
0.227065
0.239382
0.246583
137.533
137.499
137.429
137.315
137.153
136.941
136.675
136.354
135.977
135.543
135.049
134.492
133.867
133.168
132.39
131.537
130.618
129.639
128.605
127.515
126.37
125.167
123.908
122.59
121.218
119.795
118.33
116.835
115.325
113.787
112.29
110.812
109.36
107.92
106.468
104.964
103.383
101.755
100.101
98.3989
96.6224
94.7698
92.8637
90.9297
88.9598
86.8725
84.6302
82.257
79.8984
77.1096
53.118
10.5097
0.43357
0.402555
0.409868
0.397001
0.383924
0.379011
0.376968
0.375535
0.373472
0.37068
0.366976
0.362408
0.358015
0.354166
0.350663
0.349493
0.348976
0.341708
0.33229
0.326083
0.322837
0.320544
0.318083
0.314495
0.308996
0.301613
0.290683
0.274321
0.248194
0.211774
0.168721
0.123613
0.0826411
0.0488643
0.0260701
0.0173932
0.0235886
0.0425641
0.0726417
0.108636
0.143135
0.171422
0.192642
0.207006
0.217142
0.227797
0.238095
0.24368
137.953
137.922
137.857
137.749
137.592
137.384
137.122
136.804
136.43
135.999
135.509
134.955
134.332
133.631
132.847
131.981
131.047
130.054
129.006
127.903
126.743
125.524
124.244
122.904
121.505
120.051
118.551
117.018
115.467
113.905
112.376
110.883
109.429
108
106.563
105.063
103.466
101.823
100.168
98.4645
96.6669
94.7749
92.8278
90.8767
88.9032
86.7768
84.4647
81.9731
79.1234
44.6069
3.34128
0.50414
0.443601
0.409666
0.404903
0.396016
0.386296
0.381015
0.377659
0.375313
0.372627
0.369391
0.365542
0.361053
0.356729
0.352868
0.348758
0.345648
0.343343
0.339242
0.331641
0.326734
0.323425
0.320655
0.317913
0.31427
0.30925
0.30069
0.287742
0.269085
0.241648
0.205143
0.161994
0.115808
0.071042
0.0325593
0.00558057
-0.00610131
-0.000160612
0.0213632
0.0559494
0.0980113
0.138569
0.171142
0.194112
0.208902
0.218949
0.228432
0.237117
0.241999
138.378
138.351
138.291
138.19
138.04
137.837
137.578
137.263
136.892
136.465
135.978
135.429
134.81
134.111
133.32
132.44
131.491
130.483
129.421
128.304
127.129
125.894
124.595
123.231
121.803
120.316
118.778
117.202
115.608
114.012
112.45
110.94
109.486
108.073
106.66
105.169
103.547
101.888
100.244
98.5488
96.731
94.792
92.8014
90.849
88.897
86.7469
84.3674
80.4695
39.1028
1.0777
0.465459
0.494425
0.4362
0.405503
0.400257
0.393937
0.38773
0.383347
0.379141
0.375159
0.37189
0.36827
0.364277
0.359774
0.355547
0.352296
0.349204
0.346134
0.343186
0.339671
0.331691
0.32733
0.324044
0.320889
0.318047
0.314092
0.308026
0.29809
0.284271
0.264279
0.236366
0.19974
0.15564
0.107022
0.0583647
0.0153794
-0.015321
-0.028432
-0.0243387
-0.000933839
0.0375405
0.0848857
0.131622
0.169197
0.194843
0.210474
0.220358
0.228654
0.236016
0.240591
138.806
138.783
138.732
138.638
138.496
138.298
138.044
137.732
137.363
136.939
136.458
135.915
135.303
134.608
133.812
132.914
131.947
130.924
129.848
128.718
127.53
126.279
124.96
123.572
122.114
120.591
119.011
117.389
115.746
114.108
112.508
110.978
109.526
108.136
106.758
105.278
103.618
101.939
100.324
98.6561
96.8196
94.8243
92.7844
90.8507
88.9563
86.7827
82.5654
36.0474
0.45807
0.460247
0.461553
0.436004
0.455854
0.404649
0.399099
0.394801
0.389646
0.384706
0.379892
0.374861
0.371168
0.367341
0.363142
0.358483
0.355681
0.353438
0.34913
0.345078
0.342132
0.339126
0.335171
0.328439
0.3251
0.321869
0.319255
0.314463
0.307191
0.296294
0.280967
0.259856
0.231168
0.193914
0.148648
0.0977307
0.0456123
-0.0014016
-0.0356251
-0.0511506
-0.0477107
-0.0229021
0.0192331
0.0709228
0.123641
0.166218
0.194659
0.211511
0.221443
0.228957
0.235363
0.239527
139.235
139.219
139.177
139.094
138.96
138.769
138.518
138.208
137.842
137.421
136.944
136.409
135.807
135.122
134.323
133.403
132.417
131.378
130.288
129.147
127.946
126.679
125.341
123.928
122.44
120.878
119.253
117.579
115.881
114.191
112.547
110.992
109.544
108.184
106.855
105.384
103.658
101.955
100.403
98.7929
96.9425
94.8767
92.7638
90.8617
89.0542
84.662
37.5285
0.480008
0.465705
0.466076
0.458482
0.534048
0.503687
0.401192
0.398761
0.393924
0.388508
0.382473
0.378013
0.374303
0.370535
0.366664
0.362187
0.357722
0.360108
0.352585
0.347613
0.343914
0.340478
0.336275
0.330997
0.330687
0.326873
0.322141
0.318676
0.313985
0.305081
0.293453
0.277285
0.255307
0.225934
0.188001
0.141636
0.0887788
0.0338062
-0.0164849
-0.0542775
-0.0725131
-0.0682632
-0.0423719
0.00215147
0.057507
0.11441
0.161743
0.193616
0.211896
0.222181
0.229287
0.234973
0.238684
139.664
139.656
139.626
139.556
139.432
139.247
139
138.691
138.326
137.907
137.436
136.911
136.322
135.653
134.856
133.907
132.9
131.844
130.742
129.589
128.377
127.096
125.739
124.302
122.781
121.178
119.503
117.772
116.01
114.257
112.562
110.975
109.53
108.208
106.942
105.462
103.619
101.887
100.468
98.9728
97.1217
94.9495
92.7057
90.8169
86.8434
39.6597
0.490767
0.480533
0.468034
0.466011
0.455542
0.567914
0.530277
0.394606
0.396377
0.392202
0.387364
0.381956
0.377555
0.373673
0.369806
0.365892
0.361419
0.357082
0.352633
0.348413
0.344889
0.3413
0.338092
0.335369
0.332951
0.330306
0.324516
0.320813
0.317151
0.312058
0.304359
0.290249
0.27331
0.250677
0.220783
0.182338
0.13519
0.0809739
0.0239839
-0.02867
-0.0684985
-0.0882085
-0.0845909
-0.0577815
-0.0116279
0.0467734
0.106391
0.157194
0.191785
0.211625
0.222475
0.229419
0.234571
0.237923
140.09
140.093
140.079
140.024
139.912
139.735
139.49
139.181
138.814
138.396
137.93
137.414
136.844
136.2
135.416
134.426
133.394
132.321
131.208
130.046
128.824
127.53
126.156
124.694
123.14
121.494
119.765
117.968
116.134
114.307
112.546
110.918
109.473
108.195
107.004
105.463
103.424
101.666
100.501
99.2226
97.3887
95.0401
92.5408
88.0983
42.9258
0.508918
0.493909
0.483974
0.469278
0.465645
0.457064
0.571097
0.488099
0.382257
0.390413
0.390418
0.386217
0.381043
0.37702
0.373022
0.369073
0.364845
0.360769
0.356937
0.353665
0.350962
0.346965
0.342339
0.337391
0.334857
0.329021
0.325878
0.323278
0.319312
0.315121
0.309509
0.301222
0.286704
0.269179
0.246057
0.21587
0.177242
0.129846
0.0750708
0.017069
-0.0368969
-0.0779611
-0.0985782
-0.0956635
-0.0680685
-0.0210497
0.0384597
0.100133
0.153106
0.189594
0.210736
0.222218
0.229159
0.234003
0.236998
140.509
140.527
140.533
140.499
140.402
140.232
139.988
139.676
139.305
138.884
138.42
137.915
137.365
136.76
136.005
134.957
133.898
132.809
131.685
130.517
129.288
127.983
126.593
125.106
123.518
121.828
120.04
118.171
116.253
114.336
112.494
110.812
109.358
108.124
107.029
105.365
103.048
101.295
100.516
99.5777
97.7594
95.1409
89.9718
45.8153
0.625365
0.534565
0.505321
0.487536
0.469027
0.466544
0.470856
0.576317
0.459987
0.363947
0.383951
0.388027
0.384856
0.380232
0.376156
0.372373
0.368353
0.363969
0.360048
0.356387
0.35266
0.349015
0.344871
0.340609
0.335132
0.331979
0.331389
0.326888
0.32219
0.317373
0.312682
0.306567
0.297813
0.283709
0.264979
0.241572
0.211369
0.172992
0.126011
0.0716149
0.013756
-0.0403686
-0.081774
-0.102749
-0.100176
-0.0732472
-0.0259627
0.0336991
0.0963457
0.149919
0.187279
0.209284
0.221321
0.22843
0.233083
0.235636
140.918
140.956
140.989
140.98
140.9
140.738
140.495
140.176
139.795
139.366
138.9
138.403
137.874
137.324
136.628
135.497
134.408
133.306
132.175
131.004
129.769
128.456
127.051
125.541
123.92
122.182
120.332
118.383
116.368
114.344
112.399
110.645
109.173
107.967
107.035
105.273
102.64
100.932
100.582
100.058
98.2314
93.735
48.8345
1.29335
0.574854
0.536149
0.50966
0.492739
0.46917
0.46264
0.50448
0.561689
0.445983
0.365189
0.384878
0.392017
0.384248
0.3797
0.375484
0.371527
0.367319
0.363144
0.3592
0.356548
0.353849
0.349753
0.345379
0.341367
0.338175
0.333481
0.328261
0.32169
0.317276
0.31384
0.309202
0.303251
0.294209
0.281377
0.261022
0.237376
0.207435
0.169788
0.123938
0.0709131
0.0143929
-0.038689
-0.0794839
-0.10027
-0.097821
-0.0717261
-0.0254353
0.0336129
0.095295
0.147895
0.185011
0.207319
0.219781
0.227143
0.231434
0.233999
141.31
141.377
141.445
141.468
141.409
141.256
141.011
140.681
140.284
139.839
139.362
138.865
138.354
137.877
137.292
136.043
134.92
133.809
132.674
131.505
130.269
128.951
127.533
126.002
124.347
122.561
120.644
118.607
116.481
114.329
112.256
110.404
108.901
107.797
107.002
105.417
102.613
100.935
100.778
100.681
98.1368
53.7962
3.3521
0.525995
0.551612
0.532028
0.525486
0.505133
0.472799
0.462607
0.891873
0.603475
0.457129
0.362483
0.378234
0.392308
0.384419
0.3794
0.375052
0.370872
0.366615
0.362286
0.359464
0.35784
0.353344
0.348719
0.344231
0.340774
0.336385
0.328729
0.3247
0.319536
0.315006
0.310802
0.305235
0.298222
0.289639
0.27755
0.259042
0.233639
0.204165
0.167709
0.123657
0.0729332
0.0189002
-0.0319453
-0.0711891
-0.0912698
-0.0888792
-0.0636402
-0.0189697
0.037824
0.0968793
0.147059
0.182868
0.204904
0.217726
0.225038
0.229408
0.231974
141.678
141.787
141.9
141.965
141.931
141.787
141.537
141.191
140.769
140.294
139.792
139.282
138.773
138.392
137.985
136.585
135.424
134.317
133.183
132.021
130.788
129.468
128.04
126.49
124.803
122.969
120.982
118.848
116.597
114.293
112.056
110.071
108.519
107.562
107.043
105.936
103.445
102.029
101.471
100.999
59.0888
7.13425
0.481884
0.518242
0.539821
0.526648
0.516579
0.493404
0.480646
0.472492
1.25313
1.19348
0.729108
0.362553
0.376706
0.38688
0.384582
0.379086
0.374566
0.370259
0.365908
0.361489
0.360294
0.357218
0.35241
0.347634
0.34285
0.337025
0.331636
0.326888
0.322858
0.317929
0.313085
0.308232
0.302218
0.294535
0.284142
0.271567
0.255857
0.231245
0.201657
0.166764
0.12507
0.077442
0.0269121
-0.0206328
-0.0574255
-0.0762891
-0.073909
-0.0499595
-0.00774701
0.0455972
0.100487
0.147226
0.18087
0.202281
0.215026
0.222416
0.226991
0.229612
142.012
142.18
142.354
142.472
142.468
142.335
142.077
141.708
141.249
140.725
140.171
139.626
139.059
138.801
138.625
137.111
135.904
134.827
133.698
132.552
131.327
130.008
128.574
127.008
125.292
123.41
121.351
119.114
116.721
114.236
111.792
109.625
108.007
107.251
107.093
106.766
105.139
104.231
100.382
62.716
11.839
0.460642
0.482748
0.513467
0.535043
0.524374
0.505551
0.488461
0.483956
0.520836
1.22843
1.25115
0.988807
0.406509
0.378606
0.385257
0.382752
0.378367
0.373875
0.369537
0.365163
0.360723
0.356945
0.355903
0.35137
0.346532
0.34035
0.33474
0.330208
0.325571
0.321094
0.316126
0.310995
0.305621
0.299199
0.29117
0.28058
0.266642
0.250217
0.229695
0.200307
0.166915
0.12794
0.0839772
0.0377062
-0.00567634
-0.03924
-0.0564165
-0.0540077
-0.0317723
0.00713797
0.0559327
0.10572
0.148124
0.179085
0.199445
0.211946
0.219576
0.224318
0.227022
142.299
142.553
142.806
142.992
143.025
142.904
142.635
142.234
141.726
141.124
140.474
139.856
139.14
139.043
138.848
137.591
136.326
135.334
134.218
133.099
131.887
130.575
129.138
127.559
125.817
123.89
121.758
119.412
116.862
114.165
111.458
109.038
107.321
106.827
107.075
107.61
106.859
102.512
62.5388
14.4203
0.454393
0.46572
0.485667
0.512111
0.53651
0.526347
0.50216
0.48389
0.482124
0.702594
1.20992
1.2258
1.13774
0.439306
0.382225
0.383017
0.380772
0.377163
0.372908
0.368654
0.364318
0.35991
0.355559
0.352066
0.349204
0.343426
0.338314
0.333542
0.328847
0.324116
0.319337
0.314214
0.308805
0.302999
0.296223
0.287946
0.277263
0.263526
0.246344
0.22639
0.201469
0.168601
0.131994
0.0919711
0.0503606
0.0116402
-0.0181841
-0.0333338
-0.0308901
-0.0107353
0.0242106
0.0676823
0.111802
0.149533
0.177756
0.196653
0.208812
0.216634
0.221533
0.224326
142.52
142.898
143.256
143.529
143.607
143.499
143.216
142.776
142.203
141.484
140.658
139.979
139.077
138.784
138.766
137.938
136.662
135.834
134.74
133.663
132.47
131.168
129.733
128.146
126.382
124.414
122.213
119.754
117.033
114.09
111.045
108.242
106.393
106.297
107.052
108.446
101.725
64.7171
14.3576
0.476155
0.459335
0.46989
0.488503
0.512184
0.542335
0.528845
0.501811
0.486029
0.490629
0.697007
1.17716
1.20511
1.00906
0.456436
0.383806
0.381343
0.378528
0.375623
0.371692
0.367596
0.363345
0.359003
0.354699
0.350635
0.346202
0.341615
0.337054
0.332267
0.327452
0.322584
0.317569
0.312247
0.306571
0.300399
0.293321
0.284894
0.274208
0.260722
0.244065
0.223792
0.20026
0.172415
0.137104
0.100911
0.0640909
0.030074
0.00406805
-0.00894675
-0.00651506
0.0112931
0.0419092
0.0797839
0.118227
0.151387
0.176521
0.194113
0.205993
0.213811
0.218772
0.221648
142.65
143.207
143.706
144.087
144.219
144.128
143.827
143.34
142.687
141.801
140.712
140.004
139.853
146.352
138.98
137.313
136.871
136.313
135.266
134.245
133.075
131.789
130.36
128.77
126.991
124.99
122.724
120.153
117.251
114.027
110.538
107.205
105.08
105.646
107.043
101.164
50.1252
13.5172
0.414073
0.455596
0.461473
0.471666
0.48861
0.510834
0.550678
0.534888
0.500426
0.482099
0.509061
0.551257
1.09916
1.17751
0.939756
0.469595
0.382656
0.380403
0.376502
0.373943
0.370297
0.366387
0.362249
0.357999
0.353732
0.349548
0.345085
0.340479
0.335802
0.330951
0.326028
0.321012
0.315793
0.310265
0.304335
0.297849
0.290524
0.282041
0.271434
0.258247
0.242129
0.222652
0.199547
0.172619
0.142668
0.11019
0.0778719
0.0485017
0.0261979
0.0150721
0.0173885
0.0329957
0.0593508
0.0916767
0.124462
0.153144
0.1757
0.192117
0.203536
0.211205
0.216155
0.219108
142.657
143.47
144.157
144.672
144.871
144.802
144.48
143.937
143.186
142.073
140.69
139.939
140.802
137.599
137.95
136.544
136.779
136.781
135.809
134.848
133.706
132.439
131.021
129.435
127.649
125.622
123.302
120.625
117.538
114.006
109.964
105.763
103.085
104.553
82.8068
33.062
5.54172
0.471918
0.437742
0.457584
0.464401
0.472032
0.48593
0.502938
0.556745
0.531867
0.55427
0.609014
0.512224
0.527462
1.00529
1.17972
0.954641
0.44899
0.378754
0.379373
0.374676
0.372226
0.368785
0.365058
0.361053
0.356919
0.352702
0.348458
0.343972
0.339329
0.334548
0.329614
0.324584
0.319419
0.314017
0.30829
0.302132
0.295387
0.287841
0.279528
0.269314
0.256116
0.240568
0.221958
0.200178
0.175333
0.148045
0.119432
0.0912172
0.0659493
0.0469765
0.0377304
0.0398138
0.052665
0.0749127
0.102256
0.130221
0.155377
0.175619
0.190723
0.2015
0.208886
0.213737
0.216639
142.497
143.672
144.607
145.287
145.569
145.53
145.186
144.579
143.707
142.334
140.488
139.993
139.571
139.548
137.545
136.719
137.386
137.33
136.393
135.476
134.361
133.118
131.716
130.14
128.357
126.318
123.958
121.188
117.922
114.104
109.389
103.752
98.8197
58.0786
11.9624
0.483332
0.472195
0.471975
0.45115
0.459629
0.465174
0.470098
0.477732
0.483659
0.55813
0.765397
0.626377
0.606071
0.518837
0.531395
0.842676
1.15918
1.05438
0.413719
0.374764
0.377873
0.373014
0.370461
0.367179
0.363639
0.359782
0.355786
0.351637
0.347373
0.342914
0.338242
0.333291
0.328263
0.323128
0.317821
0.312253
0.306345
0.299976
0.292994
0.285961
0.279608
0.269923
0.255883
0.239363
0.221584
0.201111
0.178352
0.153729
0.128257
0.10374
0.0823382
0.065996
0.0580097
0.0598164
0.0705636
0.0892689
0.1124
0.136216
0.158093
0.176089
0.189856
0.199879
0.206874
0.211543
0.214379
142.109
143.791
145.054
145.935
146.323
146.323
145.958
145.282
144.277
142.626
140.274
138.555
138.97
139.016
136.804
136.054
137.925
137.877
137.012
136.126
135.043
133.827
132.446
130.888
129.117
127.083
124.703
121.857
118.434
114.447
109.03
101.19
41.8154
0.593887
0.580763
0.505139
0.485362
0.476497
0.463164
0.464042
0.464341
0.466057
0.463368
0.456545
0.551496
2.35585
0.949999
0.584993
0.49653
0.542148
0.747883
1.14792
0.740827
0.400943
0.368929
0.375144
0.370997
0.36852
0.365478
0.362152
0.358459
0.354626
0.350592
0.346696
0.342603
0.33794
0.332406
0.326939
0.321662
0.316227
0.310512
0.304445
0.297906
0.290762
0.286404
0.279061
0.267918
0.255435
0.239914
0.221442
0.202194
0.181376
0.159202
0.137108
0.115808
0.0978231
0.0830957
0.0762162
0.0778954
0.0864351
0.10212
0.121804
0.14207
0.161125
0.177085
0.189423
0.198635
0.20516
0.209593
0.212328
141.406
143.793
145.495
146.624
147.14
147.196
146.81
146.062
144.918
142.979
140.1
137.578
137.693
139.982
146.453
137.734
138.444
138.392
137.659
136.798
135.75
134.564
133.211
131.676
129.931
127.921
125.548
122.652
119.089
115.021
109.183
54.7916
0.424769
0.569252
0.568329
0.516078
0.491342
0.489731
0.490516
0.471494
0.462785
0.460985
0.447455
0.425939
0.902604
2.42164
2.10447
0.591152
0.428947
0.55074
0.696708
1.14054
0.475299
0.415821
0.359247
0.370382
0.367976
0.366325
0.363695
0.360626
0.357103
0.353528
0.350056
0.346053
0.341617
0.337018
0.332531
0.32673
0.32021
0.314656
0.308801
0.302598
0.295945
0.288749
0.28324
0.276664
0.265901
0.253931
0.240165
0.222536
0.203282
0.184332
0.164462
0.144802
0.132717
0.114417
0.100779
0.0931563
0.094993
0.101357
0.114722
0.131521
0.148564
0.164331
0.17826
0.189325
0.19771
0.203721
0.207875
0.210475
140.302
143.665
145.941
147.376
148.043
148.159
147.753
146.937
145.658
143.492
140.07
137.218
137.042
139.893
139.428
138.188
139.406
139.051
138.345
137.492
136.482
135.331
134.009
132.504
130.797
128.835
126.506
123.609
119.857
115.575
89.2589
1.94857
0.56288
0.557265
0.560842
0.52016
0.504536
0.50172
0.491859
0.466615
0.462056
0.457906
0.438466
0.422811
2.13739
2.30872
2.11624
1.05409
0.287161
0.528496
1.04386
0.610425
0.470818
0.409071
0.355219
0.365148
0.365106
0.364196
0.361889
0.35911
0.355818
0.352978
0.349212
0.345002
0.340529
0.335862
0.331198
0.325417
0.318819
0.313123
0.30715
0.300838
0.294064
0.286783
0.279025
0.272563
0.263782
0.252456
0.239646
0.226245
0.204954
0.187219
0.169515
0.152024
0.138602
0.126891
0.11557
0.11147
0.11176
0.119128
0.131355
0.146145
0.155007
0.167543
0.179667
0.189467
0.197056
0.202531
0.206387
0.208821
138.708
143.431
146.462
148.269
149.081
149.233
148.794
147.915
146.519
144.22
140.529
137.346
137.367
140.11
140.967
139.498
140.632
139.846
139.058
138.209
137.238
136.126
134.838
133.368
131.71
129.822
127.587
124.795
120.722
113.86
16.623
0.505344
0.536515
0.540117
0.540454
0.519824
0.513886
0.501907
0.477965
0.467338
0.462305
0.457637
0.441867
0.43778
2.32457
2.28208
2.06804
2.06983
0.233333
0.446815
0.876215
0.381173
0.376031
0.372818
0.357997
0.362471
0.365004
0.363872
0.36009
0.357654
0.355068
0.35214
0.348214
0.343982
0.339456
0.334586
0.3289
0.323099
0.317473
0.311623
0.305528
0.299096
0.292281
0.284878
0.277057
0.268788
0.260419
0.250978
0.238864
0.226392
0.208677
0.19013
0.17432
0.15877
0.144646
0.133594
0.127258
0.123719
0.125008
0.130138
0.137251
0.14669
0.158693
0.170607
0.181146
0.189766
0.196638
0.201853
0.205852
0.207503
136.48
143.266
147.232
149.447
150.341
150.448
149.936
148.993
147.495
145.154
141.414
137.791
138.343
140.63
141.509
140.264
141.348
140.581
139.773
138.943
138.017
136.949
135.697
134.262
132.663
130.873
128.796
126.174
121.865
69.1036
0.68258
0.506883
0.526427
0.531321
0.526897
0.528592
0.514721
0.496168
0.47838
0.46864
0.462953
0.458765
0.449215
0.449363
2.42366
2.32066
2.08334
2.09145
0.150345
0.415533
0.401633
0.376652
0.423959
0.376912
0.360942
0.360396
0.363752
0.364351
0.358497
0.356272
0.35426
0.351177
0.347267
0.343006
0.338059
0.332829
0.327573
0.321928
0.316147
0.310173
0.303921
0.297378
0.290436
0.283021
0.275167
0.266758
0.257244
0.246952
0.236139
0.22222
0.206766
0.192994
0.178845
0.165056
0.152453
0.141844
0.134938
0.132412
0.132022
0.136237
0.143662
0.153482
0.163577
0.173488
0.182653
0.190295
0.196824
0.20157
0.204804
0.206188
124.994
142.771
148.439
151.126
151.954
151.863
151.18
150.153
148.568
146.251
142.745
139.44
139.838
141.062
142.456
141.179
141.765
141.148
140.481
139.693
138.819
137.8
136.583
135.179
133.642
131.981
130.151
127.553
119.225
7.05873
0.552246
0.507821
0.522421
0.523947
0.522969
0.528654
0.514482
0.497386
0.4768
0.468934
0.463474
0.46013
0.454536
0.45723
2.37207
2.37763
2.12343
1.16966
0.168643
0.509939
0.346404
0.363682
0.405946
0.405435
0.353423
0.357907
0.361764
0.359814
0.356923
0.355054
0.352495
0.350223
0.346386
0.341571
0.336734
0.331804
0.326463
0.320752
0.314889
0.308731
0.302344
0.295686
0.288653
0.281222
0.273338
0.264876
0.255492
0.245098
0.233705
0.221265
0.208197
0.195689
0.183074
0.170768
0.159469
0.150207
0.144105
0.140664
0.140526
0.144768
0.150503
0.158668
0.167576
0.176121
0.184478
0.19158
0.196875
0.200893
0.203234
0.205103
98.971
136.184
150.685
153.492
154.023
153.537
152.521
151.367
149.718
147.497
144.436
141.602
142.016
142.49
143.425
142.128
142.59
141.892
141.211
140.458
139.643
138.68
137.493
136.11
134.629
133.125
131.599
129.081
47.9851
0.652107
0.511299
0.509669
0.518321
0.518153
0.512069
0.524168
0.513487
0.492787
0.47544
0.468813
0.463645
0.460966
0.458576
0.464588
1.21882
2.40595
2.16772
0.530926
0.259001
0.523781
0.361704
0.359668
0.417185
0.411822
0.353075
0.356052
0.359205
0.357206
0.355861
0.354078
0.351811
0.348557
0.344739
0.340479
0.335849
0.330853
0.325419
0.31964
0.313628
0.307309
0.300783
0.294032
0.286958
0.279487
0.271588
0.263117
0.253866
0.243784
0.232918
0.22128
0.209312
0.198206
0.186982
0.175945
0.165699
0.157505
0.151803
0.149051
0.14848
0.152044
0.157069
0.164249
0.17187
0.179571
0.186387
0.19207
0.196315
0.199824
0.202461
0.204141
75.1682
109.796
153.732
156.44
156.502
155.513
153.963
152.628
150.885
148.786
146.149
143.881
144.435
144.796
143.792
142.889
143.626
142.781
141.96
141.229
140.487
139.59
138.427
137.039
135.617
134.286
132.688
122.565
4.83913
0.51483
0.504518
0.509166
0.514681
0.513564
0.506899
0.511725
0.508176
0.483844
0.474321
0.468354
0.463331
0.460571
0.458575
0.463119
0.565231
1.51615
0.661753
0.35848
0.316386
0.420542
0.356246
0.364317
0.394919
0.405488
0.352347
0.355031
0.356798
0.35595
0.354842
0.353163
0.350965
0.348366
0.344348
0.339808
0.335042
0.329977
0.324442
0.318516
0.312335
0.305884
0.299224
0.29245
0.285322
0.277818
0.269917
0.261461
0.252339
0.242544
0.232152
0.22121
0.210118
0.200516
0.1906
0.18068
0.17142
0.165445
0.159684
0.155985
0.155457
0.157875
0.162493
0.168556
0.175324
0.181169
0.187052
0.192265
0.196146
0.199381
0.201818
0.203369
49.6616
63.1284
157.991
160.15
159.559
157.569
155.511
153.917
152.021
149.993
147.655
146.018
146.477
147.417
150.255
144.718
144.93
143.639
142.709
141.994
141.35
140.533
139.379
137.953
136.604
135.462
133.588
37.1435
0.895676
0.500632
0.498645
0.505188
0.509701
0.508967
0.503023
0.500078
0.491894
0.480333
0.473447
0.467533
0.462744
0.459
0.455781
0.459768
0.447308
0.432364
0.391176
0.380226
0.343575
0.354043
0.356675
0.360365
0.386871
0.405134
0.354579
0.354789
0.355258
0.354898
0.354035
0.353253
0.351233
0.347306
0.343555
0.339181
0.334285
0.329185
0.323542
0.317465
0.311082
0.304461
0.297717
0.290924
0.283754
0.276216
0.268325
0.259888
0.250886
0.241357
0.231385
0.221107
0.210953
0.20482
0.198762
0.188535
0.177945
0.176316
0.173443
0.170204
0.161946
0.163377
0.166804
0.171875
0.177323
0.183401
0.188645
0.193021
0.196206
0.199042
0.201247
0.202615
45.0582
47.3308
118.846
166.011
162.465
159.583
156.957
155.122
153.019
151.011
148.846
147.57
148.139
149.143
147.283
146.154
145.654
144.385
143.4
142.732
142.232
141.517
140.351
138.855
137.489
136.356
114.079
3.29778
0.483134
0.492004
0.494321
0.499743
0.504103
0.504342
0.499312
0.492072
0.486146
0.478739
0.472308
0.466714
0.461508
0.45691
0.451218
0.474895
0.439716
0.426316
0.40057
0.394204
0.364595
0.364558
0.359451
0.359929
0.434179
0.40393
0.354642
0.354658
0.354767
0.353956
0.355182
0.355082
0.352708
0.349553
0.34571
0.340208
0.333976
0.328504
0.32274
0.316484
0.309909
0.303099
0.296226
0.289467
0.282262
0.27468
0.266807
0.258379
0.249483
0.240212
0.230622
0.220938
0.21505
0.219529
0.208548
0.199727
0.188925
0.178232
0.173456
0.175009
0.169171
0.167927
0.170815
0.175057
0.180043
0.184953
0.189372
0.19346
0.19622
0.198799
0.200515
0.201822
44.6129
43.3787
74.9318
175.026
165.619
161.319
158.073
156.135
153.901
151.776
149.675
148.61
149.595
150.606
149.381
147.131
146.317
145.032
144.007
143.448
143.14
142.552
141.355
139.729
138.106
135.714
23.199
0.702736
0.490934
0.491207
0.49148
0.494009
0.498515
0.499838
0.495715
0.489612
0.48341
0.477012
0.471282
0.465473
0.459909
0.4546
0.448325
0.444055
0.43398
0.422537
0.40422
0.38926
0.377608
0.371741
0.363686
0.363919
0.437425
0.398984
0.354454
0.354664
0.3544
0.353954
0.357166
0.354698
0.352253
0.349359
0.346736
0.345526
0.334
0.32803
0.322054
0.315578
0.308786
0.301765
0.294744
0.288097
0.280857
0.273206
0.26536
0.256911
0.248094
0.239091
0.229944
0.221026
0.218788
0.222254
0.210813
0.202924
0.19608
0.183461
0.177726
0.173341
0.171373
0.172312
0.174254
0.177933
0.182392
0.189705
0.193324
0.195728
0.196896
0.198624
0.200136
0.201177
44.2228
42.8414
57.7023
148.89
167.493
162.419
158.7
156.771
154.386
152.259
150.167
149.256
150.83
150.572
150.189
147.869
147.019
145.572
144.515
144.087
144.083
143.655
142.413
140.449
138.903
93.9264
2.24716
0.542698
0.496972
0.49003
0.487955
0.488948
0.493849
0.495887
0.492601
0.487265
0.481507
0.475462
0.469632
0.464028
0.458462
0.452483
0.445621
0.437491
0.429563
0.419185
0.405047
0.394338
0.384612
0.376208
0.36795
0.366353
0.433688
0.376607
0.35522
0.354876
0.354017
0.354442
0.356758
0.354147
0.35182
0.349099
0.34578
0.339072
0.33314
0.32772
0.321499
0.314757
0.307722
0.300469
0.293258
0.286847
0.279576
0.271779
0.263976
0.25546
0.246675
0.237949
0.229357
0.221154
0.213555
0.215687
0.212021
0.205252
0.198285
0.187396
0.181329
0.176971
0.175109
0.175405
0.177167
0.180387
0.184415
0.189522
0.194169
0.196522
0.198909
0.199507
0.199738
0.20067
44.0179
43.163
43.637
83.2671
163.684
162.696
158.776
157.069
154.573
152.365
150.182
149.376
151.764
150.779
150.394
148.225
147.686
146.019
144.879
144.621
145.059
144.847
143.487
140.838
137.092
13.4337
0.504014
0.49288
0.484435
0.483858
0.486865
0.487552
0.490321
0.492498
0.489823
0.485109
0.47969
0.474001
0.468313
0.462808
0.457114
0.450693
0.443153
0.434495
0.425988
0.41601
0.408905
0.3941
0.386897
0.378727
0.371916
0.378693
0.418291
0.364829
0.3569
0.355081
0.353731
0.352481
0.353975
0.35346
0.351458
0.348976
0.343711
0.33849
0.333382
0.327618
0.321076
0.314025
0.306721
0.299229
0.292015
0.288323
0.282474
0.271387
0.262667
0.254005
0.245186
0.236726
0.228643
0.221188
0.214282
0.210874
0.213141
0.207138
0.201151
0.190372
0.184073
0.179834
0.178208
0.178314
0.179619
0.182479
0.186324
0.189898
0.192894
0.195908
0.198706
0.200904
0.202282
0.200203
44.1861
43.6001
44.3935
60.5437
136.303
162.006
158.441
156.958
154.396
151.844
149.104
147.637
150.412
151.037
150.103
150.03
148.422
146.319
145.014
144.961
146.055
146.144
144.641
142.378
63.5416
1.51586
0.495117
0.453505
0.462099
0.47291
0.482769
0.483131
0.487619
0.489687
0.487453
0.483148
0.478044
0.472561
0.467072
0.461635
0.455895
0.449172
0.441084
0.431815
0.422607
0.413057
0.403622
0.39204
0.388741
0.380476
0.382542
0.442103
0.402034
0.363622
0.357601
0.355154
0.35345
0.352132
0.351407
0.352081
0.351194
0.348066
0.343025
0.338873
0.333756
0.327692
0.320788
0.313383
0.305789
0.298105
0.294508
0.295682
0.286607
0.276888
0.261756
0.252508
0.24358
0.235364
0.227742
0.221097
0.215068
0.21035
0.209145
0.208956
0.204315
0.19914
0.18656
0.182047
0.180733
0.180767
0.181635
0.184219
0.188075
0.191284
0.193938
0.195394
0.197657
0.199679
0.201061
0.199918
44.3582
43.8095
44.3491
43.706
79.2701
156.841
157.564
156.394
153.881
151.162
149.206
145.899
147.336
150.772
150.377
151.451
148.915
145.645
144.049
144.954
147.066
147.438
145.329
132.657
4.25381
1.04647
0.508207
0.416054
0.428725
0.457284
0.475259
0.479278
0.485422
0.487395
0.48543
0.481347
0.476489
0.471246
0.465899
0.460587
0.454828
0.447884
0.439319
0.429291
0.419196
0.409969
0.399564
0.386853
0.404022
0.415716
0.443361
0.448819
0.37228
0.360918
0.357361
0.354827
0.352998
0.351728
0.350615
0.349463
0.347985
0.345817
0.343272
0.3395
0.334343
0.327952
0.320641
0.312808
0.304965
0.297183
0.297
0.295141
0.285306
0.276135
0.265818
0.250887
0.241756
0.233813
0.226672
0.220899
0.215486
0.210988
0.205127
0.20885
0.2068
0.204755
0.195954
0.183555
0.182802
0.182879
0.183244
0.185593
0.189707
0.192493
0.194551
0.195656
0.196852
0.198124
0.198932
0.199517
44.8329
44.7202
44.3302
44.2362
51.6996
136.931
156.092
155.663
153.523
151.172
147.857
144.997
147.521
150.441
153.849
152.205
147.854
144.241
143.106
144.545
148.191
148.983
146.694
32.6914
2.02675
1.08611
0.467143
0.376142
0.397146
0.443033
0.47394
0.476161
0.483681
0.485571
0.48372
0.479837
0.475082
0.469975
0.464753
0.459479
0.453768
0.446739
0.437708
0.426782
0.415709
0.406606
0.39532
0.415748
0.473541
0.472051
0.452272
0.447259
0.367382
0.35977
0.356648
0.354145
0.352476
0.351227
0.350438
0.349904
0.349052
0.347047
0.343951
0.340417
0.335216
0.328648
0.321118
0.31315
0.304267
0.296375
0.289277
0.290332
0.283728
0.274392
0.267576
0.253754
0.239505
0.232137
0.225455
0.220642
0.215793
0.211547
0.207022
0.201155
0.205827
0.20709
0.210783
0.19001
0.184632
0.184726
0.184699
0.189004
0.196881
0.199151
0.196682
0.195659
0.196629
0.197861
0.198696
0.199202
44.9835
44.9854
44.4615
44.4178
47.3876
101.55
154.305
155.243
153.879
151.861
149.561
145.971
146.349
150.566
154.189
151.323
146.743
144.56
143.684
145.34
149.693
150.242
101.277
0.520915
1.7959
1.01631
0.434186
0.3594
0.386151
0.436096
0.471551
0.474851
0.482693
0.484337
0.482418
0.478557
0.473817
0.468727
0.463565
0.458369
0.452723
0.445673
0.436197
0.424273
0.412316
0.405242
0.396207
0.440711
0.497245
0.463868
0.412195
0.393546
0.36438
0.359049
0.355761
0.353518
0.352283
0.35056
0.349848
0.34919
0.34838
0.346899
0.344749
0.341773
0.337044
0.331046
0.325048
0.313231
0.303507
0.295696
0.289306
0.282874
0.281155
0.27212
0.266295
0.262001
0.238415
0.230603
0.225129
0.227966
0.225406
0.214728
0.207618
0.202317
0.198422
0.198908
0.198252
0.19017
0.186094
0.186269
0.185869
0.203982
0.213923
0.21304
0.210539
0.196098
0.196296
0.197639
0.198512
0.198927
45.0168
44.5521
44.495
44.387
44.9436
84.2821
153.888
155.584
154.927
153.898
151.608
149.002
150.164
153.359
153.464
149.262
147.354
144.884
143.262
151.195
150.737
132.775
5.16989
0.560064
1.41357
1.57455
0.450012
0.378743
0.399343
0.440504
0.471413
0.47601
0.482706
0.483733
0.481505
0.477501
0.472676
0.467537
0.462357
0.457191
0.451621
0.444696
0.434837
0.422745
0.409273
0.404762
0.397539
0.372653
0.38387
0.417009
0.366017
0.362013
0.361911
0.357754
0.354581
0.353337
0.351223
0.349842
0.349808
0.352213
0.353218
0.352139
0.349114
0.345622
0.341482
0.335782
0.322083
0.311997
0.302664
0.294737
0.288183
0.282584
0.274312
0.264697
0.260438
0.249332
0.236584
0.229288
0.233446
0.239471
0.231765
0.226423
0.21178
0.202172
0.199025
0.19611
0.192438
0.188357
0.187369
0.187706
0.18779
0.214618
0.216125
0.213641
0.219612
0.20667
0.195825
0.197444
0.198353
0.198669
44.676
44.2783
44.4089
44.3426
44.5488
81.6361
154.726
155.638
156.417
155.523
153.371
151.309
151.93
153.942
152.25
150.239
147.593
145.297
152.771
152.157
138.305
25.6029
0.416047
0.483371
1.41786
1.59688
0.521625
0.43297
0.4257
0.449897
0.468936
0.479106
0.483778
0.483755
0.480968
0.476648
0.471616
0.466327
0.461043
0.455856
0.450463
0.443817
0.440577
0.444654
0.407744
0.40063
0.38793
0.371815
0.36244
0.369032
0.362446
0.361715
0.360035
0.356166
0.35299
0.350713
0.349511
0.35076
0.353092
0.353212
0.353384
0.353191
0.352714
0.349983
0.346622
0.335938
0.322739
0.312104
0.30172
0.29416
0.289327
0.279409
0.274694
0.265793
0.251905
0.242318
0.234797
0.22817
0.236816
0.239522
0.231135
0.226762
0.226013
0.213098
0.199237
0.197094
0.193759
0.189963
0.188198
0.189334
0.188976
0.191259
0.206295
0.211821
0.21992
0.217612
0.195435
0.197289
0.198211
0.198429
44.9845
44.3229
44.3609
44.2907
44.5486
78.2719
157.038
157.681
158.216
157.142
154.903
152.94
152.884
153.039
150.8
150.43
148.658
152.333
152.591
142.611
45.832
0.242183
0.339226
0.433501
1.50199
1.6236
0.571083
0.471491
0.455192
0.465715
0.477322
0.483644
0.485759
0.484345
0.480762
0.475959
0.470599
0.46506
0.459585
0.454303
0.449088
0.447461
0.476049
0.466386
0.409855
0.399707
0.388259
0.374793
0.366829
0.368051
0.362189
0.360909
0.358197
0.354364
0.351112
0.348792
0.348635
0.352692
0.352321
0.352807
0.35363
0.354266
0.354281
0.352479
0.349046
0.336065
0.324062
0.312348
0.300838
0.303439
0.314944
0.30032
0.272549
0.262278
0.249654
0.240497
0.233356
0.227062
0.222908
0.2307
0.229225
0.226401
0.226339
0.220879
0.201643
0.198091
0.1946
0.190408
0.188885
0.190964
0.189724
0.193914
0.195236
0.199805
0.206947
0.195906
0.195703
0.197245
0.19804
0.19819
44.6654
44.4452
44.6804
44.2153
44.5665
91.0424
162.437
161.059
160.388
158.65
156.171
154.121
153.378
151.27
151.669
150.063
152.008
151.978
138.933
44.2222
0.196964
0.266158
0.307521
0.330128
1.47223
1.54898
0.612778
0.485339
0.477076
0.48212
0.487143
0.489097
0.488433
0.485381
0.480816
0.475386
0.469591
0.463716
0.457967
0.452488
0.447598
0.458098
0.475488
0.463508
0.409107
0.398994
0.388627
0.377345
0.370166
0.368035
0.362378
0.359878
0.356282
0.352342
0.348932
0.346389
0.349443
0.351545
0.351344
0.352292
0.352837
0.353477
0.35487
0.355311
0.350408
0.336922
0.32573
0.312785
0.301229
0.318946
0.314708
0.302641
0.290406
0.265962
0.246749
0.238175
0.231606
0.225871
0.221195
0.219517
0.22464
0.226029
0.218499
0.216488
0.203529
0.199301
0.196246
0.196311
0.203865
0.200363
0.191324
0.194382
0.199388
0.201786
0.196624
0.19453
0.195822
0.197022
0.197809
0.197986
47.798
44.2507
44.3012
44.1466
44.5804
96.5
168.989
164.825
162.598
160.029
157.256
155.09
152.314
152.267
150.412
152.716
151.707
127.116
31.6299
0.205655
0.226004
0.268172
0.289776
0.257914
0.595687
1.5428
0.768155
0.49615
0.493907
0.497928
0.497368
0.495094
0.491565
0.48673
0.481042
0.474874
0.468564
0.462291
0.456194
0.450422
0.446754
0.468959
0.472894
0.451879
0.408098
0.398795
0.388971
0.379164
0.372176
0.36796
0.362266
0.358599
0.354388
0.35016
0.34655
0.343955
0.351782
0.349876
0.350035
0.348849
0.35016
0.352863
0.354201
0.353304
0.349051
0.340743
0.327707
0.313513
0.300446
0.330702
0.312774
0.300637
0.28953
0.280878
0.248777
0.235123
0.22946
0.224449
0.220405
0.217787
0.215687
0.224062
0.219547
0.212101
0.203268
0.19959
0.197242
0.195457
0.202342
0.215338
0.211982
0.2061
0.199504
0.199361
0.197282
0.195361
0.195675
0.196678
0.197408
0.197507
52.9396
44.1166
44.2344
44.0496
47.4001
128.519
175.466
168.689
164.841
161.379
158.155
154.731
153.791
151.791
152.846
151.697
113.054
24.8121
0.16815
0.218722
0.235042
0.266991
0.2712
0.20566
0.701517
1.59422
1.17665
0.510647
0.51426
0.514206
0.507833
0.501344
0.494936
0.488243
0.481347
0.474368
0.467496
0.460788
0.45427
0.448038
0.445638
0.476744
0.471776
0.441344
0.407625
0.398512
0.3892
0.380267
0.373198
0.367726
0.361958
0.357458
0.352681
0.348188
0.344026
0.341689
0.343298
0.344409
0.343751
0.346029
0.350209
0.354225
0.35696
0.357498
0.354116
0.344459
0.330316
0.314502
0.299602
0.303039
0.308776
0.297691
0.287511
0.280659
0.277316
0.231173
0.227152
0.222895
0.219263
0.216375
0.213384
0.216225
0.222025
0.219401
0.211428
0.205902
0.198687
0.196965
0.197949
0.189574
0.20957
0.213283
0.211988
0.204099
0.196904
0.195957
0.19528
0.196223
0.196927
0.196923
59.7181
44.1136
44.1602
43.9715
53.5218
132.307
180.353
172.441
167.331
162.633
158.293
156.063
153.417
153.659
151.471
108.468
27.2827
0.307051
0.182037
0.215836
0.235831
0.257534
0.23822
0.169263
0.582514
1.74037
1.39948
0.544299
0.541185
0.53113
0.518295
0.507572
0.498335
0.489769
0.481633
0.473814
0.466371
0.459214
0.452214
0.445423
0.444931
0.479154
0.471706
0.431311
0.406447
0.397999
0.389211
0.380781
0.373609
0.3678
0.361373
0.355918
0.350514
0.345861
0.341191
0.338062
0.336818
0.337614
0.340194
0.344559
0.350045
0.355585
0.359902
0.361845
0.358983
0.34855
0.332933
0.315338
0.298296
0.29026
0.301638
0.293443
0.283902
0.276687
0.271564
0.230711
0.225071
0.221361
0.218057
0.215069
0.211456
0.208574
0.21712
0.220944
0.218312
0.213652
0.211865
0.201625
0.197209
0.191599
0.192073
0.201252
0.214556
0.212729
0.21005
0.200605
0.195147
0.195703
0.196432
0.196681
60.7912
44.0903
44.1214
43.872
68.5112
159.5
185.245
176.617
169.875
163.587
159.655
155.334
154.451
153.478
116.016
31.2198
0.82615
0.298538
0.159446
0.192477
0.225669
0.243256
0.231157
0.184798
1.39324
1.70582
1.10586
0.587866
0.568624
0.547345
0.528232
0.513463
0.501547
0.491156
0.481825
0.473156
0.465168
0.457608
0.450203
0.442899
0.444178
0.479725
0.469207
0.420554
0.40564
0.397403
0.389011
0.380849
0.37343
0.367164
0.360275
0.354086
0.348161
0.342522
0.337994
0.334659
0.333075
0.333873
0.337115
0.342571
0.34958
0.357515
0.364499
0.368745
0.366247
0.356771
0.340168
0.316685
0.29682
0.28401
0.275319
0.281524
0.279224
0.265439
0.235301
0.225942
0.223224
0.21995
0.216873
0.213849
0.210333
0.206473
0.203436
0.210765
0.216427
0.213634
0.212229
0.211285
0.203379
0.190563
0.191477
0.190989
0.194532
0.208819
0.210891
0.211363
0.204466
0.19628
0.195982
0.195709
60.1497
44.3958
44.2089
44.1359
79.3424
167.929
188.881
180.996
172.208
164.962
159.518
156.855
155.374
128.648
39.8709
1.14304
0.880509
0.265393
0.10533
0.162704
0.209388
0.228758
0.236343
0.234153
0.87098
1.68734
1.00068
0.61533
0.589795
0.561219
0.536978
0.518668
0.504463
0.492533
0.481779
0.472339
0.463855
0.455988
0.448352
0.440567
0.43652
0.45029
0.44563
0.413393
0.404862
0.396775
0.388644
0.3806
0.37291
0.365618
0.358632
0.352004
0.345362
0.339451
0.334539
0.330753
0.328697
0.329406
0.333273
0.341494
0.356237
0.370661
0.381022
0.388493
0.395772
0.376361
0.343853
0.315775
0.294182
0.27919
0.266827
0.256457
0.247149
0.237602
0.229673
0.224637
0.221714
0.218632
0.215695
0.212689
0.209281
0.205937
0.203073
0.200719
0.207001
0.213293
0.212403
0.212617
0.217799
0.198127
0.190876
0.190698
0.190683
0.194033
0.202503
0.214287
0.209911
0.208284
0.198023
0.195055
60.4634
44.1881
44.2078
43.3663
94.758
172.776
192.219
184.048
174.183
166.297
160.79
156.518
142.392
56.0987
1.0976
1.07521
0.67005
0.435288
0.111334
0.143939
0.194548
0.216354
0.239747
0.263288
0.667363
1.65604
1.00649
0.622913
0.601047
0.571778
0.543933
0.523031
0.507612
0.493178
0.481479
0.471296
0.462387
0.454329
0.446597
0.438641
0.429279
0.424438
0.419691
0.412345
0.404031
0.396121
0.388157
0.380127
0.372209
0.364389
0.35675
0.349535
0.342611
0.336252
0.330725
0.326315
0.323598
0.324076
0.332395
0.350738
0.362043
0.373779
0.384447
0.394076
0.407891
0.364491
0.343761
0.314411
0.289402
0.272959
0.26064
0.250354
0.241303
0.233764
0.227534
0.223217
0.220365
0.217438
0.214595
0.211564
0.20819
0.205187
0.202568
0.200477
0.199715
0.199145
0.207652
0.212755
0.215935
0.202463
0.190417
0.190558
0.191154
0.193662
0.191649
0.193373
0.206582
0.210478
0.210303
0.197439
59.5074
44.1402
43.9577
44.5444
135.624
188.811
195.379
185.729
174.912
166.897
161.037
153.222
82.8629
2.49767
1.23217
0.978836
1.06321
0.970882
0.307967
0.152335
0.191806
0.209642
0.234742
0.253873
0.565077
1.64515
1.01421
0.627425
0.60647
0.578165
0.548575
0.526188
0.509037
0.493341
0.480779
0.469983
0.460696
0.452545
0.444644
0.436459
0.428199
0.422665
0.417435
0.410894
0.403293
0.395535
0.387662
0.379604
0.371324
0.363116
0.355041
0.347287
0.339814
0.332848
0.32662
0.321385
0.317787
0.320417
0.33822
0.347604
0.360171
0.374392
0.386771
0.391616
0.403564
0.370219
0.346704
0.310378
0.281372
0.264755
0.253325
0.244419
0.236519
0.230109
0.225385
0.221781
0.219113
0.216325
0.213545
0.210444
0.206978
0.20427
0.201891
0.199892
0.198837
0.197451
0.195593
0.196463
0.195215
0.188498
0.189974
0.190358
0.191007
0.192655
0.191595
0.190355
0.193358
0.204017
0.210401
0.212586
48.0475
44.0039
43.3362
44.6449
136.953
199.26
194.399
185.134
173.839
166.303
160.64
121.905
14.5086
1.15522
1.04094
0.962359
1.03574
1.0374
0.579158
0.165027
0.193309
0.207099
0.224808
0.235285
0.481281
1.63152
1.04212
0.617431
0.604851
0.580032
0.551281
0.528314
0.508856
0.492859
0.481033
0.469953
0.458836
0.450539
0.442476
0.434256
0.42651
0.42107
0.416219
0.411079
0.404352
0.396897
0.387815
0.37879
0.370286
0.361692
0.353191
0.34493
0.336892
0.329203
0.322158
0.316011
0.311443
0.321841
0.334862
0.342558
0.357649
0.3741
0.385994
0.396515
0.409523
0.370233
0.348623
0.301271
0.268315
0.254053
0.24493
0.237851
0.231486
0.226299
0.224348
0.223033
0.220812
0.216566
0.212546
0.209318
0.205517
0.203169
0.201008
0.199091
0.197899
0.196689
0.195062
0.194029
0.191554
0.1891
0.189611
0.195539
0.19734
0.195126
0.191629
0.190926
0.191931
0.19421
0.209887
0.213911
50.2088
44.5261
43.6137
54.3669
165.104
199.664
192.446
182.768
171.753
165.428
158.76
61.6236
0.933248
1.10071
0.934594
1.07364
0.965722
0.970632
0.474455
0.172518
0.190773
0.200703
0.214305
0.22752
0.436946
1.59173
1.03842
0.605356
0.597834
0.577403
0.550919
0.528192
0.508307
0.492648
0.480499
0.469695
0.457042
0.448338
0.440082
0.431783
0.424359
0.419136
0.415335
0.409948
0.403496
0.396298
0.388124
0.377946
0.369106
0.360126
0.351201
0.342458
0.333828
0.325411
0.317529
0.310407
0.304806
0.323736
0.326738
0.335242
0.352918
0.367676
0.388784
0.40041
0.41031
0.370256
0.351569
0.284379
0.24802
0.240513
0.235328
0.230776
0.226599
0.226894
0.24372
0.246076
0.24435
0.23725
0.22196
0.208171
0.203883
0.201904
0.199969
0.198119
0.196891
0.19572
0.194175
0.193942
0.191097
0.189123
0.189837
0.208393
0.204083
0.201697
0.195185
0.190963
0.190957
0.191133
0.198788
0.213561
51.4121
45.9894
48.909
116.903
187.998
198.328
189.941
180.497
170.121
165.673
140.788
4.62238
0.993569
1.03562
1.30133
1.02968
0.884527
0.579395
0.15166
0.162815
0.179775
0.188679
0.203001
0.224313
0.425668
1.52669
1.00645
0.597908
0.588868
0.571966
0.54821
0.527093
0.506231
0.491859
0.478119
0.467084
0.455147
0.445976
0.437442
0.429003
0.421757
0.416945
0.41283
0.407284
0.401829
0.394681
0.38652
0.377768
0.367791
0.358422
0.349247
0.340176
0.330917
0.321584
0.312762
0.304689
0.297559
0.29887
0.307732
0.317726
0.337189
0.368339
0.392062
0.414953
1.03781
0.364181
0.358529
0.252053
0.217594
0.224166
0.224812
0.223456
0.223162
0.246841
0.248293
0.246255
0.24389
0.241903
0.239928
0.217926
0.201964
0.200511
0.198901
0.197148
0.197645
0.199372
0.197814
0.192908
0.190489
0.188877
0.188502
0.193312
0.202413
0.201127
0.200787
0.192396
0.189893
0.18996
0.190126
0.200026
148.677
111.605
146.294
186.261
191.89
196.148
188.979
179.378
169.961
163.935
63.6929
1.01718
1.78389
1.90022
1.09723
0.668718
0.339109
0.206799
0.148042
0.146981
0.160112
0.170788
0.188585
0.213893
0.430845
1.46118
0.973968
0.59072
0.579551
0.565005
0.544192
0.523532
0.503416
0.488696
0.474377
0.462035
0.452119
0.443416
0.434557
0.425915
0.418634
0.414445
0.411697
0.405956
0.401088
0.39423
0.385612
0.379304
0.36798
0.356534
0.347107
0.337594
0.327789
0.317635
0.307834
0.298671
0.290158
0.282366
0.278379
0.29096
0.329542
0.366892
0.451367
2.57929
6.2004
0.946648
0.372228
0.190616
0.174805
0.20586
0.214212
0.216028
0.218451
0.249482
0.246643
0.244216
0.241803
0.240115
0.239354
0.244468
0.202754
0.199085
0.197925
0.19691
0.203247
0.199465
0.19763
0.195701
0.193112
0.188606
0.188458
0.18962
0.195796
0.200309
0.201123
0.203658
0.188579
0.18874
0.187854
0.187659
206.073
197.182
195.145
192.067
192.71
194.447
188.503
179.682
171.477
155.156
4.03026
0.633338
0.657789
0.799417
0.407686
0.272318
0.228535
0.184087
0.139656
0.127858
0.135744
0.148389
0.169832
0.196594
0.453245
1.3957
0.966321
0.575242
0.567488
0.556204
0.538369
0.518421
0.499999
0.482882
0.468958
0.458111
0.4495
0.440869
0.431458
0.422544
0.415035
0.411487
0.410769
0.404373
0.400394
0.39383
0.384736
0.377272
0.369084
0.35497
0.344764
0.334492
0.324188
0.313516
0.302731
0.292635
0.281882
0.270955
0.258075
0.265813
0.315985
0.38613
3.41372
6.60568
6.46427
5.09018
0.613656
0.0737747
0.119948
0.188584
0.202804
0.209199
0.237906
0.247079
0.244623
0.241801
0.239162
0.237393
0.236915
0.245548
0.226336
0.198283
0.197065
0.196195
0.201521
0.198507
0.197011
0.195627
0.19609
0.192559
0.188175
0.189037
0.189771
0.195049
0.200596
0.205127
0.19144
0.187865
0.187275
0.186904
213.359
199.873
198.285
194.445
194.211
193.779
188.648
181.484
174.36
71.3081
0.956725
0.66543
0.571847
0.291327
0.252162
0.237972
0.202269
0.161558
0.123108
0.106154
0.108945
0.122815
0.147619
0.17724
0.468784
1.34426
0.958946
0.552974
0.551
0.544856
0.529735
0.511667
0.494207
0.477205
0.46462
0.454322
0.447614
0.441886
0.428733
0.419044
0.411087
0.407974
0.410224
0.402496
0.399682
0.393491
0.383881
0.374715
0.367308
0.35469
0.342372
0.331696
0.320816
0.309436
0.299121
0.287808
0.276268
0.258198
0.232978
0.227785
0.299284
1.55791
5.93081
5.88589
6.17912
6.30344
3.24809
-0.0683555
0.0598376
0.167554
0.192913
0.203893
0.231564
0.243816
0.24221
0.238909
0.235794
0.233542
0.23168
0.218147
0.200195
0.197871
0.19622
0.194755
0.194601
0.197001
0.19629
0.195205
0.195213
0.189338
0.187851
0.188409
0.18883
0.188718
0.189702
0.189069
0.187362
0.187058
0.186686
0.186337
202.703
200.972
200.258
196.896
195.81
193.764
189.379
184.641
180.602
12.2204
0.763107
0.622392
0.481306
0.247803
0.22115
0.207774
0.175342
0.13714
0.102512
0.0828794
0.0812451
0.0954806
0.123816
0.157857
0.511254
1.28448
0.939324
0.528797
0.531549
0.531142
0.519263
0.503455
0.485731
0.471372
0.459659
0.450086
0.443203
0.443005
0.43216
0.415617
0.407186
0.403809
0.410786
0.40029
0.398898
0.393079
0.382662
0.373203
0.364913
0.353831
0.339831
0.328841
0.317513
0.305492
0.294466
0.281086
0.26475
0.245188
0.205756
0.173262
0.576168
5.34774
5.85512
5.79098
5.81613
6.44982
7.92294
-0.0509597
0.0302134
0.157116
0.184756
0.199888
0.198125
0.234028
0.239113
0.229481
0.217285
0.209411
0.202057
0.197491
0.201886
0.197327
0.195141
0.194194
0.194092
0.195415
0.195646
0.194599
0.190916
0.187558
0.187489
0.187746
0.187918
0.187821
0.187335
0.186449
0.186158
0.186755
0.186077
0.185789
202.783
202.237
201.81
199.086
197.423
194.013
189.957
188.197
141.904
4.72789
0.597707
0.964329
0.444637
0.204827
0.191189
0.177103
0.14814
0.113178
0.0809086
0.0590673
0.053517
0.0677004
0.099922
0.139555
0.536329
1.20261
0.907105
0.503319
0.511017
0.515962
0.507085
0.493052
0.477622
0.4647
0.454136
0.445487
0.439124
0.439167
0.430531
0.41662
0.403945
0.426968
0.535535
0.39598
0.398643
0.392449
0.38072
0.371462
0.362376
0.351243
0.338795
0.325919
0.314216
0.301974
0.289268
0.27351
0.255113
0.232474
0.180892
0.111481
1.74273
6.07921
5.91656
5.63798
5.17753
6.36301
8.23012
-0.0974017
0.049058
0.16082
0.201472
0.217642
0.195848
0.204457
0.208586
0.20482
0.203019
0.200587
0.197934
0.196082
0.200495
0.196369
0.193936
0.193319
0.192688
0.194078
0.195208
0.192719
0.189007
0.187385
0.187032
0.187039
0.187169
0.186921
0.186434
0.185971
0.185683
0.185867
0.185431
0.185187
203.744
203.788
203.486
201.254
199.316
194.473
190.087
194.295
43.9818
-0.0498191
0.479704
0.906972
0.34952
0.169294
0.161621
0.148821
0.122967
0.0908358
0.0596026
0.0351861
0.0258901
0.0401977
0.0766375
0.12191
0.588254
1.10166
0.875043
0.476795
0.489921
0.498972
0.494227
0.481253
0.468843
0.457267
0.448144
0.440611
0.43416
0.428884
0.420237
0.413604
0.469866
0.840399
1.44743
0.837318
0.400941
0.391138
0.377887
0.369409
0.359662
0.348459
0.336759
0.324553
0.312959
0.301731
0.28403
0.266145
0.247257
0.224002
0.167131
0.115997
5.22497
6.1765
5.80683
5.03962
1.14753
5.3918
4.32258
0.125177
0.123158
0.175726
0.21429
0.200931
0.194702
0.199887
0.200508
0.201132
0.200442
0.1984
0.195788
0.195799
0.216034
0.21163
0.192764
0.192351
0.192906
0.195142
0.194527
0.1921
0.188435
0.186868
0.186446
0.186308
0.18624
0.18663
0.185968
0.185197
0.184933
0.185057
0.184869
0.184519
204.482
205.961
205.395
203.654
201.673
194.98
188.365
185.594
22.7907
0.0894126
0.444381
0.694943
0.447847
0.129584
0.133849
0.123301
0.100642
0.0706419
0.0392489
0.0115187
-0.00183282
0.0129047
0.0545934
0.108722
0.638945
1.0612
0.8173
0.445255
0.467535
0.480997
0.47976
0.470186
0.459491
0.449235
0.44157
0.435494
0.430306
0.425141
0.418267
0.409471
0.681689
1.37801
1.47777
1.46313
0.536203
0.387835
0.374046
0.367485
0.356696
0.345565
0.33398
0.323244
0.311104
0.29814
0.278584
0.260978
0.240522
0.22286
0.183961
0.139431
7.09073
6.46131
5.97843
2.0493
0.465293
0.928516
0.920438
0.200053
0.184887
0.189243
0.217882
0.199145
0.193752
0.197657
0.198465
0.198985
0.198398
0.196787
0.194568
0.196673
0.217053
0.218138
0.192132
0.191379
0.195173
0.194788
0.194077
0.193329
0.187273
0.186123
0.185767
0.185555
0.185341
0.185031
0.185012
0.185091
0.184793
0.184738
0.184644
0.183798
205.212
207.781
207.378
206.342
204.849
195.504
185.103
71.9652
-1.7236
0.0717996
0.43513
0.696387
0.413656
0.105865
0.113785
0.102941
0.0818168
0.0530584
0.0205494
-0.0114
-0.0293242
-0.0139218
0.0338105
0.101935
0.648184
1.06406
0.743202
0.401503
0.442259
0.461317
0.463553
0.458668
0.450456
0.441291
0.434846
0.430229
0.426256
0.421801
0.415307
0.426609
1.01405
1.48752
1.48545
1.46938
0.956773
0.381708
0.3698
0.363745
0.35348
0.342492
0.329994
0.318028
0.306871
0.291104
0.274207
0.256752
0.233923
0.224716
0.203551
0.445003
6.68426
6.96907
5.95447
0.851743
0.472449
0.483904
0.405393
0.232507
0.216731
0.217821
0.220965
0.200141
0.19293
0.195826
0.196671
0.197147
0.196758
0.195626
0.194131
0.195583
0.216543
0.21838
0.195642
0.190518
0.190416
0.193731
0.19348
0.193135
0.186922
0.185385
0.185057
0.184799
0.184548
0.18423
0.183884
0.183613
0.184061
0.183977
0.183862
0.183033
206.179
209.402
209.495
209.39
209.532
196.696
179.795
13.8099
-0.502752
0.0395212
0.186875
0.653229
0.16352
0.101496
0.100766
0.088164
0.0669334
0.0386403
0.00439405
-0.0326036
-0.0555354
-0.039981
0.0109972
0.0952805
0.737397
1.04847
0.738045
0.344389
0.413786
0.441882
0.449115
0.447012
0.45335
0.43728
0.428227
0.424971
0.421971
0.418079
0.411535
0.407116
1.20883
1.50013
1.49314
1.48577
1.32626
0.376008
0.365259
0.358571
0.350198
0.337871
0.324728
0.312815
0.30117
0.286718
0.270076
0.253652
0.226051
0.227232
0.211441
0.976692
6.72488
7.55333
1.94631
0.416261
0.430567
0.458514
0.391989
0.274567
0.206615
0.224215
0.223663
0.196074
0.192224
0.194331
0.195109
0.195574
0.1954
0.194669
0.193721
0.193769
0.216074
0.216952
0.190905
0.189542
0.189047
0.191095
0.192806
0.188578
0.185062
0.184699
0.184343
0.184045
0.183761
0.183449
0.183123
0.182787
0.182767
0.183181
0.183059
0.182237
207.381
211.266
211.773
212.699
215.836
201.119
113.409
2.50437
-0.165131
0.0231209
0.0108946
0.18565
0.191934
0.0951796
0.0870428
0.0769916
0.0567275
0.0285083
-0.00802661
-0.0507196
-0.0792184
-0.0639957
-0.0157779
0.172007
0.876046
1.03096
0.706931
0.296097
0.383038
0.421226
0.433852
0.441524
0.444866
0.440385
0.422054
0.419934
0.417556
0.414274
0.409315
0.444764
1.24951
1.49968
1.50067
1.46475
1.39853
0.520597
0.360583
0.353001
0.345432
0.334036
0.32146
0.309722
0.298249
0.283847
0.265497
0.251907
0.215687
0.232201
0.209062
0.814531
7.58841
7.40206
0.585864
0.292169
0.433307
0.381382
0.361401
0.404834
0.197429
0.223868
0.225407
0.191746
0.191807
0.193159
0.193729
0.194207
0.194231
0.19381
0.193289
0.192793
0.202127
0.216403
0.188463
0.18847
0.188314
0.190212
0.192299
0.186258
0.184575
0.184023
0.183619
0.183287
0.182978
0.182663
0.182347
0.182062
0.181962
0.182385
0.182143
0.181421
208.047
214.335
214.241
216.086
224.323
212.931
72.8181
2.40538
-0.103745
0.0100773
0.0842682
0.238149
0.311871
0.0900224
0.0751037
0.0696769
0.0514827
0.0233047
-0.0158898
-0.0643653
-0.0995518
-0.0813209
-0.0390695
0.214885
0.930192
1.03216
0.489105
0.270701
0.358703
0.402423
0.42259
0.441475
0.435774
0.434168
0.416785
0.415256
0.413045
0.409696
0.40447
0.423645
1.17165
1.50682
1.51053
1.48516
1.33785
0.647241
0.359007
0.35164
0.340101
0.331608
0.318399
0.306831
0.295671
0.281335
0.260369
0.251278
0.20479
0.231329
0.190069
1.33667
8.49268
1.60309
0.675102
0.296688
0.427659
0.569209
0.475976
0.207723
0.198787
0.218188
0.207912
0.190404
0.191399
0.19219
0.192434
0.192982
0.193171
0.192951
0.192668
0.192445
0.196818
0.212249
0.187573
0.187462
0.187123
0.189534
0.191716
0.185457
0.183843
0.183306
0.182879
0.182523
0.182194
0.1819
0.181575
0.181282
0.181172
0.181621
0.18109
0.180604
215.058
218.44
216.696
218.767
233.76
220.156
79.2615
1.13313
-0.0223782
0.0433086
0.102457
0.393195
0.519664
0.0681919
0.0696137
0.0653054
0.0486752
0.0209477
-0.0201606
-0.071637
-0.115867
-0.0909173
-0.065307
0.239963
1.03959
1.03364
0.295839
0.264398
0.343835
0.38865
0.412886
0.433834
0.428002
0.424298
0.413734
0.411082
0.408691
0.404956
0.398835
0.446091
1.17882
1.51433
1.52048
1.47823
1.24038
0.527129
0.358297
0.352209
0.336543
0.329242
0.315305
0.304032
0.293048
0.278423
0.256866
0.24942
0.19525
0.248644
0.172234
2.6429
7.83525
0.824182
0.467435
0.29807
0.436376
0.554744
0.464368
0.196372
0.195634
0.192612
0.192461
0.190674
0.191583
0.193578
0.191091
0.19185
0.19217
0.192045
0.191767
0.191466
0.196251
0.202481
0.186821
0.186545
0.186059
0.191247
0.191454
0.184614
0.183036
0.182555
0.182125
0.181753
0.18141
0.181093
0.180786
0.180496
0.180337
0.180841
0.18026
0.179738
224.877
220.753
218.709
220.416
241.94
208.929
44.0314
0.207834
0.026115
0.0535836
0.111398
0.488709
0.286123
0.0553513
0.0680392
0.0623023
0.0460573
0.0190155
-0.0219741
-0.0757992
-0.0922569
-0.0982661
-0.091701
0.555688
1.0446
0.725164
0.189122
0.272299
0.334983
0.377115
0.406877
0.430724
0.421776
0.409281
0.410486
0.407881
0.405865
0.403025
0.396343
0.389742
0.821026
1.49253
1.49819
1.45727
1.23931
0.453335
0.357142
0.352139
0.331163
0.326134
0.316669
0.300873
0.289942
0.275038
0.25328
0.253178
0.192069
0.399294
0.34876
3.53693
6.7145
0.753591
0.347967
0.302016
0.523027
0.526513
0.387154
0.184904
0.187875
0.189366
0.194644
0.190451
0.207735
0.20874
0.193684
0.191194
0.191241
0.191124
0.190789
0.190687
0.197268
0.192818
0.186246
0.185737
0.185147
0.189965
0.190868
0.182835
0.182253
0.18179
0.181363
0.180983
0.180631
0.180302
0.18
0.179708
0.179461
0.180042
0.179558
0.178848
87.5437
88.1669
88.8075
89.4649
90.1389
90.8288
91.534
92.2538
92.9874
93.7339
94.4926
95.2622
96.0419
96.8305
97.6267
98.4291
99.2364
100.047
100.86
101.672
102.483
103.29
104.092
104.887
105.673
106.448
107.211
107.958
108.688
109.4
110.092
110.761
111.407
112.027
112.621
113.188
113.729
114.244
114.736
115.209
115.668
116.118
116.564
117.007
117.437
117.842
118.207
118.509
118.726
118.838
118.838
118.731
118.538
118.267
117.921
117.508
117.042
116.541
116.02
115.489
114.951
114.408
113.857
113.298
112.719
112.122
111.506
110.87
110.214
109.54
108.849
108.144
107.424
106.693
105.952
105.203
104.448
103.688
102.924
102.159
101.393
100.629
99.8611
99.1022
98.347
97.5969
96.853
96.1163
95.3876
94.6677
93.9574
93.2573
92.568
91.89
91.224
90.5702
89.9292
89.3011
88.6861
88.0844
87.5352
88.1596
88.8007
89.4586
90.1333
90.8242
91.5304
92.2513
92.9861
93.734
94.4941
95.2653
96.0467
96.837
97.6351
98.4396
99.2491
100.062
100.877
101.692
102.506
103.316
104.121
104.919
105.708
106.485
107.25
108
108.733
109.447
110.14
110.81
111.456
112.075
112.668
113.231
113.767
114.274
114.756
115.216
115.662
116.102
116.538
116.978
117.404
117.809
118.176
118.483
118.708
118.828
118.834
118.733
118.543
118.273
117.922
117.502
117.03
116.526
116.006
115.48
114.949
114.412
113.868
113.324
112.75
112.158
111.544
110.909
110.253
109.578
108.886
108.178
107.456
106.723
105.98
105.229
104.471
103.709
102.944
102.177
101.41
100.643
99.8768
99.1154
98.3585
97.607
96.8618
96.1238
95.3939
94.6728
93.9614
93.2602
92.5699
91.8909
91.2239
90.5693
89.9276
89.2993
88.6837
88.0803
87.4965
88.1218
88.7632
89.4212
90.0961
90.7874
91.4942
92.2159
92.9515
93.7003
94.4614
95.2338
96.0164
96.8082
97.6077
98.4138
99.2251
100.04
100.857
101.674
102.49
103.303
104.111
104.912
105.705
106.486
107.255
108.009
108.746
109.465
110.162
110.837
111.488
112.112
112.709
113.277
113.815
114.325
114.808
115.269
115.713
116.148
116.576
117.032
117.453
117.859
118.23
118.54
118.768
118.894
118.906
118.812
118.629
118.357
118
117.572
117.095
116.585
116.062
115.532
115
114.463
113.918
113.364
112.788
112.192
111.575
110.936
110.277
109.599
108.904
108.193
107.469
106.733
105.988
105.234
104.474
103.709
102.941
102.172
101.402
100.632
99.8646
99.1006
98.3413
97.5874
96.84
96.1
95.3682
94.6454
93.9324
93.2298
92.5383
91.8583
91.1904
90.5351
89.8931
89.2648
88.6487
88.0439
87.4327
88.0585
88.7003
89.3584
90.0335
90.7252
91.4326
92.1549
92.8912
93.6408
94.4029
95.1763
95.9601
96.7531
97.5541
98.3616
99.1744
99.991
100.81
101.629
102.447
103.262
104.072
104.876
105.672
106.457
107.23
107.988
108.731
109.455
110.16
110.842
111.501
112.135
112.743
113.323
113.874
114.399
114.899
115.377
115.841
116.295
116.746
117.198
117.628
118.036
118.411
118.722
118.948
119.071
119.087
118.998
118.817
118.536
118.177
117.744
117.259
116.741
116.203
115.655
115.104
114.548
113.985
113.412
112.823
112.216
111.589
110.944
110.28
109.599
108.901
108.188
107.462
106.724
105.977
105.221
104.458
103.691
102.92
102.147
101.373
100.601
99.8301
99.063
98.3005
97.5437
96.7937
96.0512
95.3173
94.5926
93.8779
93.174
92.4813
91.8005
91.1318
90.476
89.834
89.2056
88.5892
87.9839
87.3495
87.9758
88.6181
89.2766
89.9523
90.6448
91.353
92.0763
92.8137
93.5647
94.3282
95.1032
95.8888
96.6836
97.4865
98.2962
99.1111
99.9299
100.751
101.573
102.393
103.211
104.024
104.831
105.63
106.418
107.195
107.958
108.706
109.436
110.147
110.837
111.505
112.149
112.768
113.362
113.931
114.476
114.999
115.505
115.999
116.484
116.964
117.438
117.894
118.322
118.695
119.001
119.218
119.322
119.351
119.267
119.083
118.807
118.429
117.974
117.465
116.92
116.353
115.776
115.195
114.612
114.026
113.434
112.832
112.216
111.584
110.936
110.271
109.588
108.89
108.176
107.448
106.709
105.959
105.2
104.434
103.663
102.888
102.111
101.333
100.557
99.7823
99.0115
98.2455
97.4855
96.7325
95.9873
95.251
94.5243
93.808
93.1026
92.4088
91.7271
91.0578
90.4017
89.7595
89.1311
88.5148
87.9096
87.2473
87.8742
88.5172
89.1767
89.8535
90.5472
91.2569
91.9818
92.7211
93.4741
94.2398
95.0174
95.8056
96.6033
97.4093
98.2221
99.0405
99.8628
100.688
101.513
102.338
103.16
103.977
104.788
105.592
106.385
107.167
107.936
108.69
109.427
110.145
110.843
111.52
112.173
112.802
113.408
113.989
114.549
115.091
115.617
116.134
116.645
117.152
117.651
118.133
118.581
118.974
119.296
119.53
119.667
119.656
119.546
119.34
119.037
118.639
118.161
117.622
117.043
116.443
115.837
115.233
114.634
114.037
113.438
112.832
112.215
111.584
110.936
110.27
109.587
108.887
108.171
107.44
106.697
105.943
105.179
104.408
103.632
102.852
102.07
101.287
100.505
99.726
98.9507
98.1806
97.4167
96.6602
95.912
95.1729
94.4438
93.7254
93.0183
92.3232
91.6403
90.9702
90.3136
89.6711
89.0426
88.4262
87.8212
87.1253
87.7532
88.3974
89.0582
89.7365
90.4319
91.1436
91.8708
92.6126
93.3683
94.1372
94.918
95.7099
96.5115
97.3216
98.139
98.962
99.7893
100.619
101.45
102.28
103.108
103.931
104.749
105.559
106.359
107.149
107.925
108.687
109.433
110.16
110.868
111.554
112.218
112.857
113.472
114.062
114.631
115.18
115.714
116.239
116.76
117.278
117.792
118.291
118.757
119.168
119.5
119.733
119.855
119.852
119.736
119.513
119.185
118.759
118.251
117.681
117.075
116.455
115.838
115.231
114.633
114.041
113.448
112.846
112.233
111.603
110.955
110.287
109.601
108.897
108.176
107.439
106.69
105.929
105.159
104.381
103.598
102.811
102.023
101.234
100.446
99.6609
98.8803
98.1052
97.3368
96.5762
95.8243
95.0821
94.3502
93.6294
92.9203
92.2235
91.5394
90.8683
90.2109
89.568
88.9393
88.3229
87.7178
86.9831
87.6122
88.2579
88.9204
89.6006
90.2982
91.0123
91.7422
92.4871
93.2462
94.0188
94.8038
95.6001
96.4065
97.2219
98.0447
98.8736
99.707
100.543
101.381
102.218
103.053
103.884
104.71
105.528
106.337
107.136
107.922
108.694
109.45
110.189
110.908
111.607
112.282
112.932
113.557
114.156
114.73
115.281
115.814
116.335
116.847
117.358
117.866
118.364
118.835
119.254
119.591
119.826
119.943
119.937
119.812
119.571
119.22
118.77
118.238
117.652
117.038
116.421
115.815
115.223
114.641
114.062
113.479
112.884
112.273
111.642
110.991
110.319
109.627
108.916
108.187
107.443
106.685
105.916
105.137
104.351
103.559
102.764
101.967
101.171
100.376
99.5846
98.7978
98.0171
97.2435
96.4783
95.7224
94.9765
94.2416
93.5182
92.8069
92.1083
91.4228
90.7506
90.0925
89.4492
88.8203
88.2039
87.5988
86.8203
87.4509
88.0982
88.7627
89.4451
90.1453
90.8622
91.5953
92.3437
93.1068
93.8837
94.6735
95.475
96.2871
97.1084
97.9377
98.7734
99.6141
100.458
101.304
102.149
102.993
103.833
104.668
105.495
106.314
107.123
107.92
108.704
109.473
110.225
110.958
111.671
112.36
113.024
113.66
114.268
114.848
115.4
115.929
116.438
116.934
117.423
117.908
118.385
118.84
119.249
119.58
119.81
119.921
119.907
119.772
119.519
119.153
118.692
118.156
117.574
116.975
116.381
115.801
115.234
114.673
114.109
113.534
112.943
112.332
111.698
111.041
110.361
109.66
108.939
108.2
107.446
106.677
105.898
105.109
104.313
103.511
102.707
101.901
101.096
100.293
99.4944
98.7009
97.914
97.1349
96.3647
95.6044
94.8548
94.1166
93.3904
92.6769
91.9765
91.2896
90.6164
89.9576
89.3138
88.6849
88.0685
87.4636
86.6366
87.2688
87.9181
88.5848
89.2698
89.9728
90.693
91.4296
92.1821
92.9496
93.7314
94.5265
95.3338
96.1522
96.9804
97.8169
98.6604
99.5092
100.362
101.216
102.071
102.924
103.774
104.62
105.458
106.288
107.109
107.918
108.714
109.497
110.264
111.012
111.741
112.446
113.125
113.775
114.394
114.981
115.535
116.06
116.557
117.034
117.495
117.947
118.389
118.811
119.192
119.503
119.717
119.815
119.791
119.648
119.389
119.023
118.568
118.046
117.488
116.921
116.361
115.813
115.272
114.73
114.178
113.609
113.019
112.403
111.762
111.096
110.407
109.694
108.962
108.211
107.444
106.664
105.872
105.072
104.264
103.452
102.637
101.821
101.007
100.195
99.3886
98.5877
97.7942
97.0092
96.2339
95.469
94.7155
93.974
93.2451
92.5294
91.8273
91.139
90.4649
89.8055
89.1615
88.5325
87.9164
87.3119
86.4317
87.0658
87.7172
88.3865
89.0743
89.7804
90.5041
91.2447
92.0015
92.7739
93.561
94.362
95.1758
96.0012
96.8369
97.6816
98.5336
99.3914
100.253
101.118
101.983
102.847
103.708
104.565
105.415
106.257
107.089
107.911
108.722
109.518
110.3
111.065
111.81
112.533
113.228
113.894
114.525
115.121
115.68
116.202
116.69
117.149
117.582
117.998
118.399
118.778
119.12
119.398
119.587
119.666
119.63
119.482
119.225
118.869
118.434
117.942
117.42
116.892
116.37
115.853
115.336
114.809
114.265
113.697
113.103
112.48
111.83
111.153
110.45
109.725
108.979
108.215
107.435
106.641
105.836
105.023
104.203
103.378
102.552
101.726
100.901
100.081
99.2653
98.4568
97.6563
96.8653
96.0846
95.3152
94.5577
93.813
93.0815
92.3636
91.6598
90.9704
90.2954
89.6356
88.9915
88.3627
87.747
87.1431
86.2052
86.8414
87.4953
88.1673
88.8581
89.5677
90.2952
91.04
91.8016
92.5792
93.3722
94.1796
95.0004
95.8335
96.6774
97.5309
98.3923
99.26
100.132
101.008
101.884
102.76
103.633
104.501
105.364
106.219
107.064
107.899
108.723
109.534
110.332
111.113
111.876
112.616
113.329
114.011
114.656
115.262
115.827
116.35
116.831
117.274
117.684
118.066
118.425
118.759
119.055
119.294
119.453
119.509
119.459
119.308
119.059
118.722
118.316
117.862
117.382
116.895
116.407
115.918
115.419
114.902
114.36
113.79
113.189
112.557
111.894
111.204
110.488
109.749
108.988
108.209
107.414
106.606
105.787
104.96
104.126
103.289
102.451
101.613
100.778
99.9475
99.1232
98.3066
97.4991
96.7018
95.9157
95.1417
94.3804
93.6325
92.8985
92.1787
91.4735
90.783
90.1074
89.4473
88.8033
88.175
87.5599
86.9568
85.9569
86.5954
87.2519
87.9269
88.6211
89.3343
90.0659
90.8152
91.5818
92.3651
93.1643
93.9786
94.8069
95.6482
96.5011
97.3641
98.2357
99.1142
99.9979
100.885
101.774
102.662
103.548
104.429
105.305
106.173
107.032
107.88
108.717
109.543
110.355
111.153
111.933
112.691
113.422
114.12
114.78
115.398
115.97
116.495
116.973
117.405
117.795
118.148
118.468
118.758
119.01
119.208
119.334
119.368
119.304
119.152
118.914
118.601
118.228
117.814
117.375
116.925
116.468
116
115.513
115.001
114.458
113.881
113.27
112.627
111.951
111.247
110.516
109.761
108.985
108.191
107.38
106.557
105.723
104.881
104.033
103.183
102.331
101.481
100.635
99.7942
98.9606
98.1357
97.3209
96.5173
95.7259
94.9474
94.1825
93.4317
92.6953
91.9738
91.2674
90.5761
89.9002
89.2401
88.5964
87.9688
87.3546
86.7526
85.6863
86.3274
86.9868
87.665
88.3628
89.0799
89.8157
90.5698
91.3416
92.1308
92.9365
93.7581
94.5945
95.4445
96.307
97.1803
98.0628
98.953
99.8488
100.749
101.65
102.552
103.452
104.347
105.237
106.119
106.991
107.853
108.704
109.543
110.37
111.183
111.979
112.755
113.503
114.218
114.893
115.522
116.102
116.632
117.109
117.534
117.909
118.238
118.526
118.778
118.989
119.149
119.243
119.255
119.179
119.026
118.802
118.513
118.174
117.796
117.395
116.977
116.543
116.09
115.61
115.098
114.55
113.965
113.343
112.686
111.997
111.278
110.531
109.76
108.968
108.158
107.331
106.491
105.641
104.784
103.921
103.056
102.191
101.329
100.471
99.6191
98.7758
97.9424
97.1203
96.3104
95.5137
94.731
93.9627
93.2092
92.471
91.7481
91.0407
90.349
89.673
89.0132
88.3701
87.7434
87.1304
86.5297
85.3932
86.0371
86.6997
87.3814
88.0829
88.804
89.5443
90.3032
91.0805
91.8757
92.6882
93.5174
94.3622
95.2215
96.0941
96.9784
97.8727
98.7753
99.6843
100.598
101.514
102.43
103.344
104.255
105.16
106.056
106.943
107.819
108.682
109.534
110.374
111.2
112.012
112.804
113.569
114.3
114.989
115.631
116.22
116.755
117.234
117.655
118.02
118.331
118.594
118.813
118.989
119.116
119.183
119.175
119.089
118.937
118.726
118.46
118.15
117.805
117.434
117.041
116.626
116.182
115.704
115.188
114.632
114.037
113.403
112.732
112.028
111.294
110.531
109.744
108.936
108.108
107.265
106.408
105.542
104.668
103.789
102.909
102.029
101.153
100.283
99.4202
98.567
97.7249
96.8954
96.0794
95.2778
94.4911
93.7198
92.9642
92.2244
91.5005
90.7927
90.1009
89.4251
88.7658
88.1237
87.4982
86.8867
86.2877
85.0771
85.7243
86.3903
87.0756
87.781
88.5063
89.2511
90.015
90.7977
91.599
92.4185
93.2554
94.1089
94.978
95.8613
96.7572
97.664
98.58
99.503
100.431
101.362
102.294
103.225
104.152
105.072
105.984
106.886
107.776
108.653
109.516
110.367
111.205
112.029
112.835
113.616
114.363
115.067
115.72
116.319
116.861
117.343
117.763
118.122
118.421
118.665
118.86
119.009
119.109
119.153
119.129
119.035
118.884
118.683
118.437
118.152
117.834
117.487
117.112
116.708
116.268
115.789
115.267
114.702
114.094
113.447
112.763
112.044
111.294
110.515
109.712
108.886
108.041
107.18
106.305
105.421
104.53
103.634
102.738
101.843
100.953
100.07
99.1952
98.3319
97.4811
96.6443
95.8225
95.0163
94.2262
93.4525
92.6952
91.9544
91.2302
90.5224
89.8309
89.1557
88.4974
87.8564
87.2325
86.6227
86.0258
84.7377
85.3886
86.0584
86.7476
87.4571
88.1867
88.9359
89.7046
90.4928
91.3001
92.1264
92.9711
93.8335
94.7126
95.607
96.5152
97.4353
98.3656
99.3037
100.248
101.195
102.144
103.092
104.036
104.974
105.903
106.821
107.725
108.615
109.49
110.351
111.198
112.031
112.848
113.643
114.404
115.122
115.788
116.397
116.946
117.433
117.856
118.213
118.506
118.737
118.915
119.044
119.123
119.149
119.114
119.014
118.863
118.671
118.44
118.174
117.876
117.546
117.184
116.786
116.346
115.861
115.331
114.755
114.136
113.475
112.777
112.043
111.277
110.482
109.661
108.817
107.954
107.074
106.181
105.278
104.368
103.455
102.541
101.631
100.725
99.8283
98.9419
98.0682
97.2087
96.3649
95.5376
94.7275
93.9346
93.1593
92.4012
91.6602
90.9362
90.229
89.5383
88.8642
88.207
87.5676
86.9455
86.3378
85.7432
84.3747
85.0299
85.7039
86.3973
87.111
87.8448
88.5985
89.3719
90.165
90.978
91.8108
92.663
93.5342
94.4234
95.3294
96.2505
97.1848
98.1303
99.0847
100.046
101.011
101.978
102.944
103.907
104.863
105.811
106.746
107.667
108.571
109.457
110.326
111.179
112.018
112.843
113.648
114.422
115.154
115.833
116.452
117.01
117.503
117.93
118.289
118.58
118.806
118.974
119.089
119.154
119.168
119.123
119.02
118.87
118.684
118.464
118.212
117.927
117.609
117.254
116.856
116.412
115.921
115.38
114.793
114.161
113.487
112.774
112.024
111.242
110.43
109.591
108.729
107.846
106.947
106.034
105.111
104.181
103.249
102.317
101.388
100.467
99.5561
98.6573
97.773
96.9051
96.0547
95.2227
94.4094
93.6148
92.8388
92.0809
91.3407
90.6177
89.9118
89.2224
88.5497
87.8941
87.2564
86.6363
86.031
85.4389
83.9879
84.648
85.3267
86.0246
86.7426
87.4808
88.2388
89.0165
89.8142
90.6322
91.4707
92.3298
93.2093
94.1085
95.0262
95.9608
96.9102
97.8721
98.8439
99.8232
100.807
101.794
102.78
103.763
104.74
105.707
106.662
107.6
108.519
109.417
110.294
111.152
111.994
112.822
113.633
114.417
115.161
115.853
116.484
117.051
117.552
117.986
118.35
118.644
118.87
119.033
119.141
119.199
119.204
119.155
119.05
118.9
118.718
118.506
118.262
117.985
117.672
117.318
116.918
116.467
115.966
115.415
114.815
114.17
113.482
112.754
111.989
111.19
110.36
109.502
108.62
107.717
106.796
105.861
104.917
103.966
103.013
102.061
101.114
100.176
99.2498
98.3382
97.4434
96.5673
95.711
94.8751
94.0598
93.2648
92.4895
91.7331
90.9948
90.274
89.5701
88.8827
88.2118
87.5579
86.922
86.3041
85.7012
85.1121
83.5766
84.2427
84.9268
85.6295
86.3523
87.0949
87.857
88.6386
89.4402
90.2623
91.1055
91.9704
92.8573
93.7658
94.6951
95.6436
96.6089
97.5885
98.5793
99.5784
100.583
101.591
102.598
103.602
104.6
105.589
106.565
107.523
108.46
109.372
110.258
111.12
111.963
112.79
113.602
114.392
115.146
115.849
116.492
117.07
117.58
118.023
118.396
118.697
118.927
119.092
119.199
119.253
119.255
119.203
119.099
118.951
118.77
118.561
118.321
118.048
117.735
117.378
116.971
116.511
115.999
115.435
114.822
114.164
113.461
112.718
111.936
111.119
110.27
109.392
108.489
107.564
106.62
105.662
104.694
103.72
102.744
101.771
100.804
99.8478
98.9058
97.9809
97.0757
96.1919
95.3306
94.4923
93.6766
92.8829
92.1101
91.3569
90.6221
89.9046
89.2036
88.5186
87.8497
87.1976
86.5636
85.9478
85.3474
84.7613
83.1407
83.8135
84.5038
85.2121
85.9399
86.6872
87.4535
88.2388
89.0436
89.8689
90.7158
91.5852
92.4782
93.395
94.3354
95.2977
96.2795
97.2777
98.2889
99.3095
100.336
101.366
102.396
103.423
104.444
105.455
106.453
107.433
108.389
109.318
110.217
111.085
111.927
112.751
113.56
114.351
115.112
115.825
116.479
117.068
117.59
118.043
118.426
118.737
118.977
119.148
119.258
119.314
119.317
119.266
119.164
119.017
118.837
118.629
118.389
118.114
117.797
117.433
117.016
116.545
116.02
115.443
114.817
114.144
113.426
112.666
111.867
111.031
110.161
109.261
108.335
107.385
106.417
105.433
104.439
103.44
102.439
101.442
100.454
99.4783
98.5196
97.5812
96.6656
95.7749
94.91
94.0709
93.2571
92.467
91.6991
90.9513
90.2218
89.5091
88.812
88.1301
87.4633
86.8128
86.1803
85.5662
84.9681
84.3851
82.6797
83.3603
84.0577
84.7723
85.5056
86.2579
87.0284
87.8173
88.6251
89.4532
90.3031
91.1762
92.0744
92.9986
93.949
94.9246
95.9227
96.94
97.9724
99.0156
100.066
101.119
102.173
103.223
104.268
105.302
106.323
107.326
108.304
109.253
110.167
111.046
111.89
112.71
113.513
114.3
115.062
115.784
116.449
117.049
117.583
118.048
118.443
118.767
119.02
119.202
119.32
119.381
119.388
119.341
119.243
119.098
118.918
118.708
118.465
118.184
117.859
117.484
117.055
116.571
116.032
115.441
114.8
114.111
113.377
112.599
111.781
110.924
110.032
109.108
108.157
107.18
106.184
105.173
104.15
103.122
102.094
101.072
100.059
99.0626
98.086
97.1334
96.2079
95.3114
94.4446
93.6073
92.7981
92.0149
91.255
90.5156
89.7938
89.0877
88.3958
87.7172
87.0524
86.4028
85.771
85.1579
84.5616
83.9815
82.1933
82.8827
83.5883
84.3099
85.0492
85.8065
86.5813
87.3736
88.1845
89.0155
89.8685
90.7457
91.6493
92.5809
93.5413
94.5297
95.5436
96.5795
97.6327
98.6985
99.7723
100.85
101.928
103.002
104.069
105.127
106.171
107.197
108.199
109.171
110.105
110.998
111.851
112.669
113.465
114.244
115.004
115.729
116.403
117.015
117.561
118.039
118.449
118.788
119.055
119.252
119.382
119.452
119.466
119.424
119.332
119.191
119.01
118.796
118.547
118.257
117.921
117.533
117.09
116.59
116.036
115.43
114.773
114.068
113.316
112.519
111.679
110.799
109.883
108.933
107.953
106.947
105.92
104.877
103.823
102.764
101.705
100.653
99.6144
98.5942
97.5983
96.631
95.6959
94.795
93.9289
93.0968
92.2963
91.5242
90.7765
90.0493
89.3385
88.6413
87.9556
87.2807
86.6171
85.9673
85.3345
84.721
84.1254
83.5478
81.6819
82.3811
83.0958
83.825
84.5704
85.3324
86.1108
86.9058
87.7191
88.553
89.4099
90.2927
91.2037
92.1448
93.1169
94.1193
95.1494
96.2033
97.2764
98.3634
99.4595
100.56
101.66
102.757
103.847
104.927
105.993
107.041
108.067
109.063
110.021
110.936
111.803
112.626
113.417
114.188
114.941
115.667
116.347
116.97
117.528
118.021
118.446
118.801
119.086
119.299
119.445
119.526
119.551
119.516
119.431
119.294
119.112
118.893
118.636
118.334
117.984
117.581
117.121
116.605
116.035
115.412
114.739
114.015
113.243
112.425
111.561
110.656
109.712
108.733
107.722
106.684
105.623
104.544
103.455
102.36
101.266
100.181
99.1118
98.0653
97.048
96.0653
95.1213
94.2182
93.3564
92.534
91.7477
90.9926
90.263
89.553
88.8574
88.1718
87.4937
86.8222
86.1585
85.506
84.8697
84.2533
83.6566
83.0806
81.1458
81.8565
82.5812
83.3184
84.0693
84.8348
85.6148
86.4103
87.2241
88.0595
88.9202
89.8096
90.7309
91.6856
92.6741
93.6947
94.7442
95.818
96.911
98.0178
99.1336
100.254
101.374
102.49
103.599
104.698
105.784
106.852
107.9
108.919
109.904
110.845
111.735
112.573
113.368
114.132
114.877
115.599
116.283
116.916
117.487
117.995
118.436
118.809
119.112
119.345
119.508
119.604
119.64
119.615
119.537
119.406
119.223
118.997
118.729
118.414
118.048
117.628
117.151
116.618
116.031
115.39
114.698
113.954
113.161
112.318
111.429
110.495
109.521
108.509
107.463
106.388
105.289
104.171
103.04
101.904
100.77
99.647
98.5428
97.4662
96.425
95.4262
94.4745
93.5725
92.72
91.9141
91.1495
90.4193
89.7153
89.0293
88.3539
87.6834
87.0141
86.3452
85.6787
85.0197
84.3756
83.7523
83.1514
82.5755
80.5866
81.3109
82.0468
82.7921
83.5477
84.3142
85.0924
85.8844
86.6943
87.5274
88.3892
89.2845
90.2174
91.1896
92.2003
93.2462
94.3222
95.4218
96.5386
97.6664
98.801
99.9374
101.072
102.202
103.326
104.439
105.539
106.624
107.689
108.731
109.741
110.712
111.633
112.496
113.305
114.072
114.811
115.528
116.214
116.855
117.439
117.962
118.421
118.812
119.136
119.389
119.571
119.684
119.733
119.72
119.65
119.524
119.34
119.107
118.827
118.496
118.113
117.674
117.18
116.629
116.024
115.365
114.652
113.886
113.068
112.199
111.281
110.316
109.308
108.259
107.175
106.058
104.915
103.752
102.574
101.391
100.21
99.0423
97.8973
96.786
95.7185
94.7031
93.746
92.8499
92.0138
91.2332
90.5003
89.8052
89.1366
88.4831
87.8346
87.183
86.5236
85.8554
85.1817
84.5101
83.8512
83.2148
82.6051
82.0272
80.0057
80.7465
81.4955
82.2492
83.008
83.7725
84.5441
85.3267
86.1266
86.9512
87.8087
88.7061
89.649
90.6397
91.6766
92.7546
93.8656
95.0001
96.1486
97.3079
98.4618
99.6121
100.758
101.896
103.026
104.145
105.253
106.347
107.426
108.484
109.519
110.52
111.476
112.376
113.213
113.994
114.736
115.452
116.139
116.788
117.387
117.926
118.402
118.814
119.157
119.432
119.636
119.768
119.83
119.83
119.767
119.646
119.46
119.22
118.927
118.58
118.178
117.722
117.209
116.64
116.016
115.337
114.603
113.813
112.968
112.069
111.118
110.119
109.073
107.984
106.855
105.692
104.5
103.284
102.052
100.814
99.5783
98.358
97.1658
96.0151
94.9187
93.8872
92.9281
92.0442
91.2336
90.4894
89.8007
89.1536
88.5326
87.9223
87.3087
86.6808
86.0322
85.3615
84.6737
83.98
83.296
82.6367
82.0112
81.4283
79.4035
80.1644
80.929
81.6919
82.4525
83.2111
83.9705
84.7365
85.5183
86.3265
87.1722
88.0655
89.0139
90.0209
91.0844
92.1973
93.3488
94.526
95.716
96.9107
98.094
99.265
100.423
101.566
102.696
103.813
104.919
106.014
107.097
108.167
109.22
110.25
111.244
112.188
113.068
113.882
114.642
115.364
116.057
116.716
117.329
117.886
118.382
118.814
119.179
119.475
119.701
119.853
119.931
119.943
119.887
119.771
119.584
119.334
119.027
118.664
118.245
117.77
117.239
116.652
116.009
115.308
114.55
113.733
112.859
111.928
110.942
109.904
108.816
107.681
106.504
105.288
104.039
102.763
101.469
100.167
98.8682
97.5877
96.3414
95.1464
94.0186
92.9716
92.0143
91.15
90.3754
89.6808
89.0514
88.4681
87.9102
87.3567
86.7886
86.1906
85.5536
84.8756
84.1636
83.4336
82.7086
82.0117
81.3597
80.768
78.7773
79.5621
80.3454
81.1191
81.8801
82.6285
83.3688
84.1099
84.8642
85.646
86.4704
87.3512
88.2988
89.3175
90.4049
91.5517
92.7444
93.967
95.2037
96.4397
97.662
98.8634
100.04
101.192
102.32
103.43
104.524
105.609
106.688
107.76
108.826
109.881
110.914
111.909
112.846
113.713
114.511
115.256
115.964
116.636
117.267
117.844
118.361
118.814
119.2
119.519
119.766
119.939
120.034
120.057
120.01
119.897
119.707
119.449
119.128
118.748
118.311
117.819
117.271
116.666
116.003
115.28
114.496
113.65
112.743
111.776
110.751
109.671
108.536
107.351
106.119
104.844
103.531
102.188
100.824
99.4487
98.078
96.729
95.4213
94.1757
93.0124
91.9483
90.9949
90.1567
89.4293
88.7999
88.2485
87.7496
87.2752
86.797
86.289
85.7297
85.1058
84.4138
83.663
82.8758
82.0858
81.329
80.6344
80.0279
78.119
78.9313
79.7374
80.525
81.2859
82.0193
82.7328
83.4392
84.1544
84.8972
85.6877
86.5447
87.4825
88.5072
89.6149
90.7931
92.0248
93.291
94.5732
95.8542
97.1192
98.3559
99.5609
100.729
101.86
102.963
104.043
105.109
106.173
107.24
108.312
109.388
110.46
111.511
112.518
113.457
114.319
115.111
115.85
116.546
117.199
117.8
118.34
118.815
119.223
119.563
119.832
120.025
120.137
120.173
120.133
120.023
119.83
119.562
119.227
118.831
118.379
117.871
117.306
116.683
115.999
115.251
114.44
113.563
112.621
111.615
110.548
109.421
108.235
106.995
105.702
104.361
102.978
101.561
100.117
98.662
97.2105
95.7833
94.4036
93.0967
91.8877
90.799
89.8471
89.0393
88.3714
87.827
87.3791
86.9931
86.631
86.2544
85.8277
85.3206
84.7129
83.9983
83.1877
82.3121
81.4203
80.5687
79.8067
79.1752
77.4135
78.2565
79.0913
79.8999
80.663
81.3769
82.0552
82.7158
83.3776
84.0645
84.8038
85.6215
86.5384
87.5632
88.6891
89.8982
91.1679
92.4752
93.7987
95.1197
96.4223
97.6938
98.9281
100.116
101.258
102.356
103.428
104.474
105.514
106.567
107.641
108.736
109.849
110.963
112.052
113.085
114.04
114.909
115.704
116.441
117.126
117.755
118.321
118.82
119.249
119.609
119.898
120.111
120.241
120.289
120.256
120.148
119.952
119.674
119.326
118.915
118.447
117.924
117.343
116.702
115.996
115.224
114.383
113.472
112.493
111.446
110.332
109.154
107.914
106.613
105.255
103.844
102.385
100.887
99.358
97.813
96.2694
94.749
93.2785
91.8885
90.6118
89.4805
88.5205
87.746
87.1543
86.7241
86.4177
86.187
85.9793
85.7427
85.4285
84.9941
84.4089
83.6605
82.7606
81.7495
80.6979
79.6953
78.8255
78.153
76.6396
77.5137
78.3899
79.2359
80.0073
80.6973
81.3324
81.9348
82.5238
83.1311
83.794
84.5506
85.4337
86.4557
87.6035
88.8494
90.1623
91.5132
92.877
94.2323
95.5623
96.8554
98.1041
99.3026
100.449
101.543
102.594
103.621
104.641
105.678
106.754
107.873
109.034
110.224
111.413
112.565
113.643
114.624
115.509
116.312
117.044
117.71
118.307
118.83
119.281
119.659
119.967
120.198
120.345
120.403
120.378
120.271
120.071
119.783
119.423
118.999
118.518
117.981
117.384
116.724
115.997
115.197
114.325
113.379
112.359
111.268
110.106
108.874
107.574
106.21
104.783
103.298
101.76
100.175
98.5524
96.9054
95.2506
93.6106
92.0151
90.5024
89.1186
87.9126
86.9278
86.1909
85.7023
85.4323
85.3258
85.3132
85.321
85.2792
85.1231
84.7932
84.2425
83.4475
82.4167
81.1999
79.8966
78.6494
77.604
76.8682
75.7629
76.6558
77.6061
78.5316
79.3231
79.9824
80.5693
81.1011
81.5908
82.0839
82.6335
83.2983
84.135
85.1602
86.3463
87.6479
89.0205
90.4274
91.8382
93.2265
94.5739
95.8715
97.1142
98.2964
99.4152
100.474
101.487
102.473
103.462
104.483
105.563
106.718
107.948
109.239
110.556
111.858
113.096
114.231
115.246
116.147
116.95
117.666
118.3
118.85
119.321
119.716
120.039
120.286
120.448
120.518
120.499
120.393
120.188
119.892
119.52
119.084
118.591
118.041
117.429
116.75
115.999
115.172
114.266
113.283
112.222
111.084
109.87
108.582
107.222
105.792
104.295
102.734
101.112
99.4326
97.7031
95.9325
94.1342
92.3292
90.5511
88.8511
87.2974
85.9673
84.9333
84.2429
83.9017
83.8655
84.0501
84.3513
84.6649
84.8978
84.9669
84.7915
84.2983
83.4421
82.2224
80.696
78.9962
77.3449
76.005
75.1798
74.7648
75.6357
76.7292
77.8149
78.6352
79.2486
79.7861
80.2268
80.57
80.8947
81.2725
81.801
82.5834
83.6352
84.8969
86.293
87.7593
89.2531
90.7354
92.1673
93.5285
94.8162
96.0283
97.156
98.1957
99.1586
100.07
100.965
101.881
102.863
103.948
105.156
106.488
107.923
109.416
110.918
112.363
113.699
114.89
115.932
116.837
117.623
118.302
118.884
119.375
119.785
120.118
120.377
120.552
120.633
120.62
120.514
120.305
120.001
119.619
119.172
118.668
118.105
117.478
116.779
116.004
115.147
114.207
113.185
112.08
110.894
109.627
108.282
106.861
105.366
103.799
102.158
100.445
98.6578
96.7977
94.867
92.8731
90.8346
88.7913
86.8136
85.0027
83.4798
82.3626
81.7343
81.6104
81.9221
82.5341
83.2858
84.0274
84.6377
85.0178
85.0661
84.6705
83.7446
82.267
80.2969
77.9899
75.6659
73.8169
72.8751
73.3268
74.2398
75.6788
77.0924
77.9413
78.5042
79.0474
79.3903
79.5125
79.5702
79.6522
79.9587
80.6929
81.8345
83.2479
84.7999
86.4038
88.0301
89.6228
91.1179
92.4994
93.7798
94.9523
95.9915
96.889
97.6681
98.3746
99.0683
99.8185
100.692
101.753
103.025
104.503
106.161
107.908
109.707
111.41
113.002
114.422
115.65
116.694
117.576
118.317
118.936
119.449
119.869
120.209
120.475
120.66
120.75
120.743
120.636
120.423
120.111
119.72
119.264
118.749
118.174
117.531
116.812
116.01
115.123
114.147
113.084
111.935
110.7
109.38
107.979
106.499
104.939
103.298
101.572
99.7547
97.8386
95.815
93.677
91.4237
89.0679
86.6527
84.2709
82.0731
80.2496
78.9912
78.4402
78.6352
79.4665
80.7096
82.1097
83.4509
84.5816
85.3985
85.7913
85.5935
84.6296
82.8164
80.209
76.9654
73.4939
70.7249
69.6306
72.0708
72.7996
74.9394
76.7496
77.3482
77.7633
78.349
78.5287
78.3538
78.0669
77.6488
77.5704
78.2531
79.578
81.2911
83.1242
84.9568
86.8268
88.6059
90.1789
91.5833
92.8757
94.0202
94.946
95.6353
96.1263
96.4883
96.8169
97.2325
97.8607
98.8039
100.127
101.805
103.778
105.905
108.091
110.182
112.102
113.815
115.284
116.512
117.521
118.344
119.01
119.547
119.977
120.319
120.586
120.776
120.872
120.869
120.761
120.544
120.225
119.827
119.362
118.837
118.248
117.588
116.847
116.018
115.098
114.085
112.981
111.786
110.502
109.131
107.675
106.136
104.51
102.791
100.97
99.0317
96.9602
94.734
92.3318
89.7367
86.9502
84.0201
81.0737
78.3324
76.0794
74.5986
74.1252
74.7687
76.3711
78.5448
80.8657
83.017
84.8235
86.1953
87.0457
87.1499
86.1635
83.8614
80.3321
75.8102
70.6831
66.3829
65.0684
43.7287
53.0399
65.0876
75.8225
76.7736
77.2668
78.3244
77.9897
77.211
76.3441
75.0185
74.4978
75.2561
76.8579
78.9472
81.0032
83.1161
85.4556
87.5747
89.2647
90.7475
92.149
93.3271
94.134
94.5587
94.6583
94.5173
94.2708
94.1152
94.2673
94.9204
96.2062
98.1249
100.546
103.246
105.991
108.612
110.976
113.047
114.818
116.278
117.453
118.383
119.109
119.674
120.112
120.452
120.715
120.905
121.005
121.003
120.894
120.672
120.347
119.941
119.467
118.931
118.328
117.649
116.884
116.026
115.071
114.02
112.873
111.632
110.299
108.878
107.369
105.77
104.075
102.271
100.343
98.2678
96.0167
93.554
90.8407
87.8462
84.5651
81.0396
77.3873
73.8591
70.8741
68.9088
68.3935
69.627
72.4063
75.9856
79.6146
82.811
85.4462
87.4696
88.8939
89.5159
88.8
86.2068
81.693
75.8095
68.3119
60.2216
57.1027
3.96637
6.51968
9.84488
16.3762
28.0543
42.1005
54.8422
63.0345
68.4892
73.2232
70.398
69.1076
70.7181
73.652
76.9136
78.8383
81.26
84.3327
86.6309
88.241
89.9106
91.6465
92.9756
93.6803
93.8095
93.4237
92.6019
91.5208
90.4842
89.8365
89.9246
91.0334
93.2025
96.2292
99.7439
103.329
106.653
109.59
112.114
114.248
115.989
117.367
118.432
119.233
119.834
120.282
120.617
120.869
121.054
121.153
121.15
121.037
120.81
120.479
120.065
119.583
119.035
118.416
117.715
116.923
116.032
115.041
113.949
112.757
111.469
110.088
108.617
107.054
105.393
103.625
101.733
99.6928
97.4747
95.0397
92.3401
89.3215
85.9191
82.0536
77.68
72.8834
68.0182
63.9009
61.3609
60.8259
62.8145
67.3869
73.0764
78.5588
82.9518
86.521
89.284
91.416
92.9111
93.1735
90.7149
84.1754
75.4477
56.7933
28.9877
17.7527
0.253254
0.263222
0.261996
0.253328
0.211972
0.202207
0.282576
1.70795
3.98013
7.29662
13.6269
23.1564
34.6233
48.1026
67.7706
74.5102
78.6517
84.3452
86.1715
87.0079
89.1822
91.5927
93.0779
93.6672
93.5164
92.574
90.8817
88.6607
86.3617
84.4573
83.532
84.2084
86.6479
90.5388
95.2506
100.014
104.291
107.944
111.023
113.574
115.647
117.265
118.488
119.384
120.029
120.489
120.818
121.056
121.229
121.323
121.315
121.197
120.963
120.625
120.203
119.711
119.149
118.511
117.785
116.963
116.036
115.004
113.867
112.628
111.291
109.86
108.336
106.717
104.993
103.151
101.173
99.0314
96.6879
94.0967
91.1944
87.9019
84.0723
79.511
74.1757
68.3459
62.2692
56.7108
52.9047
51.1256
52.631
59.8399
69.1395
77.6796
83.4009
87.9183
91.608
94.4875
96.9428
98.905
93.2562
64.3691
28.7047
6.49752
1.39481
0.227277
0.245687
0.246405
0.244981
0.239831
0.233282
0.233075
0.234358
0.235614
0.236118
0.2334
0.228123
0.224689
0.589676
2.26583
6.13301
17.0343
42.7801
73.3617
84.8203
84.1023
88.5659
92.5977
93.9529
94.3964
93.9615
92.2275
89.3054
85.4693
81.4509
77.8324
75.403
75.2027
77.7834
82.9214
89.553
96.0589
101.571
106.075
109.799
112.843
115.27
117.153
118.556
119.564
120.263
120.74
121.061
121.282
121.439
121.522
121.506
121.379
121.137
120.79
120.359
119.855
119.277
118.616
117.861
117.003
116.035
114.957
113.769
112.477
111.086
109.6
108.02
106.34
104.552
102.643
100.599
98.3911
95.9795
93.3105
90.3191
86.9094
82.9059
77.9444
71.6093
64.09
54.8508
43.2333
31.034
17.8533
16.9942
27.9495
41.6214
55.299
63.5582
69.8597
75.602
74.2087
67.183
49.4397
25.9679
9.58745
0.983354
0.199215
0.123814
0.107706
0.244001
0.244754
0.243362
0.238626
0.232943
0.230875
0.232351
0.233652
0.233848
0.233263
0.233157
0.233616
0.233238
0.234534
0.25913
0.288884
1.83137
6.68784
17.0323
40.6687
69.5216
90.2839
95.0752
96.305
95.9884
92.8777
87.8917
81.226
74.1037
67.8963
64.2441
63.4805
66.4962
73.4632
82.8929
91.63
98.5578
104.052
108.517
112.096
114.889
117.045
118.644
119.777
120.541
121.04
121.354
121.554
121.69
121.759
121.73
121.591
121.337
120.979
120.537
120.019
119.421
118.733
117.944
117.044
116.027
114.894
113.647
112.292
110.838
109.288
107.644
105.903
104.058
102.106
100.038
97.8351
95.4523
92.8247
89.8781
86.4973
82.4025
76.7341
67.8369
55.9742
41.3337
15.4577
0.293687
-0.284707
-0.18492
-0.0131404
0.0429458
0.0515539
1.4226
3.70906
5.50084
4.8711
2.90328
0.800357
0.0551187
0.0399982
0.07226
0.0926425
0.0947527
0.0945238
0.242337
0.24273
0.241668
0.238853
0.235822
0.234198
0.23348
0.233057
0.232097
0.230206
0.227779
0.225412
0.224523
0.222462
0.219243
0.21626
0.208038
0.228584
0.295748
1.21537
6.16912
16.1858
33.3153
55.7118
67.9232
69.3928
65.3343
56.4212
46.0265
34.9199
33.553
39.6446
46.03
60.3342
75.832
87.3718
95.6669
102.157
107.359
111.439
114.572
116.989
118.784
120.043
120.875
121.396
121.703
121.883
121.993
122.041
121.994
121.839
121.57
121.199
120.743
120.207
119.586
118.866
118.035
117.084
116.008
114.808
113.489
112.059
110.527
108.901
107.187
105.388
103.51
101.556
99.5318
97.4202
95.1749
92.7113
89.9452
86.7522
82.7977
77.2721
68.233
51.693
32.7539
9.991
0.15295
-0.0599516
0.0322192
0.107355
0.126176
0.123594
0.112065
0.0997582
0.0874391
0.0800809
0.0754013
0.0732344
0.0702573
0.0678455
0.0749486
0.0810312
0.0828522
0.0851301
0.240941
0.24115
0.24051
0.238806
0.23663
0.234784
0.233401
0.232292
0.230868
0.228818
0.226162
0.223198
0.220387
0.217297
0.214754
0.212256
0.207902
0.206176
0.209386
0.20672
0.194446
0.214847
0.237842
1.0995
2.56907
3.50438
3.94163
3.65667
3.42072
2.34238
-4.17221
-13.9985
1.55409
38.5133
67.2613
82.7019
92.8313
100.568
106.51
111.006
114.422
117.062
119.028
120.395
121.286
121.822
122.117
122.272
122.353
122.375
122.306
122.13
121.844
121.457
120.983
120.427
119.777
119.018
118.138
117.126
115.978
114.695
113.286
111.761
110.133
108.417
106.629
104.787
102.911
101.012
99.0971
97.1577
95.1459
92.9698
90.5554
87.9339
85.025
80.9921
74.0775
59.4926
24.0139
0.0945994
-0.00434962
0.144988
0.144135
0.0833066
0.0839209
0.0907486
0.0965892
0.0928878
0.0875064
0.0838853
0.0808412
0.0778033
0.075745
0.0762934
0.0798123
0.079107
0.0784372
0.0812124
0.239925
0.240188
0.23963
0.238316
0.236613
0.234863
0.233261
0.231666
0.229765
0.227321
0.224316
0.220952
0.217541
0.214181
0.211256
0.20835
0.204462
0.201707
0.200756
0.198109
0.19267
0.190207
0.18942
0.185826
0.187758
0.195809
0.205217
0.215098
0.214042
0.22616
0.464352
0.809548
-11.2801
21.754
58.4858
78.0516
90.5788
99.5969
106.142
110.919
114.548
117.35
119.431
120.871
121.798
122.333
122.605
122.725
122.779
122.768
122.672
122.472
122.164
121.758
121.266
120.685
120.002
119.197
118.257
117.171
115.935
114.551
113.029
111.384
109.638
107.816
105.956
104.093
102.261
100.472
98.7288
97.0243
95.3305
93.5797
91.7277
89.9175
88.3779
86.6364
84.4182
52.4266
2.10501
0.102095
0.1282
0.128467
0.124732
0.102145
0.077326
0.0841876
0.0897329
0.0891649
0.0865076
0.0843595
0.0824664
0.0802425
0.0784517
0.0783403
0.0793532
0.0777392
0.077334
0.0802536
0.238978
0.239097
0.238644
0.237626
0.236189
0.234543
0.232808
0.230924
0.22872
0.22605
0.222906
0.219418
0.2158
0.212188
0.208768
0.205536
0.202404
0.200102
0.198709
0.196666
0.193345
0.191085
0.190657
0.190721
0.192988
0.199145
0.209484
0.225459
0.248959
0.271316
0.283823
-0.0504162
-2.98792
33.1117
59.7658
78.7377
91.054
100.085
106.586
111.363
115.058
117.926
120.044
121.502
122.424
122.945
123.166
123.257
123.276
123.228
123.101
122.873
122.54
122.113
121.599
120.992
120.27
119.413
118.402
117.226
115.882
114.373
112.71
110.913
109.019
107.075
105.144
103.287
101.543
99.919
98.4045
96.9933
95.6654
94.3565
93.0095
91.7228
90.9148
90.799
75.3459
13.0357
0.0916526
0.0759647
0.0891238
0.0962714
0.0849163
0.0802549
0.0833558
0.0825842
0.0864208
0.0867225
0.0850255
0.0834485
0.0821549
0.0807131
0.0792934
0.0786034
0.0786464
0.0781374
0.0790331
0.0825608
0.237811
0.237931
0.237525
0.236636
0.235351
0.233783
0.232002
0.229984
0.227641
0.2249
0.22182
0.21834
0.21472
0.211077
0.20754
0.204246
0.201316
0.198958
0.19713
0.195344
0.193314
0.191926
0.19162
0.192123
0.194484
0.199665
0.208093
0.220473
0.238312
0.254212
0.203953
0.0657421
16.9161
63.4526
77.1414
86.5787
95.3363
102.543
108.07
112.438
116.014
118.82
120.882
122.297
123.168
123.635
123.83
123.87
123.852
123.76
123.598
123.339
122.98
122.529
121.993
121.357
120.593
119.675
118.581
117.3
115.826
114.16
112.317
110.326
108.244
106.154
104.153
102.329
100.726
99.3344
98.1181
97.0602
96.1335
95.2112
94.1501
92.9389
92.3856
93.1715
51.0418
1.48484
0.0749436
0.0739371
0.0832621
0.0876156
0.0847471
0.0811732
0.0879284
0.0886281
0.0863016
0.086277
0.0847615
0.0832338
0.0820839
0.0810209
0.0799881
0.0793768
0.0794644
0.0800432
0.0820153
0.0859813
0.236423
0.236499
0.236114
0.235302
0.234114
0.232617
0.23085
0.228808
0.226468
0.223787
0.220765
0.21744
0.213978
0.210467
0.207017
0.203772
0.200861
0.198383
0.196335
0.194612
0.193135
0.192095
0.191779
0.19228
0.194092
0.197561
0.202801
0.209369
0.215911
0.216108
0.210927
0.239784
15.6094
72.5483
90.6294
95.203
100.954
106.041
110.238
114.009
117.4
120
121.929
123.253
124.025
124.427
124.564
124.556
124.496
124.367
124.17
123.879
123.491
123.017
122.458
121.793
120.984
119.998
118.809
117.403
115.77
113.909
111.834
109.59
107.267
104.997
102.927
101.178
99.7979
98.7471
97.9401
97.3299
96.8921
96.4657
95.803
94.3806
93.7877
87.7136
18.0778
-0.0033222
0.038482
0.0629857
0.0776362
0.0826986
0.0827349
0.0817662
0.083025
0.0919328
0.0907464
0.0874012
0.0859432
0.0844529
0.0832771
0.0823336
0.0815578
0.0811307
0.0814694
0.0824893
0.0847874
0.0890915
0.234706
0.234748
0.234382
0.233629
0.232522
0.231104
0.229412
0.227442
0.225156
0.222555
0.219679
0.216603
0.213375
0.210084
0.206826
0.203721
0.200877
0.198377
0.196251
0.194493
0.19314
0.192135
0.191601
0.191736
0.192675
0.194494
0.197207
0.200554
0.203569
0.204183
0.20998
0.24787
13.5064
80.4855
96.8881
101.028
105.47
109.236
112.362
115.786
118.955
121.368
123.143
124.328
124.986
125.296
125.366
125.321
125.213
125.054
124.822
124.499
124.084
123.587
123.007
122.313
121.457
120.396
119.1
117.548
115.723
113.614
111.241
108.671
106.042
103.556
101.437
99.846
98.8238
98.273
98.0269
97.9874
98.1449
98.3565
98.2102
97.5135
96.3171
45.696
0.711136
0.0708376
0.0603559
0.0670928
0.0745596
0.0790111
0.080936
0.08212
0.0837862
0.0862052
0.0888978
0.089931
0.087826
0.086232
0.0852031
0.084393
0.0838129
0.0836209
0.0838568
0.0847567
0.0863406
0.092684
0.23265
0.23269
0.232357
0.231668
0.230658
0.229361
0.227754
0.225863
0.223675
0.221242
0.21859
0.215758
0.2128
0.209777
0.20677
0.203872
0.201175
0.198749
0.196646
0.195054
0.193579
0.192396
0.191548
0.191293
0.191499
0.19215
0.193214
0.19466
0.196288
0.196541
0.193806
0.197086
11.9798
87.1572
103.47
106.323
109.367
111.919
114.485
117.603
120.626
122.882
124.473
125.487
126.009
126.227
126.231
126.148
126.003
125.82
125.558
125.208
124.768
124.251
123.651
122.93
122.026
120.886
119.471
117.751
115.694
113.278
110.53
107.554
104.556
101.834
99.7204
98.4259
97.9489
98.0863
98.5507
99.1869
99.9946
100.943
101.756
102.704
94.3056
15.0022
0.22376
0.096082
0.0806116
0.0746889
0.0754821
0.0779164
0.0799761
0.0818487
0.0839115
0.0861193
0.0877214
0.0883348
0.0882073
0.0876317
0.0869021
0.0863356
0.0859162
0.0857063
0.0857913
0.086291
0.0873707
0.150319
0.23031
0.230382
0.230108
0.229515
0.22861
0.227412
0.225926
0.224169
0.222158
0.219906
0.217465
0.214884
0.212203
0.209466
0.206732
0.204077
0.201576
0.199285
0.197266
0.195532
0.193991
0.192745
0.191866
0.191315
0.191042
0.190967
0.191001
0.19112
0.191291
0.190461
0.18759
0.190889
9.99583
92.7082
111.659
112.409
113.489
114.687
116.586
119.532
122.456
124.486
125.858
126.677
127.063
127.195
127.144
127.03
126.871
126.66
126.379
126.008
125.55
125.017
124.402
123.656
122.706
121.484
119.943
118.035
115.707
112.926
109.727
106.272
102.855
99.8971
97.8559
97.0028
97.2514
98.2512
99.5547
100.932
102.377
103.911
105.319
106.779
51.7213
1.21722
0.0298013
0.0692274
0.069261
0.070501
0.0731391
0.0759967
0.0785307
0.0808559
0.0831178
0.0851817
0.0868952
0.0878674
0.0882011
0.0881699
0.0879892
0.087766
0.0875733
0.0874479
0.0873865
0.0874052
0.103698
0.21234
0.227782
0.227923
0.227739
0.227233
0.226437
0.225355
0.224034
0.222463
0.220632
0.218555
0.216316
0.213975
0.211568
0.209113
0.206654
0.204253
0.20197
0.19985
0.197914
0.196181
0.194674
0.193417
0.192434
0.191709
0.191178
0.190721
0.190233
0.189727
0.189316
0.188251
0.185204
0.191125
6.78328
92.4421
119.522
118.411
117.769
117.747
119.083
121.795
124.424
126.148
127.247
127.854
128.112
128.168
128.088
127.955
127.794
127.574
127.287
126.907
126.438
125.895
125.269
124.502
123.508
122.21
120.541
118.433
115.809
112.619
108.916
104.933
101.067
97.8611
95.9197
95.5825
96.6685
98.6604
100.918
103.085
105.117
107.052
109.01
85.1632
7.14583
0.0622546
0.060203
0.0622551
0.0636578
0.06684
0.0704536
0.0737573
0.0767166
0.0794045
0.0818783
0.0840703
0.0858612
0.08711
0.0878682
0.0882974
0.0885482
0.0887182
0.0888584
0.0890074
0.0891647
0.0892643
0.112788
0.21643
0.225195
0.225415
0.225308
0.224891
0.224217
0.223302
0.222153
0.220784
0.219149
0.21722
0.215152
0.213027
0.210881
0.208706
0.206517
0.204367
0.202303
0.200359
0.198556
0.196904
0.195412
0.194116
0.193069
0.192284
0.191668
0.19111
0.190504
0.189969
0.18976
0.189371
0.186227
0.191035
3.00136
78.0306
127.39
124.308
122.127
121.151
122.015
124.283
126.423
127.754
128.552
128.962
129.117
129.123
129.041
128.918
128.78
128.565
128.285
127.906
127.436
126.892
126.259
125.475
124.447
123.082
121.296
118.997
116.081
112.481
108.262
103.755
99.4671
96.0273
94.1937
94.3546
96.3558
99.3712
102.662
105.631
108.015
110.267
105.215
23.6146
-0.091391
-0.00656803
0.0482295
0.0581482
0.0597343
0.0635905
0.0677385
0.0714186
0.0747276
0.0777189
0.0804081
0.0827595
0.0847035
0.086194
0.0872833
0.0880908
0.0887298
0.0892722
0.0897516
0.0901908
0.0906013
0.0909949
0.0911089
0.163295
0.22262
0.222906
0.222871
0.22258
0.222045
0.221274
0.220294
0.21917
0.217795
0.215936
0.213981
0.212036
0.210209
0.208246
0.206328
0.20442
0.202568
0.200799
0.199126
0.197558
0.196085
0.194717
0.19374
0.193286
0.192284
0.19186
0.191309
0.190993
0.191248
0.191773
0.190058
0.18543
0.455338
47.0635
135.3
130.228
126.409
124.517
124.854
126.549
128.11
129.074
129.621
129.909
130.021
130.033
129.989
129.91
129.809
129.629
129.371
129.006
128.546
128.008
127.375
126.582
125.531
124.121
122.248
119.796
116.641
112.707
108.027
103.103
98.5287
94.9914
93.3309
94.0324
96.8959
101.005
105.317
108.961
111.219
106.846
37.6024
0.0256713
0.00141591
0.00569381
0.0303742
0.0447552
0.0532236
0.059537
0.0646749
0.0689649
0.0726849
0.0759717
0.0788797
0.0814046
0.0835144
0.0852065
0.0865508
0.0876604
0.0886269
0.0894936
0.0902637
0.0909474
0.091588
0.0921626
0.0925181
0.100053
0.220116
0.220462
0.220534
0.220351
0.219936
0.219299
0.218453
0.217628
0.216799
0.218291
0.220014
0.212417
0.209256
0.20777
0.20612
0.204437
0.202781
0.201176
0.199627
0.198137
0.196688
0.196203
0.20023
0.199524
0.194229
0.192796
0.19212
0.191919
0.192686
0.194285
0.19538
0.197793
0.284889
15.827
116.734
134.853
129.42
126.692
126.559
127.853
129.023
129.8
130.271
130.583
130.765
130.868
130.92
130.928
130.89
130.763
130.542
130.205
129.766
129.242
128.617
127.825
126.772
125.349
123.438
120.906
117.624
113.564
108.5
103.437
98.773
95.3459
94.0165
95.3329
99.107
104.348
109.522
113.478
105.937
40.4061
0.351099
0.0363042
0.025487
0.0210511
0.0301326
0.0414496
0.050182
0.0568267
0.062266
0.0668687
0.0708511
0.0743539
0.0774427
0.0801222
0.0823726
0.0842139
0.0857434
0.0870934
0.0883408
0.089498
0.0905261
0.0914299
0.092339
0.0935379
0.0948089
0.0971002
0.217719
0.218148
0.218306
0.218216
0.217905
0.217378
0.216528
0.216278
0.219314
0.219709
0.219179
0.217686
0.209154
0.20743
0.205952
0.204451
0.202966
0.201513
0.200088
0.198688
0.197398
0.199914
0.20094
0.19942
0.197266
0.193842
0.192428
0.191851
0.192491
0.194386
0.197089
0.209049
0.428377
1.81772
57.6124
130.183
130.016
126.509
125.986
127.337
128.631
129.586
130.314
130.882
131.305
131.614
131.834
131.971
132.029
131.974
131.8
131.5
131.091
130.591
129.982
129.207
128.177
126.784
124.902
122.386
119.097
114.979
110.125
105.091
100.529
97.3444
96.3795
98.2097
102.837
109.57
115.928
101.339
38.3818
0.553591
-0.0114914
0.00142798
0.0132247
0.0209378
0.0300047
0.0398224
0.0482019
0.0549296
0.0604954
0.0652327
0.06935
0.0729848
0.0762039
0.0790041
0.0813506
0.0832711
0.0849099
0.0864552
0.0879573
0.0893907
0.0906319
0.0916655
0.0927336
0.0940243
0.0956799
0.0978324
0.215498
0.215979
0.216206
0.216206
0.215997
0.215603
0.215107
0.219014
0.219374
0.218497
0.217579
0.214434
0.208458
0.207173
0.205831
0.204474
0.203134
0.20182
0.200525
0.199239
0.197961
0.198922
0.200705
0.199273
0.197768
0.195982
0.192296
0.190517
0.190035
0.189943
0.188138
0.183863
0.229911
0.592155
5.56732
66.5492
121.505
124.081
122.24
123.931
126.303
128.124
129.63
130.77
131.647
132.292
132.758
133.073
133.246
133.271
133.151
132.89
132.516
132.048
131.467
130.726
129.753
128.442
126.668
124.286
121.158
117.242
112.663
107.883
103.539
100.508
99.6125
101.49
106.655
111.868
85.5984
23.4752
0.490078
-0.0226963
-0.023976
-0.00488253
0.00987356
0.0212263
0.0308689
0.0397401
0.0474797
0.0539548
0.0594187
0.0641241
0.0682538
0.0719349
0.0752311
0.0781218
0.0805213
0.0824346
0.0840735
0.0857774
0.0875256
0.0892541
0.0906584
0.0916444
0.0927573
0.0941624
0.0958518
0.0978479
0.213448
0.213958
0.214243
0.214344
0.214297
0.214144
0.214083
0.215691
0.217894
0.217213
0.215075
0.209846
0.208284
0.206998
0.205739
0.204499
0.203287
0.202104
0.200943
0.199789
0.198648
0.197727
0.198905
0.199301
0.198394
0.197489
0.19585
0.189319
0.187203
0.185105
0.181057
0.173646
0.152199
0.213614
0.407506
4.93786
52.9528
99.9378
114.159
116.37
121.338
125.288
128.251
130.354
131.888
132.985
133.755
134.267
134.567
134.67
134.599
134.375
134.036
133.606
133.066
132.383
131.498
130.317
128.721
126.565
123.716
120.123
115.878
111.31
106.997
103.671
102.232
102.165
88.2226
43.687
11.2563
0.0321257
-0.0344982
-0.042729
-0.027527
-0.00489633
0.0118987
0.0237552
0.0329452
0.0409138
0.0478839
0.0538681
0.0590325
0.0635561
0.0675878
0.0712396
0.0745706
0.0775352
0.0799682
0.0817963
0.0832962
0.0850718
0.0870511
0.0891774
0.0907467
0.0914227
0.0925045
0.0939654
0.0956412
0.0976016
0.211568
0.212084
0.212392
0.212547
0.21262
0.212632
0.213014
0.213406
0.216817
0.213653
0.2103
0.209206
0.207983
0.206801
0.205642
0.204521
0.203423
0.202351
0.20131
0.200271
0.199238
0.198303
0.197562
0.197909
0.199144
0.198461
0.197637
0.189536
0.185842
0.18281
0.178696
0.174178
0.169379
0.180475
0.203818
0.430296
2.97735
26.4423
69.1786
100.229
113.112
121.456
126.545
129.938
132.241
133.835
134.915
135.611
136.023
136.186
136.152
135.957
135.649
135.258
134.774
134.167
133.394
132.375
130.994
129.108
126.575
123.304
119.315
114.658
109.773
105.254
99.2436
60.8548
13.5349
0.978583
0.325686
0.100458
-0.0179175
-0.0112918
-0.00446583
0.007443
0.0189923
0.0283997
0.0361808
0.043021
0.0491131
0.0544918
0.059252
0.0634699
0.067312
0.0708928
0.0742901
0.0773778
0.0804415
0.0865951
0.0941026
0.091184
0.0871809
0.0894013
0.091322
0.0911287
0.0929005
0.0941671
0.095492
0.0972064
0.209867
0.21036
0.210643
0.210748
0.21081
0.210772
0.210872
0.219352
0.212022
0.211291
0.209971
0.2088
0.207679
0.206596
0.20556
0.204534
0.203543
0.202571
0.20162
0.200679
0.199717
0.198776
0.197792
0.196639
0.196208
0.196014
0.193443
0.188915
0.186354
0.183479
0.18023
0.177809
0.176936
0.179136
0.176603
0.232347
0.438767
1.20239
8.91489
51.1193
101.329
118.197
125.529
130.047
133.018
135.028
136.348
137.169
137.642
137.832
137.817
137.638
137.35
136.998
136.575
136.057
135.405
134.552
133.392
131.771
129.522
126.503
122.58
117.562
111.144
97.4118
46.465
3.45296
0.0936896
0.125835
0.096389
0.0342873
0.00286087
0.00926099
0.0145082
0.0200531
0.0269679
0.0338673
0.0400836
0.0457404
0.0509373
0.0556419
0.0598877
0.0637441
0.0673214
0.0707832
0.0743473
0.0783315
0.0899951
0.0944383
0.0973383
0.0992297
0.0920542
0.0908003
0.093463
0.094691
0.0977158
0.0986823
0.0953047
0.096843
0.208373
0.20882
0.209082
0.209163
0.20926
0.211025
0.217811
0.218402
0.210318
0.210519
0.209478
0.208415
0.20738
0.2064
0.205431
0.204494
0.203604
0.202757
0.201903
0.201042
0.200159
0.199237
0.198245
0.1971
0.195738
0.194178
0.192389
0.190425
0.188384
0.186045
0.183653
0.181861
0.181053
0.180757
0.180272
0.18711
0.265022
0.427429
0.47508
6.28835
62.6165
117.321
126.514
131.304
134.536
136.736
138.147
138.982
139.441
139.617
139.591
139.409
139.136
138.813
138.446
138.009
137.47
136.772
135.813
134.429
132.422
129.591
125.687
120.592
110.502
40.5068
0.659583
0.215309
0.0850262
0.0936375
0.0819699
0.0527322
0.0325796
0.0287571
0.0288893
0.0313062
0.0351508
0.0395218
0.044258
0.0488087
0.0531335
0.0571383
0.0608303
0.0642305
0.0674541
0.0706764
0.0747703
0.0874179
0.0919659
0.0942131
0.0967436
0.0987457
0.0964581
0.0913802
0.0909362
0.0938062
0.0965974
0.0991412
0.0960562
0.096518
0.207043
0.207433
0.207646
0.207652
0.208886
0.216359
0.216431
0.215728
0.211639
0.210148
0.209023
0.208006
0.207047
0.206137
0.205264
0.20442
0.203626
0.202876
0.202117
0.201377
0.200596
0.199756
0.198844
0.197829
0.196722
0.195451
0.194009
0.192465
0.190897
0.189215
0.187544
0.186135
0.185656
0.187213
0.179337
0.17525
0.19685
0.252886
0.215127
0.212814
13.6975
95.093
130.584
134.02
136.917
139.036
140.347
141.056
141.414
141.518
141.45
141.258
140.99
140.687
140.36
139.985
139.532
138.966
138.19
137.02
135.224
132.559
128.945
124.746
63.8295
1.2664
0.154973
0.144934
0.11735
0.0976153
0.0831332
0.064705
0.0506605
0.0446764
0.0451259
0.0463839
0.0422992
0.0449777
0.0484709
0.0520417
0.0555514
0.0588779
0.0619874
0.0648946
0.0676055
0.0702202
0.0821864
0.0911514
0.0927414
0.0941028
0.0954536
0.0978838
0.0893704
0.0905759
0.0898023
0.0931736
0.095635
0.0965322
0.0945613
0.0961859
0.205864
0.206193
0.206372
0.206358
0.211624
0.216456
0.215522
0.214643
0.213079
0.20965
0.208382
0.207495
0.206651
0.205828
0.205043
0.204312
0.20361
0.20293
0.202312
0.20168
0.201012
0.200288
0.199496
0.198614
0.197769
0.196903
0.195788
0.194448
0.193378
0.192255
0.191075
0.190011
0.195243
0.20058
0.183539
0.178331
0.175021
0.178355
0.13597
0.0860763
0.0505172
33.4951
133.669
137.329
139.786
141.776
142.864
143.326
143.502
143.488
143.36
143.148
142.884
142.602
142.303
141.962
141.563
141.107
140.514
139.497
137.873
135.402
131.785
84.8571
5.25848
0.190346
0.131526
0.132912
0.115239
0.096323
0.0834704
0.0707145
0.0605097
0.0549288
0.0533925
0.0484817
0.0481367
0.0501429
0.0526078
0.055301
0.0580608
0.0607668
0.0633674
0.0658029
0.0680472
0.0705445
0.0903446
0.0929395
0.0931075
0.0938422
0.0882409
0.0893271
0.0891422
0.0901776
0.0911943
0.0930218
0.0941259
0.0931794
0.0943249
0.0959179
0.205074
0.205226
0.205379
0.205331
0.207869
0.214939
0.214408
0.21391
0.213184
0.211685
0.207724
0.206907
0.206202
0.205495
0.204789
0.204133
0.203525
0.202975
0.20246
0.201956
0.201409
0.200822
0.200176
0.199511
0.199108
0.198299
0.197511
0.196425
0.195673
0.194898
0.193991
0.192916
0.201737
0.198451
0.187881
0.183175
0.174436
0.16251
0.13355
0.115129
0.134083
0.201191
57.3243
139.771
142.977
144.761
145.508
145.664
145.617
145.469
145.276
145.039
144.786
144.542
144.282
143.954
143.561
143.217
142.864
141.847
140.316
138.502
91.145
8.91327
-0.0406593
0.0703127
0.0897669
0.100921
0.0979238
0.0904183
0.0828001
0.0735409
0.0659923
0.0605803
0.0553937
0.0536395
0.0537746
0.0548635
0.0565094
0.0584773
0.060611
0.0627973
0.0649571
0.0670248
0.0689187
0.0703595
0.0787729
0.0922274
0.0844577
0.0854546
0.0898083
0.0902382
0.0877953
0.089838
0.0913801
0.0912367
0.0913858
0.092776
0.0941205
0.0955944
0.204179
0.204348
0.20454
0.204666
0.204778
0.207599
0.212989
0.213067
0.213052
0.213514
0.211378
0.206765
0.205717
0.205135
0.204522
0.203957
0.203429
0.202982
0.202575
0.202186
0.201778
0.201329
0.20084
0.200306
0.199908
0.199312
0.198848
0.198246
0.197709
0.197171
0.196435
0.195974
0.197504
0.193079
0.191648
0.188007
0.181547
0.172648
0.159551
0.157738
0.182683
0.257671
1.35635
71.6206
139.963
148.054
148.245
147.907
147.657
147.409
147.165
146.891
146.649
146.489
146.32
146.002
145.499
145.188
145.502
144.228
133.458
84.2419
7.22314
0.0250598
-0.0097515
0.0557057
0.0766765
0.0846002
0.0855772
0.0832279
0.0800629
0.0743616
0.0679153
0.0628196
0.0601072
0.0587517
0.0584672
0.0589967
0.0600664
0.061474
0.0631156
0.0648745
0.0667003
0.0685175
0.0703542
0.072685
0.0739467
0.0769823
0.0807065
0.0842142
0.0856746
0.0874062
0.0884192
0.0890737
0.0886625
0.089747
0.091132
0.0924826
0.0938414
0.095242
0.203203
0.203455
0.203753
0.203986
0.204292
0.204843
0.205939
0.208701
0.212448
0.212787
0.213697
0.214188
0.206447
0.204745
0.204233
0.20374
0.203292
0.202943
0.202642
0.202374
0.202102
0.201805
0.201466
0.20112
0.200832
0.200526
0.200119
0.199714
0.199422
0.199131
0.198636
0.200147
0.198039
0.19675
0.195316
0.19276
0.18859
0.183088
0.175182
0.170391
0.172306
0.168678
0.0971673
1.36508
56.4657
122.146
150.727
150.163
149.632
149.327
149.027
148.642
148.385
148.442
148.523
148.206
147.174
146.819
149.305
123.528
48.8806
6.88213
-0.300816
-0.070604
-0.0110562
0.034784
0.0611541
0.0734101
0.077798
0.0780616
0.0757053
0.07302
0.0694823
0.0663511
0.0641439
0.0628572
0.062382
0.0625608
0.0632275
0.0642435
0.0655002
0.0669384
0.0685469
0.0701356
0.071711
0.0733923
0.0751773
0.0773784
0.0797354
0.0817343
0.0876593
0.0882868
0.0863497
0.0870093
0.0883652
0.089639
0.0909221
0.092201
0.0935433
0.0949887
0.202354
0.2027
0.202991
0.203246
0.203555
0.20397
0.204381
0.204744
0.205692
0.207708
0.212522
0.215626
0.215867
0.21011
0.203957
0.203462
0.203107
0.202848
0.202661
0.202513
0.202367
0.202202
0.202008
0.201815
0.201645
0.201965
0.203036
0.202213
0.200858
0.200861
0.200552
0.200487
0.199853
0.199611
0.198233
0.196154
0.192972
0.18823
0.181459
0.174314
0.167213
0.156127
0.135981
0.134007
0.801179
26.6869
71.2154
119.348
144.299
151.387
150.996
150.277
149.903
150.585
151.31
151.052
138.649
108.997
66.6723
25.9502
0.932277
0.418206
0.246807
2.81819e-05
0.0221767
0.0426442
0.0592264
0.0692175
0.0736288
0.0750806
0.0745028
0.0732714
0.0715339
0.0690628
0.0673126
0.0662067
0.0656737
0.0656533
0.066051
0.0667703
0.0677297
0.0689228
0.0702328
0.071503
0.0729455
0.0744483
0.0760539
0.0777864
0.0793636
0.083521
0.0877593
0.0847131
0.0881531
0.0881146
0.0885643
0.0895689
0.0907192
0.0918791
0.093153
0.0946871
0.201704
0.202002
0.202315
0.202565
0.202791
0.203073
0.203414
0.203702
0.204015
0.204194
0.204441
0.204312
0.210067
0.216588
0.216478
0.2051
0.202785
0.202694
0.202632
0.202593
0.202562
0.202509
0.202439
0.202354
0.203002
0.204358
0.204137
0.203935
0.203474
0.202324
0.202357
0.202156
0.201794
0.201504
0.200679
0.198431
0.195217
0.190688
0.184366
0.177132
0.169164
0.160177
0.148994
0.147721
0.157792
0.391539
2.56317
17.0417
39.7877
66.5588
91.26
102.743
104.704
102.832
89.8189
63.4552
34.9668
11.6216
1.81067
0.179101
0.334936
0.201464
0.118764
0.0517046
0.0486197
0.0561488
0.0637414
0.0696408
0.0727205
0.0780891
0.0824403
0.0785101
0.0733653
0.0712413
0.0699083
0.0689727
0.0684551
0.068329
0.0685513
0.0690578
0.0698052
0.070709
0.0717367
0.0728629
0.0740762
0.0753987
0.0768656
0.0784299
0.0800728
0.081975
0.0842195
0.084713
0.0865168
0.0870528
0.088016
0.0891566
0.0903602
0.0914308
0.0927198
0.0954611
0.201122
0.201403
0.201689
0.20184
0.201996
0.202207
0.202463
0.202698
0.202931
0.203113
0.203123
0.202943
0.203179
0.202771
0.207553
0.211634
0.206729
0.20249
0.202541
0.202631
0.202691
0.202738
0.202757
0.202748
0.20358
0.205131
0.204622
0.203981
0.203793
0.203444
0.203126
0.202853
0.202693
0.201911
0.201591
0.199585
0.196517
0.192148
0.186625
0.180133
0.172671
0.164509
0.158055
0.155949
0.156298
0.174672
0.178385
0.194602
0.250948
0.700552
2.92447
5.29805
6.13894
5.29136
2.81471
0.551746
0.172565
0.15609
0.125479
0.0875626
0.115121
0.123421
0.0966891
0.0693354
0.0638876
0.0660309
0.06914
0.072098
0.0739229
0.0805937
0.082868
0.0813684
0.0795169
0.0761177
0.0723602
0.0713792
0.0708636
0.0706657
0.070772
0.0711267
0.0716828
0.0724015
0.0732302
0.074097
0.0751181
0.0762046
0.0775867
0.0790508
0.0805456
0.0822779
0.084623
0.0934287
0.0949438
0.0934422
0.0892931
0.0889031
0.0902604
0.0908361
0.0937309
0.0954859
0.200602
0.200801
0.201003
0.201138
0.201212
0.201335
0.201558
0.201832
0.202013
0.202302
0.20249
0.202437
0.202333
0.20217
0.202547
0.20244
0.204289
0.204991
0.202674
0.202648
0.202762
0.20289
0.202996
0.203058
0.203254
0.20388
0.204113
0.204241
0.204121
0.204009
0.203823
0.204273
0.203722
0.20339
0.201787
0.199776
0.196884
0.192948
0.187764
0.181816
0.175255
0.167707
0.162358
0.158119
0.153622
0.154604
0.145917
0.13987
0.143955
0.151213
0.154073
0.158204
0.159596
0.144545
0.120833
0.108536
0.107118
0.10866
0.103571
0.0968172
0.0948887
0.0979955
0.0916579
0.0802435
0.0745951
0.0737114
0.0743524
0.0754114
0.0761945
0.0817993
0.0835128
0.0825287
0.0813074
0.0802237
0.0778586
0.0738174
0.0729922
0.0727198
0.0727503
0.0729993
0.0734289
0.0740088
0.0746718
0.0755711
0.0788295
0.0790639
0.0783135
0.0796165
0.0806388
0.0818087
0.0921103
0.0936397
0.094865
0.0954901
0.0957482
0.0891392
0.0908263
0.0918684
0.0942988
0.0951866
0.200137
0.200283
0.200362
0.200398
0.200369
0.200474
0.200734
0.200964
0.201223
0.201633
0.202086
0.202099
0.201996
0.201953
0.202003
0.201919
0.201976
0.202293
0.202603
0.202587
0.202748
0.202952
0.203145
0.203328
0.203545
0.203909
0.20415
0.207542
0.206416
0.204352
0.204118
0.203861
0.203122
0.201836
0.200601
0.199169
0.196589
0.192991
0.188252
0.182419
0.176146
0.17059
0.165549
0.160995
0.155891
0.152642
0.145228
0.136805
0.132829
0.131572
0.12902
0.124451
0.120042
0.112173
0.104427
0.100713
0.100995
0.103236
0.103651
0.100081
0.0963668
0.0952078
0.0916556
0.0857634
0.081454
0.0795548
0.0789295
0.0788695
0.0789217
0.0798397
0.0840951
0.0836825
0.0828461
0.0821014
0.0814292
0.0785483
0.0749628
0.0745235
0.0745133
0.0746929
0.0750402
0.0755505
0.0762186
0.079309
0.081189
0.0818759
0.0795537
0.0803949
0.0810768
0.0839318
0.094106
0.0937329
0.0949432
0.0959269
0.0975209
0.0921206
0.0904071
0.0914327
0.0938905
0.0940118
0.199722
0.199805
0.199814
0.19975
0.199582
0.199546
0.200011
0.200243
0.200347
0.200925
0.202077
0.201896
0.201703
0.201716
0.201722
0.201718
0.201867
0.202107
0.202243
0.202894
0.203185
0.202903
0.20316
0.203394
0.20363
0.203868
0.204855
0.207673
0.207302
0.206203
0.204639
0.203797
0.202706
0.201769
0.200381
0.197999
0.195142
0.191851
0.187781
0.18285
0.177881
0.172786
0.168513
0.163705
0.158543
0.153876
0.14772
0.14099
0.135847
0.131386
0.127622
0.123477
0.11935
0.113927
0.10861
0.105293
0.104271
0.104598
0.104111
0.101708
0.0987425
0.0963207
0.093275
0.0894463
0.086166
0.0840528
0.0828193
0.0821141
0.0816694
0.0813691
0.0823206
0.0848127
0.0843516
0.0839093
0.0834131
0.0830195
0.0782141
0.0760482
0.0760601
0.0762059
0.0764937
0.0769425
0.078165
0.0807857
0.0817382
0.0824846
0.0819298
0.0806901
0.0815422
0.0822471
0.0875274
0.0930733
0.0947814
0.0953338
0.0940973
0.0881492
0.0898809
0.0902134
0.0945234
0.0931381
0.199342
0.19934
0.199257
0.199102
0.198738
0.199994
0.210895
0.215015
0.214165
0.205482
0.203664
0.201684
0.201148
0.201532
0.201437
0.201429
0.20162
0.201839
0.20234
0.203678
0.203842
0.203648
0.203134
0.203288
0.203518
0.203735
0.204106
0.20717
0.206823
0.206187
0.205551
0.204391
0.202451
0.200928
0.199322
0.197462
0.194747
0.191625
0.187647
0.183465
0.17902
0.174381
0.170368
0.165775
0.160671
0.155909
0.150533
0.144942
0.140045
0.135606
0.131793
0.127819
0.123887
0.119029
0.114152
0.110752
0.108535
0.10713
0.105708
0.103586
0.10093
0.0982437
0.0954233
0.092419
0.0896954
0.0875902
0.0860716
0.0849876
0.0841902
0.0835992
0.0831844
0.0841875
0.0857576
0.0854071
0.0851093
0.0850522
0.0824404
0.0774854
0.0774556
0.0775701
0.0777822
0.0781211
0.0803457
0.0817081
0.0824324
0.0832077
0.0836363
0.0812926
0.0819915
0.0828402
0.0840515
0.0892779
0.0960121
0.0920698
0.0878051
0.088247
0.0895506
0.090915
0.0934629
0.0948164
0.198963
0.198892
0.198742
0.19854
0.198935
0.21372
0.216925
0.215144
0.214672
0.215538
0.214544
0.215209
0.20452
0.201887
0.200987
0.200934
0.201272
0.201465
0.201752
0.202607
0.203345
0.203591
0.203909
0.20365
0.203192
0.203393
0.203197
0.203848
0.205267
0.205498
0.205234
0.204474
0.203642
0.201701
0.199195
0.196477
0.193848
0.190947
0.187555
0.183784
0.179721
0.175466
0.171204
0.166843
0.16236
0.157743
0.152769
0.147603
0.1436
0.140666
0.136285
0.130669
0.126518
0.12218
0.117931
0.114813
0.111876
0.109628
0.10781
0.105615
0.102977
0.100296
0.0976385
0.0949844
0.0925291
0.0904601
0.0888007
0.0874871
0.0864463
0.0856417
0.0850822
0.0848605
0.0862415
0.0868046
0.0865399
0.0863503
0.0835667
0.0790522
0.0789129
0.0788954
0.0789378
0.0795568
0.0822835
0.0825978
0.0830239
0.0835994
0.0826916
0.0818186
0.0824264
0.0830092
0.0836443
0.0842089
0.0850566
0.0858517
0.0870832
0.0879251
0.0889965
0.0908174
0.0929644
0.0945515
0.198584
0.198426
0.198212
0.197977
0.197589
0.20052
0.211706
0.213937
0.21377
0.213999
0.21576
0.21619
0.216869
0.216607
0.212018
0.202146
0.201037
0.200968
0.201744
0.202202
0.202217
0.202553
0.203474
0.203929
0.20408
0.203372
0.202952
0.202998
0.202707
0.202872
0.20273
0.202766
0.202186
0.201114
0.19979
0.197558
0.19493
0.191058
0.187245
0.183794
0.18006
0.176108
0.172072
0.167933
0.163658
0.159231
0.154564
0.149791
0.145289
0.142981
0.138984
0.134778
0.130337
0.126568
0.122677
0.119158
0.11695
0.113779
0.1105
0.107692
0.104886
0.102282
0.0997673
0.097259
0.0949171
0.0928634
0.0911196
0.0896469
0.0884055
0.087372
0.0865527
0.0860763
0.0870746
0.0884521
0.0879203
0.0862627
0.0818625
0.0807553
0.0804421
0.0802279
0.080076
0.081387
0.0832938
0.083333
0.0833888
0.083184
0.0822941
0.0825588
0.0828626
0.0832273
0.0837445
0.0843837
0.0848715
0.085748
0.0866812
0.0874941
0.0889503
0.0914311
0.0922804
0.0931809
0.198215
0.197989
0.197712
0.19747
0.19732
0.197523
0.199083
0.20245
0.204919
0.204633
0.200845
0.201271
0.20624
0.217052
0.217772
0.216519
0.214011
0.20364
0.201965
0.201558
0.201961
0.202219
0.20214
0.202226
0.202509
0.202587
0.202209
0.202196
0.201851
0.201312
0.20067
0.200154
0.199593
0.19973
0.198534
0.196681
0.194582
0.191932
0.188493
0.184013
0.180123
0.176307
0.17258
0.168661
0.164569
0.160359
0.155987
0.151488
0.146905
0.142739
0.139006
0.134679
0.132393
0.129217
0.126177
0.122741
0.119631
0.117031
0.114083
0.111582
0.109236
0.105028
0.101768
0.0992871
0.0969859
0.0949274
0.0931288
0.0915366
0.0901212
0.0888424
0.087621
0.0863178
0.0897868
0.0904739
0.088869
0.0859146
0.0840089
0.082614
0.0819558
0.0815578
0.0813031
0.0816012
0.0836858
0.0840492
0.0834349
0.0834831
0.0832563
0.083272
0.0832483
0.0839779
0.0845775
0.0842002
0.0848182
0.0856613
0.0863278
0.0874591
0.0902402
0.0909736
0.0916616
0.090984
0.197865
0.197539
0.197134
0.196805
0.19673
0.197186
0.198223
0.198902
0.199352
0.199113
0.198543
0.198451
0.197594
0.196777
0.197929
0.20708
0.215052
0.21585
0.212548
0.203886
0.201527
0.201402
0.20191
0.201995
0.202002
0.201702
0.20162
0.201324
0.200938
0.200384
0.199695
0.198877
0.197832
0.196605
0.19611
0.195621
0.19355
0.191314
0.188653
0.185626
0.181707
0.176761
0.172881
0.169071
0.165137
0.161161
0.157053
0.152829
0.148566
0.144393
0.140378
0.136324
0.132553
0.12921
0.125612
0.124151
0.121622
0.118773
0.116126
0.113362
0.110871
0.108307
0.105189
0.101303
0.0987904
0.0967296
0.0949172
0.0932482
0.0917234
0.0903094
0.088922
0.0875961
0.0930334
0.0920149
0.0893208
0.0878041
0.0854593
0.083777
0.0830744
0.082646
0.0824311
0.0825954
0.083359
0.084744
0.0843135
0.0834255
0.0839242
0.0839314
0.0847203
0.0866055
0.0871843
0.0864873
0.0849634
0.0857366
0.0861265
0.0890356
0.0899224
0.0905491
0.0900903
0.08992
0.197573
0.197087
0.196391
0.19595
0.195765
0.196276
0.197078
0.198175
0.198917
0.198835
0.198216
0.197618
0.196795
0.196129
0.196089
0.196332
0.196963
0.202945
0.214163
0.215331
0.212076
0.203417
0.201678
0.201325
0.201355
0.201173
0.200805
0.20053
0.200004
0.199302
0.19845
0.197478
0.196494
0.195182
0.193675
0.192318
0.190993
0.189742
0.187768
0.185456
0.182427
0.179484
0.175657
0.170769
0.165635
0.161701
0.15781
0.153835
0.149808
0.145791
0.141864
0.137987
0.134246
0.130751
0.127313
0.124187
0.121499
0.119362
0.117832
0.115041
0.112483
0.110013
0.107539
0.10471
0.100604
0.0983164
0.0965322
0.0948207
0.0932531
0.0918137
0.0904697
0.0891542
0.0890858
0.0925872
0.0923176
0.0881847
0.0859103
0.0841489
0.0836793
0.0833151
0.0831051
0.0833694
0.0841779
0.0854293
0.0853657
0.0848718
0.0840149
0.0846346
0.0857043
0.0862297
0.0865806
0.0857907
0.0856144
0.0858667
0.0878402
0.0889074
0.0894968
0.089734
0.0885512
0.0892827
0.197271
0.198698
0.19839
0.195397
0.194273
0.195967
0.197324
0.197406
0.198766
0.198854
0.197901
0.196913
0.195962
0.195405
0.195245
0.195289
0.195398
0.19572
0.197177
0.207201
0.213035
0.214131
0.211893
0.205625
0.202242
0.200577
0.199772
0.199568
0.19883
0.198091
0.197225
0.196164
0.195063
0.193726
0.192353
0.190729
0.188852
0.186751
0.184793
0.182249
0.181205
0.178626
0.175865
0.172394
0.168785
0.162888
0.158333
0.15461
0.15075
0.146848
0.143031
0.139308
0.135695
0.132245
0.128912
0.125763
0.122865
0.120058
0.117387
0.115602
0.113961
0.111556
0.109242
0.107208
0.104694
0.100053
0.0980407
0.0962752
0.0946772
0.0932305
0.0919516
0.0909081
0.0904079
0.0909784
0.0944458
0.0948292
0.0942571
0.0861524
0.0843603
0.0838378
0.083335
0.0842584
0.0868685
0.0861504
0.0848408
0.0843383
0.0861553
0.0859456
0.0860408
0.086136
0.0860956
0.0846811
0.0850336
0.0866081
0.087994
0.0884443
0.0888887
0.0876392
0.088357
0.0887133
0.196626
0.196255
0.195306
0.194819
0.209178
0.223866
0.222399
0.21797
0.206344
0.202447
0.198646
0.195972
0.19478
0.194315
0.194235
0.194305
0.194423
0.194657
0.194962
0.195971
0.1983
0.207666
0.213287
0.213669
0.212297
0.207487
0.201709
0.198567
0.197678
0.196972
0.195742
0.194393
0.193472
0.192196
0.190944
0.189435
0.187654
0.185583
0.183273
0.180693
0.17815
0.175788
0.172694
0.171721
0.168922
0.165096
0.160708
0.155476
0.151446
0.147597
0.143916
0.14034
0.136844
0.133459
0.130194
0.127075
0.124123
0.121273
0.118483
0.115699
0.114536
0.112974
0.110672
0.108616
0.103986
0.101618
0.0994787
0.0976033
0.0959473
0.0944451
0.0930793
0.0918696
0.0909438
0.0915966
0.0966981
0.0949317
0.0879373
0.0863626
0.0853309
0.08452
0.0843457
0.0883829
0.0877654
0.0844015
0.084642
0.0846272
0.0859065
0.0865028
0.0863987
0.0861399
0.0843647
0.0850117
0.0847609
0.0876646
0.0877701
0.0879281
0.0871406
0.0880005
0.0880775
0.0903606
0.196018
0.195485
0.194653
0.193947
0.218597
0.223305
0.221521
0.219599
0.218491
0.219537
0.217049
0.198424
0.193439
0.192841
0.19308
0.193266
0.193426
0.193639
0.193915
0.194314
0.194517
0.195229
0.196085
0.202992
0.213291
0.21396
0.211649
0.208301
0.200909
0.195982
0.19425
0.19237
0.19164
0.19065
0.189519
0.188119
0.186458
0.184472
0.182229
0.179796
0.177222
0.174517
0.171576
0.168632
0.16557
0.164464
0.16101
0.157432
0.154015
0.148958
0.14449
0.141093
0.137708
0.134403
0.131212
0.128137
0.125185
0.122333
0.119574
0.116907
0.11436
0.111986
0.110289
0.109669
0.105538
0.102957
0.100675
0.0987446
0.0970846
0.0955262
0.0940713
0.0926801
0.0912185
0.0917197
0.0912542
0.0888799
0.0889611
0.0873435
0.0859624
0.0851195
0.0845395
0.0854084
0.0844988
0.0844781
0.0843936
0.0841426
0.0838436
0.0868797
0.0860651
0.083986
0.0842175
0.0843159
0.0859395
0.0876675
0.0876872
0.0876362
0.0870469
0.0874348
0.0873042
0.0930538
0.195371
0.194562
0.193895
0.19321
0.205701
0.219914
0.220016
0.219244
0.218911
0.219985
0.221683
0.224029
0.194697
0.19122
0.191918
0.192236
0.192407
0.192592
0.192845
0.193149
0.193341
0.193467
0.193225
0.193355
0.194011
0.195571
0.208328
0.210145
0.208617
0.206718
0.199952
0.190806
0.190256
0.188967
0.188177
0.186843
0.185203
0.183308
0.181098
0.178772
0.17631
0.173699
0.170919
0.16807
0.16504
0.162445
0.160854
0.157579
0.154264
0.150991
0.146591
0.141726
0.138338
0.13511
0.131997
0.128976
0.126056
0.123231
0.120502
0.117876
0.115396
0.113182
0.111522
0.108787
0.107967
0.106739
0.105378
0.100578
0.0980676
0.0965017
0.0950769
0.0937355
0.0924876
0.0915186
0.0919145
0.0907143
0.0898321
0.0895011
0.0871113
0.085518
0.0853466
0.0851989
0.0850564
0.0846138
0.0843586
0.0840942
0.0837531
0.0834849
0.0835045
0.083713
0.0839045
0.0839451
0.0869208
0.0877132
0.087706
0.0876872
0.086522
0.0869549
0.086728
0.092172
0.194163
0.193544
0.193342
0.193134
0.193632
0.205978
0.218697
0.217662
0.217368
0.219201
0.221476
0.225718
0.206799
0.19038
0.191031
0.191317
0.191419
0.191515
0.19176
0.192093
0.192317
0.192429
0.192326
0.192281
0.192111
0.192042
0.193343
0.193573
0.205523
0.20706
0.20525
0.20529
0.200454
0.190592
0.187484
0.185573
0.184037
0.182114
0.179839
0.177648
0.175311
0.172798
0.170173
0.167463
0.164608
0.161682
0.159712
0.157454
0.154319
0.151184
0.147533
0.142328
0.138745
0.135615
0.13258
0.12962
0.126746
0.123956
0.121249
0.118628
0.11611
0.11373
0.112112
0.111017
0.109108
0.107405
0.103925
0.100781
0.0990504
0.0974152
0.0959111
0.0945223
0.093284
0.0922892
0.0917451
0.0922412
0.0920932
0.0919318
0.0914147
0.0863296
0.0860927
0.0857607
0.0852155
0.0857026
0.0857148
0.084182
0.0838538
0.0836508
0.0835927
0.083665
0.0838258
0.0840117
0.0852476
0.0872575
0.0876453
0.0880326
0.088814
0.0855959
0.0864051
0.0871007
0.193432
0.192871
0.19263
0.192754
0.193034
0.193565
0.197309
0.201833
0.206302
0.215725
0.218003
0.199108
0.188654
0.189831
0.190392
0.190461
0.190381
0.190333
0.190633
0.191087
0.19138
0.191519
0.191457
0.191376
0.191199
0.191022
0.190971
0.190301
0.190783
0.190143
0.199657
0.201359
0.201003
0.200325
0.197375
0.19062
0.184023
0.180971
0.178329
0.176461
0.174241
0.171811
0.169336
0.166772
0.164076
0.161329
0.158618
0.156677
0.154179
0.151276
0.148477
0.144087
0.138796
0.135837
0.132936
0.130077
0.127273
0.124533
0.12186
0.119251
0.116687
0.115255
0.115377
0.112167
0.108559
0.106951
0.104449
0.102058
0.0999635
0.0982569
0.0966776
0.0951907
0.0937843
0.0925221
0.0945892
0.0939273
0.0929414
0.0923164
0.0912844
0.0869643
0.0864524
0.0859366
0.085958
0.0858527
0.085796
0.0851348
0.083963
0.0837724
0.0836064
0.0835752
0.0837289
0.0841765
0.0847059
0.0861427
0.0874353
0.087843
0.0885705
0.085065
0.0858482
0.086375
0.192648
0.191714
0.191515
0.191997
0.192419
0.192738
0.193135
0.193095
0.192035
0.190149
0.188849
0.188706
0.188687
0.189115
0.189484
0.191547
0.191526
0.188871
0.18947
0.19012
0.190509
0.190657
0.190604
0.19043
0.190193
0.189911
0.189648
0.189169
0.188796
0.188022
0.188325
0.189458
0.194511
0.19728
0.197235
0.195384
0.192958
0.188849
0.178343
0.17544
0.173101
0.17074
0.168426
0.166012
0.16343
0.1608
0.15839
0.156254
0.153923
0.151075
0.148468
0.146081
0.139041
0.135964
0.133164
0.130395
0.127662
0.124981
0.122362
0.119799
0.117269
0.115846
0.113594
0.111534
0.109813
0.107332
0.10492
0.102791
0.100588
0.0988611
0.0972942
0.0957807
0.0943149
0.0938882
0.0965742
0.0948972
0.0934366
0.0909907
0.0887805
0.0877924
0.087085
0.0867319
0.0862869
0.085972
0.085394
0.0843181
0.08409
0.0837679
0.0850832
0.0850845
0.0836421
0.0841559
0.0843378
0.0854475
0.0875297
0.0873408
0.0855848
0.0841624
0.0848399
0.0852387
0.205131
0.189538
0.190314
0.190725
0.19119
0.191796
0.191958
0.191807
0.190967
0.189678
0.188833
0.188442
0.188369
0.188537
0.188685
0.188558
0.189245
0.200006
0.197866
0.197093
0.194064
0.190658
0.189773
0.189492
0.189126
0.188734
0.188409
0.18805
0.187511
0.186999
0.187024
0.186194
0.184984
0.184462
0.186471
0.192504
0.193165
0.190429
0.189723
0.184583
0.173786
0.169494
0.167447
0.165185
0.162625
0.15986
0.157269
0.156132
0.153653
0.150475
0.146123
0.142036
0.138862
0.13609
0.133326
0.130601
0.127926
0.125307
0.122755
0.12029
0.117964
0.115993
0.113997
0.112287
0.110178
0.108532
0.107228
0.105693
0.10176
0.099489
0.0978963
0.0963515
0.0948138
0.0932604
0.0951804
0.0932767
0.0909251
0.0898409
0.0889521
0.088107
0.0876163
0.0870748
0.0864967
0.0854924
0.0849321
0.0845361
0.0842679
0.0851845
0.0865216
0.0864046
0.0842284
0.0843087
0.0836818
0.0869424
0.0871965
0.0853312
0.0837691
0.0837707
0.0840278
0.0841462
0.216768
0.188635
0.18944
0.190012
0.190401
0.19083
0.191074
0.190893
0.190249
0.189367
0.18864
0.188164
0.187976
0.187969
0.188018
0.188133
0.188013
0.200815
0.207711
0.204425
0.202844
0.200529
0.191825
0.188535
0.187985
0.18752
0.187038
0.186467
0.186203
0.185991
0.185023
0.184356
0.183306
0.181907
0.179958
0.178834
0.177664
0.187081
0.187142
0.184996
0.183221
0.171793
0.166606
0.164394
0.161811
0.158978
0.159692
0.156886
0.153421
0.149123
0.144949
0.141797
0.138826
0.136055
0.133345
0.130678
0.128061
0.125495
0.122986
0.120537
0.118154
0.116281
0.114993
0.11288
0.110851
0.10919
0.107403
0.104545
0.10165
0.100027
0.0984374
0.0969245
0.0954154
0.0939692
0.0927361
0.0917189
0.090889
0.0899789
0.089033
0.0885488
0.088372
0.0870804
0.0867446
0.0858112
0.0850921
0.0846203
0.0845817
0.0861536
0.0861334
0.0857987
0.0841041
0.0841028
0.0847186
0.0874075
0.0860694
0.0834629
0.0833387
0.0832468
0.0834058
0.0835492
0.192764
0.187465
0.188747
0.189189
0.189371
0.189877
0.190236
0.190086
0.189538
0.188867
0.18825
0.187753
0.187674
0.1883
0.187982
0.187849
0.188085
0.188986
0.202428
0.20242
0.201466
0.200917
0.200289
0.19159
0.186678
0.186229
0.185693
0.185085
0.184413
0.183887
0.183968
0.183081
0.1817
0.179873
0.178596
0.177132
0.175135
0.174059
0.174251
0.182011
0.18277
0.178252
0.167238
0.163584
0.16101
0.158083
0.155553
0.156455
0.152454
0.147046
0.144153
0.14133
0.138551
0.135866
0.133229
0.13063
0.128073
0.125562
0.123101
0.120694
0.118364
0.116665
0.115645
0.113255
0.111094
0.108324
0.106044
0.104069
0.102199
0.100515
0.0989039
0.0973541
0.0958811
0.0944829
0.0932187
0.0920978
0.0911238
0.0901288
0.089456
0.0893575
0.0885011
0.0875582
0.0866204
0.0856485
0.0850312
0.0844157
0.0859172
0.086373
0.0859572
0.0855051
0.084346
0.0830194
0.0821236
0.0837999
0.0827904
0.0827224
0.0825752
0.0824497
0.0827256
0.0828634
0.187058
0.187595
0.188294
0.188715
0.192709
0.193816
0.192253
0.189588
0.188785
0.188262
0.187695
0.187454
0.188128
0.188042
0.187867
0.187324
0.187498
0.187651
0.190924
0.199815
0.199782
0.199591
0.199561
0.199672
0.187573
0.184912
0.184305
0.183664
0.182954
0.182167
0.181283
0.180582
0.179815
0.178571
0.176981
0.175317
0.173754
0.17238
0.170573
0.168372
0.172385
0.176464
0.169556
0.164011
0.16031
0.157243
0.154537
0.151434
0.148483
0.145969
0.143459
0.140773
0.138139
0.135549
0.13299
0.130461
0.127967
0.125509
0.123092
0.120728
0.11851
0.117145
0.115442
0.11251
0.110567
0.108243
0.106288
0.104405
0.102584
0.100885
0.0992724
0.0977235
0.0962303
0.0948109
0.0935349
0.092348
0.0913651
0.0902562
0.0907817
0.0896991
0.0887338
0.0879134
0.0872401
0.0858806
0.0850044
0.084255
0.0863581
0.0863364
0.0857356
0.0850638
0.0827604
0.0822989
0.0819599
0.081764
0.0817982
0.0827511
0.0836817
0.0819594
0.0821927
0.081933
0.186878
0.187299
0.187924
0.188359
0.196058
0.198819
0.197551
0.195093
0.18815
0.187585
0.187075
0.187397
0.187617
0.187291
0.187133
0.187043
0.186528
0.186814
0.187127
0.190279
0.198057
0.198151
0.198412
0.198749
0.190654
0.183451
0.182834
0.182193
0.181458
0.180634
0.179716
0.178704
0.17759
0.17656
0.175467
0.173824
0.17217
0.170557
0.168663
0.166582
0.163952
0.162189
0.171652
0.170952
0.168805
0.16142
0.153406
0.150451
0.147481
0.145018
0.142592
0.140108
0.137602
0.135107
0.132631
0.130176
0.127748
0.125347
0.122955
0.120953
0.119852
0.117133
0.115355
0.112978
0.110679
0.10848
0.106457
0.104611
0.102837
0.101154
0.0995537
0.0980245
0.0965656
0.095864
0.0948169
0.0930445
0.0916935
0.0905084
0.0906442
0.0897332
0.0888516
0.0880449
0.0873742
0.0865091
0.0846847
0.0840887
0.0835353
0.0855541
0.0848708
0.0826435
0.0822804
0.0818491
0.0816234
0.0814869
0.0815609
0.0825327
0.0827122
0.0824576
0.0815563
0.0815356
0.186427
0.187162
0.187454
0.187817
0.189496
0.196318
0.196457
0.196026
0.188855
0.186809
0.186366
0.185993
0.186475
0.186383
0.186312
0.186312
0.186318
0.185556
0.185821
0.185956
0.189372
0.196573
0.19721
0.197937
0.192536
0.181823
0.18128
0.180686
0.179949
0.179105
0.17816
0.177113
0.17595
0.174641
0.173292
0.172235
0.170836
0.169276
0.167479
0.165074
0.163206
0.161557
0.166959
0.168931
0.167536
0.165653
0.162188
0.148734
0.145874
0.143881
0.141651
0.139326
0.136947
0.134553
0.132162
0.129786
0.127435
0.125116
0.122841
0.120843
0.11963
0.117391
0.115262
0.113608
0.112011
0.108419
0.106413
0.104665
0.102959
0.101315
0.099737
0.0982375
0.0971296
0.0962258
0.0949661
0.0938078
0.0924844
0.0908431
0.0902398
0.0893012
0.0888056
0.0879676
0.0871383
0.0853453
0.0844692
0.08391
0.0833707
0.0830737
0.0831012
0.0823217
0.0817743
0.0812564
0.0811258
0.0809822
0.0812303
0.0820237
0.0820697
0.0820599
0.0808152
0.0814061
0.185939
0.186809
0.187118
0.187176
0.187939
0.190896
0.195764
0.195313
0.188537
0.1858
0.185489
0.185271
0.185314
0.185328
0.185409
0.185362
0.185213
0.184449
0.184501
0.18452
0.184474
0.18923
0.196032
0.19844
0.191113
0.180254
0.17976
0.179196
0.178457
0.177598
0.176633
0.175567
0.174397
0.173118
0.171732
0.170327
0.169395
0.168
0.165984
0.163786
0.162157
0.16061
0.163104
0.167347
0.166406
0.165023
0.164134
0.153151
0.144798
0.142823
0.140718
0.138496
0.136214
0.13391
0.131601
0.129301
0.127025
0.124789
0.122629
0.120812
0.119246
0.117185
0.115301
0.113493
0.110502
0.108097
0.106408
0.104696
0.103017
0.10139
0.0998215
0.0983954
0.097689
0.0963202
0.0949706
0.0936493
0.0916499
0.0907939
0.0901207
0.0889626
0.0887721
0.0875106
0.0859311
0.0849817
0.084277
0.0836697
0.083139
0.0828167
0.0823785
0.0825843
0.0824144
0.0808231
0.0805884
0.0804673
0.0815591
0.0815107
0.0814361
0.0813797
0.0798517
0.0799563
0.185287
0.185622
0.186433
0.186495
0.187134
0.188765
0.194599
0.195446
0.185599
0.184554
0.184439
0.184331
0.184381
0.18434
0.184458
0.184271
0.183679
0.183314
0.183209
0.183083
0.182962
0.183051
0.19021
0.200373
0.184606
0.178923
0.178444
0.177788
0.177008
0.176123
0.175141
0.174071
0.172921
0.171635
0.170286
0.168824
0.167386
0.165848
0.164183
0.162566
0.161016
0.159467
0.159638
0.165839
0.165467
0.163667
0.162063
0.148286
0.143864
0.141896
0.139794
0.13762
0.135418
0.133197
0.130963
0.12873
0.126512
0.124326
0.122251
0.120765
0.118891
0.116743
0.114334
0.111988
0.110011
0.108137
0.106384
0.104673
0.103005
0.101388
0.0998215
0.0986137
0.0978611
0.0963506
0.0946432
0.0929011
0.0916362
0.0904639
0.0902737
0.0895708
0.0881173
0.0866178
0.0856222
0.0847749
0.0840053
0.0833102
0.0826564
0.0821851
0.0824437
0.0820922
0.0811317
0.0805454
0.0798977
0.0814194
0.081305
0.0810121
0.080785
0.0803137
0.0788488
0.078803
0.184608
0.18475
0.185081
0.185537
0.185889
0.186668
0.194319
0.195202
0.184325
0.183504
0.183408
0.183203
0.183633
0.183634
0.183471
0.183192
0.182472
0.182121
0.181876
0.181611
0.181302
0.180939
0.182421
0.204517
0.180138
0.177997
0.177175
0.176414
0.175585
0.174673
0.173682
0.172634
0.171485
0.170228
0.168882
0.167454
0.165984
0.164468
0.162943
0.161391
0.159872
0.158408
0.157076
0.161546
0.165451
0.161575
0.151796
0.14517
0.14304
0.140985
0.138914
0.136791
0.134623
0.132441
0.13027
0.128095
0.125912
0.123699
0.122712
0.120779
0.118577
0.116252
0.114173
0.111913
0.109925
0.108059
0.106287
0.10458
0.102924
0.101318
0.0997759
0.0987544
0.0978484
0.0956605
0.094097
0.0927642
0.0914738
0.0908373
0.090832
0.0895665
0.0875113
0.0862852
0.0853471
0.0844743
0.083664
0.0829031
0.082158
0.0823109
0.0821792
0.0814752
0.0804542
0.0801699
0.0794498
0.0812117
0.0808
0.0803905
0.0799835
0.0785592
0.0780015
0.0778056
0.183854
0.183951
0.184127
0.184356
0.184538
0.184461
0.1928
0.195143
0.183793
0.182598
0.182449
0.182209
0.183214
0.182758
0.182485
0.182248
0.181355
0.180844
0.180541
0.180186
0.17978
0.17932
0.180985
0.201445
0.180609
0.176813
0.175808
0.174988
0.174144
0.173233
0.172247
0.171188
0.17007
0.168839
0.167526
0.166115
0.16469
0.163203
0.161689
0.160174
0.15867
0.157237
0.155931
0.158899
0.166342
0.152808
0.146894
0.144258
0.141996
0.140087
0.138682
0.136664
0.134282
0.13173
0.129544
0.127437
0.125317
0.12328
0.122528
0.120336
0.118214
0.116089
0.113702
0.111565
0.109663
0.107849
0.106104
0.104416
0.102775
0.101171
0.0996698
0.0988171
0.0972021
0.0953454
0.0939393
0.0925711
0.0912183
0.090294
0.0901146
0.0882183
0.0869016
0.0859314
0.0849939
0.0841078
0.0832749
0.0824851
0.0817183
0.0821277
0.0816491
0.0809854
0.0801995
0.0794228
0.078859
0.0788777
0.0802787
0.0796942
0.077998
0.0776104
0.0773004
0.07732
0.183044
0.183082
0.183156
0.183443
0.183331
0.183098
0.18337
0.194222
0.183432
0.181743
0.181485
0.18127
0.181575
0.181665
0.181442
0.181166
0.180117
0.179591
0.179229
0.178786
0.178259
0.177638
0.179692
0.196001
0.183707
0.175266
0.1743
0.173522
0.172702
0.171811
0.170839
0.169785
0.168662
0.16745
0.166151
0.164794
0.163376
0.161959
0.160485
0.15899
0.157422
0.155977
0.15465
0.158573
0.162739
0.147418
0.145176
0.143076
0.140988
0.139752
0.137703
0.135679
0.133621
0.131456
0.128835
0.126755
0.124727
0.122716
0.12111
0.119682
0.117767
0.115866
0.113712
0.111104
0.109299
0.107548
0.105847
0.104189
0.10257
0.100985
0.099556
0.0988004
0.0969148
0.0951375
0.0937381
0.0923647
0.0910503
0.089867
0.0886932
0.0875686
0.0865339
0.0855401
0.0845865
0.0836839
0.0828366
0.0820454
0.0813188
0.0812045
0.081027
0.0804609
0.0797632
0.0784755
0.0781738
0.0774326
0.0799856
0.0774221
0.0768069
0.0767277
0.0765631
0.0794435
0.182202
0.182189
0.182222
0.182456
0.182376
0.182252
0.182278
0.183594
0.184807
0.180683
0.180415
0.180393
0.180315
0.180552
0.18043
0.179691
0.178761
0.178382
0.177952
0.177426
0.176802
0.176089
0.178842
0.196083
0.182942
0.173548
0.172799
0.172093
0.171301
0.170426
0.169466
0.168424
0.167304
0.166105
0.164834
0.163492
0.16215
0.160699
0.159205
0.157681
0.156122
0.154656
0.153533
0.159006
0.160939
0.145181
0.14345
0.141808
0.140064
0.138738
0.13667
0.134702
0.132738
0.130783
0.128225
0.126046
0.124082
0.122151
0.120422
0.119103
0.117236
0.115356
0.113087
0.110684
0.108923
0.107207
0.105535
0.103905
0.102315
0.100775
0.099511
0.0985852
0.0964264
0.094866
0.0934797
0.0921104
0.0907511
0.0895316
0.0883576
0.0871969
0.0861177
0.0850917
0.0841141
0.0831904
0.0823248
0.0815218
0.0807939
0.0804393
0.0804757
0.0797552
0.0785254
0.0776501
0.0772377
0.0766255
0.0786595
0.0760588
0.0760477
0.0758278
0.0764413
0.0799808
0.181338
0.181281
0.181264
0.181465
0.181205
0.181206
0.181396
0.183253
0.185345
0.179643
0.179374
0.179393
0.179246
0.179593
0.179454
0.178256
0.177613
0.177207
0.176719
0.176135
0.175444
0.174687
0.177696
0.191316
0.175297
0.171837
0.17139
0.170721
0.169942
0.169075
0.168124
0.167095
0.165984
0.164799
0.16354
0.162211
0.160879
0.159432
0.157914
0.156322
0.154718
0.153076
0.151799
0.159979
0.159055
0.14438
0.142208
0.140557
0.138691
0.13718
0.135573
0.133717
0.131807
0.129889
0.127438
0.125314
0.123384
0.12146
0.119839
0.118565
0.116682
0.114802
0.112428
0.110225
0.108489
0.106808
0.105167
0.103564
0.101995
0.100531
0.0994502
0.0976315
0.0960162
0.0945983
0.0931844
0.0917599
0.0911984
0.0894962
0.0879801
0.0867393
0.0856284
0.0845707
0.083568
0.0826205
0.0817294
0.0808991
0.0801532
0.0800763
0.0796879
0.0789579
0.0773747
0.0767856
0.0761449
0.0759428
0.0772349
0.0750857
0.0751526
0.0748005
0.0764689
0.0795231
0.180455
0.180356
0.18026
0.180449
0.180085
0.179943
0.179641
0.184942
0.184235
0.17868
0.178473
0.178227
0.178657
0.178722
0.178315
0.177184
0.176531
0.176068
0.175536
0.174917
0.174173
0.173186
0.178213
0.17709
0.171835
0.170652
0.170083
0.169399
0.168621
0.167758
0.166814
0.165798
0.164695
0.163513
0.162266
0.160947
0.159588
0.158179
0.156611
0.15496
0.153251
0.151377
0.149602
0.160557
0.15274
0.143324
0.141363
0.139577
0.137775
0.136068
0.134555
0.13275
0.130878
0.128937
0.126538
0.124565
0.122665
0.120781
0.119064
0.117908
0.116102
0.114277
0.112087
0.109648
0.107966
0.106335
0.104741
0.103175
0.101692
0.100405
0.0988724
0.0972228
0.0957444
0.0943161
0.0929016
0.0914874
0.0903929
0.0918034
0.0884349
0.0862914
0.0850898
0.0839919
0.0829555
0.0819806
0.081059
0.080183
0.0796559
0.0796405
0.0789325
0.0776248
0.0763878
0.0757974
0.0751489
0.0751356
0.0756129
0.0743504
0.0742156
0.0737547
0.0743946
0.0786678
0.179553
0.179423
0.179279
0.179462
0.179006
0.178766
0.178336
0.184886
0.179033
0.177686
0.177467
0.177204
0.177763
0.177754
0.177147
0.175965
0.175432
0.174933
0.174385
0.173776
0.173094
0.172267
0.174857
0.174247
0.170399
0.169458
0.168826
0.168125
0.167341
0.166476
0.165532
0.164519
0.163423
0.162247
0.161006
0.159693
0.158345
0.156925
0.155308
0.153662
0.151884
0.149893
0.147946
0.161732
0.147541
0.142491
0.140452
0.138581
0.13676
0.135074
0.133613
0.131806
0.129964
0.128003
0.125696
0.123776
0.121905
0.120056
0.11834
0.117217
0.115452
0.113566
0.111111
0.109094
0.107408
0.105818
0.104255
0.10275
0.101407
0.100062
0.0984267
0.0968612
0.0954222
0.0940053
0.0926063
0.0912197
0.0898847
0.0907226
0.0896862
0.0861198
0.0844575
0.0833279
0.0822651
0.081268
0.0803202
0.0793959
0.0791676
0.0789865
0.0778839
0.0763498
0.0755227
0.0748602
0.0742128
0.0740039
0.0744755
0.0739473
0.0729004
0.0726559
0.0723359
0.0747421
0.178648
0.1785
0.178334
0.178509
0.178002
0.177743
0.177387
0.178651
0.177485
0.176726
0.176501
0.176244
0.176616
0.176742
0.175761
0.174783
0.174278
0.173755
0.173192
0.1726
0.172023
0.171618
0.173822
0.173903
0.16897
0.168232
0.16763
0.166918
0.166116
0.165234
0.164278
0.163254
0.162156
0.160978
0.159736
0.15842
0.157093
0.155613
0.154031
0.152383
0.150607
0.148657
0.147269
0.158957
0.144667
0.141402
0.13942
0.13756
0.135748
0.134156
0.132699
0.130893
0.129074
0.127092
0.124842
0.122971
0.12112
0.119279
0.117742
0.116607
0.114873
0.112319
0.110162
0.108465
0.107509
0.105897
0.103755
0.102316
0.100939
0.0995616
0.0979206
0.0964753
0.0950588
0.0936569
0.0922743
0.0909153
0.0895965
0.0887111
0.0940516
0.0862775
0.0837392
0.0825228
0.0814379
0.0804193
0.0794489
0.0785244
0.0785424
0.078005
0.0763955
0.0752401
0.0744686
0.0737725
0.0731361
0.0728804
0.0731879
0.0728199
0.0724269
0.0714038
0.0712601
0.0715502
87.2036
86.0873
85.028
84.0265
83.0828
82.1969
81.3687
80.598
79.885
79.2298
78.6327
78.0944
77.615
77.1951
76.8348
76.5346
76.294
76.1122
75.9879
75.9196
75.9057
75.9427
76.0283
76.1597
76.3335
76.5466
76.7957
77.0776
77.3892
77.7279
78.0908
78.4757
78.8805
79.3033
79.7425
80.1968
80.6653
81.1472
81.6421
82.1499
82.6709
83.2057
83.7551
84.3204
84.9031
85.5049
86.1276
86.7732
87.4436
88.1406
88.8657
89.6202
90.4051
91.2206
92.0674
92.945
93.8526
94.7896
95.7541
96.7447
97.7597
98.7969
99.8543
100.93
102.021
103.124
104.238
105.359
106.484
107.609
108.732
109.849
110.956
112.049
113.126
114.182
115.215
116.222
117.199
118.145
119.057
119.932
120.769
121.567
122.323
123.037
123.707
124.332
124.912
125.446
125.933
126.372
126.763
127.106
127.399
127.644
127.84
127.985
128.081
128.127
87.1971
86.0801
85.0198
84.0175
83.0731
82.1865
81.3577
80.5864
79.8727
79.2168
78.6191
78.08
77.6
77.1795
76.8185
76.518
76.2771
76.095
75.9706
75.9022
75.8877
75.9251
76.0113
76.1431
76.3175
76.5312
76.7809
77.0634
77.3757
77.7149
78.0784
78.4638
78.869
79.2921
79.7317
80.1863
80.6551
81.1372
81.6323
82.1403
82.6614
83.1963
83.7457
84.3111
84.8938
85.4956
86.1183
86.764
87.4345
88.1316
88.8569
89.6117
90.3969
91.2132
92.0605
92.9385
93.8465
94.7841
95.7491
96.7401
97.7556
98.7931
99.851
100.927
102.018
103.122
104.236
105.357
106.483
107.609
108.732
109.849
110.956
112.05
113.127
114.184
115.217
116.224
117.202
118.148
119.06
119.936
120.773
121.571
122.327
123.041
123.711
124.337
124.917
125.45
125.937
126.376
126.767
127.11
127.404
127.649
127.844
127.99
128.085
128.13
87.1601
86.0437
84.9839
83.9822
83.0385
82.1527
81.3244
80.5537
79.8403
79.1846
78.5868
78.0475
77.5672
77.1464
76.7859
76.4848
76.2436
76.0614
75.9372
75.8693
75.8555
75.8937
75.9808
76.1139
76.2896
76.5046
76.7556
77.0395
77.353
77.6934
78.0579
78.4443
78.8504
79.2744
79.7146
80.1699
80.6392
81.1217
81.6171
82.1254
82.6466
83.1815
83.7309
84.2962
84.8787
85.4803
86.1028
86.7483
87.4187
88.1158
88.8412
89.5962
90.3818
91.1985
92.0464
92.9252
93.8344
94.7722
95.7381
96.7301
97.7467
98.7851
99.844
100.921
102.013
103.118
104.233
105.356
106.482
107.609
108.734
109.852
110.96
112.055
113.134
114.191
115.226
116.234
117.212
118.159
119.072
119.948
120.786
121.584
122.341
123.055
123.726
124.351
124.931
125.465
125.952
126.391
126.783
127.125
127.419
127.664
127.859
128.005
128.1
128.146
87.1004
85.985
84.9265
83.9264
82.9842
82.0997
81.2727
80.5029
79.7902
79.1348
78.537
77.9973
77.5166
77.0953
76.734
76.4326
76.1911
76.0091
75.8853
75.8181
75.8055
75.845
75.9338
76.0687
76.2464
76.4635
76.7166
77.0024
77.3179
77.66
78.0262
78.4141
78.8216
79.2468
79.6881
80.1443
80.6143
81.0975
81.5935
82.102
82.6235
83.1584
83.7077
84.2727
84.8549
85.4561
86.0782
86.7233
87.3934
88.0903
88.8157
89.5709
90.3569
91.1742
92.023
92.9028
93.8131
94.7524
95.7197
96.7132
97.731
98.7717
99.8324
100.911
102.005
103.112
104.229
105.354
106.482
107.611
108.738
109.858
110.968
112.065
113.145
114.205
115.241
116.25
117.23
118.178
119.092
119.969
120.808
121.607
122.365
123.08
123.751
124.377
124.957
125.492
125.979
126.418
126.81
127.152
127.446
127.691
127.887
128.032
128.128
128.175
87.0262
85.9118
84.8548
83.8563
82.9157
82.0327
81.2069
80.4379
79.7257
79.0703
78.4722
77.9318
77.4502
77.0279
76.6657
76.3636
76.1218
75.9398
75.8164
75.7502
75.739
75.7804
75.8713
76.0086
76.1888
76.4085
76.6643
76.9527
77.2706
77.6151
77.9834
78.3733
78.7825
79.2093
79.652
80.1094
80.5805
81.0645
81.561
82.07
82.5916
83.1265
83.6757
84.2403
84.822
85.4226
86.0442
86.6887
87.3584
88.055
88.7804
89.5359
90.3224
91.1406
91.9905
92.8718
93.7837
94.725
95.6944
96.6901
97.7104
98.7533
99.8164
100.897
101.994
103.104
104.224
105.351
106.482
107.614
108.743
109.866
110.98
112.079
113.162
114.224
115.262
116.274
117.256
118.206
119.121
120
120.84
121.64
122.399
123.115
123.787
124.414
124.995
125.529
126.017
126.457
126.849
127.192
127.486
127.731
127.926
128.072
128.168
128.215
86.9379
85.8245
84.769
83.7722
82.8332
81.9516
81.1268
80.3585
79.6465
78.9908
78.3919
77.8505
77.3676
76.944
76.5805
76.2775
76.0352
75.8531
75.7304
75.6653
75.6558
75.6994
75.7929
75.9331
76.1165
76.3395
76.5985
76.8901
77.2111
77.5584
77.9294
78.3217
78.7331
79.1618
79.6062
80.0651
80.5374
81.0225
81.5198
82.0292
82.5511
83.086
83.6348
84.199
84.78
85.3799
86.0007
86.6446
87.3137
88.01
88.7354
89.4912
90.2784
91.0978
91.9492
92.8323
93.7463
94.6901
95.6621
96.6606
97.6838
98.7297
99.7959
100.88
101.98
103.093
104.216
105.347
106.482
107.617
108.75
109.877
110.994
112.097
113.183
114.248
115.29
116.304
117.289
118.241
119.159
120.04
120.882
121.684
122.444
123.161
123.834
124.461
125.043
125.579
126.067
126.507
126.9
127.243
127.538
127.783
127.979
128.125
128.221
128.268
86.8348
85.7227
84.6687
83.6736
82.7363
81.8562
81.0325
80.2647
79.5526
78.8964
78.2964
77.7535
77.2688
76.8434
76.4783
76.1741
75.9311
75.749
75.6269
75.5631
75.5557
75.6019
75.6986
75.8423
76.0295
76.2564
76.5193
76.8147
77.1393
77.4901
77.8642
78.2593
78.6733
79.1043
79.5508
80.0115
80.4853
80.9715
81.4697
81.9798
82.5019
83.0367
83.5852
84.1488
84.729
85.328
85.9478
86.5908
87.2593
87.9552
88.6806
89.4368
90.225
91.0456
91.8989
92.7843
93.701
94.6476
95.6228
96.6247
97.6514
98.7009
99.7708
100.859
101.963
103.08
104.207
105.342
106.481
107.621
108.759
109.89
111.011
112.119
113.209
114.279
115.324
116.342
117.33
118.285
119.205
120.089
120.933
121.737
122.499
123.217
123.892
124.521
125.104
125.64
126.129
126.57
126.963
127.307
127.601
127.847
128.043
128.189
128.286
128.333
86.7163
85.6056
84.5534
83.5603
82.6249
81.7464
80.9238
80.1564
79.4441
78.787
78.1855
77.6407
77.1538
76.7262
76.3591
76.0533
75.8094
75.6271
75.5057
75.4435
75.4384
75.4877
75.5881
75.736
75.9276
76.159
76.4265
76.7264
77.0553
77.41
77.7878
78.1863
78.6033
79.0369
79.4858
79.9485
80.424
80.9117
81.4109
81.9216
82.4441
82.9788
83.5269
84.0896
84.6689
85.2668
85.8855
86.5274
87.195
87.8906
88.6159
89.3726
90.1619
90.9842
91.8397
92.7278
93.6475
94.5977
95.5766
96.5824
97.6132
98.6668
99.741
100.834
101.942
103.064
104.196
105.336
106.48
107.626
108.768
109.905
111.032
112.145
113.24
114.314
115.364
116.386
117.378
118.337
119.261
120.147
120.994
121.8
122.564
123.285
123.961
124.591
125.175
125.713
126.203
126.644
127.038
127.382
127.678
127.924
128.12
128.267
128.363
128.411
86.5818
85.4729
84.4229
83.432
82.4988
81.622
80.8006
80.0337
79.3211
78.6627
78.0593
77.5121
77.0225
76.5921
76.2225
75.9149
75.6698
75.4873
75.3666
75.3061
75.3038
75.3566
75.4613
75.6139
75.8107
76.0474
76.3202
76.6252
76.959
77.3182
77.7002
78.1025
78.5229
78.9596
79.4112
79.8762
80.3537
80.8429
81.3433
81.8548
82.3776
82.9122
83.4597
84.0216
84.5997
85.1962
85.8135
86.4542
87.1209
87.8158
88.5412
89.2985
90.089
90.9133
91.7714
92.6626
93.586
94.5402
95.5234
96.5338
97.5692
98.6276
99.7067
100.804
101.918
103.045
104.183
105.328
106.479
107.63
108.779
109.922
111.055
112.174
113.275
114.355
115.41
116.438
117.434
118.397
119.325
120.215
121.065
121.874
122.64
123.363
124.041
124.673
125.259
125.797
126.288
126.731
127.125
127.47
127.766
128.013
128.209
128.356
128.453
128.501
86.431
85.3243
84.2768
83.2887
82.3579
81.4832
80.6631
79.8966
79.1834
78.5236
77.9179
77.3677
76.8748
76.4412
76.0685
75.7585
75.512
75.3291
75.2092
75.1508
75.1515
75.2084
75.3179
75.476
75.6787
75.9215
76.2003
76.5111
76.8504
77.2148
77.6015
78.0081
78.4323
78.8725
79.327
79.7946
80.2743
80.7653
81.2671
81.7794
82.3024
82.8369
83.3837
83.9445
84.5212
85.1161
85.7318
86.371
87.0365
87.7308
88.4561
89.2142
90.0062
90.8327
91.6938
92.5887
93.5163
94.4751
95.4632
96.4787
97.5194
98.5832
99.6677
100.771
101.89
103.023
104.167
105.319
106.476
107.635
108.791
109.941
111.081
112.207
113.315
114.402
115.463
116.496
117.498
118.466
119.398
120.292
121.145
121.957
122.727
123.452
124.132
124.766
125.353
125.894
126.386
126.83
127.225
127.571
127.867
128.114
128.311
128.458
128.555
128.603
86.2635
85.1595
84.1151
83.1301
82.2023
81.3299
80.5113
79.7453
79.0315
78.3698
77.7614
77.2076
76.7108
76.2731
75.8969
75.584
75.3357
75.1523
75.0332
74.977
74.9812
75.0427
75.1577
75.3221
75.5314
75.781
76.0667
76.3841
76.7296
77.0998
77.4917
77.903
78.3315
78.7754
79.2333
79.7038
80.186
80.6789
81.1821
81.6953
82.2187
82.7529
83.2989
83.8584
84.4334
85.0265
85.6402
86.2777
86.9418
87.6353
88.3605
89.1194
89.9131
90.7422
91.6067
92.5058
93.4382
94.4022
95.396
96.4172
97.4638
98.5335
99.6241
100.733
101.859
102.999
104.15
105.309
106.474
107.64
108.804
109.962
111.111
112.245
113.36
114.454
115.522
116.562
117.57
118.543
119.48
120.378
121.236
122.052
122.824
123.552
124.234
124.871
125.46
126.002
126.495
126.94
127.336
127.683
127.98
128.228
128.425
128.573
128.67
128.718
86.079
84.9781
83.9375
82.9563
82.0319
81.1622
80.3453
79.5799
78.8652
78.2015
77.5897
77.0318
76.5303
76.0879
75.7074
75.3911
75.1406
74.9565
74.8382
74.7844
74.7925
74.8592
74.9805
75.1519
75.3687
75.6261
75.9194
76.2442
76.5966
76.9731
77.3709
77.7874
78.2205
78.6686
79.1301
79.6038
80.0886
80.5837
81.0885
81.6027
82.1264
82.6602
83.2053
83.7633
84.3363
84.9271
85.5386
86.1739
86.8364
87.5289
88.2541
89.0138
89.8094
90.6416
91.51
92.4138
93.3517
94.3216
95.3216
96.3492
97.4023
98.4786
99.5758
100.692
101.824
102.971
104.13
105.297
106.47
107.645
108.818
109.986
111.143
112.286
113.41
114.512
115.588
116.635
117.649
118.629
119.571
120.474
121.337
122.156
122.932
123.663
124.348
124.987
125.578
126.122
126.617
127.063
127.46
127.808
128.106
128.354
128.552
128.7
128.797
128.845
85.8768
84.7799
83.7436
82.7669
81.8465
80.9801
80.1653
79.4006
78.685
78.0188
77.4032
76.8403
76.3333
75.8853
75.4997
75.1794
74.9263
74.7412
74.6238
74.5726
74.585
74.6576
74.7859
74.9652
75.1905
75.4565
75.7583
76.0913
76.4514
76.835
77.2391
77.6613
78.0995
78.552
79.0175
79.4946
79.9823
80.4798
80.9863
81.5015
82.0256
82.559
83.1029
83.659
84.2297
84.8178
85.4266
86.0595
86.72
87.4114
88.1363
88.8971
89.6949
90.5304
91.4033
92.3125
93.2565
94.2331
95.24
96.2748
97.335
98.4184
99.5228
100.646
101.786
102.941
104.108
105.284
106.466
107.65
108.833
110.011
111.178
112.331
113.465
114.576
115.66
116.715
117.737
118.723
119.672
120.58
121.447
122.271
123.051
123.786
124.474
125.115
125.708
126.254
126.75
127.198
127.596
127.945
128.244
128.493
128.691
128.839
128.937
128.985
85.6566
84.5644
83.5333
82.5618
81.6463
80.7837
79.9714
79.2075
78.4909
77.8219
77.2018
76.6332
76.1197
75.6652
75.2736
74.9485
74.6922
74.5058
74.3893
74.341
74.3583
74.4373
74.5735
74.7617
74.9964
75.2721
75.5835
75.9255
76.2941
76.6854
77.0964
77.5248
77.9684
78.4258
78.8955
79.3763
79.8672
80.3672
80.8756
81.3919
81.9162
82.4491
82.9916
83.5455
84.1135
84.6985
85.3041
85.9341
86.5923
87.2822
88.0069
88.7687
89.569
90.4084
91.2863
92.2017
93.1525
94.1365
95.1512
96.1938
97.2618
98.353
99.4651
100.596
101.744
102.907
104.083
105.268
106.46
107.655
108.849
110.038
111.216
112.38
113.524
114.645
115.739
116.803
117.833
118.826
119.782
120.696
121.568
122.397
123.181
123.919
124.61
125.254
125.85
126.398
126.896
127.345
127.745
128.095
128.394
128.644
128.843
128.992
129.09
129.138
85.4177
84.3311
83.3062
82.341
81.4311
80.5731
79.7638
79.0009
78.2833
77.6111
76.9858
76.4106
75.8896
75.4274
75.0288
74.6979
74.4378
74.2499
74.1342
74.0891
74.1117
74.198
74.343
74.5412
74.7864
75.0729
75.3948
75.7469
76.1247
76.5244
76.9429
77.3779
77.8274
78.29
78.7642
79.249
79.7432
80.246
80.7564
81.2739
81.7985
82.3306
82.8714
83.4229
83.9876
84.5689
85.1708
85.7974
86.4528
87.141
87.8653
88.6283
89.4314
90.275
91.1587
92.081
93.0396
94.0319
95.0551
96.1063
97.1828
98.2824
99.4027
100.542
101.699
102.871
104.056
105.251
106.454
107.66
108.866
110.067
111.257
112.433
113.589
114.721
115.825
116.898
117.937
118.939
119.901
120.822
121.7
122.534
123.322
124.064
124.759
125.406
126.004
126.554
127.054
127.505
127.906
128.257
128.557
128.808
129.007
129.156
129.255
129.303
85.1595
84.0795
83.0619
82.1041
81.201
80.3484
79.5427
78.7812
78.0625
77.3867
76.7556
76.1727
75.6429
75.1717
74.7648
74.4272
74.1626
73.9727
73.8578
73.8162
73.8447
73.9391
74.0939
74.3032
74.5602
74.8587
75.1923
75.5554
75.9434
76.3522
76.7788
77.2209
77.6766
78.1446
78.6237
79.1127
79.6105
80.1162
80.6287
81.1475
81.6724
82.2036
82.7425
83.2909
83.8519
84.4289
85.0264
85.6489
86.301
86.9872
87.711
88.4752
89.2814
90.1299
91.0201
91.9501
92.9174
93.919
94.9516
96.0123
97.0981
98.2065
99.3356
100.484
101.649
102.83
104.025
105.232
106.446
107.665
108.883
110.097
111.301
112.489
113.658
114.802
115.918
117.001
118.05
119.06
120.03
120.958
121.842
122.681
123.474
124.221
124.919
125.569
126.17
126.722
127.224
127.677
128.079
128.431
128.733
128.984
129.184
129.334
129.432
129.481
84.8812
83.809
82.8001
81.8511
80.9559
80.1098
79.3084
78.5487
77.8289
77.1492
76.5114
75.9196
75.3796
74.8979
74.4813
74.1358
73.8657
73.6735
73.5593
73.5214
73.5565
73.6599
73.8257
74.0473
74.3176
74.6293
74.9759
75.3512
75.7502
76.1689
76.6041
77.0537
77.516
77.9898
78.4739
78.9674
79.4691
79.978
80.4928
81.0129
81.5379
82.0681
82.6047
83.1497
83.7062
84.2782
84.8705
85.4882
86.1364
86.8201
87.5432
88.3088
89.1185
89.9726
90.87
91.8088
92.7858
93.7977
94.8408
95.9118
97.0075
98.1255
99.2638
100.421
101.596
102.787
103.992
105.21
106.437
107.669
108.901
110.129
111.348
112.55
113.733
114.89
116.018
117.112
118.171
119.19
120.169
121.104
121.995
122.84
123.638
124.389
125.091
125.744
126.348
126.903
127.407
127.861
128.265
128.619
128.921
129.173
129.374
129.524
129.623
129.672
84.582
83.5188
82.5202
81.5815
80.6958
79.8573
79.0612
78.3038
77.5831
76.899
76.2536
75.6517
75.0998
74.6059
74.1779
73.823
73.5465
73.3513
73.2377
73.2039
73.2463
73.3598
73.5379
73.7733
74.0582
74.3848
74.7457
75.1343
75.5453
75.9746
76.4191
76.8766
77.3458
77.8256
78.3151
78.8133
79.3191
79.8313
80.3487
80.8702
81.3954
81.9243
82.4581
82.999
83.5504
84.1166
84.7028
85.3148
85.9584
86.6391
87.3612
88.1283
88.9419
89.8022
90.708
91.6566
92.6446
93.6679
94.7226
95.8048
96.9113
98.0394
99.1873
100.354
101.538
102.739
103.956
105.185
106.425
107.672
108.92
110.163
111.397
112.615
113.813
114.984
116.125
117.232
118.301
119.33
120.318
121.261
122.159
123.01
123.813
124.568
125.275
125.931
126.538
127.095
127.602
128.058
128.464
128.818
129.122
129.375
129.576
129.727
129.826
129.875
84.2607
83.2082
82.2217
81.2953
80.4207
79.5913
78.8014
78.047
77.3256
76.6367
75.9829
75.3693
74.8037
74.2954
73.854
73.488
73.204
73.0052
72.8922
72.8628
72.9132
73.0379
73.2297
73.4806
73.7819
74.1249
74.5016
74.9048
75.329
75.7696
76.2239
76.6898
77.1661
77.6522
78.1472
78.6504
79.1605
79.6764
80.1964
80.7195
81.2447
81.7722
82.3028
82.839
83.3843
83.9436
84.5227
85.1281
85.7662
86.4432
87.1642
87.9328
88.7508
89.6182
90.5334
91.4931
92.4934
93.5295
94.597
95.6914
96.8094
97.9482
99.1061
100.282
101.476
102.688
103.915
105.158
106.412
107.674
108.938
110.198
111.449
112.684
113.898
115.084
116.239
117.359
118.44
119.48
120.477
121.428
122.333
123.191
124
124.76
125.47
126.131
126.741
127.301
127.81
128.268
128.675
129.031
129.336
129.589
129.791
129.942
130.042
130.091
83.9162
82.8762
81.9041
80.9922
80.1306
79.3119
78.5296
77.779
77.0571
76.3632
75.6998
75.0728
74.4914
73.9663
73.5091
73.13
72.837
72.634
72.5214
72.4969
72.5562
72.6933
72.9004
73.1686
73.4882
73.8496
74.2438
74.663
75.1013
75.5542
76.0187
76.4933
76.9771
77.4696
77.9704
78.4787
78.9934
79.5132
80.0362
80.5609
81.0862
81.6119
82.1389
82.6696
83.2079
83.7592
84.3299
84.9274
85.559
86.2316
86.9511
87.7213
88.5443
89.4198
90.3456
91.3179
92.3319
93.3824
94.4639
95.5717
96.702
97.852
99.0202
100.206
101.41
102.632
103.871
105.127
106.396
107.674
108.956
110.235
111.504
112.758
113.988
115.191
116.362
117.495
118.589
119.64
120.646
121.607
122.519
123.383
124.198
124.964
125.678
126.343
126.956
127.518
128.03
128.49
128.898
129.256
129.562
129.816
130.019
130.171
130.271
130.32
83.547
82.5216
81.5665
80.6718
79.8256
79.0193
78.246
77.5003
76.7785
76.0793
75.4052
74.763
74.1631
73.6185
73.1426
72.7481
72.4445
72.2364
72.1241
72.1049
72.1741
72.3251
72.5493
72.8369
73.177
73.5588
73.9723
74.4091
74.8627
75.3286
75.8039
76.2875
76.7789
77.2779
77.7846
78.2983
78.8179
79.3418
79.8681
80.3946
80.92
81.4437
81.9664
82.4908
83.0209
83.5628
84.1237
84.7119
85.3357
86.0032
86.7207
87.4927
88.3212
89.2059
90.1438
91.1303
92.1599
93.2263
94.3233
95.4458
96.5893
97.751
98.9297
100.125
101.339
102.571
103.822
105.091
106.376
107.672
108.973
110.272
111.562
112.835
114.085
115.305
116.492
117.64
118.747
119.81
120.827
121.796
122.717
123.588
124.409
125.179
125.899
126.567
127.184
127.749
128.262
128.725
129.135
129.494
129.801
130.056
130.26
130.412
130.512
130.562
83.1509
82.1429
81.2082
80.3338
79.5056
78.7138
77.9512
77.2117
76.4907
75.7861
75.1001
74.4405
73.8194
73.2517
72.7537
72.3408
72.0248
71.8108
71.6988
71.6854
71.7655
71.932
72.1755
72.4848
72.8478
73.2524
73.6873
74.1434
74.6135
75.0932
75.5799
76.0727
76.5717
77.0774
77.59
78.1093
78.634
79.1625
79.6922
80.2208
80.7463
81.2677
81.7856
82.3026
82.8232
83.3541
83.9035
84.4807
85.0954
85.7565
86.4716
87.2455
88.0804
88.9754
89.9271
90.9298
91.9769
93.0611
94.1754
95.3137
96.4714
97.6454
98.8346
100.039
101.262
102.505
103.768
105.051
106.353
107.668
108.99
110.31
111.622
112.916
114.186
115.426
116.63
117.794
118.914
119.99
121.018
121.997
122.926
123.804
124.632
125.407
126.131
126.804
127.424
127.992
128.508
128.972
129.384
129.745
130.053
130.309
130.514
130.667
130.767
130.817
82.7253
81.7381
80.828
79.9778
79.1705
78.3956
77.6455
76.9137
76.1946
75.4848
74.7858
74.1063
73.4605
72.866
72.3417
71.9068
71.576
71.3553
71.2436
71.2367
71.3289
71.5126
71.7777
72.1116
72.5003
72.9304
73.3891
73.8662
74.3542
74.8485
75.3469
75.8491
76.3557
76.8679
77.3866
77.9116
78.4418
78.9752
79.5088
80.0398
80.5654
81.0843
81.5966
82.1051
82.6147
83.1327
83.6686
84.2328
84.8366
85.4902
86.2022
86.9782
87.8203
88.7272
89.6946
90.7158
91.7826
92.8867
94.0201
95.1757
96.3485
97.5352
98.735
99.9495
101.181
102.433
103.708
105.006
106.325
107.66
109.005
110.349
111.684
113.002
114.294
115.554
116.776
117.957
119.092
120.181
121.22
122.209
123.147
124.033
124.867
125.648
126.377
127.053
127.677
128.248
128.766
129.233
129.647
130.008
130.318
130.575
130.781
130.934
131.034
131.085
82.2669
81.3051
80.4251
79.6036
78.8205
78.0649
77.3294
76.6074
75.8918
75.1771
74.4639
73.7617
73.0876
72.4614
71.9056
71.4442
71.096
70.8678
70.7565
70.7567
70.8623
71.0653
71.3547
71.7163
72.1341
72.5927
73.078
73.5782
74.0854
74.5951
75.1055
75.6171
76.1312
76.6498
77.1744
77.7053
78.2413
78.78
79.3181
79.8518
80.3777
80.8937
81.3997
81.8984
82.3951
82.8982
83.4182
83.9671
84.5579
85.2025
85.9107
86.6888
87.5392
88.4598
89.4452
90.4873
91.5765
92.703
93.8575
95.0321
96.221
97.4206
98.6307
99.8536
101.093
102.354
103.64
104.953
106.291
107.649
109.017
110.387
111.749
113.091
114.407
115.689
116.931
118.129
119.281
120.383
121.434
122.433
123.38
124.274
125.114
125.901
126.635
127.315
127.942
128.516
129.038
129.506
129.922
130.285
130.596
130.854
131.06
131.214
131.315
131.366
81.7714
80.8414
79.9989
79.2119
78.4566
77.7226
77.0039
76.2941
75.5841
74.8653
74.1366
73.4087
72.7018
72.0386
71.4449
70.9514
70.5827
70.3462
70.2356
70.2436
70.3638
70.5884
70.9053
71.2982
71.7487
72.2394
72.7542
73.2799
73.8077
74.3335
74.8563
75.3771
75.8984
76.4231
76.9535
77.4903
78.0325
78.5771
79.1202
79.6571
80.1835
80.6965
81.1953
81.6827
82.1645
82.6501
83.1514
83.6823
84.2576
84.8913
85.5948
86.3753
87.2351
88.1716
89.1776
90.2436
91.3581
92.5097
93.6877
94.8832
96.0891
97.3021
98.522
99.7522
100.998
102.267
103.564
104.893
106.25
107.632
109.027
110.425
111.815
113.185
114.527
115.832
117.095
118.312
119.48
120.596
121.66
122.67
123.626
124.527
125.374
126.167
126.906
127.59
128.221
128.798
129.322
129.792
130.21
130.575
130.887
131.146
131.353
131.507
131.609
131.66
81.2341
80.345
79.5496
78.8042
78.0804
77.3699
76.6701
75.9752
75.2734
74.5518
73.8062
73.0492
72.305
71.5987
70.9595
70.4267
70.0339
69.789
69.6799
69.6961
69.8322
70.0804
70.4282
70.8566
71.3441
71.8708
72.4185
72.972
73.522
74.0646
74.5999
75.1296
75.6575
76.1878
76.7238
77.2667
77.8153
78.3665
78.9154
79.4562
79.9835
80.4931
80.9839
81.4583
81.9228
82.3879
82.8672
83.3767
83.9336
84.5542
85.252
86.0351
86.9058
87.8605
88.8904
89.9837
91.127
92.3068
93.511
94.7291
95.9534
97.1799
98.4089
99.645
100.896
102.171
103.479
104.822
106.201
107.608
109.033
110.462
111.883
113.283
114.653
115.983
117.269
118.505
119.69
120.821
121.897
122.918
123.884
124.793
125.648
126.446
127.19
127.879
128.513
129.093
129.619
130.092
130.511
130.878
131.191
131.452
131.659
131.814
131.916
131.967
80.6486
79.8137
79.079
78.3832
77.6937
77.0072
76.3274
75.6503
74.9607
74.2387
73.4752
72.6851
71.8987
71.1428
70.4488
69.8675
69.4468
69.1943
69.0881
69.1132
69.266
69.5403
69.9229
70.3916
70.9205
71.4876
72.0721
72.6561
73.2294
73.7893
74.337
74.8752
75.4089
75.944
76.4852
77.0341
77.5897
78.1482
78.7038
79.2494
79.7781
80.2843
80.766
81.2255
81.6699
82.1111
82.5646
83.0488
83.5837
84.1885
84.8792
85.6652
86.5487
87.5245
88.5819
89.7065
90.8824
92.0941
93.3275
94.5704
95.8142
97.0545
98.2916
99.5317
100.786
102.065
103.381
104.74
106.141
107.576
109.033
110.497
111.953
113.386
114.785
116.143
117.452
118.709
119.912
121.058
122.147
123.18
124.155
125.073
125.934
126.738
127.487
128.18
128.818
129.401
129.93
130.404
130.826
131.194
131.508
131.77
131.978
132.134
132.236
132.287
80.0057
79.2445
78.5883
77.9509
77.2959
76.631
75.9713
75.3164
74.6458
73.9284
73.1465
72.3187
71.4845
70.6711
69.9095
69.2674
68.814
68.5571
68.4571
68.4919
68.6627
68.9656
69.3881
69.9028
70.4783
71.0907
71.7165
72.3339
72.9316
73.509
74.0688
74.6147
75.153
75.6918
76.2375
76.7925
77.3555
77.9223
78.4858
79.0373
79.5681
80.0709
80.5424
80.9848
81.406
81.8193
82.2424
82.6965
83.205
83.7909
84.473
85.2622
86.1605
87.161
88.2504
89.4109
90.6239
91.8715
93.1373
94.4076
95.6724
96.9263
98.1702
99.4117
100.665
101.946
103.269
104.643
106.068
107.534
109.028
110.53
112.023
113.492
114.925
116.311
117.645
118.924
120.145
121.308
122.41
123.454
124.439
125.365
126.233
127.044
127.798
128.495
129.136
129.722
130.254
130.73
131.154
131.523
131.839
132.101
132.311
132.467
132.569
132.621
79.2893
78.6307
78.0767
77.5062
76.8816
76.2319
75.5917
74.9666
74.3276
73.6249
72.826
71.9546
71.0653
70.1838
69.3361
68.6135
68.1208
67.8658
67.7784
67.8239
68.0141
68.3491
68.8186
69.388
70.0166
70.6805
71.3533
72.0074
72.6303
73.2249
73.7966
74.3491
74.8903
75.4313
75.9807
76.5416
77.1126
77.6887
78.2615
78.8205
79.3544
79.854
80.3142
80.7369
81.131
81.5117
81.8991
82.3176
82.7946
83.3575
84.029
84.822
85.7377
86.7672
87.8936
89.0954
90.3507
91.6388
92.941
94.2414
95.5285
96.796
98.0448
99.2844
100.532
101.811
103.139
104.528
105.978
107.48
109.014
110.559
112.095
113.604
115.071
116.489
117.85
119.151
120.391
121.57
122.687
123.742
124.737
125.671
126.547
127.363
128.122
128.823
129.468
130.057
130.591
131.07
131.494
131.865
132.182
132.446
132.656
132.813
132.916
132.968
78.4696
77.9589
77.5413
77.0462
76.4419
75.7959
75.1746
74.5922
74.0061
73.3361
72.5249
71.6036
70.6501
69.6848
68.7205
67.8831
67.338
67.0957
67.0314
67.0878
67.2991
67.6721
68.2009
68.8388
69.5299
70.2542
70.983
71.6787
72.3272
72.9384
73.5217
74.0795
74.6212
75.1623
75.7144
76.2811
76.8607
77.4474
78.0313
78.5995
79.1382
79.6348
80.0825
80.4826
80.8454
81.188
81.5335
81.9096
82.3486
82.8836
83.5423
84.3397
85.2762
86.3396
87.5094
88.7587
90.0621
91.3961
92.7389
94.0725
95.3834
96.6642
97.9156
99.1488
100.387
101.658
102.987
104.39
105.868
107.409
108.989
110.583
112.167
113.719
115.226
116.676
118.065
119.391
120.651
121.846
122.976
124.044
125.048
125.991
126.874
127.696
128.46
129.165
129.814
130.405
130.941
131.422
131.849
132.221
132.539
132.804
133.015
133.172
133.276
133.328
77.4979
77.2107
76.9822
76.5737
75.9723
75.3128
74.71
74.1893
73.6871
73.0769
72.2607
71.2792
70.2476
69.1747
68.0466
67.0428
66.4289
66.2218
66.2006
66.2677
66.5027
66.9194
67.5221
68.2466
69.01
69.8054
70.6035
71.3482
72.0229
72.6501
73.2459
73.8077
74.3469
74.8851
75.4386
76.0107
76.5996
77.1984
77.7956
78.3753
78.9207
79.4153
79.849
80.2231
80.5494
80.8476
81.1438
81.4696
81.8627
82.3636
83.0068
83.8098
84.7709
85.8743
87.0951
88.3991
89.7574
91.143
92.5313
93.9016
95.238
96.5318
97.7827
99.0038
100.224
101.481
102.807
104.224
105.733
107.319
108.952
110.601
112.239
113.84
115.388
116.874
118.293
119.643
120.923
122.135
123.28
124.359
125.374
126.325
127.214
128.043
128.811
129.521
130.173
130.767
131.306
131.788
132.216
132.59
132.91
133.175
133.387
133.545
133.649
133.701
76.3055
76.3713
76.4168
76.1117
75.486
74.7867
74.1997
73.7642
73.3853
72.8656
72.0446
70.9814
69.8569
68.6589
67.3214
66.0945
65.3928
65.2554
65.313
65.3879
65.6435
66.101
66.7906
67.6209
68.458
69.3316
70.2151
71.0168
71.7159
72.3573
72.9683
73.5335
74.0661
74.5981
75.1522
75.7299
76.3287
76.9414
77.5547
78.1488
78.7038
79.1974
79.6158
79.9597
80.2435
80.4899
80.7283
80.9942
81.3316
81.7906
82.4153
83.2254
84.2159
85.3667
86.648
88.0149
89.4356
90.8795
92.3188
93.7298
95.0936
96.3996
97.6463
98.8483
100.042
101.275
102.594
104.021
105.566
107.203
108.898
110.612
112.31
113.965
115.56
117.084
118.534
119.909
121.21
122.439
123.598
124.689
125.714
126.673
127.569
128.404
129.177
129.89
130.545
131.143
131.683
132.168
132.598
132.972
133.293
133.56
133.773
133.931
134.036
134.088
74.811
75.4508
75.9009
75.7149
75.0177
74.2364
73.655
73.3264
73.1145
72.7155
71.8805
70.715
69.5113
68.2039
66.6018
65.0317
64.1556
64.1165
64.3169
64.3712
64.632
65.1324
65.9486
66.9395
67.8616
68.8234
69.8212
70.694
71.4101
72.0593
72.6895
73.2559
73.7753
74.2958
74.8505
75.4346
76.0454
76.675
77.3083
77.9205
78.4894
78.9842
79.3857
79.6945
79.9285
80.1145
80.2853
80.4797
80.7491
81.1561
81.7589
82.5783
83.6043
84.8114
86.1654
87.604
89.0961
90.6055
92.1021
93.5581
94.9514
96.2687
97.5064
98.6801
99.8341
101.032
102.334
103.773
105.358
107.057
108.825
110.612
112.38
114.096
115.741
117.306
118.788
120.189
121.511
122.758
123.931
125.034
126.068
127.036
127.939
128.779
129.557
130.274
130.932
131.532
132.074
132.561
132.992
133.368
133.69
133.958
134.172
134.331
134.436
134.489
72.9333
74.4929
75.5241
75.4668
74.6185
73.6839
73.0774
72.873
72.8878
72.6551
71.8013
70.5045
69.2369
67.8045
65.5529
61.6248
57.6621
55.5694
55.1079
54.9988
56.8975
59.7259
63.164
65.8894
67.1236
68.2103
69.3965
70.3796
71.1098
71.7569
72.4215
72.989
73.4819
73.9799
74.5335
75.1229
75.7468
76.3964
77.055
77.6898
78.279
78.7788
79.1618
79.4295
79.6052
79.7209
79.8129
79.9228
80.1086
80.4506
81.0273
81.859
82.9288
84.2085
85.6411
87.1634
88.7377
90.321
91.8821
93.388
94.813
96.1404
97.3633
98.497
99.5955
100.742
102.015
103.464
105.098
106.873
108.726
110.601
112.449
114.234
115.934
117.542
119.058
120.485
121.828
123.092
124.279
125.393
126.437
127.413
128.323
129.168
129.951
130.672
131.333
131.935
132.479
132.967
133.4
133.777
134.101
134.369
134.584
134.744
134.849
134.903
70.5924
73.5525
75.4147
75.4955
74.3448
73.1196
72.4188
72.3697
72.7312
72.7562
71.8005
68.6117
61.6413
49.7673
34.4393
21.6468
14.6382
11.1248
10.0564
9.97305
11.9501
15.8738
23.0703
33.3772
46.2462
57.337
65.5399
69.715
70.7788
71.4071
72.1534
72.7362
73.1932
73.6554
74.2127
74.8052
75.4395
76.1098
76.798
77.4577
78.0755
78.5854
78.9477
79.1662
79.2731
79.3066
79.3073
79.3169
79.3998
79.6604
80.2075
81.0578
82.1808
83.5493
85.0783
86.6969
88.3555
90.026
91.6604
93.2214
94.6804
96.0165
97.2173
98.2957
99.317
100.389
101.621
103.077
104.77
106.639
108.596
110.574
112.516
114.378
116.138
117.792
119.343
120.797
122.161
123.442
124.643
125.768
126.822
127.805
128.722
129.572
130.359
131.084
131.747
132.352
132.898
133.388
133.821
134.2
134.524
134.794
135.01
135.171
135.277
135.331
67.7169
72.6629
75.7825
75.947
74.1604
72.3987
71.1372
69.2458
65.8284
58.1022
43.6688
26.2698
12.7118
3.94079
0.290619
0.192506
0.189392
0.190342
0.192985
0.198565
0.203852
0.2095
0.21764
0.23077
1.37982
8.46348
19.417
33.9019
49.7394
61.2624
68.7551
72.1224
72.8362
73.2489
73.8426
74.4535
75.1132
75.8116
76.541
77.2264
77.8852
78.414
78.7526
78.9109
78.9358
78.8728
78.7676
78.6577
78.6106
78.7642
79.2784
80.1624
81.3496
82.8308
84.4749
86.2034
87.9581
89.7151
91.4387
93.0608
94.5562
95.899
97.0686
98.0719
98.9865
99.9543
101.122
102.583
104.35
106.341
108.427
110.528
112.58
114.531
116.357
118.059
119.645
121.126
122.511
123.808
125.022
126.159
127.221
128.213
129.135
129.991
130.782
131.51
132.176
132.782
133.33
133.821
134.256
134.636
134.961
135.232
135.449
135.611
135.718
135.772
61.6062
70.3651
73.8394
70.0014
59.6039
46.5812
33.5011
22.8428
13.9521
6.22365
1.24084
0.184306
0.174682
0.175951
0.187016
0.186388
0.186706
0.188522
0.191973
0.197107
0.202588
0.208877
0.216988
0.226132
0.233336
0.231158
0.237072
0.251162
1.80027
9.94106
21.4177
35.4929
50.4549
61.5074
69.1546
73.2489
74.6686
75.4248
76.2382
76.9627
77.6994
78.2665
78.5803
78.6678
78.598
78.4272
78.2051
77.9592
77.7503
77.755
78.2257
79.1584
80.4177
82.0499
83.8313
85.684
87.5424
89.3965
91.2158
92.9092
94.4434
95.7903
96.9181
97.8206
98.5886
99.4103
100.482
101.938
103.802
105.956
108.205
110.457
112.64
114.693
116.593
118.345
119.966
121.473
122.878
124.191
125.418
126.565
127.637
128.636
129.564
130.425
131.22
131.95
132.619
133.227
133.776
134.268
134.704
135.085
135.412
135.684
135.902
136.065
136.173
136.227
21.1896
24.4857
22.3218
14.7505
6.2613
1.2056
0.160106
0.152908
0.156459
0.163902
0.176247
0.177558
0.176476
0.178361
0.185016
0.185416
0.185187
0.186978
0.19078
0.195895
0.201495
0.208056
0.216208
0.2245
0.231163
0.23437
0.240705
0.248998
0.254453
0.250983
0.256684
0.271115
1.77398
9.02871
19.4155
32.5911
48.4462
61.0345
69.9984
75.0831
77.4251
78.1163
78.4024
78.4055
78.2281
77.9392
77.5962
77.2079
76.8056
76.6301
77.0564
78.0624
79.3692
81.2036
83.1477
85.1417
87.1069
89.0696
90.9935
92.7702
94.345
95.6932
96.7676
97.5381
98.108
98.7338
99.6693
101.102
103.085
105.455
107.909
110.349
112.695
114.869
116.848
118.651
120.307
121.839
123.263
124.591
125.831
126.988
128.068
129.074
130.008
130.874
131.672
132.405
133.076
133.686
134.236
134.729
135.166
135.548
135.876
136.149
136.368
136.532
136.641
136.696
0.086038
0.0874657
0.104351
0.118186
0.130808
0.147304
0.152831
0.154507
0.159383
0.166387
0.175239
0.1789
0.177491
0.178743
0.182862
0.183661
0.183693
0.185399
0.18949
0.194772
0.200487
0.207122
0.215179
0.223174
0.229974
0.235033
0.241541
0.248313
0.253109
0.254861
0.260289
0.268442
0.274201
0.272092
0.276178
0.287649
0.70784
7.35419
16.9563
29.216
43.7028
56.3743
64.9217
70.3953
73.7591
75.6306
76.425
76.3017
75.6287
75.2129
75.6614
76.8836
78.1932
80.307
82.4223
84.5802
86.6465
88.7282
90.7746
92.6477
94.2631
95.61
96.6219
97.2278
97.541
97.927
98.6937
100.081
102.205
104.845
107.533
110.192
112.741
115.06
117.127
118.98
120.67
122.225
123.667
125.009
126.26
127.428
128.516
129.528
130.468
131.337
132.139
132.875
133.547
134.158
134.71
135.203
135.641
136.024
136.353
136.627
136.848
137.013
137.123
137.179
0.0946026
0.10062
0.112078
0.122619
0.133026
0.144811
0.151507
0.154482
0.159669
0.166438
0.174132
0.178187
0.177963
0.178556
0.181219
0.182449
0.182571
0.184061
0.188464
0.194033
0.199828
0.206406
0.214484
0.222405
0.229549
0.235551
0.241883
0.247908
0.25249
0.25581
0.261195
0.267592
0.272507
0.27467
0.279512
0.287545
0.29624
0.292444
0.294373
0.299037
0.315142
3.27694
8.59276
14.7418
21.5004
28.8411
36.6525
46.0585
54.6148
63.2103
71.3409
75.4705
76.7646
79.3918
81.6648
83.9998
86.1481
88.3658
90.566
92.5365
94.1962
95.542
96.4909
96.9089
96.9129
97.0527
97.6641
98.9966
101.286
104.236
107.126
109.993
112.775
115.27
117.436
119.336
121.056
122.632
124.089
125.445
126.707
127.884
128.979
129.998
130.942
131.816
132.621
133.359
134.033
134.645
135.197
135.691
136.129
136.513
136.843
137.119
137.341
137.508
137.619
137.676
0.0887471
0.0994417
0.11276
0.123519
0.133115
0.143044
0.150047
0.154337
0.160041
0.166553
0.173162
0.177117
0.177948
0.180901
0.18197
0.18233
0.182373
0.183614
0.18838
0.193912
0.19959
0.206016
0.214281
0.22219
0.229635
0.236111
0.242239
0.247814
0.252383
0.256374
0.26144
0.266943
0.271487
0.275008
0.280223
0.286994
0.293208
0.294461
0.298313
0.30404
0.312133
0.311381
0.309859
0.308169
0.306217
0.303488
0.302375
0.379308
4.05938
10.8354
23.2134
47.2088
68.5156
78.4282
80.9084
83.3762
85.5831
87.9714
90.3667
92.4396
94.1349
95.4894
96.3907
96.6254
96.2942
96.2592
96.8119
98.0803
100.551
103.853
106.839
109.797
112.806
115.505
117.781
119.719
121.466
123.058
124.533
125.9
127.172
128.357
129.459
130.483
131.433
132.31
133.118
133.858
134.533
135.145
135.697
136.192
136.63
137.015
137.346
137.624
137.848
138.017
138.13
138.187
0.0860748
0.0989045
0.112762
0.123617
0.132686
0.141448
0.148485
0.153701
0.159691
0.165791
0.17172
0.175851
0.177156
0.177786
0.180868
0.18733
0.187869
0.187656
0.190431
0.195968
0.200609
0.206139
0.214785
0.222395
0.230061
0.236734
0.242675
0.247937
0.252513
0.256772
0.261529
0.266489
0.27092
0.275078
0.280315
0.286363
0.291635
0.294456
0.298676
0.303843
0.309729
0.311608
0.310518
0.30944
0.308348
0.306833
0.306038
0.307068
0.299815
0.293221
0.291286
1.50458
15.0114
52.7161
78.1765
82.8177
84.9086
87.5281
90.1857
92.3531
94.0674
95.4453
96.3447
96.4407
95.78
95.6657
95.9611
97.2114
99.7581
103.675
106.807
109.686
112.864
115.78
118.175
120.13
121.898
123.511
124.997
126.374
127.655
128.846
129.955
130.985
131.939
132.819
133.629
134.371
135.047
135.659
136.211
136.705
137.144
137.529
137.862
138.142
138.368
138.54
138.654
138.712
0.0861741
0.0994682
0.112422
0.123001
0.131762
0.139852
0.147708
0.154666
0.159536
0.165045
0.169853
0.173947
0.175884
0.176959
0.178227
0.179459
0.181442
0.186355
0.191123
0.196657
0.204202
0.211174
0.217221
0.223612
0.231011
0.237324
0.243143
0.248203
0.252759
0.257092
0.261593
0.266184
0.270576
0.275033
0.28022
0.285847
0.290764
0.294996
0.302591
0.30785
0.311326
0.310252
0.310097
0.309199
0.308239
0.306949
0.305852
0.304687
0.299007
0.293039
0.288834
0.279532
0.257237
3.07692
31.7632
73.6185
84.0826
87.062
90.0405
92.2642
93.9612
95.4144
96.383
96.412
95.471
95.3002
95.9259
97.7543
100.535
103.698
106.724
109.709
113.011
116.115
118.637
120.554
122.366
123.989
125.482
126.867
128.155
129.353
130.468
131.502
132.46
133.344
134.156
134.899
135.575
136.187
136.739
137.232
137.671
138.057
138.391
138.673
138.902
139.076
139.193
139.252
0.0873086
0.100012
0.112024
0.121975
0.13033
0.138041
0.146737
0.153041
0.158264
0.16347
0.169092
0.173337
0.17439
0.175829
0.177417
0.179011
0.180954
0.183552
0.186582
0.19303
0.19974
0.207585
0.218285
0.225912
0.233067
0.23863
0.24353
0.248465
0.253044
0.257401
0.261713
0.266037
0.270362
0.274929
0.280062
0.28548
0.290381
0.299079
0.304634
0.308362
0.311906
0.313302
0.310995
0.309061
0.308264
0.30707
0.305651
0.303449
0.297948
0.292169
0.28678
0.27803
0.266143
0.27995
0.286524
22.1955
65.6919
86.611
89.9917
92.1612
93.7597
95.3838
96.5514
96.6031
96.3197
96.4583
96.8003
98.4796
100.973
104.275
107.651
109.814
113.331
116.543
119.099
121.08
122.87
124.492
125.989
127.379
128.673
129.877
130.997
132.036
132.997
133.884
134.698
135.442
136.118
136.729
137.279
137.772
138.21
138.596
138.932
139.217
139.449
139.626
139.746
139.806
0.0902941
0.101046
0.111056
0.120769
0.128799
0.136104
0.142962
0.149252
0.155066
0.161353
0.166721
0.17138
0.17513
0.174651
0.176506
0.17842
0.180681
0.183456
0.186803
0.192477
0.199347
0.206683
0.214075
0.224916
0.233418
0.241237
0.244234
0.248525
0.253283
0.257709
0.26192
0.266049
0.270264
0.27483
0.279928
0.285313
0.290448
0.30039
0.305264
0.308844
0.312163
0.314278
0.317711
0.309963
0.308585
0.307382
0.305682
0.302978
0.297296
0.29159
0.2854
0.275944
0.265225
0.272624
0.266151
0.261805
18.5673
63.806
90.0585
92.0016
93.4001
95.3741
96.9173
97.1613
96.6186
96.7747
97.953
99.9552
101.891
103.339
107.049
109.957
113.872
117.128
119.657
121.639
123.404
125.019
126.517
127.911
129.209
130.418
131.542
132.585
133.549
134.438
135.254
135.999
136.674
137.284
137.833
138.324
138.761
139.148
139.486
139.773
140.01
140.191
140.314
140.376
0.0941469
0.102463
0.11005
0.118874
0.126842
0.134201
0.141022
0.147222
0.152801
0.158412
0.163731
0.167612
0.170554
0.172973
0.175407
0.177676
0.180173
0.183272
0.18711
0.192553
0.199117
0.206262
0.213633
0.22232
0.231381
0.240519
0.247764
0.248965
0.253389
0.257954
0.262181
0.266198
0.270298
0.274801
0.279933
0.285334
0.290715
0.296215
0.305254
0.309346
0.312641
0.314888
0.318094
0.311427
0.309311
0.307921
0.305936
0.303217
0.297154
0.291532
0.284772
0.274669
0.26535
0.270345
0.265457
0.25683
0.246545
16.9235
62.294
86.1986
92.7123
95.3806
97.5855
98.1639
97.8471
98.7848
100.506
101.917
102.186
102.288
104.843
109.83
114.562
117.934
120.303
122.232
123.964
125.568
127.064
128.461
129.763
130.976
132.104
133.15
134.117
135.008
135.825
136.57
137.245
137.853
138.399
138.888
139.324
139.711
140.051
140.342
140.583
140.769
140.897
140.961
0.0986971
0.10403
0.108601
0.117433
0.125174
0.132383
0.139154
0.145303
0.150913
0.156287
0.161197
0.165292
0.168627
0.171465
0.174206
0.176794
0.179571
0.183058
0.187319
0.192568
0.198695
0.205516
0.212946
0.221174
0.228832
0.236747
0.245472
0.250334
0.253106
0.258006
0.262409
0.266425
0.270457
0.274897
0.279986
0.285516
0.291208
0.296885
0.302797
0.309947
0.31338
0.315239
0.312649
0.311064
0.310352
0.308664
0.306327
0.304156
0.297451
0.291976
0.284806
0.274457
0.266163
0.267712
0.262637
0.253022
0.241171
0.267707
19.4908
64.5868
81.7899
95.4274
98.6036
99.5049
99.2566
100.885
103.005
103.757
101.925
99.5591
101.621
108.221
114.858
118.823
121.026
122.851
124.545
126.138
127.632
129.03
130.335
131.551
132.681
133.73
134.7
135.593
136.411
137.156
137.829
138.435
138.978
139.464
139.898
140.285
140.627
140.923
141.17
141.362
141.495
141.562
0.132206
0.120776
0.109272
0.116139
0.123623
0.130723
0.137438
0.143512
0.149083
0.15432
0.159153
0.163393
0.166843
0.169891
0.172925
0.17575
0.178652
0.182334
0.186905
0.192403
0.198609
0.205086
0.211934
0.219637
0.227203
0.234557
0.241402
0.247224
0.253254
0.257747
0.262414
0.266592
0.270683
0.275122
0.280182
0.285853
0.291813
0.297734
0.303108
0.307417
0.312681
0.312766
0.312994
0.312494
0.311633
0.309553
0.30673
0.305802
0.298095
0.293248
0.28576
0.274945
0.2671
0.26551
0.259777
0.250079
0.240016
0.234263
0.222506
20.6416
70.4895
84.4213
98.3086
100.874
100.691
103.956
105.779
105.629
101.916
97.2956
98.4075
106.182
114.776
119.607
121.761
123.481
125.141
126.725
128.219
129.618
130.925
132.142
133.275
134.326
135.297
136.192
137.011
137.756
138.427
139.03
139.568
140.05
140.482
140.869
141.214
141.516
141.77
141.97
142.109
142.18
0.201693
0.174567
0.110891
0.114999
0.122213
0.129245
0.135915
0.141878
0.147361
0.152454
0.15724
0.161608
0.165061
0.168244
0.171595
0.174619
0.177568
0.181632
0.186959
0.1921
0.197629
0.203784
0.210452
0.217759
0.225163
0.232385
0.239165
0.245265
0.251357
0.257141
0.262169
0.26654
0.27085
0.275424
0.280573
0.286345
0.292565
0.298649
0.304114
0.308095
0.311145
0.31325
0.314252
0.314018
0.313035
0.310625
0.30691
0.308302
0.298781
0.294367
0.286579
0.275516
0.267683
0.263594
0.256857
0.247413
0.238148
0.228968
0.212798
0.203061
20.5593
79.6409
93.3572
98.4675
101.494
105.088
106.765
106.254
101.735
95.8555
96.3242
104.469
114.446
120.171
122.435
124.102
125.747
127.33
128.824
130.225
131.532
132.75
133.884
134.936
135.91
136.806
137.626
138.37
139.039
139.637
140.171
140.647
141.076
141.463
141.811
142.12
142.383
142.592
142.741
142.815
0.209791
0.228531
0.114713
0.114049
0.120901
0.127928
0.134604
0.140406
0.145757
0.150672
0.155446
0.160006
0.163764
0.16768
0.171181
0.173681
0.176268
0.180356
0.185946
0.191068
0.196433
0.202267
0.208595
0.215575
0.222732
0.229846
0.236729
0.243113
0.249412
0.255501
0.261235
0.266158
0.270794
0.275684
0.281065
0.287029
0.293416
0.299736
0.305304
0.309479
0.312581
0.314709
0.31578
0.315642
0.314439
0.312119
0.307598
0.314021
0.29884
0.295012
0.287256
0.275721
0.267716
0.261745
0.25378
0.244433
0.235484
0.225474
0.210557
0.195392
0.184457
16.8545
85.6074
101.613
102.988
105.253
106.275
105.785
101.384
95.1016
95.3181
103.623
114.232
120.543
123.015
124.706
126.36
127.951
129.45
130.85
132.157
133.374
134.508
135.561
136.536
137.434
138.254
138.997
139.664
140.257
140.784
141.254
141.678
142.064
142.417
142.734
143.009
143.229
143.389
143.469
0.211528
0.224456
0.116538
0.113599
0.11999
0.126758
0.133488
0.139076
0.144402
0.149868
0.155709
0.161963
0.168108
0.171575
0.175939
0.177624
0.176771
0.179015
0.185392
0.19028
0.195205
0.200699
0.206721
0.213445
0.220316
0.227182
0.23398
0.240585
0.247086
0.253417
0.259421
0.265146
0.270372
0.275736
0.281534
0.287817
0.294417
0.300952
0.306669
0.311055
0.314258
0.316422
0.317551
0.317463
0.316048
0.312912
0.329459
0.37535
0.319535
0.29587
0.288805
0.277905
0.271813
0.262959
0.250916
0.2409
0.232072
0.22175
0.207372
0.19141
0.172744
0.127389
13.0333
79.7297
103.34
104.809
104.845
104.456
100.856
95.3521
95.8045
103.942
114.458
120.846
123.512
125.293
126.984
128.592
130.096
131.496
132.799
134.014
135.147
136.2
137.175
138.074
138.896
139.638
140.302
140.889
141.408
141.87
142.288
142.673
143.031
143.359
143.648
143.88
144.057
144.143
0.207457
0.158193
0.109904
0.113738
0.119277
0.125902
0.133532
0.140138
0.147761
0.153227
0.157622
0.162915
0.165839
0.169553
0.175092
0.182535
0.18998
0.180632
0.184899
0.189409
0.193794
0.198934
0.204671
0.211251
0.217834
0.224524
0.231233
0.237845
0.244434
0.250958
0.257287
0.263377
0.269381
0.275418
0.281812
0.288588
0.295537
0.302259
0.308196
0.312797
0.31614
0.318366
0.319547
0.319524
0.318018
0.315481
0.339643
0.426694
0.345246
0.298228
0.290506
0.285491
0.278359
0.269421
0.25352
0.236373
0.227917
0.217654
0.204339
0.189553
0.170739
0.147653
0.17992
8.26447
80.1936
104.814
103.028
102.72
100.329
96.3164
97.8576
105.33
115.283
121.224
123.97
125.882
127.627
129.255
130.763
132.16
133.459
134.67
135.799
136.851
137.828
138.728
139.55
140.292
140.952
141.533
142.041
142.492
142.903
143.287
143.651
143.992
144.3
144.547
144.745
144.837
0.135976
0.11896
0.108666
0.113367
0.119036
0.128641
0.138515
0.142688
0.147767
0.151179
0.155838
0.162004
0.163432
0.167294
0.173814
0.181198
0.179522
0.179662
0.184327
0.18851
0.192037
0.196923
0.202436
0.209026
0.215251
0.221802
0.228394
0.234948
0.241535
0.248157
0.254735
0.261184
0.267713
0.274564
0.28174
0.289175
0.296638
0.303674
0.309843
0.31467
0.318179
0.320496
0.321731
0.321781
0.320264
0.317723
0.33894
0.434462
0.343507
0.301571
0.291176
0.287653
0.277376
0.26794
0.26339
0.234953
0.223624
0.213537
0.201295
0.187444
0.16987
0.155844
0.170033
0.149016
3.22741
72.1935
101.169
100.897
99.4639
97.4121
100.927
107.878
116.46
121.765
124.487
126.501
128.299
129.945
131.454
132.845
134.136
135.339
136.465
137.515
138.491
139.393
140.217
140.959
141.615
142.187
142.683
143.121
143.522
143.904
144.276
144.632
144.966
145.228
145.456
145.555
0.104461
0.107359
0.108969
0.113092
0.11871
0.138745
0.138043
0.141321
0.146807
0.148829
0.15401
0.157434
0.157894
0.162296
0.1693
0.175147
0.177665
0.178456
0.183796
0.189838
0.192718
0.197653
0.20226
0.20791
0.21282
0.219075
0.225468
0.231907
0.238437
0.245079
0.251807
0.258516
0.265522
0.273088
0.281132
0.289401
0.297548
0.305073
0.311544
0.316632
0.320311
0.322741
0.324041
0.324166
0.322818
0.319749
0.351689
0.425528
0.361308
0.303111
0.291216
0.286671
0.275705
0.265132
0.252398
0.228654
0.219673
0.209677
0.198222
0.185243
0.170246
0.161388
0.167324
0.160894
0.183787
0.158093
49.0698
95.1912
98.1709
98.2441
104.366
110.809
118.024
122.56
125.133
127.185
129.013
130.667
132.169
133.549
134.828
136.023
137.142
138.189
139.166
140.069
140.895
141.637
142.289
142.851
143.332
143.753
144.142
144.522
144.903
145.279
145.646
145.923
146.19
146.298
0.102589
0.106496
0.108973
0.11272
0.117276
0.131454
0.136512
0.13961
0.143218
0.142751
0.147924
0.155094
0.161253
0.166908
0.17344
0.176462
0.172159
0.18108
0.186772
0.192428
0.199291
0.205243
0.212503
0.220506
0.212898
0.216394
0.222467
0.228768
0.235152
0.241748
0.248561
0.255409
0.262805
0.271058
0.279914
0.289091
0.298059
0.306259
0.31318
0.318576
0.322461
0.325011
0.326379
0.326565
0.325327
0.321684
0.357333
0.422778
0.387303
0.303605
0.291166
0.284181
0.273698
0.262378
0.240371
0.226039
0.216289
0.206151
0.195115
0.182837
0.170027
0.163067
0.163349
0.161135
0.178152
0.16116
0.0475482
44.5954
91.2257
98.5691
107.066
113.698
119.7
123.518
125.932
127.959
129.782
131.423
132.908
134.272
135.536
136.718
137.829
138.873
139.849
140.754
141.583
142.325
142.974
143.525
143.987
144.388
144.76
145.136
145.53
145.929
146.343
146.645
146.937
147.068
0.10161
0.105676
0.108693
0.112346
0.116114
0.121982
0.129032
0.131937
0.137748
0.145169
0.148675
0.155557
0.154563
0.159686
0.16582
0.169288
0.176409
0.180053
0.185761
0.191893
0.196282
0.202361
0.209406
0.215976
0.211234
0.213642
0.219422
0.225438
0.231658
0.23822
0.245011
0.251894
0.259601
0.268483
0.278176
0.288185
0.297969
0.306994
0.314564
0.320359
0.324513
0.327201
0.328632
0.328878
0.327733
0.324233
0.352536
0.421585
0.396099
0.306899
0.291101
0.275743
0.271371
0.257455
0.235681
0.223464
0.2132
0.202857
0.191974
0.18024
0.168922
0.162387
0.159232
0.158474
0.178821
0.158787
0.225371
1.69173
55.132
95.9539
108.707
116.233
121.204
124.586
126.877
128.839
130.616
132.217
133.672
135.011
136.256
137.424
138.525
139.564
140.538
141.446
142.279
143.024
143.668
144.206
144.646
145.02
145.372
145.742
146.153
146.58
147.057
147.375
147.718
147.871
0.100921
0.104909
0.108247
0.111984
0.115776
0.120663
0.125808
0.132853
0.138375
0.139564
0.143651
0.152667
0.162948
0.166874
0.166915
0.169628
0.171838
0.177503
0.181003
0.184631
0.190174
0.195462
0.200595
0.202599
0.205336
0.210728
0.21626
0.221969
0.227973
0.234308
0.24113
0.248006
0.255933
0.265388
0.275939
0.286622
0.297112
0.307023
0.315445
0.321829
0.326318
0.329187
0.330679
0.330949
0.329919
0.326969
0.3428
0.420434
0.404707
0.317981
0.285423
0.270998
0.258676
0.244502
0.232357
0.220826
0.210223
0.199648
0.188766
0.177417
0.166936
0.160133
0.155154
0.153893
0.166986
0.13771
0.0625707
-0.116071
11.6702
59.4521
111.519
118.139
122.502
125.753
127.943
129.828
131.521
133.052
134.457
135.764
136.986
138.138
139.228
140.26
141.233
142.143
142.98
143.728
144.368
144.892
145.307
145.647
145.971
146.335
146.769
147.231
147.787
148.112
148.533
148.716
0.100324
0.10421
0.107698
0.111344
0.115176
0.119637
0.124426
0.12937
0.135065
0.149655
0.152942
0.153883
0.157503
0.158866
0.156047
0.159867
0.173165
0.184647
0.190895
0.191271
0.19203
0.195074
0.197718
0.199809
0.202661
0.207519
0.212845
0.218329
0.224126
0.230274
0.236809
0.24494
0.262128
0.269946
0.275951
0.284348
0.295386
0.306131
0.315536
0.322734
0.327737
0.330837
0.33239
0.332639
0.331615
0.329133
0.335807
0.415958
0.411631
0.319945
0.280748
0.268066
0.254211
0.241528
0.229859
0.21827
0.207292
0.196427
0.185436
0.174305
0.164176
0.15684
0.151037
0.148802
0.154033
0.136921
0.0820467
0.0349867
0.311475
24.9447
113.86
119.379
123.676
126.878
129.102
130.924
132.499
133.927
135.263
136.527
137.723
138.857
139.934
140.959
141.929
142.842
143.684
144.435
145.072
145.581
145.965
146.263
146.551
146.906
147.37
147.887
148.516
148.859
149.392
149.61
0.0997851
0.103543
0.107078
0.110716
0.114444
0.118535
0.122658
0.140293
0.14243
0.144404
0.14591
0.144892
0.149725
0.15362
0.159262
0.164602
0.169569
0.176
0.178211
0.182241
0.186602
0.191833
0.194776
0.196642
0.199497
0.204145
0.20928
0.214572
0.220163
0.226104
0.232356
0.238756
0.269974
0.276369
0.282171
0.288087
0.292707
0.30417
0.314604
0.32279
0.328548
0.332002
0.333648
0.333857
0.332746
0.330251
0.329039
0.408779
0.414888
0.320805
0.276833
0.265302
0.252228
0.239684
0.227579
0.21576
0.204356
0.193136
0.181954
0.170887
0.160811
0.152888
0.146809
0.144576
0.145724
0.125492
0.0933917
0.0918727
0.39809
2.76145
68.6651
119.979
124.506
127.969
130.311
132.119
133.544
134.84
136.087
137.298
138.464
139.579
140.643
141.658
142.624
143.539
144.386
145.139
145.774
146.267
146.616
146.862
147.1
147.446
147.937
148.53
149.24
149.637
150.316
150.562
0.0992866
0.102906
0.106421
0.110015
0.113717
0.117695
0.126233
0.128217
0.130755
0.136249
0.139852
0.142066
0.147184
0.151152
0.154752
0.15918
0.178645
0.181739
0.183563
0.188387
0.192067
0.192275
0.191601
0.193322
0.196057
0.200788
0.205687
0.210754
0.216143
0.221902
0.22805
0.234762
0.244606
0.269639
0.277659
0.288366
0.295979
0.301199
0.312539
0.321749
0.328521
0.332519
0.334341
0.334523
0.333278
0.330596
0.326612
0.343485
0.422558
0.330858
0.272827
0.262765
0.250276
0.237783
0.225328
0.213184
0.201348
0.189741
0.178314
0.167202
0.15705
0.148669
0.142347
0.139571
0.138151
0.125075
0.108038
0.121217
0.234023
-0.121551
16.9739
119.335
124.967
129.069
131.519
133.394
134.646
135.785
136.925
138.073
139.206
140.301
141.35
142.354
143.315
144.23
145.079
145.834
146.465
146.943
147.252
147.433
147.603
147.937
148.47
149.151
149.975
150.454
151.303
151.593
0.0988272
0.102288
0.105833
0.109451
0.113488
0.117929
0.120507
0.124788
0.128342
0.133744
0.137875
0.14084
0.145078
0.14869
0.166372
0.184935
0.178168
0.179418
0.181921
0.186414
0.193854
0.198314
0.195918
0.19255
0.193795
0.197248
0.201999
0.20693
0.212117
0.217717
0.223874
0.230869
0.239456
0.254186
0.27271
0.283389
0.295751
0.30151
0.309332
0.319428
0.327445
0.332212
0.334352
0.334562
0.333188
0.330415
0.326245
0.325663
0.416345
0.321994
0.270986
0.260659
0.248516
0.235905
0.223046
0.210507
0.198221
0.186218
0.174527
0.163316
0.153064
0.144388
0.137816
0.134218
0.131341
0.123213
0.116935
0.131639
0.171916
0.0690424
0.520216
68.9962
125.744
130.032
132.778
134.729
135.786
136.753
137.771
138.847
139.944
141.02
142.055
143.046
143.999
144.909
145.754
146.502
147.127
147.593
147.86
147.962
148.038
148.359
148.953
149.745
150.732
151.296
152.359
152.725
0.098384
0.101772
0.106643
0.110826
0.112767
0.115179
0.119145
0.123363
0.127223
0.131855
0.135954
0.139306
0.143181
0.146734
0.154918
0.167255
0.17196
0.175323
0.178856
0.183564
0.189861
0.197032
0.205239
0.21654
0.191085
0.193851
0.198381
0.20312
0.208092
0.21352
0.219664
0.226901
0.235845
0.24647
0.26268
0.278537
0.290193
0.30293
0.30602
0.315672
0.325162
0.3309
0.333577
0.333907
0.332428
0.32948
0.324672
0.319599
0.356735
0.283537
0.270954
0.259303
0.247033
0.234086
0.220672
0.207681
0.194932
0.182544
0.170596
0.159272
0.148947
0.140112
0.13331
0.128935
0.125212
0.120248
0.120002
0.130546
0.142883
0.0984063
0.391682
15.0535
126.879
131.062
134.066
136.089
136.938
137.731
138.616
139.616
140.677
141.734
142.754
143.731
144.67
145.569
146.395
147.12
147.735
148.198
148.423
148.428
148.372
148.684
149.366
150.302
151.509
152.153
153.512
154.003
0.0978968
0.102453
0.106407
0.109932
0.11156
0.1142
0.117951
0.121998
0.125902
0.130109
0.134073
0.137595
0.141554
0.144805
0.147694
0.152925
0.157493
0.161884
0.166658
0.172324
0.180065
0.187615
0.194068
0.191932
0.186704
0.190511
0.194786
0.199268
0.204099
0.209348
0.215351
0.222816
0.232282
0.242668
0.252073
0.270868
0.284543
0.298307
0.311553
0.312088
0.32165
0.328456
0.331926
0.332518
0.330999
0.327748
0.322156
0.314953
0.30008
0.278539
0.271573
0.258511
0.245777
0.232312
0.21812
0.20464
0.191436
0.178691
0.166505
0.155071
0.144705
0.135804
0.128824
0.123897
0.119843
0.116633
0.118422
0.124536
0.122333
0.0986843
0.223542
1.75564
76.2769
132.801
135.259
137.338
138.062
138.696
139.446
140.375
141.404
142.444
143.447
144.406
145.327
146.199
146.976
147.646
148.244
148.722
148.912
148.792
148.554
148.863
149.68
150.807
152.254
153.024
154.73
155.474
0.0976863
0.102437
0.105565
0.107646
0.109649
0.1131
0.116744
0.120641
0.12448
0.128406
0.132212
0.135788
0.139543
0.143072
0.146287
0.150628
0.154842
0.158938
0.162897
0.166932
0.170559
0.173239
0.177775
0.180226
0.182982
0.187061
0.191093
0.195334
0.199925
0.20496
0.210886
0.219024
0.229023
0.239042
0.248013
0.257143
0.278203
0.290517
0.305492
0.309366
0.316945
0.324792
0.329309
0.33036
0.32896
0.325528
0.319547
0.311461
0.298099
0.280847
0.271523
0.257859
0.244607
0.230535
0.215255
0.201299
0.187682
0.174623
0.16222
0.15068
0.140287
0.131369
0.12427
0.119011
0.114923
0.112622
0.114529
0.118177
0.11615
0.116148
0.190455
0.131606
13.9346
134.254
136.389
138.405
139.145
139.611
140.246
141.12
142.124
143.148
144.134
145.071
145.965
146.792
147.472
148.038
148.606
149.126
149.284
148.994
148.513
148.828
149.86
151.249
153.009
153.946
156.053
157.061
0.0980091
0.101866
0.104644
0.105909
0.108783
0.111965
0.115496
0.119282
0.123012
0.126712
0.130351
0.133895
0.137623
0.141322
0.144696
0.148444
0.152192
0.156313
0.160124
0.163845
0.167268
0.170305
0.174129
0.17688
0.1797
0.183422
0.187256
0.191294
0.195724
0.200522
0.206091
0.214359
0.225625
0.235779
0.243837
0.252247
0.263002
0.28384
0.29662
0.309508
0.310922
0.319789
0.32561
0.327388
0.326354
0.322982
0.31698
0.308648
0.296746
0.281606
0.270782
0.257035
0.243378
0.228745
0.211834
0.197544
0.183621
0.170304
0.1577
0.146046
0.13562
0.126699
0.119529
0.114102
0.110095
0.108187
0.109613
0.111889
0.111649
0.120476
0.156713
0.160672
3.9156
79.1141
137.827
138.996
140.153
140.415
140.994
141.845
142.839
143.851
144.817
145.729
146.59
147.348
147.882
148.277
148.793
149.375
149.488
148.963
148.092
148.444
149.844
151.622
153.71
154.799
157.44
157.996
0.098064
0.101204
0.102584
0.104818
0.107721
0.110772
0.114193
0.117916
0.121534
0.125147
0.129576
0.133942
0.137256
0.140135
0.143441
0.146503
0.149829
0.153769
0.157222
0.160703
0.163993
0.16714
0.170558
0.173405
0.176265
0.179712
0.183324
0.187109
0.191335
0.19584
0.200604
0.209389
0.222272
0.232122
0.239468
0.247251
0.255786
0.269902
0.288992
0.301473
0.313554
0.315082
0.320786
0.323598
0.323177
0.320103
0.314313
0.306028
0.295001
0.28128
0.269608
0.255845
0.241931
0.228708
0.207676
0.193299
0.179239
0.165708
0.152904
0.141116
0.130634
0.121699
0.114488
0.108995
0.10509
0.103295
0.104126
0.105857
0.107348
0.113959
0.125245
0.0971105
-0.203845
18.7861
134.025
139.578
140.919
141.067
141.67
142.545
143.553
144.558
145.5
146.384
147.215
147.894
148.246
148.413
148.845
149.468
149.477
148.605
147.065
147.544
149.652
151.923
154.298
155.686
158.206
158.808
0.097538
0.0997812
0.101279
0.103897
0.106893
0.109664
0.112839
0.116746
0.121203
0.126331
0.130275
0.133727
0.137255
0.14102
0.14462
0.15014
0.151865
0.150842
0.154335
0.157514
0.160694
0.163837
0.166996
0.169895
0.172747
0.175956
0.179344
0.182819
0.18663
0.19052
0.198302
0.214997
0.229505
0.228772
0.234663
0.241852
0.249634
0.258753
0.277979
0.292236
0.306843
0.308107
0.314562
0.318954
0.319351
0.316823
0.311429
0.303354
0.292883
0.280094
0.267974
0.254807
0.244594
0.238478
0.213612
0.188685
0.174571
0.160831
0.147802
0.135834
0.125267
0.1163
0.109061
0.103557
0.0997438
0.0979454
0.0982858
0.0997283
0.101848
0.105921
0.111583
0.0891299
-0.0392058
1.23674
63.0875
140.441
141.436
141.541
142.242
143.218
144.272
145.274
146.186
147.048
147.868
148.498
148.69
148.605
148.91
149.475
149.183
147.804
144.902
145.418
148.65
151.958
154.601
156.565
157.777
159.818
0.0969223
0.0980833
0.100403
0.102949
0.105528
0.108443
0.112298
0.118516
0.122067
0.125137
0.128295
0.131572
0.13511
0.139594
0.143858
0.148708
0.146954
0.148219
0.151362
0.154292
0.157361
0.160445
0.163406
0.166369
0.169181
0.172174
0.17536
0.178487
0.181953
0.185323
0.219688
0.269199
0.256379
0.256228
0.241815
0.235867
0.242944
0.251412
0.261511
0.282484
0.297656
0.310108
0.308994
0.313473
0.314819
0.313066
0.308213
0.300435
0.290378
0.278195
0.265771
0.25264
0.253759
0.236016
0.202147
0.184042
0.16971
0.155666
0.142353
0.130148
0.119463
0.110447
0.103186
0.0977023
0.0939753
0.0921484
0.0921325
0.0932864
0.0952028
0.0974329
0.0997069
0.0808903
0.0315041
0.348219
12.4246
122.167
141.707
141.742
142.692
143.865
145.01
146.008
146.878
147.726
148.577
149.232
149.36
149.111
149.235
149.523
148.504
146.391
142.125
137.702
144.323
151.965
154.555
157.242
157.072
155.399
0.095374
0.0972384
0.0995646
0.101995
0.104436
0.106915
0.117454
0.118448
0.12065
0.123404
0.126306
0.129315
0.132072
0.133818
0.135126
0.138887
0.143498
0.145855
0.149787
0.152997
0.154229
0.157014
0.159758
0.163339
0.167285
0.170029
0.172063
0.174202
0.177338
0.180428
0.183296
0.23272
0.253381
0.248223
0.253213
0.245119
0.2357
0.243469
0.252994
0.265561
0.287201
0.301091
0.301262
0.30673
0.309485
0.308712
0.304542
0.297087
0.28738
0.275646
0.262969
0.2493
0.248636
0.228692
0.195563
0.179554
0.164677
0.150156
0.136474
0.124
0.113169
0.104093
0.0968182
0.0913792
0.0877502
0.0859297
0.0857115
0.0866381
0.0882011
0.0893484
0.0881575
0.0723628
0.0596207
0.142925
0.0251586
38.0574
140.622
141.911
143.112
144.506
145.78
146.767
147.571
148.414
149.357
150.147
150.385
150.145
150.082
149.748
147.497
144.659
141.041
140.05
141.646
150.756
154.507
157.202
154.791
150.541
0.0951571
0.096597
0.0987113
0.101036
0.103413
0.106497
0.115574
0.116838
0.119093
0.121576
0.123898
0.125282
0.126877
0.130057
0.134339
0.137267
0.13926
0.143427
0.14674
0.150965
0.151055
0.153679
0.157032
0.162609
0.165322
0.167954
0.171143
0.171514
0.173014
0.176345
0.179994
0.191584
0.21835
0.238409
0.245086
0.252934
0.235915
0.235068
0.243539
0.253565
0.27561
0.289779
0.301219
0.300215
0.303261
0.303652
0.300306
0.293142
0.28379
0.272484
0.259575
0.245104
0.243007
0.210539
0.191309
0.174987
0.159356
0.144264
0.130135
0.117315
0.106325
0.0971912
0.0899205
0.0845543
0.0810571
0.079316
0.0790573
0.079881
0.0811949
0.0818496
0.079997
0.0717193
0.0750357
0.10284
0.145609
2.83529
84.0074
142.61
143.624
145.186
146.599
147.557
148.25
149.09
150.183
151.249
151.802
151.819
151.602
150.309
146.417
144.732
141.113
141.635
140.995
142.851
153.78
156.694
145.445
142.115
0.0945034
0.0956726
0.0980151
0.10009
0.10242
0.104922
0.107907
0.114211
0.117183
0.117846
0.11883
0.121555
0.124573
0.128289
0.13098
0.133746
0.137111
0.140489
0.143365
0.144818
0.147617
0.157232
0.158564
0.159325
0.161628
0.164024
0.167604
0.171789
0.168999
0.172404
0.177257
0.186898
0.195207
0.219893
0.237414
0.24522
0.24915
0.228428
0.233795
0.243251
0.257937
0.279615
0.293123
0.29262
0.29585
0.297873
0.2955
0.288429
0.279551
0.268815
0.255848
0.2455
0.234651
0.204707
0.186594
0.169912
0.153556
0.137917
0.123686
0.110338
0.0988617
0.0896997
0.0824661
0.0772025
0.0738892
0.072321
0.0721768
0.0730596
0.0743569
0.0750588
0.0738504
0.0699215
0.0734983
0.0857694
0.0946663
0.0774162
10.8797
123.408
144.344
145.97
147.503
148.379
148.886
149.723
151.033
152.443
153.524
154.05
153.777
151.208
145.168
142.855
139.507
136.672
138.845
141.838
145.362
156.342
133.772
133.52
0.0944053
0.0950995
0.0972624
0.0991555
0.10138
0.104002
0.10656
0.108859
0.111277
0.114004
0.116733
0.119334
0.122032
0.125152
0.128967
0.131409
0.134364
0.137073
0.138838
0.141613
0.14438
0.149005
0.15384
0.1557
0.157832
0.159801
0.1623
0.162711
0.164561
0.168066
0.173352
0.181942
0.191139
0.197698
0.219698
0.237334
0.24414
0.225413
0.223606
0.231983
0.243722
0.268122
0.282083
0.289175
0.287398
0.29145
0.289995
0.284173
0.277508
0.26471
0.251811
0.252254
0.222625
0.198907
0.181364
0.164186
0.147204
0.13177
0.116916
0.103653
0.0909544
0.0816237
0.0744365
0.0692935
0.0662336
0.0649458
0.0650671
0.0661878
0.0677138
0.068813
0.0686708
0.067619
0.0713437
0.0797622
0.0790862
0.0676291
0.120382
27.9533
139.799
146.808
148.497
149.234
149.418
150.258
151.838
153.637
155.355
156.445
156.26
152.102
144.052
139.326
138.195
140.369
135.449
141.111
140.511
155.637
123.792
127.062
0.0950817
0.0940567
0.0962053
0.0982343
0.100935
0.102744
0.105031
0.107306
0.109623
0.112143
0.114659
0.117092
0.121533
0.124347
0.1268
0.128906
0.130865
0.132836
0.135681
0.138342
0.140611
0.143284
0.146386
0.150322
0.152755
0.153365
0.155281
0.157512
0.160135
0.163597
0.175801
0.183983
0.181688
0.191568
0.196219
0.220808
0.235255
0.234963
0.213865
0.220328
0.231644
0.254969
0.271045
0.284345
0.279032
0.284456
0.284066
0.288126
0.28557
0.267441
0.249688
0.248194
0.210874
0.192608
0.175379
0.157698
0.140177
0.124243
0.108496
0.0948131
0.0823393
0.0729707
0.0657884
0.060782
0.0580699
0.0571817
0.0577161
0.0592487
0.0612298
0.0630031
0.0640711
0.0649263
0.0686285
0.074613
0.0736574
0.0683728
0.0600675
0.10167
52.12
147.363
149.659
150.087
149.757
150.592
152.501
155.26
157.076
158.835
158.638
153.528
143.142
135.855
134.961
141.063
142.015
141.733
140.311
155.337
116.215
102.444
0.0917892
0.0933636
0.0953903
0.0975571
0.100528
0.102462
0.104212
0.105564
0.107927
0.110275
0.112623
0.11501
0.12035
0.121845
0.122963
0.124777
0.127263
0.129908
0.132563
0.135076
0.137349
0.139825
0.142691
0.145167
0.14746
0.150348
0.151318
0.153215
0.155538
0.159915
0.180294
0.180074
0.181686
0.180821
0.188312
0.191656
0.226439
0.235243
0.204008
0.208091
0.219294
0.234028
0.257987
0.272416
0.270507
0.276625
0.277211
0.28814
0.278384
0.266187
0.256431
0.239394
0.204776
0.186165
0.1687
0.150374
0.132267
0.115535
0.0992483
0.0853217
0.0730957
0.0635786
0.0564599
0.0516195
0.0493734
0.049009
0.0501059
0.0522135
0.0548349
0.0574469
0.0597239
0.0620562
0.0659987
0.070636
0.0710622
0.0724949
0.0708209
0.0608564
0.195304
84.3985
151.233
150.878
149.843
150.675
153.234
156.106
158.581
160.847
160.835
154.763
143.323
134.594
133.198
139.834
150.116
142.255
145.717
157.799
102.061
94.0469
0.0911973
0.0926368
0.0944907
0.0972199
0.0994581
0.101368
0.103784
0.104475
0.10625
0.108437
0.110601
0.112913
0.114881
0.117421
0.119459
0.121988
0.124493
0.126968
0.129449
0.131819
0.133995
0.136263
0.138758
0.141669
0.143468
0.14514
0.146449
0.148342
0.150682
0.152907
0.156288
0.165546
0.175023
0.175817
0.178187
0.179808
0.197803
0.222488
0.230181
0.196461
0.207473
0.220257
0.244019
0.259245
0.26017
0.267511
0.269894
0.27934
0.271467
0.25897
0.249967
0.221701
0.196922
0.179156
0.16123
0.142184
0.124872
0.105788
0.089028
0.0743889
0.0643786
0.0555299
0.0465791
0.0417192
0.04008
0.0403864
0.0422109
0.0450477
0.0484607
0.0520184
0.0554723
0.0590496
0.063449
0.0677609
0.0708351
0.0729213
0.0757505
0.0877452
0.202485
0.912038
106.454
151.444
149.479
150.483
153.504
157.069
159.913
161.844
162.331
156.57
144.939
135.462
133.669
137.554
149.501
149.007
156.816
161.523
84.3158
92.0804
0.0906808
0.0918893
0.0936563
0.0967546
0.0983694
0.100177
0.102338
0.102869
0.10451
0.106911
0.109347
0.110675
0.112698
0.114981
0.117078
0.119368
0.121704
0.124013
0.126333
0.128559
0.1306
0.132709
0.135183
0.136873
0.138845
0.141693
0.144259
0.146808
0.145945
0.148042
0.150646
0.153698
0.158639
0.169452
0.172779
0.170414
0.169826
0.189921
0.221944
0.19802
0.196136
0.206964
0.231517
0.24591
0.254437
0.256957
0.27058
0.268911
0.260902
0.249775
0.232109
0.206514
0.189114
0.171208
0.152847
0.132951
0.11324
0.0944529
0.0779939
0.0672834
0.056966
0.0482016
0.0395148
0.03106
0.0300808
0.0312758
0.0340102
0.0377208
0.0420502
0.046626
0.0512268
0.0559826
0.0610762
0.0657336
0.069277
0.0904955
0.0986996
0.0911688
0.201773
0.321852
2.65772
103.795
147.468
149.713
153.893
157.896
160.42
163.235
162.832
157.428
146.83
137.555
136.32
138.367
145.556
155.699
162.836
163.502
79.0283
89.7423
0.0900674
0.0910969
0.0935923
0.0957238
0.0972199
0.0986299
0.0997327
0.101299
0.102958
0.105047
0.107347
0.108655
0.110502
0.112604
0.114631
0.11674
0.118902
0.121044
0.123217
0.125299
0.127344
0.130226
0.132153
0.133467
0.135031
0.137486
0.139557
0.140618
0.14113
0.142954
0.145058
0.147364
0.148784
0.155601
0.165478
0.161154
0.16036
0.162526
0.172623
0.192893
0.188666
0.193439
0.216205
0.232828
0.243256
0.245637
0.259543
0.257438
0.250153
0.23407
0.214126
0.198379
0.181085
0.162796
0.145545
0.124671
0.102092
0.0827822
0.0660095
0.0562367
0.0441452
0.0357274
0.0327165
0.0247012
0.0194875
0.0217006
0.0254948
0.0302088
0.0355623
0.0412159
0.0469538
0.0527567
0.058695
0.0642552
0.0683043
0.0717598
0.103928
0.174773
0.187653
0.262011
0.197434
4.79438
86.4788
146.211
154.134
158.814
161.265
162.615
163.017
158.751
148.958
140.013
139.919
140.402
148.669
158.559
167.963
169.243
81.4654
90.1249
0.0929123
0.0927204
0.092383
0.0938417
0.0952206
0.0967423
0.0983344
0.0996564
0.10158
0.103049
0.104643
0.106323
0.108278
0.110234
0.112153
0.114096
0.116087
0.118063
0.120102
0.122145
0.125207
0.126811
0.128301
0.129698
0.130982
0.132187
0.133474
0.134666
0.136156
0.137713
0.139305
0.140965
0.142129
0.143275
0.149616
0.147511
0.149823
0.152724
0.154712
0.167419
0.181118
0.182376
0.195709
0.220621
0.231289
0.233258
0.242366
0.246151
0.239699
0.228243
0.206369
0.189765
0.172027
0.153308
0.137627
0.115442
0.0894438
0.0690924
0.0540838
0.0424062
0.0300199
0.0215545
0.0174671
0.00868699
0.00841599
0.0116495
0.0166411
0.0224917
0.0289808
0.0357616
0.0426447
0.0495433
0.056451
0.0630625
0.0688697
0.0742376
0.0792475
0.234591
0.284595
0.215136
0.194221
0.116369
7.26397
86.8402
152.438
159.934
161.526
163.007
161.738
157.962
150.866
141.693
138.94
144.251
154.451
162.543
173.121
177.189
88.4295
91.6681
0.0945393
0.095324
0.0916969
0.092915
0.0941425
0.0955276
0.0967839
0.0992579
0.0997882
0.100891
0.102548
0.104253
0.106056
0.10794
0.109781
0.111521
0.113263
0.115058
0.116977
0.120138
0.121814
0.123155
0.124433
0.125219
0.125783
0.126965
0.128588
0.129927
0.131232
0.132344
0.133389
0.134469
0.135356
0.135952
0.136685
0.138782
0.142704
0.14196
0.145748
0.150726
0.159038
0.170826
0.182656
0.208764
0.219166
0.22075
0.226312
0.235355
0.230674
0.215583
0.195084
0.179474
0.161765
0.14251
0.125827
0.102579
0.0757356
0.054485
0.044505
0.0277796
0.0146499
0.00344436
-0.00269864
-0.00376872
-0.00336393
0.00100681
0.00739238
0.0145608
0.0222948
0.0302838
0.0383033
0.0463256
0.054284
0.0620402
0.0695621
0.0772301
0.0857499
0.110718
0.280811
0.278196
0.179022
0.133318
0.188851
15.6885
105.187
158.789
161.46
163.023
162.756
159.267
151.397
143.814
144.53
148.31
158.598
167.091
177.092
184.804
92.8657
92.7034
0.0939495
0.0945542
0.0913231
0.0919941
0.0930335
0.0940967
0.0974317
0.0997566
0.0975452
0.099005
0.10057
0.102171
0.103921
0.10565
0.107327
0.109034
0.110434
0.112006
0.1154
0.117294
0.118379
0.119518
0.119918
0.120233
0.121444
0.122676
0.123988
0.125142
0.126274
0.126879
0.127322
0.127904
0.128537
0.129131
0.129427
0.130475
0.13327
0.135797
0.137107
0.140395
0.148321
0.159295
0.170047
0.191196
0.205932
0.215538
0.214926
0.223213
0.221186
0.220014
0.183552
0.167672
0.150342
0.130789
0.112934
0.0857423
0.0611169
0.0405684
0.0297007
0.0108929
-0.00659579
-0.0137156
-0.0174339
-0.0187368
-0.0147249
-0.0103603
-0.00228528
0.00636565
0.0154403
0.0247161
0.0339672
0.0431143
0.0521747
0.0610934
0.0701348
0.0799651
0.0905369
0.11846
0.267651
0.278847
0.243407
0.144561
0.120272
0.185135
28.0196
118.601
152.949
160.426
161.78
158.192
150.933
149.316
142.139
149.694
160.718
170.505
179.68
192.606
97.2774
93.2108
0.0929838
0.0934695
0.0907477
0.0910191
0.0918576
0.0944549
0.0958969
0.096283
0.0956783
0.0971438
0.0986102
0.100153
0.101739
0.103279
0.104811
0.106215
0.107624
0.109132
0.113411
0.113956
0.114507
0.114662
0.115408
0.116323
0.117317
0.118326
0.119369
0.120321
0.121579
0.121645
0.12139
0.122159
0.122931
0.121744
0.121382
0.120863
0.12224
0.124805
0.126974
0.130274
0.137925
0.147946
0.158552
0.170488
0.192456
0.203298
0.204318
0.206867
0.20911
0.209175
0.173433
0.155163
0.138055
0.118346
0.0989735
0.0706192
0.0458148
0.0246407
0.00699687
-0.0121198
-0.0246569
-0.0315847
-0.0348008
-0.0315906
-0.0258559
-0.0209466
-0.0123171
-0.00205915
0.00843821
0.0190852
0.0296166
0.0399245
0.0501018
0.0601612
0.0704627
0.0815883
0.0932335
0.107141
0.166489
0.282235
0.282978
0.130168
0.120802
0.138954
0.144826
29.292
112.842
145.694
148.534
151.803
148.497
151.01
152.575
151.995
163.472
175.463
183.799
193.847
103.771
93.5775
0.0915394
0.0927337
0.0905353
0.0896942
0.0913603
0.0930159
0.0941958
0.0933408
0.0939848
0.0953149
0.0966709
0.0981259
0.0995143
0.100911
0.102297
0.103519
0.104818
0.106135
0.107445
0.108953
0.109764
0.110762
0.111613
0.11238
0.113162
0.113931
0.114687
0.116683
0.120372
0.121409
0.122923
0.122859
0.120593
0.118076
0.114255
0.113324
0.11322
0.113567
0.115421
0.12034
0.127589
0.136772
0.146937
0.15717
0.180437
0.191353
0.1893
0.188271
0.191177
0.182359
0.160754
0.142433
0.125244
0.106062
0.0835447
0.0559436
0.0300804
0.0062331
-0.0142583
-0.0313278
-0.044282
-0.0509301
-0.0499664
-0.0478494
-0.041022
-0.0330986
-0.0226357
-0.0107426
0.00122887
0.0133887
0.0252502
0.0368002
0.0480509
0.0591913
0.0705333
0.0825409
0.0949876
0.110329
0.13247
0.234952
0.278013
0.19847
0.127086
0.145072
0.150334
0.199453
21.9539
113.326
154.853
146.669
139.721
143.939
145.84
163.298
169.924
177.639
188.066
195.466
118.015
93.8196
0.0893631
0.0921397
0.0936285
0.0940344
0.0945609
0.0913692
0.090778
0.0913156
0.0923383
0.0934997
0.0948193
0.0960435
0.0972924
0.0985488
0.0997014
0.100857
0.102028
0.10307
0.104161
0.105359
0.106307
0.107145
0.107822
0.108415
0.108988
0.109525
0.109973
0.117117
0.116688
0.115878
0.11485
0.113249
0.1141
0.111238
0.109391
0.105158
0.104773
0.104795
0.106357
0.110623
0.117329
0.125695
0.135076
0.143839
0.167784
0.178328
0.184484
0.175768
0.167328
0.156767
0.145024
0.129839
0.111827
0.0952126
0.0699028
0.0401794
0.0135588
-0.0115671
-0.0330929
-0.0512628
-0.0648975
-0.0700586
-0.0688147
-0.0654477
-0.0572672
-0.0462105
-0.0337455
-0.0197489
-0.00613066
0.00763843
0.0208666
0.0336299
0.0460225
0.0581651
0.0703488
0.0829003
0.0957862
0.110875
0.12975
0.130794
0.173973
0.106525
0.134928
0.153159
0.16693
0.193436
0.18735
5.98156
71.1107
137.08
146.793
147.431
147.905
151.726
169.564
177.677
189.141
197.307
135.89
93.865
0.087748
0.0912209
0.0920793
0.0937194
0.089273
0.0892885
0.0895875
0.0898134
0.0906864
0.0918317
0.0928803
0.0939652
0.0950768
0.0961416
0.0971512
0.0982199
0.099239
0.100176
0.101116
0.102078
0.102858
0.103516
0.104164
0.104501
0.104812
0.105119
0.105928
0.105352
0.105634
0.105902
0.106801
0.107566
0.105158
0.104106
0.102498
0.0994614
0.0965591
0.0962077
0.0974259
0.101043
0.107138
0.114763
0.123361
0.13183
0.146391
0.166849
0.172692
0.160213
0.153814
0.143611
0.131491
0.116844
0.0983827
0.0790588
0.0555617
0.0239146
-0.0038258
-0.030126
-0.0529352
-0.07218
-0.0863083
-0.0928363
-0.0918324
-0.0848954
-0.0737903
-0.052968
-0.0379497
-0.0289944
-0.0136154
0.00187087
0.0165649
0.0305722
0.0440308
0.0570915
0.0699661
0.0828481
0.0958081
0.111049
0.123198
0.131351
0.128157
0.11754
0.14136
0.160352
0.176215
0.194281
0.202892
0.218864
0.286741
35.5168
147.428
159.239
147.109
155.691
162.107
175.183
187.521
196.173
131.651
93.8053
0.0867441
0.0876823
0.0877104
0.0865004
0.0879162
0.0882765
0.0878894
0.0882058
0.0890298
0.090067
0.0909267
0.0918885
0.0927877
0.093698
0.0946627
0.0955928
0.0964697
0.0972765
0.0980676
0.098824
0.0995127
0.100255
0.100666
0.101095
0.100702
0.10071
0.100663
0.100532
0.100332
0.100562
0.101163
0.101011
0.100151
0.0971643
0.0953927
0.0936026
0.0893272
0.0878423
0.088649
0.0916918
0.0969955
0.104153
0.112033
0.120517
0.12984
0.153383
0.159526
0.146807
0.139234
0.130251
0.118387
0.103368
0.0844354
0.0619687
0.0397905
0.00751269
-0.0219015
-0.0494265
-0.0735537
-0.0938723
-0.108763
-0.114397
-0.110659
-0.10359
-0.0899641
-0.0654701
-0.0465703
-0.0321629
-0.0213827
-0.00398562
0.0123258
0.0276094
0.0421037
0.0560109
0.0694948
0.0826446
0.0953119
0.109543
0.13364
0.132801
0.132665
0.129179
0.152312
0.1646
0.181233
0.195406
0.207197
0.223256
0.242002
0.136409
29.7661
142.652
164.529
155.05
165.128
170.94
182.73
189.783
119.08
94.9318
0.0847645
0.0869989
0.0871279
0.085795
0.0863631
0.086852
0.087668
0.0868504
0.0873586
0.0880354
0.0888613
0.0896755
0.0905128
0.0913605
0.0921873
0.092977
0.0937106
0.0943796
0.0950253
0.0956572
0.0963587
0.0966617
0.0968797
0.0971237
0.0965467
0.0963138
0.0960566
0.095771
0.0953215
0.0947936
0.0944634
0.0949536
0.0929819
0.0907463
0.0884772
0.0865599
0.0834175
0.0797935
0.0800719
0.0825853
0.0871688
0.0936717
0.100979
0.108954
0.116376
0.140769
0.147862
0.147342
0.124998
0.116337
0.104624
0.089378
0.0699093
0.0469981
0.0234266
-0.0093686
-0.0402623
-0.0690937
-0.094523
-0.11587
-0.131117
-0.136433
-0.13407
-0.122918
-0.105558
-0.0814365
-0.0593462
-0.0350992
-0.0281116
-0.0097746
0.00821856
0.0247822
0.0402799
0.0549715
0.0690397
0.0825994
0.0953823
0.105832
0.186155
0.215131
0.134504
0.135249
0.164944
0.166625
0.184058
0.201644
0.211417
0.230214
0.248549
0.196779
0.0850256
49.02
164.866
166.681
161.021
168.374
176.654
180.45
106.622
98.9055
0.0836726
0.0863502
0.0845492
0.0833554
0.0860597
0.0877434
0.0881875
0.086885
0.0857373
0.0862389
0.0868647
0.0875945
0.0883177
0.0890339
0.0897245
0.0903743
0.0909638
0.0914903
0.0920032
0.0927175
0.0929607
0.0930742
0.0930657
0.0926276
0.0922612
0.0919309
0.0914607
0.0910053
0.0902996
0.0909371
0.0918587
0.0897081
0.086804
0.0841445
0.081698
0.0797778
0.0785955
0.0723142
0.0717239
0.0736874
0.0776319
0.0834643
0.0901573
0.0972465
0.10354
0.125306
0.131777
0.135362
0.111925
0.102196
0.0903606
0.0748512
0.0549017
0.0311292
0.00703912
-0.0264846
-0.0586193
-0.0887443
-0.115313
-0.137431
-0.152726
-0.154971
-0.152365
-0.141891
-0.121974
-0.0967993
-0.072561
-0.0455562
-0.034744
-0.0151775
0.0043327
0.0221404
0.0386007
0.0540183
0.0686355
0.0826311
0.0956616
0.109196
0.152055
0.299438
0.135255
0.138962
0.170088
0.166583
0.184793
0.208924
0.215503
0.235058
0.258685
0.224078
0.135521
0.515814
109.278
167.306
165.522
166.492
171.899
173.286
106.281
102.688
0.0834826
0.0860181
0.0868658
0.089607
0.0884753
0.0870431
0.0866781
0.0867051
0.0844143
0.0844025
0.084914
0.0855359
0.0861318
0.0867203
0.0872762
0.0877865
0.0882297
0.0886053
0.0892601
0.0895416
0.0895936
0.0895078
0.0890293
0.0886265
0.088128
0.0875594
0.0868702
0.0862624
0.0856448
0.0882658
0.0860648
0.0834497
0.0803328
0.0756649
0.0729638
0.0723924
0.0718082
0.0673966
0.0636945
0.065066
0.068308
0.0737198
0.0796714
0.0857949
0.0920737
0.100321
0.118814
0.12033
0.101685
0.0880187
0.0758117
0.0599747
0.0395953
0.0195622
-0.00926627
-0.0431659
-0.0769237
-0.108049
-0.135473
-0.158021
-0.173592
-0.174116
-0.169343
-0.160253
-0.137982
-0.111946
-0.0860003
-0.0630697
-0.0420324
-0.0203338
0.00061721
0.0197202
0.0371128
0.0532055
0.0683064
0.0823622
0.0949157
0.108882
0.148299
0.306949
0.138172
0.150457
0.171642
0.182954
0.184367
0.211743
0.220397
0.237613
0.257821
0.243194
0.195268
0.451113
16.0723
149.185
164.978
165.4
169.733
172.371
115.543
101.4
0.0840704
0.0851636
0.0853197
0.0812571
0.0807243
0.0832401
0.0846656
0.0851453
0.0836326
0.0825129
0.082944
0.0834763
0.0839556
0.0844221
0.0848452
0.0852183
0.0855149
0.0859061
0.0864213
0.0863748
0.0862485
0.0857577
0.0852707
0.0847047
0.0840008
0.0831947
0.0822782
0.0816075
0.0829788
0.0829489
0.0804188
0.0773405
0.0713033
0.0680882
0.0651477
0.062105
0.0616508
0.0609318
0.0562758
0.0568021
0.0591651
0.0639037
0.0691546
0.074626
0.0805842
0.0859365
0.106457
0.107097
0.0878488
0.0734381
0.0611905
0.0449928
0.0243291
0.00418931
-0.025501
-0.0574656
-0.0948127
-0.126722
-0.15466
-0.177294
-0.192771
-0.188852
-0.183889
-0.173605
-0.153538
-0.133123
-0.106522
-0.0774676
-0.049251
-0.0254557
-0.00287401
0.017552
0.035873
0.052608
0.0681679
0.0820648
0.0937943
0.108483
0.193061
0.295946
0.14896
0.149674
0.159184
0.172706
0.185339
0.212229
0.224102
0.243392
0.267019
0.243128
0.239816
0.386164
0.0300891
63.8287
162.66
163.483
169.496
174.203
154.773
104.161
0.0814212
0.0840817
0.0813362
0.0795223
0.0796386
0.0814578
0.0827623
0.0834673
0.0837269
0.0816552
0.0809688
0.0814182
0.0817923
0.0821427
0.0824349
0.0826752
0.0828304
0.0832582
0.0834205
0.0832255
0.0828044
0.0821329
0.0815587
0.0808031
0.079883
0.0788165
0.0776497
0.0770455
0.079692
0.0775459
0.0748607
0.068982
0.0649261
0.0617667
0.0586017
0.0552967
0.0521336
0.0496768
0.0490154
0.0486473
0.0502722
0.0542079
0.0587641
0.0636488
0.0687587
0.0721883
0.0935617
0.0960706
0.0896575
0.0605596
0.0466439
0.0300409
0.00919638
-0.0157441
-0.0416045
-0.0737096
-0.111829
-0.144497
-0.172572
-0.194965
-0.209952
-0.207727
-0.199866
-0.187058
-0.167894
-0.147334
-0.118243
-0.086264
-0.0453529
-0.0282027
-0.00585562
0.0156745
0.034945
0.0523011
0.0683799
0.0822751
0.0938397
0.125489
0.272092
0.294746
0.195524
0.149846
0.155355
0.165505
0.185647
0.211039
0.230074
0.274547
0.297432
0.276261
0.271435
0.38693
0.284292
5.06169
149.021
160.337
170.324
176.156
174.065
114.211
0.0783692
0.0808793
0.078573
0.0781764
0.0783848
0.080406
0.0812053
0.0818598
0.0821666
0.0826919
0.0791282
0.0794038
0.0796567
0.0799097
0.080126
0.0801986
0.0801742
0.0800673
0.0801296
0.0798464
0.0792254
0.0786364
0.0778814
0.0769302
0.075786
0.0744278
0.072891
0.0753694
0.0747981
0.0722819
0.0692791
0.0624173
0.0588882
0.0555193
0.0521428
0.0486688
0.0452937
0.0423604
0.040793
0.0404902
0.0414796
0.0443323
0.0485158
0.0528804
0.0569695
0.0597678
0.0707516
0.08031
0.0776861
0.0477278
0.0322717
0.0152001
-0.0058844
-0.0313875
-0.0572732
-0.0900042
-0.126671
-0.161064
-0.18895
-0.210856
-0.225103
-0.22655
-0.214315
-0.200538
-0.183531
-0.160012
-0.129226
-0.095352
-0.049852
-0.0178838
-0.00810321
0.0142287
0.0343696
0.0523458
0.0690353
0.083143
0.0950487
0.138575
0.271306
0.294601
0.291688
0.146972
0.155436
0.165242
0.183873
0.208553
0.240155
0.281568
0.302695
0.294432
0.290925
0.375266
0.346522
0.406737
83.3421
154.357
171.517
178.529
180.616
160.739
0.077802
0.0774519
0.0768366
0.0768218
0.0766938
0.0797812
0.0804542
0.0801911
0.0801154
0.0785052
0.0774702
0.0774911
0.077562
0.0777852
0.0778555
0.0778757
0.0775469
0.0773165
0.0770358
0.0765958
0.0759635
0.0751877
0.0742417
0.0730941
0.0717341
0.0701248
0.0681733
0.0736803
0.0698557
0.0671574
0.0607113
0.0561768
0.0529162
0.0493381
0.045774
0.0421238
0.0385029
0.0352994
0.0331382
0.0322862
0.0327554
0.0346696
0.038374
0.0421012
0.0457614
0.0484615
0.0514149
0.0665298
0.0622148
0.0366976
0.0179143
0.000600692
-0.0207427
-0.0466509
-0.0755227
-0.107305
-0.142888
-0.176095
-0.203655
-0.224951
-0.238305
-0.241926
-0.229659
-0.21237
-0.199255
-0.171296
-0.139364
-0.102714
-0.0562191
-0.019612
-0.0100868
0.0134754
0.0341417
0.0528195
0.070203
0.0845826
0.0964862
0.147552
0.270721
0.294682
0.296329
0.148706
0.158048
0.165352
0.182926
0.205862
0.243336
0.282789
0.277691
0.272055
0.301377
0.353999
0.364469
0.416411
18.5786
148.81
174.592
182.281
189.333
205.833
0.0773051
0.0769363
0.0758371
0.0755654
0.0754371
0.0809943
0.0792651
0.0785439
0.0766088
0.0771591
0.0760677
0.0756141
0.0755616
0.0755787
0.075486
0.0752302
0.0749437
0.074581
0.0741474
0.0735528
0.0727327
0.0717742
0.0706418
0.0692999
0.0677347
0.0659277
0.0638276
0.0643417
0.0645549
0.0613441
0.0540649
0.0505345
0.0470291
0.0432317
0.0395003
0.0356738
0.0317802
0.0282396
0.0256386
0.0241835
0.0240406
0.0252746
0.0281077
0.0313822
0.0343526
0.0368245
0.0375444
0.0563331
0.0500113
0.0319799
0.00422761
-0.0135236
-0.0351511
-0.0612485
-0.0918646
-0.12459
-0.15824
-0.189497
-0.216643
-0.237297
-0.249893
-0.253076
-0.247164
-0.224466
-0.208931
-0.180938
-0.148465
-0.105243
-0.062004
-0.0341163
-0.0108962
0.0130055
0.0389316
0.0593043
0.0720436
0.0867373
0.0987349
0.148238
0.274068
0.297718
0.253051
0.158101
0.160433
0.165433
0.181588
0.202333
0.242948
0.279378
0.262943
0.276895
0.307101
0.351349
0.357141
0.522345
18.3867
152.917
180.096
187.731
192.046
191.157
0.079508
0.0759603
0.0746408
0.0743461
0.0738934
0.0739382
0.0769573
0.0756384
0.0757235
0.0754796
0.0744479
0.0736858
0.0736683
0.0733417
0.0730877
0.0727901
0.0723849
0.0718729
0.0712719
0.0705152
0.0695974
0.0684224
0.0670837
0.0655502
0.0637879
0.0617958
0.0595032
0.0570085
0.056175
0.0520788
0.0487449
0.0449696
0.0411983
0.0371606
0.0333358
0.0305574
0.0262963
0.0215393
0.0181585
0.016117
0.015368
0.0159338
0.0176224
0.020743
0.0229275
0.0248959
0.0247158
0.0412667
0.0367641
0.0277492
-0.00791563
-0.0269936
-0.0489878
-0.0751073
-0.105432
-0.138021
-0.170877
-0.201483
-0.227912
-0.247873
-0.259746
-0.262352
-0.256469
-0.2399
-0.217112
-0.188599
-0.155274
-0.104035
-0.0664199
-0.0342444
-0.0114868
0.0137906
0.0469285
0.0674583
0.0747355
0.0897733
0.102721
0.131046
0.278311
0.302572
0.252897
0.16196
0.164428
0.165535
0.180087
0.19863
0.241388
0.257583
0.258281
0.277252
0.306864
0.341523
0.371685
0.505688
20.2018
135.363
187.636
194.034
194.571
192.101
0.0804448
0.0776841
0.0736095
0.073191
0.0727232
0.0723392
0.0724582
0.0729615
0.0733546
0.0767399
0.0768321
0.0735999
0.0714624
0.0711454
0.0708128
0.0704081
0.0698596
0.0692302
0.0685255
0.0675982
0.0665411
0.065124
0.0635716
0.0618461
0.0598888
0.0577072
0.0552639
0.0528227
0.0515878
0.047851
0.0433395
0.0394062
0.035396
0.0311386
0.0301777
0.0285877
0.0240438
0.0172936
0.0109005
0.00807531
0.0067245
0.00665234
0.00767499
0.0095791
0.0117074
0.013294
0.0135545
0.0136029
0.0249599
0.0155069
-0.016987
-0.0398394
-0.0621574
-0.0881572
-0.118056
-0.150059
-0.182051
-0.211859
-0.237463
-0.256652
-0.26779
-0.269817
-0.263246
-0.247535
-0.22237
-0.19411
-0.160239
-0.108336
-0.0698448
-0.0371203
-0.012232
0.0143683
0.0477592
0.0685532
0.0781853
0.0932262
0.107198
0.123419
0.252214
0.300063
0.297054
0.184292
0.160115
0.166713
0.178145
0.194446
0.226479
0.233017
0.24992
0.27304
0.302798
0.334595
0.375782
0.471898
26.5481
149.96
198.455
201.678
197.929
197.523
0.0798726
0.0771109
0.0726533
0.0720866
0.0715416
0.0711891
0.0711758
0.0715247
0.0777938
0.0780667
0.0777831
0.075911
0.069449
0.0690105
0.068575
0.0680694
0.0673712
0.0666637
0.065751
0.0646612
0.0633849
0.0618066
0.0601071
0.0581899
0.0560344
0.0536434
0.0510107
0.0483862
0.0462758
0.0428231
0.0387595
0.0339381
0.0297547
0.0262503
0.0297203
0.0221841
0.0173224
0.0129857
0.00457781
4.17512e-05
-0.00188313
-0.00258354
-0.00217132
-0.000819837
0.00092337
0.0021341
0.00238997
9.65292e-05
0.0146155
0.00495695
-0.027629
-0.0522264
-0.074389
-0.100273
-0.129663
-0.160991
-0.191863
-0.220666
-0.245313
-0.263659
-0.274051
-0.275539
-0.268528
-0.252112
-0.226308
-0.196601
-0.164935
-0.113847
-0.0723232
-0.0349944
-0.011979
0.015724
0.0481754
0.0703615
0.0881217
0.0963127
0.110994
0.124135
0.180251
0.302401
0.324236
0.226623
0.16602
0.169081
0.1751
0.189931
0.210653
0.222899
0.23972
0.263928
0.294331
0.327817
0.379707
0.510598
20.23
152.007
210.3
211.244
200.19
204.41
0.0791622
0.073679
0.07164
0.0710117
0.0703314
0.069956
0.0698497
0.0702585
0.0792693
0.0763838
0.0760971
0.0762243
0.0676055
0.0669796
0.0664009
0.0657851
0.0649257
0.0640851
0.0630202
0.0617374
0.0602301
0.0585705
0.0566981
0.0545882
0.0522315
0.0496151
0.0467698
0.0445327
0.0431394
0.0393785
0.0367312
0.0285798
0.0242071
0.0194985
0.018728
0.0153288
0.0105148
0.00598551
-0.000831805
-0.00787417
-0.0104562
-0.0117836
-0.0119875
-0.0112899
-0.00979341
-0.0089276
-0.009077
-0.0122125
0.00120555
-0.00757801
-0.0251378
-0.062253
-0.0856608
-0.111327
-0.138535
-0.17057
-0.200352
-0.227986
-0.251526
-0.268952
-0.27858
-0.279515
-0.271962
-0.255405
-0.228652
-0.198904
-0.166982
-0.12485
-0.0739539
-0.0346118
-0.0108361
0.0176697
0.0449625
0.0728611
0.0925668
0.0996303
0.114393
0.128194
0.160911
0.310269
0.30906
0.175195
0.172652
0.171011
0.17679
0.194181
0.199474
0.210202
0.225591
0.249349
0.280766
0.318564
0.389344
0.569818
23.3189
166.921
219.709
220.877
206.983
210.637
0.0764112
0.0720651
0.0707197
0.0699069
0.0691888
0.0693173
0.0684402
0.0680128
0.07011
0.0741014
0.0741181
0.0699029
0.0658158
0.0650679
0.0643111
0.0635593
0.0625169
0.0615357
0.0602875
0.0588355
0.0572334
0.0554066
0.0533491
0.0510459
0.0484869
0.045642
0.0425412
0.042519
0.0386383
0.0345718
0.0297384
0.0233585
0.018769
0.0139834
0.0101958
0.0078313
0.00390309
-0.000937168
-0.00679343
-0.0155912
-0.0189632
-0.0209406
-0.0217841
-0.0208372
-0.0192042
-0.0190551
-0.0203094
-0.0230284
-0.025927
-0.0171675
-0.0324109
-0.0712826
-0.0962977
-0.121597
-0.146332
-0.178031
-0.20759
-0.233892
-0.256193
-0.272619
-0.281441
-0.281759
-0.273578
-0.25747
-0.231937
-0.203248
-0.167625
-0.126669
-0.0743576
-0.0338713
-0.0031374
0.020112
0.0470908
0.0756535
0.0956567
0.103285
0.118251
0.132139
0.148695
0.255511
0.310825
0.175144
0.173737
0.172057
0.173534
0.187526
0.188348
0.198431
0.207429
0.229835
0.26331
0.310062
0.398187
0.532872
14.1337
162.923
231.963
229.888
216.769
215.885
0.0731005
0.0712084
0.069805
0.0688521
0.0684431
0.0688274
0.0681126
0.0670238
0.0671571
0.0700233
0.0723906
0.0676163
0.0641795
0.0631113
0.0623535
0.0614337
0.0602021
0.0589934
0.0575959
0.0560306
0.0542665
0.0522722
0.0500346
0.0475424
0.0447864
0.0417401
0.0383833
0.0383857
0.0340609
0.0296153
0.0233083
0.0181355
0.0133778
0.00852395
0.00444907
0.00133351
-0.00260767
-0.00785024
-0.0134147
-0.0232593
-0.0273892
-0.0300272
-0.0315246
-0.0312102
-0.0297429
-0.0291836
-0.0313885
-0.0335875
-0.0379699
-0.0274788
-0.0422331
-0.0796031
-0.106767
-0.130093
-0.157218
-0.185796
-0.213672
-0.238413
-0.259422
-0.274762
-0.282727
-0.282387
-0.273638
-0.257077
-0.233166
-0.203336
-0.167597
-0.127454
-0.0812013
-0.0329622
0.00422903
0.0225461
0.0501771
0.0786453
0.0990485
0.106835
0.122345
0.136535
0.151562
0.188949
0.326001
0.175303
0.170119
0.171566
0.168683
0.171116
0.172991
0.183113
0.19848
0.206729
0.241432
0.295449
0.384385
0.454897
14.8346
164.923
240.278
236.502
221.45
218.401
0.073241
0.0700059
0.0687714
0.0679688
0.0676946
0.0678659
0.0670427
0.0657081
0.0656838
0.0668114
0.0700299
0.0664937
0.062022
0.0610549
0.0602734
0.0611564
0.0586361
0.056442
0.0549281
0.0532024
0.0512778
0.0491208
0.0467148
0.0440477
0.0411074
0.0378753
0.0343535
0.0318561
0.0295856
0.0240636
0.0181218
0.0129817
0.00794678
0.00286375
-0.00189011
-0.00475984
-0.0093073
-0.0149989
-0.0211864
-0.0311257
-0.0357775
-0.0390612
-0.0412088
-0.0420919
-0.0403677
-0.0398546
-0.0418562
-0.0439735
-0.0477558
-0.0380791
-0.0505613
-0.0805197
-0.114374
-0.138982
-0.165131
-0.192027
-0.218753
-0.24183
-0.261431
-0.275525
-0.282563
-0.281557
-0.272337
-0.255491
-0.231878
-0.202049
-0.166672
-0.127097
-0.0848475
-0.0323731
0.00614129
0.024767
0.0529713
0.0822673
0.100987
0.110735
0.126185
0.140326
0.155303
0.193334
0.331718
0.180774
0.172044
0.170904
0.164064
0.151315
0.156133
0.163832
0.178662
0.189325
0.20753
0.253709
0.320944
0.333376
8.06634
133.709
217.742
225.437
221.573
234.141
97.1605
105.914
102.851
66.066
17.7478
3.08267
0.333288
0.191466
0.167132
0.144217
0.139604
0.558014
0.182478
0.120124
0.106811
0.0866378
0.0616468
0.0336691
-0.00340141
-0.0411238
0.0650979
0.0795769
0.0263214
-0.0865564
-0.00677415
0.0179005
0.110457
0.210947
0.311797
0.361062
0.424361
0.404007
0.38703
0.394077
0.396112
0.394916
0.399483
0.40624
0.405031
0.394271
0.379853
0.367553
0.755281
1.27093
1.25846
0.526013
0.412758
0.422226
0.53684
0.537916
0.539883
0.534257
0.327834
0.348331
0.32421
0.326293
0.30458
0.74686
0.712625
4.25239
1.34194
0.814958
0.242722
0.235803
0.26924
0.529082
0.232857
0.164519
0.168141
0.174946
0.187481
0.198567
0.201271
0.202461
0.202522
0.18878
0.18764
0.187318
0.186806
0.187263
0.195824
0.18593
0.183631
0.182811
0.182037
0.184838
0.18574
0.179442
0.178928
0.178461
0.178034
0.177641
0.177276
0.176935
0.176621
0.176313
0.176015
0.175945
0.176021
0.175036
12.5598
7.76437
0.539401
0.341267
0.30509
0.281161
0.249482
0.225022
0.218128
0.218648
0.219004
0.226901
0.242056
0.255123
0.278235
0.261666
0.253692
0.239504
0.21552
0.291433
0.40954
0.370895
0.171483
0.162315
0.16805
0.217433
0.305491
0.349988
0.391012
0.433711
0.402572
0.424153
0.429741
0.431653
0.453425
0.663803
0.659191
0.721308
0.402443
0.311439
0.3043
0.293518
0.279002
0.383088
0.5359
0.806615
0.82484
0.608807
0.458547
0.386654
0.35318
0.33079
0.316283
0.335802
0.423913
1.65891
1.66568
1.63919
1.56095
1.20753
0.226991
0.198382
0.202243
0.204306
0.202669
0.200716
0.198878
0.194759
0.192761
0.193521
0.194518
0.197182
0.202189
0.201085
0.188737
0.183066
0.182519
0.182402
0.181734
0.180191
0.178294
0.177375
0.176514
0.175708
0.175684
0.176001
0.17334
0.172782
0.172276
0.17181
0.171375
0.170967
0.170581
0.170212
0.169854
0.169502
0.169181
0.168855
0.168438
0.16803
11.1019
9.82003
1.78744
0.437215
0.304318
0.267041
0.188965
0.138407
0.138348
0.143565
0.154825
0.171769
0.194284
0.228009
0.244093
0.246889
0.252348
0.252177
0.24084
0.249778
0.415895
0.478236
0.231476
0.245603
0.270501
0.316399
0.456461
0.430395
0.435108
0.455986
0.473828
0.575056
0.817061
1.23404
4.49838
3.22484
1.06395
1.1514
1.12578
0.918246
0.653222
0.497634
0.606224
0.605008
0.569311
0.347523
0.374086
0.410325
0.285793
0.239274
0.234027
0.768152
0.929998
0.934697
0.828832
0.76712
1.7076
1.68135
0.73537
0.364552
0.226007
0.158979
0.163966
0.169623
0.172344
0.17148
0.172293
0.172833
0.17392
0.172705
0.173407
0.17715
0.180318
0.172738
0.172829
0.173512
0.173187
0.17161
0.170775
0.170201
0.169572
0.168912
0.1683
0.167621
0.166879
0.1662
0.165611
0.165079
0.164592
0.164142
0.163723
0.16333
0.162956
0.162596
0.162248
0.161898
0.161538
0.161168
0.160781
0.160366
15.7684
15.6835
1.42377
0.181308
0.280078
0.225609
0.0679215
0.0416384
0.0337658
0.0342348
0.0519286
0.0733325
0.0931273
0.108769
0.120956
0.140782
0.158635
0.162278
0.158602
0.153789
0.187574
0.311056
0.148313
0.13044
0.105905
0.107931
0.267762
2.78864
7.34176
7.5103
6.82716
6.75686
6.9407
6.84553
5.77565
2.47571
0.966206
1.02313
0.949502
0.85485
0.77164
0.489212
0.216179
0.129513
0.125179
0.119293
0.114777
0.102916
0.107824
0.115087
0.127232
0.112796
0.12234
0.466797
0.817579
0.693729
0.880426
1.26909
0.936275
0.808407
0.582441
0.10572
0.116263
0.126734
0.137582
0.143904
0.148581
0.150181
0.150624
0.153376
0.156335
0.156485
0.157295
0.158152
0.158753
0.159112
0.159203
0.159213
0.159115
0.158942
0.158668
0.158332
0.157941
0.157516
0.157075
0.156634
0.156203
0.155788
0.155391
0.155015
0.154657
0.154314
0.153985
0.153665
0.15335
0.153035
0.152715
0.152382
0.152028
0.151646
16.7694
15.7251
0.776405
0.139984
0.267171
0.0718338
0.0487609
0.0431324
0.0462841
0.0455489
0.0494068
0.055454
0.0511175
0.0649058
0.0796709
0.0882289
0.0909059
0.0804957
0.0688047
0.0508192
0.0349151
0.0235659
-0.000140658
-0.0327366
-0.0726001
1.62873
7.02021
7.13263
7.26092
7.38674
7.38065
6.33307
3.94304
1.99626
0.487022
0.193263
0.0998259
0.0622809
0.0554321
0.0568208
0.0727335
0.141145
0.231532
0.218445
0.126572
0.0638295
0.0641004
0.0657744
0.0701153
0.0765411
0.0811953
0.0847352
0.0841211
0.0808159
0.0832248
0.226738
1.08566
0.964185
0.189527
0.0992617
0.105344
0.0916867
0.0981684
0.109054
0.117222
0.12066
0.126497
0.130591
0.134602
0.137796
0.140159
0.141961
0.143477
0.144638
0.145416
0.145932
0.146324
0.146554
0.146657
0.146653
0.146561
0.146396
0.146179
0.14592
0.145634
0.14533
0.145021
0.144714
0.144412
0.144117
0.143832
0.143556
0.143288
0.143026
0.142767
0.142508
0.142244
0.14197
0.141677
0.141361
17.7065
17.3043
1.26181
0.186885
0.208794
0.100944
0.09294
0.0859396
0.0766562
0.0765815
0.0847723
0.0750058
0.0811599
0.0894757
0.1011
0.118652
0.118252
0.129964
0.138185
0.14434
0.142809
0.142822
0.496551
0.688775
0.623505
3.19341
8.37701
8.42618
5.11138
4.06738
1.59622
0.117694
0.0644
0.0551412
0.0515124
0.0457676
0.0386667
0.0299294
0.0172683
0.00514912
-0.00660105
-0.0178235
-0.0319638
0.223797
0.183928
0.00295927
-0.0226632
-0.00835569
0.00645245
0.0194585
0.0297633
0.0386366
0.0453273
0.0539144
0.057302
0.0610265
0.722924
0.278699
0.117516
0.121457
0.12261
0.113502
0.11536
0.115731
0.11725
0.119321
0.121428
0.123538
0.125421
0.127073
0.128323
0.129515
0.130504
0.131289
0.131886
0.132334
0.132651
0.132854
0.132952
0.132966
0.13291
0.132799
0.132645
0.132459
0.132245
0.132019
0.131787
0.131552
0.131321
0.131096
0.130877
0.130667
0.130465
0.130267
0.130072
0.129875
0.129671
0.129453
0.129215
0.128954
18.9075
18.6437
1.68614
0.260586
0.241485
0.175284
0.165151
0.153794
0.141628
0.1302
0.12082
0.114865
0.117502
0.123036
0.131989
0.144186
0.154489
0.205376
2.81867
4.31516
4.30346
4.74888
4.4811
4.12923
4.00374
4.00894
2.87792
0.184075
0.172488
0.165918
0.142437
0.119797
0.101279
0.0790459
0.0563907
0.031483
0.00629164
-0.0169588
-0.0369198
-0.0200908
0.0256268
0.0552564
0.112714
0.263932
0.217478
0.0229593
-0.000326593
-0.00873002
-0.0101107
-0.00220157
0.021132
0.215692
0.352436
0.364435
0.27058
0.0830549
0.0993289
0.0882234
0.0874452
0.0915643
0.0968313
0.0964149
0.0995481
0.102305
0.104727
0.106859
0.108582
0.110091
0.111472
0.11266
0.113641
0.114477
0.11516
0.115701
0.116116
0.116444
0.116674
0.116815
0.116883
0.116889
0.116844
0.116758
0.116641
0.116502
0.116348
0.116186
0.116023
0.115863
0.11571
0.115566
0.115434
0.115312
0.115199
0.115092
0.114982
0.114861
0.114714
0.11452
0.114257
0.1139
20.6546
11.346
0.355254
0.364974
0.315706
0.230785
0.223239
0.213495
0.198933
0.176594
0.145237
0.108636
0.0746478
0.120923
0.429121
0.431053
0.373239
0.307801
0.152614
-0.0501815
-0.162375
-0.205644
-0.212066
-0.221056
-0.226751
-0.223024
-0.222724
-0.197357
-0.135348
-0.0971376
-0.0681704
-0.0514631
-0.0465299
-0.0374646
-0.0351962
-0.0383822
-0.0454175
-0.0553943
-0.00658332
0.21842
0.266733
0.258817
0.257227
0.260523
0.264297
0.27409
-0.0185979
-0.026134
0.00466738
0.113992
0.131109
0.130054
0.0131683
0.0299985
0.0209633
0.0186852
0.0351356
0.0476682
0.0581716
0.0656129
0.0706297
0.0754058
0.0794511
0.0828275
0.0857052
0.087918
0.0898477
0.0914745
0.0928246
0.0939397
0.0948525
0.0955878
0.0961721
0.0966343
0.0969984
0.0972536
0.097434
0.0975511
0.0976161
0.0976389
0.097629
0.0975946
0.0975437
0.0974832
0.0974195
0.0973583
0.0973046
0.0972627
0.0972362
0.0972277
0.0972385
0.0972686
0.0973158
0.0973762
0.0974428
0.0975046
0.0975472
0.0975557
0.0975135
0.0988439
1.29425
3.78398
0.307064
0.364216
0.29204
0.240919
0.245443
0.241803
0.221377
0.186097
0.128909
0.0542826
-0.0254533
0.152995
0.231497
0.131399
0.0573632
-0.262528
-0.506716
-0.544905
-0.579504
-0.603794
-0.613416
-0.615327
-0.577125
-0.519378
-0.458427
-0.39546
-0.320358
-0.249837
-0.194882
-0.147801
-0.121664
-0.094009
-0.067998
-0.0476006
-0.0321617
-0.00434188
0.188418
0.383696
0.0182303
-0.00955197
0.00302814
0.1049
0.0484447
-0.0186907
-0.0130565
0.0170361
0.0748769
0.0433083
-0.00121181
0.00876344
0.0111513
0.0181658
0.0259364
0.0338693
0.0406041
0.0470862
0.052246
0.0547104
0.0579747
0.0607061
0.0630026
0.0649464
0.0665718
0.0679521
0.0691235
0.0701082
0.0709272
0.0715985
0.0721463
0.072599
0.072984
0.0733024
0.0735618
0.0737744
0.0739507
0.0740996
0.074229
0.0743453
0.0744544
0.0745612
0.0746703
0.0747855
0.0749104
0.0750482
0.0752017
0.0753733
0.0755653
0.0757787
0.0760139
0.0762695
0.0765422
0.0768268
0.0771145
0.0773933
0.0776517
0.0779671
0.0815561
0.0845678
0.423549
0.442025
0.562331
0.55377
0.488326
0.271862
0.261266
0.248363
0.233201
0.169632
0.102671
0.0117478
-0.0929549
-0.162722
-0.114175
-0.124794
-0.0397056
-0.203538
-0.476274
-0.668019
-0.753621
-0.781443
-0.77408
-0.74313
-0.691437
-0.632278
-0.564512
-0.479805
-0.393255
-0.308649
-0.230618
-0.161861
-0.0961742
-0.0459782
-0.0164181
0.00840982
0.0309477
0.0469064
0.078796
0.177902
0.112975
0.0749234
0.0719365
0.0678078
0.0648877
0.0627331
0.0616854
0.0641303
0.0558285
0.0499702
0.0489788
0.0476922
0.0463468
0.0455961
0.0453905
0.0452743
0.0453151
0.045171
0.0445398
0.0443166
0.0441314
0.0439805
0.0438597
0.0437639
0.0436917
0.0436415
0.0436111
0.0435939
0.0435756
0.0435584
0.0436526
0.0437807
0.0439287
0.0441042
0.0443115
0.044553
0.0448298
0.045142
0.0454886
0.0458678
0.0462774
0.0467148
0.0471775
0.0476629
0.0481684
0.0486918
0.0492307
0.049783
0.0503462
0.0509173
0.0514921
0.0520647
0.0526269
0.0531665
0.0536661
0.0540994
0.0544377
0.0574551
0.0630853
0.0628182
0.416012
0.355003
0.339911
0.415427
0.302427
0.227644
0.219983
0.213577
0.210887
0.174054
0.118049
0.0531411
-0.0268323
-0.119191
-0.209477
-0.283409
-0.346257
-0.389498
-0.424546
-0.479509
-0.5164
-0.554575
-0.606979
-0.580352
-0.531922
-0.465715
-0.393595
-0.317585
-0.244682
-0.170616
-0.101517
-0.0406969
0.0107936
0.0628481
0.0920681
0.106662
0.125161
0.138577
0.147133
0.157094
0.236779
0.200439
0.146015
0.138445
0.130367
0.12189
0.113327
0.104764
0.0965992
0.0886141
0.0808643
0.0734457
0.0663666
0.0596832
0.0534094
0.0475671
0.0421517
0.0371246
0.0325184
0.0283187
0.024521
0.0211212
0.0181152
0.0154896
0.0132308
0.0113232
0.00974102
0.00846476
0.0075197
0.00689795
0.00643727
0.00619471
0.00616233
0.00632653
0.0066715
0.00718082
0.00783766
0.00862474
0.00952458
0.0105197
0.0115931
0.0127285
0.0139106
0.0151255
0.0163607
0.017605
0.0188484
0.0200819
0.0212973
0.022487
0.0236437
0.02476
0.0258285
0.0268411
0.0277889
0.0286642
0.0294694
0.0339303
0.0395579
0.0375934
0.321312
0.318499
0.300326
0.285581
0.274985
0.261744
0.236703
0.20865
0.192422
0.184948
0.175117
0.146385
0.10081
0.0509552
0.00841755
-0.0303068
-0.069089
-0.104069
-0.133335
-0.156506
-0.137265
-0.181367
-0.194673
-0.18437
-0.165034
-0.138257
-0.107099
-0.0724348
-0.0245746
0.01933
0.0732979
0.173052
0.138892
0.136292
0.155455
0.168653
0.179611
0.188626
0.194955
0.209343
0.27448
0.273012
0.200347
0.173351
0.165234
0.156126
0.146259
0.135898
0.12513
0.113998
0.102567
0.0909233
0.079165
0.0678396
0.0567629
0.0441106
0.0328777
0.0221138
0.0119171
0.00234648
-0.00650982
-0.0145512
-0.0216307
-0.0277626
-0.0330056
-0.0373678
-0.0408766
-0.0435398
-0.0454262
-0.0466449
-0.0472406
-0.0472699
-0.0467968
-0.0458856
-0.0445977
-0.0429924
-0.0411233
-0.0390393
-0.036784
-0.0343968
-0.0319136
-0.0293672
-0.0267872
-0.0242003
-0.0216298
-0.0190962
-0.0166171
-0.0142074
-0.0118801
-0.00964642
-0.00751589
-0.00549651
-0.00359524
-0.00181835
-0.000170671
0.00134264
0.00270878
0.00506491
0.015148
0.0123813
14.7187
12.5067
15.7607
9.82268
0.302331
0.206029
0.190663
0.182863
0.190458
0.204162
0.189968
0.149065
0.129026
0.109416
0.0996142
0.102006
0.119273
0.114365
0.096581
0.0857032
0.0813643
0.0933652
0.261932
0.263522
0.0939012
0.0502016
0.0555343
0.0797676
0.225318
0.245436
0.261179
0.277726
0.265067
0.160692
0.166263
0.175929
0.183127
0.189887
0.195301
0.19915
0.205983
0.245475
0.253112
0.218832
0.180741
0.172492
0.162863
0.151927
0.139829
0.126451
0.111751
0.0958998
0.0793052
0.0637061
0.0441373
0.0248233
0.00622513
-0.011946
-0.0296104
-0.0465014
-0.0619363
-0.0683245
-0.0778171
-0.100307
-0.109505
-0.116915
-0.122038
-0.125411
-0.128153
-0.12975
-0.129398
-0.127804
-0.125201
-0.121761
-0.117676
-0.113113
-0.108215
-0.103096
-0.0978505
-0.0925533
-0.0872635
-0.0820269
-0.0768807
-0.0718558
-0.0669783
-0.0622696
-0.0577474
-0.0534254
-0.0493141
-0.0454208
-0.0417502
-0.038304
-0.0350812
-0.0320774
-0.0292837
-0.026687
-0.024274
-0.0220176
-0.0166399
-0.0108456
68.5713
69.5965
70.0036
69.3082
70.3791
62.153
16.6091
0.0609732
0.0681247
0.11202
0.101603
0.0760667
0.074335
0.0737024
0.0730218
0.094864
0.102748
0.110277
0.168468
0.262573
0.278843
0.280851
0.282049
0.285525
0.288376
0.286599
0.115442
0.110251
0.179716
0.280938
0.156716
0.120159
0.129036
0.132839
0.142023
0.151688
0.160419
0.16834
0.175156
0.180691
0.184677
0.187857
0.203868
0.222567
0.199443
0.180898
0.161546
0.150115
0.136424
0.120429
0.102065
0.0813801
0.0586605
0.036003
0.010629
-0.0141189
-0.0199596
-0.0565267
-0.101297
-0.126505
-0.144519
-0.145745
-0.165681
-0.183248
-0.215654
-0.235827
-0.24285
-0.237818
-0.215815
-0.254793
-0.251705
-0.246603
-0.239668
-0.23128
-0.221819
-0.211542
-0.200755
-0.189742
-0.178748
-0.167967
-0.157522
-0.147496
-0.137929
-0.128838
-0.120227
-0.112091
-0.104425
-0.0972183
-0.0904624
-0.0841453
-0.0782536
-0.0727727
-0.067686
-0.0629749
-0.058617
-0.0545836
-0.0508423
-0.0473639
-0.0440064
-0.0376718
55.6841
72.1198
72.5947
72.1576
72.3575
49.9602
4.3618
0.0146668
0.0230761
0.03127
0.0378458
0.0395223
0.0409679
0.0406323
0.0392377
0.048415
0.0583124
0.065594
0.116085
0.115203
0.0940995
0.0836464
0.0782179
0.0769137
0.0823016
0.0874206
0.0794802
0.0787553
0.0871605
0.0951796
0.0961257
0.0991785
0.106976
0.114582
0.12219
0.129677
0.137095
0.144775
0.151315
0.157039
0.161084
0.16416
0.166062
0.167273
0.182352
0.175346
0.156043
0.1312
0.115474
0.0920663
0.068558
0.0420294
0.0123337
-0.0154565
-0.0474093
-0.0806863
-0.109589
-0.149533
-0.192813
-0.238851
-0.257335
-0.288214
-0.316571
-0.341305
-0.36152
-0.377049
-0.387226
-0.3933
-0.395413
-0.393868
-0.409953
-0.401921
-0.383985
-0.377187
-0.362496
-0.343603
-0.323788
-0.30355
-0.283367
-0.263662
-0.244795
-0.226997
-0.210386
-0.194977
-0.180723
-0.167552
-0.155387
-0.144153
-0.133782
-0.124215
-0.115395
-0.107273
-0.0998014
-0.0929367
-0.0866362
-0.0808564
-0.0755488
-0.0706655
-0.0661716
-0.0620243
45.0222
34.0232
41.0609
29.6173
23.596
28.6823
9.02898
0.0440301
0.0436505
0.0464665
0.0497296
0.0515943
0.0509311
0.048328
0.0449783
0.0582762
0.0606771
0.056449
0.0473375
0.0505562
0.0551845
0.0599356
0.0643112
0.0679267
0.071284
0.0745265
0.0759423
0.0764666
0.0769673
0.078368
0.0812386
0.0851027
0.0893859
0.0953694
0.0987207
0.102779
0.107565
0.112259
0.11773
0.121116
0.12348
0.124895
0.124466
0.122964
0.14592
0.125694
0.107141
0.0935784
0.0741429
0.0503766
0.0185022
-0.0215157
-0.0576841
-0.0964953
-0.132101
-0.178616
-0.22132
-0.264188
-0.313832
-0.36148
-0.41011
-0.445938
-0.47463
-0.5272
-0.562596
-0.567017
-0.572638
-0.581977
-0.607441
-0.608694
-0.573294
-0.557009
-0.536912
-0.515242
-0.521732
-0.492457
-0.46194
-0.437046
-0.40601
-0.375217
-0.345484
-0.317289
-0.291035
-0.266963
-0.245074
-0.225232
-0.207253
-0.190942
-0.17612
-0.162635
-0.150354
-0.139164
-0.128965
-0.11967
-0.111202
-0.103489
-0.0964648
-0.0900644
-0.0842339
-0.078917
3.32811
4.16738
0.217051
0.204832
0.208603
0.16013
0.503323
0.0625221
0.0679982
0.0851507
0.111599
0.1061
0.101359
0.0870894
0.0780467
0.0723767
0.0669969
0.0638569
0.0656687
0.0735474
0.0791865
0.0738286
0.0705675
0.0708193
0.0715041
0.0707931
0.0711303
0.0640321
0.0592912
0.0525266
0.0485636
0.0473424
0.0470219
0.0487904
0.0496494
0.0509644
0.0526101
0.0543527
0.0551581
0.0555349
0.055854
0.0550399
0.0527348
0.0485849
0.0580246
0.050627
0.0265935
0.00788655
-0.0125262
-0.0331399
-0.06371
-0.0985481
-0.145099
-0.189684
-0.236615
-0.283305
-0.328885
-0.377162
-0.427167
-0.475344
-0.534201
-0.586295
-0.624897
-0.670282
-0.708004
-0.732953
-0.748834
-0.763702
-0.77235
-0.772668
-0.766341
-0.735597
-0.690734
-0.663877
-0.632254
-0.596333
-0.557077
-0.537292
-0.507615
-0.475061
-0.439668
-0.402044
-0.366467
-0.33352
-0.303595
-0.276706
-0.252641
-0.231102
-0.21178
-0.194401
-0.178734
-0.164586
-0.151791
-0.140209
-0.129715
-0.120205
-0.111582
-0.103762
-0.0966772
-0.0902609
0.393556
0.396231
0.687812
1.2017
1.11657
0.476532
0.304471
0.643809
0.705099
0.756187
0.777128
0.769045
0.779567
0.789175
0.784026
0.778421
0.780494
0.79008
0.77201
0.204049
0.134006
0.130838
0.146196
0.272557
0.213459
0.206235
1.14998
1.07486
0.160755
0.00188285
-0.00488799
-0.0107449
-0.0167451
-0.0224055
-0.0263211
-0.0312628
-0.0362505
-0.0418963
-0.0476869
-0.0527516
-0.0580158
-0.0637591
-0.0703147
-0.0779923
-0.0870962
-0.0939784
-0.102876
-0.122522
-0.142038
-0.165542
-0.187158
-0.213876
-0.247852
-0.285763
-0.337098
-0.381436
-0.426563
-0.478407
-0.527867
-0.55958
-0.606782
-0.65979
-0.715828
-0.752911
-0.784612
-0.810805
-0.830782
-0.844213
-0.851091
-0.8514
-0.842837
-0.827168
-0.810124
-0.783134
-0.733649
-0.677642
-0.632035
-0.588787
-0.543976
-0.498102
-0.485944
-0.454074
-0.41566
-0.377468
-0.342142
-0.310235
-0.281731
-0.256365
-0.233772
-0.213592
-0.195514
-0.179279
-0.164672
-0.151506
-0.13962
-0.128877
-0.119155
-0.110349
-0.102365
-0.0951151
0.830902
0.284069
0.248593
0.555699
0.313409
0.0124185
-0.00510877
-0.00476724
-0.0221264
0.216016
0.540774
-0.0236318
0.00407791
0.0894838
0.105141
0.122838
0.209699
0.160247
0.152883
0.235887
0.383726
0.397978
1.02687
1.07401
1.04464
1.02074
1.00401
0.974559
0.35311
-0.0772262
-0.0862122
-0.09726
-0.110077
-0.123706
-0.137995
-0.152742
-0.168665
-0.162871
-0.17498
-0.216859
-0.23473
-0.24759
-0.259331
-0.270255
-0.280471
-0.290535
-0.301137
-0.278291
-0.307278
-0.334666
-0.351137
-0.368768
-0.380001
-0.40436
-0.431639
-0.467779
-0.507042
-0.542287
-0.57906
-0.616929
-0.636557
-0.671763
-0.715193
-0.763765
-0.792172
-0.815003
-0.833984
-0.84797
-0.854972
-0.855361
-0.849121
-0.836233
-0.816901
-0.79132
-0.760967
-0.726011
-0.682479
-0.626019
-0.571553
-0.510551
-0.462956
-0.436605
-0.426932
-0.388253
-0.351467
-0.317877
-0.287772
-0.261005
-0.237237
-0.216083
-0.197195
-0.180283
-0.165106
-0.151458
-0.139158
-0.128059
-0.118031
-0.108956
-0.100733
-0.0932671
0.36071
0.575492
0.0784635
0.0118506
0.0464391
0.202225
-0.0583661
-0.058118
-0.0528076
-0.0458447
-0.0375783
-0.0289972
-0.0248977
-0.0233867
-0.0204755
-0.0173599
-0.0126776
-0.00937125
0.0955291
0.410238
0.828566
1.00201
0.993343
0.977266
0.946468
0.913946
0.491335
-0.147107
-0.165349
-0.177099
-0.191644
-0.206473
-0.21321
-0.244379
-0.268094
-0.261859
-0.294949
-0.32837
-0.3601
-0.414956
-0.461295
-0.482318
-0.485703
-0.447086
-0.4851
-0.528825
-0.522939
-0.473338
-0.484074
-0.532457
-0.541043
-0.540199
-0.539731
-0.529379
-0.533774
-0.54166
-0.560404
-0.580558
-0.59784
-0.617581
-0.636778
-0.640661
-0.663908
-0.693926
-0.732415
-0.747867
-0.760203
-0.771568
-0.778611
-0.788475
-0.785434
-0.775832
-0.760145
-0.738362
-0.711177
-0.67952
-0.6443
-0.606606
-0.567705
-0.514418
-0.428338
-0.389382
-0.394675
-0.363658
-0.329484
-0.297786
-0.269178
-0.243696
-0.221074
-0.200964
-0.183031
-0.166994
-0.15262
-0.139721
-0.128093
-0.117601
-0.108119
-0.0995303
-0.091734
-0.0846363
0.210134
0.439913
-0.0559046
-0.0685217
-0.0652924
0.307845
0.199358
-0.0488749
-0.0434753
-0.0470961
-0.0444421
-0.0426888
-0.0423232
-0.042585
-0.0401602
-0.032542
-0.0130509
-0.0397281
-0.039666
-0.00305472
-0.0426741
0.336978
0.996173
0.970156
0.567089
-0.154552
-0.205812
-0.219167
-0.23491
-0.248455
-0.267399
-0.259003
-0.296526
-0.339689
-0.389646
-0.425887
-0.472896
-0.539321
-0.606897
-0.64264
-0.669914
-0.649206
-0.674754
-0.696449
-0.710891
-0.718264
-0.717881
-0.71157
-0.712339
-0.735645
-0.714803
-0.690073
-0.665384
-0.635416
-0.606455
-0.589475
-0.576628
-0.579505
-0.576852
-0.576085
-0.578927
-0.574435
-0.570011
-0.580288
-0.594461
-0.623032
-0.638332
-0.648615
-0.655232
-0.63116
-0.616675
-0.611709
-0.632266
-0.622437
-0.599437
-0.574551
-0.54763
-0.516147
-0.482543
-0.448031
-0.391567
-0.355015
-0.340379
-0.31066
-0.280821
-0.253307
-0.228566
-0.206632
-0.187232
-0.170028
-0.154713
-0.141029
-0.128766
-0.117749
-0.107826
-0.0988666
-0.0907565
-0.0833978
-0.0767041
-0.0705977
0.169479
-0.00876992
-0.0569889
-0.0621234
-0.06831
0.336037
0.223145
-0.0110813
-0.0335646
-0.0411918
-0.0445428
-0.0478991
-0.049356
-0.0356435
0.00821002
0.0667566
0.0217498
-0.0703711
-0.0802255
-0.0872438
-0.095762
0.0855082
1.11173
0.0785917
-0.199172
-0.213104
-0.229104
-0.248261
-0.267619
-0.244042
-0.276032
-0.322202
-0.398132
-0.447021
-0.496741
-0.545741
-0.589696
-0.58097
-0.683407
-0.752634
-0.78833
-0.767102
-0.798775
-0.823942
-0.859552
-0.880205
-0.869313
-0.860508
-0.852313
-0.825212
-0.78774
-0.746813
-0.70473
-0.6532
-0.608111
-0.572041
-0.540311
-0.526466
-0.504235
-0.486123
-0.472454
-0.450187
-0.432025
-0.429388
-0.429863
-0.444949
-0.463138
-0.466471
-0.468868
-0.469993
-0.455921
-0.414268
-0.407567
-0.397899
-0.384791
-0.379241
-0.397324
-0.3799
-0.356075
-0.330709
-0.305133
-0.279479
-0.253985
-0.230445
-0.208394
-0.188144
-0.170004
-0.153932
-0.139708
-0.127071
-0.115791
-0.105683
-0.0965947
-0.088401
-0.0809929
-0.0742765
-0.0681711
-0.0626065
-0.0575216
-0.0528617
0.109093
-0.0286608
-0.0268139
-0.0209253
0.101572
0.373825
0.067378
-0.017645
-0.0436778
-0.0503454
-0.0548921
-0.0373069
0.000149263
0.0557161
0.0572058
0.0449097
-0.0570487
-0.106084
-0.118659
-0.133437
-0.0111484
0.812564
0.328338
-0.154729
-0.174369
-0.196314
-0.218949
-0.243111
-0.24584
-0.235181
-0.284664
-0.366432
-0.402497
-0.426044
-0.420046
-0.467491
-0.515984
-0.567694
-0.660682
-0.745022
-0.783438
-0.813619
-0.838337
-0.861415
-0.873154
-0.872985
-0.863261
-0.844669
-0.816493
-0.780438
-0.738153
-0.691655
-0.64246
-0.585853
-0.528703
-0.491875
-0.456415
-0.419661
-0.38644
-0.357644
-0.315773
-0.286916
-0.270307
-0.257802
-0.249223
-0.267105
-0.271071
-0.270012
-0.269532
-0.269094
-0.268117
-0.241575
-0.211529
-0.207132
-0.201156
-0.193793
-0.191317
-0.221937
-0.212765
-0.198716
-0.184117
-0.16913
-0.15434
-0.140213
-0.127137
-0.115312
-0.104754
-0.0953727
-0.0870171
-0.0795337
-0.072795
-0.0667016
-0.0611731
-0.056142
-0.05155
-0.0473473
-0.0434909
-0.0399434
-0.0366724
-0.0336486
0.0586757
-0.00509177
-0.0046497
0.0110281
0.321616
0.345565
0.0608703
-0.0475549
-0.0648087
-0.0658664
-0.0634438
0.0199815
0.0473967
0.048737
0.0351874
-0.066313
-0.104733
-0.115563
-0.128764
-0.146709
0.0690538
0.792525
0.67412
-0.00607399
-0.137266
-0.168876
-0.191124
-0.213611
-0.234041
-0.239011
-0.28296
-0.319382
-0.294964
-0.305268
-0.346877
-0.388923
-0.484648
-0.559707
-0.5968
-0.633589
-0.667708
-0.697108
-0.719778
-0.733796
-0.727606
-0.70888
-0.721241
-0.702069
-0.675103
-0.640518
-0.596803
-0.550875
-0.493965
-0.452856
-0.411383
-0.366385
-0.323875
-0.282134
-0.232495
-0.19082
-0.161971
-0.137029
-0.116016
-0.110821
-0.112854
-0.109164
-0.104033
-0.100964
-0.0994381
-0.0989246
-0.0988375
-0.084521
-0.0446645
-0.0440347
-0.0428955
-0.0513017
-0.0913775
-0.0909069
-0.0867277
-0.0817737
-0.0764033
-0.0705545
-0.0647042
-0.0591518
-0.0540557
-0.0494761
-0.0453906
-0.0417323
-0.0384278
-0.0354167
-0.0326549
-0.0301098
-0.0277555
-0.0255702
-0.0235359
-0.0216372
-0.0198612
-0.0181968
-0.0166346
-0.0151655
0.0110862
-0.00235451
-0.00192559
0.0256073
0.35052
0.356982
0.0958302
-0.0523194
-0.0560007
-0.056619
-0.0575375
-0.0610167
-0.0642958
-0.046801
-0.0588343
-0.0756656
-0.0795246
-0.083674
-0.0880235
-0.0924355
-0.0378176
0.616415
0.733788
0.631211
0.126233
-0.153005
-0.167439
-0.181306
-0.197944
-0.216998
-0.238252
-0.26154
-0.26011
-0.215617
-0.246785
-0.281504
-0.396165
-0.437045
-0.464619
-0.490583
-0.5135
-0.532297
-0.513438
-0.464109
-0.462275
-0.51174
-0.526225
-0.508094
-0.485322
-0.45804
-0.416496
-0.354964
-0.313068
-0.274814
-0.250955
-0.217409
-0.181754
-0.140393
-0.103265
-0.0757324
-0.0510639
-0.0326802
-0.0198754
-0.0096435
0.00114268
0.00967077
0.0154937
0.0190439
0.0207527
0.0210932
0.0224016
0.0688868
0.0725232
0.0564869
0.015057
0.00939136
0.00715692
0.00587457
0.00447649
0.00326314
0.00265857
0.00231316
0.00203473
0.0017574
0.00146376
0.00116593
0.000885681
0.000641808
0.000445209
0.000299787
0.000205242
0.00015918
0.000158152
0.000198085
0.000274532
0.000382874
0.000518471
0.000676814
0.000853479
0.00104474
-0.00386113
-0.00821844
-0.0100357
0.13417
0.401349
0.29474
0.0323294
-0.00825528
-0.0197375
-0.0243123
-0.0286032
-0.0331585
-0.0367072
-0.0418826
-0.0457907
-0.0495697
-0.0533102
-0.0569841
-0.0605482
-0.0638267
-0.0665891
0.00749751
0.615798
0.702218
0.505018
-0.134723
-0.139953
-0.147796
-0.15811
-0.169643
-0.18248
-0.198624
-0.216118
-0.232424
-0.191119
-0.164162
-0.260613
-0.314071
-0.329555
-0.343443
-0.325149
-0.278461
-0.28254
-0.281896
-0.277461
-0.269647
-0.304852
-0.32651
-0.308819
-0.285784
-0.229798
-0.196854
-0.165868
-0.133984
-0.102068
-0.0902079
-0.0779783
-0.047726
-0.0250604
-0.00320043
0.0173641
0.0354176
0.0507826
0.0633356
0.073147
0.0804203
0.0853771
0.0882975
0.0895144
0.0893502
0.107538
0.137745
0.0939021
0.0779054
0.0742937
0.070652
0.0665391
0.0622703
0.0583225
0.0545055
0.0508054
0.0472439
0.0438574
0.0406724
0.0377021
0.0349495
0.032411
0.030079
0.0279443
0.0259963
0.0242236
0.0226143
0.0211565
0.0198384
0.0186482
0.0175751
0.0166084
0.0157383
0.0149553
0.0142512
0.0241385
0.0169126
0.0181146
0.18887
0.450322
0.0751486
0.0388513
0.00725927
-0.00563797
-0.00786943
-0.0105674
-0.0117289
-0.0112894
-0.0166427
-0.0241432
-0.0284081
-0.0322266
-0.0359879
-0.0397939
-0.0436911
-0.0476044
-0.0514901
0.172469
0.858914
0.103992
-0.106589
-0.111105
-0.117014
-0.124381
-0.13268
-0.141797
-0.151549
-0.161823
-0.172338
-0.182577
-0.172731
-0.166231
-0.215056
-0.222638
-0.228593
-0.21933
-0.146183
-0.145543
-0.142801
-0.137093
-0.129021
-0.126851
-0.190173
-0.177017
-0.157595
-0.103345
-0.0802184
-0.0568121
-0.0332639
-0.0311074
-0.025145
-0.00542965
0.0144458
0.0329726
0.0499073
0.0650785
0.078356
0.0896715
0.0989908
0.106326
0.111747
0.115381
0.117394
0.117971
0.118433
0.121825
0.115725
0.109812
0.106083
0.102186
0.0978737
0.0932626
0.0885928
0.0838437
0.079166
0.0746187
0.0702305
0.0660266
0.062023
0.0582288
0.0546497
0.0512876
0.0481404
0.045203
0.0424681
0.0399274
0.0375713
0.0353897
0.0333724
0.0315088
0.0297886
0.0282019
0.0267389
0.0253905
0.0241482
0.0401918
0.0235428
0.0222677
0.111388
0.10847
0.0641246
0.057597
0.0160982
0.0110474
0.0101796
0.0237723
0.0212274
0.00286652
-0.00273053
-0.00613461
-0.00972902
-0.0134874
-0.0173958
-0.0215097
-0.0254664
-0.0301481
-0.0269154
0.072143
0.0300525
-0.0695023
-0.0767203
-0.0833461
-0.0899287
-0.0964251
-0.102952
-0.109511
-0.116003
-0.122343
-0.128468
-0.134277
-0.139481
-0.143898
-0.147287
-0.149979
-0.151383
-0.151115
-0.149246
-0.138919
-0.0681092
-0.0440103
-0.039171
-0.108102
-0.106159
-0.0943731
-0.0809705
-0.0569191
-0.0103047
0.000562329
-0.0133672
0.00160477
0.0167638
0.0316134
0.045732
0.0589622
0.0711446
0.0821131
0.0917476
0.0999766
0.106789
0.112211
0.116284
0.11908
0.120686
0.121225
0.120798
0.11931
0.117175
0.114488
0.111372
0.107876
0.104087
0.100111
0.0960408
0.0917165
0.0874389
0.0832311
0.0791134
0.0751112
0.0712451
0.0675299
0.0639755
0.0605882
0.0573709
0.0543244
0.0514468
0.0487349
0.0461839
0.0437884
0.0415417
0.0394371
0.0374674
0.0356252
0.0339032
0.0322939
0.0307903
0.0603711
0.0498904
0.0380405
0.0392003
0.038864
0.0875227
0.0827924
0.0360594
0.0357522
0.0500865
0.0487725
0.0254698
0.0183986
0.0156395
0.0124911
0.008984
0.00511691
0.000850898
-0.00322317
0.000494215
-0.00396
-0.0148554
-0.0292298
-0.0373012
-0.0445838
-0.0517588
-0.0587086
-0.0653166
-0.0718161
-0.0779263
-0.0836661
-0.0890085
-0.0939041
-0.0982939
-0.102121
-0.105319
-0.107808
-0.109529
-0.109895
-0.109241
-0.107484
-0.104564
-0.100377
-0.0876763
-0.0680143
-0.0660601
-0.0718208
-0.0622747
-0.0519244
-0.0408384
-0.0286043
-0.015353
-0.00282324
0.00778824
0.0198053
0.0314006
0.0425109
0.0530094
0.0628026
0.0718221
0.0799788
0.0872086
0.0934622
0.0987116
0.102956
0.106234
0.108575
0.110028
0.110655
0.110519
0.109717
0.108345
0.106491
0.104227
0.101621
0.0987325
0.0956112
0.0922987
0.0890897
0.0857797
0.082421
0.0790619
0.0757334
0.0724604
0.0692629
0.0661563
0.0631522
0.0602591
0.0574825
0.0548259
0.0522905
0.0498764
0.0475821
0.0454051
0.0433422
0.0413897
0.0395432
0.0377981
0.0361497
0.0345927
0.0796243
0.0790314
0.0595755
0.0591809
0.0653972
0.110803
0.0755123
0.0569764
0.0697032
0.0697581
0.0527683
0.0401468
0.0376068
0.034555
0.0309661
0.0267994
0.0220209
0.0166326
0.0113889
0.0102001
0.00134526
-0.00930007
-0.0166139
-0.0240656
-0.0313922
-0.0384838
-0.0452415
-0.0516101
-0.0576181
-0.0632185
-0.0683677
-0.0730174
-0.0771157
-0.0806072
-0.0834333
-0.0855356
-0.0868596
-0.0873522
-0.0869547
-0.0856396
-0.0833896
-0.0802056
-0.0761078
-0.0710806
-0.0649774
-0.0579266
-0.0502494
-0.0420974
-0.0334993
-0.0245292
-0.0152703
-0.0057996
0.0037637
0.0132543
0.0225329
0.0315095
0.0401047
0.0482354
0.0558348
0.0628457
0.0692153
0.0749059
0.0798915
0.0841576
0.0877017
0.0905359
0.0926841
0.0941855
0.0950798
0.0954166
0.0952488
0.0946282
0.0936071
0.0922364
0.0905629
0.0886344
0.0865005
0.0841871
0.0817739
0.0792708
0.0767075
0.0741109
0.0715039
0.0689064
0.0663357
0.0638061
0.0613296
0.0589154
0.0565712
0.0543023
0.0521127
0.0500049
0.0479803
0.046039
0.0441805
0.0424034
0.0407059
0.0390856
0.0375397
0.0360649
0.0864068
0.102031
0.0803196
0.0823951
0.106817
0.125225
0.0730245
0.0781328
0.0916241
0.0841889
0.0621495
0.0598018
0.0567923
0.0530769
0.0486477
0.0435033
0.0376509
0.0312028
0.0244796
0.0166789
0.00857154
0.000599306
-0.00735659
-0.0151756
-0.0228481
-0.0302386
-0.0372876
-0.043952
-0.0501748
-0.0558993
-0.0610712
-0.0656385
-0.0695526
-0.072769
-0.0752473
-0.076952
-0.0778542
-0.0779328
-0.0771764
-0.0755842
-0.0731651
-0.0699394
-0.0659403
-0.0612097
-0.0557851
-0.049722
-0.0431225
-0.0361014
-0.0287541
-0.0211665
-0.0134218
-0.00560126
0.00221235
0.0099315
0.017473
0.0247638
0.0317399
0.038345
0.0445308
0.0502567
0.0554908
0.0602101
0.0644002
0.0680554
0.0711778
0.0737771
0.0758686
0.077473
0.0786165
0.0793303
0.0796497
0.0796097
0.0792485
0.0786056
0.077643
0.0764618
0.0750888
0.0735707
0.0719277
0.0701846
0.0683637
0.0664855
0.0645686
0.0626297
0.0606834
0.0587426
0.0568181
0.0549192
0.0530537
0.0512277
0.0494464
0.0477134
0.0460317
0.044403
0.0428285
0.0413085
0.039843
0.038431
0.0370716
0.0357631
0.113948
0.119861
0.104595
0.0982445
0.105056
0.0881656
0.0884317
0.10364
0.117511
0.0878531
0.0864001
0.0832513
0.0788406
0.0734057
0.0670652
0.0599102
0.0520372
0.043593
0.0346039
0.0252363
0.015743
0.00622489
-0.00318953
-0.0123925
-0.0212925
-0.0298068
-0.0378545
-0.0453609
-0.0522584
-0.0584874
-0.0639959
-0.0687405
-0.0726858
-0.0758052
-0.0780805
-0.079503
-0.0800748
-0.0798077
-0.0787214
-0.0768409
-0.0741975
-0.0708332
-0.0667985
-0.0621513
-0.0569577
-0.0512929
-0.0452355
-0.0388648
-0.0322609
-0.0255014
-0.0186608
-0.01181
-0.00501751
0.00165273
0.00814311
0.0144019
0.0203835
0.0260486
0.0313647
0.036306
0.0408528
0.0449915
0.0487141
0.0520188
0.0549087
0.0573916
0.0594793
0.0611868
0.0625304
0.0635285
0.0642048
0.0645803
0.0646794
0.0645222
0.0642055
0.0636865
0.0629903
0.0621422
0.0611651
0.0600795
0.0589043
0.0576568
0.0563524
0.0550051
0.0536273
0.0522302
0.0508235
0.0494157
0.0480141
0.0466249
0.0452534
0.043904
0.0425801
0.0412845
0.0400193
0.0387859
0.0375852
0.0364178
0.0352836
0.0341822
0.104406
0.115645
0.119221
0.105394
0.0969643
0.0862605
0.0812506
0.0809747
0.0893484
0.0963467
0.0939918
0.0903999
0.0873453
0.0831215
0.0768557
0.0688027
0.059351
0.0488514
0.0376195
0.0259562
0.0141064
0.00227824
-0.0093531
-0.0206358
-0.031435
-0.0416314
-0.0511208
-0.0598151
-0.0676415
-0.0745412
-0.0804699
-0.0853985
-0.0893122
-0.0922102
-0.0941063
-0.0950265
-0.0950057
-0.0940909
-0.0923345
-0.0897868
-0.0864728
-0.082484
-0.0779027
-0.0728083
-0.0672803
-0.0613986
-0.0552413
-0.0488836
-0.042397
-0.0358492
-0.0293038
-0.0228192
-0.0164484
-0.0102386
-0.00423156
0.00153607
0.00703331
0.012235
0.0171209
0.0216757
0.0258888
0.0297545
0.0332707
0.036439
0.0392641
0.0417539
0.0439189
0.0457718
0.0473289
0.0486077
0.0496229
0.050392
0.0509335
0.0512669
0.0514122
0.0513876
0.0512089
0.0508925
0.0504543
0.0499096
0.0492725
0.0485563
0.0477731
0.0469344
0.0460503
0.0451302
0.0441824
0.0432144
0.0422329
0.0412436
0.0402517
0.0392616
0.0382769
0.0373008
0.036336
0.0353845
0.0344478
0.0335272
0.0326233
0.0317365
18.1678
17.7243
16.9921
22.1326
21.4124
22.2244
17.036
6.1997
0.308501
0.266918
0.23623
0.211358
0.187137
0.160969
0.134152
0.108618
0.0845998
0.0621549
0.0411743
0.0215181
0.00307058
-0.0142373
-0.0304347
-0.045518
-0.0594581
-0.072209
-0.0837107
-0.0939076
-0.102756
-0.110227
-0.116308
-0.121013
-0.124363
-0.126397
-0.1272
-0.12686
-0.12544
-0.122973
-0.119589
-0.115412
-0.110582
-0.105177
-0.0992823
-0.0929897
-0.0863872
-0.0795594
-0.0725862
-0.0655416
-0.0584929
-0.0515006
-0.0446181
-0.0378919
-0.0313616
-0.0250609
-0.0190176
-0.013254
-0.00778757
-0.00263133
0.00220591
0.00671902
0.0109063
0.0147688
0.0183106
0.0215378
0.0244585
0.0270827
0.0294217
0.031488
0.0332952
0.0348576
0.0361896
0.037306
0.0382219
0.0389522
0.0395113
0.0399133
0.0401711
0.0402998
0.0403108
0.0402162
0.0400275
0.0397554
0.0394097
0.0389997
0.038534
0.0380205
0.0374663
0.0368779
0.0362614
0.035622
0.0349645
0.034293
0.0336115
0.032923
0.0322304
0.0315361
0.0308421
0.03015
0.0294609
0.0287758
21.4099
25.6944
27.3534
27.7071
27.7954
27.8141
27.9077
27.642
26.4578
11.7337
-0.092572
-0.0364852
-0.00477991
0.0100054
0.0130697
0.00825954
-0.00182981
-0.015254
-0.030831
-0.0475838
-0.0648787
-0.0822109
-0.0991056
-0.115215
-0.130146
-0.143697
-0.155683
-0.165969
-0.17446
-0.181077
-0.185774
-0.188569
-0.189578
-0.188908
-0.186716
-0.183171
-0.178422
-0.172669
-0.166026
-0.15864
-0.150668
-0.142257
-0.133544
-0.12465
-0.115681
-0.106724
-0.0978555
-0.089137
-0.0806221
-0.0723558
-0.0643755
-0.0567105
-0.0493829
-0.0424083
-0.0357968
-0.0295538
-0.0236808
-0.0181759
-0.0130347
-0.00825021
-0.00381385
0.000284617
0.0040566
0.00751449
0.0106714
0.0135411
0.0161374
0.0184748
0.0205675
0.0224299
0.0240761
0.0255201
0.0267755
0.0278557
0.0287736
0.0295413
0.0301708
0.0306719
0.0310577
0.0313371
0.03152
0.0316154
0.031632
0.0315776
0.0314596
0.0312849
0.0310597
0.0307899
0.0304809
0.0301374
0.0297638
0.0293643
0.0289424
0.0285012
0.0280437
0.0275723
0.0270893
0.0265966
0.0260959
0.0255884
1.19038
2.96149
2.19826
0.465459
0.924369
2.11137
2.50757
9.20458
7.88537
1.37625
-0.461439
-0.391086
-0.314379
-0.258779
-0.222221
-0.200342
-0.188218
-0.174417
-0.182994
-0.199658
-0.211216
-0.224704
-0.237994
-0.244862
-0.258315
-0.280495
-0.29152
-0.300381
-0.305277
-0.296134
-0.298987
-0.309585
-0.305557
-0.299368
-0.291483
-0.281576
-0.270011
-0.257265
-0.243663
-0.229482
-0.214963
-0.200349
-0.185877
-0.171717
-0.158003
-0.144828
-0.132253
-0.120307
-0.108999
-0.0983231
-0.0882673
-0.0788185
-0.0699605
-0.0616748
-0.0539406
-0.0467353
-0.0400355
-0.0338171
-0.028056
-0.0227284
-0.0178107
-0.0132802
-0.00911461
-0.00529249
-0.00179316
0.00140317
0.00431546
0.00696189
0.00935978
0.0115256
0.0134749
0.0152228
0.0167833
0.0181697
0.0193948
0.0204706
0.0214081
0.0222176
0.0229093
0.0234928
0.0239766
0.0243692
0.0246783
0.024911
0.0250741
0.0251736
0.0252154
0.0252047
0.0251465
0.0250451
0.0249048
0.0247292
0.0245218
0.0242855
0.024023
0.0237369
0.0234291
0.0231015
0.0227554
0.022392
-0.292392
-0.30164
-0.309777
-0.316909
-0.322942
-0.325136
-0.327684
-0.334757
-0.350885
-0.369485
-0.379253
-0.381213
-0.369464
-0.359026
-0.3515
-0.347946
-0.326189
-0.310559
-0.346893
-0.378797
-0.393789
-0.410147
-0.401149
-0.386426
-0.399771
-0.42154
-0.47839
-0.487084
-0.48972
-0.45874
-0.449716
-0.440936
-0.431262
-0.450147
-0.435026
-0.403569
-0.387335
-0.375986
-0.352355
-0.328597
-0.304586
-0.280854
-0.257743
-0.235481
-0.214313
-0.194401
-0.175845
-0.158684
-0.142896
-0.128412
-0.115138
-0.102971
-0.0918167
-0.0815907
-0.0722161
-0.0636227
-0.0557463
-0.048528
-0.0419141
-0.0358554
-0.030307
-0.0252277
-0.0205802
-0.01633
-0.012446
-0.0088994
-0.00566389
-0.00271525
-3.13966e-05
0.00240791
0.00462146
0.00662654
0.00843896
0.0100733
0.0115431
0.0128607
0.014037
0.015084
0.0160112
0.0168276
0.017542
0.0181621
0.0186953
0.0191485
0.0195278
0.0198392
0.0200879
0.020279
0.0204169
0.0205058
0.0205496
0.0205518
0.0205156
0.0204438
0.0203389
0.0202033
0.0200389
0.0198473
0.0196299
0.0193878
-0.303131
-0.31124
-0.317406
-0.297394
-0.333449
-0.356718
-0.348217
-0.351675
-0.352078
-0.348566
-0.350451
-0.359468
-0.362808
-0.360748
-0.412431
-0.43425
-0.454245
-0.442087
-0.44801
-0.482641
-0.563348
-0.59188
-0.616593
-0.59946
-0.608117
-0.624612
-0.635994
-0.643515
-0.682404
-0.689954
-0.678474
-0.637946
-0.619092
-0.595639
-0.568085
-0.536763
-0.503207
-0.474677
-0.468426
-0.427308
-0.392351
-0.368494
-0.337564
-0.306247
-0.276656
-0.248918
-0.223172
-0.199531
-0.178046
-0.158688
-0.141333
-0.125793
-0.111861
-0.0993496
-0.0880922
-0.0779471
-0.0687906
-0.0605154
-0.0530273
-0.0462434
-0.0400905
-0.0345043
-0.0294281
-0.0248119
-0.020612
-0.0167892
-0.0133088
-0.0101398
-0.00725353
-0.00462513
-0.00223239
-5.538e-05
0.00192373
0.00371936
0.00534956
0.00682631
0.0081616
0.00936659
0.0104513
0.011425
0.0122961
0.0130723
0.0137607
0.0143678
0.0148996
0.0153616
0.0157589
0.0160962
0.0163776
0.0166072
0.0167885
0.0169248
0.0170192
0.0170742
0.0170924
0.0170759
0.0170266
0.0169462
0.016836
0.0166972
-0.263022
-0.270468
-0.249014
-0.254841
-0.293362
-0.314596
-0.30967
-0.31087
-0.31627
-0.324629
-0.338268
-0.356975
-0.341687
-0.345446
-0.400103
-0.480843
-0.519938
-0.560099
-0.557885
-0.564875
-0.606394
-0.683872
-0.758506
-0.789641
-0.814752
-0.83109
-0.844836
-0.820059
-0.823566
-0.852289
-0.863795
-0.847026
-0.823778
-0.776859
-0.719761
-0.679093
-0.634517
-0.594945
-0.568731
-0.499394
-0.451816
-0.406515
-0.388909
-0.356922
-0.324132
-0.290302
-0.259051
-0.230318
-0.204131
-0.180549
-0.159576
-0.141065
-0.124768
-0.1104
-0.0976919
-0.0864154
-0.0763794
-0.0674235
-0.0594111
-0.052225
-0.0457652
-0.0399452
-0.0346908
-0.0299383
-0.0256326
-0.021726
-0.0181775
-0.0149676
-0.0120299
-0.00935331
-0.00691348
-0.00468858
-0.00265929
-0.000808462
0.000879299
0.0024176
0.00381863
0.00509338
0.00625176
0.00730272
0.00825438
0.00911412
0.00988866
0.0105841
0.0112061
0.0117598
0.0122498
0.0126805
0.0130558
0.0133793
0.0136545
0.0138843
0.0140716
0.0142189
0.0143285
0.0144027
0.0144432
0.014452
0.0144305
0.0143801
-0.127445
-0.133734
-0.124137
-0.0951406
-0.0990609
-0.145654
-0.14782
-0.158522
-0.180257
-0.210125
-0.243979
-0.280383
-0.298729
-0.300957
-0.347402
-0.402029
-0.466808
-0.521139
-0.585899
-0.588353
-0.640868
-0.689991
-0.736771
-0.793572
-0.851779
-0.913348
-0.934958
-0.94894
-0.950055
-0.950287
-0.943051
-0.927226
-0.905623
-0.873786
-0.835271
-0.790315
-0.71352
-0.681872
-0.630902
-0.576712
-0.504774
-0.434572
-0.379902
-0.337063
-0.321887
-0.297977
-0.265586
-0.235708
-0.208469
-0.183738
-0.161813
-0.142329
-0.12533
-0.110534
-0.0976208
-0.0862967
-0.0763212
-0.0674986
-0.0596669
-0.0526906
-0.0464558
-0.0408659
-0.0358397
-0.0313079
-0.0272117
-0.0235008
-0.020132
-0.0170684
-0.0142767
-0.0117295
-0.00940248
-0.00727461
-0.00532735
-0.0035444
-0.00191135
-0.000415428
0.000954705
0.00220918
0.00335705
0.00440647
0.00536476
0.00623856
0.00703387
0.00775615
0.00841038
0.00900111
0.0095325
0.0100084
0.0104322
0.0108073
0.0111365
0.0114227
0.0116683
0.0118757
0.012047
0.0121843
0.0122895
0.0123641
0.0124099
0.0124284
0.00447864
0.00258182
0.000720113
0.015058
0.0538582
0.0588038
0.0277625
0.0023367
-0.0247919
-0.048389
-0.0919668
-0.14708
-0.194699
-0.23543
-0.280802
-0.300099
-0.360364
-0.420374
-0.508652
-0.574293
-0.569149
-0.621781
-0.671688
-0.716925
-0.755713
-0.786838
-0.844961
-0.90679
-0.914244
-0.912734
-0.902028
-0.851096
-0.821937
-0.787599
-0.764778
-0.723532
-0.661308
-0.6193
-0.589001
-0.537982
-0.484529
-0.433089
-0.360493
-0.298363
-0.259105
-0.255003
-0.235896
-0.209766
-0.185968
-0.164181
-0.144419
-0.12685
-0.111537
-0.0983071
-0.0868579
-0.0768888
-0.0681537
-0.0604591
-0.0536493
-0.0475963
-0.0421936
-0.0373525
-0.0329986
-0.0290696
-0.025513
-0.0222842
-0.0193455
-0.0166644
-0.0142134
-0.0119686
-0.00990925
-0.00801765
-0.00627817
-0.00467718
-0.00320271
-0.0018442
-0.000592276
0.00056137
0.00162417
0.0026028
0.00350324
0.0043309
0.00509069
0.00578707
0.0064241
0.00700549
0.00753467
0.00801476
0.00844867
0.00883908
0.00918846
0.00949914
0.00977326
0.0100128
0.0102198
0.0103959
0.0105428
0.0106621
0.0107553
0.010824
0.072182
0.0730516
0.0765672
0.0832926
0.0987438
0.118471
0.119324
0.125762
0.11107
0.0856974
0.0529477
0.013781
-0.0407556
-0.104206
-0.154471
-0.206382
-0.221947
-0.248975
-0.35082
-0.427544
-0.47244
-0.525184
-0.525711
-0.53349
-0.570256
-0.600344
-0.623836
-0.680018
-0.718861
-0.723228
-0.712657
-0.694306
-0.670744
-0.641921
-0.607816
-0.481028
-0.249255
-0.192044
-0.344834
-0.394216
-0.355347
-0.316378
-0.279838
-0.223417
-0.173738
-0.175266
-0.173748
-0.155591
-0.139107
-0.123787
-0.109582
-0.0967374
-0.0854632
-0.0757224
-0.0673016
-0.0599627
-0.0535135
-0.0478087
-0.0427344
-0.0381979
-0.034123
-0.0304465
-0.027116
-0.0240877
-0.0213251
-0.0187972
-0.0164778
-0.0143446
-0.0123786
-0.0105634
-0.00888469
-0.00733025
-0.0058893
-0.00455243
-0.00331134
-0.0021587
-0.00108799
-9.33944e-05
0.00083029
0.00168776
0.00248327
0.00322066
0.00390346
0.00453487
0.00511785
0.00565511
0.00614917
0.00660234
0.00701681
0.00739461
0.00773764
0.00804771
0.0083265
0.00857563
0.00879662
0.00899092
0.00915993
0.00930499
0.00942741
0.0095285
0.0849216
0.0869434
0.0912309
0.0983968
0.10689
0.113343
0.114822
0.116066
0.112125
0.124196
0.112067
0.0943179
0.0475063
0.00683953
-0.0258065
-0.0627135
-0.104483
-0.150988
-0.203572
-0.248923
-0.285986
-0.323084
-0.359537
-0.393084
-0.353661
-0.387314
-0.460683
-0.4775
-0.474073
-0.481301
-0.474758
-0.459271
-0.438196
-0.412606
-0.385519
-0.339274
-0.0619746
-0.0110872
0.0194538
0.0115012
-0.183799
-0.174901
-0.154148
-0.122749
-0.0762123
-0.103807
-0.101345
-0.0923895
-0.0841194
-0.0761845
-0.0685686
-0.0614927
-0.0551637
-0.0496172
-0.0447554
-0.040451
-0.0366019
-0.0331345
-0.0299929
-0.0271322
-0.0245151
-0.0221112
-0.019895
-0.0178453
-0.0159443
-0.0141768
-0.0125301
-0.010993
-0.00955621
-0.00821139
-0.00695137
-0.00576986
-0.00466129
-0.00362075
-0.00264382
-0.00172659
-0.000865493
-5.73376e-05
0.000700793
0.00141156
0.00207741
0.0027006
0.00328321
0.00382719
0.00433436
0.0048064
0.00524491
0.00565141
0.00602731
0.00637398
0.00669272
0.00698479
0.00725138
0.00749366
0.00771274
0.00790972
0.00808564
0.00824155
0.00837848
0.00849745
0.0445361
0.0442869
0.0415756
0.0364947
0.0317659
0.0735122
0.0413024
0.0432254
0.0500028
0.0549349
0.0580897
0.0543092
0.0450738
0.043877
0.0365112
0.00786265
-0.0255435
-0.0527168
-0.0659619
-0.088044
-0.116852
-0.139547
-0.19335
-0.230852
-0.250751
-0.270479
-0.295562
-0.3186
-0.321306
-0.311603
-0.30365
-0.29268
-0.278253
-0.260693
-0.18709
0.0608703
0.0953342
0.125441
0.0703291
-0.0957911
-0.0815017
-0.0700192
-0.0474708
-0.0395795
-0.0452672
-0.0519896
-0.048512
-0.0453893
-0.0423944
-0.0393528
-0.0362878
-0.0333436
-0.0306394
-0.028203
-0.0259995
-0.0239822
-0.0221156
-0.0203764
-0.0187477
-0.0172163
-0.0157715
-0.0144045
-0.0131082
-0.0118767
-0.0107052
-0.00958955
-0.00852626
-0.00751234
-0.0065452
-0.00562256
-0.00474241
-0.00390295
-0.00310255
-0.00233971
-0.00161306
-0.000921327
-0.000263314
0.000362096
0.000955957
0.00151927
0.002053
0.00255806
0.00303536
0.00348575
0.0039101
0.00430921
0.00468392
0.005035
0.00536324
0.0056694
0.00595424
0.00621851
0.00646294
0.00668828
0.00689527
0.00708464
0.0072571
0.00741339
0.00755422
0.00768033
0.0537489
0.0536127
0.0532848
0.0527319
0.57936
2.19732
2.20459
2.09608
1.70441
1.68374
1.36157
1.14777
1.81625
1.64185
0.576628
0.795786
2.26189
2.49479
2.47859
0.589129
-0.0702224
-0.0931525
0.0527391
1.24674
0.0838899
-0.216551
-0.227775
0.935276
0.218959
-0.23782
-0.23119
-0.221786
-0.13954
0.0427692
0.0672412
0.0945279
-0.0433647
-0.0807326
-0.0727943
-0.0551826
-0.0389264
-0.0297242
-0.0298899
-0.0310469
-0.0274455
-0.0254499
-0.0239738
-0.0224135
-0.0209619
-0.019546
-0.018205
-0.016981
-0.0158802
-0.014884
-0.0139659
-0.0131035
-0.0122819
-0.0114915
-0.0107261
-0.00998094
-0.00925299
-0.00854021
-0.0078414
-0.00715596
-0.0064837
-0.00582473
-0.00517933
-0.0045479
-0.0039309
-0.0033288
-0.00274208
-0.00217119
-0.00161653
-0.00107847
-0.000557303
-5.3284e-05
0.000433391
0.000902578
0.00135418
0.00178815
0.00220447
0.0026032
0.00298441
0.00334824
0.00369484
0.00402442
0.00433721
0.00463349
0.00491353
0.00517764
0.00542616
0.00565944
0.00587786
0.0060818
0.00627168
0.00644793
0.00661099
0.00676129
0.0068993
0.00702549
0.0421707
0.0415378
0.0406452
0.231845
2.06356
2.2154
2.14969
1.69274
1.6446
1.80026
2.10758
2.08523
2.04143
1.99543
1.82443
0.417659
0.543492
2.53671
2.58875
2.55834
2.5116
2.47955
2.43037
1.37665
2.66927
2.63363
2.59735
1.70666
-0.14493
-0.216757
-0.20414
-0.16806
-0.0335773
-0.0287298
-0.0928139
-0.11004
-0.100421
-0.0822866
-0.0636873
-0.0434902
-0.0381732
-0.0355905
-0.0298241
-0.0246584
-0.0206927
-0.0176617
-0.0153279
-0.0134806
-0.0119609
-0.0109063
-0.0100164
-0.00926462
-0.00862696
-0.00807245
-0.00757743
-0.00712481
-0.0067012
-0.00629645
-0.00590313
-0.00551591
-0.00513108
-0.00474619
-0.00435982
-0.00397128
-0.00358046
-0.00318766
-0.00279345
-0.00239862
-0.00200406
-0.00161074
-0.00121964
-0.000831736
-0.000447979
-6.92738e-05
0.000303528
0.000669639
0.00102834
0.00137897
0.00172096
0.00205378
0.002377
0.00269023
0.00299314
0.00328547
0.003567
0.00383758
0.00409711
0.00434552
0.00458278
0.00480893
0.00502401
0.00522811
0.00542135
0.00560387
0.00577584
0.00593746
0.00608894
0.00623051
0.00636243
0.00648496
-0.0277373
-0.0294063
-0.0331303
-0.0340395
0.00693167
-0.0115346
-0.0405464
-0.0360756
-0.0245269
0.117031
0.0164777
-0.0585734
-0.0602617
0.0134322
0.176251
0.0880917
0.868498
2.0513
2.2085
2.46719
2.60687
2.59215
2.51669
2.58358
2.77252
2.74741
2.74152
0.820341
-0.157341
-0.153164
-0.145865
-0.127692
-0.1163
-0.115368
-0.104776
-0.0918345
-0.0783515
-0.0638965
-0.0529502
-0.0457404
-0.0389617
-0.0322842
-0.0266719
-0.0220807
-0.0183674
-0.0154044
-0.0130731
-0.0112565
-0.00985574
-0.00856279
-0.00753417
-0.00670592
-0.00602389
-0.00545376
-0.0049706
-0.00455525
-0.00418948
-0.0038592
-0.00355392
-0.00326552
-0.00298786
-0.00271644
-0.00244796
-0.00218013
-0.00191143
-0.00164094
-0.00136822
-0.00109316
-0.00081595
-0.000536949
-0.00025667
2.42869e-05
0.000305261
0.00058556
0.000864483
0.00114134
0.00141545
0.00168617
0.00195289
0.00221505
0.00247213
0.00272365
0.00296918
0.00320835
0.00344082
0.0036663
0.00388455
0.00409535
0.00429855
0.00449401
0.00468163
0.00486137
0.00503318
0.00519708
0.00535308
0.00550122
0.00564159
0.00577426
0.00589935
0.00601697
-0.0213616
-0.0214763
-0.0233116
-0.0267655
-0.0312517
-0.0355437
-0.03775
-0.0396726
-0.0421757
-0.0478108
-0.0534005
-0.0592468
-0.0658692
-0.0700227
-0.0681116
0.091733
0.400484
0.0148598
-0.0100235
0.12404
0.257285
0.315583
0.211319
0.0602053
0.557032
1.16149
0.468583
-0.0984406
-0.126903
-0.119798
-0.111722
-0.103759
-0.0951607
-0.0862698
-0.0771877
-0.0681191
-0.0589997
-0.0511092
-0.0445488
-0.0382634
-0.0326495
-0.0277661
-0.0235781
-0.0200401
-0.0170873
-0.0146335
-0.0125867
-0.0108688
-0.00942225
-0.00819939
-0.00716718
-0.00629447
-0.00555707
-0.00492902
-0.00438807
-0.00392174
-0.00350948
-0.00314148
-0.00280907
-0.00250422
-0.0022205
-0.00195275
-0.00169683
-0.00144948
-0.00120815
-0.000970905
-0.00073631
-0.000503348
-0.00027134
-3.9879e-05
0.000191224
0.000421988
0.000652299
0.000881947
0.00111065
0.00133808
0.00156387
0.00178763
0.00200899
0.00222754
0.0024429
0.00265472
0.00286264
0.00306636
0.00326556
0.00345999
0.00364939
0.00383355
0.00401227
0.00418538
0.00435275
0.00451425
0.0046698
0.00481934
0.00496282
0.00510021
0.00523153
0.00535676
0.00547594
0.00558909
-0.0364671
-0.0367365
-0.0374054
-0.0383683
-0.0395076
-0.0407878
-0.0422123
-0.0439859
-0.0462381
-0.0489887
-0.052075
-0.0547734
-0.0568453
-0.0589693
-0.0519421
-0.00909013
-0.070098
-0.0714971
-0.0743064
-0.0786953
-0.0823499
-0.0833151
-0.0842959
-0.0880891
-0.0956183
-0.0997898
-0.09697
-0.0935076
-0.0893569
-0.08443
-0.0791147
-0.0734976
-0.0676959
-0.0618221
-0.0560225
-0.0504378
-0.0451957
-0.0402808
-0.0357389
-0.0315965
-0.0278668
-0.0245474
-0.0216156
-0.019033
-0.0167566
-0.0147495
-0.0129832
-0.0114339
-0.0100783
-0.00889349
-0.0078579
-0.00695247
-0.00616009
-0.00546517
-0.00485446
-0.00430855
-0.00382328
-0.00338743
-0.00299198
-0.00263065
-0.00229841
-0.00199006
-0.0017012
-0.00142824
-0.0011682
-0.000918637
-0.00067754
-0.0004433
-0.000214642
9.42223e-06
0.000229645
0.000446578
0.000660608
0.000871988
0.00108086
0.00128728
0.00149124
0.00169266
0.00189143
0.00208741
0.00228043
0.00247032
0.0026569
0.00283999
0.00301939
0.00319495
0.00336648
0.00353384
0.00369687
0.00385545
0.00400946
0.0041588
0.00430337
0.00444312
0.00457798
0.00470791
0.00483289
0.00495289
0.00506789
0.00517789
-0.0362187
-0.0364675
-0.0368608
-0.037425
-0.0381416
-0.0389807
-0.039906
-0.0409049
-0.0420057
-0.0432496
-0.0446561
-0.0461625
-0.0477118
-0.0491358
-0.0493109
-0.0540372
-0.0560286
-0.057579
-0.0591427
-0.0606896
-0.0618385
-0.0624116
-0.0626544
-0.0630035
-0.0636492
-0.0636982
-0.0627167
-0.0612171
-0.059265
-0.0569809
-0.0543958
-0.0515511
-0.0485263
-0.0453967
-0.0422282
-0.039078
-0.0359935
-0.0330171
-0.0301799
-0.0275031
-0.0249972
-0.0226643
-0.0205025
-0.018509
-0.016681
-0.0150142
-0.0135016
-0.012134
-0.0109004
-0.00978923
-0.00878926
-0.00788955
-0.00707967
-0.00634989
-0.00569118
-0.00509506
-0.00455423
-0.00406257
-0.00361351
-0.00320043
-0.00281807
-0.0024628
-0.00213143
-0.00182055
-0.00152717
-0.00124882
-0.00098339
-0.00072908
-0.000484363
-0.000247963
-1.882e-05
0.000203937
0.000421018
0.000632993
0.000840315
0.00104333
0.00124231
0.00143745
0.00162887
0.00181667
0.00200089
0.00218155
0.00235864
0.00253211
0.00270191
0.00286799
0.00303028
0.00318871
0.00334322
0.00349376
0.00364025
0.00378267
0.00392095
0.00405505
0.00418493
0.00431056
0.0044319
0.00454894
0.00466166
0.00477005
-0.0366815
-0.0368335
-0.037065
-0.0373845
-0.0377894
-0.0382694
-0.0388256
-0.0394604
-0.0401791
-0.0409856
-0.0418752
-0.0428353
-0.0438629
-0.0449634
-0.0462382
-0.0474939
-0.0485836
-0.0495137
-0.0503118
-0.0509579
-0.0514075
-0.0516399
-0.0516752
-0.0515249
-0.0511451
-0.0504379
-0.0493769
-0.048069
-0.0465779
-0.0449187
-0.0431395
-0.0412527
-0.039281
-0.0372459
-0.0351703
-0.0330788
-0.0309947
-0.0289391
-0.0269303
-0.0249835
-0.0231117
-0.0213256
-0.0196333
-0.0180403
-0.0165492
-0.01516
-0.0138703
-0.0126765
-0.011574
-0.0105578
-0.00962232
-0.00876193
-0.00797091
-0.00724359
-0.00657448
-0.00595828
-0.00539006
-0.00486519
-0.00437934
-0.00392903
-0.00350971
-0.00312028
-0.0027547
-0.00241071
-0.00208622
-0.00177904
-0.00148725
-0.00120915
-0.000943266
-0.000688273
-0.000443036
-0.000206569
2.19745e-05
0.000243319
0.000458079
0.000666778
0.000869855
0.00106768
0.00126055
0.00144873
0.00163242
0.00181178
0.00198692
0.00215795
0.00232493
0.00248791
0.00264693
0.00280202
0.0029532
0.00310048
0.00324386
0.00338336
0.00351896
0.00365068
0.00377849
0.0039024
0.0040224
0.00413847
0.00425061
0.00435882
-0.035883
-0.0359864
-0.0361389
-0.036348
-0.0366163
-0.0369415
-0.0373191
-0.0377446
-0.0382144
-0.0387245
-0.0392701
-0.0398446
-0.0404402
-0.0410466
-0.0416477
-0.0422167
-0.0427285
-0.0431601
-0.04349
-0.0437041
-0.0437935
-0.0437533
-0.0435809
-0.0432662
-0.0427861
-0.0421273
-0.0413084
-0.0403358
-0.0392271
-0.0380006
-0.0366756
-0.0352694
-0.0337991
-0.0322811
-0.0307315
-0.0291654
-0.027597
-0.0260396
-0.0245055
-0.0230053
-0.0215482
-0.0201418
-0.0187917
-0.0175018
-0.0162747
-0.0151115
-0.0140124
-0.0129768
-0.0120034
-0.0110903
-0.0102351
-0.00943517
-0.0086876
-0.00798932
-0.0073372
-0.00672812
-0.00615901
-0.00562691
-0.00512904
-0.00466281
-0.00422586
-0.00381304
-0.00342437
-0.00305752
-0.00271034
-0.00238119
-0.00206844
-0.00177052
-0.00148609
-0.00121393
-0.000952962
-0.000702211
-0.000460826
-0.000228049
-3.21508e-06
0.000214265
0.00042491
0.000629173
0.000827453
0.0010201
0.0012074
0.00138961
0.00156695
0.0017396
0.00190772
0.00207145
0.00223089
0.00238616
0.00253733
0.00268448
0.00282767
0.00296695
0.00310236
0.00323395
0.00336175
0.00348579
0.00360608
0.00372265
0.0038355
0.00394465
-0.0343818
-0.034452
-0.0345497
-0.0346798
-0.034844
-0.03504
-0.0352645
-0.0355134
-0.0357824
-0.0360667
-0.0363607
-0.0366583
-0.0369524
-0.0372344
-0.0374936
-0.0377184
-0.037898
-0.0380206
-0.0380749
-0.0380522
-0.0379457
-0.0377507
-0.0374632
-0.0370802
-0.036598
-0.0360156
-0.0353358
-0.0345617
-0.033701
-0.0327625
-0.0317561
-0.0306919
-0.0295802
-0.0284313
-0.0272555
-0.0260627
-0.0248622
-0.0236628
-0.0224725
-0.0212984
-0.0201466
-0.0190224
-0.0179302
-0.0168734
-0.0158548
-0.0148764
-0.0139393
-0.0130444
-0.0121916
-0.0113808
-0.0106112
-0.00988162
-0.00919089
-0.00853748
-0.00791974
-0.00733593
-0.00678425
-0.00626287
-0.00576996
-0.00530372
-0.00486235
-0.00444414
-0.00404765
-0.00367108
-0.00331327
-0.00297246
-0.00264745
-0.00233713
-0.00204039
-0.00175621
-0.00148367
-0.0012219
-0.000970128
-0.00072766
-0.000493852
-0.000268128
-4.99693e-05
0.000161093
0.000365479
0.000563567
0.000755693
0.000942158
0.00112323
0.00129915
0.00147013
0.00163635
0.00179798
0.00195517
0.00210803
0.0022567
0.00240127
0.00254183
0.00267847
0.00281125
0.00294024
0.0030655
0.00318708
0.00330502
0.00341937
0.00353015
-0.032492
-0.0325387
-0.0325978
-0.0326725
-0.0327625
-0.0328664
-0.0329817
-0.0331055
-0.0332347
-0.0333656
-0.0334942
-0.0336161
-0.0337261
-0.0338184
-0.033887
-0.0339252
-0.0339302
-0.0338887
-0.033799
-0.0336561
-0.0334559
-0.033195
-0.0328711
-0.0324827
-0.0320292
-0.0315109
-0.0309295
-0.0302875
-0.0295892
-0.0288392
-0.0280431
-0.0272068
-0.0263363
-0.025438
-0.024518
-0.0235825
-0.0226376
-0.0216888
-0.0207415
-0.0198005
-0.0188702
-0.0179546
-0.0170571
-0.0161806
-0.0153274
-0.0144997
-0.0136987
-0.0129257
-0.0121814
-0.011466
-0.0107797
-0.0101223
-0.00949332
-0.00889221
-0.00831821
-0.00777046
-0.00724799
-0.00674976
-0.00627469
-0.00582169
-0.00538965
-0.00497747
-0.0045841
-0.00420854
-0.00384938
-0.00350598
-0.00317717
-0.00286209
-0.00255996
-0.00226995
-0.00199129
-0.0017233
-0.0014653
-0.00121669
-0.000976903
-0.000745423
-0.00052177
-0.000305505
-9.6228e-05
0.00010643
0.000302804
0.000493202
0.000677904
0.000857162
0.00103121
0.00120024
0.00136446
0.00152402
0.0016791
0.00182982
0.00197632
0.00211873
0.00225715
0.00239167
0.0025224
0.00264939
0.00277272
0.00289246
0.00300867
0.00312139
-0.0304272
-0.030457
-0.0304898
-0.0305265
-0.030567
-0.0306105
-0.030655
-0.0306986
-0.0307391
-0.030774
-0.0308006
-0.0308158
-0.0308167
-0.0307996
-0.0307608
-0.0306968
-0.030604
-0.0304787
-0.0303179
-0.0301188
-0.0298791
-0.0295969
-0.0292709
-0.0289005
-0.0284856
-0.0280266
-0.0275249
-0.0269823
-0.026401
-0.025784
-0.0251345
-0.0244562
-0.0237528
-0.0230284
-0.0222868
-0.0215321
-0.0207682
-0.0199988
-0.0192276
-0.0184579
-0.0176928
-0.0169353
-0.0161878
-0.0154527
-0.0147319
-0.0140271
-0.0133396
-0.0126707
-0.0120212
-0.0113917
-0.0107827
-0.0101943
-0.00962661
-0.00907957
-0.00855292
-0.00804631
-0.00755931
-0.00709139
-0.00664197
-0.00621043
-0.00579611
-0.00539834
-0.00501643
-0.0046497
-0.00429747
-0.00395896
-0.00363357
-0.00332058
-0.00301935
-0.00272933
-0.00244992
-0.00218057
-0.00192076
-0.00166998
-0.00142778
-0.00119372
-0.000967374
-0.000748374
-0.000536358
-0.000330993
-0.000131969
6.10011e-05
0.000248183
0.000429822
0.000606145
0.000777362
0.000943666
0.00110524
0.00126224
0.00141483
0.00156315
0.00170732
0.00184748
0.00198373
0.00211618
0.00224491
0.00237001
0.00249155
0.0026096
0.00272424
-0.028326
-0.0283438
-0.0283587
-0.0283707
-0.0283797
-0.0283851
-0.0283857
-0.0283802
-0.0283671
-0.0283449
-0.0283117
-0.0282657
-0.0282049
-0.0281272
-0.0280305
-0.0279127
-0.0277717
-0.0276056
-0.0274125
-0.0271911
-0.0269399
-0.0266582
-0.0263451
-0.0260006
-0.0256248
-0.025218
-0.0247813
-0.0243158
-0.0238229
-0.0233047
-0.0227631
-0.0222003
-0.0216189
-0.0210213
-0.0204102
-0.0197882
-0.0191579
-0.0185219
-0.0178826
-0.0172424
-0.0166035
-0.0159681
-0.0153379
-0.0147149
-0.0141005
-0.0134961
-0.012903
-0.0123221
-0.0117543
-0.0112004
-0.0106607
-0.0101359
-0.009626
-0.00913132
-0.00865187
-0.0081876
-0.00773839
-0.00730402
-0.00688425
-0.00647876
-0.0060872
-0.00570919
-0.00534431
-0.00499215
-0.00465228
-0.00432425
-0.00400764
-0.00370196
-0.00340675
-0.00312156
-0.00284598
-0.0025796
-0.00232201
-0.00207283
-0.00183169
-0.00159824
-0.00137215
-0.0011531
-0.000940778
-0.000734907
-0.000535215
-0.000341448
-0.000153369
2.92459e-05
0.000206608
0.000378914
0.00054635
0.00070909
0.000867296
0.00102112
0.00117069
0.00131616
0.00145762
0.00159522
0.00172904
0.00185921
0.00198581
0.00210892
0.00222863
0.002345
-0.0262748
-0.0262844
-0.0262878
-0.0262844
-0.0262741
-0.0262566
-0.0262312
-0.0261971
-0.0261533
-0.026099
-0.0260329
-0.025954
-0.025861
-0.0257527
-0.0256279
-0.0254854
-0.0253239
-0.0251425
-0.0249401
-0.0247159
-0.0244694
-0.0242
-0.0239076
-0.0235921
-0.0232537
-0.0228928
-0.0225101
-0.0221064
-0.0216828
-0.0212405
-0.0207808
-0.0203054
-0.0198157
-0.0193134
-0.0188004
-0.0182785
-0.0177493
-0.0172146
-0.0166763
-0.0161359
-0.015595
-0.0150553
-0.0145181
-0.0139848
-0.0134565
-0.0129345
-0.0124196
-0.0119128
-0.0114149
-0.0109265
-0.0104481
-0.00998017
-0.00952314
-0.00907726
-0.0086427
-0.00821959
-0.00780798
-0.00740785
-0.00701916
-0.00664177
-0.00627553
-0.00592025
-0.00557572
-0.0052417
-0.00491794
-0.00460417
-0.00430011
-0.00400548
-0.00371997
-0.00344326
-0.00317505
-0.00291505
-0.00266295
-0.00241848
-0.00218135
-0.0019513
-0.00172806
-0.00151139
-0.00130104
-0.00109678
-0.00089838
-0.00070563
-0.00051832
-0.000336255
-0.000159248
1.28759e-05
0.000180282
0.000343124
0.00050155
0.000655697
0.000805699
0.000951681
0.00109376
0.00123207
0.0013667
0.00149776
0.00162536
0.0017496
0.00187054
0.00198828
-0.024324
-0.0243281
-0.0243241
-0.0243113
-0.0242899
-0.0242595
-0.0242199
-0.0241704
-0.0241106
-0.0240399
-0.0239577
-0.0238632
-0.0237558
-0.0236348
-0.0234993
-0.0233489
-0.0231828
-0.0230004
-0.0228013
-0.0225851
-0.0223515
-0.0221003
-0.0218315
-0.0215452
-0.0212416
-0.0209211
-0.0205842
-0.0202315
-0.0198637
-0.0194817
-0.0190866
-0.0186792
-0.0182607
-0.0178323
-0.0173953
-0.0169507
-0.0165
-0.0160443
-0.0155849
-0.0151229
-0.0146597
-0.0141962
-0.0137337
-0.013273
-0.0128151
-0.012361
-0.0119115
-0.0114672
-0.0110288
-0.0105969
-0.0101721
-0.00975468
-0.00934513
-0.00894373
-0.00855072
-0.00816632
-0.00779065
-0.00742382
-0.00706587
-0.00671681
-0.00637662
-0.00604523
-0.00572255
-0.00540848
-0.00510288
-0.0048056
-0.00451649
-0.00423538
-0.00396207
-0.00369637
-0.00343806
-0.00318694
-0.00294281
-0.00270546
-0.00247469
-0.0022503
-0.0020321
-0.00181988
-0.00161347
-0.00141267
-0.00121732
-0.00102723
-0.000842243
-0.000662184
-0.000486901
-0.000316244
-0.00015007
1.17549e-05
0.000169362
0.000322877
0.000472422
0.000618119
0.000760082
0.000898419
0.00103323
0.00116462
0.00129268
0.00141751
0.0015392
0.00165784
-0.0224978
-0.0224981
-0.0224897
-0.0224718
-0.0224445
-0.0224076
-0.0223611
-0.0223045
-0.0222378
-0.0221605
-0.0220722
-0.0219726
-0.0218613
-0.0217379
-0.0216019
-0.0214532
-0.0212913
-0.0211159
-0.0209268
-0.0207239
-0.0205071
-0.0202763
-0.0200318
-0.0197735
-0.0195017
-0.0192168
-0.0189191
-0.0186092
-0.0182875
-0.0179547
-0.0176116
-0.0172588
-0.0168972
-0.0165276
-0.0161508
-0.0157678
-0.0153794
-0.0149865
-0.0145902
-0.0141911
-0.0137903
-0.0133886
-0.0129868
-0.0125856
-0.0121859
-0.0117882
-0.0113934
-0.0110019
-0.0106143
-0.0102312
-0.0098529
-0.00947993
-0.00911259
-0.0087512
-0.00839602
-0.00804727
-0.00770515
-0.0073698
-0.00704133
-0.00671981
-0.0064053
-0.00609782
-0.00579735
-0.00550386
-0.00521731
-0.00493763
-0.00466475
-0.00439856
-0.00413897
-0.00388586
-0.00363909
-0.00339854
-0.00316407
-0.00293556
-0.00271285
-0.00249581
-0.00228429
-0.00207815
-0.00187726
-0.00168147
-0.00149064
-0.00130464
-0.00112333
-0.000946598
-0.000774303
-0.000606324
-0.000442536
-0.000282822
-0.000127063
2.48539e-05
0.000173039
0.000317599
0.000458637
0.000596253
0.000730541
0.000861591
0.00098949
0.00111432
0.00123618
0.00135514
-0.0208051
-0.0208029
-0.0207921
-0.0207717
-0.0207419
-0.0207027
-0.020654
-0.0205956
-0.0205274
-0.0204493
-0.020361
-0.0202624
-0.0201533
-0.0200334
-0.0199026
-0.0197607
-0.0196076
-0.0194432
-0.0192673
-0.0190801
-0.0188814
-0.0186714
-0.0184503
-0.018218
-0.017975
-0.0177215
-0.0174578
-0.0171842
-0.0169013
-0.0166094
-0.0163092
-0.0160012
-0.0156859
-0.015364
-0.0150361
-0.0147029
-0.014365
-0.0140232
-0.0136781
-0.0133303
-0.0129806
-0.0126296
-0.0122778
-0.011926
-0.0115747
-0.0112245
-0.0108758
-0.0105292
-0.0101851
-0.00984401
-0.00950625
-0.0091722
-0.00884218
-0.00851648
-0.00819537
-0.00787906
-0.00756776
-0.00726163
-0.00696081
-0.00666542
-0.00637553
-0.00609121
-0.00581251
-0.00553943
-0.005272
-0.00501019
-0.00475398
-0.00450333
-0.00425821
-0.00401855
-0.00378429
-0.00355535
-0.00333165
-0.00311312
-0.00289965
-0.00269114
-0.00248751
-0.00228865
-0.00209446
-0.00190484
-0.00171968
-0.0015389
-0.00136238
-0.00119003
-0.00102174
-0.000857403
-0.000696927
-0.000540202
-0.000387129
-0.000237611
-9.15557e-05
5.1125e-05
0.000190517
0.000326707
0.000459781
0.000589828
0.000716931
0.000841168
0.000962617
0.00108136
-0.0192455
-0.0192417
-0.0192297
-0.0192086
-0.0191784
-0.0191392
-0.019091
-0.0190338
-0.0189674
-0.0188919
-0.0188071
-0.0187129
-0.0186093
-0.0184961
-0.0183734
-0.018241
-0.0180989
-0.0179471
-0.0177857
-0.0176147
-0.0174341
-0.0172441
-0.0170448
-0.0168365
-0.0166192
-0.0163934
-0.0161591
-0.0159168
-0.0156668
-0.0154095
-0.0151452
-0.0148744
-0.0145976
-0.0143152
-0.0140277
-0.0137357
-0.0134395
-0.0131398
-0.0128371
-0.0125318
-0.0122245
-0.0119156
-0.0116057
-0.0112953
-0.0109848
-0.0106746
-0.0103652
-0.010057
-0.00975041
-0.0094457
-0.00914323
-0.00884332
-0.00854626
-0.0082523
-0.0079617
-0.00767466
-0.00739137
-0.00711201
-0.00683673
-0.00656564
-0.00629886
-0.00603648
-0.00577857
-0.00552518
-0.00527635
-0.00503211
-0.00479247
-0.00455742
-0.00432697
-0.0041011
-0.00387978
-0.00366299
-0.00345067
-0.00324279
-0.00303929
-0.00284011
-0.00264518
-0.00245445
-0.00226784
-0.00208528
-0.0019067
-0.00173202
-0.00156116
-0.00139404
-0.00123059
-0.00107072
-0.000914353
-0.000761404
-0.000611796
-0.000465448
-0.000322286
-0.000182235
-4.52206e-05
8.8829e-05
0.000219989
0.000348336
0.000473948
0.000596902
0.000717272
0.00083513
-0.017814
-0.0178092
-0.0177969
-0.017776
-0.0177466
-0.0177088
-0.0176627
-0.0176082
-0.0175454
-0.0174742
-0.0173946
-0.0173065
-0.01721
-0.017105
-0.0169916
-0.0168697
-0.0167394
-0.0166007
-0.0164537
-0.0162985
-0.0161352
-0.015964
-0.0157848
-0.0155981
-0.0154039
-0.0152024
-0.0149939
-0.0147787
-0.014557
-0.0143291
-0.0140953
-0.0138561
-0.0136117
-0.0133625
-0.0131089
-0.0128513
-0.0125901
-0.0123256
-0.0120584
-0.0117887
-0.011517
-0.0112437
-0.0109692
-0.0106938
-0.0104179
-0.010142
-0.00986621
-0.00959103
-0.00931672
-0.00904359
-0.00877192
-0.00850199
-0.00823403
-0.00796828
-0.00770496
-0.00744425
-0.00718635
-0.0069314
-0.00667955
-0.00643094
-0.00618567
-0.00594386
-0.00570558
-0.0054709
-0.00523989
-0.00501259
-0.00478905
-0.00456928
-0.00435331
-0.00414116
-0.00393283
-0.0037283
-0.00352757
-0.00333062
-0.00313743
-0.00294796
-0.00276218
-0.00258004
-0.00240151
-0.00222653
-0.00205505
-0.00188703
-0.0017224
-0.00156111
-0.0014031
-0.00124831
-0.00109668
-0.000948141
-0.000802638
-0.000660102
-0.000520468
-0.000383667
-0.000249635
-0.000118308
1.03754e-05
0.000136475
0.000260054
0.000381181
0.000499929
0.00061637
-0.0165015
-0.0164962
-0.016484
-0.016464
-0.0164362
-0.0164007
-0.0163575
-0.0163067
-0.0162482
-0.0161822
-0.0161086
-0.0160273
-0.0159386
-0.0158423
-0.0157384
-0.0156272
-0.0155085
-0.0153826
-0.0152494
-0.0151092
-0.0149619
-0.0148078
-0.014647
-0.0144796
-0.0143059
-0.0141259
-0.01394
-0.0137483
-0.0135511
-0.0133485
-0.013141
-0.0129287
-0.0127119
-0.012491
-0.0122662
-0.0120378
-0.0118062
-0.0115716
-0.0113345
-0.0110951
-0.0108537
-0.0106107
-0.0103663
-0.010121
-0.00987484
-0.00962827
-0.00938155
-0.00913494
-0.00888871
-0.00864312
-0.00839841
-0.00815481
-0.00791254
-0.0076718
-0.00743277
-0.00719563
-0.00696054
-0.00672767
-0.00649714
-0.00626908
-0.00604363
-0.00582087
-0.0056009
-0.00538381
-0.00516965
-0.0049585
-0.0047504
-0.00454539
-0.00434352
-0.00414479
-0.00394925
-0.0037569
-0.00356775
-0.00338179
-0.00319903
-0.00301945
-0.00284303
-0.00266976
-0.00249961
-0.00233254
-0.00216854
-0.00200756
-0.00184957
-0.00169454
-0.00154243
-0.00139319
-0.00124678
-0.00110314
-0.000962244
-0.000824024
-0.000688431
-0.000555412
-0.000424911
-0.000296873
-0.000171245
-4.79736e-05
7.29943e-05
0.000191715
0.000308248
0.000422661
-0.0152993
-0.0152939
-0.0152823
-0.0152634
-0.0152374
-0.0152044
-0.0151644
-0.0151176
-0.0150638
-0.0150031
-0.0149356
-0.0148613
-0.0147803
-0.0146925
-0.0145981
-0.0144971
-0.0143896
-0.0142757
-0.0141555
-0.014029
-0.0138964
-0.0137579
-0.0136135
-0.0134635
-0.0133079
-0.013147
-0.0129809
-0.0128098
-0.0126338
-0.0124533
-0.0122684
-0.0120793
-0.0118863
-0.0116896
-0.0114895
-0.0112862
-0.01108
-0.010871
-0.0106597
-0.0104462
-0.0102308
-0.0100137
-0.00979529
-0.00957571
-0.00935523
-0.0091341
-0.00891255
-0.00869081
-0.00846911
-0.00824765
-0.00802666
-0.00780632
-0.00758682
-0.00736834
-0.00715105
-0.00693509
-0.00672061
-0.00650775
-0.00629665
-0.00608741
-0.00588015
-0.00567497
-0.00547197
-0.00527123
-0.00507283
-0.00487683
-0.00468331
-0.00449231
-0.00430388
-0.00411806
-0.00393488
-0.00375435
-0.0035765
-0.00340135
-0.00322889
-0.00305915
-0.00289211
-0.00272777
-0.00256612
-0.00240715
-0.00225084
-0.00209718
-0.00194613
-0.00179769
-0.00165181
-0.00150848
-0.00136765
-0.00122929
-0.00109337
-0.000959834
-0.000828657
-0.000699796
-0.000573213
-0.000448863
-0.000326701
-0.00020668
-8.87538e-05
2.71206e-05
0.000140986
0.000252895
-0.0141975
-0.0141923
-0.0141814
-0.0141638
-0.0141399
-0.0141095
-0.0140729
-0.01403
-0.0139809
-0.0139255
-0.0138641
-0.0137965
-0.0137228
-0.0136432
-0.0135576
-0.0134662
-0.013369
-0.0132662
-0.0131578
-0.0130439
-0.0129246
-0.0128001
-0.0126705
-0.0125359
-0.0123964
-0.0122523
-0.0121036
-0.0119505
-0.0117932
-0.0116318
-0.0114666
-0.0112977
-0.0111253
-0.0109496
-0.0107708
-0.0105891
-0.0104047
-0.0102179
-0.0100288
-0.00983767
-0.00964473
-0.00945016
-0.00925419
-0.00905701
-0.00885882
-0.00865984
-0.00846025
-0.00826027
-0.00806007
-0.00785984
-0.00765975
-0.00745996
-0.00726066
-0.00706198
-0.00686407
-0.00666709
-0.00647115
-0.00627639
-0.00608292
-0.00589084
-0.00570025
-0.00551126
-0.00532396
-0.00513842
-0.00495474
-0.00477298
-0.00459321
-0.00441549
-0.00423985
-0.00406635
-0.00389501
-0.00372588
-0.00355896
-0.00339429
-0.00323189
-0.00307177
-0.00291395
-0.00275843
-0.00260523
-0.00245434
-0.00230576
-0.00215947
-0.00201547
-0.00187374
-0.00173426
-0.00159702
-0.00146198
-0.00132913
-0.00119845
-0.00106991
-0.000943482
-0.000819139
-0.000696848
-0.000576575
-0.000458283
-0.000341932
-0.000227478
-0.000114881
-4.10183e-06
0.000104901
-0.0131868
-0.0131818
-0.0131715
-0.0131554
-0.0131334
-0.0131057
-0.0130723
-0.0130332
-0.0129885
-0.0129383
-0.0128826
-0.0128213
-0.0127547
-0.0126826
-0.0126053
-0.0125227
-0.012435
-0.0123423
-0.0122446
-0.0121421
-0.0120348
-0.0119228
-0.0118064
-0.0116855
-0.0115603
-0.011431
-0.0112976
-0.0111603
-0.0110193
-0.0108747
-0.0107267
-0.0105753
-0.0104208
-0.0102634
-0.0101031
-0.00994024
-0.00977489
-0.00960726
-0.00943752
-0.00926585
-0.00909243
-0.00891742
-0.008741
-0.00856334
-0.00838463
-0.00820504
-0.00802473
-0.00784387
-0.00766263
-0.00748115
-0.00729959
-0.00711808
-0.00693677
-0.00675579
-0.00657526
-0.00639532
-0.00621607
-0.00603763
-0.0058601
-0.0056836
-0.00550821
-0.00533403
-0.00516115
-0.00498966
-0.00481964
-0.00465115
-0.00448424
-0.00431899
-0.00415543
-0.0039936
-0.00383354
-0.00367529
-0.00351888
-0.00336434
-0.0032117
-0.00306098
-0.00291221
-0.00276541
-0.00262057
-0.00247772
-0.00233684
-0.00219795
-0.00206103
-0.00192607
-0.00179307
-0.00166201
-0.0015329
-0.00140572
-0.00128047
-0.00115713
-0.00103567
-0.000916086
-0.00079834
-0.00068241
-0.000568269
-0.000455892
-0.000345248
-0.000236303
-0.000129021
-2.33654e-05
-0.0122585
-0.0122537
-0.0122442
-0.0122294
-0.0122093
-0.012184
-0.0121537
-0.0121182
-0.0120777
-0.0120322
-0.0119817
-0.0119263
-0.011866
-0.0118009
-0.0117311
-0.0116566
-0.0115775
-0.0114939
-0.0114059
-0.0113135
-0.011217
-0.0111163
-0.0110115
-0.0109029
-0.0107904
-0.0106741
-0.0105543
-0.010431
-0.0103043
-0.0101744
-0.0100414
-0.00990545
-0.00976664
-0.00962512
-0.00948104
-0.00933455
-0.0091858
-0.00903493
-0.0088821
-0.00872744
-0.0085711
-0.00841323
-0.00825399
-0.00809351
-0.00793196
-0.00776947
-0.00760618
-0.00744223
-0.00727776
-0.0071129
-0.00694778
-0.00678252
-0.00661727
-0.00645212
-0.00628719
-0.0061226
-0.00595844
-0.00579482
-0.00563182
-0.00546955
-0.0053081
-0.00514755
-0.00498799
-0.00482949
-0.00467212
-0.00451594
-0.00436102
-0.00420739
-0.00405512
-0.00390424
-0.0037548
-0.00360683
-0.00346039
-0.00331549
-0.00317218
-0.00303049
-0.00289043
-0.00275203
-0.0026153
-0.00248027
-0.00234693
-0.00221529
-0.00208537
-0.00195716
-0.00183066
-0.00170588
-0.0015828
-0.00146143
-0.00134176
-0.00122377
-0.00110746
-0.00099281
-0.000879799
-0.000768408
-0.000658614
-0.000550402
-0.000443753
-0.000338646
-0.00023506
-0.000132964
-0.0114038
-0.0113994
-0.0113906
-0.0113771
-0.0113588
-0.0113359
-0.0113084
-0.0112763
-0.0112397
-0.0111985
-0.0111529
-0.0111028
-0.0110484
-0.0109896
-0.0109266
-0.0108594
-0.010788
-0.0107126
-0.0106333
-0.0105501
-0.0104631
-0.0103723
-0.010278
-0.0101801
-0.0100788
-0.00997416
-0.00986628
-0.00975527
-0.00964124
-0.00952429
-0.00940453
-0.00928207
-0.00915703
-0.00902953
-0.0088997
-0.00876765
-0.0086335
-0.00849737
-0.00835938
-0.00821967
-0.00807835
-0.00793557
-0.00779145
-0.00764613
-0.00749972
-0.00735235
-0.00720413
-0.00705519
-0.00690563
-0.00675557
-0.00660513
-0.00645441
-0.00630352
-0.00615257
-0.00600166
-0.00585089
-0.00570035
-0.00555012
-0.00540031
-0.005251
-0.00510226
-0.00495418
-0.00480683
-0.00466028
-0.0045146
-0.00436984
-0.00422606
-0.0040833
-0.00394162
-0.00380106
-0.00366166
-0.00352348
-0.00338653
-0.00325087
-0.00311652
-0.00298351
-0.00285186
-0.00272161
-0.00259277
-0.00246536
-0.0023394
-0.0022149
-0.00209187
-0.00197033
-0.00185027
-0.0017317
-0.00161463
-0.00149906
-0.00138497
-0.00127237
-0.00116126
-0.00105163
-0.000943472
-0.000836786
-0.000731553
-0.000627758
-0.000525385
-0.000424422
-0.000324854
-0.000226657
-0.010616
-0.0106118
-0.0106038
-0.0105915
-0.0105749
-0.0105541
-0.0105292
-0.0105001
-0.010467
-0.0104298
-0.0103885
-0.0103433
-0.0102941
-0.010241
-0.0101841
-0.0101235
-0.0100591
-0.00999107
-0.0099195
-0.00984444
-0.00976598
-0.00968417
-0.00959909
-0.00951083
-0.00941948
-0.00932513
-0.00922785
-0.00912774
-0.00902488
-0.00891935
-0.00881127
-0.00870072
-0.00858783
-0.00847269
-0.00835541
-0.00823609
-0.00811481
-0.00799169
-0.00786682
-0.00774031
-0.00761229
-0.00748287
-0.00735215
-0.00722024
-0.00708725
-0.00695328
-0.00681843
-0.00668281
-0.00654653
-0.00640967
-0.00627236
-0.00613467
-0.0059967
-0.00585855
-0.0057203
-0.00558204
-0.00544386
-0.00530583
-0.00516804
-0.00503056
-0.00489346
-0.00475681
-0.00462066
-0.0044851
-0.00435016
-0.00421592
-0.00408243
-0.00394973
-0.00381789
-0.00368695
-0.00355694
-0.00342792
-0.00329993
-0.00317298
-0.00304712
-0.00292238
-0.00279878
-0.00267635
-0.00255511
-0.0024351
-0.00231633
-0.00219881
-0.00208255
-0.00196758
-0.00185389
-0.00174148
-0.00163038
-0.00152057
-0.00141207
-0.00130487
-0.00119898
-0.0010944
-0.000991132
-0.000889173
-0.000788522
-0.00068917
-0.000591104
-0.000494313
-0.000398784
-0.000304501
-0.00988821
-0.0098844
-0.00987708
-0.00986588
-0.00985085
-0.00983203
-0.00980947
-0.0097832
-0.00975322
-0.00971958
-0.00968229
-0.00964141
-0.00959697
-0.00954902
-0.00949761
-0.00944278
-0.00938461
-0.00932316
-0.0092585
-0.00919069
-0.0091198
-0.00904588
-0.00896902
-0.00888929
-0.00880677
-0.00872152
-0.00863362
-0.00854315
-0.00845017
-0.00835478
-0.00825706
-0.0081571
-0.00805499
-0.0079508
-0.00784463
-0.00773657
-0.00762669
-0.00751509
-0.00740186
-0.00728711
-0.00717091
-0.00705337
-0.00693457
-0.00681462
-0.00669359
-0.00657158
-0.00644869
-0.00632501
-0.00620062
-0.00607561
-0.00595008
-0.00582409
-0.00569774
-0.00557111
-0.00544427
-0.0053173
-0.00519029
-0.0050633
-0.00493642
-0.00480971
-0.00468323
-0.00455704
-0.0044312
-0.00430577
-0.00418079
-0.00405632
-0.00393241
-0.00380912
-0.0036865
-0.00356458
-0.00344341
-0.00332303
-0.00320348
-0.00308478
-0.00296697
-0.00285009
-0.00273416
-0.00261921
-0.00250527
-0.00239236
-0.0022805
-0.00216971
-0.00206
-0.00195139
-0.00184389
-0.00173751
-0.00163227
-0.00152816
-0.00142521
-0.00132342
-0.00122279
-0.00112332
-0.00102503
-0.000927894
-0.000831928
-0.00073713
-0.000643492
-0.000551002
-0.000459645
-0.000369406
-0.00921464
-0.00921112
-0.00920444
-0.00919426
-0.00918063
-0.00916358
-0.00914315
-0.00911937
-0.00909225
-0.00906182
-0.00902811
-0.00899114
-0.00895096
-0.0089076
-0.0088611
-0.00881153
-0.00875893
-0.00870336
-0.00864489
-0.00858356
-0.00851944
-0.00845259
-0.00838308
-0.00831097
-0.00823631
-0.00815917
-0.0080796
-0.00799768
-0.00791348
-0.00782708
-0.00773856
-0.00764798
-0.00755542
-0.00746095
-0.00736463
-0.00726654
-0.00716676
-0.00706538
-0.00696249
-0.00685815
-0.00675244
-0.00664545
-0.00653724
-0.00642791
-0.00631753
-0.0062062
-0.00609401
-0.00598102
-0.00586731
-0.00575297
-0.00563805
-0.00552263
-0.00540678
-0.00529058
-0.00517408
-0.00505737
-0.00494052
-0.00482358
-0.00470663
-0.00458973
-0.00447295
-0.00435633
-0.00423993
-0.0041238
-0.00400799
-0.00389255
-0.00377753
-0.00366297
-0.00354891
-0.00343541
-0.0033225
-0.00321024
-0.00309862
-0.0029877
-0.00287753
-0.00276814
-0.00265953
-0.00255175
-0.0024448
-0.00233872
-0.00223351
-0.00212921
-0.00202582
-0.00192337
-0.00182188
-0.00172136
-0.00162184
-0.0015233
-0.00142578
-0.00132927
-0.00123379
-0.00113934
-0.00104592
-0.00095354
-0.000862191
-0.000771879
-0.000682607
-0.000594375
-0.000507178
-0.000421005
-0.00858996
-0.00858674
-0.00858064
-0.0085714
-0.00855905
-0.00854361
-0.00852512
-0.0085036
-0.00847905
-0.00845152
-0.00842101
-0.00838755
-0.00835118
-0.00831192
-0.00826981
-0.00822492
-0.00817728
-0.00812695
-0.00807397
-0.0080184
-0.0079603
-0.00789972
-0.00783674
-0.00777138
-0.00770371
-0.00763377
-0.00756163
-0.00748734
-0.00741097
-0.00733258
-0.00725223
-0.00716999
-0.00708591
-0.00700006
-0.00691252
-0.00682334
-0.00673259
-0.00664035
-0.00654669
-0.00645167
-0.00635535
-0.00625781
-0.00615912
-0.00605934
-0.00595856
-0.00585684
-0.00575426
-0.00565089
-0.00554679
-0.00544202
-0.00533666
-0.00523075
-0.00512437
-0.00501759
-0.00491047
-0.00480307
-0.00469546
-0.0045877
-0.00447985
-0.00437196
-0.00426407
-0.00415625
-0.00404854
-0.00394099
-0.00383364
-0.00372654
-0.00361974
-0.00351327
-0.00340718
-0.00330152
-0.00319631
-0.00309161
-0.00298747
-0.0028839
-0.00278094
-0.00267861
-0.00257694
-0.00247594
-0.00237564
-0.00227606
-0.00217721
-0.00207913
-0.00198183
-0.00188534
-0.00178969
-0.00169489
-0.00160095
-0.0015079
-0.00141573
-0.00132445
-0.00123407
-0.0011446
-0.00105604
-0.000968397
-0.000881669
-0.000795854
-0.000710957
-0.000626983
-0.000543935
-0.000461804
-0.00800926
-0.00800631
-0.0080008
-0.00799244
-0.00798126
-0.00796728
-0.00795054
-0.00793104
-0.00790879
-0.00788384
-0.00785618
-0.00782585
-0.00779287
-0.00775727
-0.0077191
-0.0076784
-0.0076352
-0.00758956
-0.00754152
-0.00749113
-0.00743845
-0.00738351
-0.00732635
-0.00726703
-0.00720558
-0.00714207
-0.00707655
-0.00700907
-0.00693968
-0.00686843
-0.00679536
-0.00672054
-0.00664403
-0.00656587
-0.00648615
-0.00640492
-0.00632224
-0.00623816
-0.00615273
-0.00606602
-0.00597809
-0.00588899
-0.0057988
-0.00570759
-0.00561541
-0.00552232
-0.00542839
-0.00533368
-0.00523824
-0.00514213
-0.00504542
-0.00494815
-0.00485039
-0.00475219
-0.00465361
-0.00455471
-0.00445553
-0.00435614
-0.00425659
-0.00415692
-0.00405719
-0.00395744
-0.00385771
-0.00375807
-0.00365854
-0.00355917
-0.00346001
-0.00336109
-0.00326245
-0.00316412
-0.00306616
-0.00296858
-0.00287144
-0.00277476
-0.00267856
-0.00258288
-0.00248773
-0.00239315
-0.00229915
-0.00220576
-0.00211299
-0.00202088
-0.00192943
-0.00183869
-0.00174865
-0.00165934
-0.00157077
-0.00148297
-0.00139594
-0.00130969
-0.00122424
-0.00113958
-0.00105574
-0.000972715
-0.000890516
-0.000809146
-0.000728603
-0.000648889
-0.000570005
-0.000491949
-0.00746871
-0.00746603
-0.00746101
-0.00745341
-0.00744327
-0.00743059
-0.0074154
-0.00739771
-0.00737754
-0.00735489
-0.0073298
-0.00730227
-0.00727234
-0.00724004
-0.0072054
-0.00716845
-0.00712923
-0.00708777
-0.00704413
-0.00699835
-0.00695047
-0.00690053
-0.00684856
-0.00679462
-0.00673874
-0.00668098
-0.00662138
-0.00655997
-0.00649681
-0.00643193
-0.00636537
-0.00629719
-0.00622744
-0.00615618
-0.00608346
-0.00600934
-0.00593386
-0.00585708
-0.00577904
-0.0056998
-0.00561941
-0.00553792
-0.0054554
-0.0053719
-0.00528747
-0.00520216
-0.00511604
-0.00502914
-0.00494152
-0.00485324
-0.00476435
-0.00467491
-0.00458497
-0.00449457
-0.00440377
-0.00431262
-0.00422116
-0.00412943
-0.00403749
-0.00394537
-0.00385313
-0.00376081
-0.00366845
-0.00357609
-0.00348378
-0.00339155
-0.00329945
-0.00320751
-0.00311576
-0.00302425
-0.00293301
-0.00284207
-0.00275147
-0.00266122
-0.00257137
-0.00248194
-0.00239295
-0.00230442
-0.00221639
-0.00212887
-0.00204188
-0.00195546
-0.00186961
-0.00178436
-0.00169972
-0.00161572
-0.00153237
-0.00144969
-0.00136768
-0.00128637
-0.00120577
-0.00112587
-0.00104668
-0.000968203
-0.000890452
-0.00081343
-0.00073714
-0.00066158
-0.000586744
-0.000512631
-0.00696409
-0.00696168
-0.00695713
-0.00695023
-0.00694101
-0.00692949
-0.00691567
-0.00689959
-0.00688125
-0.00686067
-0.00683786
-0.00681285
-0.00678565
-0.0067563
-0.00672482
-0.00669125
-0.00665561
-0.00661795
-0.00657829
-0.00653668
-0.00649313
-0.00644768
-0.00640039
-0.0063513
-0.00630044
-0.00624785
-0.00619356
-0.0061376
-0.00608002
-0.00602086
-0.00596016
-0.00589796
-0.00583431
-0.00576925
-0.00570283
-0.00563509
-0.00556608
-0.00549585
-0.00542445
-0.00535192
-0.00527832
-0.00520369
-0.00512808
-0.00505153
-0.00497409
-0.0048958
-0.00481672
-0.00473689
-0.00465637
-0.00457519
-0.00449341
-0.00441107
-0.00432822
-0.0042449
-0.00416116
-0.00407704
-0.0039926
-0.00390786
-0.00382289
-0.00373771
-0.00365237
-0.00356691
-0.00348136
-0.00339576
-0.00331015
-0.00322455
-0.00313902
-0.00305357
-0.00296824
-0.00288308
-0.0027981
-0.00271335
-0.00262885
-0.00254463
-0.00246073
-0.00237716
-0.00229396
-0.00221116
-0.00212877
-0.00204681
-0.00196531
-0.00188428
-0.00180374
-0.00172372
-0.00164422
-0.00156528
-0.00148691
-0.00140912
-0.00133193
-0.00125536
-0.00117941
-0.00110409
-0.00102942
-0.000955388
-0.000882001
-0.000809264
-0.000737183
-0.000665762
-0.000595003
-0.00052491
-0.00649218
-0.00649001
-0.00648589
-0.00647964
-0.00647128
-0.00646082
-0.00644828
-0.00643367
-0.00641701
-0.0063983
-0.00637757
-0.00635482
-0.00633007
-0.00630336
-0.0062747
-0.00624413
-0.00621168
-0.00617738
-0.00614125
-0.00610333
-0.00606365
-0.00602224
-0.00597915
-0.00593439
-0.00588801
-0.00584004
-0.0057905
-0.00573942
-0.00568684
-0.0056328
-0.00557735
-0.00552051
-0.00546234
-0.00540286
-0.00534212
-0.00528015
-0.00521699
-0.00515268
-0.00508728
-0.00502083
-0.00495336
-0.00488493
-0.00481556
-0.00474531
-0.0046742
-0.00460229
-0.00452961
-0.00445621
-0.00438214
-0.00430744
-0.00423214
-0.00415629
-0.00407992
-0.00400307
-0.00392579
-0.00384811
-0.00377008
-0.00369174
-0.00361313
-0.00353428
-0.00345524
-0.00337604
-0.00329671
-0.00321729
-0.00313782
-0.00305832
-0.00297882
-0.00289937
-0.00281999
-0.00274071
-0.00266156
-0.00258257
-0.00250377
-0.00242518
-0.00234684
-0.00226877
-0.00219101
-0.00211358
-0.0020365
-0.00195979
-0.00188348
-0.00180757
-0.0017321
-0.00165708
-0.00158252
-0.00150845
-0.00143489
-0.00136184
-0.00128931
-0.00121732
-0.00114587
-0.00107498
-0.00100466
-0.000934906
-0.000865733
-0.000797138
-0.000729125
-0.000661703
-0.000594877
-0.000528636
-0.00604972
-0.00604776
-0.00604401
-0.00603835
-0.00603076
-0.00602126
-0.00600987
-0.00599661
-0.00598146
-0.00596444
-0.00594557
-0.00592487
-0.00590235
-0.00587805
-0.00585197
-0.00582415
-0.00579461
-0.00576337
-0.00573045
-0.00569588
-0.00565971
-0.00562195
-0.00558263
-0.00554179
-0.00549944
-0.00545562
-0.00541035
-0.00536368
-0.00531563
-0.00526623
-0.00521551
-0.00516351
-0.00511026
-0.0050558
-0.00500017
-0.0049434
-0.00488553
-0.0048266
-0.00476664
-0.00470569
-0.00464378
-0.00458095
-0.00451723
-0.00445267
-0.0043873
-0.00432116
-0.00425428
-0.0041867
-0.00411847
-0.00404962
-0.00398018
-0.0039102
-0.00383972
-0.00376876
-0.00369738
-0.00362561
-0.00355348
-0.00348103
-0.00340828
-0.00333528
-0.00326205
-0.00318863
-0.00311503
-0.00304131
-0.00296749
-0.00289361
-0.0028197
-0.00274579
-0.00267192
-0.0025981
-0.00252438
-0.00245077
-0.0023773
-0.00230399
-0.00223087
-0.00215797
-0.00208532
-0.00201293
-0.00194083
-0.00186905
-0.0017976
-0.00172651
-0.0016558
-0.00158549
-0.00151559
-0.00144613
-0.00137711
-0.00130856
-0.00124048
-0.00117289
-0.0011058
-0.00103922
-0.000973158
-0.000907633
-0.000842647
-0.000778207
-0.000714313
-0.000650968
-0.000588178
-0.000525953
-0.00563423
-0.00563246
-0.00562908
-0.00562394
-0.00561704
-0.0056084
-0.00559803
-0.00558594
-0.00557213
-0.00555662
-0.00553941
-0.00552053
-0.0055
-0.00547783
-0.00545405
-0.00542867
-0.00540171
-0.00537319
-0.00534315
-0.0053116
-0.00527859
-0.00524411
-0.00520821
-0.00517089
-0.00513219
-0.00509213
-0.00505075
-0.00500807
-0.00496413
-0.00491894
-0.00487253
-0.00482493
-0.00477617
-0.00472627
-0.00467528
-0.00462323
-0.00457015
-0.00451607
-0.00446103
-0.00440506
-0.00434819
-0.00429046
-0.00423189
-0.00417252
-0.00411239
-0.00405153
-0.00398998
-0.00392775
-0.00386489
-0.00380142
-0.00373737
-0.00367278
-0.00360769
-0.00354212
-0.00347612
-0.00340972
-0.00334295
-0.00327585
-0.00320844
-0.00314075
-0.00307281
-0.00300466
-0.00293632
-0.00286782
-0.00279921
-0.0027305
-0.00266173
-0.00259294
-0.00252414
-0.00245538
-0.00238666
-0.00231802
-0.00224948
-0.00218106
-0.00211279
-0.0020447
-0.0019768
-0.00190913
-0.0018417
-0.00177456
-0.00170771
-0.00164118
-0.00157499
-0.00150915
-0.00144367
-0.00137858
-0.00131389
-0.00124961
-0.00118576
-0.00112236
-0.00105941
-0.000996941
-0.000934947
-0.00087344
-0.00081243
-0.000751922
-0.000691914
-0.000632399
-0.00057337
-0.000514817
-0.00524322
-0.00524165
-0.0052386
-0.00523395
-0.00522769
-0.00521985
-0.00521042
-0.00519941
-0.00518683
-0.0051727
-0.00515703
-0.00513984
-0.00512112
-0.00510091
-0.0050792
-0.00505603
-0.00503141
-0.00500536
-0.00497791
-0.00494908
-0.00491889
-0.00488736
-0.00485452
-0.00482039
-0.00478499
-0.00474835
-0.00471048
-0.00467141
-0.00463116
-0.00458976
-0.00454723
-0.00450361
-0.00445891
-0.00441317
-0.0043664
-0.00431864
-0.00426992
-0.00422025
-0.00416969
-0.00411824
-0.00406594
-0.00401283
-0.00395893
-0.00390427
-0.00384889
-0.00379281
-0.00373606
-0.00367867
-0.00362067
-0.00356209
-0.00350295
-0.00344329
-0.00338313
-0.00332251
-0.00326145
-0.00319999
-0.00313815
-0.00307596
-0.00301346
-0.00295066
-0.0028876
-0.00282431
-0.00276081
-0.00269713
-0.0026333
-0.00256936
-0.00250532
-0.00244124
-0.00237712
-0.002313
-0.00224891
-0.00218486
-0.00212088
-0.002057
-0.00199323
-0.0019296
-0.00186614
-0.00180286
-0.00173979
-0.00167696
-0.00161439
-0.00155211
-0.00149014
-0.00142848
-0.00136718
-0.00130623
-0.00124566
-0.00118548
-0.00112571
-0.00106637
-0.00100747
-0.000949021
-0.000891037
-0.000833526
-0.000776493
-0.000719948
-0.000663897
-0.000608346
-0.0005533
-0.000498777
-0.00487452
-0.0048731
-0.00487034
-0.00486608
-0.00486036
-0.0048532
-0.00484459
-0.00483455
-0.00482308
-0.0048102
-0.00479591
-0.00478021
-0.00476312
-0.00474465
-0.00472482
-0.00470365
-0.00468116
-0.00465738
-0.00463231
-0.00460598
-0.0045784
-0.00454959
-0.00451956
-0.00448835
-0.00445597
-0.00442244
-0.00438778
-0.004352
-0.00431512
-0.00427717
-0.00423816
-0.00419814
-0.00415712
-0.00411512
-0.00407218
-0.00402832
-0.00398356
-0.00393792
-0.00389144
-0.00384414
-0.00379604
-0.00374718
-0.00369757
-0.00364725
-0.00359624
-0.00354455
-0.00349222
-0.00343927
-0.00338572
-0.0033316
-0.00327694
-0.00322177
-0.0031661
-0.00310997
-0.00305339
-0.00299641
-0.00293904
-0.00288132
-0.00282328
-0.00276494
-0.00270634
-0.00264749
-0.00258843
-0.00252917
-0.00246975
-0.0024102
-0.00235053
-0.00229079
-0.00223099
-0.00217117
-0.00211134
-0.00205154
-0.00199178
-0.00193208
-0.00187248
-0.00181298
-0.00175363
-0.00169443
-0.00163542
-0.00157662
-0.00151804
-0.00145971
-0.00140165
-0.00134388
-0.00128642
-0.00122929
-0.00117253
-0.00111614
-0.00106015
-0.00100456
-0.000949406
-0.000894687
-0.000840423
-0.00078662
-0.000733281
-0.000680408
-0.000628005
-0.000576079
-0.000524627
-0.000473623
-0.00452635
-0.00452508
-0.00452257
-0.00451872
-0.00451353
-0.00450701
-0.00449917
-0.00449003
-0.00447958
-0.00446783
-0.00445478
-0.00444044
-0.00442482
-0.00440793
-0.0043898
-0.00437044
-0.00434987
-0.00432811
-0.00430517
-0.00428108
-0.00425585
-0.00422949
-0.00420202
-0.00417345
-0.00414379
-0.00411306
-0.00408128
-0.00404846
-0.00401464
-0.00397982
-0.00394404
-0.0039073
-0.00386964
-0.00383107
-0.00379162
-0.00375131
-0.00371016
-0.00366819
-0.00362543
-0.00358189
-0.0035376
-0.00349258
-0.00344685
-0.00340045
-0.00335338
-0.00330568
-0.00325737
-0.00320847
-0.003159
-0.003109
-0.00305847
-0.00300744
-0.00295593
-0.00290396
-0.00285156
-0.00279874
-0.00274552
-0.00269195
-0.00263803
-0.0025838
-0.00252929
-0.00247452
-0.00241952
-0.00236431
-0.00230892
-0.00225338
-0.00219771
-0.00214193
-0.00208608
-0.00203017
-0.00197424
-0.0019183
-0.00186238
-0.00180651
-0.0017507
-0.00169498
-0.00163937
-0.0015839
-0.0015286
-0.00147348
-0.00141857
-0.00136389
-0.00130948
-0.00125536
-0.00120154
-0.00114805
-0.00109492
-0.00104216
-0.00098979
-0.000937832
-0.000886301
-0.000835212
-0.000784586
-0.000734441
-0.000684796
-0.000635662
-0.000587047
-0.000538956
-0.000491394
-0.00044438
-0.00419665
-0.00419551
-0.00419325
-0.00418977
-0.00418506
-0.00417913
-0.004172
-0.00416367
-0.00415414
-0.00414341
-0.00413149
-0.00411839
-0.00410413
-0.00408872
-0.00407218
-0.00405452
-0.00403573
-0.00401585
-0.00399488
-0.00397284
-0.00394975
-0.00392562
-0.00390046
-0.00387428
-0.0038471
-0.00381893
-0.00378979
-0.00375969
-0.00372866
-0.00369671
-0.00366386
-0.00363013
-0.00359554
-0.00356011
-0.00352386
-0.00348681
-0.00344897
-0.00341037
-0.00337102
-0.00333095
-0.00329017
-0.00324869
-0.00320655
-0.00316374
-0.0031203
-0.00307625
-0.00303161
-0.00298639
-0.00294062
-0.00289433
-0.00284752
-0.00280022
-0.00275246
-0.00270425
-0.00265561
-0.00260657
-0.00255715
-0.00250737
-0.00245724
-0.00240681
-0.00235608
-0.00230508
-0.00225384
-0.00220238
-0.00215071
-0.00209888
-0.00204689
-0.00199477
-0.00194255
-0.00189024
-0.00183788
-0.00178549
-0.00173309
-0.00168071
-0.00162836
-0.00157608
-0.00152388
-0.0014718
-0.00141985
-0.00136807
-0.00131647
-0.00126509
-0.00121396
-0.00116309
-0.00111251
-0.00106226
-0.00101235
-0.000962812
-0.000913675
-0.000864963
-0.000816698
-0.000768898
-0.000721582
-0.000674768
-0.000628479
-0.000582732
-0.000537539
-0.000492907
-0.000448841
-0.000405329
-0.00388407
-0.00388305
-0.00388102
-0.00387786
-0.00387357
-0.00386818
-0.00386169
-0.00385409
-0.00384539
-0.0038356
-0.00382472
-0.00381277
-0.00379976
-0.00378569
-0.00377057
-0.00375441
-0.00373723
-0.00371904
-0.00369986
-0.00367968
-0.00365853
-0.00363642
-0.00361336
-0.00358935
-0.00356443
-0.0035386
-0.00351187
-0.00348426
-0.0034558
-0.00342648
-0.00339634
-0.00336539
-0.00333363
-0.00330109
-0.00326777
-0.0032337
-0.00319888
-0.00316335
-0.00312711
-0.00309019
-0.00305261
-0.00301438
-0.00297551
-0.00293602
-0.00289593
-0.00285525
-0.002814
-0.00277219
-0.00272986
-0.00268701
-0.00264366
-0.00259984
-0.00255556
-0.00251083
-0.00246569
-0.00242013
-0.00237419
-0.00232789
-0.00228125
-0.00223428
-0.00218702
-0.00213949
-0.00209169
-0.00204366
-0.0019954
-0.00194695
-0.00189831
-0.00184952
-0.0018006
-0.00175156
-0.00170243
-0.00165324
-0.00160402
-0.00155477
-0.00150554
-0.00145634
-0.0014072
-0.00135814
-0.00130919
-0.00126039
-0.00121176
-0.00116332
-0.00111512
-0.00106717
-0.00101951
-0.000972166
-0.000925176
-0.000878567
-0.000832375
-0.000786632
-0.000741376
-0.000696641
-0.00065246
-0.000608861
-0.000565874
-0.000523529
-0.000481852
-0.000440861
-0.000400575
-0.000361026
-0.00358707
-0.00358616
-0.00358434
-0.00358147
-0.00357757
-0.00357267
-0.00356676
-0.00355984
-0.00355191
-0.00354299
-0.00353309
-0.00352221
-0.00351035
-0.00349752
-0.00348372
-0.00346897
-0.00345328
-0.00343666
-0.00341912
-0.00340067
-0.00338132
-0.00336108
-0.00333996
-0.00331798
-0.00329514
-0.00327148
-0.00324698
-0.00322167
-0.00319557
-0.00316868
-0.00314102
-0.00311261
-0.00308345
-0.00305356
-0.00302295
-0.00299162
-0.0029596
-0.0029269
-0.00289353
-0.00285952
-0.00282487
-0.0027896
-0.00275373
-0.00271727
-0.00268022
-0.00264261
-0.00260445
-0.00256575
-0.00252654
-0.00248684
-0.00244666
-0.00240603
-0.00236495
-0.00232345
-0.00228153
-0.00223921
-0.0021965
-0.00215342
-0.00210999
-0.00206624
-0.00202218
-0.00197782
-0.00193319
-0.0018883
-0.00184316
-0.0017978
-0.00175223
-0.00170647
-0.00166054
-0.00161447
-0.00156828
-0.00152199
-0.00147562
-0.00142918
-0.00138272
-0.00133625
-0.00128979
-0.00124339
-0.00119706
-0.00115083
-0.00110474
-0.00105882
-0.00101309
-0.000967595
-0.000922369
-0.00087745
-0.000832878
-0.000788692
-0.00074493
-0.000701633
-0.000658846
-0.000616614
-0.000574986
-0.000534007
-0.000493721
-0.000454175
-0.000415422
-0.000377515
-0.000340498
-0.000304392
-0.00330436
-0.00330357
-0.00330192
-0.00329932
-0.00329578
-0.00329133
-0.00328595
-0.00327965
-0.00327243
-0.00326431
-0.00325528
-0.00324535
-0.0032345
-0.00322277
-0.00321016
-0.00319669
-0.00318236
-0.00316717
-0.00315115
-0.00313428
-0.00311659
-0.00309808
-0.00307876
-0.00305864
-0.00303774
-0.00301607
-0.00299364
-0.00297047
-0.00294657
-0.00292193
-0.00289658
-0.00287052
-0.00284375
-0.00281629
-0.00278816
-0.00275936
-0.00272991
-0.00269983
-0.00266913
-0.00263781
-0.0026059
-0.0025734
-0.00254033
-0.00250669
-0.0024725
-0.00243778
-0.00240253
-0.00236676
-0.0023305
-0.00229375
-0.00225654
-0.00221888
-0.00218078
-0.00214225
-0.00210332
-0.00206398
-0.00202426
-0.00198417
-0.00194371
-0.00190291
-0.00186177
-0.00182033
-0.00177858
-0.00173656
-0.00169426
-0.00165171
-0.00160892
-0.00156591
-0.0015227
-0.00147929
-0.00143573
-0.00139201
-0.00134817
-0.00130423
-0.00126021
-0.00121613
-0.00117201
-0.00112788
-0.00108377
-0.00103971
-0.000995719
-0.000951838
-0.0009081
-0.000864542
-0.000821207
-0.000778139
-0.000735389
-0.000693008
-0.000651053
-0.000609581
-0.000568649
-0.000528322
-0.000488665
-0.000449751
-0.00041165
-0.000374435
-0.000338178
-0.000302955
-0.000268836
-0.000235874
-0.00303475
-0.00303403
-0.00303258
-0.00303024
-0.00302705
-0.00302302
-0.00301813
-0.00301242
-0.00300587
-0.00299849
-0.00299027
-0.00298121
-0.00297134
-0.00296066
-0.00294917
-0.00293689
-0.00292381
-0.00290995
-0.00289532
-0.00287993
-0.00286378
-0.00284687
-0.00282923
-0.00281085
-0.00279174
-0.00277192
-0.00275141
-0.0027302
-0.00270832
-0.00268577
-0.00266255
-0.00263867
-0.00261413
-0.00258894
-0.00256313
-0.00253669
-0.00250964
-0.00248199
-0.00245375
-0.00242493
-0.00239555
-0.00236561
-0.00233512
-0.00230411
-0.00227257
-0.00224053
-0.00220798
-0.00217495
-0.00214144
-0.00210747
-0.00207304
-0.00203816
-0.00200286
-0.00196713
-0.001931
-0.00189446
-0.00185754
-0.00182023
-0.00178255
-0.00174452
-0.00170613
-0.00166741
-0.00162836
-0.001589
-0.00154933
-0.00150938
-0.00146915
-0.00142866
-0.00138793
-0.00134695
-0.00130576
-0.00126436
-0.00122277
-0.00118101
-0.00113909
-0.00109704
-0.00105489
-0.00101265
-0.000970342
-0.000928003
-0.00088566
-0.000843343
-0.000801088
-0.000758933
-0.000716918
-0.00067509
-0.000633499
-0.000592205
-0.000551275
-0.000510783
-0.000470811
-0.000431445
-0.000392782
-0.000354929
-0.000318009
-0.000282147
-0.000247475
-0.000214131
-0.000182277
-0.000152139
-0.00277727
-0.00277664
-0.00277531
-0.0027732
-0.00277031
-0.00276665
-0.00276223
-0.00275704
-0.00275108
-0.00274435
-0.00273686
-0.00272862
-0.00271965
-0.00270994
-0.00269951
-0.00268834
-0.00267645
-0.00266384
-0.00265053
-0.0026365
-0.00262177
-0.00260636
-0.00259026
-0.00257349
-0.00255606
-0.00253797
-0.00251924
-0.00249987
-0.00247985
-0.00245921
-0.00243795
-0.00241608
-0.00239361
-0.00237055
-0.0023469
-0.00232269
-0.00229789
-0.00227254
-0.00224663
-0.00222018
-0.0021932
-0.0021657
-0.00213769
-0.00210919
-0.00208018
-0.0020507
-0.00202073
-0.00199028
-0.00195936
-0.00192799
-0.00189617
-0.00186391
-0.00183123
-0.00179812
-0.00176461
-0.0017307
-0.00169639
-0.00166169
-0.0016266
-0.00159114
-0.00155531
-0.00151913
-0.00148259
-0.00144572
-0.00140851
-0.00137097
-0.00133312
-0.00129495
-0.00125648
-0.00121771
-0.00117866
-0.00113934
-0.00109976
-0.00105993
-0.00101987
-0.000979576
-0.000939074
-0.000898375
-0.000857499
-0.000816466
-0.000775296
-0.000734014
-0.000692649
-0.000651232
-0.0006098
-0.000568393
-0.000527058
-0.00048585
-0.000444832
-0.000404077
-0.00036367
-0.000323708
-0.000284296
-0.000245556
-0.000207624
-0.00017066
-0.000134844
-0.000100383
-6.74877e-05
-3.62795e-05
-0.00253059
-0.00253003
-0.00252885
-0.00252695
-0.00252433
-0.00252101
-0.002517
-0.00251229
-0.00250688
-0.00250079
-0.00249401
-0.00248656
-0.00247844
-0.00246964
-0.00246017
-0.00245004
-0.00243925
-0.00242782
-0.00241572
-0.00240298
-0.0023896
-0.00237558
-0.00236092
-0.00234566
-0.00232979
-0.00231331
-0.00229625
-0.00227859
-0.00226035
-0.00224152
-0.00222212
-0.00220217
-0.00218166
-0.00216061
-0.00213901
-0.00211689
-0.00209423
-0.00207105
-0.00204735
-0.00202315
-0.00199844
-0.00197325
-0.00194759
-0.00192145
-0.00189484
-0.00186776
-0.00184023
-0.00181224
-0.0017838
-0.00175492
-0.0017256
-0.00169585
-0.00166569
-0.00163511
-0.00160412
-0.00157273
-0.00154094
-0.00150875
-0.00147616
-0.00144319
-0.00140983
-0.00137609
-0.00134198
-0.00130749
-0.00127264
-0.00123742
-0.00120184
-0.00116589
-0.00112959
-0.00109294
-0.00105594
-0.00101859
-0.000980902
-0.000942869
-0.000904479
-0.000865759
-0.000826714
-0.000787349
-0.00074767
-0.000707686
-0.000667405
-0.000626839
-0.000586
-0.000544906
-0.000503581
-0.000462055
-0.000420367
-0.000378568
-0.000336716
-0.000294889
-0.000253182
-0.000211716
-0.000170634
-0.000130109
-9.03466e-05
-5.15955e-05
-1.4154e-05
2.16279e-05
5.53011e-05
8.61631e-05
-0.00229379
-0.00229331
-0.00229225
-0.00229054
-0.0022882
-0.00228524
-0.00228163
-0.0022774
-0.00227253
-0.00226705
-0.00226096
-0.00225424
-0.00224691
-0.00223896
-0.0022304
-0.00222123
-0.00221146
-0.00220109
-0.00219012
-0.00217857
-0.00216643
-0.00215373
-0.00214045
-0.00212662
-0.00211223
-0.00209728
-0.00208179
-0.00206576
-0.00204919
-0.0020321
-0.00201449
-0.00199637
-0.00197774
-0.00195861
-0.00193898
-0.00191885
-0.00189824
-0.00187714
-0.00185557
-0.00183352
-0.00181101
-0.00178803
-0.0017646
-0.00174071
-0.00171638
-0.00169161
-0.0016664
-0.00164075
-0.00161468
-0.00158818
-0.00156126
-0.00153392
-0.00150617
-0.00147802
-0.00144946
-0.00142048
-0.00139111
-0.00136132
-0.00133113
-0.00130054
-0.00126956
-0.00123819
-0.00120642
-0.00117426
-0.00114171
-0.00110876
-0.00107541
-0.00104165
-0.00100748
-0.000972895
-0.00093789
-0.00090246
-0.000866597
-0.000830296
-0.000793566
-0.000756375
-0.000718715
-0.000680576
-0.000641951
-0.000602827
-0.000563192
-0.00052303
-0.000482322
-0.00044105
-0.000399196
-0.000356739
-0.000313666
-0.000269962
-0.000225623
-0.000180649
-0.000135049
-8.88521e-05
-4.21088e-05
5.09933e-06
5.26522e-05
0.000100376
0.000148017
0.000195205
0.000241511
0.000286673
-0.00206575
-0.00206531
-0.00206435
-0.00206282
-0.00206074
-0.00205809
-0.00205488
-0.00205111
-0.00204678
-0.00204189
-0.00203643
-0.00203041
-0.00202382
-0.00201667
-0.00200898
-0.00200073
-0.00199193
-0.00198259
-0.0019727
-0.00196228
-0.00195135
-0.0019399
-0.00192794
-0.00191547
-0.0019025
-0.00188902
-0.00187505
-0.00186059
-0.00184564
-0.00183022
-0.00181432
-0.00179796
-0.00178112
-0.00176381
-0.00174605
-0.00172784
-0.00170918
-0.00169007
-0.00167053
-0.00165054
-0.00163012
-0.00160926
-0.00158798
-0.00156626
-0.00154413
-0.00152159
-0.00149863
-0.00147527
-0.0014515
-0.00142733
-0.00140275
-0.00137778
-0.00135241
-0.00132665
-0.00130048
-0.00127392
-0.00124695
-0.00121959
-0.00119182
-0.00116365
-0.00113507
-0.0011061
-0.00107671
-0.00104692
-0.00101671
-0.000986083
-0.000955025
-0.000923528
-0.000891584
-0.00085918
-0.000826303
-0.00079294
-0.000759074
-0.000724688
-0.000689762
-0.000654272
-0.000618201
-0.000581535
-0.000544257
-0.000506323
-0.000467693
-0.000428328
-0.000388187
-0.000347226
-0.000305398
-0.000262654
-0.000218944
-0.000174219
-0.000128431
-8.15335e-05
-3.34839e-05
1.57569e-05
6.6216e-05
0.000117901
0.00017079
0.000224823
0.000279944
0.000335806
0.000392054
0.000447649
-0.00184582
-0.00184544
-0.00184461
-0.00184327
-0.00184143
-0.00183908
-0.00183624
-0.00183289
-0.00182904
-0.00182467
-0.00181979
-0.00181441
-0.00180852
-0.00180213
-0.00179523
-0.00178783
-0.00177994
-0.00177156
-0.00176271
-0.00175339
-0.00174361
-0.00173336
-0.00172266
-0.0017115
-0.00169989
-0.00168784
-0.00167534
-0.0016624
-0.00164903
-0.00163522
-0.00162097
-0.00160629
-0.00159119
-0.00157566
-0.00155973
-0.00154338
-0.00152662
-0.00150945
-0.00149187
-0.00147388
-0.00145548
-0.00143668
-0.00141747
-0.00139787
-0.00137788
-0.00135751
-0.00133675
-0.00131562
-0.0012941
-0.0012722
-0.00124992
-0.00122727
-0.00120423
-0.00118082
-0.00115703
-0.00113286
-0.0011083
-0.00108335
-0.00105802
-0.00103228
-0.00100615
-0.000979616
-0.000952673
-0.000925314
-0.000897532
-0.000869317
-0.000840658
-0.000811543
-0.000781957
-0.000751885
-0.000721307
-0.000690201
-0.000658544
-0.000626306
-0.000593455
-0.000559956
-0.000525755
-0.000490786
-0.000455399
-0.000419141
-0.000381974
-0.000343839
-0.000304664
-0.000264359
-0.000222817
-0.000179918
-0.000135523
-8.94716e-05
-4.15859e-05
8.33616e-06
6.05218e-05
0.000115231
0.000172756
0.000233426
0.000297617
0.000365747
0.000438283
0.00051573
0.000598669
0.000687851
-0.00163306
-0.00163275
-0.00163202
-0.00163087
-0.00162925
-0.00162719
-0.00162468
-0.00162173
-0.00161831
-0.00161444
-0.00161011
-0.00160534
-0.00160013
-0.00159446
-0.00158835
-0.0015818
-0.00157481
-0.0015674
-0.00155957
-0.00155132
-0.00154266
-0.00153359
-0.0015241
-0.00151421
-0.00150392
-0.00149322
-0.00148213
-0.00147064
-0.00145876
-0.00144648
-0.00143381
-0.00142076
-0.00140732
-0.00139352
-0.00137934
-0.0013648
-0.00134988
-0.00133459
-0.00131892
-0.00130288
-0.00128647
-0.00126968
-0.00125252
-0.001235
-0.00121712
-0.00119889
-0.0011803
-0.00116136
-0.00114208
-0.00112244
-0.00110245
-0.00108212
-0.00106143
-0.00104039
-0.001019
-0.000997248
-0.000975134
-0.000952653
-0.000929803
-0.000906576
-0.000882968
-0.000858972
-0.000834582
-0.000809789
-0.000784584
-0.000758958
-0.000732898
-0.000706392
-0.000679425
-0.000651982
-0.000624046
-0.000595597
-0.000566615
-0.000537075
-0.000506952
-0.000476217
-0.000444845
-0.000412812
-0.000379669
-0.000345763
-0.000311012
-0.000275329
-0.000238637
-0.000200817
-0.000161764
-0.00012135
-7.94306e-05
-3.58371e-05
9.61898e-06
5.71877e-05
0.000107117
0.00015975
0.000215471
0.000274747
0.00033814
0.000406313
0.000480054
0.000560291
0.000648083
0.000744547
-0.00142681
-0.00142654
-0.00142591
-0.00142488
-0.00142345
-0.00142162
-0.0014194
-0.00141678
-0.00141377
-0.00141037
-0.00140658
-0.0014024
-0.00139782
-0.00139286
-0.00138751
-0.00138178
-0.00137568
-0.00136921
-0.00136238
-0.00135517
-0.00134759
-0.00133964
-0.00133132
-0.00132265
-0.00131362
-0.00130423
-0.0012945
-0.00128442
-0.00127399
-0.00126321
-0.00125209
-0.00124062
-0.00122882
-0.00121669
-0.00120422
-0.00119143
-0.00117831
-0.00116485
-0.00115106
-0.00113693
-0.00112247
-0.00110767
-0.00109256
-0.00107712
-0.00106136
-0.00104528
-0.00102888
-0.00101216
-0.000995114
-0.000977748
-0.00096006
-0.000942052
-0.000923724
-0.000905076
-0.000886104
-0.000866805
-0.000847173
-0.000827203
-0.000806889
-0.000786226
-0.00076521
-0.000743835
-0.000722096
-0.000699987
-0.0006775
-0.000654624
-0.000631351
-0.000607667
-0.00058356
-0.000559015
-0.000534016
-0.000508547
-0.000482588
-0.000456115
-0.000429102
-0.000401517
-0.000373325
-0.000344482
-0.000314937
-0.000284654
-0.00025359
-0.000221691
-0.000188888
-0.000155133
-0.00012035
-8.44577e-05
-4.7367e-05
-8.97821e-06
3.08182e-05
7.21248e-05
0.000115129
0.000159921
0.000206633
0.000255383
0.000306273
0.000359365
0.00041466
0.000472069
0.000531385
0.000592306
-0.00122605
-0.00122582
-0.00122528
-0.00122439
-0.00122316
-0.0012216
-0.00121968
-0.00121742
-0.00121482
-0.00121188
-0.00120861
-0.001205
-0.00120106
-0.00119678
-0.00119218
-0.00118725
-0.001182
-0.00117642
-0.00117052
-0.00116429
-0.00115775
-0.00115089
-0.00114372
-0.00113623
-0.00112844
-0.00112033
-0.00111192
-0.00110321
-0.00109421
-0.00108491
-0.00107532
-0.00106543
-0.00105525
-0.00104477
-0.00103398
-0.00102291
-0.00101154
-0.000999879
-0.000987931
-0.000975694
-0.000963166
-0.000950349
-0.000937242
-0.000923848
-0.000910169
-0.000896206
-0.000881961
-0.000867433
-0.00085262
-0.000837521
-0.000822135
-0.000806461
-0.000790499
-0.000774247
-0.000757706
-0.000740873
-0.000723747
-0.000706326
-0.000688607
-0.000670587
-0.000652263
-0.000633628
-0.000614677
-0.000595402
-0.000575795
-0.000555846
-0.000535547
-0.000514888
-0.000493859
-0.000472451
-0.000450656
-0.00042846
-0.000405851
-0.000382813
-0.00035933
-0.000335382
-0.00031095
-0.000286016
-0.000260559
-0.000234563
-0.000208012
-0.000180893
-0.000153194
-0.000124903
-9.6012e-05
-6.65116e-05
-3.63986e-05
-5.67641e-06
2.56415e-05
5.75291e-05
8.99462e-05
0.000122828
0.000156079
0.000189559
0.000223072
0.000256401
0.00028909
0.000320673
0.000350495
0.000377446
-0.00102986
-0.00102964
-0.00102916
-0.00102838
-0.00102733
-0.00102599
-0.00102437
-0.00102247
-0.00102029
-0.00101782
-0.00101506
-0.00101202
-0.0010087
-0.00100511
-0.00100125
-0.000997105
-0.000992683
-0.000987982
-0.000983004
-0.000977754
-0.000972236
-0.000966452
-0.000960404
-0.000954092
-0.000947519
-0.000940687
-0.000933599
-0.000926257
-0.000918662
-0.000910817
-0.00090272
-0.000894371
-0.000885771
-0.000876919
-0.000867816
-0.000858462
-0.000848858
-0.000839004
-0.000828903
-0.000818553
-0.000807959
-0.00079712
-0.000786038
-0.000774712
-0.00076314
-0.000751321
-0.000739251
-0.00072693
-0.000714356
-0.000701531
-0.000688457
-0.000675135
-0.000661568
-0.000647753
-0.000633691
-0.00061938
-0.000604818
-0.000590004
-0.000574935
-0.000559612
-0.000544031
-0.00052819
-0.000512086
-0.000495712
-0.000479063
-0.000462133
-0.000444915
-0.000427404
-0.000409594
-0.00039148
-0.000373058
-0.00035432
-0.000335261
-0.00031587
-0.000296138
-0.000276055
-0.000255612
-0.000234802
-0.000213617
-0.000192056
-0.000170118
-0.000147806
-0.000125127
-0.000102087
-7.87001e-05
-5.49789e-05
-3.09409e-05
-6.60853e-06
1.79866e-05
4.27994e-05
6.77669e-05
9.28044e-05
0.000117801
0.000142613
0.000167057
0.000190901
0.000213848
0.000235529
0.000255551
0.000273734
-0.000837827
-0.000837652
-0.000837263
-0.000836642
-0.000835777
-0.000834668
-0.000833325
-0.000831752
-0.000829947
-0.00082791
-0.000825643
-0.000823151
-0.000820436
-0.000817492
-0.000814319
-0.000810918
-0.000807294
-0.000803448
-0.000799382
-0.000795097
-0.000790592
-0.000785867
-0.00078092
-0.000775755
-0.000770375
-0.000764785
-0.00075899
-0.000752991
-0.000746786
-0.000740371
-0.000733743
-0.000726904
-0.000719855
-0.0007126
-0.000705144
-0.000697489
-0.000689635
-0.00068158
-0.000673323
-0.000664861
-0.000656192
-0.000647316
-0.000638233
-0.000628945
-0.000619452
-0.000609753
-0.000599849
-0.000589738
-0.000579418
-0.000568889
-0.00055815
-0.000547201
-0.000536046
-0.000524685
-0.000513122
-0.000501359
-0.000489396
-0.000477234
-0.000464871
-0.000452307
-0.000439537
-0.000426558
-0.000413366
-0.000399958
-0.00038633
-0.00037248
-0.000358405
-0.000344103
-0.000329573
-0.000314814
-0.000299822
-0.000284598
-0.000269137
-0.00025344
-0.000237506
-0.000221336
-0.000204933
-0.000188303
-0.000171455
-0.0001544
-0.000137157
-0.000119745
-0.000102192
-8.453e-05
-6.67969e-05
-4.90408e-05
-3.13193e-05
-1.37011e-05
3.73289e-06
2.08867e-05
3.76455e-05
5.38726e-05
6.94089e-05
8.40734e-05
9.76601e-05
0.000109933
0.00012063
0.000129467
0.000136095
0.000139936
-0.000648647
-0.000648493
-0.000648192
-0.000647698
-0.000647015
-0.00064614
-0.000645066
-0.000643838
-0.000642418
-0.000640816
-0.00063904
-0.000637092
-0.000634968
-0.000632666
-0.000630185
-0.000627529
-0.000624703
-0.000621712
-0.000618556
-0.000615235
-0.000611744
-0.000608084
-0.000604254
-0.000600259
-0.0005961
-0.000591782
-0.000587302
-0.000582662
-0.000577856
-0.000572885
-0.000567747
-0.000562444
-0.000556977
-0.000551348
-0.000545558
-0.000539609
-0.000533499
-0.000527227
-0.000520792
-0.000514195
-0.000507436
-0.000500517
-0.000493437
-0.000486197
-0.000478796
-0.000471233
-0.000463508
-0.000455619
-0.000447569
-0.000439355
-0.000430981
-0.000422447
-0.000413752
-0.0004049
-0.00039589
-0.000386723
-0.0003774
-0.000367921
-0.000358285
-0.000348492
-0.000338541
-0.00032843
-0.000318158
-0.000307724
-0.000297127
-0.000286368
-0.000275446
-0.000264362
-0.000253116
-0.00024171
-0.000230143
-0.000218419
-0.000206538
-0.000194503
-0.000182317
-0.000169983
-0.000157509
-0.000144901
-0.000132172
-0.000119336
-0.000106412
-9.34221e-05
-8.03942e-05
-6.73599e-05
-5.43554e-05
-4.1421e-05
-2.86013e-05
-1.59468e-05
-3.51374e-06
8.63504e-06
2.04296e-05
3.17914e-05
4.2632e-05
5.28536e-05
6.23489e-05
7.09992e-05
7.86686e-05
8.52027e-05
9.04632e-05
9.44442e-05
-0.000462709
-0.000462581
-0.000462357
-0.000462016
-0.000461582
-0.000461076
-0.000460503
-0.000459459
-0.00045831
-0.000457061
-0.000455707
-0.000454244
-0.00045267
-0.000450985
-0.000449188
-0.000447277
-0.000445245
-0.000443088
-0.000440807
-0.000438405
-0.000435884
-0.000433248
-0.000430501
-0.000427643
-0.000424672
-0.000421585
-0.000418378
-0.000415048
-0.000411596
-0.000408023
-0.000404333
-0.000400528
-0.000396608
-0.000392571
-0.000388416
-0.000384142
-0.000379751
-0.000375242
-0.000370619
-0.000365882
-0.000361031
-0.000356066
-0.000350986
-0.000345789
-0.000340475
-0.00033504
-0.000329485
-0.000323809
-0.000318014
-0.0003121
-0.000306072
-0.000299931
-0.000293683
-0.000287328
-0.000280868
-0.000274303
-0.000267632
-0.000260853
-0.000253962
-0.000246958
-0.000239839
-0.000232604
-0.000225254
-0.00021779
-0.000210213
-0.000202525
-0.000194729
-0.000186827
-0.00017882
-0.00017071
-0.000162501
-0.000154194
-0.000145794
-0.000137304
-0.000128728
-0.000120074
-0.00011135
-0.000102564
-9.37309e-05
-8.48643e-05
-7.59823e-05
-6.71064e-05
-5.82614e-05
-4.94761e-05
-4.07835e-05
-3.22203e-05
-2.38278e-05
-1.56531e-05
-7.75038e-06
-1.80095e-07
6.99197e-06
1.3695e-05
1.98518e-05
2.53763e-05
3.01751e-05
3.41513e-05
3.72075e-05
3.92442e-05
4.01429e-05
3.97014e-05
-0.0002769
-0.000276773
-0.000276561
-0.000276263
-0.000275867
-0.000275345
-0.000274671
-0.000274121
-0.000273529
-0.000272866
-0.000272127
-0.000271305
-0.000270399
-0.000269413
-0.000268352
-0.000267218
-0.000266013
-0.000264735
-0.000263382
-0.000261955
-0.000260457
-0.000258891
-0.00025726
-0.000255564
-0.000253801
-0.000251967
-0.000250057
-0.000248071
-0.000246007
-0.000243867
-0.000241654
-0.000239371
-0.00023702
-0.000234599
-0.00023211
-0.00022955
-0.000226922
-0.000224226
-0.000221465
-0.000218639
-0.000215749
-0.000212794
-0.000209773
-0.000206681
-0.000203517
-0.000200277
-0.000196961
-0.000193569
-0.000190101
-0.000186563
-0.000182957
-0.000179286
-0.000175555
-0.000171765
-0.000167914
-0.000164002
-0.000160026
-0.000155984
-0.000151872
-0.00014769
-0.000143437
-0.000139113
-0.00013472
-0.000130259
-0.000125733
-0.000121142
-0.000116489
-0.000111775
-0.000107001
-0.000102169
-9.72815e-05
-9.234e-05
-8.73476e-05
-8.23073e-05
-7.72227e-05
-7.20984e-05
-6.69402e-05
-6.17554e-05
-5.65531e-05
-5.13446e-05
-4.61427e-05
-4.0962e-05
-3.58188e-05
-3.0731e-05
-2.57183e-05
-2.08025e-05
-1.6007e-05
-1.13573e-05
-6.88003e-06
-2.60416e-06
1.4404e-06
5.2224e-06
8.70963e-06
1.18698e-05
1.4671e-05
1.70834e-05
1.90795e-05
2.0632e-05
2.17272e-05
2.2425e-05
-9.43672e-05
-9.42356e-05
-9.4158e-05
-9.41247e-05
-9.41363e-05
-9.42014e-05
-9.4333e-05
-9.43561e-05
-9.40978e-05
-9.37964e-05
-9.34686e-05
-9.31218e-05
-9.27596e-05
-9.23812e-05
-9.19834e-05
-9.15637e-05
-9.11214e-05
-9.06574e-05
-9.01728e-05
-8.96682e-05
-8.91431e-05
-8.85958e-05
-8.80237e-05
-8.74238e-05
-8.6794e-05
-8.6133e-05
-8.54411e-05
-8.47192e-05
-8.39684e-05
-8.3189e-05
-8.23805e-05
-8.15425e-05
-8.06746e-05
-7.97774e-05
-7.88525e-05
-7.79017e-05
-7.69267e-05
-7.59288e-05
-7.49081e-05
-7.38639e-05
-7.27949e-05
-7.16996e-05
-7.05765e-05
-6.94245e-05
-6.82431e-05
-6.70324e-05
-6.57933e-05
-6.45274e-05
-6.32366e-05
-6.19235e-05
-6.05902e-05
-5.92388e-05
-5.7871e-05
-5.6488e-05
-5.50901e-05
-5.36771e-05
-5.22484e-05
-5.08031e-05
-4.93405e-05
-4.78603e-05
-4.63623e-05
-4.48472e-05
-4.3316e-05
-4.17701e-05
-4.02111e-05
-3.86407e-05
-3.70605e-05
-3.54722e-05
-3.38769e-05
-3.22759e-05
-3.06699e-05
-2.90597e-05
-2.7446e-05
-2.58294e-05
-2.42109e-05
-2.25919e-05
-2.09742e-05
-1.93604e-05
-1.77536e-05
-1.61579e-05
-1.45777e-05
-1.30187e-05
-1.14868e-05
-9.98859e-06
-8.53158e-06
-7.1241e-06
-5.77575e-06
-4.49737e-06
-3.30092e-06
-2.19971e-06
-1.20937e-06
-3.46669e-07
3.72102e-07
9.31689e-07
1.31757e-06
1.51494e-06
1.51074e-06
1.29597e-06
8.60256e-07
1.65462e-07
0.174781
0.174598
0.174402
0.174231
0.173998
0.173748
0.173909
0.173182
0.172985
0.172606
0.172309
0.171982
0.172253
0.172597
0.170648
0.169866
0.169337
0.168752
0.168108
0.167401
0.166627
0.16578
0.170818
0.168442
0.164813
0.163869
0.162978
0.162061
0.161111
0.16012
0.159081
0.157995
0.156857
0.155652
0.154398
0.153085
0.15181
0.150323
0.148847
0.147341
0.145802
0.144238
0.144927
0.146099
0.138138
0.136248
0.134694
0.133101
0.131481
0.130126
0.128743
0.127043
0.125317
0.1232
0.121201
0.11941
0.117599
0.115771
0.114439
0.113786
0.111438
0.108815
0.107004
0.105159
0.103415
0.111251
0.104387
0.100469
0.0989232
0.0974604
0.0960374
0.094613
0.0932063
0.0918211
0.0904575
0.0891174
0.0878027
0.0866401
0.0900836
0.0906261
0.0804439
0.0785975
0.0774673
0.0764095
0.0753503
0.0743345
0.0745795
0.073423
0.0712997
0.0702204
0.0692043
0.0681943
0.0671972
0.066655
0.066861
0.065959
0.0640149
0.0635674
0.0630372
0.0650652
0.167707
0.167478
0.167235
0.166977
0.166732
0.166473
0.166089
0.165765
0.165432
0.165084
0.164718
0.164495
0.164508
0.163399
0.162833
0.162319
0.161766
0.161175
0.160544
0.159878
0.15918
0.158438
0.157674
0.157144
0.156362
0.155204
0.154303
0.153385
0.152422
0.151408
0.150339
0.149215
0.148041
0.146801
0.145494
0.144134
0.142714
0.141236
0.139701
0.138111
0.13662
0.135064
0.133295
0.131585
0.129939
0.128311
0.126675
0.125027
0.123364
0.12211
0.120894
0.119104
0.116922
0.115116
0.113371
0.111613
0.109842
0.10819
0.106695
0.104389
0.102542
0.100695
0.098818
0.0969062
0.0949571
0.0981112
0.11615
0.107275
0.0956543
0.0933003
0.0914201
0.0897154
0.0881326
0.0866308
0.0852117
0.0838821
0.0826442
0.0815054
0.0827736
0.0895437
0.0988887
0.0718674
0.0688817
0.0680231
0.0670297
0.0660791
0.0651675
0.0642242
0.0632698
0.0623076
0.0613396
0.0603778
0.0595289
0.0592428
0.059229
0.0561615
0.0551499
0.0543596
0.0536434
0.0696149
0.160023
0.159782
0.159527
0.159258
0.158987
0.158703
0.158337
0.157994
0.15763
0.157251
0.156942
0.156413
0.155933
0.155437
0.154915
0.154366
0.153789
0.153181
0.152542
0.15187
0.151168
0.150436
0.149673
0.149224
0.148222
0.147254
0.146347
0.145397
0.144402
0.143366
0.142278
0.141115
0.13986
0.138515
0.137087
0.135641
0.134182
0.132632
0.13097
0.129169
0.127551
0.133699
0.125951
0.122503
0.120782
0.119114
0.117486
0.11588
0.114285
0.113167
0.111413
0.109649
0.107983
0.106172
0.104554
0.102971
0.101396
0.0998876
0.0983034
0.0967439
0.0952435
0.0937653
0.0923136
0.0908944
0.0895155
0.0881877
0.0977303
0.106539
0.105274
0.100644
0.0845417
0.0809665
0.0789295
0.0763527
0.0747387
0.0732301
0.0717175
0.0702008
0.0686775
0.0709505
0.0822048
0.0835758
0.081012
0.0706335
0.0630762
0.0616187
0.0594479
0.0573468
0.0561397
0.0550047
0.0539311
0.0529293
0.052294
0.0524929
0.0499386
0.0489874
0.0482342
0.047558
0.0469856
0.0508589
0.151329
0.151104
0.150864
0.150611
0.150343
0.150059
0.14975
0.149418
0.149062
0.148676
0.148262
0.147818
0.147346
0.146848
0.146326
0.14578
0.145208
0.144608
0.143979
0.143322
0.142772
0.14233
0.141285
0.140441
0.139604
0.138718
0.137784
0.136817
0.135856
0.134933
0.134052
0.133117
0.13206
0.130897
0.130331
0.129473
0.128336
0.127052
0.126076
0.124985
0.139584
0.151579
0.113927
0.109878
0.108561
0.107221
0.105848
0.104447
0.103025
0.101572
0.100091
0.103812
0.101659
0.0956819
0.0937629
0.0922502
0.0907073
0.0930913
0.0892105
0.0867998
0.0852871
0.0838014
0.0823423
0.0809105
0.0795063
0.0781285
0.0767761
0.0754621
0.0925127
0.0951413
0.0933055
0.0915526
0.08977
0.0683202
0.0628611
0.0612836
0.059752
0.0582609
0.0568146
0.0554181
0.0540856
0.0526288
0.0663759
0.0756556
0.0750875
0.0733441
0.0681941
0.0495415
0.0470455
0.0458442
0.0436329
0.0427436
0.0423433
0.0409975
0.03975
0.038786
0.037762
0.036663
0.0354613
0.0341314
0.141097
0.140909
0.140712
0.140508
0.140372
0.140062
0.139751
0.139429
0.139066
0.138659
0.138209
0.137717
0.137217
0.136643
0.135999
0.135428
0.134773
0.133882
0.133064
0.132158
0.133168
0.131057
0.12969
0.128545
0.127336
0.125987
0.12456
0.123019
0.125313
0.123936
0.119776
0.117949
0.115444
0.113207
0.216532
0.159363
0.126862
0.125136
0.12381
0.122533
0.152372
0.157812
0.11455
0.0984632
0.0973821
0.0962665
0.0950575
0.0937772
0.0924353
0.091043
0.0910599
0.0925344
0.0910159
0.0893051
0.0837143
0.0823507
0.0808416
0.0820753
0.0819049
0.0756661
0.0728937
0.0713182
0.0697235
0.0681114
0.0664875
0.0648598
0.0632332
0.061611
0.0627245
0.0812074
0.0803644
0.078668
0.0766771
0.0635766
0.0489817
0.0471298
0.0454344
0.0437753
0.0421527
0.0405711
0.0390349
0.0375517
0.0361539
0.0349377
0.0336231
0.0544699
0.0592627
0.0583972
0.0573608
0.0562097
0.038313
0.0245683
0.0234069
0.0222417
0.0210267
0.0197494
0.0183858
0.0169997
0.0155975
0.0141281
0.128739
0.128592
0.128863
0.130629
0.128958
0.128108
0.127822
0.127471
0.127075
0.12679
0.12688
0.127523
0.128046
0.128261
0.127639
0.125948
0.123991
0.122128
0.120763
0.119683
0.117501
0.116422
0.117395
0.112863
0.110831
0.10987
0.107749
0.106735
0.242005
0.156837
0.137015
0.133118
0.130648
0.200751
0.200541
0.189723
0.111172
0.110181
0.106005
0.134095
0.13482
0.132269
0.115861
0.0921742
0.0903712
0.0885283
0.0875255
0.085603
0.0837582
0.0860249
0.0844152
0.0825885
0.0807794
0.0780714
0.0724039
0.0706705
0.0688314
0.0702096
0.068472
0.0662039
0.061307
0.0587651
0.0566767
0.0545564
0.0524074
0.0502402
0.0480893
0.0459318
0.0460029
0.0655301
0.065223
0.0631815
0.0429439
0.033601
0.0313637
0.029217
0.02713
0.0250986
0.0231229
0.0212067
0.019362
0.0176103
0.0159858
0.0144772
0.013112
0.0119619
0.0205525
0.039166
0.0385692
0.0376845
0.0309324
0.00730088
0.00485933
0.00406446
0.0032858
0.00354441
0.0108147
0.00301975
0.000898457
0.000310807
0.113834
0.114797
0.121217
0.118406
0.114745
0.114112
0.113584
0.113369
0.114653
0.115905
0.117905
0.117538
0.116481
0.11502
0.113117
0.111524
0.110429
0.11248
0.1166
0.119301
0.118569
0.121779
0.158655
0.129221
0.126155
0.144179
0.151584
0.19841
0.195998
0.188549
0.183551
0.180638
0.17801
0.177641
0.177352
0.137786
0.122649
0.11832
0.11889
0.117787
0.114658
0.08437
0.0786516
0.0778128
0.0767679
0.0761373
0.0785492
0.0770112
0.0753378
0.0736821
0.0718738
0.0682363
0.0628098
0.0606335
0.0583923
0.0560456
0.0543395
0.0622536
0.0542169
0.0490143
0.0459303
0.0432134
0.0404574
0.0376731
0.0374685
0.0354299
0.0298739
0.0272287
0.0241424
0.0552335
0.0454443
0.0192435
0.0156504
0.0129471
0.00824353
0.00386574
0.00131402
-0.00121133
-0.0037334
-0.00617655
-0.00783611
-0.0101198
-0.0133198
-0.0157253
-0.0180415
-0.0203295
-0.00678794
0.0195392
0.0185875
-0.00596164
-0.0173712
-0.0189339
-0.0203584
-0.0216591
-0.0228929
-0.0228716
0.0148401
-0.000556806
-0.0148237
-0.0157866
0.103428
0.103152
0.102871
0.0985967
0.0977465
0.097226
0.098295
0.102891
0.103296
0.102424
0.101178
0.0976879
0.0932298
0.092011
0.0898737
0.0954014
0.111325
0.125003
0.140473
0.1395
0.137068
0.129534
0.129541
0.128653
0.176542
0.17485
0.170013
0.155143
0.155366
0.179587
0.180714
0.141938
0.143295
0.122756
0.0981281
0.0973857
0.104191
0.10271
0.0873352
0.0687448
0.0682728
0.067626
0.0667901
0.0668727
0.0692376
0.0679774
0.0664625
0.0636535
0.0583369
0.0553444
0.0530645
0.0506289
0.048048
0.0453316
0.0424823
0.0394926
0.0372184
0.0472347
0.0334985
0.0278397
0.0243066
0.020565
0.016702
0.0137898
0.0465317
0.0254853
0.00906493
0.00490635
0.00077554
-0.00327617
-0.00733611
0.00201523
0.00868278
0.00468979
-0.00789421
-0.0276721
-0.0316832
-0.0346999
-0.0376794
-0.0376103
-0.00587788
-0.0393093
-0.0459378
-0.0479457
-0.0498312
-0.030651
-0.0166134
-0.0193223
-0.0434217
-0.0483204
-0.0490524
-0.0495003
-0.0496655
-0.0495344
-0.0491918
-0.0480933
-0.0264782
-0.0209756
-0.0239752
-0.0425705
0.0845706
0.0832239
0.0779194
0.0777334
0.0773942
0.0836639
0.0852972
0.0847773
0.0839905
0.0787016
0.0731134
0.071982
0.0705733
0.0704267
0.0904741
0.12506
0.129996
0.128468
0.122969
0.10618
0.0716054
0.0698196
0.0681473
0.11008
0.218805
0.158257
0.0782887
0.0774147
0.0752743
0.117491
0.131741
0.0596954
0.0592356
0.0593636
0.0605576
0.0559192
0.0550199
0.0542059
0.0534386
0.052684
0.0517018
0.0508321
0.0501107
0.0507837
0.0484833
0.044749
0.0425194
0.040208
0.0376925
0.0349759
0.0320571
0.0289343
0.0257165
0.0220875
0.0183898
0.0146778
0.0116469
0.044564
0.0224612
0.00629076
0.0017709
-0.0029546
0.0055686
0.0092263
0.00435077
-0.00804721
-0.0269187
-0.0319185
-0.0367098
-0.0396651
-0.0252155
-0.0296204
-0.0349655
-0.0396744
-0.0517068
-0.0690011
-0.0727968
-0.0765764
-0.0746479
-0.0623287
-0.0653697
-0.0813109
-0.0828328
-0.0853981
-0.0628711
-0.0597256
-0.0617914
-0.0749461
-0.0926571
-0.092956
-0.0930027
-0.08374
-0.0896785
-0.0887748
-0.0871939
-0.0644492
-0.0618182
-0.0603936
-0.0603964
-0.0789059
0.0590034
0.0556459
0.0553877
0.0550412
0.062186
0.0649043
0.0642877
0.0602666
0.0535241
0.0528166
0.0519958
0.0510612
0.0500314
0.0808391
0.118111
0.11655
0.112142
0.0573348
0.0420503
0.041759
0.0416408
0.0419727
0.0419754
0.0489561
0.0733372
0.0419522
0.040942
0.0415202
0.041602
0.0414539
0.0413804
0.041427
0.0411828
0.0407705
0.0401729
0.039385
0.0384687
0.037411
0.0362323
0.0349122
0.0335225
0.0321004
0.0298961
0.0278568
0.0256291
0.023194
0.0205388
0.0176628
0.0145482
0.0116215
0.00940021
0.00755968
0.0094199
0.00693445
0.000775182
0.00215374
0.00476179
-0.000648652
-0.0126621
-0.0183154
-0.0248037
-0.0165837
-0.0230452
-0.0293133
-0.0355891
-0.0522902
-0.0577496
-0.0640792
-0.0577346
-0.0638864
-0.0701971
-0.0758478
-0.087144
-0.106465
-0.111228
-0.11639
-0.101912
-0.103965
-0.108058
-0.111617
-0.114642
-0.116942
-0.127285
-0.128102
-0.128859
-0.104565
-0.103718
-0.136147
-0.145643
-0.144116
-0.142187
-0.117943
-0.114316
-0.111064
-0.107151
-0.103943
-0.118901
-0.124283
-0.120448
-0.117064
0.0327853
0.0329222
0.0330334
0.0353516
0.0430444
0.0431926
0.0384955
0.0310503
0.030991
0.0308901
0.0307525
0.0305801
0.0305134
0.0661527
0.143995
0.0537156
0.024477
0.0246677
0.0249094
0.0251604
0.0253823
0.0254433
0.0252573
0.0249481
0.0248558
0.0249037
0.0249373
0.0248107
0.0244815
0.0240005
0.0234339
0.0227904
0.0220829
0.0213075
0.0204371
0.0194696
0.0184001
0.017205
0.0158721
0.014389
0.0127427
0.0109203
0.00890959
0.00669754
0.00426776
0.0016069
-0.00129425
-0.00422859
-0.0036435
0.00114134
0.00329265
0.00371449
-0.000703975
-0.00538315
-0.0103347
-0.0155427
-0.0210768
-0.0339148
-0.0391915
-0.0428588
-0.0461251
-0.0523925
-0.0645396
-0.0777608
-0.083427
-0.0890853
-0.0876449
-0.0886167
-0.0946473
-0.101469
-0.108098
-0.131892
-0.137907
-0.144208
-0.135533
-0.137506
-0.143041
-0.148134
-0.152819
-0.166582
-0.170158
-0.173619
-0.140563
-0.171134
-0.173008
-0.17458
-0.165584
-0.158343
-0.157851
-0.156846
-0.154945
-0.16884
-0.169951
-0.166603
-0.16256
-0.137601
-0.132774
-0.127607
-0.123682
-0.139967
0.00860803
0.00898632
0.00933782
0.0123199
0.0202074
0.0204833
0.0162498
0.00858843
0.00865815
0.00862908
0.0086904
0.00936436
0.00921263
0.016978
0.047574
0.010075
0.006083
0.00687464
0.00668304
0.00702103
0.00728381
0.00746568
0.00757137
0.00761301
0.00759395
0.00750298
0.00734563
0.00712169
0.00682766
0.00645808
0.00600437
0.00545942
0.00482183
0.00407937
0.00322885
0.00225989
0.00117344
-4.34335e-05
-0.00140056
-0.00290879
-0.00457973
-0.00642581
-0.00846121
-0.0107018
-0.0131617
-0.0158464
-0.0185502
-0.0137774
-0.00171727
-0.00356964
-0.00740502
-0.0140105
-0.0235229
-0.0298404
-0.0364856
-0.0474813
-0.056728
-0.061482
-0.0643646
-0.0543776
-0.0552725
-0.0875416
-0.0927461
-0.0983392
-0.0996501
-0.0976292
-0.100595
-0.106238
-0.108011
-0.114521
-0.127648
-0.141038
-0.146606
-0.150217
-0.148312
-0.15246
-0.162554
-0.176606
-0.180151
-0.1839
-0.17452
-0.158195
-0.159886
-0.180134
-0.180825
-0.179665
-0.176448
-0.17487
-0.172819
-0.170244
-0.18381
-0.186763
-0.182781
-0.178242
-0.153132
-0.147616
-0.14295
-0.161272
-0.15575
-0.150184
-0.0142531
-0.0150303
-0.0142259
-0.0134579
-0.00422575
-0.000526643
7.94749e-05
-0.00456868
-0.00904291
-0.00839221
-0.00757565
-0.00418041
-0.00368244
-0.00552896
-0.00502715
-0.00415845
0.0174178
-0.00078574
-0.00735184
-0.00707241
-0.00684296
-0.00666695
-0.00654484
-0.00647623
-0.0064629
-0.00650689
-0.00660951
-0.00677488
-0.00700634
-0.00730712
-0.00768063
-0.00813083
-0.00865973
-0.00927356
-0.00998971
-0.0108027
-0.0117208
-0.0127552
-0.0139157
-0.0152137
-0.0166622
-0.0182758
-0.020072
-0.0220714
-0.024291
-0.0267353
-0.0248352
-0.00585827
-0.00933501
-0.0131713
-0.0313336
-0.0446298
-0.0482235
-0.0519658
-0.0494611
-0.0654631
-0.0699089
-0.0741941
-0.0787927
-0.0749378
-0.0654369
-0.0728531
-0.0790631
-0.0607467
-0.0560847
-0.0618855
-0.0783086
-0.113403
-0.118579
-0.123906
-0.124957
-0.123209
-0.127921
-0.133345
-0.144962
-0.15731
-0.160842
-0.164507
-0.142403
-0.139585
-0.14203
-0.15657
-0.171568
-0.172442
-0.171374
-0.1497
-0.151438
-0.152599
-0.149872
-0.144488
-0.142478
-0.141418
-0.162603
-0.160164
-0.156422
-0.15274
-0.140042
-0.117647
-0.112533
-0.107653
-0.03435
-0.0342493
-0.0351593
-0.0338877
-0.0320659
-0.0223618
-0.0213288
-0.020398
-0.0239883
-0.024679
-0.0236035
-0.017894
-0.0184439
-0.0183551
-0.017365
-0.00505545
-0.00431724
-0.00378706
-0.0170988
-0.01997
-0.0195457
-0.0191655
-0.0188236
-0.0185252
-0.0182738
-0.0180712
-0.0179184
-0.0178167
-0.0177677
-0.0177735
-0.0178361
-0.0179576
-0.0181403
-0.018385
-0.0186953
-0.0190795
-0.0195316
-0.0200579
-0.0206619
-0.0213473
-0.0221181
-0.0229793
-0.023937
-0.0249984
-0.0261673
-0.0274297
-0.0244109
-0.00319826
-0.000844818
-0.0400706
-0.0430536
-0.0449755
-0.0421033
-0.0444118
-0.0525598
-0.060376
-0.0631125
-0.0659573
-0.0687447
-0.0587234
-0.0131015
-0.0104803
-0.0136829
-0.0179428
-0.0579408
-0.0904955
-0.093799
-0.0975029
-0.0883497
-0.0881089
-0.0919012
-0.0992337
-0.117164
-0.12059
-0.123985
-0.126187
-0.0993244
-0.0902175
-0.0936328
-0.117957
-0.129683
-0.131226
-0.132479
-0.133394
-0.132476
-0.0890157
-0.116834
-0.131968
-0.130898
-0.129721
-0.128096
-0.125989
-0.123433
-0.0992914
-0.0820796
-0.0780645
-0.0742141
-0.0853359
-0.104487
-0.100895
-0.0563058
-0.0530096
-0.0512751
-0.0523005
-0.0505232
-0.0486011
-0.0376864
-0.0354725
-0.0341923
-0.0326556
-0.0387555
-0.039292
-0.0378595
-0.0365484
-0.0283127
-0.01765
-0.0164879
-0.015363
-0.014312
-0.0266076
-0.0293245
-0.0293719
-0.0286269
-0.0279543
-0.0273333
-0.0267667
-0.0262555
-0.0258007
-0.0254021
-0.0250597
-0.0247741
-0.024546
-0.0243761
-0.0242652
-0.0242139
-0.0242256
-0.0243015
-0.0244423
-0.0246498
-0.0249268
-0.0252757
-0.0256995
-0.0262021
-0.0267876
-0.0274575
-0.0282098
-0.0290521
-0.0232197
0.0137085
-0.0352267
-0.0363663
-0.0369466
-0.033024
-0.0370896
-0.0461046
-0.0478746
-0.0496968
-0.0514299
-0.0423629
0.0143069
0.0121772
0.00976198
0.00689122
-0.0501163
-0.0645604
-0.0667551
-0.068903
-0.0562229
-0.0539681
-0.0560166
-0.064268
-0.0797773
-0.0819707
-0.084095
-0.0850079
-0.0525787
-0.0467214
-0.0482814
-0.0621519
-0.0855957
-0.087115
-0.0884588
-0.089597
-0.0907384
-0.0907905
-0.0386683
-0.0667894
-0.0886788
-0.0885916
-0.0881892
-0.0771909
-0.0490141
-0.0474
-0.0458261
-0.0443066
-0.0413122
-0.0392088
-0.0374143
-0.0387326
-0.0344728
-0.0752479
-0.0726162
-0.0686568
-0.0664422
-0.0644594
-0.0626701
-0.0607599
-0.0538952
-0.0457977
-0.0440855
-0.0424686
-0.0488238
-0.0486543
-0.0469667
-0.0453497
-0.0347353
-0.0249358
-0.0233648
-0.021894
-0.0204932
-0.0198655
-0.0332977
-0.0326651
-0.0344728
-0.0334452
-0.0325019
-0.0316251
-0.0308139
-0.030068
-0.0293865
-0.0287681
-0.0282129
-0.0277189
-0.0272853
-0.0269119
-0.0266005
-0.026351
-0.026163
-0.0260364
-0.0259744
-0.0259792
-0.0260513
-0.0261955
-0.026417
-0.0267212
-0.0271137
-0.0276093
-0.0282122
-0.0270854
-0.024884
-0.028132
-0.028996
-0.022639
-0.0218506
-0.0331489
-0.0340454
-0.0349625
-0.0358736
-0.0368295
-0.00931591
0.0346613
0.032924
0.0310977
-0.0198943
-0.0403517
-0.0412932
-0.0422643
-0.0409082
-0.0238692
-0.0245614
-0.0261442
-0.0380386
-0.0454514
-0.0460866
-0.046544
-0.0123423
-0.00571253
-0.00593779
-0.00595947
-0.00584043
-0.00576001
-0.0250754
-0.0259399
-0.017548
-0.0162532
-0.0162044
-0.0302745
-0.0531064
-0.0521121
-0.0510915
-0.0291765
-0.011255
-0.0098259
-0.00870292
-0.00747539
-0.0114953
-0.04396
-0.045101
-0.0438034
-0.0427252
-0.0858781
-0.0830783
-0.0804073
-0.0775768
-0.0742728
-0.0719111
-0.0702524
-0.068233
-0.0662927
-0.0601423
-0.0469489
-0.0469923
-0.0528312
-0.0528557
-0.051135
-0.0495127
-0.0427767
-0.027685
-0.0258568
-0.0242651
-0.0226436
-0.0210751
-0.0197034
-0.0322756
-0.033853
-0.0349715
-0.0337796
-0.0326691
-0.0316309
-0.0306639
-0.0297652
-0.0289307
-0.0281747
-0.0274744
-0.0268315
-0.0262413
-0.0257032
-0.0252162
-0.0247758
-0.0243774
-0.0240571
-0.0237702
-0.0235332
-0.023347
-0.0232116
-0.0231286
-0.0231037
-0.0231352
-0.0232008
-0.0232929
-0.0231704
-0.0228913
-0.0234669
-0.022606
-0.0229824
-0.0247313
-0.0251892
-0.0256344
-0.0262916
-0.0268724
-0.0259894
0.0227146
0.0558563
0.0422783
-0.0183461
-0.0210964
-0.0218623
-0.0223228
-0.0227869
-0.0147119
-0.00359812
-0.00405368
-0.0124976
-0.024927
-0.0252448
-0.0255919
-0.00509716
0.0206136
0.0202621
0.0194403
0.0199713
0.0200893
0.01961
0.0117722
-0.016281
-0.0166668
-0.0104853
0.00194036
0.00303308
-0.00700453
-0.0329653
-0.0319617
-0.0313836
-0.0310182
-0.0302081
-0.0293471
-0.0284095
-0.0276235
-0.0269445
-0.0263389
-0.0901567
-0.0869949
-0.0839676
-0.0810613
-0.0782702
-0.0754443
-0.0725385
-0.0700211
-0.0677723
-0.0654024
-0.063065
-0.0575778
-0.0530963
-0.0507978
-0.0507532
-0.0519969
-0.0498861
-0.0478851
-0.0351079
-0.0244912
-0.0227122
-0.0216637
-0.0195126
-0.0178724
-0.016276
-0.0296492
-0.0319136
-0.0319216
-0.0307221
-0.0295995
-0.0285523
-0.0275593
-0.0265784
-0.0258429
-0.0250543
-0.0243107
-0.0236108
-0.0229516
-0.0223269
-0.0217313
-0.0211864
-0.0206891
-0.0202125
-0.0197692
-0.0193584
-0.0189788
-0.0186311
-0.0183145
-0.0180283
-0.0177728
-0.0174736
-0.016783
-0.0168542
-0.0167755
-0.0166232
-0.0161469
-0.0160746
-0.0160233
-0.0163215
-0.0165744
-0.0165762
-0.016528
-0.0162611
0.00272761
0.0224963
0.0183029
-0.00973826
-0.00997537
-0.0101041
-0.0102029
-0.0103475
-0.00422545
0.00657853
0.00721373
0.0020379
-0.0118753
-0.01158
-0.0112019
-0.0107967
-0.00993939
0.019672
0.0545311
-0.0201619
-0.022852
-0.022307
-0.0216737
0.00340494
0.0164813
0.0167983
0.0172973
0.0177047
0.0182914
0.0136697
-0.0185041
-0.0181091
-0.0177449
-0.0174057
-0.0171001
-0.0168259
-0.0165692
-0.0881754
-0.0849352
-0.0818393
-0.07888
-0.0760481
-0.0733333
-0.0707292
-0.0681462
-0.0655477
-0.0632294
-0.0610924
-0.0589179
-0.0558052
-0.0499453
-0.0479715
-0.0487615
-0.0474681
-0.0457342
-0.0392277
-0.0298482
-0.0348407
-0.0325057
-0.018674
-0.0141946
-0.0127616
-0.011474
-0.0146138
-0.0282565
-0.0277478
-0.0266334
-0.0255984
-0.0246449
-0.0234079
-0.0210568
-0.020614
-0.0215911
-0.0208623
-0.0201529
-0.0194629
-0.0187843
-0.0181362
-0.0175298
-0.0169374
-0.0163634
-0.0158131
-0.0152857
-0.0147809
-0.014299
-0.0138388
-0.0133995
-0.012979
-0.0123921
-0.0118042
-0.0118466
-0.0115058
-0.0111785
-0.0104194
-0.00986842
-0.00959231
-0.00978966
-0.00962066
-0.00934368
-0.00898608
-0.00859556
-0.00816263
-0.00579314
-0.000220221
0.000173895
0.000319653
-0.00397686
-0.00597488
-0.00592303
-0.00600325
-0.00150221
0.00874627
0.00862471
0.00714078
-0.00534402
-0.0079725
-0.00819906
-0.00851996
-0.00892318
-0.00917232
-0.00939806
-0.00966145
-0.00995435
-0.0102118
-0.010335
-0.0103709
-0.00930953
0.0196301
0.0305994
0.0299149
0.0159501
-0.00996703
-0.00992887
-0.00988328
-0.0098243
-0.00924396
-0.00849599
-0.0797772
-0.076679
-0.073712
-0.0708687
-0.0681417
-0.065523
-0.0630045
-0.060578
-0.0582118
-0.0557415
-0.0535465
-0.0515228
-0.0494466
-0.0473717
-0.0426673
-0.040188
-0.0386207
-0.0393503
-0.0375736
-0.03583
-0.0317791
-0.0277044
-0.0259172
-0.0211796
-0.00905333
-0.00561255
-0.00465152
-0.00452671
-0.0204086
-0.0211794
-0.0199626
-0.0187916
-0.0175337
-0.00617475
0.00884184
-0.0199641
-0.018999
-0.0180765
-0.0171825
-0.0163376
-0.0155225
-0.0147638
-0.0140305
-0.0133284
-0.0126586
-0.0120198
-0.0114112
-0.0108312
-0.0102791
-0.00975498
-0.00925765
-0.00878602
-0.0083295
-0.00785603
-0.00745424
-0.00713015
-0.00677984
-0.00644419
-0.00599347
-0.00544509
-0.00532808
-0.00525912
-0.00501473
-0.00479041
-0.00455766
-0.004328
-0.004127
-0.00395019
-0.00377349
-0.00284702
-0.00183555
-0.00180004
-0.00268938
-0.00324519
-0.00323773
-0.00318881
0.00407616
0.00811489
0.00434717
-0.00391115
-0.0040768
-0.00396477
-0.004445
-0.0048453
-0.00502768
-0.00521232
-0.00538456
-0.00553263
-0.00564965
-0.00572567
-0.00576963
-0.00581004
-0.00562072
-0.00545632
-0.00534177
-0.0052623
-0.00513431
-0.0040969
-0.00383165
-0.00379316
-0.0664099
-0.0637364
-0.0611722
-0.0587114
-0.0563483
-0.0540762
-0.0518889
-0.0497798
-0.0477428
-0.0457719
-0.0437916
-0.0418743
-0.0399291
-0.0382181
-0.0364929
-0.0337736
-0.0287192
-0.0297823
-0.0292248
-0.0276241
-0.0260023
-0.0230742
-0.0175282
-0.0122636
-0.0156414
-0.0100858
0.00184826
0.00299081
0.000917875
-0.0155657
-0.0144591
-0.0132303
-0.00971477
0.0107214
0.0156649
-0.00739549
-0.0152722
-0.014247
-0.0132787
-0.0121162
-0.011655
-0.0108974
-0.0101584
-0.00945448
-0.00878626
-0.00815164
-0.00754918
-0.00697726
-0.00643519
-0.00592213
-0.00543602
-0.00497122
-0.00452298
-0.00414141
-0.00376266
-0.00340791
-0.00307757
-0.00277312
-0.00248694
-0.00222064
-0.00197324
-0.00170819
-0.00149354
-0.00130778
-0.00116499
-0.00104783
-0.0009194
-0.000792533
-0.000660569
-0.000573045
-0.00049871
-0.000429719
-0.000380187
-0.000358788
-0.000374176
-0.000381353
-0.00040096
-0.000413094
-0.000351023
0.000825325
0.000900626
0.000831215
-0.000537196
-0.000928533
-0.00103598
-0.0011504
-0.00126923
-0.00139118
-0.00151323
-0.00163535
-0.00175525
-0.0018365
-0.00184361
-0.00182661
-0.00181212
-0.00180478
-0.00180465
-0.0018101
-0.00182216
-0.00184245
-0.0496552
-0.047605
-0.0456336
-0.0437383
-0.0419158
-0.0401618
-0.0384723
-0.0368433
-0.0352712
-0.0337522
-0.0322824
-0.0308282
-0.0292157
-0.0275551
-0.0266537
-0.0254106
-0.0238222
-0.0207571
-0.01955
-0.0197371
-0.018567
-0.0174003
-0.013123
-0.00546631
-0.00980014
-0.00862422
-0.00717938
0.00947531
0.0105169
0.00429959
-0.00973059
-0.00849641
-0.00590517
0.0145764
0.0154925
0.0133994
-0.00822251
-0.00757022
-0.00694574
-0.00562204
-0.00212233
-0.00553294
-0.00500024
-0.00446365
-0.00392897
-0.00339748
-0.00290284
-0.00242928
-0.00197842
-0.00155574
-0.001162
-0.000793013
-0.000431121
-0.000109954
0.000172121
0.000392359
0.000624719
0.000837297
0.0010291
0.00120106
0.00135393
0.00148944
0.00160825
0.00171173
0.00180011
0.00187397
0.00193374
0.00198056
0.00202983
0.00205541
0.00204865
0.00204186
0.00203325
0.00201357
0.00198304
0.00194247
0.00189561
0.00185266
0.00180363
0.00174502
0.00167753
0.00161763
0.00154756
0.00146993
0.00138723
0.00130139
0.00121392
0.001126
0.00103852
0.000952012
0.000866919
0.000783566
0.000701549
0.000619902
0.000538733
0.00045792
0.000377369
0.000296842
0.000215447
0.000132883
-0.0315538
-0.0302108
-0.0289135
-0.0276615
-0.0264539
-0.0252885
-0.0241633
-0.0230762
-0.0220256
-0.0210097
-0.0200265
-0.0190753
-0.0181152
-0.0167082
-0.0158297
-0.0155971
-0.014805
-0.0139314
-0.011719
-0.0122916
-0.0115869
-0.010819
-0.0101678
-0.00735559
-0.00534103
-0.00495981
-0.00512239
-0.00469366
0.00776909
0.00973694
0.00465188
0.000621161
0.00122919
0.0168288
0.0251809
0.0254174
0.0163105
-0.00155887
-0.00089722
-0.000231385
0.0107309
0.05656
0.00260481
-0.000465397
0.000396351
0.00113605
0.00176853
0.00226509
0.00271099
0.00308345
0.00339342
0.00365415
0.00387627
0.00405598
0.00433632
0.00465224
0.00434342
0.00441709
0.00447149
0.00450884
0.00453119
0.00454038
0.00453812
0.00452584
0.00450465
0.00447553
0.00443927
0.00439646
0.0043475
0.00429263
0.00423219
0.00416627
0.00409503
0.0040188
0.00393788
0.0038525
0.0037629
0.00366907
0.00357065
0.0034689
0.00336685
0.00326359
0.00315799
0.00304969
0.00293882
0.00282574
0.00271088
0.00259466
0.00247752
0.00235988
0.00224218
0.0021248
0.00200787
0.00189128
0.0017748
0.00165828
0.00154167
0.00142474
0.0013066
0.00118647
-0.0141354
-0.0134722
-0.0128262
-0.0121986
-0.0115903
-0.011001
-0.0104304
-0.00987824
-0.00934465
-0.00882978
-0.00833395
-0.0078577
-0.0074015
-0.00665661
-0.00594094
-0.00605706
-0.00586733
-0.00552826
-0.00521695
-0.00487751
-0.00409757
-0.00350119
-0.0036912
-0.00370602
-0.00273538
-0.000259893
-0.000313148
-0.00141409
-0.00214479
0.00127774
0.0122811
0.0116921
0.00770543
0.00818335
0.0171831
0.0277396
0.0270159
0.0142597
0.00303418
0.00237744
0.013836
0.121323
0.0678174
0.0137638
0.0128919
0.0121872
0.0116114
0.0111076
0.0106661
0.0102851
0.00992882
0.00963338
0.00934828
0.00906799
0.00887948
0.00931037
0.0088654
0.00818045
0.00796376
0.00775616
0.00755704
0.0073662
0.00718302
0.00700683
0.00683704
0.00667302
0.00651408
0.00635954
0.00620874
0.00606109
0.005916
0.00577294
0.00563142
0.00549099
0.00535126
0.0052119
0.00507264
0.00493321
0.00479337
0.00465292
0.00451167
0.00436944
0.00422619
0.00408189
0.00393655
0.00379016
0.00364274
0.00349432
0.00334492
0.00319459
0.00304334
0.00289121
0.00273819
0.00258431
0.00242956
0.002274
0.00211772
0.00196071
0.00180241
0.00164208
0.00118904
0.00128456
0.00138396
0.00148509
0.00158627
0.00168693
0.00178666
0.0018849
0.00198107
0.00207455
0.00216473
0.00225102
0.00233271
0.00251218
0.00322887
0.00278526
0.00265
0.0027004
0.00274582
0.00280482
0.00284284
0.00345105
0.00397564
0.00293338
0.00295911
0.00297643
0.00485893
0.00642785
0.00434302
0.00426621
0.00443429
0.00985074
0.0114968
0.00966756
0.0085767
0.00905494
0.0281155
0.0273761
0.0136645
0.0105933
0.0636271
0.106393
0.105026
0.0464341
0.0172294
0.0165064
0.0158844
0.0153059
0.0147667
0.0144678
0.01781
0.0187273
0.0128449
0.0124865
0.0121175
0.0123018
0.0149476
0.0110033
0.0103273
0.00995134
0.00959595
0.00926309
0.00895248
0.00866224
0.00839037
0.00813467
0.007893
0.00766337
0.00744394
0.00723306
0.00702928
0.00683134
0.00663813
0.00644871
0.00626229
0.00607819
0.00589583
0.00571473
0.00553449
0.00535478
0.00517534
0.00499591
0.0048163
0.00463633
0.00445586
0.00427479
0.00409304
0.00391053
0.00372724
0.00354313
0.00335817
0.00317236
0.00298567
0.00279809
0.0026096
0.0024202
0.00222995
0.00203879
0.00184631
0.00165197
0.0137707
0.013465
0.0131766
0.0129035
0.0126442
0.0123978
0.0121638
0.0119415
0.0117304
0.0115297
0.011339
0.011158
0.0109858
0.01086
0.010971
0.010569
0.0103886
0.0102604
0.0101432
0.0101215
0.0100049
0.00989412
0.0103543
0.0100363
0.00988183
0.00984191
0.00975349
0.00973412
0.0101288
0.0107022
0.0106325
0.0108497
0.0157024
0.017898
0.0142471
0.013429
0.0133953
0.0206563
0.0239478
0.049202
0.100279
0.100855
0.101237
0.0787094
0.0135228
0.0135546
0.0135001
0.0133608
0.0131023
0.0162129
0.0407133
0.0257411
0.0148055
0.0143509
0.0139244
0.013514
0.0159646
0.0262984
0.0106586
0.0102891
0.00998177
0.0096931
0.00941405
0.00914869
0.00889637
0.00865491
0.00842196
0.00819577
0.007975
0.00775847
0.00754521
0.00733447
0.00712561
0.00691814
0.00671162
0.00650572
0.00630014
0.00609462
0.00588897
0.005683
0.00547656
0.00526954
0.00506182
0.00485332
0.00464397
0.00443371
0.0042225
0.0040103
0.00379708
0.00358281
0.00336748
0.00315106
0.00293354
0.00271491
0.00249515
0.00227425
0.00205227
0.00182915
0.00160462
0.00137823
0.0232867
0.0227338
0.0222037
0.0216953
0.0212073
0.020739
0.0202896
0.0198585
0.0194451
0.0190489
0.0186692
0.018306
0.0179578
0.0176384
0.0173086
0.0170091
0.0167208
0.0164484
0.0162058
0.0160393
0.0158017
0.0155384
0.0153427
0.0151606
0.0153124
0.0152011
0.0148073
0.0147018
0.0147591
0.0143908
0.0153018
0.015427
0.0151089
0.0184504
0.0196418
0.0196673
0.0157298
0.0158577
0.0159626
0.0662246
0.105846
0.106089
0.106295
0.0716917
0.0165031
0.0167042
0.0169317
0.0171975
0.0193528
0.0381271
0.0523417
0.0247217
0.0138264
0.0140883
0.0142959
0.0144792
0.0146772
0.0302312
0.0702133
0.00755359
0.00758938
0.00774291
0.0078252
0.00785454
0.00784476
0.00780002
0.00773059
0.00763891
0.00752905
0.00740351
0.00726441
0.00711355
0.00695243
0.00678229
0.00660419
0.00641901
0.0062275
0.0060303
0.00582796
0.00562098
0.00540977
0.0051947
0.0049761
0.00475427
0.00452947
0.00430193
0.00407185
0.00383942
0.0036048
0.00336813
0.00312954
0.00288913
0.002647
0.00240323
0.00215788
0.00191102
0.00166272
0.00141302
0.00116171
0.000908435
0.0297347
0.0290537
0.0283953
0.0277589
0.0271436
0.0265486
0.0259733
0.025417
0.0248788
0.0243583
0.0238547
0.0233684
0.0229009
0.02244
0.0219985
0.0215712
0.021158
0.0207579
0.020377
0.0200942
0.0196753
0.019293
0.0189513
0.0186189
0.0184055
0.0182224
0.0181013
0.0201211
0.0176153
0.0171351
0.0174077
0.0176352
0.0164613
0.0160547
0.0195271
0.0211041
0.0186791
0.017334
0.017226
0.0285846
0.105248
0.111763
0.11175
0.0469728
0.0192517
0.0189683
0.0186043
0.0208131
0.0399678
0.0505924
0.0498359
0.026267
0.0186017
0.0178758
0.0171368
0.0163475
0.0154755
0.0227879
0.104825
0.120963
0.0076718
0.00798017
0.0078415
0.00714282
0.00720179
0.00720551
0.00724628
0.00725612
0.00722789
0.00717418
0.00709244
0.00698568
0.00685688
0.00670881
0.00654395
0.00636446
0.00617227
0.00596904
0.00575622
0.00553508
0.00530673
0.00507213
0.0048321
0.00458735
0.00433851
0.0040861
0.00383057
0.00357229
0.00331158
0.0030487
0.00278388
0.00251729
0.00224907
0.00197934
0.00170818
0.00143567
0.00116188
0.000886841
0.000610366
0.000332113
0.0334891
0.0327736
0.0320778
0.0314013
0.0307438
0.0301045
0.0294828
0.0288782
0.02829
0.0277177
0.0271606
0.0266194
0.0260929
0.0255765
0.0250746
0.0245856
0.0241086
0.023643
0.0231881
0.0228006
0.0223146
0.0218817
0.0214593
0.0210416
0.0206476
0.0206082
0.0219331
0.0229355
0.019187
0.0182789
0.018037
0.018879
0.0177035
0.0164652
0.0156277
0.0183735
0.0172149
0.0142067
0.0116128
0.0096867
0.0326246
0.134295
0.126859
0.0418076
0.0265191
0.0246627
0.0234253
0.0437953
0.0514657
0.050742
0.0395145
0.0154608
0.0149099
0.0143959
0.0139163
0.0134716
0.0130695
0.0208368
0.106257
0.12969
0.115331
0.0570292
0.0581566
0.0178625
0.0120904
0.0116573
0.0112353
0.0108133
0.0103614
0.00992364
0.00949016
0.00906216
0.0086417
0.00823017
0.00782828
0.00743628
0.00705407
0.00668128
0.00631738
0.00596176
0.00561374
0.00527264
0.00493777
0.00460848
0.00428412
0.00396413
0.00364794
0.00333504
0.00302496
0.00271728
0.0024116
0.00210756
0.00180483
0.0015031
0.00120211
0.000901608
0.000601399
0.000301272
8.21134e-07
-0.00030056
0.0350095
0.0343221
0.03365
0.0329931
0.0323512
0.0317237
0.0311102
0.0305103
0.0299233
0.0293489
0.0287866
0.0282373
0.0276974
0.0271685
0.0266503
0.0261425
0.025645
0.0251575
0.0246812
0.0242124
0.0237548
0.0233074
0.0228717
0.0225923
0.0228961
0.0238274
0.025238
0.0244406
0.021552
0.0209319
0.02065
0.0217043
0.0214998
0.0197107
0.0194182
0.0195067
0.0225668
0.0226132
0.0206729
0.0203916
0.0208938
0.0501615
0.153495
0.0225963
0.0146095
0.0152308
0.0161823
0.0397171
0.04955
0.0493084
0.0312532
0.0176739
0.0173851
0.0171151
0.0168593
0.0166095
0.0163536
0.016076
0.043622
0.127425
0.126822
0.125894
0.124784
0.0458373
0.0102601
0.00970988
0.0092422
0.00883659
0.00845347
0.00808879
0.00775241
0.00742739
0.00711002
0.00679795
0.00648963
0.00618407
0.00588057
0.00557869
0.00527806
0.00497844
0.00467961
0.00438139
0.00408362
0.00378618
0.00348893
0.00319174
0.00289451
0.00259713
0.00229948
0.00200147
0.00170299
0.00140395
0.00110426
0.000803808
0.000502516
0.0002003
-0.000102894
-0.000407142
-0.000712718
-0.00102013
0.0348186
0.0342008
0.0335941
0.0329988
0.0324145
0.031841
0.031278
0.0307252
0.0301822
0.0296489
0.0291249
0.0286101
0.028104
0.0276066
0.027118
0.0266382
0.0261673
0.0257056
0.0252533
0.024811
0.0243792
0.0239889
0.0240736
0.024769
0.0257386
0.0261145
0.0257258
0.0238436
0.0216863
0.0213528
0.0210751
0.0209345
0.0222965
0.0203887
0.0201777
0.0199944
0.0200163
0.0219757
0.0219721
0.0214094
0.0205975
0.0203591
0.0330582
0.0536121
0.0189319
0.0175133
0.0173897
0.0190385
0.0434428
0.0509926
0.0292013
0.0124199
0.0126744
0.0129043
0.0131254
0.0133522
0.0135993
0.0138764
0.0141884
0.0303182
0.120788
0.134849
0.0965971
0.0217867
0.00540142
0.00538549
0.00538493
0.00538228
0.005349
0.0052968
0.00522881
0.00513696
0.00502226
0.00488651
0.00473187
0.00456051
0.00437448
0.00417564
0.00396559
0.00374574
0.00351727
0.00328117
0.00303829
0.00278934
0.0025349
0.00227547
0.00201147
0.00174326
0.00147112
0.00119532
0.000916043
0.000633486
0.000347792
5.90871e-05
-0.000232524
-0.000526947
-0.000824088
-0.00112389
-0.00142642
-0.0017319
0.0333807
0.0328543
0.0323351
0.0318233
0.0313189
0.0308215
0.0303311
0.0298472
0.0293698
0.0288984
0.028433
0.027973
0.0275185
0.0270691
0.0266247
0.0261853
0.0257508
0.0253213
0.0248971
0.0244786
0.0241323
0.0247521
0.0260678
0.0265415
0.0261197
0.0251132
0.023134
0.0213619
0.0208301
0.0204757
0.0201247
0.0197768
0.0194317
0.0193842
0.018813
0.018447
0.0180952
0.017751
0.0187884
0.0196051
0.0192057
0.0174118
0.016969
0.0174885
0.0269901
0.0232657
0.0176801
0.0175285
0.0172953
0.0321268
0.0371912
0.0189138
0.0122098
0.0126679
0.0116354
0.0113859
0.0111969
0.0110883
0.0109977
0.0108956
0.0305544
0.125208
0.00257242
0.00293294
0.00315063
0.00334036
0.00351208
0.00364043
0.00372518
0.00378294
0.00380619
0.00379718
0.00375856
0.00369307
0.0036034
0.00349205
0.00336131
0.00321321
0.00304957
0.00287198
0.00268182
0.00248033
0.00226856
0.00204747
0.00181786
0.00158046
0.00133591
0.00108474
0.00082746
0.000564483
0.000296187
2.28982e-05
-0.000255094
-0.000537538
-0.00082421
-0.00111492
-0.00140948
-0.00170777
-0.00200968
-0.00231513
0.0310846
0.0306543
0.0302277
0.029805
0.0293862
0.0289711
0.0285594
0.028151
0.0277454
0.0273424
0.0269416
0.0265427
0.0261453
0.025749
0.0253534
0.0249581
0.0245628
0.0241671
0.023771
0.0233763
0.0241658
0.0261297
0.0264659
0.0259447
0.0238286
0.0215929
0.0208371
0.0204636
0.0200972
0.0197392
0.0193898
0.0190487
0.0187149
0.0184075
0.0181383
0.0178228
0.017462
0.0171552
0.0168506
0.0172229
0.0188214
0.0166482
0.0157973
0.0154066
0.0150726
0.0154234
0.0173255
0.016922
0.0146278
0.0142048
0.0138267
0.0177899
0.01758
0.0137486
0.0119807
0.0113037
0.0101839
0.0100726
0.00950773
0.00915317
0.00875033
0.00836114
0.00972056
0.0077567
0.00747855
0.0070687
0.00674471
0.0064316
0.00612807
0.00583339
0.00554579
0.005264
0.00498686
0.00471331
0.00444239
0.00417326
0.0039052
0.00363757
0.00336985
0.00310157
0.00283234
0.00256186
0.00228984
0.00201605
0.00174032
0.00146248
0.00118241
0.000899989
0.000615137
0.000327776
3.78428e-05
-0.000254715
-0.00054994
-0.000847872
-0.00114854
-0.00145197
-0.00175819
-0.00206722
-0.00237908
-0.00269392
0.0282657
0.0279269
0.0275889
0.0272517
0.0269155
0.02658
0.026245
0.0259104
0.0255759
0.0252411
0.0249057
0.0245694
0.0242318
0.0238922
0.0235501
0.0232049
0.0228557
0.0225017
0.0221421
0.0218724
0.0244748
0.0256412
0.0251319
0.021785
0.0203546
0.019982
0.0196169
0.0192506
0.0188987
0.018557
0.0182547
0.0179096
0.0175693
0.0172528
0.016958
0.0166819
0.0163298
0.0160333
0.0157425
0.0154556
0.0151707
0.0151735
0.0150373
0.0143423
0.013967
0.0136786
0.0133838
0.0130729
0.0136842
0.0132516
0.0122176
0.0118498
0.0115498
0.0120506
0.0126154
0.0122922
0.0106794
0.0104063
0.00972327
0.00935639
0.00901016
0.00868024
0.00835442
0.00818023
0.00785602
0.00732292
0.00697611
0.00665612
0.00634003
0.00602805
0.0057201
0.00541595
0.00511526
0.00481763
0.00452262
0.00422979
0.0039387
0.00364893
0.00336008
0.00307177
0.00278366
0.00249545
0.00220685
0.00191759
0.00162746
0.00133624
0.00104375
0.000749812
0.000454279
0.00015701
-0.000142121
-0.000443227
-0.000746414
-0.00105178
-0.0013594
-0.00166936
-0.00198174
-0.00229658
-0.00261398
-0.00293414
0.0252039
0.0249465
0.0246877
0.0244279
0.0241671
0.0239053
0.0236427
0.0233794
0.0231156
0.0228513
0.022587
0.0223228
0.0220592
0.0217966
0.0215354
0.0212762
0.0210194
0.0207656
0.0205148
0.0204146
0.0231321
0.0245558
0.0202114
0.0185417
0.0182875
0.0180747
0.0178052
0.017464
0.017195
0.0169371
0.016731
0.0164328
0.016113
0.0158436
0.0155751
0.0153077
0.0150458
0.0147749
0.0145095
0.0142447
0.0139803
0.0137323
0.0137275
0.0131968
0.0129379
0.0126701
0.0123869
0.0121186
0.0118478
0.0115752
0.0113011
0.0110716
0.0107376
0.0104502
0.0101863
0.0100445
0.0100884
0.00980743
0.00917869
0.00884719
0.0085328
0.00823243
0.00794676
0.00766699
0.00745556
0.00708661
0.00678311
0.00649239
0.00620132
0.00591016
0.00561913
0.00532835
0.00503787
0.00474771
0.00445784
0.00416819
0.00387867
0.00358917
0.00329958
0.00300975
0.00271954
0.00242881
0.00213743
0.00184524
0.00155212
0.00125791
0.000962507
0.000665767
0.000367571
6.78e-05
-0.000233659
-0.000536917
-0.000842077
-0.00114924
-0.0014585
-0.00176996
-0.00208368
-0.00239977
-0.0027183
-0.00303943
0.0221073
0.0219136
0.021716
0.0215144
0.0213089
0.0210995
0.0208863
0.0206693
0.0204486
0.0202244
0.0199968
0.0197663
0.0195331
0.0192977
0.0190605
0.0188221
0.0185831
0.0183438
0.0181045
0.0178652
0.0184123
0.0228275
0.0172897
0.0167594
0.016542
0.0163554
0.0161282
0.0158348
0.0155737
0.0153664
0.0151847
0.0149581
0.0146862
0.0144343
0.0142078
0.0139812
0.0137542
0.0135267
0.0132971
0.0130677
0.0128371
0.0126055
0.0123732
0.0121485
0.0119329
0.0116977
0.0114387
0.0111983
0.01096
0.0107207
0.0104805
0.0102396
0.00999825
0.00975655
0.00951254
0.00926814
0.00902385
0.0087778
0.00859413
0.00834533
0.0080763
0.00776721
0.00751792
0.00725201
0.00699304
0.00673266
0.00647042
0.00620614
0.00594076
0.00567387
0.00540559
0.00513597
0.00486506
0.0045929
0.0043195
0.0040449
0.00376909
0.00349205
0.00321377
0.00293422
0.00265335
0.00237114
0.00208752
0.00180244
0.00151586
0.0012277
0.000937916
0.000646431
0.000353181
5.8098e-05
-0.000238891
-0.000537857
-0.000838876
-0.00114202
-0.00144736
-0.00175498
-0.00206493
-0.00237729
-0.00269216
-0.00300967
0.0191884
0.0190496
0.0189049
0.0187544
0.0185981
0.0184359
0.018268
0.0180943
0.017915
0.0177302
0.0175402
0.0173452
0.0171456
0.0169421
0.0167352
0.0165255
0.0163138
0.0161008
0.0158871
0.0156731
0.0154593
0.0152451
0.0163168
0.0149856
0.0147431
0.0145816
0.0143946
0.0142062
0.0139669
0.0137756
0.0136099
0.0134462
0.0132688
0.0130362
0.0128514
0.0126722
0.01249
0.012306
0.0121228
0.011938
0.011751
0.0115616
0.0113698
0.0111756
0.0109822
0.0107813
0.0105782
0.0103748
0.0101691
0.00996121
0.00975126
0.00953938
0.00932558
0.00910991
0.00889242
0.00867316
0.00845223
0.00822947
0.00800482
0.00777976
0.00756126
0.00733682
0.00709749
0.0068522
0.00661596
0.00637778
0.00613767
0.00589564
0.00565168
0.00540581
0.0051581
0.00490856
0.00465719
0.00440402
0.00414905
0.00389229
0.00363375
0.00337343
0.0031113
0.00284737
0.0025816
0.00231398
0.00204449
0.00177309
0.00149975
0.00122444
0.000947134
0.000667781
0.000386342
0.000102773
-0.000182971
-0.000470942
-0.00076119
-0.00105377
-0.00134873
-0.00164613
-0.00194603
-0.00224848
-0.00255354
-0.00286129
0.0165724
0.0164825
0.016386
0.016283
0.0161734
0.0160573
0.0159347
0.0158059
0.0156709
0.0155299
0.0153831
0.0152308
0.0150734
0.0149114
0.0147454
0.014576
0.0144042
0.0142306
0.0140561
0.0138816
0.0137079
0.0135364
0.0133694
0.0135315
0.0131799
0.0129786
0.012848
0.0127437
0.0125957
0.0124025
0.0122445
0.0121112
0.011992
0.011854
0.0117015
0.0115545
0.0113963
0.0112309
0.0110775
0.01093
0.0107815
0.0106299
0.0104745
0.0103157
0.0101538
0.00998851
0.00981991
0.00964805
0.00947306
0.00929511
0.00911435
0.00893087
0.00874476
0.0085561
0.00836492
0.0081713
0.00797524
0.00777678
0.00757596
0.00737285
0.00716741
0.00696051
0.0067507
0.0065388
0.00632287
0.00610604
0.00588694
0.00566557
0.00544196
0.0052161
0.00498802
0.00475771
0.00452521
0.00429051
0.00405363
0.00381459
0.00357338
0.00333002
0.00308451
0.00283685
0.00258704
0.00233507
0.00208094
0.00182464
0.00156615
0.00130546
0.00104257
0.000777441
0.000510059
0.000240396
-3.15772e-05
-0.000305893
-0.000582588
-0.000861699
-0.00114327
-0.00142733
-0.00171394
-0.00200313
-0.00229494
-0.00258941
0.0143217
0.0142761
0.014224
0.0141655
0.0141006
0.0140296
0.0139525
0.0138694
0.0137806
0.0136862
0.0135864
0.0134814
0.0133715
0.0132571
0.0131386
0.0130163
0.012891
0.012763
0.0126332
0.012502
0.0123702
0.0122384
0.0121073
0.0119775
0.0119158
0.0117591
0.0116192
0.011512
0.011444
0.0113414
0.011172
0.0110439
0.0109571
0.0108631
0.010753
0.0106427
0.0105317
0.0104016
0.0102692
0.0101279
0.00999775
0.00987496
0.00975321
0.00961983
0.00948477
0.0093476
0.00920636
0.00906111
0.00891192
0.00875901
0.00860258
0.00844271
0.00827954
0.00811319
0.00794379
0.00777144
0.00759624
0.00741827
0.00723761
0.00705431
0.00686842
0.00667999
0.00648906
0.00629567
0.00609983
0.00590156
0.0057009
0.00549785
0.00529244
0.0050847
0.00487463
0.00466225
0.00444758
0.00423064
0.00401143
0.00378996
0.00356625
0.0033403
0.00311211
0.00288168
0.00264902
0.00241411
0.00217696
0.00193756
0.0016959
0.00145198
0.00120578
0.000957295
0.000706513
0.000453414
0.000197979
-5.98147e-05
-0.000319994
-0.000582585
-0.000847617
-0.00111512
-0.00138513
-0.00165768
-0.00193278
-0.00221044
0.0124228
0.0124128
0.0123969
0.0123751
0.0123476
0.0123145
0.0122761
0.0122323
0.0121836
0.0121299
0.0120716
0.0120087
0.0119417
0.0118706
0.0117959
0.0117177
0.0116363
0.0115522
0.0114657
0.0113771
0.0112869
0.0111954
0.0111029
0.0110099
0.0109165
0.0108231
0.0107324
0.010637
0.010544
0.0104714
0.0104037
0.0102779
0.0101868
0.0101101
0.0100395
0.00994818
0.00986427
0.00978096
0.00968455
0.00957409
0.00944604
0.00932129
0.00921417
0.00912344
0.00897506
0.00885447
0.00873309
0.00860757
0.00847782
0.00834411
0.0082068
0.00806586
0.00792141
0.00777357
0.00762245
0.00746819
0.0073109
0.00715068
0.00698763
0.00682183
0.00665335
0.00648224
0.00630857
0.00613237
0.00595368
0.00577254
0.00558898
0.00540302
0.00521469
0.00502401
0.00483101
0.0046357
0.0044381
0.00423823
0.00403611
0.00383174
0.00362515
0.00341634
0.00320532
0.0029921
0.00277667
0.00255904
0.00233921
0.00211718
0.00189294
0.00166649
0.00143782
0.00120693
0.000973814
0.000738457
0.000500847
0.000260969
1.88055e-05
-0.000225663
-0.000472457
-0.000721599
-0.000973114
-0.00122703
-0.00148334
-0.00174203
0.010858
0.010875
0.0108869
0.0108937
0.0108954
0.0108922
0.0108844
0.010872
0.0108553
0.0108345
0.0108096
0.010781
0.0107487
0.010713
0.0106741
0.0106322
0.0105874
0.0105399
0.01049
0.0104378
0.0103835
0.0103273
0.0102694
0.0102097
0.0101486
0.010086
0.010022
0.00995657
0.00988978
0.00982161
0.00975206
0.00968155
0.00961475
0.00953615
0.00945943
0.00938188
0.00930836
0.00925589
0.00920373
0.00912188
0.00903309
0.00890449
0.00879708
0.00873027
0.00862291
0.00848099
0.00836948
0.00825813
0.00814274
0.00802324
0.00790063
0.00777458
0.0076452
0.00751254
0.00737669
0.00723776
0.00709585
0.00695106
0.00680349
0.00665322
0.00650032
0.00634485
0.00618688
0.00602646
0.00586362
0.00569842
0.00553087
0.00536102
0.00518888
0.0050145
0.00483787
0.00465904
0.00447802
0.00429483
0.00410948
0.00392199
0.00373239
0.00354067
0.00334684
0.00315093
0.00295293
0.00275284
0.00255067
0.00234641
0.00214007
0.00193165
0.00172114
0.00150854
0.00129385
0.00107707
0.000858172
0.000637162
0.000414025
0.000188748
-3.86841e-05
-0.000268287
-0.000500081
-0.000734084
-0.000970278
-0.00120863
0.00958907
0.00962461
0.00965568
0.00968231
0.0097046
0.00972268
0.00973674
0.00974691
0.00975335
0.00975622
0.00975566
0.00975184
0.00974489
0.00973497
0.00972223
0.0097068
0.00968881
0.0096684
0.00964568
0.00962075
0.0095937
0.0095646
0.0095335
0.00950043
0.00946538
0.00942835
0.00938928
0.00934811
0.00930475
0.00925909
0.00921104
0.00916047
0.00910729
0.00905142
0.00899312
0.00893161
0.00886683
0.00879912
0.00873473
0.00870019
0.00865999
0.00854536
0.00843912
0.00836992
0.00831765
0.008203
0.00805941
0.00795947
0.00785693
0.00774966
0.00764009
0.00752735
0.00741164
0.00729291
0.0071712
0.00704659
0.00691916
0.00678901
0.0066562
0.0065208
0.0063829
0.00624254
0.00609978
0.00595467
0.00580726
0.00565759
0.00550568
0.00535159
0.00519534
0.00503695
0.00487645
0.00471388
0.00454924
0.00438256
0.00421387
0.00404317
0.00387049
0.00369584
0.00351923
0.00334068
0.00316019
0.00297777
0.00279342
0.00260715
0.00241895
0.00222884
0.0020368
0.00184285
0.00164697
0.00144916
0.00124943
0.00104776
0.000844153
0.000638595
0.000431078
0.00022159
1.01139e-05
-0.000203362
-0.000418816
-0.000636199
0.00857375
0.00862051
0.00866349
0.0087027
0.00873822
0.00877016
0.00879864
0.0088238
0.00884574
0.0088646
0.00888048
0.00889351
0.00890378
0.00891142
0.00891652
0.00891919
0.00891951
0.00891757
0.00891344
0.00890719
0.00889886
0.00888847
0.00887605
0.00886159
0.00884504
0.00882637
0.00880549
0.00878231
0.0087567
0.00872855
0.00869771
0.00866403
0.00862737
0.0085876
0.00854497
0.00849898
0.00844896
0.00839565
0.00833907
0.00827912
0.00824897
0.00820515
0.00809425
0.00801993
0.00799163
0.00795853
0.00778072
0.00767371
0.00758528
0.00749073
0.00739449
0.00729518
0.00719313
0.00708826
0.00698057
0.00687015
0.00675705
0.00664137
0.00652317
0.00640251
0.00627947
0.00615408
0.00602642
0.00589653
0.00576444
0.00563021
0.00549388
0.00535548
0.00521504
0.0050726
0.00492818
0.00478182
0.00463353
0.00448334
0.00433127
0.00417734
0.00402158
0.003864
0.00370461
0.00354343
0.00338048
0.00321575
0.00304926
0.00288102
0.00271102
0.00253926
0.00236576
0.00219052
0.00201353
0.00183479
0.00165431
0.00147208
0.0012881
0.00110236
0.00091487
0.000725606
0.000534561
0.000341726
0.000147128
-4.91822e-05
0.00776419
0.00781667
0.00786599
0.00791217
0.00795524
0.00799529
0.0080324
0.00806667
0.00809818
0.00812702
0.00815327
0.008177
0.0081983
0.00821724
0.00823389
0.00824831
0.00826056
0.0082707
0.00827877
0.0082848
0.00828881
0.00829082
0.00829081
0.00828877
0.00828465
0.0082784
0.00826994
0.00825917
0.00824598
0.00823023
0.00821178
0.00819048
0.00816618
0.00813873
0.00810799
0.00807383
0.00803623
0.00799499
0.00795011
0.0079016
0.00784944
0.00781164
0.00774556
0.00767961
0.0076324
0.00766159
0.00753058
0.00740425
0.00732778
0.00724383
0.00715927
0.00707189
0.00698219
0.00689001
0.00679533
0.0066982
0.00659867
0.00649679
0.00639262
0.00628621
0.00617759
0.00606682
0.00595393
0.00583896
0.00572195
0.00560294
0.00548197
0.00535907
0.00523427
0.0051076
0.0049791
0.0048488
0.00471671
0.00458287
0.0044473
0.00431001
0.00417104
0.0040304
0.00388811
0.00374418
0.00359863
0.00345147
0.00330271
0.00315235
0.00300041
0.00284689
0.00269179
0.00253511
0.00237686
0.00221704
0.00205565
0.00189269
0.00172816
0.00156207
0.0013944
0.00122515
0.00105432
0.000881899
0.000707908
0.000532403
0.00711139
0.00716584
0.00721769
0.00726694
0.0073136
0.00735774
0.0073994
0.00743866
0.00747556
0.00751017
0.00754252
0.00757269
0.0076007
0.00762662
0.00765047
0.0076723
0.00769214
0.00771003
0.00772597
0.00773998
0.00775208
0.00776226
0.0077705
0.00777678
0.00778105
0.00778327
0.00778337
0.00778125
0.00777682
0.00776997
0.00776057
0.00774848
0.00773357
0.00771568
0.0076947
0.0076705
0.00764296
0.007612
0.00757757
0.00753964
0.00749822
0.00745325
0.00740864
0.00735642
0.00731119
0.00736631
0.00725529
0.00713234
0.00706763
0.00699433
0.00692141
0.00684584
0.00676822
0.0066884
0.00660634
0.00652209
0.00643568
0.00634715
0.00625655
0.00616391
0.00606927
0.00597266
0.00587412
0.00577367
0.00567134
0.00556717
0.00546118
0.00535342
0.00524391
0.00513268
0.00501976
0.00490518
0.00478897
0.00467114
0.00455173
0.00443075
0.00430823
0.00418419
0.00405865
0.00393162
0.00380312
0.00367317
0.00354178
0.00340895
0.00327469
0.00313902
0.00300193
0.00286343
0.00272353
0.00258223
0.00243954
0.00229545
0.00214997
0.0020031
0.00185484
0.00170519
0.00155414
0.00140168
0.00124784
0.00109267
0.00656981
0.00662407
0.0066762
0.00672621
0.00677407
0.00681984
0.00686353
0.0069052
0.00694487
0.00698257
0.00701834
0.0070522
0.00708418
0.00711431
0.0071426
0.00716909
0.00719377
0.00721666
0.00723777
0.00725711
0.00727465
0.0072904
0.00730434
0.00731642
0.00732663
0.0073349
0.00734117
0.00734537
0.00734742
0.0073472
0.00734463
0.00733957
0.0073319
0.00732149
0.00730822
0.00729197
0.00727263
0.0072501
0.00722433
0.0071953
0.00716306
0.00712755
0.00709037
0.00704766
0.00702012
0.00707821
0.00696651
0.00686087
0.00680668
0.00674332
0.00668127
0.00661681
0.00655052
0.00648231
0.00641213
0.00634001
0.006266
0.00619013
0.00611242
0.0060329
0.0059516
0.00586854
0.00578374
0.00569722
0.00560901
0.00551912
0.00542758
0.00533443
0.00523968
0.00514337
0.00504551
0.00494615
0.0048453
0.00474298
0.00463923
0.00453405
0.00442748
0.00431954
0.00421024
0.00409959
0.00398762
0.00387435
0.00375978
0.00364392
0.00352679
0.00340839
0.00328874
0.00316784
0.00304569
0.0029223
0.00279767
0.00267181
0.00254473
0.00241642
0.00228688
0.00215612
0.00202414
0.00189093
0.00175652
0.00162095
0.00609951
0.00615263
0.00620403
0.00625368
0.00630156
0.00634769
0.00639209
0.00643478
0.00647578
0.0065151
0.00655276
0.00658877
0.00662314
0.00665589
0.00668702
0.00671653
0.00674444
0.00677073
0.00679541
0.00681847
0.00683988
0.00685965
0.00687773
0.00689411
0.00690874
0.00692158
0.00693257
0.00694165
0.00694874
0.00695376
0.00695662
0.0069572
0.00695541
0.00695114
0.00694426
0.00693468
0.00692228
0.00690699
0.00688874
0.00686752
0.00684345
0.00681652
0.00678724
0.00675382
0.00676288
0.00679542
0.00666341
0.00659037
0.00654495
0.00649109
0.00643946
0.00638562
0.00633008
0.00627283
0.00621384
0.00615314
0.00609078
0.00602677
0.00596115
0.00589393
0.00582515
0.00575481
0.00568292
0.00560951
0.00553459
0.00545817
0.00538029
0.00530094
0.00522017
0.00513799
0.00505443
0.00496951
0.00488325
0.00479567
0.00470681
0.00461667
0.00452529
0.00443268
0.00433885
0.00424383
0.00414764
0.00405028
0.00395177
0.00385213
0.00375136
0.00364948
0.00354649
0.00344241
0.00333723
0.00323097
0.00312364
0.00301523
0.00290575
0.0027952
0.0026836
0.00257093
0.00245721
0.00234242
0.0022266
0.00210977
0.0056693
0.00572119
0.00577165
0.00582065
0.00586818
0.00591425
0.00595886
0.00600202
0.00604373
0.00608401
0.00612285
0.00616025
0.00619623
0.00623079
0.00626391
0.0062956
0.00632584
0.00635465
0.00638199
0.00640786
0.00643224
0.0064551
0.00647642
0.00649617
0.00651431
0.0065308
0.00654558
0.00655859
0.00656978
0.00657907
0.00658638
0.00659162
0.0065947
0.00659553
0.00659401
0.00659005
0.00658356
0.00657446
0.0065627
0.00654827
0.0065313
0.00651188
0.00649026
0.00646479
0.0065091
0.00651638
0.00637473
0.00632608
0.00628746
0.00624235
0.0062003
0.00615628
0.00611069
0.00606356
0.00601491
0.00596476
0.00591315
0.00586011
0.00580566
0.00574983
0.00569262
0.00563407
0.00557417
0.00551293
0.00545038
0.00538651
0.00532135
0.00525492
0.00518721
0.00511827
0.00504809
0.00497672
0.00490416
0.00483043
0.00475556
0.00467957
0.00460247
0.00452428
0.00444502
0.00436471
0.00428335
0.00420097
0.00411758
0.00403319
0.00394781
0.00386146
0.00377415
0.00368589
0.00359668
0.00350653
0.00341546
0.00332346
0.00323054
0.00313671
0.00304197
0.00294632
0.00284977
0.00275232
0.002654
0.00255483
0.00525647
0.00530752
0.00535735
0.00540595
0.00545329
0.00549938
0.00554421
0.00558778
0.00563011
0.00567117
0.00571098
0.00574953
0.00578682
0.00582283
0.00585758
0.00589103
0.00592319
0.00595405
0.00598357
0.00601176
0.00603858
0.00606401
0.00608802
0.00611057
0.00613164
0.00615118
0.00616914
0.00618547
0.00620012
0.00621303
0.00622412
0.00623335
0.00624061
0.00624586
0.006249
0.00624997
0.00624869
0.0062451
0.00623915
0.00623084
0.00622027
0.00620762
0.00619323
0.00617607
0.00623781
0.00624091
0.00610154
0.00606583
0.00603473
0.00599823
0.00596484
0.0059299
0.00589349
0.0058557
0.00581657
0.00577612
0.00573438
0.00569138
0.00564717
0.00560175
0.00555515
0.00550738
0.00545845
0.00540838
0.00535717
0.00530483
0.00525137
0.00519681
0.00514116
0.00508442
0.00502662
0.00496777
0.0049079
0.004847
0.00478512
0.00472225
0.00465842
0.00459365
0.00452795
0.00446132
0.0043938
0.00432539
0.00425609
0.00418594
0.00411493
0.00404308
0.00397041
0.00389691
0.00382261
0.0037475
0.00367161
0.00359493
0.00351747
0.00343923
0.00336023
0.00328047
0.00319995
0.00311868
0.00303668
0.00295397
0.00484793
0.00489868
0.00494836
0.00499695
0.00504444
0.00509082
0.00513611
0.00518028
0.00522335
0.0052653
0.00530613
0.00534583
0.0053844
0.00542183
0.00545811
0.00549322
0.00552716
0.00555991
0.00559144
0.00562175
0.0056508
0.00567857
0.00570503
0.00573016
0.00575391
0.00577625
0.00579713
0.00581652
0.00583436
0.00585062
0.00586523
0.00587814
0.00588931
0.00589867
0.00590618
0.00591177
0.0059154
0.00591702
0.00591659
0.0059141
0.00590963
0.00590343
0.00589591
0.00588683
0.00595207
0.00596873
0.00583614
0.00580807
0.00578581
0.00575769
0.00573231
0.00570598
0.00567822
0.00564925
0.00561906
0.0055877
0.00555519
0.00552156
0.00548685
0.00545109
0.00541429
0.00537648
0.00533767
0.00529788
0.0052571
0.00521536
0.00517265
0.005129
0.0050844
0.00503887
0.00499243
0.00494508
0.00489684
0.00484772
0.00479775
0.00474692
0.00469527
0.00464279
0.00458951
0.00453544
0.00448059
0.00442498
0.00436861
0.00431149
0.00425365
0.00419509
0.00413582
0.00407586
0.00401521
0.0039539
0.00389192
0.00382929
0.00376601
0.00370209
0.00363754
0.00357236
0.00350656
0.00344015
0.00337314
0.00330556
0.00443688
0.00448787
0.00453789
0.00458693
0.00463497
0.00468201
0.00472806
0.0047731
0.00481714
0.00486016
0.00490216
0.00494314
0.00498308
0.00502197
0.00505981
0.00509658
0.00513227
0.00516686
0.00520034
0.00523269
0.00526388
0.00529389
0.0053227
0.00535027
0.00537657
0.00540158
0.00542525
0.00544755
0.00546845
0.0054879
0.00550586
0.0055223
0.00553718
0.00555045
0.00556209
0.00557204
0.00558028
0.00558676
0.00559146
0.00559435
0.00559552
0.00559511
0.00559371
0.00559033
0.00562983
0.00569871
0.00559119
0.00555454
0.00554106
0.00552098
0.00550226
0.0054838
0.00546389
0.00544296
0.00542098
0.00539797
0.00537394
0.00534893
0.00532297
0.00529608
0.00526829
0.00523963
0.00521011
0.00517974
0.00514853
0.0051165
0.00508366
0.00505001
0.00501556
0.00498031
0.00494429
0.00490749
0.00486993
0.00483162
0.00479258
0.00475281
0.00471233
0.00467115
0.00462928
0.00458674
0.00454353
0.00449967
0.00445517
0.00441003
0.00436427
0.0043179
0.00427093
0.00422337
0.00417523
0.00412653
0.00407727
0.00402746
0.00397712
0.00392625
0.00387486
0.00382295
0.00377054
0.00371763
0.00366424
0.00361038
0.00402361
0.00407526
0.00412599
0.00417581
0.00422471
0.00427267
0.00431972
0.00436583
0.00441101
0.00445526
0.00449856
0.00454091
0.00458231
0.00462274
0.00466221
0.00470069
0.00473817
0.00477465
0.0048101
0.00484451
0.00487787
0.00491014
0.00494131
0.00497136
0.00500024
0.00502795
0.00505445
0.00507971
0.00510369
0.00512638
0.00514773
0.00516773
0.00518635
0.00520355
0.0052193
0.00523359
0.00524638
0.00525765
0.00526736
0.00527549
0.00528208
0.00528714
0.00529153
0.00529396
0.00530556
0.00542725
0.00535289
0.00530252
0.00529677
0.00528536
0.00527219
0.00526123
0.00524869
0.00523537
0.00522116
0.00520606
0.00519008
0.00517324
0.00515556
0.00513705
0.00511774
0.00509765
0.0050768
0.0050552
0.00503287
0.00500982
0.00498607
0.00496161
0.00493645
0.00491062
0.0048841
0.00485692
0.00482907
0.00480058
0.00477145
0.00474169
0.00471132
0.00468034
0.00464877
0.00461661
0.00458389
0.0045506
0.00451676
0.00448238
0.00444748
0.00441205
0.00437612
0.0043397
0.00430279
0.00426541
0.00422757
0.00418927
0.00415054
0.00411139
0.00407181
0.00403182
0.00399143
0.00395064
0.00390948
0.00386795
0.00361044
0.00366303
0.00371474
0.00376559
0.00381556
0.00386465
0.00391287
0.00396023
0.00400671
0.00405231
0.00409703
0.00414088
0.00418383
0.0042259
0.00426706
0.00430732
0.00434667
0.00438509
0.00442258
0.00445913
0.00449472
0.00452933
0.00456295
0.00459557
0.00462715
0.00465768
0.00468715
0.00471552
0.00474278
0.0047689
0.00479387
0.00481768
0.0048403
0.00486173
0.00488195
0.00490094
0.00491871
0.00493524
0.00495051
0.00496452
0.00497728
0.00498875
0.00499972
0.00500966
0.00501794
0.00508501
0.00509897
0.00505096
0.00503295
0.00503296
0.00502662
0.00502421
0.00501981
0.00501483
0.00500896
0.00500226
0.00499473
0.00498636
0.00497718
0.00496718
0.0049564
0.00494484
0.00493254
0.00491951
0.00490578
0.00489137
0.00487629
0.00486056
0.00484419
0.00482719
0.00480957
0.00479135
0.00477254
0.00475315
0.00473318
0.00471266
0.00469159
0.00466998
0.00464784
0.00462519
0.00460204
0.00457839
0.00455425
0.00452965
0.00450458
0.00447906
0.00445309
0.0044267
0.00439988
0.00437266
0.00434503
0.00431703
0.00428865
0.0042599
0.00423081
0.00420138
0.00417162
0.00414154
0.00411116
0.00408047
0.00320323
0.00325688
0.00330968
0.00336163
0.00341275
0.00346303
0.00351247
0.00356109
0.00360887
0.00365583
0.00370195
0.00374725
0.00379171
0.00383534
0.00387813
0.00392008
0.00396118
0.00400143
0.00404082
0.00407934
0.00411698
0.00415374
0.0041896
0.00422454
0.00425856
0.00429163
0.00432374
0.00435488
0.00438503
0.00441417
0.0044423
0.00446941
0.00449548
0.00452052
0.00454451
0.00456747
0.00458939
0.00461028
0.00463014
0.00464897
0.00466678
0.00468358
0.00469972
0.00471517
0.00472909
0.00474583
0.00481557
0.00481658
0.0047861
0.00478407
0.00478494
0.00479027
0.00479319
0.00479586
0.00479756
0.00479852
0.00479871
0.00479815
0.00479682
0.00479472
0.00479184
0.00478819
0.0047838
0.00477869
0.00477288
0.00476639
0.00475924
0.00475146
0.00474305
0.00473405
0.00472446
0.00471429
0.00470357
0.00469231
0.00468051
0.0046682
0.00465538
0.00464206
0.00462827
0.00461401
0.0045993
0.00458414
0.00456855
0.00455254
0.00453612
0.0045193
0.0045021
0.00448452
0.00446658
0.00444828
0.00442965
0.00441068
0.0043914
0.00437182
0.00435194
0.00433179
0.00431137
0.00429069
0.00426976
0.0042486
0.00280758
0.00286227
0.00291613
0.00296919
0.00302144
0.00307289
0.00312354
0.00317341
0.00322248
0.00327077
0.00331828
0.00336501
0.00341095
0.00345611
0.0035005
0.00354409
0.0035869
0.00362893
0.00367015
0.00371058
0.00375021
0.00378902
0.00382702
0.00386418
0.00390051
0.00393599
0.00397062
0.00400437
0.00403723
0.00406921
0.00410028
0.00413045
0.0041597
0.00418804
0.00421546
0.00424197
0.00426757
0.00429227
0.00431608
0.00433899
0.00436103
0.00438219
0.00440257
0.00442225
0.0044409
0.00445818
0.0044955
0.00455378
0.00455307
0.00454114
0.0045458
0.00455704
0.0045663
0.00457601
0.00458442
0.00459226
0.00459941
0.00460594
0.00461184
0.00461707
0.0046216
0.0046254
0.00462845
0.00463078
0.0046324
0.00463332
0.00463357
0.00463318
0.00463215
0.00463052
0.0046283
0.00462551
0.00462217
0.00461829
0.0046139
0.004609
0.00460362
0.00459776
0.00459144
0.00458468
0.00457748
0.00456986
0.00456183
0.00455342
0.00454461
0.00453545
0.00452592
0.00451605
0.00450584
0.00449532
0.00448448
0.00447335
0.00446194
0.00445025
0.00443831
0.00442612
0.00441371
0.00440107
0.00438823
0.00437519
0.00242972
0.00248535
0.00254019
0.00259426
0.00264754
0.00270006
0.00275182
0.00280282
0.00285308
0.00290259
0.00295136
0.00299939
0.0030467
0.00309327
0.00313911
0.00318423
0.00322862
0.00327229
0.00331523
0.00335744
0.00339892
0.00343966
0.00347967
0.00351894
0.00355747
0.00359524
0.00363225
0.0036685
0.00370397
0.00373867
0.00377259
0.00380571
0.00383805
0.0038696
0.00390036
0.00393034
0.00395955
0.00398799
0.00401568
0.00404263
0.00406886
0.00409439
0.00411924
0.00414347
0.00416707
0.00418985
0.0042117
0.00425149
0.0043034
0.00431542
0.0043098
0.00432449
0.00434005
0.00435692
0.00437184
0.00438638
0.00439998
0.00441296
0.00442538
0.00443729
0.00444861
0.00445924
0.00446915
0.00447831
0.00448673
0.00449441
0.00450139
0.00450766
0.00451327
0.00451822
0.00452256
0.00452629
0.00452945
0.00453205
0.00453412
0.00453568
0.00453675
0.00453734
0.00453747
0.00453717
0.00453645
0.00453532
0.0045338
0.00453191
0.00452967
0.00452707
0.00452415
0.0045209
0.00451736
0.00451352
0.0045094
0.00450501
0.00450037
0.00449548
0.00449037
0.00448504
0.0044795
0.00447377
0.00446786
0.00446177
0.00207412
0.00213054
0.00218621
0.00224113
0.00229531
0.00234876
0.00240149
0.0024535
0.0025048
0.0025554
0.00260531
0.00265453
0.00270306
0.00275092
0.0027981
0.00284462
0.00289046
0.00293564
0.00298016
0.00302402
0.00306722
0.00310975
0.00315164
0.00319286
0.00323342
0.00327332
0.00331256
0.00335114
0.00338905
0.00342628
0.00346285
0.00349874
0.00353395
0.00356849
0.00360236
0.00363556
0.0036681
0.00369998
0.00373122
0.00376183
0.00379183
0.00382122
0.00385005
0.00387832
0.00390606
0.00393326
0.00395984
0.00398579
0.00402421
0.0040798
0.00409735
0.00409814
0.00411872
0.00414209
0.00416215
0.00418338
0.00420289
0.0042215
0.00423938
0.00425688
0.00427402
0.00429065
0.00430663
0.00432188
0.00433639
0.00435013
0.00436312
0.00437537
0.0043869
0.00439772
0.00440787
0.00441738
0.00442626
0.00443456
0.00444228
0.00444947
0.00445615
0.00446233
0.00446804
0.0044733
0.00447814
0.00448256
0.0044866
0.00449026
0.00449358
0.00449655
0.0044992
0.00450155
0.0045036
0.00450538
0.00450689
0.00450815
0.00450918
0.00450997
0.00451056
0.00451095
0.00451115
0.00451118
0.00451105
0.00451076
0.00174449
0.00180148
0.00185775
0.00191332
0.00196819
0.00202236
0.00207585
0.00212867
0.00218082
0.00223231
0.00228316
0.00233337
0.00238294
0.00243189
0.00248022
0.00252794
0.00257505
0.00262157
0.00266749
0.00271281
0.00275755
0.00280171
0.00284529
0.0028883
0.00293073
0.00297259
0.00301388
0.0030546
0.00309475
0.00313434
0.00317336
0.00321181
0.00324969
0.00328701
0.00332376
0.00335995
0.00339559
0.00343067
0.00346521
0.00349921
0.0035327
0.00356567
0.00359815
0.00363015
0.00366169
0.00369278
0.00372343
0.00375362
0.00378333
0.00381649
0.0038744
0.00389794
0.00390608
0.00393281
0.00395834
0.00398597
0.00401097
0.00403507
0.00405766
0.00407939
0.00410088
0.00412226
0.00414319
0.00416347
0.00418303
0.00420183
0.00421987
0.00423712
0.00425362
0.00426937
0.00428441
0.00429875
0.00431243
0.00432549
0.00433794
0.00434983
0.00436118
0.00437202
0.00438238
0.00439228
0.00440175
0.00441081
0.00441949
0.0044278
0.00443576
0.00444339
0.00445072
0.00445775
0.0044645
0.00447099
0.00447723
0.00448324
0.00448902
0.00449459
0.00449997
0.00450517
0.00451019
0.00451505
0.00451976
0.00452432
0.00144216
0.00149945
0.00155607
0.00161204
0.00166734
0.00172199
0.00177601
0.0018294
0.00188217
0.00193433
0.0019859
0.00203687
0.00208726
0.00213708
0.00218634
0.00223504
0.0022832
0.00233081
0.00237789
0.00242444
0.00247047
0.00251599
0.00256101
0.00260552
0.00264953
0.00269306
0.0027361
0.00277865
0.00282073
0.00286234
0.00290347
0.00294414
0.00298433
0.00302406
0.00306333
0.00310213
0.00314047
0.00317835
0.00321577
0.00325274
0.00328927
0.00332535
0.00336099
0.00339621
0.003431
0.00346538
0.00349934
0.00353289
0.00356602
0.00359872
0.00363102
0.00367654
0.0037128
0.00374027
0.00376161
0.00379007
0.00382355
0.00385204
0.00387994
0.00390519
0.00392946
0.00395406
0.00397868
0.00400285
0.00402639
0.00404922
0.00407131
0.00409264
0.0041132
0.004133
0.00415205
0.00417038
0.00418802
0.004205
0.00422136
0.00423712
0.00425232
0.00426699
0.00428116
0.00429487
0.00430813
0.00432099
0.00433345
0.00434556
0.00435732
0.00436876
0.0043799
0.00439076
0.00440136
0.00441171
0.00442182
0.00443172
0.00444142
0.00445093
0.00446026
0.00446942
0.00447843
0.00448729
0.00449602
0.00450462
0.00116835
0.00122566
0.00128235
0.00133843
0.00139389
0.00144875
0.00150302
0.00155671
0.00160982
0.00166238
0.00171438
0.00176584
0.00181677
0.00186717
0.00191707
0.00196645
0.00201535
0.00206376
0.00211169
0.00215916
0.00220617
0.00225272
0.00229884
0.00234452
0.00238977
0.0024346
0.00247902
0.00252303
0.00256663
0.00260984
0.00265266
0.00269508
0.00273712
0.00277878
0.00282006
0.00286096
0.00290148
0.00294162
0.00298138
0.00302076
0.00305976
0.00309838
0.00313662
0.00317448
0.00321196
0.00324905
0.00328577
0.00332209
0.00335803
0.00339356
0.00342869
0.00346339
0.00350257
0.00354739
0.00358018
0.00360173
0.00363353
0.00366742
0.00370385
0.00373389
0.00375929
0.00378555
0.00381265
0.00383963
0.00386608
0.00389187
0.00391697
0.00394135
0.00396499
0.00398788
0.00401003
0.00403146
0.0040522
0.00407227
0.00409171
0.00411055
0.00412884
0.00414659
0.00416385
0.00418064
0.00419701
0.00421297
0.00422855
0.00424377
0.00425867
0.00427326
0.00428756
0.0043016
0.00431538
0.00432893
0.00434227
0.0043554
0.00436834
0.00438111
0.00439371
0.00440615
0.00441846
0.00443063
0.00444268
0.0044546
0.000921611
0.000978643
0.0010351
0.00109099
0.00114632
0.00120109
0.00125532
0.00130901
0.00136218
0.00141484
0.00146699
0.00151865
0.00156982
0.00162052
0.00167075
0.00172052
0.00176985
0.00181874
0.0018672
0.00191524
0.00196288
0.00201012
0.00205697
0.00210345
0.00214955
0.00219528
0.00224067
0.00228571
0.0023304
0.00237477
0.00241881
0.00246253
0.00250593
0.00254902
0.0025918
0.00263427
0.00267643
0.00271828
0.00275982
0.00280104
0.00284194
0.00288252
0.00292277
0.00296268
0.00300225
0.00304147
0.00308033
0.00311882
0.00315693
0.00319466
0.00323197
0.00326887
0.0033053
0.00334637
0.00338833
0.00341389
0.00344724
0.00348087
0.00351947
0.00356085
0.00358982
0.00361289
0.0036422
0.00367123
0.00369978
0.00372772
0.003755
0.00378161
0.00380754
0.00383276
0.00385728
0.0038811
0.00390424
0.00392673
0.0039486
0.00396989
0.00399062
0.00401083
0.00403056
0.00404984
0.0040687
0.00408717
0.00410527
0.00412304
0.00414049
0.00415766
0.00417455
0.0041912
0.00420761
0.00422381
0.00423981
0.00425563
0.00427127
0.00428676
0.0043021
0.0043173
0.00433237
0.00434732
0.00436216
0.00437689
0.000701939
0.000758399
0.000814327
0.00086973
0.000924611
0.000978983
0.00103286
0.00108624
0.00113914
0.00119157
0.00124354
0.00129506
0.00134613
0.00139677
0.00144699
0.00149679
0.00154619
0.0015952
0.00164383
0.00169208
0.00173997
0.0017875
0.00183469
0.00188154
0.00192807
0.00197428
0.00202018
0.00206578
0.00211108
0.0021561
0.00220085
0.00224532
0.00228952
0.00233346
0.00237714
0.00242056
0.00246373
0.00250663
0.00254928
0.00259166
0.00263378
0.00267561
0.00271716
0.00275842
0.00279937
0.00284001
0.00288031
0.00292027
0.00295987
0.0029991
0.00303792
0.00307636
0.00311435
0.00315176
0.00318872
0.00322532
0.00326133
0.00329669
0.00333185
0.00337828
0.00341524
0.00343513
0.00346538
0.00349609
0.00352622
0.00355572
0.00358458
0.00361282
0.00364042
0.00366737
0.00369368
0.00371933
0.00374435
0.00376874
0.00379255
0.00381581
0.00383853
0.00386076
0.00388253
0.00390388
0.00392482
0.0039454
0.00396563
0.00398554
0.00400515
0.0040245
0.00404359
0.00406244
0.00408107
0.00409951
0.00411775
0.00413582
0.00415373
0.00417149
0.00418911
0.00420659
0.00422396
0.00424122
0.00425836
0.00427541
0.000506856
0.000562455
0.000617565
0.000672194
0.000726345
0.00078003
0.000833256
0.000886033
0.00093837
0.000990274
0.00104175
0.00109282
0.00114348
0.00119374
0.00124362
0.00129312
0.00134225
0.00139102
0.00143944
0.00148753
0.00153528
0.00158272
0.00162985
0.00167668
0.00172322
0.00176948
0.00181547
0.00186119
0.00190666
0.00195188
0.00199686
0.0020416
0.00208612
0.0021304
0.00217446
0.0022183
0.00226192
0.00230531
0.00234848
0.00239141
0.00243411
0.00247655
0.00251874
0.00256066
0.0026023
0.00264365
0.00268468
0.00272538
0.00276574
0.00280572
0.00284531
0.00288449
0.00292323
0.00296151
0.00299929
0.00303657
0.00307332
0.00310954
0.00314533
0.0031907
0.00323114
0.00325171
0.00328296
0.00331464
0.00334576
0.00337626
0.00340617
0.00343551
0.00346428
0.00349248
0.00352009
0.00354712
0.00357357
0.00359945
0.00362479
0.00364961
0.00367395
0.00369782
0.00372127
0.00374432
0.003767
0.00378934
0.00381135
0.00383307
0.00385451
0.0038757
0.00389666
0.00391739
0.00393793
0.00395827
0.00397844
0.00399844
0.0040183
0.00403801
0.00405759
0.00407705
0.00409639
0.00411563
0.00413476
0.00415379
0.00033533
0.0003898
0.000443818
0.000497392
0.000550527
0.000603231
0.000655513
0.000707383
0.000758847
0.000809915
0.000860594
0.000910895
0.000960824
0.00101039
0.0010596
0.00110847
0.001157
0.00120521
0.00125309
0.00130067
0.00134795
0.00139493
0.00144164
0.00148807
0.00153424
0.00158015
0.00162582
0.00167125
0.00171645
0.00176142
0.00180618
0.00185073
0.00189508
0.00193922
0.00198316
0.0020269
0.00207045
0.00211379
0.00215694
0.00219987
0.00224258
0.00228507
0.00232733
0.00236933
0.00241108
0.00245254
0.0024937
0.00253454
0.00257505
0.00261519
0.00265495
0.0026943
0.00273322
0.00277168
0.00280968
0.00284719
0.00288422
0.00292083
0.00295735
0.00300512
0.00303504
0.00306547
0.00309711
0.00312899
0.00316057
0.00319164
0.0032222
0.00325226
0.00328184
0.00331092
0.0033395
0.00336755
0.00339509
0.00342212
0.00344867
0.00347475
0.00350039
0.00352562
0.00355046
0.00357493
0.00359907
0.00362288
0.0036464
0.00366965
0.00369264
0.00371539
0.00373793
0.00376025
0.00378239
0.00380434
0.00382613
0.00384776
0.00386924
0.00389059
0.00391181
0.00393291
0.00395389
0.00397476
0.00399554
0.00401621
0.000185289
0.000238428
0.000291148
0.000343457
0.000395359
0.000446861
0.000497971
0.000548697
0.000599045
0.000649023
0.00069864
0.000747902
0.000796819
0.000845398
0.000893647
0.000941576
0.000989194
0.00103651
0.00108353
0.00113026
0.00117672
0.00122291
0.00126884
0.00131453
0.00135996
0.00140517
0.00145015
0.00149491
0.00153946
0.00158381
0.00162796
0.00167192
0.00171569
0.00175927
0.00180267
0.00184589
0.00188892
0.00193177
0.00197442
0.00201689
0.00205914
0.00210119
0.00214301
0.00218459
0.00222592
0.00226698
0.00230775
0.00234822
0.00238837
0.00242817
0.0024676
0.00250665
0.0025453
0.00258355
0.00262138
0.00265881
0.00269592
0.00273237
0.00276923
0.00281411
0.00284315
0.00287581
0.00290844
0.00294067
0.00297248
0.00300384
0.0030348
0.00306536
0.00309551
0.00312524
0.00315451
0.00318333
0.00321169
0.00323961
0.00326709
0.00329416
0.00332085
0.00334716
0.00337313
0.00339876
0.00342409
0.00344913
0.0034739
0.00349842
0.0035227
0.00354677
0.00357063
0.00359431
0.0036178
0.00364112
0.00366428
0.00368729
0.00371015
0.00373288
0.00375548
0.00377795
0.00380031
0.00382256
0.00384469
0.00386672
5.46217e-05
0.000106204
0.000157399
0.000208216
0.000258657
0.00030873
0.00035844
0.000407795
0.000456802
0.000505466
0.000553796
0.000601799
0.000649482
0.000696853
0.000743921
0.000790691
0.000837174
0.000883376
0.000929306
0.000974971
0.00102038
0.00106554
0.00111046
0.00115515
0.00119962
0.00124386
0.0012879
0.00133173
0.00137537
0.00141881
0.00146207
0.00150515
0.00154806
0.00159079
0.00163335
0.00167573
0.00171794
0.00175997
0.00180183
0.00184349
0.00188495
0.00192621
0.00196726
0.00200807
0.00204863
0.00208894
0.00212897
0.0021687
0.00220813
0.00224722
0.00228598
0.00232439
0.00236246
0.00240023
0.00243772
0.00247497
0.00251197
0.00254862
0.00258464
0.00261977
0.00265443
0.00268812
0.002721
0.00275328
0.00278511
0.0028166
0.00284778
0.00287865
0.00290917
0.00293931
0.00296906
0.0029984
0.00302735
0.0030559
0.00308409
0.00311192
0.0031394
0.00316656
0.0031934
0.00321996
0.00324623
0.00327224
0.00329801
0.00332354
0.00334886
0.00337397
0.00339888
0.00342362
0.00344818
0.00347258
0.00349682
0.00352092
0.00354487
0.00356869
0.00359238
0.00361594
0.00363939
0.00366271
0.00368593
0.00370904
-5.7541e-05
-7.64686e-06
4.18864e-05
9.1067e-05
0.000139898
0.000188384
0.000236532
0.000284347
0.000331835
0.000379003
0.000425855
0.000472401
0.000518646
0.000564598
0.000610265
0.000655655
0.000700774
0.000745632
0.000790235
0.000834593
0.000878711
0.0009226
0.000966265
0.00100971
0.00105295
0.00109599
0.00113884
0.00118149
0.00122395
0.00126624
0.00130835
0.00135029
0.00139207
0.00143367
0.00147511
0.00151639
0.0015575
0.00159844
0.00163921
0.0016798
0.0017202
0.00176041
0.00180041
0.00184019
0.00187974
0.00191905
0.00195809
0.00199687
0.00203535
0.00207353
0.00211141
0.00214899
0.0021863
0.00222335
0.00226017
0.00229675
0.00233311
0.00236931
0.00240464
0.00243914
0.00247285
0.00250587
0.00253837
0.00257047
0.00260229
0.00263385
0.00266514
0.00269613
0.0027268
0.00275711
0.00278708
0.00281669
0.00284595
0.00287488
0.00290349
0.00293178
0.00295978
0.00298748
0.00301492
0.0030421
0.00306903
0.00309573
0.0031222
0.00314847
0.00317453
0.00320041
0.0032261
0.00325162
0.00327699
0.00330219
0.00332724
0.00335215
0.00337693
0.00340156
0.00342606
0.00345044
0.00347469
0.00349881
0.00352282
0.00354671
-0.000154064
-0.000106004
-5.82705e-05
-1.08564e-05
3.62409e-05
8.30259e-05
0.000129503
0.000175677
0.000221551
0.000267132
0.000312424
0.000357433
0.000402165
0.000446626
0.000490822
0.000534761
0.00057845
0.000621895
0.000665104
0.000708084
0.000750842
0.000793384
0.000835718
0.000877848
0.000919781
0.000961523
0.00100308
0.00104445
0.00108565
0.00112668
0.00116754
0.00120823
0.00124876
0.00128913
0.00132933
0.00136938
0.00140926
0.00144897
0.0014885
0.00152786
0.00156703
0.001606
0.00164477
0.00168333
0.00172165
0.00175974
0.00179759
0.00183517
0.00187249
0.00190953
0.00194631
0.00198285
0.00201918
0.00205534
0.00209117
0.00212653
0.00216136
0.00220021
0.00223369
0.00226648
0.00229897
0.00233113
0.00236303
0.00239476
0.00242633
0.0024577
0.00248885
0.00251972
0.0025503
0.00258058
0.00261055
0.00264022
0.00266959
0.00269867
0.00272747
0.002756
0.00278427
0.0028123
0.00284008
0.00286764
0.00289497
0.0029221
0.00294903
0.00297576
0.00300231
0.00302868
0.00305488
0.00308092
0.0031068
0.00313253
0.00315812
0.00318356
0.00320886
0.00323403
0.00325907
0.00328397
0.00330875
0.00333339
0.00335791
0.00338232
-0.000234755
-0.000188586
-0.000142724
-9.71602e-05
-5.18916e-05
-6.91405e-06
3.77767e-05
8.2185e-05
0.000126315
0.000170173
0.000213763
0.00025709
0.00030016
0.000342979
0.000385552
0.000427886
0.000469986
0.000511859
0.000553511
0.000594949
0.000636179
0.000677208
0.00071804
0.000758681
0.000799138
0.000839413
0.000879513
0.000919441
0.000959202
0.000998799
0.00103824
0.00107751
0.00111664
0.00115561
0.00119443
0.0012331
0.00127161
0.00130996
0.00134816
0.00138618
0.00142404
0.00146172
0.00149921
0.0015365
0.00157358
0.00161045
0.0016471
0.0016835
0.00171966
0.00175558
0.00179126
0.0018267
0.00186198
0.00189906
0.00193437
0.00196812
0.00200265
0.0020367
0.00207003
0.00210252
0.00213446
0.00216609
0.00219757
0.00222893
0.00226015
0.00229119
0.00232202
0.00235259
0.00238291
0.00241295
0.00244272
0.00247223
0.00250148
0.00253049
0.00255924
0.00258777
0.00261606
0.00264414
0.002672
0.00269966
0.00272712
0.00275439
0.00278148
0.00280839
0.00283512
0.00286169
0.00288809
0.00291434
0.00294043
0.00296637
0.00299217
0.00301782
0.00304334
0.00306872
0.00309397
0.00311909
0.00314408
0.00316894
0.00319367
0.00321829
-0.000302598
-0.000258346
-0.000214372
-0.000170665
-0.000127223
-8.40432e-05
-4.1121e-05
1.54666e-06
4.3963e-05
8.61319e-05
0.000128057
0.000169743
0.000211193
0.000252414
0.000293408
0.000334183
0.000374742
0.000415092
0.000455238
0.000495185
0.000534939
0.000574504
0.000613887
0.000653091
0.00069212
0.000730979
0.000769671
0.000808198
0.000846564
0.000884769
0.000922815
0.000960703
0.000998433
0.001036
0.00107342
0.00111067
0.00114775
0.00118466
0.0012214
0.00125796
0.00129432
0.00133049
0.00136645
0.00140219
0.00143771
0.00147297
0.00150799
0.00154273
0.0015772
0.0016114
0.00164528
0.00167881
0.00171191
0.00187395
0.00183101
0.00182248
0.00185485
0.00188682
0.00191846
0.00194979
0.00198086
0.00201176
0.00204255
0.00207322
0.00210376
0.00213415
0.00216434
0.00219433
0.00222411
0.00225367
0.00228301
0.00231213
0.00234104
0.00236973
0.00239822
0.0024265
0.00245459
0.00248249
0.00251019
0.00253772
0.00256507
0.00259225
0.00261926
0.00264611
0.0026728
0.00269933
0.00272572
0.00275195
0.00277804
0.00280398
0.00282979
0.00285545
0.00288098
0.00290638
0.00293164
0.00295678
0.00298178
0.00300665
0.0030314
0.00305602
-0.000357177
-0.000314901
-0.000272881
-0.000231108
-0.000189579
-0.00014829
-0.000107238
-6.64197e-05
-2.58317e-05
1.45289e-05
5.46652e-05
9.45802e-05
0.000134277
0.000173759
0.000213029
0.000252092
0.000290952
0.000329612
0.000368079
0.000406355
0.000444447
0.000482358
0.000520095
0.000557662
0.000595062
0.000632302
0.000669386
0.000706317
0.000743099
0.000779737
0.000816233
0.000852591
0.000888812
0.0009249
0.000960857
0.000996684
0.00103238
0.00106796
0.00110341
0.00113874
0.00117395
0.00120905
0.00124404
0.00127891
0.00131369
0.00134837
0.00138297
0.00141751
0.001452
0.00148647
0.0015208
0.0015551
0.00175851
0.00178965
0.00165974
0.0016799
0.00171082
0.0017423
0.0017739
0.00180524
0.00183628
0.00186707
0.00189767
0.00192807
0.00195827
0.00198825
0.00201801
0.00204753
0.00207681
0.00210588
0.00213472
0.00216335
0.00219177
0.00221998
0.002248
0.00227583
0.00230347
0.00233093
0.00235821
0.00238532
0.00241227
0.00243905
0.00246568
0.00249216
0.00251849
0.00254467
0.00257071
0.00259662
0.00262238
0.002648
0.0026735
0.00269886
0.00272408
0.00274918
0.00277415
0.002799
0.00282371
0.00284831
0.00287278
0.00289713
-0.000400918
-0.000360564
-0.000320438
-0.000280532
-0.000240843
-0.000201369
-0.000162106
-0.000123053
-8.42075e-05
-4.55659e-05
-7.12601e-06
3.11147e-05
6.91589e-05
0.000107009
0.000144669
0.00018214
0.000219427
0.000256533
0.000293462
0.000330218
0.000366804
0.000403225
0.000439485
0.000475588
0.000511535
0.000547332
0.000582979
0.000618479
0.000653833
0.000689043
0.000724109
0.000759032
0.000793812
0.000828448
0.00086294
0.000897288
0.00093149
0.000965545
0.000999452
0.00103321
0.00106681
0.00110027
0.00113356
0.0011667
0.00119967
0.00123249
0.00126514
0.00129763
0.00133004
0.00136214
0.00139411
0.0015465
0.00165171
0.00161795
0.00152528
0.00155436
0.00158473
0.00161489
0.00164478
0.00167447
0.00170403
0.00173349
0.00176285
0.00179209
0.0018212
0.00185016
0.00187895
0.00190757
0.00193601
0.00196429
0.00199239
0.00202031
0.00204807
0.00207566
0.00210309
0.00213035
0.00215745
0.00218439
0.00221117
0.00223781
0.00226429
0.00229063
0.00231682
0.00234287
0.00236879
0.00239456
0.0024202
0.0024457
0.00247108
0.00249632
0.00252143
0.00254641
0.00257126
0.00259599
0.00262059
0.00264506
0.00266941
0.00269364
0.00271774
0.00274173
-0.000434062
-0.000395688
-0.000357523
-0.000319558
-0.000281793
-0.000244225
-0.000206852
-0.000169673
-0.000132686
-9.589e-05
-5.92829e-05
-2.28633e-05
1.33704e-05
4.94199e-05
8.52868e-05
0.000120973
0.00015648
0.000191809
0.000226964
0.000261945
0.000296756
0.000331399
0.000365877
0.000400192
0.000434347
0.000468344
0.000502185
0.000535871
0.000569402
0.000602778
0.000636001
0.000669067
0.000701977
0.000734728
0.00076732
0.000799749
0.000832013
0.000864109
0.000896033
0.000927783
0.000959353
0.000990738
0.00102193
0.00105293
0.00108372
0.00111431
0.0011447
0.00117491
0.00120491
0.00123447
0.00126377
0.00167016
0.00150468
0.00139068
0.00141949
0.001448
0.00147634
0.00150458
0.00153274
0.00156085
0.00158891
0.00161692
0.00164486
0.0016727
0.00170044
0.00172806
0.00175556
0.00178292
0.00181016
0.00183725
0.00186422
0.00189104
0.00191774
0.0019443
0.00197072
0.00199701
0.00202317
0.0020492
0.0020751
0.00210087
0.00212651
0.00215203
0.00217743
0.0022027
0.00222786
0.00225289
0.00227781
0.0023026
0.00232729
0.00235185
0.0023763
0.00240064
0.00242485
0.00244896
0.00247294
0.00249681
0.00252057
0.00254421
0.00256774
0.00259116
-0.00045762
-0.000421151
-0.000384872
-0.000348773
-0.000312853
-0.00027711
-0.000241542
-0.000206148
-0.000170925
-0.000135872
-0.000100988
-6.62707e-05
-3.17195e-05
2.66684e-06
3.68891e-05
7.09482e-05
0.000104845
0.00013858
0.000172155
0.000205571
0.000238828
0.000271927
0.00030487
0.000337658
0.000370292
0.000402772
0.000435099
0.000467274
0.000499297
0.000531167
0.000562885
0.000594449
0.000625858
0.000657111
0.000688207
0.000719144
0.000749921
0.000780537
0.00081099
0.00084128
0.000871405
0.000901363
0.000931155
0.000960778
0.000990232
0.00101952
0.00104866
0.00107766
0.00110647
0.00113499
0.00116343
0.00160511
0.00134698
0.00127712
0.00130516
0.00133271
0.00136005
0.00138739
0.00141472
0.00144203
0.00146927
0.00149644
0.00152353
0.00155051
0.00157738
0.00160414
0.00163078
0.0016573
0.00168371
0.00170999
0.00173616
0.00176221
0.00178815
0.00181396
0.00183966
0.00186524
0.0018907
0.00191604
0.00194126
0.00196637
0.00199136
0.00201623
0.00204099
0.00206563
0.00209015
0.00211456
0.00213886
0.00216304
0.00218711
0.00221107
0.00223491
0.00225865
0.00228227
0.00230578
0.00232918
0.00235246
0.00237564
0.00239871
0.00242167
0.00244452
-0.00047288
-0.000438374
-0.000404038
-0.000369867
-0.000335862
-0.000302021
-0.000268344
-0.000234829
-0.000201475
-0.00016828
-0.000135244
-0.000102363
-6.96371e-05
-3.70644e-05
-4.64408e-06
2.7625e-05
5.97436e-05
9.17128e-05
0.000123534
0.000155207
0.000186735
0.000218118
0.000249359
0.000280458
0.000311417
0.000342238
0.000372921
0.000403469
0.000433882
0.00046416
0.000494306
0.000524319
0.0005542
0.000583947
0.000613562
0.000643044
0.00067239
0.000701601
0.000730674
0.000759606
0.000788393
0.000817031
0.000845511
0.000873828
0.000901976
0.000929955
0.000957759
0.000985386
0.00101279
0.00103988
0.00106744
0.00153353
0.00124841
0.00117589
0.00120264
0.00122896
0.00125518
0.0012815
0.00130789
0.00133428
0.00136065
0.00138695
0.00141316
0.00143927
0.00146527
0.00149115
0.00151692
0.00154257
0.00156809
0.00159349
0.00161878
0.00164394
0.00166898
0.0016939
0.00171871
0.0017434
0.00176797
0.00179243
0.00181678
0.00184101
0.00186514
0.00188915
0.00191304
0.00193683
0.00196051
0.00198408
0.00200755
0.00203091
0.00205416
0.00207731
0.00210035
0.00212329
0.00214612
0.00216885
0.00219148
0.002214
0.00223641
0.00225872
0.00228093
0.00230303
-0.000479415
-0.000446772
-0.000414287
-0.000381952
-0.000349765
-0.000317727
-0.000285836
-0.000254092
-0.000222493
-0.000191039
-0.000159729
-0.000128562
-9.75378e-05
-6.66554e-05
-3.59154e-05
-5.31787e-06
2.51364e-05
5.54466e-05
8.56117e-05
0.00011563
0.000145502
0.000175225
0.000204798
0.00023422
0.00026349
0.000292607
0.000321569
0.000350375
0.000379023
0.000407511
0.000435837
0.000463997
0.000491988
0.000519806
0.000547447
0.000574908
0.000602182
0.000629267
0.000656158
0.000682853
0.000709361
0.000735745
0.00076186
0.000787695
0.000813223
0.000839038
0.00086473
0.000890272
0.000915657
0.000940815
0.000965643
0.00153303
0.00123535
0.00108584
0.00111111
0.00113606
0.00116082
0.00118556
0.00121032
0.00123509
0.00125983
0.00128454
0.0013092
0.00133379
0.00135833
0.0013828
0.0014072
0.00143154
0.0014558
0.00148
0.00150412
0.00152816
0.00155213
0.00157602
0.00159983
0.00162355
0.00164719
0.00167075
0.00169422
0.00171759
0.00174088
0.00176408
0.00178719
0.0018102
0.00183311
0.00185594
0.00187866
0.00190129
0.00192382
0.00194626
0.00196859
0.00199083
0.00201297
0.002035
0.00205694
0.00207878
0.00210051
0.00212214
0.00214368
0.00216512
-0.000479752
-0.00044909
-0.000418565
-0.000388176
-0.000357926
-0.000327814
-0.00029784
-0.000268002
-0.0002383
-0.000208732
-0.000179297
-0.000149993
-0.000120819
-9.17719e-05
-6.28507e-05
-3.40533e-05
-5.37741e-06
2.31789e-05
5.16179e-05
7.99415e-05
0.000108152
0.000136252
0.000164243
0.00019213
0.000219915
0.000247602
0.000275196
0.000302701
0.000330125
0.000357472
0.000384751
0.000411969
0.000439135
0.000466259
0.000493352
0.000520426
0.000547495
0.00057457
0.00060167
0.000628814
0.00065601
0.000683215
0.000710601
0.000738205
0.000766088
0.000793693
0.00082148
0.000849535
0.000877916
0.000906677
0.000935983
0.00139811
0.00162447
0.00101122
0.000981002
0.00101031
0.00103854
0.00106623
0.00109352
0.00112041
0.00114693
0.00117309
0.0011989
0.0012244
0.00124959
0.00127451
0.00129918
0.00132361
0.00134782
0.00137183
0.00139565
0.0014193
0.00144279
0.00146612
0.0014893
0.00151234
0.00153525
0.00155803
0.00158069
0.00160324
0.00162567
0.00164798
0.0016702
0.0016923
0.00171431
0.00173621
0.00175801
0.00177971
0.00180131
0.00182282
0.00184423
0.00186555
0.00188677
0.0019079
0.00192894
0.00194988
0.00197074
0.0019915
0.00201216
0.00203273
-0.000471274
-0.000442397
-0.000413658
-0.000385048
-0.000356564
-0.000328207
-0.000299977
-0.000271875
-0.000243899
-0.00021605
-0.000188327
-0.00016073
-0.000133259
-0.000105912
-7.86906e-05
-5.15943e-05
-2.46231e-05
2.22253e-06
2.89422e-05
5.55353e-05
8.20009e-05
0.000108338
0.000134545
0.000160622
0.000186565
0.000212375
0.000238048
0.000263584
0.00028898
0.000314234
0.000339343
0.000364308
0.000389127
0.000413798
0.000438302
0.000462652
0.000486847
0.000510883
0.000534746
0.000558426
0.000581913
0.0006052
0.00062828
0.000651145
0.000673783
0.000696179
0.000718323
0.000740206
0.000761811
0.00078309
0.000804
0.00101054
0.00225508
0.00140314
0.000955162
0.000975518
0.000995413
0.00101552
0.00103603
0.00105678
0.00107776
0.00109894
0.00112029
0.00114176
0.00116332
0.00118496
0.00120664
0.00122836
0.00125011
0.00127187
0.00129363
0.0013154
0.00133715
0.00135888
0.00138059
0.00140226
0.00142389
0.00144548
0.00146703
0.00148852
0.00150995
0.00153132
0.00155264
0.00157388
0.00159505
0.00161616
0.00163719
0.00165814
0.00167902
0.00169981
0.00172052
0.00174115
0.00176169
0.00178215
0.00180252
0.00182281
0.00184301
0.00186312
0.00188315
0.00190311
-0.000458332
-0.000431491
-0.000404764
-0.000378156
-0.000351671
-0.000325309
-0.000299069
-0.000272952
-0.000246956
-0.000221082
-0.000195331
-0.0001697
-0.000144189
-0.000118798
-9.35256e-05
-6.83701e-05
-4.33312e-05
-1.84081e-05
6.39977e-06
3.10925e-05
5.56702e-05
8.01324e-05
0.000104479
0.000128707
0.000152817
0.000176806
0.00020067
0.000224406
0.000248007
0.000271466
0.000294773
0.000317915
0.000340902
0.000363697
0.000386298
0.000408672
0.000430797
0.000452652
0.000474216
0.000495459
0.000516346
0.000536835
0.000556877
0.000576416
0.000595391
0.000613734
0.000631372
0.000648216
0.000664103
0.000678787
0.000692473
0.00103378
0.00209592
0.00190044
0.000997622
0.000924975
0.000940947
0.000956803
0.000973056
0.000989857
0.0010073
0.00102539
0.00104402
0.00106309
0.00108248
0.00110213
0.00112198
0.00114198
0.0011621
0.00118232
0.00120262
0.00122297
0.00124336
0.00126378
0.00128421
0.00130463
0.00132505
0.00134544
0.00136581
0.00138615
0.00140644
0.00142669
0.0014469
0.00146704
0.00148714
0.00150717
0.00152715
0.00154706
0.00156691
0.00158669
0.0016064
0.00162604
0.00164561
0.0016651
0.00168452
0.00170387
0.00172314
0.00174234
0.00176145
0.00178048
-0.0004357
-0.000410565
-0.000385568
-0.000360692
-0.000335934
-0.000311294
-0.000286772
-0.000262367
-0.000238079
-0.000213907
-0.000189851
-0.000165909
-0.000142081
-0.000118364
-9.47581e-05
-7.12598e-05
-4.78674e-05
-2.45786e-05
-1.39104e-06
2.16974e-05
4.46891e-05
6.75861e-05
9.03906e-05
0.000113105
0.000135732
0.000158274
0.000180736
0.000203119
0.000225427
0.000247663
0.000269831
0.000291936
0.00031396
0.000335928
0.00035785
0.00037973
0.000401571
0.00042338
0.000445164
0.000466935
0.000488706
0.000510492
0.000532313
0.000554193
0.000576157
0.000598239
0.000620496
0.00064339
0.000666967
0.00068901
0.000709748
0.00167087
0.0019678
0.00152263
0.000749836
0.000763371
0.000785971
0.000808747
0.000831314
0.000853731
0.000876026
0.000898182
0.000920183
0.00094196
0.0009635
0.000984867
0.00100609
0.00102719
0.00104818
0.00106906
0.00108984
0.00111053
0.00113115
0.00115168
0.00117214
0.00119252
0.00121283
0.00123308
0.00125325
0.00127335
0.00129338
0.00131334
0.00133323
0.00135304
0.00137278
0.00139245
0.00141204
0.00143155
0.00145099
0.00147035
0.00148963
0.00150882
0.00152794
0.00154697
0.00156591
0.00158476
0.00160353
0.00162221
0.0016408
0.00165933
-0.000409585
-0.000386505
-0.000363534
-0.000340679
-0.000317944
-0.000295326
-0.000272821
-0.000250427
-0.00022814
-0.000205956
-0.000183871
-0.00016188
-0.000139979
-0.000118162
-9.6423e-05
-7.47561e-05
-5.31545e-05
-3.16105e-05
-1.01161e-05
1.13373e-05
3.27583e-05
5.41565e-05
7.5542e-05
9.69243e-05
0.000118313
0.000139722
0.000161165
0.000182658
0.000204216
0.000225858
0.000247602
0.000269467
0.000291474
0.000313642
0.000335992
0.000358547
0.000381331
0.000404367
0.000427683
0.000451307
0.000475273
0.00049962
0.000524395
0.000549661
0.000575692
0.000605343
0.000653571
0.000741343
0.000749698
0.00237355
0.00390605
0.000681349
0.000711108
0.000550449
0.000578239
0.000605191
0.000632325
0.000659238
0.000685777
0.000712027
0.000738117
0.000763803
0.000789067
0.00081398
0.000838605
0.000862882
0.000886814
0.000910411
0.000933684
0.000956641
0.000979293
0.00100165
0.00102372
0.00104552
0.00106706
0.00108836
0.00110941
0.00113024
0.00115085
0.00117126
0.00119146
0.00121149
0.00123133
0.00125101
0.00127052
0.00128987
0.00130908
0.00132814
0.00134706
0.00136585
0.00138451
0.00140304
0.00142145
0.00143974
0.00145792
0.00147599
0.00149395
0.0015118
0.00152955
0.00154716
-0.000373108
-0.000351812
-0.000330687
-0.000309712
-0.000288881
-0.000268195
-0.000247652
-0.000227252
-0.000206993
-0.000186874
-0.000166894
-0.000147051
-0.000127343
-0.000107768
-8.83248e-05
-6.90116e-05
-4.98266e-05
-3.07675e-05
-1.18317e-05
6.98251e-06
2.56743e-05
4.4251e-05
6.27146e-05
8.1065e-05
9.93018e-05
0.000117422
0.000135422
0.000153297
0.000171045
0.00018866
0.000206136
0.000223466
0.000240643
0.000257657
0.000274497
0.000291154
0.000307612
0.000323861
0.000339885
0.000355672
0.000371209
0.000386488
0.000401507
0.0004163
0.000431048
0.000446723
0.000551488
0.000634211
0.00111659
0.00367254
0.00368679
0.00115616
0.000689789
0.000627264
0.000558889
0.000578757
0.000600096
0.00062396
0.000647764
0.000670754
0.000693281
0.000715642
0.000737797
0.00075969
0.000781323
0.000802722
0.000823915
0.000844913
0.000865719
0.000886334
0.000906762
0.000927006
0.00094707
0.000966961
0.000986683
0.00100624
0.00102564
0.00104489
0.00106399
0.00108295
0.00110177
0.00112046
0.00113902
0.00115745
0.00117577
0.00119396
0.00121204
0.00123001
0.00124788
0.00126563
0.00128328
0.00130083
0.00131828
0.00133563
0.00135288
0.00137003
0.00138708
0.00140404
0.0014209
0.00143769
-0.000331973
-0.000312783
-0.000293762
-0.000274917
-0.000256252
-0.000237766
-0.000219453
-0.000201313
-0.00018334
-0.000165532
-0.000147884
-0.000130391
-0.000113049
-9.5851e-05
-7.87913e-05
-6.1863e-05
-4.50588e-05
-2.83715e-05
-1.17947e-05
4.67945e-06
2.1062e-05
3.73558e-05
5.35665e-05
6.97058e-05
8.57866e-05
0.00010182
0.000117817
0.000133787
0.000149741
0.000165688
0.000181637
0.000197596
0.000213573
0.000229577
0.000245612
0.000261688
0.000277809
0.000293984
0.000310222
0.000326533
0.000342933
0.00035944
0.000376083
0.000392904
0.000409976
0.000427464
0.000454139
0.000482025
0.000504646
0.000563033
0.00094208
0.00118959
0.000762905
0.00427683
0.00977883
0.00257391
0.000377662
0.000412445
0.000442692
0.000472276
0.000504456
0.000536702
0.000568204
0.000598814
0.000628499
0.000657325
0.000685408
0.000712731
0.000739291
0.000765111
0.000790222
0.000814653
0.000838436
0.0008616
0.000884178
0.000906201
0.000927702
0.000948713
0.000969264
0.000989386
0.00100911
0.00102846
0.00104747
0.00106615
0.00108455
0.00110266
0.00112053
0.00113816
0.00115557
0.00117279
0.00118981
0.00120666
0.00122335
0.00123988
0.00125627
0.00127252
0.00128864
0.00130464
0.00132051
0.00133626
-0.000278019
-0.000260711
-0.00024366
-0.000226856
-0.000210299
-0.00019399
-0.000177932
-0.000162123
-0.000146564
-0.000131252
-0.000116188
-0.000101368
-8.67895e-05
-7.24496e-05
-5.83444e-05
-4.44691e-05
-3.08185e-05
-1.73863e-05
-4.16511e-06
8.85304e-06
2.16765e-05
3.43143e-05
4.67794e-05
5.90811e-05
7.12272e-05
8.32272e-05
9.50924e-05
0.000106831
0.000118453
0.000129964
0.000141375
0.000152695
0.000163931
0.000175092
0.000186187
0.000197223
0.00020821
0.000219154
0.000230064
0.000240946
0.00025181
0.000262659
0.000273501
0.00028434
0.000295181
0.000306034
0.000317326
0.000328418
0.000339072
0.000655596
0.00117957
0.00105492
0.000797954
0.00219102
0.00871931
0.00873451
0.00848884
0.00154464
0.000668939
0.000674469
0.000678391
0.000685746
0.000695712
0.000704395
0.000709747
0.000715818
0.00073087
0.000748345
0.000765721
0.000782723
0.000799501
0.000816124
0.000832599
0.000848924
0.000865099
0.000881127
0.00089701
0.000912755
0.000928368
0.000943856
0.000959229
0.000974495
0.000989663
0.00100474
0.00101974
0.00103466
0.00104952
0.00106431
0.00107905
0.00109374
0.00110838
0.00112297
0.00113751
0.00115201
0.00116647
0.00118088
0.00119524
0.00120956
0.00122383
0.00123806
-0.000212054
-0.000196539
-0.000181385
-0.000166587
-0.00015215
-0.000138082
-0.000124388
-0.000111074
-9.81444e-05
-8.5602e-05
-7.3449e-05
-6.16858e-05
-5.03112e-05
-3.93227e-05
-2.87156e-05
-1.84839e-05
-8.61952e-06
8.87538e-07
1.00493e-05
1.88797e-05
2.73948e-05
3.56122e-05
4.35511e-05
5.12317e-05
5.86769e-05
6.59089e-05
7.29492e-05
7.9822e-05
8.65506e-05
9.31568e-05
9.96619e-05
0.00010609
0.000112465
0.000118811
0.000125158
0.000131533
0.00013797
0.000144502
0.000151166
0.000158005
0.000165066
0.000172407
0.000180093
0.0001882
0.000196821
0.000206059
0.000216031
0.000228016
0.000240028
0.00025319
0.000733532
0.00133929
0.00136114
0.000852682
0.000501056
0.0043464
0.00900809
0.0090389
0.00905542
0.00907295
0.00907777
0.00386843
0.00063751
0.000651954
0.000659019
0.000664788
0.000683387
0.000699951
0.000714616
0.000729339
0.000744095
0.0007588
0.000773429
0.000787973
0.000802422
0.000816767
0.000831006
0.000845139
0.000859165
0.000873088
0.000886914
0.000900651
0.000914309
0.0009279
0.000941432
0.000954916
0.000968358
0.000981766
0.000995144
0.0010085
0.00102183
0.00103515
0.00104845
0.00106173
0.00107499
0.00108824
0.00110148
0.00111469
0.00112789
0.00114107
-0.000131049
-0.000117425
-0.000104218
-9.14853e-05
-7.92591e-05
-6.75559e-05
-5.63889e-05
-4.57714e-05
-3.57157e-05
-2.62322e-05
-1.73293e-05
-9.0128e-06
-1.28575e-06
5.85191e-06
1.24035e-05
1.83759e-05
2.37792e-05
2.86273e-05
3.29378e-05
3.67318e-05
4.00344e-05
4.28753e-05
4.52887e-05
4.73139e-05
4.89947e-05
5.03784e-05
5.15127e-05
5.24442e-05
5.32174e-05
5.38743e-05
5.44552e-05
5.49936e-05
5.55205e-05
5.60632e-05
5.66396e-05
5.72625e-05
5.79757e-05
5.88191e-05
5.97435e-05
6.07344e-05
6.17777e-05
6.28447e-05
6.38953e-05
6.48782e-05
6.57279e-05
6.63627e-05
6.67073e-05
6.6715e-05
6.60656e-05
6.6129e-05
6.81996e-05
5.88504e-05
0.000907102
0.000507275
0.000142701
0.000158365
0.000145471
0.00757512
0.00438279
0.000872262
0.000865622
0.000868765
0.000806744
0.0116634
0.0130192
0.0130369
0.0130154
0.00258307
0.000827367
0.000826116
0.00082512
0.000825544
0.000827219
0.000829879
0.000833384
0.000837653
0.000842556
0.00084804
0.000853911
0.000860231
0.000866952
0.000874036
0.000881466
0.000889231
0.000897323
0.000905729
0.000914439
0.000923438
0.000932712
0.000942243
0.000952014
0.000962008
0.000972206
0.000982591
0.000993144
0.00100385
0.00101469
0.00102565
0.0010367
0.00104781
-1.41103e-05
-9.88699e-08
1.31218e-05
2.56038e-05
3.73313e-05
4.82575e-05
5.83328e-05
6.75102e-05
7.5745e-05
8.29936e-05
8.92151e-05
9.4372e-05
9.84309e-05
0.000101365
0.000103152
0.000103783
0.000103252
0.000101569
9.87531e-05
9.48367e-05
8.98686e-05
8.39182e-05
7.70845e-05
6.9502e-05
6.13487e-05
5.28212e-05
4.40955e-05
3.53263e-05
2.66383e-05
1.81109e-05
9.87015e-06
1.96166e-06
-5.66211e-06
-1.2987e-05
-1.99266e-05
-2.64554e-05
-3.26176e-05
-3.84584e-05
-4.39783e-05
-4.92003e-05
-5.40747e-05
-5.86432e-05
-6.29647e-05
-6.70966e-05
-7.12854e-05
-7.56816e-05
-8.05834e-05
-8.62484e-05
-9.28766e-05
-0.000100439
-0.000108783
-0.000116361
-0.000116006
-0.000117183
-0.000134331
-0.000147143
0.000322085
0.00431081
0.00201408
0.00094996
0.0114331
0.0137244
0.013749
0.0137298
0.00751526
0.000877819
0.000893479
0.000705897
0.000645929
0.000649031
0.000653209
0.000658398
0.000664359
0.000670922
0.000677955
0.000685345
0.000693078
0.000701105
0.000709552
0.00071829
0.000727304
0.000736578
0.000746109
0.000755956
0.000766303
0.000776876
0.000787627
0.00079855
0.00080963
0.000820848
0.000832183
0.000843621
0.000855144
0.000866739
0.000878394
0.000890097
0.000901836
0.000913603
0.00092541
0.000937307
0.000106462
0.000119303
0.000131453
0.000142681
0.000152847
0.000161863
0.000169645
0.000176102
0.000181145
0.000184683
0.000186632
0.000186914
0.000185462
0.00018222
0.000177149
0.00017023
0.000161461
0.000150861
0.00013846
0.000124276
0.000108286
9.04113e-05
7.0609e-05
4.89455e-05
2.57754e-05
1.71441e-06
-2.2434e-05
-4.58469e-05
-6.84181e-05
-9.03573e-05
-0.00011031
-0.000127439
-0.00014377
-0.000160572
-0.000176207
-0.000189179
-0.000199376
-0.00020717
-0.000212778
-0.000216443
-0.000217887
-0.000217518
-0.000215466
-0.000211401
-0.000204729
-0.00019664
-0.000187124
-0.000175004
-0.000158527
-0.000143521
-0.000125616
-0.000105609
-6.90547e-05
-4.58358e-05
-2.75765e-05
0.00941851
0.0110903
0.0111464
0.0111482
0.00999411
0.00395669
0.00262981
0.00189338
0.00102865
0.00038879
0.000379827
0.000408451
0.000437744
0.000465013
0.000490126
0.000513288
0.000534608
0.000554159
0.000572057
0.000588485
0.000603625
0.00061768
0.000630796
0.0006431
0.00065477
0.000666013
0.000676886
0.000687416
0.000697375
0.000706849
0.000716142
0.000725324
0.000734436
0.000743521
0.000752618
0.000761754
0.000770948
0.000780213
0.000789554
0.000798975
0.000808475
0.000818055
0.00082771
0.000837407
0.000847067
0.000319822
0.000340819
0.000360584
0.000379228
0.000396672
0.00041273
0.000427192
0.000439839
0.000450437
0.000458737
0.000464478
0.000467391
0.000467201
0.000463637
0.000456433
0.000445338
0.000430103
0.000410454
0.000386016
0.000356148
0.000319939
0.000275735
0.000221467
0.000155166
7.74915e-05
-2.116e-06
-6.94266e-05
-0.000112894
-0.000132766
-0.000168583
-0.000209158
-0.000205369
-4.57127e-05
-0.000225595
-0.000293619
-0.000305113
-0.000278239
-0.000275179
-0.000283991
-0.000308953
-0.000350145
-0.000356184
-0.000203427
0.00013991
0.000156017
-0.000160528
-0.00022044
-0.000206157
-0.00018144
0.00183
0.00509895
0.0051698
0.00384003
0.00549035
0.00645333
0.00638929
0.00474252
0.00295843
0.00159654
0.000454842
-7.6446e-05
-5.30947e-05
-3.84255e-05
-3.0726e-05
-1.88623e-05
1.18125e-06
2.52524e-05
5.33108e-05
8.4107e-05
0.00011716
0.00014965
0.000180208
0.000209115
0.000236192
0.000260989
0.000284682
0.000307974
0.000332203
0.000355663
0.000379121
0.000401439
0.000422672
0.000443064
0.000462947
0.000482146
0.000500709
0.000518692
0.000536127
0.000553043
0.000569471
0.00058544
0.000600985
0.000616136
0.000630924
0.000645381
0.000659532
0.000673399
0.000687009
0.000700422
0.00071377
0.000487392
0.000513597
0.000539323
0.000564021
0.000587252
0.0006086
0.000627576
0.000643598
0.000655982
0.00066395
0.000666635
0.000663109
0.000652429
0.000633719
0.000606298
0.000569864
0.000524566
0.000469856
0.000410325
0.000350643
0.000301573
0.000272404
0.000244057
0.000161356
0.000274436
0.000795286
0.00113362
0.00135732
0.00114561
-1.76814e-05
-0.000375389
-0.000255449
-0.000413972
-0.000676164
-0.000764793
-0.000794542
-0.00081745
-0.000835497
-0.000830291
-0.000380301
-0.000234114
-0.00077076
-0.000762057
-0.000716032
-0.000686057
0.000124517
0.00639372
0.00643745
0.00510402
1.59569e-05
6.94416e-05
0.000111844
9.52248e-05
0.000297443
-4.75976e-05
-0.000408662
-0.000402718
-0.000461937
-0.000419806
-0.000305255
-0.000167282
-2.93814e-05
4.22508e-05
7.42309e-05
0.000105529
0.000183037
0.000242134
0.000248393
0.000287555
0.000323373
0.000643669
0.000736691
0.000550685
0.000546787
0.00073339
0.000670763
0.000620681
0.000549502
0.000476773
0.000482244
0.000494759
0.000506575
0.000517696
0.000528148
0.000537998
0.000547329
0.000556225
0.000564764
0.000573019
0.000581055
0.000588932
0.000596701
0.000604403
0.000612076
0.000619748
0.000627444
0.000635187
0.000642987
0.000650798
0.000658476
0.000760201
0.000810397
0.00086259
0.00091703
0.000973946
0.00103356
0.0010961
0.00116187
0.00123121
0.00130453
0.00138235
0.00146536
0.00155443
0.0016507
0.00175569
0.00187147
0.00200102
0.00214682
0.00231497
0.00592367
0.0116993
0.00948718
0.00582635
0.00605012
0.011214
0.0712705
0.087692
0.0352507
-9.55894e-05
0.000152571
0.00387424
0.00563532
0.00123864
-0.00112566
-0.000950435
-0.00075369
-0.000548701
-0.000266954
-6.17893e-05
9.19088e-05
0.00627191
0.0305605
0.0307894
0.0196171
-0.00118442
-0.000714427
0.000799956
0.00198574
0.00185586
0.00377451
0.0224184
0.00294838
-0.00036246
-0.000318021
0.000248701
0.0365554
0.0545516
0.0545967
0.0545746
0.0545269
0.0465005
0.0101925
0.0179617
0.0400046
0.0400073
0.0399665
0.0372595
0.0396263
0.0396166
0.0226641
0.0042373
0.00215074
0.000466057
0.000322198
0.000612212
0.00394992
0.00405228
0.00404784
0.000985742
0.00025774
0.000261393
0.000266483
0.000273571
0.000282387
0.000292612
0.000303943
0.000316122
0.000328937
0.000342221
0.000355837
0.000369676
0.000383649
0.000397685
0.000411729
0.000425736
0.000439669
0.000453497
0.000467199
0.000480813
0.000494495
0.000824352
0.000880369
0.000939062
0.00100047
0.00106467
0.00113171
0.0012016
0.00127433
0.00134983
0.00142798
0.00150869
0.00159185
0.00167745
0.00176565
0.00185686
0.00195179
0.00205127
0.00216131
0.0127732
0.0820033
0.0831808
0.0832661
0.0832257
0.0831302
0.0832876
0.0834522
0.0835866
0.0836405
0.0430603
0.00376824
0.00484072
0.00910641
0.0497534
0.0602142
0.0150339
-0.00106789
-5.52385e-05
-0.00044217
0.0128372
0.0505852
0.0507696
0.04697
0.000695408
0.000557174
0.000264029
-0.000297043
0.00759929
0.05136
0.0546364
0.0547244
0.0547568
0.054644
0.0548434
0.0549185
0.0550287
0.0550821
0.0551461
0.0551713
0.0509331
0.0550493
0.0551937
0.0552126
0.0379845
0.0314325
0.040141
0.0402434
0.0402881
0.0388924
0.0398181
0.0400387
0.0400856
0.0400412
0.0142327
0.000383761
0.00038195
0.00038076
0.000712151
0.000793971
0.000442843
0.000377706
0.000383912
0.000389409
0.000394722
0.000399947
0.000405104
0.000410196
0.000415219
0.000420186
0.000425118
0.00043005
0.000435014
0.000440043
0.000445164
0.000450398
0.000455762
0.000461268
0.000466927
0.000472743
0.000478714
0.000484822
0.000638982
0.000670245
0.000701526
0.000732748
0.000763773
0.000794403
0.000824404
0.000853501
0.000881374
0.000907667
0.000931986
0.000953925
0.000973105
0.000989247
0.00100233
0.00101289
0.00102225
0.00103134
0.00119233
0.00294481
0.00466539
0.0054317
0.00451099
0.00333578
0.00400355
0.00557107
0.00511038
0.0073558
0.0362917
0.0394553
0.0371018
0.0206907
0.0531376
0.0533778
0.0535226
0.0536534
0.0536553
0.0459124
0.0509536
0.051172
0.0512698
0.0209114
0.0197041
0.0395274
0.0313204
-0.000581867
-0.00012677
0.000384357
0.012828
0.0310345
0.0541153
0.0172015
-0.000407803
-0.000671481
-0.000897568
-0.00154541
-0.00153394
-0.00139955
-0.00146664
-0.00083243
0.0305381
0.00766949
-0.000557859
-0.000517688
-0.000548732
-0.000571579
-0.000544001
-0.000512947
-0.000499284
-0.000497645
-0.000498231
-0.000459423
-0.000424761
-0.00039236
-0.000361864
-0.000331129
-0.000298454
-0.000262763
-0.000225179
-0.000188063
-0.000151991
-0.000117243
-8.39471e-05
-5.21916e-05
-2.20123e-05
6.60699e-06
3.37228e-05
5.94171e-05
8.37858e-05
0.00010693
0.000128948
0.000149937
0.000169985
0.000189172
0.000207571
0.000225248
0.000242258
0.000258649
0.000274448
0.000289663
0.00039381
0.0004038
0.00041261
0.000419755
0.000424857
0.000427561
0.000427468
0.000424111
0.000416962
0.000405424
0.000388837
0.000366482
0.000337607
0.000301469
0.000257404
0.000204931
0.00014393
7.51165e-05
1.00955e-06
-7.31952e-05
-0.000139112
-0.000182991
-0.00018972
-0.000207224
-0.000248079
-0.000308141
-0.000378573
-0.000459838
-0.000481652
-0.000466007
-0.000470869
-0.000311446
-0.000607092
-0.000763654
-0.00107651
-0.00111887
-0.00114993
-0.00111311
-0.00119001
-0.00123223
-0.00117872
-0.00116394
-0.00117434
-0.0012461
-0.00121609
-0.00113677
-0.000693242
0.000130633
-0.000789116
-0.00123505
-0.00125739
-0.00118592
-0.00112505
-0.00107766
-0.00103614
-0.000994563
-0.000946561
-0.00089751
-0.000855405
-0.0008333
-0.000811203
-0.000759732
-0.000690242
-0.00062632
-0.00058685
-0.000558363
-0.000527322
-0.000494033
-0.000463324
-0.000435926
-0.000406583
-0.000367878
-0.000323134
-0.000278865
-0.000236858
-0.000197277
-0.000160189
-0.000125538
-9.31986e-05
-6.3039e-05
-3.49029e-05
-8.64333e-06
1.58838e-05
3.88186e-05
6.02953e-05
8.04413e-05
9.93769e-05
0.000117214
0.000134055
0.000149996
0.000165123
0.000179516
0.000193247
0.00020638
0.000218976
0.000231088
0.000242766
0.000254056
0.000264998
0.000275616
0.000286229
0.000293467
0.000299519
0.000304525
0.00030847
0.000311257
0.000312776
0.00031292
0.000311586
0.000308668
0.000304059
0.000297655
0.000289355
0.000279065
0.000266698
0.000252183
0.00023547
0.000216546
0.000195426
0.000172077
0.000146278
0.000117438
8.48724e-05
4.74954e-05
4.509e-06
-4.46806e-05
-0.000101014
-0.000165193
-0.000234228
-0.000300287
-0.000356637
-0.000419359
-0.000504978
-0.000582856
-0.000634798
-0.000664527
-0.000676962
-0.00069001
-0.000714697
-0.000735335
-0.000740592
-0.000738903
-0.000740879
-0.000744799
-0.00074333
-0.000736215
-0.000729919
-0.000726961
-0.000726776
-0.000728959
-0.00072638
-0.000719881
-0.000707397
-0.000693308
-0.000678349
-0.000663956
-0.000649977
-0.000634403
-0.000618254
-0.000600911
-0.000581365
-0.000559822
-0.000536491
-0.000512898
-0.000490131
-0.000467997
-0.00044609
-0.0004243
-0.000402674
-0.000381205
-0.000359811
-0.000338409
-0.000317065
-0.000295713
-0.00027464
-0.00025338
-0.000232321
-0.000211534
-0.000191001
-0.000170726
-0.000150736
-0.00013106
-0.000111723
-9.27486e-05
-7.41529e-05
-5.59497e-05
-3.81488e-05
-2.07564e-05
-3.77569e-06
1.27932e-05
2.89524e-05
4.4706e-05
6.00599e-05
7.50211e-05
8.95964e-05
0.00010379
0.000117597
0.00013101
0.000144056
0.000156828
0.000140085
0.000139573
0.000138458
0.000136542
0.00013372
0.000129944
0.000125174
0.00011937
0.000112492
0.000104504
9.53814e-05
8.51038e-05
7.36642e-05
6.10696e-05
4.73438e-05
3.25305e-05
1.66964e-05
-6.77311e-08
-1.7651e-05
-3.59355e-05
-5.48232e-05
-7.4269e-05
-9.43004e-05
-0.000114978
-0.000136385
-0.00015857
-0.000181524
-0.000205158
-0.000229208
-0.000253234
-0.000276838
-0.000300278
-0.000323541
-0.000345718
-0.000366297
-0.00038513
-0.000402227
-0.000417767
-0.000431919
-0.000444581
-0.00045562
-0.000465131
-0.000473264
-0.000480052
-0.000485401
-0.000489211
-0.000491458
-0.000492076
-0.000491048
-0.000488238
-0.000483682
-0.000477585
-0.000470076
-0.000461288
-0.000451555
-0.0004408
-0.000429184
-0.000416757
-0.000403593
-0.000389816
-0.000375465
-0.000360576
-0.0003453
-0.000329804
-0.000314218
-0.000298579
-0.000282892
-0.00026717
-0.000251422
-0.000235644
-0.000219823
-0.000203944
-0.000188008
-0.000171998
-0.000155987
-0.000140517
-0.000125223
-0.000110137
-9.54812e-05
-8.11252e-05
-6.70653e-05
-5.33272e-05
-3.99252e-05
-2.68634e-05
-1.41411e-05
-1.75498e-06
1.03e-05
2.20305e-05
3.34446e-05
4.45513e-05
5.53607e-05
6.58852e-05
7.61422e-05
8.61523e-05
9.59229e-05
0.000105418
0.000114601
0.000123588
0.000132366
0.000140808
9.66347e-05
9.74751e-05
9.7654e-05
9.72636e-05
9.63191e-05
9.47961e-05
9.26668e-05
8.99073e-05
8.64962e-05
8.24141e-05
7.76432e-05
7.2168e-05
6.59755e-05
5.90557e-05
5.14018e-05
4.3011e-05
3.38842e-05
2.40269e-05
1.34486e-05
2.16241e-06
-9.81478e-06
-2.24623e-05
-3.57543e-05
-4.96571e-05
-6.41238e-05
-7.90901e-05
-9.44708e-05
-0.000110158
-0.000126023
-0.000141925
-0.000157719
-0.000173288
-0.000188487
-0.000203092
-0.000216909
-0.000229871
-0.000241892
-0.000252937
-0.000263023
-0.000272122
-0.000280207
-0.000287307
-0.000293462
-0.000298717
-0.000303084
-0.000306616
-0.000309366
-0.000311377
-0.000312665
-0.000313261
-0.000313156
-0.000312335
-0.000310822
-0.000308679
-0.00030592
-0.000302564
-0.000298638
-0.000294154
-0.000289131
-0.000283591
-0.000277551
-0.000271031
-0.000264065
-0.000256689
-0.000248937
-0.000240841
-0.000232432
-0.000223737
-0.000214785
-0.000205605
-0.000196224
-0.00018667
-0.000176972
-0.000167162
-0.000157277
-0.000147364
-0.000137458
-0.000127522
-0.000117428
-0.000107328
-9.71438e-05
-8.69849e-05
-7.68789e-05
-6.68312e-05
-5.685e-05
-4.69463e-05
-3.71312e-05
-2.74155e-05
-1.78116e-05
-8.33419e-06
1.00978e-06
1.02498e-05
1.94511e-05
2.84988e-05
3.73784e-05
4.61442e-05
5.48576e-05
6.3427e-05
7.18584e-05
8.02157e-05
3.81185e-05
3.68334e-05
3.53344e-05
3.3545e-05
3.14341e-05
2.89969e-05
2.62326e-05
2.31402e-05
1.97193e-05
1.59711e-05
1.18991e-05
7.50842e-06
2.80672e-06
-2.19657e-06
-7.49007e-06
-1.30605e-05
-1.8893e-05
-2.49708e-05
-3.12756e-05
-3.77877e-05
-4.44862e-05
-5.13494e-05
-5.83544e-05
-6.54775e-05
-7.2693e-05
-7.99736e-05
-8.72889e-05
-9.46055e-05
-0.000101887
-0.000109097
-0.000116193
-0.000123139
-0.000129894
-0.000136424
-0.000142687
-0.000148603
-0.000154157
-0.000159356
-0.000164185
-0.000168612
-0.000172617
-0.000176186
-0.000179314
-0.000181991
-0.000184205
-0.000185946
-0.000187211
-0.000187994
-0.000188294
-0.000188118
-0.00018747
-0.000186358
-0.000184798
-0.000182808
-0.000180404
-0.000177606
-0.000174432
-0.000170905
-0.000167046
-0.000162878
-0.000158424
-0.000153707
-0.00014875
-0.000143576
-0.000138207
-0.000132665
-0.00012697
-0.000121141
-0.000115195
-0.00010915
-0.000103022
-9.68258e-05
-9.05759e-05
-8.42862e-05
-7.79692e-05
-7.16347e-05
-6.52859e-05
-5.89181e-05
-5.25315e-05
-4.61659e-05
-3.99554e-05
-3.38312e-05
-2.78006e-05
-2.18363e-05
-1.59435e-05
-1.01226e-05
-4.37083e-06
1.29067e-06
6.85343e-06
1.23438e-05
1.77768e-05
2.31092e-05
2.82602e-05
3.33293e-05
3.83322e-05
4.32628e-05
4.81194e-05
5.29016e-05
5.7596e-05
6.21636e-05
2.27732e-05
2.27791e-05
2.25401e-05
2.21063e-05
2.14922e-05
2.0694e-05
1.97064e-05
1.85259e-05
1.71498e-05
1.55762e-05
1.38034e-05
1.18305e-05
9.65703e-06
7.28365e-06
4.71201e-06
1.945e-06
-1.01321e-06
-4.15715e-06
-7.48005e-06
-1.09738e-05
-1.46291e-05
-1.8435e-05
-2.23792e-05
-2.64475e-05
-3.0624e-05
-3.48909e-05
-3.92286e-05
-4.36157e-05
-4.80294e-05
-5.24459e-05
-5.68406e-05
-6.11884e-05
-6.54642e-05
-6.9643e-05
-7.37008e-05
-7.76149e-05
-8.13659e-05
-8.4938e-05
-8.83118e-05
-9.14779e-05
-9.44125e-05
-9.70114e-05
-9.95806e-05
-0.000102103
-0.000104375
-0.000106357
-0.000108054
-0.000109471
-0.000110613
-0.000111485
-0.000112089
-0.000112429
-0.00011251
-0.000112337
-0.000111917
-0.000111256
-0.000110361
-0.00010924
-0.000107901
-0.000106352
-0.000104603
-0.000102662
-0.000100539
-9.82446e-05
-9.57881e-05
-9.31798e-05
-9.043e-05
-8.75485e-05
-8.45452e-05
-8.14298e-05
-7.82116e-05
-7.49001e-05
-7.15044e-05
-6.80338e-05
-6.44973e-05
-6.09044e-05
-5.72651e-05
-5.35913e-05
-4.98992e-05
-4.62103e-05
-4.25342e-05
-3.88488e-05
-3.51199e-05
-3.13865e-05
-2.75636e-05
-2.35826e-05
-1.96099e-05
-1.56454e-05
-1.16799e-05
-7.73359e-06
-3.82467e-06
4.84762e-08
3.88642e-06
7.68687e-06
1.14465e-05
1.51619e-05
1.88298e-05
2.24489e-05
2.60275e-05
2.95915e-05
-6.10658e-07
-1.14124e-06
-1.67526e-06
-2.23412e-06
-2.82422e-06
-3.44356e-06
-4.089e-06
-4.75778e-06
-5.44719e-06
-6.15438e-06
-6.87628e-06
-7.60971e-06
-8.35141e-06
-9.09809e-06
-9.8464e-06
-1.05929e-05
-1.1334e-05
-1.20659e-05
-1.27847e-05
-1.34866e-05
-1.41675e-05
-1.48238e-05
-1.54517e-05
-1.60477e-05
-1.66085e-05
-1.71307e-05
-1.76111e-05
-1.80463e-05
-1.8433e-05
-1.87677e-05
-1.90469e-05
-1.92671e-05
-1.94249e-05
-1.9517e-05
-1.95401e-05
-1.94905e-05
-1.93651e-05
-1.91612e-05
-1.88679e-05
-1.84436e-05
-1.7854e-05
-1.73915e-05
-1.78364e-05
-1.9149e-05
-2.03897e-05
-2.14134e-05
-2.22491e-05
-2.29271e-05
-2.34633e-05
-2.38664e-05
-2.41425e-05
-2.42972e-05
-2.43364e-05
-2.42663e-05
-2.40928e-05
-2.38219e-05
-2.34595e-05
-2.30115e-05
-2.24836e-05
-2.18816e-05
-2.12114e-05
-2.04786e-05
-1.96888e-05
-1.88476e-05
-1.79605e-05
-1.70329e-05
-1.60701e-05
-1.5077e-05
-1.40586e-05
-1.30196e-05
-1.19643e-05
-1.08968e-05
-9.82069e-06
-8.73934e-06
-7.6556e-06
-6.57191e-06
-5.48925e-06
-4.40515e-06
-3.31431e-06
-2.21587e-06
-1.11519e-06
-1.58583e-08
6.72367e-07
9.81832e-07
1.56913e-06
2.3676e-06
3.17567e-06
3.96091e-06
4.72137e-06
5.46285e-06
6.18877e-06
6.90079e-06
7.60025e-06
8.28848e-06
8.96672e-06
9.6361e-06
1.02978e-05
1.09524e-05
1.15964e-05
1.22192e-05
0.0696108
0.0630928
0.0629022
0.0629938
0.0633807
0.0633116
0.0623297
0.0603009
0.059359
0.058701
0.0620955
0.0636841
0.0535311
0.0523631
0.0510817
0.0583239
0.0537703
0.0462637
0.0438882
0.041505
0.0389057
0.0360594
0.0329439
0.0295408
0.0258328
0.0218015
0.0174183
0.0129048
0.0111388
0.0035087
-0.00289025
-0.00896474
-0.0152385
-0.0217239
-0.0271222
-0.0306933
-0.0378623
-0.0451854
-0.0541014
-0.064363
-0.0707698
-0.0765487
-0.0814584
-0.0854472
-0.0885732
-0.0911248
-0.0936576
-0.0972811
-0.102974
-0.111774
-0.116548
-0.118434
-0.151204
-0.171066
-0.189501
-0.207383
-0.226107
-0.245325
-0.264444
-0.273546
-0.276039
-0.271688
-0.260468
-0.242779
-0.219213
-0.190451
-0.157225
-0.120035
-0.0798494
-0.0286983
0.0151855
0.0383325
0.0687996
0.0987577
0.117847
0.12847
0.139938
0.150163
0.158319
0.204549
0.361093
0.206239
0.179297
0.166247
0.144085
0.110285
0.0860513
0.0687211
0.0615111
0.0805582
0.0349339
0.0135262
0.0298332
0.132491
0.846021
37.0838
77.7133
99.4953
140.885
197.703
0.0825926
0.0752037
0.161706
0.0980847
0.0559195
0.0501669
0.0485664
0.0470853
0.0455901
0.0440468
0.0455508
0.0533612
0.0463596
0.043195
0.0413542
0.047273
0.0525144
0.0327884
0.0278447
0.0246665
0.021105
0.0171833
0.0129005
0.00824413
0.00317823
-0.00219746
-0.008074
-0.0145079
-0.0213202
-0.0285239
-0.0317392
-0.0436467
-0.0523466
-0.0611996
-0.0525346
-0.0726238
-0.0860595
-0.0954894
-0.1048
-0.113782
-0.123705
-0.133516
-0.14317
-0.154048
-0.163663
-0.171708
-0.179216
-0.186206
-0.192397
-0.198156
-0.20316
-0.204519
-0.205499
-0.205768
-0.201812
-0.203955
-0.206306
-0.208024
-0.209174
-0.211465
-0.205656
-0.195169
-0.180574
-0.161778
-0.139033
-0.112469
-0.0823928
-0.0496089
-0.0152978
0.020805
0.0718773
0.0973662
0.118151
0.137076
0.15407
0.163237
0.162687
0.166568
0.168877
0.172929
0.172811
0.173115
0.176995
0.155325
0.134699
0.114936
0.0966731
0.0824801
0.0705483
0.0659136
0.956143
4.15389
5.30657
9.43597
14.5363
16.1812
17.6844
19.661
21.6476
22.5231
0.146076
0.157251
0.157808
0.156789
0.134515
0.044996
0.0374739
0.0355869
0.0337569
0.0320123
0.0324557
0.0417359
0.0386031
0.0327722
0.0303113
0.0346484
0.0396681
0.0307238
0.0164174
0.0116352
0.0070867
0.00218179
-0.00311478
-0.008833
-0.0150323
-0.0217444
-0.0289953
-0.0368121
-0.0452051
-0.0518924
-0.0600863
-0.0731336
-0.0839618
-0.0948295
-0.086165
-0.104461
-0.125169
-0.136932
-0.14828
-0.15998
-0.171982
-0.183694
-0.195427
-0.205976
-0.216972
-0.226969
-0.234591
-0.239939
-0.242319
-0.24202
-0.238699
-0.23197
-0.222396
-0.209411
-0.189923
-0.175385
-0.159714
-0.143352
-0.131757
-0.115226
-0.0973575
-0.0594404
-0.0506989
-0.0333904
-0.010164
0.0142969
0.0421968
0.0717072
0.0957347
0.121334
0.155613
0.176157
0.181798
0.194196
0.201363
0.204556
0.197325
0.195058
0.192773
0.189958
0.187216
0.184636
0.180698
0.229605
0.197931
0.183163
0.187895
0.192929
0.195344
0.264428
15.1129
33.4733
39.7473
43.2053
46.458
47.3353
44.7975
38.1562
36.73
39.9517
0.0322995
0.0593057
0.143974
0.146824
0.138445
0.0373178
0.0230342
0.0220942
0.0213151
0.0208673
0.0215636
0.0298507
0.0382361
0.0199713
0.0190508
0.0183513
0.0282057
0.0326786
0.0127219
0.000268613
-0.0042302
-0.00924471
-0.0148675
-0.0211313
-0.0280221
-0.0353685
-0.0434619
-0.0524113
-0.0612266
-0.0696262
-0.0801592
-0.0925751
-0.105331
-0.108524
-0.117121
-0.130338
-0.148174
-0.169604
-0.181731
-0.193614
-0.205214
-0.214326
-0.219838
-0.234772
-0.249514
-0.259376
-0.267685
-0.273711
-0.276639
-0.275781
-0.2706
-0.260462
-0.243849
-0.219627
-0.19362
-0.166917
-0.137718
-0.10424
-0.0699811
-0.0365369
0.00190019
0.045056
0.0723194
0.0900776
0.115407
0.139464
0.168956
0.185439
0.201939
0.220223
0.238261
0.246901
0.251046
0.246625
0.242789
0.236537
0.23088
0.224826
0.218155
0.211162
0.25653
0.27792
0.269236
0.238377
0.174594
0.145452
0.12457
0.0973502
0.0882983
2.63276
25.1035
37.9104
41.8691
44.0315
46.2017
47.1845
46.8736
46.4877
46.0658
45.8806
0.0119736
0.00857231
0.00503086
0.175172
0.0608735
0.0138366
0.0133078
0.0126973
0.0120721
0.0115436
0.011132
0.0107783
0.0574616
0.0244257
0.014406
0.0133081
0.0129001
0.0268431
0.026442
0.000168009
-0.010997
-0.0158596
-0.021552
-0.0280208
-0.035237
-0.0422277
-0.0503583
-0.0608032
-0.0713214
-0.0807045
-0.0927536
-0.0950151
-0.107168
-0.121575
-0.135979
-0.150268
-0.173791
-0.191984
-0.204204
-0.215619
-0.221266
-0.229722
-0.238762
-0.24731
-0.257704
-0.269582
-0.276375
-0.281745
-0.284899
-0.284915
-0.28038
-0.271128
-0.255873
-0.235604
-0.208115
-0.174438
-0.136056
-0.0945092
-0.0497997
0.00429905
0.048706
0.0908342
0.125075
0.151778
0.181184
0.206333
0.23192
0.257355
0.26926
0.276544
0.279806
0.275475
0.27501
0.27446
0.270557
0.263258
0.25563
0.245876
0.233444
0.293985
0.280739
0.247194
0.201177
0.178897
0.145362
0.101967
0.0601649
0.0117549
-0.016132
-0.0389853
-0.0153589
0.0864216
0.256767
5.15571
8.50102
12.6905
14.7629
18.2341
20.1348
21.1212
-0.000517539
-0.00167291
-0.00250352
0.00731266
0.0228958
0.00520443
0.00280765
0.00310345
0.00315485
0.00309098
0.00300743
0.00298065
0.0521142
0.0406197
0.0117581
0.00991988
0.00797565
0.0179278
0.0280736
0.00376671
-0.0115434
-0.0167351
-0.02255
-0.0290477
-0.0357144
-0.0427599
-0.0522905
-0.0621093
-0.0717811
-0.0720836
-0.082454
-0.0968326
-0.112305
-0.133597
-0.148851
-0.155571
-0.176943
-0.19864
-0.214652
-0.22574
-0.235266
-0.237506
-0.242742
-0.249616
-0.259118
-0.263053
-0.265773
-0.267694
-0.268277
-0.266846
-0.262677
-0.254112
-0.239953
-0.221169
-0.196714
-0.166367
-0.12983
-0.0873144
-0.0453768
-0.0011233
0.0440275
0.0782128
0.115622
0.152785
0.18522
0.223299
0.250819
0.268833
0.278583
0.281352
0.284092
0.287276
0.298823
0.3067
0.308583
0.415344
0.444538
0.299925
0.287121
0.310372
0.231202
0.230984
0.231838
0.241259
0.253454
0.219804
0.215735
0.18963
1.00529
1.30711
1.16493
0.744291
0.35867
0.368355
0.342723
0.311245
0.273659
0.24541
0.237505
0.235378
-0.0161936
-0.0160719
-0.00258151
-0.000822649
-0.0112763
-0.010613
-0.00901743
-0.00797192
-0.00725042
-0.00668261
-0.0062552
-0.00346227
0.0546031
0.037138
0.00943813
0.00795376
0.0067514
0.0292053
0.027392
-0.00435522
-0.0121599
-0.0162565
-0.0211986
-0.026902
-0.0323742
-0.0395059
-0.0483028
-0.0570896
-0.0510741
-0.0623124
-0.0755515
-0.0983234
-0.112687
-0.127869
-0.137889
-0.157989
-0.176288
-0.195182
-0.208932
-0.220413
-0.229539
-0.232579
-0.240138
-0.245428
-0.24679
-0.246784
-0.245562
-0.241702
-0.234659
-0.226919
-0.217404
-0.206151
-0.194843
-0.180381
-0.162182
-0.139885
-0.11344
-0.0835274
-0.0542079
-0.0238451
0.0104366
0.0485227
0.086194
0.128639
0.167872
0.202041
0.230649
0.255313
0.273198
0.285014
0.708845
0.824728
0.488451
0.431879
0.447799
0.358114
0.349334
0.331916
0.33411
0.332217
1.06451
2.2307
2.22167
1.74607
1.40285
1.77618
1.90367
1.9353
1.79121
0.82208
0.0651676
0.157375
0.175881
0.216339
0.223041
0.32841
0.413059
0.382377
0.341404
0.290922
-0.0419437
-0.0389513
-0.0220982
-0.00806912
-0.0296829
-0.0287794
-0.0254189
-0.0223649
-0.0196059
-0.0171
-0.0149019
-0.000518558
0.0466882
0.0318751
0.0020135
0.000943485
0.00230704
0.0307925
0.0187855
-0.00559186
-0.0110901
-0.0151279
-0.0195459
-0.024416
-0.0294697
-0.0356831
-0.0423242
-0.0431813
-0.0382025
-0.0479889
-0.072805
-0.0842633
-0.0923995
-0.106336
-0.127574
-0.147873
-0.161903
-0.175519
-0.188271
-0.199463
-0.208708
-0.215754
-0.219191
-0.219189
-0.218782
-0.214101
-0.209188
-0.202006
-0.19389
-0.186997
-0.179196
-0.171743
-0.158999
-0.14756
-0.13691
-0.120958
-0.101707
-0.0826184
-0.0610064
-0.0366226
-0.011291
0.0170766
0.0481326
0.0772803
0.103354
0.12029
0.144616
0.168622
0.8055
1.52613
1.56786
1.58986
1.4683
0.740877
0.236797
0.235075
0.232257
0.227037
0.220483
1.44969
2.07493
2.02229
1.57018
-0.0871352
-0.0533378
-0.0908213
-0.129222
-0.158332
-0.174609
-0.178452
-0.190147
-0.15657
-0.127597
-0.105372
-0.0835681
0.00355105
0.201236
0.336113
0.37301
0.380533
-0.0758029
-0.0679854
-0.0406407
-0.0355952
-0.0477119
-0.0477078
-0.0422343
-0.0368602
-0.0317119
-0.0269612
-0.0226835
0.0098348
0.0372189
0.0299233
-0.00265173
-0.00188127
0.00713459
0.0229324
0.00341425
-0.0147428
-0.0164535
-0.018554
-0.0211705
-0.0243255
-0.028039
-0.0323103
-0.0372173
-0.0414076
-0.036496
-0.0375668
-0.0561811
-0.0596456
-0.0684662
-0.0899649
-0.107342
-0.11863
-0.129911
-0.141436
-0.153238
-0.163456
-0.166709
-0.171602
-0.17662
-0.179396
-0.180307
-0.183012
-0.178733
-0.170907
-0.161391
-0.154497
-0.149413
-0.141928
-0.132495
-0.1211
-0.109103
-0.0966838
-0.0841525
-0.0659488
-0.0469143
-0.0321208
-0.0190563
-0.0104249
-0.00460343
-0.00843445
-0.0155721
-0.0231838
-0.0330863
0.358835
1.35867
1.37034
1.37992
1.38363
1.36801
0.745583
0.309899
0.531346
1.28949
0.0218973
0.0133704
0.0166365
0.687088
2.44343
0.286588
-0.263026
-0.275929
-0.3029
-0.334675
-0.365071
-0.384489
-0.389872
-0.387357
-0.382466
-0.348565
-0.208418
-0.0500437
-0.189041
-0.186231
-0.123336
-0.0856458
0.147481
-0.100049
-0.0800502
-0.0706514
-0.0699626
-0.0773902
-0.0691811
-0.0606492
-0.0514453
-0.0451767
-0.0385342
-0.0294955
0.0184998
0.0267461
0.0181856
-0.0102941
-0.00569125
0.0134883
0.0175535
-0.0159931
-0.0205312
-0.0201188
-0.0205413
-0.0216426
-0.0233185
-0.0254942
-0.028028
-0.0311473
-0.034813
-0.0389148
-0.0435488
-0.0449985
-0.0377686
-0.0442123
-0.0655404
-0.0759459
-0.083117
-0.0912366
-0.0999266
-0.10868
-0.115888
-0.115414
-0.12046
-0.13276
-0.137109
-0.137388
-0.136134
-0.133291
-0.126169
-0.115526
-0.107136
-0.104291
-0.1003
-0.0909929
-0.0811602
-0.0677504
-0.0533772
-0.0389722
-0.028226
-0.0225825
-0.0193293
-0.0192449
-0.0259668
-0.0426126
-0.0621378
-0.0842762
-0.113697
-0.147724
-0.0542756
0.701714
1.26774
1.25839
1.24906
1.19658
0.600623
0.60757
2.34368
2.38611
1.36504
0.526236
0.325733
0.346729
0.668384
1.29537
0.550477
-0.0642322
-0.32588
-0.386972
-0.402681
-0.375522
-0.378575
-0.363333
-0.342193
-0.267151
0.00950941
0.04541
0.0869379
0.141481
0.066274
0.0236525
0.0291592
-0.130896
-0.109183
-0.0930031
-0.101137
-0.0981573
-0.0870423
-0.0765264
-0.0657199
-0.0586206
-0.0520645
-0.0107102
0.012876
0.0167729
-0.0092388
-0.015922
-0.00979358
0.0199138
0.0116594
-0.016372
-0.0169555
-0.0176366
-0.0184701
-0.0194896
-0.0207082
-0.0221322
-0.0237613
-0.0255994
-0.0276606
-0.0299382
-0.0324134
-0.0351408
-0.0380938
-0.0399475
-0.0391725
-0.0426631
-0.0503365
-0.0571872
-0.0614587
-0.0648353
-0.0708209
-0.0751128
-0.0784872
-0.081093
-0.0829056
-0.0832489
-0.0811164
-0.0721653
-0.0680062
-0.0632424
-0.0575321
-0.0566598
-0.0514816
-0.0437808
-0.0234067
-0.00729022
-4.70825e-05
0.00625749
0.0112717
0.0146597
0.0158832
0.0100407
-0.00467518
-0.020522
-0.0358139
-0.0573543
-0.0798669
-0.114974
-0.146789
-0.105342
0.165406
0.537357
0.954891
0.904403
0.366361
0.364184
1.88542
2.1764
2.10809
2.0642
1.98786
1.79483
0.843702
0.389551
0.68773
0.718905
0.68935
0.682335
0.68821
0.31908
-0.18366
-0.176001
-0.161219
0.0518415
0.277551
0.122957
0.257613
0.37103
0.4403
0.443667
0.260876
-0.128116
-0.112687
-0.110745
-0.11315
-0.101306
-0.0901318
-0.0790742
-0.0688276
-0.0615286
-0.0252769
0.00721409
0.0122206
-0.0143115
-0.0187989
-0.0151296
0.0153591
0.0189831
-0.0143839
-0.0216993
-0.0206605
-0.0200286
-0.0197008
-0.0196191
-0.019741
-0.0200588
-0.0205443
-0.0211758
-0.021935
-0.0228031
-0.0237617
-0.0247939
-0.0258714
-0.0269663
-0.0277715
-0.028565
-0.0298632
-0.0301625
-0.0304414
-0.0314329
-0.0338283
-0.0351343
-0.0356093
-0.0357082
-0.0353146
-0.0345751
-0.033048
-0.0250379
-0.0172863
-0.0136956
-0.0165424
-0.0124053
-0.00627098
0.00171825
0.0277061
0.0372822
0.044182
0.0490834
0.04378
0.0485218
0.0548856
0.0502253
0.0438991
0.0393729
0.0321841
0.0264634
0.0127896
-0.0179668
-0.0465724
-0.07135
-0.0894107
-0.0864331
-0.0636651
-0.0132623
0.0136254
-0.00227366
0.0945552
0.531439
0.973316
0.551962
0.395987
0.73074
0.441096
-0.0857322
-0.0889382
-0.0590606
-0.0306496
-0.0645365
-0.104278
-0.0934161
-0.12111
-0.12533
-0.0957744
-0.0615093
-0.031143
0.00157485
0.0271971
0.146239
0.534962
0.479791
0.296121
-0.107269
-0.119224
-0.108678
-0.0986406
-0.0880699
-0.0767883
-0.0641417
-0.024086
-0.00826497
-0.0019029
-0.00415833
-0.0322773
-0.0277724
-0.0226158
0.0127317
0.0141671
-0.0106246
-0.0201498
-0.0192882
-0.0185235
-0.0178793
-0.0173572
-0.0169484
-0.0166528
-0.0164361
-0.0162837
-0.0161781
-0.0161014
-0.0160355
-0.0159608
-0.0158562
-0.0157026
-0.0154823
-0.0151622
-0.0146948
-0.0141397
-0.0134388
-0.0125257
-0.0105414
-0.00888125
-0.00864866
-0.00704017
-0.00504863
-0.00276998
-0.000195634
0.00271249
0.00669585
0.0124125
0.0157762
0.0185933
0.0237796
0.0294289
0.0355579
0.0499018
0.0726786
0.0709767
0.0686409
0.0744096
0.0816634
0.0885095
0.0939308
0.0975561
0.0993233
0.0998371
0.101474
0.0913216
0.0749356
0.054873
0.0317876
0.00137147
-0.0264039
-0.0473341
-0.0623817
-0.072638
-0.0942703
-0.132956
-0.178819
-0.217043
-0.231639
-0.232852
-0.227519
-0.193394
-0.170745
-0.173766
-0.17647
-0.171658
-0.153349
-0.125858
-0.0960681
-0.0655359
-0.0354497
-0.00744981
0.0188407
0.0443287
0.0689353
0.165405
0.508747
0.524535
0.28326
0.295812
-0.0956689
-0.0890034
-0.0762972
-0.0471259
-0.0339013
-0.0255302
-0.0170787
-0.0112486
-0.0291865
-0.0328499
-0.0284534
-0.0250792
0.00236439
0.00931124
0.0116804
-0.0089971
-0.0200093
-0.0187536
-0.0176467
-0.0166606
-0.0157735
-0.0149671
-0.0142245
-0.0135298
-0.012867
-0.0122202
-0.0115736
-0.0109109
-0.0102153
-0.00946997
-0.00865719
-0.00775915
-0.00675949
-0.00564384
-0.00439871
-0.00294912
-0.00132985
0.000483675
0.00253421
0.00485984
0.00734759
0.00994448
0.0128831
0.0160638
0.0194926
0.0231741
0.0271016
0.0312921
0.0357326
0.0403914
0.0453082
0.050564
0.0562683
0.0626701
0.0699005
0.0776636
0.0860791
0.0956716
0.105395
0.114649
0.124105
0.134538
0.143972
0.148427
0.145765
0.131889
0.114135
0.104604
0.0934317
0.0721674
0.0444485
0.0269408
0.0106852
-0.00405085
-0.0194959
-0.037451
-0.0557155
-0.0712861
-0.0807215
-0.0829944
-0.081023
-0.0747829
-0.0629194
-0.048874
-0.0350354
-0.0195442
-0.00135219
0.0177831
0.037824
0.0583012
0.078802
0.0991947
0.119276
0.137674
0.260638
0.53784
0.577143
0.342023
0.294127
0.343978
-0.0304636
-0.0250083
-0.020055
-0.0402641
-0.0445948
-0.0393229
-0.0292813
-0.0264991
-0.0252407
-0.0220707
-0.00762743
0.0105472
0.0131682
0.0125485
-0.0191379
-0.0184124
-0.0171138
-0.0159119
-0.014795
-0.0137518
-0.0127693
-0.0118326
-0.0109267
-0.0100361
-0.00914574
-0.00824073
-0.0073068
-0.00632997
-0.00529629
-0.00419197
-0.00300371
-0.00171825
-0.000322187
0.00119781
0.00285487
0.00466219
0.0066289
0.0087637
0.0110746
0.0135679
0.0162451
0.0191048
0.0221365
0.0253371
0.0287071
0.0322357
0.0359121
0.0397303
0.0436898
0.0477987
0.0520932
0.0566591
0.0616278
0.0671266
0.0732984
0.0806431
0.090441
0.103528
0.117884
0.128052
0.132432
0.137104
0.153209
0.161644
0.160852
0.14825
0.134034
0.127913
0.119181
0.1052
0.0900692
0.0765903
0.0641227
0.0523828
0.0416925
0.0320949
0.0240515
0.01825
0.0154087
0.0155954
0.0184241
0.0239067
0.0318662
0.0415931
0.0524751
0.0643406
0.0772796
0.0911967
0.105725
0.120334
0.134395
0.147489
0.159087
0.273317
0.413023
0.428999
0.294468
0.251955
0.25845
0.34029
-0.0407279
-0.0306593
-0.0175105
-0.0332864
-0.0310226
-0.0285768
-0.0263374
-0.0229212
0.00863466
0.0157037
0.0171655
0.0181618
-0.00494294
-0.0165245
-0.0153986
-0.0143039
-0.0132557
-0.0122464
-0.0112709
-0.0103222
-0.00939155
-0.00846957
-0.0075462
-0.00661115
-0.00565409
-0.00466452
-0.0036317
-0.00254459
-0.00139227
-0.000164104
0.00114992
0.00255919
0.00407233
0.00569719
0.00744062
0.00930813
0.0113036
0.0134289
0.0156832
0.0180628
0.0205604
0.023165
0.025861
0.0286277
0.0314404
0.0342688
0.0370759
0.0398187
0.0424484
0.0449111
0.047145
0.0490904
0.0507094
0.0518729
0.0520005
0.0505491
0.0503109
0.252605
0.675632
0.505625
0.754221
0.976138
0.583708
0.306464
0.221782
0.789501
1.64717
1.32306
0.223966
0.0999695
0.0805828
0.0715984
0.0723857
0.0743033
0.067362
0.0531785
0.0484802
0.0466254
0.0467013
0.0487111
0.0528419
0.0590189
0.067018
0.0765609
0.0873217
0.0989731
0.111232
0.123803
0.136302
0.148404
0.159752
0.200918
0.22259
0.227273
0.22069
0.212884
0.219926
0.225398
0.229535
0.351791
-0.0255621
-0.0243964
-0.0167564
-0.00951701
-0.00847665
-0.00796058
-0.0138314
-0.0109291
0.0199775
0.0259915
0.0195937
-0.0133041
-0.0128134
-0.0120424
-0.0112461
-0.0104364
-0.00962236
-0.00880869
-0.00799555
-0.00718046
-0.00635893
-0.00552516
-0.00467251
-0.00379391
-0.00288192
-0.00192901
-0.000927562
0.000129939
0.0012508
0.00244193
0.00370991
0.00506086
0.00650036
0.00803311
0.00966235
0.0113897
0.0132146
0.015134
0.0171416
0.0192267
0.0213734
0.0235593
0.0257536
0.027915
0.02999
0.0319101
0.0335866
0.0349054
0.0357212
0.0358507
0.035063
0.0330724
0.0295432
0.0240552
0.0156858
0.00362473
-0.0100591
0.654747
0.672665
0.588782
0.654767
0.938918
1.4492
1.47377
1.44576
1.43347
1.45326
1.48084
1.49348
1.49104
1.46982
0.981044
0.0890258
0.051177
0.0477805
0.0436199
0.0421231
0.0420988
0.0432675
0.0465135
0.0516677
0.0584229
0.0665794
0.0759272
0.0861673
0.0969723
0.108049
0.119093
0.129847
0.140099
0.149657
0.177349
0.179926
0.175811
0.182294
0.187922
0.20408
0.22274
0.211217
0.366497
-0.0162211
-0.0134806
-0.0020729
-0.00105456
-0.000794564
-0.000447425
-0.000107089
-0.00463865
-0.0120702
-0.0117806
-0.011001
-0.0101725
-0.0093846
-0.00863247
-0.00791253
-0.0072177
-0.00654022
-0.00587302
-0.0052094
-0.00454275
-0.00386659
-0.00317463
-0.00246072
-0.0017189
-0.000943338
-0.000128353
0.000731618
0.00164197
0.0026079
0.00363439
0.00472608
0.00588718
0.00712112
0.00843068
0.00981785
0.0112831
0.0128251
0.0144401
0.0161221
0.0178608
0.0196409
0.0214394
0.0232225
0.024942
0.026534
0.0279179
0.028971
0.0295283
0.0293808
0.0282596
0.025857
0.0219027
0.0161362
0.00810336
-0.00290487
-0.0176189
-0.0351095
-0.0177236
-0.000214001
-0.0258142
-0.0265117
-0.0259816
-0.0252542
0.0116776
0.519619
0.688906
0.867886
0.946891
1.02846
1.34947
1.49779
1.51446
1.5325
1.48638
0.540387
0.0400876
0.0375323
0.0338111
0.0334877
0.0349806
0.0382378
0.0433746
0.050325
0.0586732
0.0679352
0.0777262
0.0877123
0.0975871
0.107112
0.116095
0.124559
0.131188
0.136817
0.141403
0.14504
0.14771
0.310589
0.222624
0.208926
0.435748
-0.00839476
-0.00942183
-0.009522
-0.00940293
-0.00914113
-0.00891129
-0.00856316
-0.00818265
-0.00780008
-0.00736975
-0.00687627
-0.00637551
-0.00588963
-0.00542028
-0.00496395
-0.0045155
-0.00406982
-0.00362214
-0.003168
-0.00270318
-0.00222363
-0.0017255
-0.00120502
-0.000658533
-8.24532e-05
0.000526729
0.00117247
0.00185819
0.00258724
0.00336294
0.00418853
0.00506721
0.00600209
0.00699606
0.00805183
0.00917207
0.010359
0.0116145
0.0129393
0.0143314
0.0157852
0.017289
0.0188252
0.0203695
0.0218623
0.0232312
0.0243584
0.0250656
0.0250321
0.0238721
0.021112
0.0169127
0.012443
0.00785775
0.00242853
-0.00444161
-0.0126967
-0.0216132
-0.0289735
-0.0327463
-0.036199
-0.0393868
-0.0412356
-0.0429361
-0.0398798
-0.0351408
-0.0313386
-0.0288995
-0.0275495
-0.0253583
-0.0226948
-0.0193563
-0.0167485
-0.0107049
-0.000475322
0.0675611
0.161997
0.19996
0.171757
0.0663096
0.000688289
0.00626304
0.0136879
0.0225842
0.032328
0.042442
0.0525561
0.0623329
0.071487
0.0798313
0.0868559
0.0926475
0.0973879
0.101606
0.105843
0.162393
0.322703
0.196352
0.186659
0.48196
-0.00375606
-0.00396141
-0.00493833
-0.00489271
-0.00481823
-0.00471118
-0.00455134
-0.00435681
-0.00415591
-0.00395405
-0.00375022
-0.00354512
-0.00333922
-0.00313176
-0.00292128
-0.00270606
-0.00248431
-0.00225426
-0.00201418
-0.00176235
-0.00149712
-0.00121687
-0.000920046
-0.000605172
-0.000270838
8.42913e-05
0.000461487
0.000861974
0.00128694
0.00173758
0.00221511
0.0027209
0.00325652
0.00382394
0.00442571
0.0050652
0.00574696
0.00647706
0.00726341
0.00811591
0.00904591
0.0100642
0.011181
0.0124157
0.0137445
0.0151364
0.0164182
0.0224453
0.0352634
0.0350243
0.0419831
0.0300253
0.0182009
0.00826478
-0.00299574
-0.00910667
-0.0145387
-0.0205417
-0.0247144
-0.0285017
-0.0322472
-0.0379099
-0.0419763
-0.0457337
-0.0485401
-0.0373242
-0.0463435
-0.0518721
-0.0533258
-0.0539444
0.0226253
0.00784627
-0.0550374
-0.0521893
-0.0485828
-0.035096
0.108212
0.182429
0.185203
0.0584009
-0.0290381
-0.0264752
-0.0215124
-0.0147236
-0.00656117
0.00258039
0.0123499
0.0219236
0.0305732
0.0379863
0.0439742
0.0483063
0.0511071
0.0527304
0.0593922
0.511068
0.264311
0.164153
0.163146
0.462848
-0.00187446
-0.00191446
-0.00196241
-0.00201332
-0.0020603
-0.0020984
-0.00212483
-0.00214016
-0.00214566
-0.00214217
-0.00213077
-0.00211289
-0.00208955
-0.00206131
-0.00202838
-0.00199073
-0.00194821
-0.00190056
-0.00184753
-0.00178888
-0.00172442
-0.00165408
-0.0015779
-0.00149607
-0.00140896
-0.00131712
-0.00122132
-0.00112251
-0.00102185
-0.000920637
-0.000820325
-0.000722378
-0.00062815
-0.000538649
-0.000454194
-0.000373891
-0.000294848
-0.000211043
-0.000111958
1.93353e-05
0.000210339
0.000504658
0.000961596
0.00164531
0.00262291
0.00397809
0.0371996
0.25611
0.401567
0.382003
0.486103
0.483488
0.479825
0.389988
0.126834
0.125002
0.0710584
-0.0149227
-0.0386586
-0.0441726
-0.0495376
-0.0542728
-0.0595358
-0.063583
-0.0391017
-0.0380813
-0.0409706
-0.0646216
0.0440876
0.229483
0.228824
0.225428
0.0649361
-0.0898363
-0.0869764
-0.0407186
0.0488425
0.0560531
0.179655
0.0306083
-0.0830464
-0.0821515
-0.0739462
-0.0646152
-0.0542366
-0.0426552
-0.0264721
-0.0192896
-0.0100726
-0.000856289
0.00728575
0.014436
0.0213343
0.0290675
0.28324
0.510189
0.157656
0.100738
0.110926
0.412969
1.28146e-05
-0.000139462
-0.000292097
-0.000444129
-0.000593863
-0.000739729
-0.000880973
-0.00101776
-0.00115074
-0.00128061
-0.00140795
-0.00153332
-0.00165714
-0.0017798
-0.00190164
-0.00202298
-0.0021442
-0.00226573
-0.00238813
-0.00251205
-0.00263834
-0.00276802
-0.00290234
-0.00304284
-0.00319136
-0.00335008
-0.00352158
-0.00370889
-0.00391559
-0.00414584
-0.00440449
-0.00469726
-0.0050308
-0.00541303
-0.00585343
-0.00636365
-0.00695843
-0.00765762
-0.00848794
-0.00950774
-0.0107787
-0.012394
-0.0144919
-0.0172433
-0.0207048
-0.0247718
0.142362
0.409032
0.425248
0.436499
0.444637
0.40116
0.367499
0.370059
0.364841
0.267451
-0.0326375
-0.0534013
-0.0604328
-0.068029
-0.0672313
-0.065274
-0.0729923
-0.0907688
-0.101508
-0.108752
0.0346668
0.201072
0.19193
0.179754
0.170938
0.163106
-0.113177
-0.156079
-0.155192
-0.149261
0.142412
0.17787
0.177329
0.103426
-0.132931
-0.133582
-0.125142
-0.117197
0.174597
0.0954391
-0.0618393
-0.0609434
-0.0499341
-0.0399513
-0.0316622
-0.025268
-0.0207932
0.149296
0.479357
0.453309
0.0648846
0.058474
0.076836
0.358653
0.00100781
0.000771506
0.000532811
0.000292329
5.04773e-05
-0.00019229
-0.000435676
-0.000679565
-0.000924011
-0.00116921
-0.00141548
-0.00166325
-0.001913
-0.0021653
-0.0024208
-0.00268024
-0.00294445
-0.00321443
-0.00349128
-0.00377632
-0.00407105
-0.00437722
-0.00469689
-0.00503242
-0.00538662
-0.00576275
-0.00616467
-0.00659691
-0.0070649
-0.00757516
-0.00813559
-0.0087559
-0.00944814
-0.0102274
-0.0111131
-0.0121298
-0.013311
-0.014699
-0.0160633
-0.0180071
-0.0203263
-0.023127
-0.0265518
-0.0307814
-0.0359971
-0.0422465
-0.0492122
-0.0555808
-0.0275428
0.26382
0.0303017
-0.049875
-0.0525651
-0.0586335
-0.0569515
-0.0385954
-0.0670868
-0.0834063
-0.0925823
-0.0969358
-0.0645896
-0.10516
-0.123678
-0.13472
-0.146161
-0.157685
-0.0313117
0.156174
0.142053
-0.0173544
-0.214193
-0.219236
-0.222184
-0.151339
0.110319
0.110419
0.106817
0.106635
-0.0414515
-0.154706
-0.18198
-0.156313
-0.0137071
0.17646
0.223919
0.221382
-0.0805515
-0.101927
-0.0885267
-0.075671
-0.0637668
-0.052562
0.140395
0.409528
0.438838
0.318095
0.025888
0.0354931
0.330972
0.109357
0.00140155
0.00108159
0.000758842
0.000433425
0.000105321
-0.000225481
-0.000559088
-0.000895705
-0.00123564
-0.00157929
-0.00192716
-0.00227983
-0.00263795
-0.00300227
-0.00337362
-0.00375295
-0.00414131
-0.00453989
-0.00495002
-0.00537318
-0.00581102
-0.00626536
-0.00673826
-0.00723196
-0.00774897
-0.00829202
-0.00886413
-0.0094686
-0.010109
-0.0107893
-0.0115135
-0.0122862
-0.013112
-0.0139958
-0.0149424
-0.0159568
-0.0170436
-0.018206
-0.0194504
-0.0208027
-0.0222779
-0.0239016
-0.0257134
-0.0277717
-0.0301575
-0.0329741
-0.0363323
-0.040331
-0.0450371
-0.0497479
-0.0527013
-0.0558001
-0.0607976
-0.0675966
-0.0707765
-0.051947
-0.0120315
0.00969903
-0.00465444
0.0900641
-0.026674
-0.14425
-0.162066
-0.157526
-0.190092
-0.214604
-0.122802
-0.16657
-0.258541
-0.273786
-0.281399
-0.288091
-0.121584
0.0623041
0.0531235
-0.142936
-0.224008
-0.250626
-0.251566
-0.229084
-0.00231677
0.106916
0.122444
0.139181
0.161258
0.0543864
-0.158096
-0.151659
-0.133439
-0.117164
-0.0844827
0.177587
0.371866
0.39124
0.409517
0.03731
0.0197804
0.0367659
0.491422
0.0703502
0.00135988
0.000968693
0.000573283
0.000173619
-0.00023045
-0.000639112
-0.00105263
-0.00147136
-0.00189571
-0.0023262
-0.00276343
-0.0032081
-0.00366098
-0.00412294
-0.00459497
-0.00507814
-0.00557368
-0.00608291
-0.00660732
-0.00714852
-0.00770826
-0.00828846
-0.00889122
-0.00951881
-0.0101737
-0.0108585
-0.0115762
-0.0123297
-0.0131224
-0.0139577
-0.0148394
-0.0157712
-0.0167574
-0.017802
-0.0189095
-0.0200845
-0.0213315
-0.0226554
-0.0240614
-0.025556
-0.0271459
-0.0288386
-0.0306429
-0.0325715
-0.0346415
-0.0368792
-0.0393238
-0.042026
-0.0450303
-0.0483687
-0.0520213
-0.0559503
-0.0604401
-0.00671471
0.229379
0.381929
0.440541
0.42726
0.355244
0.0509663
-0.070552
-0.0902804
-0.054667
-0.0416968
-0.145598
-0.243637
-0.258048
-0.261685
-0.29182
-0.208855
-0.0568253
-0.0608161
-0.170962
-0.30681
-0.334748
-0.369094
-0.36786
-0.357982
-0.261671
0.0117759
0.0456759
0.0611806
0.0818346
0.00122085
-0.100566
-0.205816
-0.20496
-0.18235
-0.16179
-0.00783467
0.286102
0.360682
0.391019
0.397569
0.104652
0.0656168
0.0855388
0.460669
0.487893
0.159094
0.00103752
0.000580604
0.0001188
-0.000348074
-0.000820298
-0.0012982
-0.00178219
-0.00227273
-0.00277038
-0.00327576
-0.0037896
-0.0043127
-0.00484593
-0.00539027
-0.00594679
-0.00651668
-0.00710124
-0.0077019
-0.0083202
-0.00895785
-0.00961667
-0.0102987
-0.011006
-0.011741
-0.0125062
-0.0133045
-0.0141387
-0.0150122
-0.0159283
-0.0168909
-0.0179041
-0.0189722
-0.0201
-0.0212925
-0.0225554
-0.0238946
-0.0253167
-0.0268287
-0.0284384
-0.0301543
-0.0319853
-0.0339413
-0.0360265
-0.0382652
-0.0406652
-0.043243
-0.0460159
-0.0490161
-0.0522673
-0.0557852
-0.059583
-0.0635943
-0.067816
0.2162
0.485306
0.468561
0.411391
0.0982272
-0.0574718
-0.0498764
0.132211
0.235328
0.210599
-0.0769202
-0.230842
-0.237225
-0.195036
-0.00524771
0.00859031
-0.0666009
-0.359655
-0.331972
-0.363432
-0.394904
-0.396025
-0.394014
-0.388725
-0.35294
-0.106056
0.0383757
-0.149877
-0.189533
-0.238309
-0.260827
-0.251109
-0.227745
-0.203078
-0.178675
0.0787168
0.296856
0.333229
0.339028
0.169242
0.102898
0.129972
0.212027
0.413486
0.432226
0.254617
0.119618
0.000526829
1.39459e-05
-0.000504611
-0.00102899
-0.00155947
-0.00209641
-0.00264025
-0.00319152
-0.0037508
-0.00431878
-0.00489622
-0.00548393
-0.00608282
-0.00669387
-0.00731816
-0.00795684
-0.00861117
-0.00928254
-0.00997243
-0.0106824
-0.0114143
-0.0121699
-0.0129513
-0.0137605
-0.0146002
-0.0154727
-0.016381
-0.0173281
-0.0183172
-0.0193522
-0.0204369
-0.0215759
-0.0227739
-0.0240365
-0.0253697
-0.0267805
-0.0282765
-0.0298669
-0.0315619
-0.0333736
-0.0353162
-0.0374063
-0.0396643
-0.0421149
-0.0447885
-0.0477228
-0.0509662
-0.0545811
-0.0586483
-0.0632769
-0.0685962
-0.074744
-0.0819563
0.0263774
0.440066
0.490412
-0.0721958
-0.105658
-0.114149
0.104227
0.254855
0.235575
0.212061
-0.166338
-0.206781
-0.175467
0.045532
0.0416045
-0.215254
-0.335968
-0.341297
-0.325765
-0.368627
-0.369783
-0.368332
-0.364564
-0.358629
-0.290055
-0.143747
-0.282342
-0.306871
-0.287116
-0.265823
-0.240881
-0.218417
-0.19817
-0.0368066
0.470974
0.489523
0.121602
0.0131463
0.00139379
0.0074846
0.0446167
0.241065
0.287204
0.296243
0.112104
0.08799
0.0856105
-8.66761e-05
-0.000648932
-0.00121673
-0.00179028
-0.00236996
-0.00295624
-0.00354964
-0.00415076
-0.00476024
-0.00537878
-0.00600714
-0.00664612
-0.00729657
-0.0079594
-0.00863559
-0.00932615
-0.0100322
-0.0107549
-0.0114955
-0.0122554
-0.013036
-0.0138387
-0.0146653
-0.0155174
-0.016397
-0.0173061
-0.0182468
-0.0192215
-0.0202328
-0.0212834
-0.0223764
-0.0235152
-0.0247034
-0.0259454
-0.0272457
-0.0286097
-0.0300436
-0.0315543
-0.03315
-0.0348402
-0.0366362
-0.0385511
-0.0406006
-0.042803
-0.0451802
-0.0477578
-0.0505661
-0.0536396
-0.0570178
-0.0607447
-0.0648715
-0.0694659
-0.0745946
-0.0798127
-0.0848753
-0.0552393
-0.0896875
-0.0953215
-0.102671
-0.0409552
0.273918
0.288465
0.265255
0.0339344
-0.18372
-0.199324
-0.210222
0.0718463
0.0292469
-0.257151
-0.268934
-0.276545
-0.28493
-0.287862
-0.287307
-0.283263
-0.275384
-0.251478
-0.26578
-0.254133
-0.240055
-0.225185
-0.209466
-0.193316
-0.167838
0.288492
0.498423
0.53174
0.515636
-0.0313263
-0.0160154
0.000708567
0.015003
0.0413215
0.189425
0.217031
0.0679623
0.0519402
0.054331
0.0547354
-0.00075305
-0.00135767
-0.00196608
-0.00257923
-0.00319798
-0.00382309
-0.00445531
-0.00509534
-0.00574389
-0.00640166
-0.00706935
-0.00774769
-0.00843742
-0.00913929
-0.00985407
-0.0105826
-0.0113256
-0.0120841
-0.0128589
-0.0136509
-0.0144611
-0.0152905
-0.0161401
-0.0170109
-0.0179039
-0.0188203
-0.0197612
-0.0207278
-0.0217211
-0.0227423
-0.0237928
-0.0248737
-0.0259862
-0.0271318
-0.0283118
-0.0295276
-0.0307807
-0.0320728
-0.0334056
-0.034781
-0.0362011
-0.037668
-0.039184
-0.0407516
-0.0423729
-0.04405
-0.0457844
-0.0475766
-0.0494258
-0.0513293
-0.0532827
-0.0552808
-0.0573253
-0.0594479
-0.0617239
-0.0639348
-0.0665113
-0.0645715
-0.0690735
-0.0785433
-0.0834876
0.206664
0.354127
0.281899
-0.0604202
-0.0939057
0.0256375
0.413877
0.0416607
-0.171092
-0.178832
-0.18696
-0.194325
-0.196145
-0.0556299
0.00950578
-0.19787
-0.193994
-0.188334
-0.181294
-0.172988
-0.163866
-0.153578
-0.0460369
0.502184
0.544644
0.574365
0.604829
0.579285
0.0133137
0.0161839
0.0198028
0.0308441
0.0503874
0.0650734
0.0622695
0.0555347
0.0518202
0.0507436
0.0502905
-0.00148316
-0.00210501
-0.00273316
-0.00336815
-0.0040105
-0.00466069
-0.00531924
-0.00598666
-0.00666345
-0.00735013
-0.00804722
-0.00875524
-0.00947472
-0.0102062
-0.0109502
-0.0117071
-0.0124777
-0.0132622
-0.0140613
-0.0148754
-0.0157049
-0.0165502
-0.0174117
-0.0182895
-0.019184
-0.0200952
-0.0210229
-0.0219671
-0.0229274
-0.0239031
-0.0248935
-0.0258976
-0.0269138
-0.0279405
-0.0289754
-0.0300161
-0.0310593
-0.0321014
-0.0331381
-0.0341642
-0.035174
-0.0361608
-0.0371167
-0.0380332
-0.0389001
-0.0397062
-0.0404391
-0.0410848
-0.0416282
-0.0420528
-0.0423411
-0.0424748
-0.0424352
-0.0422041
-0.041776
-0.0412294
-0.0406832
-0.0402482
-0.0401013
-0.0406407
-0.0421467
-0.0449658
-0.0488764
-0.039306
0.0818632
0.305939
0.453966
0.451448
0.408683
-0.0518021
-0.0908798
-0.095906
-0.104931
0.267274
1.27133
0.946776
-0.100519
-0.124668
-0.131619
-0.135133
-0.136424
-0.135587
-0.0733055
0.473958
0.55099
0.578171
0.605178
0.350795
0.113529
0.0787448
0.0647154
0.0574789
0.0501204
0.0476249
0.048267
0.262879
0.0479019
0.0502656
0.0515585
0.0514512
-0.00219397
-0.00281951
-0.00345502
-0.00410053
-0.00475612
-0.00542189
-0.00609802
-0.0067847
-0.00748217
-0.00819071
-0.00891059
-0.00964211
-0.0103856
-0.0111413
-0.0119096
-0.0126907
-0.0134849
-0.0142924
-0.0151134
-0.015948
-0.0167961
-0.0176578
-0.0185328
-0.0194208
-0.0203212
-0.0212335
-0.0221565
-0.023089
-0.0240295
-0.0249759
-0.0259259
-0.0268765
-0.0278241
-0.0287646
-0.0296929
-0.0306032
-0.0314887
-0.0323414
-0.0331522
-0.0339107
-0.0346052
-0.0352221
-0.0357464
-0.0361612
-0.0364448
-0.0365767
-0.0365339
-0.0362908
-0.0358199
-0.0350922
-0.0340779
-0.0327475
-0.0310737
-0.0290341
-0.0266153
-0.0238215
-0.0206758
-0.0172009
-0.0134379
-0.00949988
-0.0056084
-0.00208784
0.00106924
0.00341942
0.00488419
0.0108933
0.336732
0.537712
0.532392
0.523198
0.220706
0.0468852
0.0674868
0.966887
1.24662
1.2106
0.94404
-0.0679726
-0.107579
-0.111555
-0.11411
-0.115023
0.0100568
0.576364
0.585727
0.627985
0.419171
0.309751
0.355818
0.397715
7.29597
11.8766
11.8755
12.3023
14.7811
15.7593
18.6138
19.7897
21.1303
21.5149
-0.00277816
-0.00340845
-0.00405143
-0.00470668
-0.00537397
-0.00605321
-0.00674437
-0.00744751
-0.00816274
-0.0088902
-0.00963008
-0.0103826
-0.0111479
-0.0119264
-0.0127181
-0.0135232
-0.014342
-0.0151745
-0.0160208
-0.0168809
-0.0177547
-0.0186419
-0.0195421
-0.0204548
-0.0213792
-0.0223142
-0.0232586
-0.0242107
-0.0251682
-0.0261285
-0.0270886
-0.0280445
-0.0289917
-0.0299245
-0.0308365
-0.0317201
-0.0325661
-0.0333643
-0.0341026
-0.0347669
-0.0353413
-0.0358071
-0.0361437
-0.0363861
-0.0363974
-0.0362076
-0.0357854
-0.035097
-0.0341059
-0.0327742
-0.0310624
-0.0289308
-0.026341
-0.0232576
-0.01965
-0.0154952
-0.0107841
-0.00553305
0.000202341
0.00632737
0.0127339
0.0192886
0.0259663
0.0328288
0.0396163
0.0456211
0.0507838
0.158615
0.466388
0.593749
0.593065
0.49622
0.231622
0.678935
1.24496
1.20228
1.15847
1.00923
-0.010819
-0.173857
-0.199395
-0.232261
-0.254084
-0.0834998
-0.108392
-0.363059
1.24135
7.13739
9.56855
9.8111
9.95744
12.2515
15.1212
14.9609
14.8699
16.5416
18.7769
19.6803
19.9969
20.6413
-0.00317052
-0.00381697
-0.00447495
-0.00514466
-0.00582629
-0.00652006
-0.0072262
-0.00794495
-0.00867659
-0.00942139
-0.0101797
-0.0109518
-0.011738
-0.0125386
-0.0133541
-0.0141846
-0.0150306
-0.0158922
-0.0167698
-0.0176634
-0.0185732
-0.0194992
-0.0204413
-0.0213992
-0.0223725
-0.0233605
-0.0243623
-0.0253767
-0.0264019
-0.0274358
-0.0284759
-0.0295187
-0.0305601
-0.0315953
-0.0326182
-0.0336216
-0.034597
-0.0355343
-0.0364216
-0.037245
-0.0379885
-0.0386359
-0.0391628
-0.0395481
-0.0397616
-0.0397731
-0.0395486
-0.0390504
-0.0382377
-0.0370679
-0.0354977
-0.0334851
-0.0309922
-0.027989
-0.0244604
-0.0204081
-0.0158483
-0.0108144
-0.00535788
0.000451129
0.00642547
0.0125752
0.0187123
0.0245778
0.0298497
0.0341778
0.0372612
0.0376729
0.0633145
0.194171
0.344989
0.429322
0.459069
0.475546
0.748923
1.14855
1.15079
1.10331
1.02776
0.307249
-0.294865
-0.388899
-0.458721
-0.546086
-0.640261
-0.751422
-0.0846811
3.17771
1.72271
-0.40377
-0.067966
-0.481417
-0.632095
-0.629133
-0.472279
-0.396124
-0.565115
-0.561985
-0.349163
-0.474003
-0.00341844
-0.00407459
-0.00474202
-0.00542116
-0.00611239
-0.00681614
-0.0075328
-0.00826282
-0.00900665
-0.00976475
-0.0105376
-0.0113258
-0.0121299
-0.0129503
-0.0137878
-0.014643
-0.0155164
-0.0164089
-0.017321
-0.0182535
-0.019207
-0.0201823
-0.02118
-0.0222007
-0.0232451
-0.0243135
-0.0254064
-0.026524
-0.0276664
-0.0288332
-0.030024
-0.0312379
-0.0324733
-0.0337283
-0.0350001
-0.0362852
-0.0375788
-0.038875
-0.0401663
-0.0414436
-0.0426959
-0.0439098
-0.0450699
-0.0461586
-0.0471556
-0.0480367
-0.0487734
-0.0493335
-0.0496819
-0.049782
-0.0495935
-0.0490712
-0.0481736
-0.0468819
-0.045203
-0.0431541
-0.0407543
-0.0380322
-0.0350707
-0.0320535
-0.0290794
-0.0260295
-0.0230355
-0.020388
-0.018437
-0.0175392
-0.018058
-0.0203367
-0.0247822
-0.0318301
-0.032456
-0.0218284
0.029316
0.151075
0.0390947
0.106083
0.490842
0.95649
1.04897
0.992347
0.483366
0.0223357
-0.285243
-0.56838
-0.634659
-0.704471
-0.720926
-0.743463
-0.759243
-0.748731
-0.762958
-0.756774
-0.763596
-0.74559
-0.719442
-0.704205
-0.676268
-0.64751
-0.628158
-0.624465
-0.00352488
-0.00418267
-0.00485179
-0.00553277
-0.00622615
-0.0069325
-0.0076524
-0.00838644
-0.00913527
-0.00989954
-0.01068
-0.0114774
-0.0122925
-0.0131263
-0.0139797
-0.0148537
-0.0157495
-0.0166683
-0.0176114
-0.0185802
-0.0195763
-0.0206013
-0.0216572
-0.0227459
-0.0238695
-0.0250304
-0.0262311
-0.0274743
-0.0287629
-0.0301001
-0.0314892
-0.0329339
-0.034438
-0.0360056
-0.0376408
-0.0393482
-0.0411321
-0.0429972
-0.0449477
-0.0469877
-0.0491206
-0.0513483
-0.0536742
-0.0560988
-0.0586233
-0.0612513
-0.0639902
-0.0668532
-0.0698597
-0.0730235
-0.0763403
-0.0798074
-0.0834214
-0.0871875
-0.0908925
-0.0943876
-0.0975851
-0.100362
-0.102582
-0.104374
-0.105763
-0.107129
-0.108526
-0.110082
-0.111873
-0.114152
-0.117297
-0.121645
-0.127479
-0.13512
-0.145021
-0.156989
-0.172417
-0.190175
-0.208831
-0.231252
-0.236093
-0.142058
0.00089414
-0.0748343
-0.09387
0.105214
0.0737908
0.0288258
-0.138164
-0.43444
-0.632724
-0.673736
-0.70201
-0.721022
-0.740637
-0.758274
-0.764114
-0.716969
-0.645133
-0.677452
-0.618995
-0.647785
-0.644987
-0.626188
-0.00348983
-0.00414041
-0.00480234
-0.00547626
-0.00616281
-0.00686265
-0.00757648
-0.00830503
-0.00904906
-0.00980942
-0.010587
-0.0113828
-0.0121979
-0.0130334
-0.0138907
-0.0147712
-0.0156764
-0.0166081
-0.0175683
-0.0185591
-0.0195829
-0.0206425
-0.021741
-0.0228817
-0.0240686
-0.025306
-0.026599
-0.0279531
-0.0293749
-0.0308716
-0.0324518
-0.034125
-0.0359026
-0.0377974
-0.0398243
-0.0420006
-0.0443461
-0.0468841
-0.0496411
-0.0526479
-0.0559399
-0.059558
-0.0635474
-0.0679564
-0.0728482
-0.0782867
-0.0843455
-0.0910913
-0.0985488
-0.106675
-0.115343
-0.124186
-0.132407
-0.139116
-0.144851
-0.144481
-0.146491
-0.151361
-0.162737
-0.166774
-0.168289
-0.180837
-0.193123
-0.205945
-0.217488
-0.228551
-0.243083
-0.251114
-0.255785
-0.255342
-0.259845
-0.270938
-0.278915
-0.286716
-0.295479
-0.305383
-0.317647
-0.330366
-0.343242
-0.355342
-0.367453
-0.29976
-0.248599
0.0151579
-0.011618
-0.0539054
-0.0914348
-0.235198
-0.442051
-0.51784
-0.517869
-0.515002
-0.508531
-0.492463
-0.484479
-0.475902
0.203533
0.0507443
-0.367079
-0.404119
-0.00332693
-0.00395877
-0.00460235
-0.00525823
-0.00592699
-0.00660928
-0.00730578
-0.00801724
-0.00874449
-0.0094884
-0.01025
-0.0110303
-0.0118305
-0.0126519
-0.0134961
-0.0143647
-0.0152595
-0.0161826
-0.0171362
-0.0181232
-0.0191463
-0.0202091
-0.0213153
-0.0224694
-0.0236764
-0.024942
-0.026273
-0.0276771
-0.0291634
-0.0307423
-0.0324263
-0.0342298
-0.0361703
-0.0382682
-0.0405479
-0.043039
-0.0457768
-0.0488039
-0.0521724
-0.0559452
-0.0601994
-0.0650294
-0.0705517
-0.0769134
-0.0843002
-0.0929225
-0.102949
-0.114417
-0.127163
-0.141089
-0.155773
-0.169365
-0.177882
-0.175852
-0.13312
-0.127119
-0.140744
-0.169939
-0.194721
-0.207018
-0.206574
-0.177459
-0.188879
-0.207896
-0.22508
-0.239176
-0.249791
-0.257538
-0.26591
-0.353111
-0.392869
-0.389925
-0.386161
-0.381894
-0.377443
-0.37298
-0.370217
-0.367543
-0.365057
-0.362082
-0.358762
-0.355756
-0.352633
-0.331218
-0.263467
-0.180727
0.0614038
0.0614205
0.0708806
0.0700051
-0.150158
-0.276312
-0.259297
-0.241079
-0.222127
-0.203967
0.444444
0.906211
0.183679
-0.151225
-0.00303513
-0.00364029
-0.00425699
-0.00488575
-0.00552713
-0.00618172
-0.00685016
-0.00753317
-0.00823153
-0.0089461
-0.00967782
-0.0104278
-0.0111971
-0.011987
-0.0127992
-0.013635
-0.0144965
-0.0153856
-0.0163047
-0.0172564
-0.0182437
-0.01927
-0.0203392
-0.0214558
-0.0226248
-0.0238522
-0.0251447
-0.0265103
-0.0279582
-0.0294993
-0.0311463
-0.0329143
-0.0348211
-0.036888
-0.0391404
-0.0416091
-0.0443309
-0.0473509
-0.0507243
-0.0545194
-0.0588208
-0.0637368
-0.0694103
-0.0760384
-0.0838823
-0.0932122
-0.104127
-0.116427
-0.129864
-0.144322
-0.157852
-0.0927978
0.245176
1.31014
0.441818
-0.242442
-0.255775
-0.274311
-0.295079
-0.260803
-0.231724
-0.262267
-0.331918
-0.410866
-0.442521
-0.456592
-0.456632
-0.42454
-0.44263
-0.478204
-0.481165
-0.472194
-0.453898
-0.44242
-0.431179
-0.416612
-0.400787
-0.384916
-0.369321
-0.353853
-0.338255
-0.322475
-0.306626
-0.290913
-0.275266
-0.25964
-0.103087
0.172369
0.195159
0.21619
0.0941737
-0.129622
-0.115411
-0.0987301
-0.0821665
0.253154
0.977645
1.02764
0.428794
0.00269785
-0.00263084
-0.00320197
-0.00378417
-0.00437786
-0.00498351
-0.0056016
-0.00623267
-0.00687733
-0.00753625
-0.00821017
-0.00889988
-0.00960631
-0.0103304
-0.0110734
-0.0118365
-0.012621
-0.0134285
-0.0142609
-0.01512
-0.0160082
-0.0169279
-0.0178822
-0.0188741
-0.0199076
-0.020987
-0.0221172
-0.023304
-0.0245541
-0.0258755
-0.0272772
-0.0287701
-0.0303668
-0.0320824
-0.0339344
-0.0359436
-0.0381344
-0.0405352
-0.0431792
-0.0461043
-0.0493536
-0.0529746
-0.0570206
-0.061555
-0.066648
-0.072356
-0.0786069
-0.0849542
-0.0907954
-0.0954751
-0.0913168
0.527415
3.29623
3.39295
3.34561
0.750757
-0.274757
-0.289999
-0.310064
-0.324944
-0.237415
-0.208313
-0.411199
-0.439956
-0.450556
-0.465292
-0.492878
-0.500982
-0.493267
-0.466197
-0.499562
-0.50598
-0.489497
-0.461749
-0.445332
-0.43199
-0.419066
-0.399606
-0.377841
-0.356187
-0.334834
-0.313683
-0.291462
-0.27074
-0.252135
-0.233835
-0.216862
-0.161352
0.18788
0.0879558
-0.0270824
-0.0717832
-0.0654868
-0.0518383
-0.00687885
0.553063
1.00584
1.03384
1.00196
0.110774
0.0323704
-0.00213372
-0.00266587
-0.00320827
-0.00376125
-0.00432516
-0.00490038
-0.00548734
-0.00608648
-0.00669834
-0.00732346
-0.00796248
-0.00861608
-0.00928501
-0.0099701
-0.0106723
-0.0113926
-0.0121321
-0.0128922
-0.0136742
-0.0144797
-0.0153105
-0.0161685
-0.017056
-0.0179756
-0.0189301
-0.019923
-0.0209582
-0.0220403
-0.0231751
-0.0243691
-0.0256305
-0.0269693
-0.0283977
-0.0299312
-0.0315889
-0.0333953
-0.0353812
-0.0375867
-0.040063
-0.0428766
-0.0461147
-0.0498986
-0.0543971
-0.0598426
-0.0665522
-0.0744834
-0.0819897
-0.0873318
0.120918
2.84769
3.54585
3.53871
3.50326
3.43565
1.47723
-0.219972
-0.237426
-0.255806
0.031701
0.728567
-0.235984
-0.341596
-0.315493
-0.223084
-0.241404
-0.255172
-0.267063
-0.41523
-0.465537
-0.46196
-0.452366
-0.427056
-0.413686
-0.397637
-0.393229
-0.381841
-0.361782
-0.338814
-0.314703
-0.296099
-0.277968
-0.256157
-0.235654
-0.216409
-0.19703
-0.179194
-0.165398
-0.0615705
-0.0145741
0.050674
0.170355
0.382393
0.660667
1.00598
1.04731
1.06327
0.973451
0.299507
0.0286562
0.0293217
-0.00156952
-0.00205972
-0.00255917
-0.00306812
-0.00358682
-0.00411557
-0.00465467
-0.00520445
-0.0057653
-0.00633759
-0.00692179
-0.00751836
-0.00812784
-0.00875079
-0.00938783
-0.0100396
-0.0107068
-0.0113903
-0.0120907
-0.0128091
-0.0135462
-0.014303
-0.0150804
-0.0158796
-0.0167014
-0.0175469
-0.0184173
-0.0193135
-0.0202368
-0.0211883
-0.0221694
-0.0231814
-0.0242261
-0.0253056
-0.0264224
-0.0275801
-0.0287835
-0.0300398
-0.0313589
-0.0327558
-0.034254
-0.0358908
-0.0377232
-0.0398724
-0.0425216
-0.0456048
-0.0485343
-0.000923029
2.38719
3.64876
3.67836
3.67508
3.55912
0.817809
-0.133699
-0.154302
-0.172969
0.188933
1.12345
0.914806
-0.165168
-0.213962
-0.173052
-0.0843041
-0.0995249
-0.209334
-0.326353
-0.332243
-0.337478
-0.340286
-0.34052
-0.334196
-0.317501
-0.303829
-0.294053
-0.283112
-0.285085
-0.279581
-0.265483
-0.248961
-0.23099
-0.211869
-0.193713
-0.176323
-0.15805
-0.0653926
0.338366
0.69561
0.745897
0.776826
0.803883
0.832536
0.847065
0.80122
0.630631
0.408847
0.194605
0.0224558
0.0225444
0.0225323
-0.000965306
-0.00141221
-0.00186738
-0.00233099
-0.00280323
-0.00328431
-0.00377446
-0.00427393
-0.00478302
-0.00530204
-0.00583133
-0.00637126
-0.00692226
-0.00748478
-0.00805932
-0.00864641
-0.00924663
-0.0098606
-0.010489
-0.0111325
-0.0117918
-0.0124678
-0.0131611
-0.0138727
-0.0146032
-0.0153535
-0.0161244
-0.0169166
-0.0177307
-0.0185675
-0.0194274
-0.0203112
-0.0212195
-0.0221533
-0.0231144
-0.0241055
-0.0251319
-0.0262025
-0.0273325
-0.0285472
-0.0298866
-0.0314143
-0.0332256
-0.0354722
-0.0384019
-0.0422883
-0.0469701
-0.053703
-0.0647319
-0.0707868
-0.052612
0.707985
1.23361
-0.151977
-0.148344
-0.147704
0.0639709
1.07213
1.07303
1.06146
0.268809
-0.166179
-0.138548
-0.164973
-0.215034
-0.220493
-0.225834
-0.229972
-0.233381
-0.235656
-0.236873
-0.236979
-0.235787
-0.231534
-0.214088
-0.199671
-0.200111
-0.213123
-0.178276
-0.055885
-0.0704031
-0.151193
-0.141894
0.0215471
0.423395
0.616911
0.684195
0.712508
0.458664
0.631995
0.398936
0.295739
0.201282
0.0626633
0.0340851
0.016487
0.0171461
0.0168873
0.0159728
0.0147928
-0.000346358
-0.000749804
-0.00116057
-0.0015788
-0.00200464
-0.00243826
-0.00287986
-0.00332967
-0.00378792
-0.0042549
-0.00473091
-0.00521631
-0.0057115
-0.00621694
-0.00673314
-0.00726068
-0.00780023
-0.00835254
-0.00891845
-0.00949896
-0.0100952
-0.0107084
-0.0113402
-0.0119923
-0.0126667
-0.013366
-0.014093
-0.0148512
-0.015645
-0.0164795
-0.0173608
-0.0182965
-0.0192957
-0.0203691
-0.0215298
-0.022793
-0.024177
-0.025703
-0.0273958
-0.0292847
-0.0314043
-0.033796
-0.0365097
-0.0396089
-0.0431856
-0.0474086
-0.0525723
-0.0588586
-0.0656465
-0.0717229
-0.0755105
-0.0752404
-0.0717328
-0.0681945
-0.0672497
-0.0688627
-0.0716489
-0.0114533
0.967811
1.17849
1.16472
1.15062
1.12831
0.212987
-0.142705
-0.0917482
-0.101997
-0.147663
-0.148326
-0.149319
-0.150227
-0.150862
-0.151151
-0.151009
-0.150182
-0.148749
-0.111836
0.388056
0.594833
0.550643
-0.0304381
-0.0794343
-0.0668988
0.377939
0.591268
0.601324
0.0638213
0.0505222
0.0257879
0.0118503
-0.00940163
-0.0137272
-0.0136384
-0.0127253
-0.0133278
-0.0109447
-0.00838084
-0.00670349
-0.00620686
-0.0067196
0.000266736
-9.38787e-05
-0.000460952
-0.000834588
-0.00121491
-0.00160205
-0.0019962
-0.00239753
-0.00280628
-0.00322268
-0.00364702
-0.00407963
-0.00452087
-0.00497116
-0.00543099
-0.00590091
-0.00638154
-0.00687358
-0.00737782
-0.00789517
-0.00842662
-0.00897329
-0.00953647
-0.0101176
-0.0107182
-0.0113401
-0.0119854
-0.0126563
-0.0133553
-0.0140854
-0.0148499
-0.0156523
-0.0164969
-0.0173883
-0.0183319
-0.0193334
-0.0203996
-0.021538
-0.0227568
-0.0240651
-0.0254724
-0.0269884
-0.0286211
-0.0303763
-0.0322523
-0.0342346
-0.0362986
-0.0383862
-0.040333
-0.0419956
-0.0435533
-0.0448527
-0.0451344
-0.0450758
-0.0456986
-0.0470123
-0.0485116
-0.0493077
-0.0417541
-0.0261459
0.0271422
0.914736
1.22801
1.22485
1.22222
1.2215
0.245975
-0.0658254
-0.0653507
-0.0652802
-0.0654606
-0.0655715
-0.0653103
-0.064431
-0.0627693
-0.0560604
0.34279
0.660349
0.665591
0.66645
0.665683
0.223593
0.0292974
0.0852777
0.298818
0.30506
0.109841
0.129887
0.0339023
-0.0185532
-0.0249744
-0.028692
-0.0299121
-0.0253349
0.00930368
-0.0296449
-0.0328479
-0.0297387
-0.0275877
-0.026681
0.000857792
0.000538982
0.000214516
-0.000115688
-0.00045173
-0.00079373
-0.00114182
-0.00149617
-0.00185697
-0.00222441
-0.00259875
-0.00298027
-0.00336929
-0.00376619
-0.0041714
-0.00458544
-0.00500887
-0.00544234
-0.00588659
-0.00634243
-0.00681081
-0.00729276
-0.00778948
-0.0083023
-0.00883273
-0.00938245
-0.00995333
-0.0105475
-0.0111673
-0.0118154
-0.0124946
-0.0132083
-0.0139597
-0.0147528
-0.0155914
-0.0164795
-0.0174213
-0.0184205
-0.0194806
-0.0206041
-0.0217924
-0.023045
-0.0243585
-0.0257261
-0.0271359
-0.02857
-0.0300018
-0.0313891
-0.0326708
-0.0337893
-0.0347023
-0.0353532
-0.0358249
-0.0364428
-0.0373463
-0.0384929
-0.0399891
-0.0419958
-0.044394
-0.0473772
-0.0502952
-0.0275959
0.0290627
0.0402131
0.139432
0.628724
0.326617
-0.036586
-0.0341899
-0.030954
-0.0272772
-0.0231925
-0.018726
-0.013921
-0.00858132
-0.00253887
0.0260375
0.211648
0.600849
0.727293
0.726714
0.728642
0.726039
0.650199
0.318948
0.327883
0.529328
0.65811
0.615374
0.507055
0.468582
0.27969
0.0175713
0.0222812
0.0176832
-0.0189543
-0.0241247
-0.0216592
-0.0198712
-0.0187353
0.00141573
0.0011372
0.000853787
0.000565424
0.000272045
-2.64323e-05
-0.000330105
-0.000639094
-0.000953537
-0.0012736
-0.00159946
-0.00193135
-0.00226949
-0.0026142
-0.00296578
-0.00332463
-0.00369118
-0.00406589
-0.00444932
-0.00484204
-0.00524473
-0.0056581
-0.00608295
-0.00652015
-0.00697062
-0.00743538
-0.0079155
-0.00841213
-0.00892645
-0.00945973
-0.0100132
-0.0105883
-0.0111862
-0.0118082
-0.0124553
-0.0131286
-0.0138287
-0.014556
-0.0153105
-0.0160915
-0.0168976
-0.0177266
-0.0185748
-0.0194377
-0.0203087
-0.0211798
-0.0220418
-0.0228837
-0.023695
-0.0244695
-0.0252039
-0.0258941
-0.0265519
-0.0272258
-0.0279845
-0.0288858
-0.0298956
-0.0310801
-0.0324674
-0.0341783
-0.036259
-0.0383168
-0.0399571
-0.0406693
-0.0396272
-0.0333243
-0.0250212
-0.0175457
-0.0119027
-0.00765886
-0.004695
-0.00117796
0.00230212
0.00575269
0.00915722
0.0128779
0.0158004
0.0176397
0.046167
0.140634
0.244968
0.319715
0.316883
0.283121
0.278886
0.414302
0.674436
0.676104
0.675146
0.67374
0.667916
0.476928
0.0702721
0.0494239
0.022618
-0.00294048
-0.00349413
-0.00337755
-0.00316633
-0.00300076
0.00193292
0.00169291
0.00144873
0.00120035
0.000947742
0.000690871
0.000429676
0.000164093
-0.000105967
-0.000380607
-0.000659936
-0.000944089
-0.00123323
-0.00152753
-0.00182722
-0.00213254
-0.00244375
-0.00276117
-0.00308513
-0.003416
-0.00375417
-0.00410007
-0.00445418
-0.00481698
-0.005189
-0.00557076
-0.00596281
-0.0063657
-0.00677996
-0.00720607
-0.00764448
-0.00809559
-0.00855966
-0.00903685
-0.0095271
-0.0100302
-0.0105455
-0.0110721
-0.0116088
-0.0121537
-0.0127044
-0.0132582
-0.0138112
-0.0143592
-0.0148974
-0.01542
-0.0159213
-0.0163952
-0.0168362
-0.0172406
-0.0176069
-0.0179356
-0.0182306
-0.0184964
-0.0187332
-0.0189467
-0.0191959
-0.0194119
-0.0195637
-0.0196085
-0.0194956
-0.0191455
-0.0184191
-0.0172329
-0.0155511
-0.0131592
-0.0101165
-0.00684596
-0.00350427
-0.000246465
0.00234647
0.00474831
0.00706148
0.00911782
0.0109279
0.0124366
0.0133961
0.0139785
0.0139871
0.0131708
0.0116304
0.0101041
0.00938662
0.00933506
0.0219508
0.0892612
0.153511
0.289299
0.3825
0.40876
0.284332
0.146746
0.0453753
0.0240382
0.00908392
0.00611541
0.00565575
0.00523832
0.00493417
0.00479283
0.0024047
0.00220098
0.00199379
0.00178313
0.00156902
0.00135144
0.00113039
0.000905858
0.000677803
0.00044619
0.000210968
-2.79217e-05
-0.000270549
-0.000516997
-0.000767359
-0.00102175
-0.00128029
-0.00154311
-0.00181038
-0.00208226
-0.0023589
-0.0026405
-0.00292722
-0.00321925
-0.00351676
-0.0038199
-0.00412882
-0.0044436
-0.00476431
-0.00509095
-0.00542344
-0.00576162
-0.00610521
-0.00645382
-0.0068069
-0.00716374
-0.0075234
-0.00788476
-0.00824645
-0.00860684
-0.008964
-0.00931576
-0.00965962
-0.0099928
-0.0103123
-0.0106146
-0.0108965
-0.0111543
-0.0113845
-0.0115833
-0.0117474
-0.0118762
-0.0119705
-0.0120294
-0.0120474
-0.0120118
-0.0119213
-0.0117656
-0.0115307
-0.011197
-0.0107369
-0.0101171
-0.00930382
-0.00826865
-0.00699228
-0.00546087
-0.00369112
-0.00177687
0.000181976
0.00211385
0.00397589
0.00569648
0.00724925
0.00861039
0.009743
0.0106139
0.0112021
0.0114844
0.0114547
0.0111324
0.0105737
0.0099247
0.00934666
0.00873233
0.00780226
0.00657588
0.00545309
0.00513577
0.00583545
0.00710352
0.00692855
0.00727851
0.0106089
0.00799162
0.00800131
0.00795039
0.00782713
0.00768078
0.00755273
0.00747169
0.00282875
0.00265885
0.00248613
0.00231063
0.00213238
0.00195141
0.00176774
0.00158141
0.00139243
0.00120082
0.0010066
0.000809768
0.000610345
0.00040833
0.000203724
-3.47587e-06
-0.000213269
-0.000425663
-0.000640664
-0.000858277
-0.0010785
-0.00130131
-0.00152669
-0.0017546
-0.00198499
-0.00221776
-0.0024528
-0.00268994
-0.00292896
-0.0031696
-0.00341148
-0.00365417
-0.00389712
-0.00413967
-0.00438103
-0.00462031
-0.00485642
-0.00508815
-0.00531412
-0.00553276
-0.00574235
-0.00594099
-0.00612662
-0.00629705
-0.00644992
-0.00658279
-0.00669316
-0.00677847
-0.0068362
-0.00686375
-0.00685816
-0.00681627
-0.00674052
-0.00662534
-0.00646897
-0.00626688
-0.00601357
-0.00570232
-0.00532519
-0.00487332
-0.00433711
-0.00370655
-0.00297262
-0.00212909
-0.00117359
-0.000112598
0.00103134
0.00222681
0.00344133
0.00464299
0.00580258
0.00689368
0.00789095
0.00877379
0.00952447
0.0101287
0.0105774
0.0108668
0.011001
0.0109951
0.0108818
0.0107071
0.0105171
0.0103115
0.0100371
0.00972434
0.00944255
0.00921297
0.00910819
0.00917436
0.00939527
0.00953342
0.00958929
0.00955305
0.0094626
0.00935214
0.00923954
0.00913852
0.00906046
0.00900488
0.00320325
0.00306447
0.00292345
0.00278027
0.00263496
0.0024876
0.00233825
0.00218696
0.00203378
0.00187879
0.00172204
0.00156359
0.00140351
0.00124188
0.00107876
0.000914229
0.000748376
0.00058129
0.000413074
0.000243835
7.36984e-05
-9.72008e-05
-0.00026871
-0.000440656
-0.000612843
-0.000785047
-0.000957009
-0.00112843
-0.00129898
-0.00146825
-0.00163579
-0.00180108
-0.0019635
-0.00212238
-0.00227695
-0.00242635
-0.00256962
-0.00270571
-0.00283348
-0.00295164
-0.00305885
-0.00315365
-0.0032345
-0.00329976
-0.00334776
-0.00337672
-0.00338481
-0.00337011
-0.00333064
-0.00326453
-0.00317037
-0.00304668
-0.00288603
-0.00268996
-0.0024565
-0.00218339
-0.00186813
-0.00150807
-0.00110044
-0.000642498
-0.000131817
0.000433339
0.0010535
0.0017274
0.00245135
0.00321861
0.00401846
0.00483687
0.0056584
0.00646713
0.00724772
0.00798582
0.00866844
0.0092844
0.00982502
0.0102842
0.0106587
0.0109482
0.0111563
0.0112895
0.0113574
0.0113717
0.0113421
0.0112778
0.0111928
0.0111002
0.0110092
0.0109164
0.0108314
0.0107864
0.010767
0.0107317
0.0106743
0.0105938
0.0104954
0.0103884
0.0102832
0.0101899
0.0101165
0.010062
0.00352882
0.00341823
0.00330589
0.00319191
0.00307635
0.0029593
0.00284084
0.00272106
0.00260003
0.00247786
0.00235464
0.00223047
0.00210546
0.00197973
0.00185338
0.00172657
0.00159943
0.0014721
0.00134476
0.00121758
0.00109075
0.000964464
0.000838948
0.000714443
0.000591217
0.000469562
0.000349794
0.000232261
0.000117346
5.47635e-06
-0.000102875
-0.000207183
-0.000306872
-0.000401315
-0.000489823
-0.000571648
-0.000645978
-0.000711938
-0.000768591
-0.000814934
-0.000849912
-0.000872415
-0.000881284
-0.000875327
-0.00085332
-0.000814017
-0.00075613
-0.000678315
-0.000579194
-0.000457637
-0.000313339
-0.000143895
5.17129e-05
0.000274621
0.000525957
0.000806792
0.00111811
0.00146075
0.00183534
0.00224219
0.00268116
0.00315152
0.00365178
0.00417949
0.00473109
0.00530176
0.00588544
0.00647498
0.00706244
0.00763947
0.00819775
0.00872935
0.00922709
0.00968477
0.0100975
0.0104616
0.0107753
0.0110381
0.0112508
0.0114158
0.0115368
0.0116184
0.0116651
0.0116824
0.0116766
0.0116539
0.0116189
0.011577
0.0115313
0.0114806
0.0114204
0.0113526
0.0112757
0.0111904
0.0110992
0.011006
0.0109168
0.0108377
0.0107738
0.0107242
0.00380505
0.00371972
0.00363307
0.0035452
0.0034562
0.00336615
0.00327516
0.00318332
0.00309075
0.00299754
0.00290383
0.00280974
0.00271541
0.00262097
0.00252658
0.00243242
0.00233864
0.00224543
0.00215298
0.0020615
0.0019712
0.00188232
0.0017951
0.0017098
0.00162672
0.00154614
0.0014684
0.00139385
0.00132286
0.00125584
0.00119322
0.00113547
0.0010831
0.00103664
0.000996667
0.000963787
0.000938642
0.000921915
0.000914321
0.000916612
0.000929568
0.000953993
0.000990706
0.00104054
0.00110431
0.00118283
0.00127693
0.0013876
0.00151569
0.00166107
0.00182571
0.00200969
0.00221355
0.00243777
0.00268274
0.0029487
0.00323577
0.00354386
0.00387268
0.00422168
0.00458994
0.00497622
0.00537881
0.00579551
0.00622362
0.00665988
0.00710053
0.00754141
0.00797806
0.00840586
0.00882021
0.00921669
0.00959122
0.00994024
0.0102608
0.0105506
0.0108083
0.0110332
0.0112254
0.0113859
0.011516
0.0116178
0.0116936
0.0117459
0.0117772
0.0117904
0.0117879
0.0117728
0.0117471
0.0117117
0.0116664
0.0116119
0.0115484
0.0114772
0.0114009
0.0113231
0.0112483
0.0111813
0.0111257
0.0110808
0.00403398
0.00397088
0.00390679
0.0038418
0.00377603
0.00370956
0.00364252
0.003575
0.00350714
0.00343907
0.0033709
0.00330277
0.00323485
0.00316727
0.0031002
0.00303382
0.0029683
0.00290383
0.00284062
0.00277886
0.00271878
0.0026606
0.00260457
0.00255095
0.00250002
0.00245205
0.00240738
0.0023663
0.00232918
0.00229636
0.00226822
0.00224517
0.0022276
0.00221596
0.00221069
0.00221229
0.00222122
0.00223801
0.00226318
0.00229727
0.00234084
0.00239444
0.00245864
0.00253397
0.002621
0.00272026
0.00283234
0.00295751
0.00309581
0.0032484
0.00341531
0.00359677
0.00379295
0.00400393
0.00422969
0.0044701
0.0047249
0.00499369
0.00527587
0.00557068
0.00587712
0.00619397
0.00651978
0.00685281
0.00719109
0.00753242
0.00787436
0.0082143
0.00854952
0.00887726
0.00919479
0.0094995
0.00978895
0.010061
0.0103137
0.0105458
0.010756
0.0109438
0.011109
0.0112519
0.011373
0.0114734
0.0115541
0.0116166
0.0116623
0.0116927
0.0117092
0.0117131
0.0117053
0.0116867
0.011658
0.0116197
0.0115729
0.0115191
0.0114603
0.0113993
0.0113396
0.0112849
0.0112378
0.011198
0.00421649
0.00417284
0.00412842
0.00408334
0.00403771
0.00399164
0.00394524
0.00389863
0.00385194
0.00380531
0.00375887
0.00371277
0.00366717
0.00362222
0.00357808
0.00353491
0.00349289
0.00345221
0.00341304
0.00337559
0.00334005
0.00330663
0.00327558
0.00324711
0.00322149
0.00319896
0.0031798
0.0031643
0.00315274
0.00314543
0.00314268
0.00314481
0.00315215
0.00316504
0.00318383
0.00320888
0.00324055
0.00327921
0.00332524
0.003379
0.00344087
0.00351123
0.00359043
0.00367882
0.00377672
0.00388446
0.00400228
0.00413034
0.00426878
0.00441789
0.00457775
0.00474836
0.00492969
0.00512161
0.00532393
0.00553634
0.00575846
0.00598979
0.00622971
0.00647749
0.00673225
0.00699299
0.00725855
0.00752765
0.00779889
0.00807072
0.00834153
0.0086096
0.00887319
0.00913056
0.00937997
0.0096198
0.00984849
0.0100646
0.0102671
0.0104547
0.0106269
0.0107831
0.0109229
0.0110464
0.0111539
0.0112457
0.0113225
0.011385
0.0114341
0.0114705
0.0114952
0.0115088
0.011512
0.0115054
0.0114896
0.0114653
0.0114332
0.0113945
0.011351
0.0113046
0.011258
0.011214
0.0111747
0.0111398
0.00435537
0.00432833
0.0043007
0.00427258
0.00424409
0.00421535
0.00418647
0.00415757
0.00412879
0.00410025
0.0040721
0.00404446
0.00401749
0.00399133
0.00396613
0.00394205
0.00391925
0.00389788
0.00387813
0.00386017
0.00384418
0.00383035
0.0038189
0.00381002
0.00380393
0.00380085
0.00380101
0.00380464
0.00381199
0.0038233
0.00383881
0.00385878
0.00388347
0.00391314
0.00394803
0.00398842
0.00403456
0.00408671
0.00414513
0.00421007
0.00428177
0.00436045
0.00444634
0.00453962
0.00464048
0.00474909
0.00486553
0.00498976
0.00512212
0.00526246
0.00541075
0.0055669
0.00573078
0.00590216
0.0060808
0.00626635
0.00645843
0.00665653
0.00686012
0.00706855
0.0072811
0.00749698
0.00771531
0.00793515
0.00815547
0.00837519
0.0085932
0.00880834
0.00901945
0.00922537
0.00942495
0.00961711
0.00980083
0.00997516
0.0101393
0.0102925
0.0104342
0.010564
0.0106817
0.0107871
0.0108803
0.0109615
0.0110309
0.0110892
0.0111366
0.0111738
0.0112012
0.0112194
0.0112289
0.0112301
0.0112234
0.0112093
0.0111884
0.0111615
0.0111297
0.0110947
0.0110585
0.0110231
0.0109903
0.0109598
0.00445244
0.00443954
0.00442615
0.00441239
0.00439837
0.0043842
0.00437001
0.00435592
0.00434206
0.00432854
0.00431551
0.00430309
0.00429141
0.0042806
0.00427081
0.00426217
0.00425483
0.00424893
0.00424463
0.00424208
0.00424145
0.0042429
0.0042466
0.00425273
0.00426147
0.00427301
0.00428752
0.0043052
0.00432624
0.00435082
0.00437914
0.0044114
0.00444779
0.00448849
0.00453369
0.00458357
0.00463833
0.00469812
0.00476312
0.00483349
0.00490938
0.00499092
0.00507822
0.00517137
0.00527045
0.00537555
0.00548671
0.00560388
0.00572707
0.0058562
0.00599116
0.00613183
0.00627801
0.00642951
0.00658603
0.00674728
0.00691287
0.00708238
0.00725536
0.00743126
0.00760952
0.00778952
0.00797058
0.00815199
0.00833302
0.00851289
0.00869081
0.00886597
0.00903757
0.0092048
0.00936688
0.00952306
0.00967262
0.00981493
0.00994939
0.0100755
0.0101928
0.010301
0.0103999
0.0104894
0.0105693
0.0106399
0.0107013
0.0107537
0.0107974
0.0108329
0.0108605
0.0108805
0.0108932
0.010899
0.0108981
0.0108909
0.0108778
0.0108592
0.0108362
0.0108097
0.0107814
0.0107528
0.0107252
0.0106984
0.00451019
0.0045091
0.00450763
0.00450587
0.00450394
0.00450194
0.00449998
0.00449818
0.00449666
0.00449554
0.00449491
0.0044949
0.00449564
0.00449724
0.00449982
0.00450351
0.00450845
0.00451476
0.00452258
0.00453203
0.00454326
0.00455641
0.00457163
0.00458906
0.00460885
0.00463114
0.00465608
0.00468381
0.0047145
0.00474827
0.00478529
0.00482568
0.00486959
0.00491715
0.00496851
0.00502378
0.00508308
0.00514652
0.00521422
0.00528626
0.00536272
0.00544369
0.00552921
0.00561932
0.00571406
0.00581338
0.00591721
0.00602565
0.00613856
0.00625585
0.0063774
0.00650305
0.00663263
0.00676591
0.00690266
0.00704258
0.00718537
0.00733065
0.00747806
0.00762716
0.00777751
0.00792863
0.00807999
0.00823108
0.00838134
0.0085302
0.0086771
0.00882145
0.00896267
0.0091002
0.00923346
0.00936194
0.00948512
0.00960253
0.00971374
0.00981839
0.00991614
0.0100068
0.01009
0.0101659
0.0102342
0.0102951
0.0103487
0.0103951
0.0104345
0.0104671
0.0104934
0.0105134
0.0105274
0.0105356
0.0105382
0.0105354
0.0105275
0.0105148
0.0104979
0.0104777
0.0104553
0.0104319
0.0104086
0.010385
0.00453106
0.00453982
0.00454825
0.00455643
0.00456448
0.00457249
0.00458058
0.00458885
0.0045974
0.00460634
0.00461577
0.00462579
0.00463652
0.00464805
0.0046605
0.00467397
0.00468858
0.00470444
0.00472167
0.00474037
0.00476067
0.00478268
0.00480653
0.00483233
0.00486021
0.00489027
0.00492262
0.00495738
0.00499467
0.00503459
0.00507724
0.00512273
0.00517116
0.00522263
0.00527722
0.00533502
0.0053961
0.00546055
0.00552841
0.00559973
0.00567456
0.00575292
0.00583483
0.0059203
0.0060093
0.00610179
0.0061977
0.00629702
0.00639963
0.00650543
0.0066143
0.0067261
0.00684065
0.00695776
0.00707722
0.00719878
0.00732217
0.0074471
0.00757326
0.00770031
0.0078279
0.00795565
0.00808318
0.00821007
0.00833592
0.00846031
0.00858281
0.00870299
0.00882042
0.0089347
0.00904542
0.00915219
0.00925463
0.00935241
0.0094452
0.00953272
0.00961472
0.00969101
0.00976144
0.0098259
0.00988435
0.00993681
0.00998333
0.010024
0.0100591
0.0100886
0.0101128
0.0101318
0.0101459
0.0101551
0.0101596
0.0101595
0.010155
0.0101463
0.0101338
0.0101181
0.0101002
0.0100809
0.0100609
0.0100401
0.00451744
0.00453437
0.00455101
0.00456744
0.00458375
0.00460003
0.0046164
0.00463293
0.0046497
0.00466683
0.0046844
0.0047025
0.00472123
0.00474067
0.00476092
0.00478208
0.00480424
0.00482749
0.00485194
0.00487768
0.00490482
0.00493344
0.00496365
0.00499554
0.00502919
0.00506471
0.00510217
0.00514167
0.00518328
0.00522707
0.00527314
0.00532155
0.00537237
0.00542567
0.0054815
0.00553992
0.00560098
0.00566471
0.00573115
0.00580033
0.00587224
0.00594689
0.00602428
0.00610439
0.00618717
0.00627258
0.00636055
0.00645102
0.0065439
0.00663908
0.00673644
0.00683585
0.00693714
0.00704016
0.00714471
0.0072506
0.0073576
0.00746548
0.00757399
0.00768286
0.00779181
0.00790056
0.0080088
0.00811622
0.00822251
0.00832736
0.00843043
0.00853142
0.00863
0.00872586
0.00881871
0.00890824
0.00899418
0.00907628
0.00915429
0.00922799
0.00929721
0.00936178
0.00942159
0.00947655
0.00952663
0.00957182
0.00961216
0.00964774
0.00967864
0.00970501
0.00972696
0.00974463
0.00975812
0.00976753
0.00977294
0.00977442
0.00977208
0.00976608
0.00975669
0.00974438
0.0097298
0.00971366
0.00969645
0.00967803
0.00447244
0.0044961
0.00451949
0.0045427
0.00456579
0.00458885
0.00461196
0.0046352
0.00465866
0.00468242
0.00470656
0.00473115
0.00475627
0.00478201
0.00480844
0.00483565
0.00486371
0.00489269
0.00492269
0.00495378
0.00498603
0.00501954
0.00505436
0.00509058
0.00512827
0.0051675
0.00520834
0.00525085
0.0052951
0.00534113
0.00538901
0.00543879
0.00549051
0.00554423
0.00559998
0.00565779
0.00571769
0.0057797
0.00584383
0.00591008
0.00597844
0.0060489
0.00612143
0.006196
0.00627257
0.00635108
0.00643146
0.00651366
0.00659758
0.00668313
0.0067702
0.00685866
0.0069484
0.00703925
0.00713106
0.00722367
0.00731688
0.00741051
0.00750436
0.00759822
0.00769186
0.00778507
0.00787761
0.00796924
0.00805972
0.00814882
0.00823628
0.00832187
0.00840534
0.00848647
0.00856501
0.00864074
0.00871345
0.00878295
0.00884904
0.00891156
0.00897036
0.00902534
0.00907638
0.00912343
0.00916645
0.00920544
0.00924042
0.00927144
0.00929858
0.00932193
0.0093416
0.00935768
0.00937025
0.00937939
0.00938513
0.00938752
0.00938659
0.00938245
0.0093753
0.00936546
0.00935345
0.00933982
0.0093249
0.00930857
0.00439893
0.00442822
0.00445725
0.0044861
0.00451482
0.00454349
0.00457217
0.00460093
0.00462985
0.00465899
0.00468842
0.00471821
0.00474843
0.00477913
0.0048104
0.00484229
0.00487487
0.00490822
0.0049424
0.00497746
0.00501348
0.00505052
0.00508863
0.00512787
0.00516831
0.00520998
0.00525294
0.00529724
0.00534293
0.00539005
0.00543864
0.00548874
0.00554039
0.00559361
0.00564843
0.00570486
0.00576293
0.00582263
0.00588395
0.0059469
0.00601145
0.00607757
0.00614524
0.00621441
0.00628505
0.00635709
0.0064305
0.00650517
0.00658105
0.00665804
0.00673605
0.00681498
0.00689471
0.00697512
0.00705608
0.00713744
0.00721906
0.00730078
0.00738245
0.00746389
0.00754493
0.0076254
0.0077051
0.00778386
0.00786149
0.00793781
0.00801262
0.00808574
0.00815698
0.00822617
0.00829312
0.00835767
0.00841965
0.00847891
0.0085353
0.00858871
0.00863902
0.00868613
0.00872996
0.00877046
0.00880759
0.00884136
0.00887176
0.00889886
0.00892269
0.00894333
0.00896086
0.00897535
0.00898686
0.00899545
0.00900114
0.00900394
0.00900388
0.00900101
0.00899546
0.0089875
0.0089775
0.00896588
0.00895287
0.00893836
0.00430094
0.00433488
0.00436858
0.00440208
0.00443545
0.00446873
0.00450199
0.00453527
0.00456864
0.00460215
0.00463585
0.0046698
0.00470407
0.0047387
0.00477375
0.00480928
0.00484535
0.00488201
0.00491931
0.00495731
0.00499605
0.00503557
0.00507593
0.00511719
0.00515937
0.00520252
0.00524668
0.0052919
0.0053382
0.00538562
0.00543419
0.00548393
0.00553488
0.00558704
0.00564042
0.00569504
0.00575089
0.00580797
0.00586627
0.00592577
0.00598645
0.00604829
0.00611125
0.00617529
0.00624038
0.00630647
0.00637351
0.00644143
0.00651015
0.00657961
0.00664971
0.00672037
0.00679149
0.00686296
0.00693469
0.00700655
0.00707842
0.00715018
0.00722169
0.00729283
0.00736345
0.00743341
0.00750258
0.00757081
0.00763795
0.00770385
0.00776837
0.00783135
0.00789266
0.00795215
0.00800969
0.00806515
0.00811839
0.0081693
0.00821777
0.0082637
0.008307
0.0083476
0.00838543
0.00842045
0.00845263
0.00848197
0.00850847
0.00853216
0.0085531
0.00857134
0.00858694
0.00859996
0.00861043
0.00861839
0.00862385
0.0086268
0.00862727
0.00862527
0.00862092
0.00861439
0.00860599
0.00859602
0.00858464
0.00857172
0.00418231
0.00422019
0.00425782
0.00429522
0.00433243
0.0043695
0.00440648
0.00444342
0.00448035
0.00451733
0.0045544
0.00459162
0.00462903
0.00466669
0.00470464
0.00474294
0.00478162
0.00482072
0.00486031
0.0049004
0.00494106
0.0049823
0.00502417
0.0050667
0.00510993
0.00515389
0.00519861
0.00524413
0.00529047
0.00533765
0.0053857
0.00543463
0.00548446
0.0055352
0.00558686
0.00563943
0.00569291
0.00574729
0.00580255
0.00585867
0.00591564
0.00597342
0.00603199
0.00609131
0.00615134
0.00621204
0.00627338
0.00633528
0.00639768
0.00646053
0.00652374
0.00658725
0.00665098
0.00671482
0.00677871
0.00684254
0.0069062
0.0069696
0.00703263
0.00709518
0.00715715
0.00721842
0.00727888
0.00733841
0.0073969
0.00745423
0.00751029
0.00756497
0.00761814
0.00766971
0.00771956
0.0077676
0.00781372
0.00785782
0.00789981
0.00793963
0.00797719
0.00801243
0.0080453
0.00807578
0.00810384
0.00812947
0.00815268
0.00817349
0.00819194
0.00820807
0.00822194
0.00823358
0.00824304
0.00825032
0.00825545
0.00825841
0.0082592
0.00825783
0.00825437
0.00824896
0.00824182
0.0082332
0.00822318
0.00821167
0.00404718
0.00408831
0.00412915
0.00416973
0.00421008
0.00425024
0.00429024
0.00433012
0.00436991
0.00440966
0.00444941
0.0044892
0.00452906
0.00456904
0.00460918
0.00464952
0.00469011
0.00473096
0.00477213
0.00481365
0.00485555
0.00489787
0.00494064
0.00498387
0.00502761
0.00507187
0.0051167
0.0051621
0.00520809
0.00525469
0.0053019
0.00534975
0.00539824
0.00544738
0.00549716
0.00554758
0.00559864
0.00565032
0.00570261
0.00575549
0.00580895
0.00586296
0.00591749
0.00597251
0.00602799
0.00608389
0.00614017
0.00619678
0.00625366
0.00631076
0.00636801
0.00642535
0.00648272
0.00654005
0.00659724
0.00665424
0.00671096
0.00676732
0.00682323
0.0068786
0.00693335
0.00698738
0.00704061
0.00709294
0.00714429
0.00719456
0.00724365
0.00729148
0.00733796
0.007383
0.00742651
0.00746841
0.00750863
0.00754709
0.00758372
0.00761847
0.00765127
0.00768208
0.00771086
0.00773757
0.0077622
0.00778475
0.00780521
0.0078236
0.00783995
0.0078543
0.00786668
0.00787713
0.00788566
0.00789231
0.00789708
0.00789996
0.00790094
0.00790003
0.00789728
0.00789278
0.0078867
0.00787922
0.00787041
0.00786016
0.00389971
0.00394349
0.00398693
0.00403005
0.00407289
0.00411548
0.00415783
0.00419999
0.004242
0.00428387
0.00432565
0.00436738
0.00440909
0.00445081
0.00449256
0.00453438
0.00457631
0.00461838
0.00466062
0.00470305
0.0047457
0.00478861
0.00483179
0.00487529
0.00491911
0.00496328
0.00500781
0.00505274
0.00509807
0.00514381
0.00518997
0.00523656
0.00528358
0.00533102
0.00537888
0.00542717
0.00547586
0.00552496
0.00557444
0.0056243
0.00567452
0.00572507
0.00577594
0.0058271
0.00587853
0.00593019
0.00598205
0.00603395
0.00608596
0.00613803
0.00619011
0.00624214
0.00629406
0.0063458
0.00639731
0.00644852
0.00649936
0.00654978
0.00659969
0.00664904
0.00669775
0.00674574
0.00679295
0.0068393
0.00688471
0.00692912
0.00697245
0.00701463
0.00705558
0.00709524
0.00713353
0.00717038
0.00720575
0.00723955
0.00727176
0.00730231
0.00733116
0.00735828
0.00738363
0.00740718
0.00742892
0.00744884
0.00746695
0.00748327
0.00749782
0.00751062
0.00752171
0.00753112
0.00753888
0.00754498
0.00754944
0.00755224
0.00755336
0.00755281
0.00755061
0.00754684
0.00754165
0.00753516
0.00752741
0.00751829
0.00374362
0.00378948
0.00383495
0.00388005
0.00392481
0.00396925
0.00401339
0.00405727
0.0041009
0.00414432
0.00418756
0.00423064
0.00427361
0.00431648
0.00435928
0.00440204
0.0044448
0.00448758
0.00453042
0.00457333
0.00461633
0.00465945
0.00470272
0.00474615
0.00478977
0.00483358
0.00487761
0.00492185
0.00496633
0.00501106
0.00505603
0.00510125
0.00514671
0.00519242
0.00523838
0.00528456
0.00533099
0.00537764
0.00542451
0.00547158
0.00551884
0.00556626
0.00561384
0.00566153
0.00570931
0.00575714
0.00580498
0.00585292
0.00590079
0.00594856
0.00599621
0.00604367
0.00609091
0.00613788
0.00618453
0.00623081
0.00627668
0.00632206
0.00636692
0.0064112
0.00645482
0.00649775
0.00653991
0.00658125
0.00662171
0.00666122
0.00669971
0.00673715
0.00677347
0.00680861
0.00684253
0.00687518
0.00690651
0.00693646
0.006965
0.00699208
0.00701766
0.00704172
0.00706422
0.00708515
0.00710449
0.00712225
0.00713842
0.00715301
0.00716605
0.00717755
0.00718755
0.00719607
0.00720314
0.00720876
0.00721293
0.00721565
0.00721689
0.00721664
0.00721493
0.0072118
0.00720738
0.00720175
0.00719491
0.00718679
0.00358245
0.0036298
0.00367672
0.00372323
0.00376934
0.00381508
0.00386047
0.00390553
0.00395028
0.00399476
0.00403897
0.00408295
0.00412671
0.0041703
0.00421373
0.00425703
0.00430022
0.00434332
0.00438636
0.00442938
0.00447237
0.00451538
0.0045584
0.00460148
0.00464461
0.00468782
0.00473111
0.00477449
0.00481796
0.00486155
0.00490523
0.00494903
0.00499293
0.00503693
0.00508103
0.00512522
0.0051695
0.00521387
0.00525831
0.00530282
0.00534738
0.00539199
0.0054366
0.00548122
0.00552581
0.00557034
0.00561479
0.00565912
0.00570329
0.00574727
0.00579103
0.00583453
0.00587773
0.0059206
0.0059631
0.00600518
0.00604681
0.00608793
0.00612851
0.0061685
0.00620785
0.00624652
0.00628445
0.00632159
0.00635789
0.0063933
0.00642778
0.00646127
0.00649373
0.00652512
0.0065554
0.00658452
0.00661245
0.00663916
0.00666461
0.00668875
0.00671158
0.00673305
0.00675315
0.00677187
0.00678919
0.00680511
0.00681963
0.00683277
0.00684453
0.00685494
0.00686403
0.00687181
0.0068783
0.00688351
0.00688743
0.00689006
0.00689137
0.00689137
0.00689007
0.0068875
0.00688374
0.00687886
0.00687285
0.0068656
0.0034188
0.0034671
0.00351493
0.00356231
0.00360926
0.00365579
0.00370191
0.00374765
0.00379302
0.00383805
0.00388276
0.00392717
0.00397131
0.0040152
0.00405888
0.00410236
0.00414565
0.00418877
0.00423176
0.00427462
0.00431738
0.00436006
0.00440266
0.0044452
0.00448769
0.00453013
0.00457256
0.00461496
0.00465734
0.00469971
0.00474206
0.0047844
0.00482674
0.00486907
0.00491138
0.00495369
0.00499597
0.00503823
0.00508046
0.00512264
0.00516475
0.0052068
0.00524875
0.0052906
0.00533233
0.00537392
0.00541535
0.00545662
0.00549744
0.00553805
0.00557838
0.00561842
0.00565813
0.00569746
0.00573639
0.00577488
0.00581289
0.00585038
0.00588732
0.00592367
0.00595938
0.00599442
0.00602874
0.0060623
0.00609507
0.00612701
0.00615809
0.00618826
0.00621749
0.00624575
0.00627299
0.0062992
0.00632432
0.00634834
0.00637123
0.00639294
0.00641348
0.0064328
0.0064509
0.00646775
0.00648337
0.00649773
0.00651085
0.00652273
0.0065334
0.00654288
0.00655118
0.00655834
0.00656436
0.00656924
0.00657298
0.00657557
0.00657698
0.00657721
0.00657625
0.00657415
0.00657095
0.0065667
0.00656138
0.00655491
0.00325508
0.00330377
0.00335198
0.00339973
0.00344701
0.00349385
0.00354024
0.00358622
0.0036318
0.00367698
0.00372181
0.00376628
0.00381044
0.00385429
0.00389785
0.00394116
0.00398422
0.00402707
0.0040697
0.00411214
0.00415441
0.00419652
0.00423848
0.0042803
0.004322
0.00436357
0.00440503
0.00444637
0.0044876
0.00452873
0.00456975
0.00461067
0.00465148
0.00469219
0.0047328
0.00477331
0.0048137
0.00485398
0.00489414
0.00493416
0.00497402
0.00501373
0.00505325
0.00509257
0.00513166
0.00517052
0.0052091
0.00524738
0.00528556
0.0053234
0.00536089
0.005398
0.00543472
0.00547103
0.00550691
0.00554232
0.00557724
0.00561163
0.00564546
0.00567871
0.00571133
0.00574329
0.00577456
0.00580511
0.00583491
0.00586392
0.00589212
0.00591948
0.00594596
0.00597155
0.00599622
0.00601993
0.00604267
0.00606441
0.00608513
0.0061048
0.00612342
0.00614094
0.00615737
0.00617268
0.00618687
0.00619994
0.00621189
0.00622275
0.00623251
0.0062412
0.00624884
0.00625544
0.00626102
0.00626558
0.00626911
0.00627162
0.00627308
0.00627348
0.00627281
0.00627109
0.00626837
0.00626467
0.00625998
0.00625423
0.00309282
0.00314147
0.00318963
0.00323731
0.0032845
0.00333122
0.00337749
0.00342333
0.00346874
0.00351375
0.00355835
0.00360259
0.00364648
0.00369002
0.00373324
0.00377614
0.00381876
0.00386111
0.0039032
0.00394504
0.00398665
0.00402802
0.00406919
0.00411014
0.0041509
0.00419147
0.00423184
0.00427203
0.00431204
0.00435188
0.00439154
0.00443103
0.00447035
0.00450949
0.00454846
0.00458724
0.00462585
0.00466426
0.00470247
0.00474048
0.00477827
0.00481583
0.00485314
0.00489019
0.00492698
0.00496348
0.00499969
0.00503558
0.00507117
0.00510641
0.00514129
0.00517578
0.00520987
0.00524353
0.00527674
0.00530947
0.0053417
0.0053734
0.00540454
0.0054351
0.00546504
0.00549435
0.005523
0.00555097
0.00557823
0.00560475
0.00563052
0.0056555
0.00567969
0.00570305
0.00572557
0.00574721
0.00576796
0.0057878
0.0058067
0.00582465
0.00584162
0.00585761
0.0058726
0.00588657
0.00589954
0.00591149
0.00592245
0.00593243
0.00594143
0.00594947
0.00595657
0.00596274
0.00596798
0.0059723
0.0059757
0.00597815
0.00597965
0.00598019
0.00597974
0.00597834
0.00597601
0.00597279
0.00596865
0.00596352
0.00293351
0.00298166
0.00302933
0.00307651
0.00312321
0.00316946
0.00321525
0.0032606
0.00330551
0.00335
0.00339409
0.00343778
0.00348109
0.00352405
0.00356666
0.00360893
0.00365089
0.00369254
0.0037339
0.00377497
0.00381577
0.00385629
0.00389654
0.00393653
0.00397627
0.00401576
0.004055
0.004094
0.00413276
0.00417128
0.00420957
0.00424764
0.00428548
0.00432309
0.00436047
0.00439762
0.00443452
0.00447118
0.00450759
0.00454373
0.00457961
0.0046152
0.00465051
0.00468552
0.00472021
0.00475459
0.00478864
0.00482234
0.00485569
0.00488868
0.00492128
0.00495348
0.00498526
0.00501659
0.00504747
0.00507786
0.00510774
0.00513709
0.0051659
0.00519413
0.00522177
0.00524879
0.00527519
0.00530093
0.005326
0.00535038
0.00537406
0.00539702
0.00541923
0.00544069
0.00546137
0.00548125
0.0055003
0.00551852
0.00553588
0.00555236
0.00556794
0.00558263
0.00559641
0.00560927
0.00562122
0.00563226
0.0056424
0.00565164
0.00566
0.00566749
0.00567411
0.00567989
0.00568482
0.00568892
0.00569217
0.00569457
0.00569609
0.00569673
0.00569648
0.00569535
0.00569339
0.0056906
0.00568696
0.0056824
0.00277758
0.00282498
0.00287191
0.00291836
0.00296433
0.00300986
0.00305493
0.00309955
0.00314374
0.0031875
0.00323086
0.0032738
0.00331636
0.00335853
0.00340034
0.0034418
0.0034829
0.00352366
0.00356409
0.0036042
0.003644
0.00368349
0.00372268
0.00376156
0.00380015
0.00383845
0.00387647
0.00391422
0.00395169
0.00398889
0.00402583
0.00406249
0.00409888
0.00413501
0.00417085
0.00420642
0.00424171
0.00427671
0.00431141
0.00434582
0.00437991
0.0044137
0.00444716
0.0044803
0.0045131
0.00454556
0.00457766
0.00460939
0.00464075
0.00467172
0.00470229
0.00473244
0.00476216
0.00479142
0.00482021
0.00484852
0.00487632
0.0049036
0.00493034
0.00495654
0.00498217
0.00500722
0.00503168
0.00505553
0.00507875
0.00510134
0.00512326
0.0051445
0.00516504
0.00518486
0.00520395
0.00522229
0.00523986
0.00525666
0.00527266
0.00528786
0.00530224
0.00531581
0.00532856
0.00534048
0.00535157
0.00536184
0.00537129
0.00537992
0.00538774
0.00539476
0.00540099
0.00540644
0.00541111
0.00541502
0.00541814
0.00542048
0.00542201
0.00542274
0.00542266
0.00542179
0.00542014
0.00541774
0.00541454
0.00541049
0.00262615
0.00267246
0.00271834
0.00276377
0.00280875
0.00285328
0.00289736
0.00294102
0.00298424
0.00302704
0.00306943
0.00311143
0.00315303
0.00319425
0.00323508
0.00327555
0.00331565
0.0033554
0.00339479
0.00343383
0.00347254
0.00351091
0.00354895
0.00358667
0.00362407
0.00366115
0.00369792
0.00373438
0.00377054
0.00380641
0.00384197
0.00387724
0.00391221
0.00394687
0.00398123
0.00401528
0.00404902
0.00408244
0.00411554
0.0041483
0.00418074
0.00421284
0.0042446
0.00427601
0.00430707
0.00433777
0.0043681
0.00439805
0.00442761
0.00445677
0.0044855
0.0045138
0.00454167
0.00456907
0.00459601
0.00462247
0.00464843
0.00467389
0.00469883
0.00472324
0.00474711
0.00477042
0.00479316
0.00481533
0.0048369
0.00485787
0.00487822
0.00489794
0.00491701
0.0049354
0.00495312
0.00497013
0.00498643
0.00500202
0.00501686
0.00503097
0.00504433
0.00505694
0.00506879
0.00507989
0.00509023
0.00509982
0.00510865
0.00511674
0.00512408
0.0051307
0.0051366
0.00514178
0.00514625
0.00515001
0.00515305
0.00515536
0.00515695
0.00515779
0.0051579
0.00515728
0.00515594
0.0051539
0.00515111
0.00514752
0.00247867
0.00252384
0.00256857
0.00261285
0.0026567
0.0027001
0.00274307
0.00278561
0.00282773
0.00286943
0.00291072
0.00295162
0.00299212
0.00303222
0.00307194
0.00311127
0.00315023
0.00318882
0.00322705
0.00326492
0.00330244
0.00333961
0.00337644
0.00341294
0.00344911
0.00348495
0.00352047
0.00355565
0.00359051
0.00362504
0.00365925
0.00369313
0.00372669
0.00375993
0.00379283
0.00382541
0.00385764
0.00388954
0.00392111
0.00395232
0.0039832
0.00401372
0.00404389
0.0040737
0.00410315
0.00413222
0.00416092
0.00418922
0.00421713
0.00424462
0.00427168
0.00429831
0.0043245
0.00435023
0.00437549
0.00440029
0.00442461
0.00444844
0.00447178
0.00449461
0.00451694
0.00453873
0.00455999
0.0045807
0.00460084
0.0046204
0.00463938
0.00465775
0.0046755
0.00469262
0.0047091
0.00472493
0.0047401
0.00475459
0.00476842
0.00478156
0.00479402
0.0048058
0.00481688
0.00482728
0.00483698
0.00484599
0.0048543
0.00486193
0.00486888
0.00487514
0.00488074
0.00488568
0.00488995
0.00489357
0.00489652
0.00489882
0.00490044
0.00490139
0.00490166
0.00490125
0.00490018
0.00489845
0.00489601
0.00489284
0.00233605
0.00237979
0.00242312
0.00246603
0.00250853
0.00255063
0.00259231
0.00263359
0.00267447
0.00271494
0.00275502
0.0027947
0.00283398
0.00287288
0.0029114
0.00294953
0.00298729
0.00302467
0.00306168
0.00309833
0.00313462
0.00317055
0.00320614
0.00324137
0.00327627
0.00331084
0.00334506
0.00337895
0.0034125
0.0034457
0.00347857
0.00351109
0.00354327
0.00357511
0.0036066
0.00363774
0.00366854
0.00369899
0.00372909
0.00375884
0.00378824
0.00381728
0.00384596
0.00387427
0.0039022
0.00392975
0.00395692
0.00398369
0.00401005
0.004036
0.00406153
0.00408663
0.00411129
0.0041355
0.00415926
0.00418256
0.0042054
0.00422777
0.00424966
0.00427107
0.00429198
0.00431239
0.00433229
0.00435166
0.0043705
0.00438879
0.00440653
0.00442369
0.00444028
0.00445628
0.00447168
0.00448648
0.00450066
0.00451422
0.00452715
0.00453945
0.00455112
0.00456216
0.00457255
0.0045823
0.00459141
0.00459988
0.00460771
0.00461492
0.0046215
0.00462746
0.0046328
0.00463753
0.00464166
0.00464518
0.0046481
0.00465041
0.00465211
0.00465318
0.00465361
0.0046534
0.00465257
0.00465111
0.00464899
0.00464617
0.00219718
0.00223957
0.00228154
0.0023231
0.00236426
0.00240501
0.00244537
0.00248532
0.00252488
0.00256405
0.00260283
0.00264121
0.0026792
0.00271681
0.00275404
0.00279089
0.00282737
0.00286347
0.00289921
0.00293458
0.0029696
0.00300426
0.00303856
0.00307252
0.00310611
0.00313936
0.00317226
0.00320482
0.00323702
0.00326888
0.00330039
0.00333155
0.00336235
0.0033928
0.0034229
0.00345265
0.00348205
0.0035111
0.0035398
0.00356815
0.00359614
0.00362378
0.00365105
0.00367795
0.00370447
0.00373061
0.00375637
0.00378172
0.00380668
0.00383122
0.00385535
0.00387905
0.00390233
0.00392517
0.00394759
0.00396956
0.00399108
0.00401216
0.00403277
0.00405291
0.00407256
0.00409173
0.00411041
0.00412857
0.00414623
0.00416336
0.00417996
0.00419603
0.00421155
0.00422653
0.00424095
0.00425482
0.00426812
0.00428084
0.00429299
0.00430455
0.00431553
0.00432592
0.00433571
0.00434491
0.00435351
0.00436151
0.00436892
0.00437573
0.00438197
0.00438762
0.00439271
0.00439723
0.00440119
0.0044046
0.00440745
0.00440974
0.00441145
0.00441259
0.00441313
0.00441309
0.00441246
0.00441124
0.00440941
0.00440693
0.00206346
0.00210419
0.00214459
0.00218463
0.0022243
0.00226361
0.00230255
0.00234112
0.0023793
0.00241711
0.00245454
0.00249159
0.00252825
0.00256453
0.00260043
0.00263596
0.00267112
0.00270591
0.00274033
0.00277439
0.00280809
0.00284144
0.00287443
0.00290707
0.00293935
0.00297127
0.00300284
0.00303406
0.00306492
0.00309544
0.0031256
0.00315541
0.00318486
0.00321396
0.00324271
0.00327111
0.00329916
0.00332686
0.00335421
0.0033812
0.00340784
0.00343411
0.00346002
0.00348556
0.00351073
0.00353551
0.00355992
0.00358393
0.00360754
0.00363076
0.00365358
0.00367598
0.00369798
0.00371955
0.0037407
0.00376142
0.00378171
0.00380155
0.00382095
0.0038399
0.0038584
0.00387643
0.00389399
0.00391107
0.00392767
0.00394378
0.00395939
0.0039745
0.00398909
0.00400317
0.00401673
0.00402976
0.00404227
0.00405424
0.00406568
0.00407657
0.00408691
0.0040967
0.00410593
0.00411461
0.00412273
0.00413029
0.00413731
0.00414378
0.00414971
0.0041551
0.00415998
0.00416433
0.00416817
0.0041715
0.0041743
0.00417657
0.0041783
0.00417948
0.0041801
0.00418018
0.00417971
0.0041787
0.00417711
0.00417492
0.00193297
0.00197241
0.00201146
0.00205014
0.00208845
0.00212637
0.00216392
0.00220109
0.00223788
0.00227428
0.00231031
0.00234596
0.00238124
0.00241613
0.00245065
0.0024848
0.00251858
0.002552
0.00258506
0.00261775
0.00265008
0.00268205
0.00271366
0.00274493
0.00277584
0.0028064
0.00283661
0.00286647
0.00289598
0.00292513
0.00295395
0.00298241
0.00301054
0.00303832
0.00306576
0.00309285
0.0031196
0.00314601
0.00317206
0.00319777
0.00322313
0.00324813
0.00327276
0.00329703
0.00332093
0.00334444
0.00336758
0.00339033
0.0034127
0.00343468
0.00345627
0.00347747
0.00349828
0.00351869
0.00353869
0.00355828
0.00357745
0.00359619
0.00361451
0.00363239
0.00364982
0.0036668
0.00368333
0.00369939
0.003715
0.00373014
0.00374482
0.00375903
0.00377277
0.00378604
0.00379883
0.00381113
0.00382294
0.00383425
0.00384505
0.00385534
0.00386512
0.00387437
0.00388309
0.00389129
0.00389896
0.00390611
0.00391275
0.00391888
0.00392451
0.00392965
0.00393429
0.00393845
0.00394213
0.00394532
0.00394802
0.00395023
0.00395194
0.00395315
0.00395385
0.00395404
0.00395373
0.00395291
0.00395155
0.00394963
0.00180889
0.00184659
0.00188399
0.00192107
0.0019578
0.00199419
0.00203021
0.00206588
0.00210118
0.00213612
0.00217068
0.00220487
0.00223869
0.00227215
0.00230524
0.00233795
0.0023703
0.00240229
0.00243393
0.00246521
0.00249613
0.0025267
0.00255692
0.00258678
0.0026163
0.00264548
0.00267432
0.00270282
0.00273097
0.00275879
0.00278626
0.00281341
0.00284022
0.00286669
0.00289284
0.00291864
0.00294411
0.00296924
0.00299402
0.00301846
0.00304255
0.00306628
0.00308967
0.00311269
0.00313535
0.00315765
0.00317958
0.00320114
0.00322233
0.00324315
0.0032636
0.00328367
0.00330336
0.00332266
0.00334157
0.00336008
0.00337819
0.00339589
0.00341317
0.00343004
0.00344649
0.00346251
0.00347811
0.00349328
0.00350801
0.00352231
0.00353616
0.00354957
0.00356253
0.00357505
0.0035871
0.00359869
0.00360982
0.00362047
0.00363066
0.00364036
0.00364958
0.00365832
0.00366657
0.00367434
0.00368163
0.00368844
0.00369478
0.00370064
0.00370603
0.00371097
0.00371544
0.00371945
0.003723
0.00372609
0.00372871
0.00373086
0.00373255
0.00373376
0.00373449
0.00373475
0.00373453
0.00373384
0.00373264
0.00373094
0.00168705
0.00172361
0.00175975
0.00179551
0.00183089
0.00186588
0.00190047
0.00193469
0.00196852
0.00200197
0.00203505
0.00206774
0.00210006
0.00213202
0.00216362
0.00219486
0.00222574
0.00225626
0.00228643
0.00231626
0.00234575
0.00237491
0.00240372
0.0024322
0.00246034
0.00248815
0.00251563
0.00254278
0.00256961
0.00259611
0.00262229
0.00264814
0.00267368
0.00269889
0.00272378
0.00274835
0.00277258
0.00279649
0.00282005
0.00284328
0.00286615
0.00288869
0.00291087
0.0029327
0.00295419
0.00297532
0.0029961
0.00301653
0.00303661
0.00305633
0.00307569
0.00309469
0.00311332
0.00313157
0.00314945
0.00316693
0.00318404
0.00320074
0.00321705
0.00323297
0.00324848
0.00326359
0.0032783
0.00329261
0.00330651
0.00331999
0.00333307
0.00334573
0.00335797
0.00336978
0.00338116
0.00339211
0.00340261
0.00341267
0.00342227
0.00343143
0.00344013
0.00344839
0.00345619
0.00346354
0.00347045
0.00347691
0.00348294
0.00348853
0.00349368
0.0034984
0.00350268
0.00350653
0.00350994
0.00351292
0.00351547
0.00351758
0.00351926
0.00352049
0.00352129
0.00352164
0.00352154
0.003521
0.00351999
0.0035185
0.00157341
0.00160815
0.00164255
0.00167656
0.00171018
0.00174343
0.0017763
0.0018088
0.00184093
0.0018727
0.00190412
0.00193517
0.00196588
0.00199623
0.00202624
0.00205591
0.00208526
0.00211426
0.00214294
0.00217129
0.00219931
0.00222701
0.0022544
0.00228147
0.00230822
0.00233465
0.00236077
0.00238658
0.00241208
0.00243727
0.00246216
0.00248673
0.002511
0.00253496
0.0025586
0.00258193
0.00260493
0.00262762
0.00264998
0.00267202
0.00269373
0.00271511
0.00273615
0.00275686
0.00277724
0.00279728
0.00281698
0.00283634
0.00285535
0.00287401
0.00289232
0.00291028
0.00292789
0.00294513
0.00296202
0.00297855
0.00299471
0.0030105
0.00302592
0.00304096
0.00305562
0.0030699
0.0030838
0.00309731
0.00311044
0.00312317
0.00313551
0.00314744
0.00315898
0.0031701
0.00318082
0.00319112
0.00320101
0.00321048
0.00321954
0.0032282
0.00323644
0.00324427
0.00325169
0.00325869
0.00326528
0.00327146
0.00327722
0.00328256
0.00328749
0.003292
0.0032961
0.00329979
0.00330307
0.00330594
0.00330841
0.00331047
0.00331211
0.00331334
0.00331415
0.00331454
0.00331452
0.00331409
0.00331324
0.00331194
0.00146278
0.00149586
0.00152854
0.00156084
0.00159277
0.00162432
0.00165551
0.00168633
0.00171679
0.00174689
0.00177665
0.00180608
0.00183519
0.00186396
0.0018924
0.00192054
0.00194836
0.00197588
0.00200309
0.00202999
0.00205658
0.00208287
0.00210885
0.00213454
0.00215992
0.00218501
0.0022098
0.0022343
0.0022585
0.00228241
0.00230603
0.00232935
0.00235239
0.00237512
0.00239755
0.00241968
0.0024415
0.00246301
0.0024842
0.00250508
0.00252564
0.00254588
0.0025658
0.0025854
0.00260468
0.00262364
0.00264228
0.00266059
0.00267858
0.00269624
0.00271357
0.00273055
0.0027472
0.00276349
0.00277943
0.00279502
0.00281025
0.00282512
0.00283965
0.00285381
0.00286763
0.00288109
0.00289419
0.00290693
0.00291931
0.00293132
0.00294296
0.00295422
0.0029651
0.0029756
0.00298571
0.00299543
0.00300476
0.00301371
0.00302226
0.00303042
0.00303819
0.00304558
0.00305258
0.00305921
0.00306545
0.0030713
0.00307677
0.00308186
0.00308657
0.0030909
0.00309484
0.00309841
0.00310159
0.00310439
0.00310681
0.00310885
0.0031105
0.00311175
0.00311262
0.0031131
0.00311318
0.00311288
0.00311217
0.00311104
0.00135968
0.00139062
0.00142117
0.00145134
0.00148115
0.00151062
0.00153976
0.0015686
0.00159713
0.00162535
0.00165329
0.00168094
0.0017083
0.0017354
0.00176221
0.00178874
0.001815
0.00184098
0.00186669
0.00189212
0.00191727
0.00194215
0.00196674
0.00199104
0.00201508
0.00203883
0.00206231
0.00208551
0.00210844
0.00213108
0.00215343
0.00217551
0.00219731
0.00221882
0.00224005
0.00226099
0.00228165
0.002302
0.00232206
0.00234183
0.00236129
0.00238046
0.00239932
0.00241789
0.00243614
0.00245409
0.00247173
0.00248904
0.00250604
0.00252271
0.00253906
0.00255508
0.00257078
0.00258615
0.00260119
0.0026159
0.00263028
0.00264432
0.00265802
0.00267139
0.00268442
0.00269711
0.00270945
0.00272146
0.00273311
0.00274442
0.00275537
0.00276596
0.00277619
0.00278606
0.00279557
0.00280472
0.00281351
0.00282195
0.00283003
0.00283775
0.00284512
0.00285213
0.00285878
0.00286506
0.00287098
0.00287654
0.00288173
0.00288655
0.00289101
0.0028951
0.00289884
0.00290223
0.00290527
0.00290795
0.00291027
0.00291224
0.00291385
0.0029151
0.00291599
0.00291653
0.0029167
0.00291651
0.00291593
0.00291495
0.00125936
0.00128763
0.00131571
0.00134359
0.00137124
0.00139867
0.00142587
0.00145283
0.00147956
0.00150606
0.00153231
0.00155831
0.00158407
0.0016096
0.00163489
0.00165993
0.00168471
0.00170924
0.00173352
0.00175754
0.00178131
0.00180482
0.00182807
0.00185105
0.00187378
0.00189624
0.00191844
0.00194039
0.00196208
0.0019835
0.00200465
0.00202554
0.00204615
0.00206648
0.00208655
0.00210634
0.00212585
0.00214508
0.00216403
0.0021827
0.00220108
0.00221919
0.002237
0.00225453
0.00227176
0.0022887
0.00230534
0.00232168
0.0023377
0.00235342
0.00236882
0.0023839
0.00239866
0.00241311
0.00242725
0.00244107
0.00245458
0.00246778
0.00248068
0.00249326
0.00250553
0.00251748
0.00252911
0.00254042
0.0025514
0.00256204
0.00257234
0.00258231
0.00259194
0.00260123
0.00261018
0.00261879
0.00262707
0.00263501
0.00264262
0.00264989
0.00265682
0.00266342
0.00266968
0.0026756
0.00268118
0.00268643
0.00269133
0.00269591
0.00270014
0.00270405
0.00270762
0.00271086
0.00271377
0.00271635
0.0027186
0.00272053
0.00272212
0.00272338
0.00272429
0.00272486
0.00272508
0.00272495
0.00272445
0.00272358
0.00116082
0.00118696
0.00121291
0.00123869
0.00126428
0.0012897
0.00131495
0.00134002
0.00136491
0.00138963
0.00141417
0.00143852
0.00146269
0.00148665
0.00151041
0.00153396
0.0015573
0.00158042
0.0016033
0.00162595
0.00164836
0.00167054
0.00169249
0.00171419
0.00173565
0.00175686
0.00177782
0.00179854
0.00181901
0.00183923
0.0018592
0.00187891
0.00189837
0.00191757
0.0019365
0.00195518
0.0019736
0.00199175
0.00200964
0.00202725
0.00204459
0.00206166
0.00207844
0.00209495
0.00211117
0.00212711
0.00214277
0.00215814
0.00217321
0.002188
0.00220249
0.00221668
0.00223058
0.00224419
0.0022575
0.00227052
0.00228325
0.00229567
0.00230779
0.00231961
0.00233112
0.00234232
0.00235321
0.0023638
0.00237407
0.00238403
0.00239367
0.00240301
0.00241204
0.00242075
0.00242915
0.00243725
0.00244503
0.0024525
0.00245966
0.0024665
0.00247303
0.00247924
0.00248513
0.0024907
0.00249595
0.00250088
0.00250549
0.00250979
0.00251377
0.00251744
0.0025208
0.00252386
0.00252661
0.00252906
0.00253121
0.00253304
0.00253457
0.00253579
0.0025367
0.00253729
0.00253756
0.00253749
0.00253708
0.00253632
0.00106458
0.00108748
0.00111068
0.00113404
0.00115749
0.00118098
0.00120444
0.00122784
0.00125114
0.00127434
0.00129741
0.00132033
0.0013431
0.00136569
0.00138809
0.0014103
0.00143232
0.00145414
0.00147575
0.00149713
0.00151829
0.00153923
0.00155995
0.00158045
0.00160072
0.00162076
0.00164056
0.00166013
0.00167945
0.00169853
0.00171736
0.00173594
0.00175427
0.00177235
0.00179017
0.00180774
0.00182505
0.00184211
0.00185892
0.00187547
0.00189176
0.0019078
0.00192357
0.00193908
0.00195432
0.00196928
0.00198396
0.00199838
0.00201251
0.00202637
0.00203996
0.00205327
0.0020663
0.00207907
0.00209156
0.00210377
0.00211571
0.00212738
0.00213876
0.00214986
0.00216067
0.00217119
0.0021814
0.00219131
0.00220092
0.00221024
0.00221926
0.00222799
0.00223642
0.00224457
0.00225242
0.00225998
0.00226726
0.00227424
0.00228094
0.00228734
0.00229344
0.00229925
0.00230476
0.00230997
0.00231489
0.00231951
0.00232383
0.00232787
0.00233161
0.00233506
0.00233822
0.0023411
0.0023437
0.00234602
0.00234805
0.0023498
0.00235126
0.00235242
0.00235328
0.00235385
0.00235412
0.00235409
0.00235374
0.00235308
0.000955263
0.000978814
0.0010021
0.00102521
0.00104814
0.00107089
0.00109347
0.00111589
0.00113814
0.00116022
0.00118213
0.00120387
0.00122544
0.00124682
0.00126801
0.00128901
0.00130982
0.00133043
0.00135084
0.00137104
0.00139104
0.00141082
0.00143038
0.00144972
0.00146884
0.00148773
0.0015064
0.00152484
0.00154305
0.00156101
0.00157873
0.00159622
0.00161345
0.00163045
0.0016472
0.00166371
0.00167998
0.00169599
0.00171176
0.00172727
0.00174253
0.00175754
0.00177229
0.00178679
0.00180104
0.00181503
0.00182878
0.00184228
0.00185552
0.00186851
0.00188124
0.00189372
0.00190593
0.00191789
0.00192958
0.00194101
0.00195218
0.00196307
0.00197368
0.00198401
0.00199407
0.00200384
0.00201333
0.00202255
0.00203148
0.00204015
0.00204855
0.00205668
0.00206455
0.00207215
0.00207949
0.00208655
0.00209335
0.00209986
0.0021061
0.00211207
0.00211775
0.00212316
0.0021283
0.00213316
0.00213774
0.00214206
0.0021461
0.00214987
0.00215338
0.00215661
0.00215959
0.0021623
0.00216474
0.00216692
0.00216884
0.00217048
0.00217186
0.00217296
0.00217378
0.00217432
0.00217459
0.00217458
0.00217429
0.00217373
0.000861542
0.000881576
0.000902004
0.000922661
0.00094347
0.000964375
0.000985328
0.00100629
0.0010272
0.00104803
0.00106875
0.00108933
0.00110976
0.00113003
0.00115012
0.00117003
0.00118974
0.00120925
0.00122856
0.00124767
0.00126658
0.00128527
0.00130375
0.00132201
0.00134003
0.00135783
0.00137539
0.00139272
0.00140982
0.00142669
0.00144332
0.00145971
0.00147586
0.00149177
0.00150744
0.00152288
0.00153808
0.00155305
0.00156778
0.00158228
0.00159654
0.00161056
0.00162434
0.00163788
0.00165118
0.00166423
0.00167705
0.00168962
0.00170197
0.00171407
0.00172594
0.00173758
0.00174898
0.00176014
0.00177104
0.0017817
0.0017921
0.00180224
0.00181212
0.00182173
0.00183108
0.00184017
0.00184899
0.00185755
0.00186585
0.0018739
0.00188168
0.0018892
0.00189648
0.0019035
0.00191028
0.00191682
0.00192311
0.00192915
0.00193493
0.00194047
0.00194575
0.00195078
0.00195555
0.00196008
0.00196435
0.00196836
0.00197212
0.00197563
0.00197889
0.0019819
0.00198466
0.00198717
0.00198944
0.00199146
0.00199322
0.00199474
0.001996
0.00199701
0.00199777
0.00199828
0.00199855
0.00199857
0.00199834
0.00199785
0.000733645
0.000758766
0.000782937
0.000806396
0.00082924
0.000851527
0.000873317
0.000894661
0.000915608
0.000936203
0.00095648
0.000976464
0.000996175
0.00101563
0.00103485
0.00105383
0.00107258
0.0010911
0.00110938
0.00112744
0.00114528
0.0011629
0.0011803
0.00119748
0.00121443
0.00123114
0.00124763
0.00126388
0.0012799
0.0012957
0.00131125
0.00132658
0.00134166
0.0013565
0.00137111
0.00138548
0.00139962
0.00141354
0.00142723
0.0014407
0.00145394
0.00146696
0.00147975
0.00149232
0.00150468
0.00151681
0.00152873
0.00154042
0.00155188
0.00156312
0.00157413
0.0015849
0.00159544
0.00160575
0.00161582
0.00162566
0.00163526
0.00164461
0.00165373
0.0016626
0.00167123
0.00167961
0.00168776
0.00169567
0.00170334
0.00171078
0.00171798
0.00172496
0.0017317
0.00173821
0.00174446
0.00175049
0.00175628
0.00176183
0.00176717
0.00177227
0.00177714
0.00178177
0.00178618
0.00179036
0.00179431
0.00179802
0.00180151
0.00180476
0.00180779
0.00181058
0.00181314
0.00181546
0.00181755
0.00181941
0.00182104
0.00182243
0.00182359
0.00182453
0.00182523
0.00182571
0.00182597
0.00182601
0.00182582
0.00182539
0.000669893
0.000686314
0.00070338
0.000720848
0.000738652
0.000756754
0.000775092
0.000793597
0.000812205
0.000830854
0.000849483
0.000868034
0.000886459
0.000904725
0.00092281
0.000940704
0.000958398
0.000975881
0.000993143
0.00101017
0.00102697
0.00104354
0.00105987
0.00107598
0.00109186
0.0011075
0.00112291
0.00113808
0.00115301
0.00116771
0.00118219
0.00119644
0.00121046
0.00122427
0.00123785
0.0012512
0.00126433
0.00127723
0.00128992
0.00130239
0.00131465
0.0013267
0.00133853
0.00135015
0.00136155
0.00137274
0.00138372
0.00139448
0.00140504
0.0014154
0.00142554
0.00143546
0.00144516
0.00145464
0.00146389
0.00147291
0.00148171
0.00149027
0.00149861
0.00150672
0.00151462
0.00152229
0.00152975
0.00153699
0.00154402
0.00155084
0.00155744
0.00156384
0.00157002
0.00157599
0.00158175
0.00158729
0.00159263
0.00159776
0.00160266
0.00160735
0.00161182
0.00161608
0.00162013
0.00162396
0.00162757
0.00163096
0.00163415
0.00163712
0.00163987
0.00164242
0.00164475
0.00164687
0.00164877
0.00165046
0.00165193
0.0016532
0.00165425
0.00165511
0.00165576
0.00165621
0.00165647
0.00165652
0.00165636
0.001656
0.000515074
0.000541196
0.000566428
0.000590899
0.000614583
0.000637459
0.00065953
0.000680834
0.000701421
0.000721352
0.000740696
0.000759518
0.000777877
0.00079582
0.000813386
0.000830607
0.00084751
0.000864117
0.000880445
0.000896502
0.000912294
0.000927825
0.000943102
0.000958131
0.000972917
0.000987464
0.00100178
0.00101585
0.0010297
0.00104331
0.00105669
0.00106985
0.00108278
0.00109549
0.00110799
0.00112027
0.00113234
0.0011442
0.00115585
0.0011673
0.00117854
0.00118958
0.00120042
0.00121105
0.00122148
0.00123172
0.00124175
0.00125158
0.0012612
0.00127062
0.00127983
0.00128884
0.00129764
0.00130624
0.00131464
0.00132284
0.00133084
0.00133864
0.00134624
0.00135364
0.00136084
0.00136785
0.00137465
0.00138126
0.00138768
0.0013939
0.00139992
0.00140575
0.00141137
0.0014168
0.00142203
0.00142707
0.0014319
0.00143654
0.00144098
0.00144523
0.00144928
0.00145314
0.00145681
0.00146028
0.00146356
0.00146664
0.00146953
0.00147222
0.00147472
0.00147702
0.00147912
0.00148104
0.00148275
0.00148428
0.00148563
0.00148678
0.00148775
0.00148854
0.00148915
0.00148958
0.00148983
0.00148989
0.00148976
0.00148945
0.000494267
0.000508137
0.000522075
0.000536299
0.000550868
0.000565805
0.000581107
0.000596745
0.000612654
0.000628753
0.000644963
0.000661211
0.00067743
0.00069356
0.00070955
0.000725358
0.000740954
0.000756321
0.000771452
0.000786345
0.000800997
0.000815405
0.000829566
0.000843482
0.000857153
0.000870583
0.000883775
0.000896733
0.000909461
0.000921964
0.000934245
0.000946308
0.000958156
0.000969791
0.000981214
0.000992427
0.00100343
0.00101423
0.00102484
0.00103524
0.00104545
0.00105547
0.0010653
0.00107493
0.00108437
0.00109362
0.00110268
0.00111155
0.00112023
0.00112872
0.00113703
0.00114514
0.00115306
0.00116078
0.00116832
0.00117567
0.00118283
0.00118981
0.00119662
0.00120326
0.00120972
0.00121602
0.00122214
0.00122809
0.00123387
0.00123947
0.0012449
0.00125015
0.00125523
0.00126012
0.00126484
0.00126939
0.00127375
0.00127794
0.00128194
0.00128577
0.00128942
0.00129288
0.00129617
0.00129929
0.00130223
0.001305
0.0013076
0.00131002
0.00131227
0.00131435
0.00131624
0.00131797
0.00131952
0.0013209
0.00132211
0.00132315
0.00132403
0.00132474
0.00132528
0.00132566
0.00132587
0.00132592
0.00132581
0.00132553
0.000311588
0.0003381
0.000365228
0.000391219
0.000415926
0.000439394
0.000461672
0.000482817
0.000502905
0.000522033
0.000540305
0.000557824
0.000574687
0.00059098
0.000606773
0.000622118
0.000637056
0.00065162
0.000665837
0.000679731
0.000693325
0.000706634
0.00071967
0.000732441
0.000744952
0.000757211
0.000769226
0.000781008
0.000792565
0.000803903
0.000815025
0.000825934
0.000836631
0.000847121
0.000857408
0.000867499
0.000877397
0.000887107
0.000896629
0.000905964
0.00091511
0.00092407
0.000932846
0.000941439
0.000949853
0.000958089
0.000966149
0.000974034
0.000981746
0.000989286
0.000996656
0.00100386
0.00101089
0.00101776
0.00102447
0.00103102
0.00103741
0.00104363
0.0010497
0.00105561
0.00106135
0.00106694
0.00107238
0.00107765
0.00108277
0.00108773
0.00109253
0.00109718
0.00110166
0.00110599
0.00111016
0.00111416
0.00111801
0.00112171
0.00112524
0.00112862
0.00113184
0.0011349
0.00113781
0.00114056
0.00114316
0.0011456
0.00114789
0.00115003
0.00115202
0.00115385
0.00115553
0.00115707
0.00115846
0.0011597
0.00116079
0.00116174
0.00116253
0.00116317
0.00116367
0.00116401
0.00116421
0.00116426
0.00116418
0.00116395
0.000291168
0.000311395
0.000328895
0.000345592
0.000361843
0.000377768
0.000393456
0.000408963
0.000424318
0.000439518
0.000454535
0.000469331
0.00048387
0.000498133
0.000512108
0.000525794
0.00053919
0.000552297
0.000565112
0.000577634
0.000589871
0.000601835
0.000613542
0.000625003
0.000636226
0.000647214
0.000657967
0.00066849
0.000678788
0.000688872
0.000698751
0.000708432
0.000717921
0.000727216
0.000736318
0.000745228
0.000753948
0.000762486
0.000770847
0.000779039
0.000787068
0.000794937
0.000802645
0.000810193
0.000817579
0.000824803
0.000831866
0.00083877
0.000845517
0.000852109
0.000858549
0.000864839
0.000870982
0.000876977
0.000882828
0.000888533
0.000894096
0.000899517
0.000904799
0.000909942
0.000914948
0.000919818
0.000924551
0.000929149
0.000933609
0.000937932
0.000942116
0.000946162
0.000950068
0.000953836
0.000957464
0.000960954
0.000964306
0.000967518
0.000970593
0.00097353
0.000976331
0.000978998
0.000981532
0.000983936
0.000986208
0.00098835
0.00099036
0.000992237
0.000993982
0.000995594
0.000997075
0.000998425
0.000999644
0.00100073
0.00100169
0.00100251
0.0010032
0.00100375
0.00100417
0.00100446
0.00100463
0.00100467
0.0010046
0.00100441
0.000175601
0.000199312
0.000222115
0.000243801
0.000264346
0.000283777
0.000302138
0.000319501
0.000335963
0.000351626
0.000366582
0.000380916
0.000394694
0.000407976
0.000420809
0.000433236
0.000445293
0.000457009
0.000468408
0.000479509
0.000490324
0.000500867
0.000511151
0.000521188
0.000530991
0.000540571
0.000549935
0.00055909
0.000568042
0.000576795
0.000585354
0.000593725
0.000601914
0.000609929
0.000617775
0.000625458
0.000632979
0.000640338
0.000647538
0.000654578
0.000661464
0.000668198
0.000674786
0.000681232
0.000687539
0.000693711
0.000699748
0.00070565
0.000711418
0.000717053
0.000722555
0.000727928
0.000733174
0.000738295
0.000743292
0.000748166
0.000752917
0.000757545
0.00076205
0.00076643
0.000770687
0.000774821
0.000778834
0.000782726
0.000786499
0.000790154
0.000793693
0.000797115
0.000800422
0.000803614
0.000806692
0.000809655
0.000812503
0.000815236
0.000817853
0.000820354
0.000822739
0.000825008
0.000827162
0.000829202
0.000831129
0.000832945
0.000834649
0.000836245
0.000837731
0.000839107
0.000840375
0.000841531
0.000842575
0.000843504
0.000844316
0.000845012
0.000845594
0.000846064
0.000846427
0.000846688
0.000846846
0.000846902
0.000846852
0.000846696
0.000152943
0.000168534
0.000183565
0.000198121
0.000212288
0.000226126
0.000239658
0.000252881
0.000265777
0.000278326
0.00029052
0.000302366
0.000313872
0.000325043
0.000335888
0.000346417
0.000356641
0.000366573
0.000376226
0.000385614
0.000394753
0.000403654
0.000412331
0.000420792
0.000429046
0.000437097
0.000444953
0.000452619
0.000460103
0.000467414
0.000474559
0.000481543
0.000488369
0.000495039
0.000501558
0.000507928
0.000514156
0.000520247
0.000526207
0.000532039
0.000537745
0.000543327
0.000548784
0.000554119
0.000559332
0.000564425
0.000569402
0.000574266
0.000579019
0.000583664
0.000588202
0.000592636
0.000596966
0.000601194
0.000605322
0.00060935
0.000613279
0.000617109
0.00062084
0.00062447
0.000627999
0.000631425
0.000634748
0.000637967
0.000641083
0.000644096
0.000647006
0.000649814
0.000652521
0.000655128
0.000657636
0.000660046
0.000662361
0.000664583
0.000666712
0.000668751
0.0006707
0.000672557
0.000674324
0.000675998
0.000677579
0.000679069
0.000680468
0.000681779
0.000683003
0.000684141
0.000685192
0.000686155
0.000687029
0.000687812
0.000688504
0.000689103
0.00068961
0.000690028
0.000690357
0.000690599
0.000690756
0.000690824
0.000690799
0.000690677
9.26296e-05
0.000108271
0.000123092
0.000137145
0.000150475
0.000163132
0.000175182
0.000186685
0.000197694
0.000208251
0.000218393
0.000228156
0.000237572
0.000246664
0.000255455
0.000263959
0.000272192
0.000280169
0.000287906
0.000295419
0.000302722
0.000309826
0.00031674
0.000323472
0.000330028
0.000336419
0.000342653
0.000348737
0.000354678
0.000360481
0.000366148
0.000371683
0.000377088
0.000382368
0.000387526
0.000392565
0.000397487
0.000402296
0.000406992
0.000411578
0.000416056
0.000420427
0.000424695
0.000428863
0.000432933
0.000436909
0.000440794
0.00044459
0.000448301
0.00045193
0.000455477
0.000458946
0.000462336
0.00046565
0.000468888
0.00047205
0.000475137
0.000478147
0.00048108
0.000483935
0.000486709
0.000489402
0.000492012
0.000494539
0.000496982
0.000499343
0.000501624
0.000503827
0.000505954
0.000508005
0.000509982
0.000511882
0.000513706
0.000515453
0.000517123
0.000518716
0.000520233
0.000521675
0.000523042
0.000524336
0.000525558
0.000526707
0.000527784
0.00052879
0.000529727
0.000530595
0.000531394
0.000532125
0.000532789
0.000533387
0.000533921
0.000534394
0.000534807
0.000535158
0.000535445
0.000535664
0.000535808
0.000535875
0.000535859
0.000535763
6.88519e-05
7.78522e-05
8.68094e-05
9.56435e-05
0.000104317
0.0001128
0.000121066
0.0001291
0.000136902
0.000144474
0.000151815
0.000158917
0.000165781
0.000172416
0.00017884
0.000185071
0.000191118
0.000196983
0.000202665
0.000208168
0.000213501
0.000218681
0.000223722
0.000228636
0.000233427
0.000238097
0.000242644
0.000247072
0.000251387
0.000255597
0.000259707
0.000263724
0.000267648
0.000271481
0.000275221
0.000278869
0.000282425
0.000285892
0.000289273
0.000292571
0.000295791
0.000298934
0.000302004
0.000305
0.000307924
0.000310779
0.000313567
0.00031629
0.000318953
0.00032156
0.000324113
0.000326616
0.00032907
0.000331473
0.000333826
0.000336127
0.000338372
0.00034056
0.00034269
0.00034476
0.00034677
0.000348717
0.000350604
0.000352428
0.000354189
0.000355889
0.000357526
0.000359103
0.000360619
0.000362075
0.000363474
0.000364816
0.000366103
0.000367334
0.000368511
0.000369632
0.000370699
0.00037171
0.000372668
0.000373574
0.000374428
0.000375235
0.000375995
0.000376711
0.000377384
0.000378015
0.000378604
0.000379153
0.00037966
0.000380126
0.000380549
0.000380928
0.000381259
0.000381539
0.000381765
0.000381932
0.000382036
0.00038207
0.000382028
0.000381911
3.48899e-05
4.14598e-05
4.76568e-05
5.35537e-05
5.91844e-05
6.45746e-05
6.97468e-05
7.47212e-05
7.95174e-05
8.41535e-05
8.86415e-05
9.29864e-05
9.71894e-05
0.000101252
0.000105182
0.000108987
0.000112679
0.000116267
0.000119754
0.00012314
0.000126423
0.000129604
0.00013269
0.00013569
0.000138613
0.000141469
0.000144259
0.000146985
0.000149645
0.000152236
0.000154762
0.000157222
0.000159623
0.000161966
0.000164253
0.000166485
0.000168659
0.000170775
0.000172832
0.00017483
0.000176772
0.000178663
0.000180505
0.000182304
0.000184062
0.00018578
0.00018746
0.000189102
0.000190709
0.000192281
0.000193821
0.000195331
0.000196811
0.000198264
0.00019969
0.000201086
0.000202453
0.000203788
0.000205089
0.000206355
0.000207585
0.000208778
0.000209935
0.000211053
0.000212135
0.000213179
0.000214185
0.000215154
0.000216085
0.000216979
0.000217835
0.000218654
0.000219434
0.000220176
0.000220879
0.000221543
0.000222168
0.000222755
0.000223303
0.000223816
0.000224294
0.000224741
0.000225159
0.00022555
0.000225918
0.000226264
0.000226591
0.000226903
0.000227201
0.000227487
0.000227763
0.000228025
0.000228266
0.000228478
0.000228647
0.000228762
0.000228803
0.000228774
0.000228681
0.000228528
1.31366e-05
1.44753e-05
1.58774e-05
1.73118e-05
1.87635e-05
2.02248e-05
2.16922e-05
2.31622e-05
2.46281e-05
2.60809e-05
2.75138e-05
2.89251e-05
3.03168e-05
3.16897e-05
3.30415e-05
3.43663e-05
3.56582e-05
3.69137e-05
3.81333e-05
3.93206e-05
4.04789e-05
4.161e-05
4.27133e-05
4.3787e-05
4.48298e-05
4.58421e-05
4.6826e-05
4.77846e-05
4.87206e-05
4.96356e-05
5.05297e-05
5.14026e-05
5.22535e-05
5.30821e-05
5.38885e-05
5.46734e-05
5.54375e-05
5.61813e-05
5.69049e-05
5.76082e-05
5.82911e-05
5.89537e-05
5.9597e-05
6.02223e-05
6.08313e-05
6.14259e-05
6.20076e-05
6.25776e-05
6.31363e-05
6.36838e-05
6.42199e-05
6.47445e-05
6.52573e-05
6.57587e-05
6.62489e-05
6.67281e-05
6.71967e-05
6.76543e-05
6.81009e-05
6.85358e-05
6.89585e-05
6.93687e-05
6.9766e-05
7.015e-05
7.05205e-05
7.08772e-05
7.12199e-05
7.15482e-05
7.18618e-05
7.21607e-05
7.24451e-05
7.27151e-05
7.29713e-05
7.3214e-05
7.34434e-05
7.36597e-05
7.38628e-05
7.40528e-05
7.42298e-05
7.43939e-05
7.45459e-05
7.46866e-05
7.4817e-05
7.49383e-05
7.50521e-05
7.51597e-05
7.52628e-05
7.53629e-05
7.5462e-05
7.55616e-05
7.56629e-05
7.57656e-05
7.58665e-05
7.59593e-05
7.60345e-05
7.60781e-05
7.60321e-05
7.59224e-05
7.5803e-05
7.5665e-05
)
;
boundaryField
{
leftWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
200
(
128.967
128.972
128.99
129.019
129.06
129.111
129.174
129.249
129.334
129.431
129.54
129.66
129.791
129.934
130.088
130.254
130.431
130.62
130.819
131.03
131.253
131.487
131.732
131.989
132.257
132.536
132.827
133.128
133.441
133.764
134.098
134.442
134.797
135.162
135.536
135.919
136.311
136.711
137.119
137.533
137.953
138.378
138.806
139.235
139.664
140.09
140.509
140.918
141.31
141.678
142.012
142.299
142.52
142.65
142.657
142.497
142.109
141.406
140.302
138.708
136.48
124.994
98.971
75.1682
49.6616
45.0582
44.6129
44.2228
44.0179
44.1861
44.3582
44.8329
44.9835
45.0168
44.676
44.9845
44.6654
47.798
52.9396
59.7181
60.7912
60.1497
60.4634
59.5074
48.0475
50.2088
51.4121
148.677
206.073
213.359
202.703
202.783
203.744
204.482
205.212
206.179
207.381
208.047
215.058
224.877
97.1605
12.5598
11.1019
15.7684
16.7694
17.7065
18.9075
20.6546
1.29425
0.423549
0.416012
0.321312
14.7187
68.5713
55.6841
45.0222
3.32811
0.393556
0.830902
0.36071
0.210134
0.169479
0.109093
0.0586757
0.0110862
-0.00386113
0.0241385
0.0401918
0.0603711
0.0796243
0.0864068
0.113948
0.104406
18.1678
21.4099
1.19038
-0.292392
-0.303131
-0.263022
-0.127445
0.00447864
0.072182
0.0849216
0.0445361
0.0537489
0.0421707
-0.0277373
-0.0213616
-0.0364671
-0.0362187
-0.0366815
-0.035883
-0.0343818
-0.032492
-0.0304272
-0.028326
-0.0262748
-0.024324
-0.0224978
-0.0208051
-0.0192455
-0.017814
-0.0165015
-0.0152993
-0.0141975
-0.0131868
-0.0122585
-0.0114038
-0.010616
-0.00988821
-0.00921464
-0.00858996
-0.00800926
-0.00746871
-0.00696409
-0.00649218
-0.00604972
-0.00563423
-0.00524322
-0.00487452
-0.00452635
-0.00419665
-0.00388407
-0.00358707
-0.00330436
-0.00303475
-0.00277727
-0.00253059
-0.00229379
-0.00206575
-0.00184582
-0.00163306
-0.00142681
-0.00122605
-0.00102986
-0.000837827
-0.000648647
-0.000462709
-0.0002769
-9.43672e-05
)
;
}
rightWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
200
(
128.127
128.13
128.146
128.175
128.215
128.268
128.333
128.411
128.501
128.603
128.718
128.845
128.985
129.138
129.303
129.481
129.672
129.875
130.091
130.32
130.562
130.817
131.085
131.366
131.66
131.967
132.287
132.621
132.968
133.328
133.701
134.088
134.489
134.903
135.331
135.772
136.227
136.696
137.179
137.676
138.187
138.712
139.252
139.806
140.376
140.961
141.562
142.18
142.815
143.469
144.143
144.837
145.555
146.298
147.068
147.871
148.716
149.61
150.562
151.593
152.725
154.003
155.474
157.061
157.996
158.808
159.818
155.399
150.541
142.115
133.52
127.062
102.444
94.0469
92.0804
89.7423
90.1249
91.6681
92.7034
93.2108
93.5775
93.8196
93.865
93.8053
94.9318
98.9055
102.688
101.4
104.161
114.211
160.739
205.833
191.157
192.101
197.523
204.41
210.637
215.885
218.401
234.141
197.703
22.5231
39.9517
45.8806
21.1212
0.235378
0.290922
0.380533
0.147481
0.0291592
0.260876
0.296121
0.295812
0.343978
0.34029
0.351791
0.366497
0.435748
0.48196
0.462848
0.412969
0.358653
0.109357
0.0703502
0.159094
0.119618
0.0856105
0.0547354
0.0502905
0.0514512
21.5149
20.6413
-0.474003
-0.624465
-0.626188
-0.404119
-0.151225
0.00269785
0.0323704
0.0293217
0.0225323
0.0147928
-0.0067196
-0.026681
-0.0187353
-0.00300076
0.00479283
0.00747169
0.00900488
0.010062
0.0107242
0.0110808
0.011198
0.0111398
0.0109598
0.0106984
0.010385
0.0100401
0.00967803
0.00930857
0.00893836
0.00857172
0.00821167
0.00786016
0.00751829
0.00718679
0.0068656
0.00655491
0.00625423
0.00596352
0.0056824
0.00541049
0.00514752
0.00489284
0.00464617
0.00440693
0.00417492
0.00394963
0.00373094
0.0035185
0.00331194
0.00311104
0.00291495
0.00272358
0.00253632
0.00235308
0.00217373
0.00199785
0.00182539
0.001656
0.00148945
0.00132553
0.00116395
0.00100441
0.000846696
0.000690677
0.000535763
0.000381911
0.000228528
7.5665e-05
)
;
}
lowerWall
{
type fixedFluxPressure;
gradient uniform 0;
value nonuniform List<scalar>
300
(
128.967
128.923
128.834
128.699
128.52
128.295
128.025
127.711
127.352
126.95
126.504
126.014
125.483
124.909
124.295
123.64
122.946
122.213
121.443
120.637
119.797
118.922
118.016
117.079
116.113
115.12
114.101
113.058
111.993
110.909
109.807
108.689
107.557
106.415
105.264
104.107
102.947
101.787
100.63
99.4789
98.3369
97.2076
96.0944
95.0007
93.9302
92.8862
91.8719
90.8907
89.9453
89.0382
88.1717
87.3473
86.5662
85.829
85.1356
84.4854
83.8772
83.3093
82.7798
82.2861
81.8258
81.3961
80.9944
80.6183
80.2655
79.9339
79.6221
79.3286
79.0526
78.7935
78.5511
78.3254
78.1168
77.9259
77.7536
77.6008
77.469
77.3597
77.2746
77.2163
77.1869
77.1893
77.2267
77.3024
77.4199
77.5826
77.795
78.0611
78.3849
78.7703
79.2211
79.7407
80.3324
80.9989
81.7422
82.5638
83.4645
84.4442
85.5021
86.6365
87.5437
88.1669
88.8075
89.4649
90.1389
90.8288
91.534
92.2538
92.9874
93.7339
94.4926
95.2622
96.0419
96.8305
97.6267
98.4291
99.2364
100.047
100.86
101.672
102.483
103.29
104.092
104.887
105.673
106.448
107.211
107.958
108.688
109.4
110.092
110.761
111.407
112.027
112.621
113.188
113.729
114.244
114.736
115.209
115.668
116.118
116.564
117.007
117.437
117.842
118.207
118.509
118.726
118.838
118.838
118.731
118.538
118.267
117.921
117.508
117.042
116.541
116.02
115.489
114.951
114.408
113.857
113.298
112.719
112.122
111.506
110.87
110.214
109.54
108.849
108.144
107.424
106.693
105.952
105.203
104.448
103.688
102.924
102.159
101.393
100.629
99.8611
99.1022
98.347
97.5969
96.853
96.1163
95.3876
94.6677
93.9574
93.2573
92.568
91.89
91.224
90.5702
89.9292
89.3011
88.6861
88.0844
87.2036
86.0873
85.028
84.0265
83.0828
82.1969
81.3687
80.598
79.885
79.2298
78.6327
78.0944
77.615
77.1951
76.8348
76.5346
76.294
76.1122
75.9879
75.9196
75.9057
75.9427
76.0283
76.1597
76.3335
76.5466
76.7957
77.0776
77.3892
77.7279
78.0908
78.4757
78.8805
79.3033
79.7425
80.1968
80.6653
81.1472
81.6421
82.1499
82.6709
83.2057
83.7551
84.3204
84.9031
85.5049
86.1276
86.7732
87.4436
88.1406
88.8657
89.6202
90.4051
91.2206
92.0674
92.945
93.8526
94.7896
95.7541
96.7447
97.7597
98.7969
99.8543
100.93
102.021
103.124
104.238
105.359
106.484
107.609
108.732
109.849
110.956
112.049
113.126
114.182
115.215
116.222
117.199
118.145
119.057
119.932
120.769
121.567
122.323
123.037
123.707
124.332
124.912
125.446
125.933
126.372
126.763
127.106
127.399
127.644
127.84
127.985
128.081
128.127
)
;
}
atmosphere
{
type totalPressure;
rho rho;
psi none;
gamma 1;
p0 uniform 0;
value nonuniform List<scalar>
300
(
-1.42771e-07
-3.20557e-07
-2.89259e-07
-1.94686e-07
-1.05338e-07
-3.89658e-08
-3.70072e-09
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-3.20801e-09
-1.47086e-08
-3.35459e-08
-5.82005e-08
-8.77045e-08
-1.20772e-07
-1.55808e-07
-1.91206e-07
-2.25492e-07
-2.57356e-07
-2.85665e-07
-3.09486e-07
-3.28099e-07
-3.41018e-07
-3.47992e-07
-3.49001e-07
-3.44239e-07
-3.34094e-07
-3.19116e-07
-2.99986e-07
-2.77478e-07
-2.52432e-07
-2.25711e-07
-1.98177e-07
-1.70652e-07
-1.43896e-07
-1.1858e-07
-9.5264e-08
-7.43801e-08
-5.62238e-08
-4.09455e-08
-2.855e-08
-1.89031e-08
-1.17495e-08
-6.74649e-09
-3.50663e-09
-1.62407e-09
-6.72319e-10
-2.43816e-10
-5.30493e-11
0
0
-3.82425e-11
-7.1552e-10
-2.75456e-09
-6.925e-09
-1.42503e-08
-2.59749e-08
-4.34767e-08
-6.82053e-08
-1.01614e-07
-1.45077e-07
-1.99805e-07
-2.66762e-07
-3.46605e-07
-4.39627e-07
-5.45727e-07
-6.64395e-07
-8.64302e-07
-1.16371e-06
-1.48709e-06
-1.81702e-06
-2.13574e-06
-2.4272e-06
-2.67867e-06
-2.88166e-06
-3.03219e-06
-3.13037e-06
-3.1796e-06
-3.1856e-06
-3.15531e-06
-3.09611e-06
-3.01508e-06
-2.91854e-06
-2.81188e-06
-2.69944e-06
-2.58454e-06
-2.46964e-06
-2.35649e-06
-2.24623e-06
-2.13959e-06
-2.03697e-06
-1.93856e-06
-1.84442e-06
-1.7545e-06
-1.66871e-06
-1.58694e-06
-1.50906e-06
-1.43494e-06
-1.36445e-06
-1.29749e-06
-1.23392e-06
-1.17366e-06
-1.11659e-06
-1.06262e-06
-1.01168e-06
-9.63664e-07
-9.18501e-07
-8.76101e-07
-8.36377e-07
-7.99232e-07
-7.64563e-07
-7.32257e-07
-7.0219e-07
-6.74232e-07
-6.48246e-07
-6.24093e-07
-6.01631e-07
-5.80724e-07
-5.61239e-07
-5.43052e-07
-5.26051e-07
-5.1013e-07
-4.952e-07
-4.81179e-07
-4.67999e-07
-4.55599e-07
-4.4393e-07
-4.32951e-07
-4.22627e-07
-4.1293e-07
-4.03839e-07
-3.95336e-07
-3.87411e-07
-3.80057e-07
-3.73278e-07
-3.67081e-07
-3.61489e-07
-3.56539e-07
-3.52289e-07
-3.48833e-07
-3.46309e-07
-3.44919e-07
-3.44955e-07
-3.46827e-07
-3.511e-07
-3.58532e-07
-3.70114e-07
-3.87105e-07
-4.11032e-07
-4.4364e-07
-4.86725e-07
-5.41754e-07
-6.09168e-07
-6.87239e-07
-7.70502e-07
-8.48012e-07
-9.02246e-07
-9.10067e-07
-8.47698e-07
-7.01145e-07
-4.81034e-07
-2.35554e-07
-4.85054e-08
0
0
0
0
)
;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
|
|
4f9096766742e90e4b7a1b16ebba3800bb66e1e3
|
7f6fcbdee329bdeb17ab0da52ac230a4fa9201e2
|
/lab/demo_thrift/gen-cpp/YiService_server.skeleton.cpp
|
669496842afc7821d9b6143224327f57a04ce473
|
[] |
no_license
|
Jevstein/dnpractice
|
d37e1cbcc4eab1799191a9dab9897519991bf6c6
|
238d051b5ddf7ce9e4f26897d65f435670425e68
|
refs/heads/master
| 2023-01-09T07:17:59.374220
| 2020-06-21T15:18:12
| 2020-06-21T15:18:12
| 154,630,992
| 0
| 2
| null | 2022-12-26T20:39:28
| 2018-10-25T07:50:06
|
C++
|
UTF-8
|
C++
| false
| false
| 1,687
|
cpp
|
YiService_server.skeleton.cpp
|
// This autogenerated skeleton file illustrates how to build a server.
// You should copy it to another filename to avoid overwriting it.
#include "YiService.h"
#include <thrift/protocol/TBinaryProtocol.h>
#include <thrift/server/TSimpleServer.h>
#include <thrift/transport/TServerSocket.h>
#include <thrift/transport/TBufferTransports.h>
using namespace ::apache::thrift;
using namespace ::apache::thrift::protocol;
using namespace ::apache::thrift::transport;
using namespace ::apache::thrift::server;
using namespace ::yisrv;
class YiServiceHandler : virtual public YiServiceIf {
public:
YiServiceHandler() {
// Your initialization goes here
}
int32_t GetServerName() {
// Your implementation goes here
printf("GetServerName\n");
}
int32_t GetServerTime() {
// Your implementation goes here
time_t now_time = time(NULL);
printf("now is %d\n", (int)now_time);
return now_time;
}
};
int main(int argc, char **argv) {
int port = 9090;
::apache::thrift::stdcxx::shared_ptr<YiServiceHandler> handler(new YiServiceHandler());
::apache::thrift::stdcxx::shared_ptr<TProcessor> processor(new YiServiceProcessor(handler));
::apache::thrift::stdcxx::shared_ptr<TServerTransport> serverTransport(new TServerSocket(port));
::apache::thrift::stdcxx::shared_ptr<TTransportFactory> transportFactory(new TBufferedTransportFactory());
::apache::thrift::stdcxx::shared_ptr<TProtocolFactory> protocolFactory(new TBinaryProtocolFactory());
TSimpleServer server(processor, serverTransport, transportFactory, protocolFactory);
server.serve();
return 0;
}
//complie:
// $ g++ -o ../../bin/thrift_server *.cpp *.h -lthrift -lthriftnb -ldl -std=c++11
|
b3b00ebd5b5ccdd46cb0db59699492a06fbcf86b
|
9805e69ddb434de50bced715040da538032a4254
|
/Registration_System_4_C.cpp
|
9bbde672d3aee2810248c3f2b88acee3e4e4ab62
|
[] |
no_license
|
Vivekvar/Code-it-Out
|
55b2609fd88fab2a408223b427f4eca75e928604
|
56f284b1f85417564f64a8cfe897939b5bd9465c
|
refs/heads/master
| 2022-06-10T01:36:06.840960
| 2020-05-07T05:11:43
| 2020-05-07T05:11:43
| 255,251,127
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 662
|
cpp
|
Registration_System_4_C.cpp
|
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n;
cin>>n;
string s;
map<string, int>m;
while (n--) {
cin>>s;
if (m.empty()) {
m[s] = 0;
cout<<"OK"<<endl;
}
else {
auto it = m.find(s);
if (it != m.end()) {
int q = it->second;
q++;
cout<<it->first<<q<<endl;
it->second = q;
}
else {
m[s] = 0;
cout<<"OK"<<endl;
}
}
}
return 0;
}
|
1b3625adbf0b3d53f112fc8f39efad321145f5ff
|
addef918477eb71f9be2afe9558e1b98f5aa74c1
|
/Codeforecs/3C.cpp
|
fc175ad08f176e18be13e80af51c31c7de9c0beb
|
[] |
no_license
|
iammarajul/competitive_programming
|
3977b9e1c15808d3a7084af7d1dd64c40a5dccb8
|
4d48578e48b3392bedf82b22281bb16c82ed2a1b
|
refs/heads/master
| 2020-06-04T08:26:05.568287
| 2020-03-08T19:38:18
| 2020-03-08T19:38:18
| 191,943,679
| 1
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 273
|
cpp
|
3C.cpp
|
#include<bits/stdc++.h>
using namespace std;
int main()
{
string s[3];
int cnt1=0,cnt2=0;
cin>>s[0]>>s[1]>>s[2];
for(int i=0;i<2;i++)
{
if(s[i]=='X') cnt1++;
else if(s[i]=='0') cnt2++;
}
if(cnt2>4 || cnt1>5 || cnt2!=cnt1-1)
}
|
2be61372e811bd30de8202c05fd6e9c8ce5e6bd0
|
fae3e1edb067d3b7208341d3179861bf42639787
|
/Unit2.cpp
|
d4d20f37a46daf4ba4f567d707da01416bb34ed1
|
[] |
no_license
|
yuravons/Sale-real-estate
|
2a72adabb04f70c45318d70c7551f9299d1fc03c
|
64f253241029d7cdc171ce8e8b88411cfb7527d1
|
refs/heads/master
| 2020-04-06T20:13:43.501945
| 2018-11-15T20:10:22
| 2018-11-15T20:10:22
| 157,766,192
| 0
| 0
| null | null | null | null |
WINDOWS-1251
|
C++
| false
| false
| 32,351
|
cpp
|
Unit2.cpp
|
#pragma hdrstop
#include "Unit2.h"
#pragma package(smart_init)
#include <fstream>
#include <map>
#include <sstream>
using namespace std;
//перевірка чи стрічка є числом
bool isUint(const string &s)
{
return s.find_first_not_of("0123456789") == string::npos;
}
//приведення до типу string
string CColection :: toString(int _nValue)
{
ostringstream oss;
oss << _nValue;
return oss.str();
}
//зчитування слова із файлу
char CColection :: chRead(char *pTemporaryArray, ifstream &fin,int j)
{
int i = 0;
char ch;
while ((ch = fin.get()) != '|'){
if(isdigit(ch))
throw ReadFileException(3, "You entered a digit instead word!", j + 1);
if (i < 10 && !isspace(ch))
{
pTemporaryArray[i] = ch;
++i;
pTemporaryArray[i] = '\0';
}
else
continue;
}
return *pTemporaryArray;
}
//функція зчитування із файлу та записування у StringGrid
void CColection :: vReadFile(TStringGrid *sg)
{
ifstream fin1("Read.txt");
if (!fin1)
throw OtherException(1, "No file in folder!");
else if(fin1.peek() == EOF)
throw OtherException(2, "File is empty!");
fin1.close();
ifstream fin("Read.txt");
char chInformation[200];
bool isInfo = true;
if(isInfo){
isInfo = false;
fin.getline(chInformation,200) ;
}
int c = 0, count , j = 0;
while(1){
if(sg->Cells[0][j+1] == "")
break;
++j;
}
bool isFlag;
char *pTemporaryArray;
do{
if (fin.eof())
break;
c = 0;
while((fin.get())!='|');
//Type
pTemporaryArray = new char[10];
*pTemporaryArray = chRead(pTemporaryArray, fin, j);
sg->Cells[c][j+1] = pTemporaryArray;
++c;
delete []pTemporaryArray;
if (sg->Cells[0][j+1] == "RP")
isFlag = true;
else if (sg->Cells[0][j+1] == "NRP")
isFlag = false;
//address
pTemporaryArray = new char[10];
*pTemporaryArray = chRead(pTemporaryArray, fin, j);
sg->Cells[c][j+1] = pTemporaryArray;
++c;
delete []pTemporaryArray;
//Owner
pTemporaryArray = new char[10];
*pTemporaryArray = chRead(pTemporaryArray, fin, j);
sg->Cells[c][j+1] = pTemporaryArray;
++c;
delete []pTemporaryArray;
//NumbersRooms
fin >> count;
if (fin.fail())
throw ReadFileException(4, "You don`t entered digit!",j+1);
sg->Cells[c][j+1] = IntToStr(count);
if(IntToStr(count) < 0)
throw ReadFileException(5, "You entered a negative number!",j+1);
++c;
while((fin.get())!='|');
//TotalArea
fin >> count;
if (fin.fail())
throw ReadFileException(4, "You don`t entered digit!",j+1);
sg->Cells[c][j+1] = IntToStr(count);
if(IntToStr(count) < 0)
throw ReadFileException(5, "You entered a negative number!",j+1);
++c;
while((fin.get())!='|');
if(isFlag){
//kitchenArea
fin >> count ;
if (fin.fail())
throw ReadFileException(4, "You don`t entered digit!", j+1);
sg->Cells[c][j+1] = IntToStr(count);
if(IntToStr(count) < 0)
throw ReadFileException(5, "You entered a negative number!",j+1);
++c;
while((fin.get())!='|') ;
//Rooms area
fin >> count ;
if (fin.fail())
throw ReadFileException(4, "You don`t entered digit!",j+1);
sg->Cells[c][j+1] = IntToStr(count);
if(IntToStr(count) < 0)
throw ReadFileException(5, "You entered a negative number!",j+1);
++c;
while((fin.get())!='|');
}
else{
++c;
while((fin.get())!='|') ;
++c;
while((fin.get())!='|');
}
if(isFlag){
//RepairCondition
pTemporaryArray = new char[10];
*pTemporaryArray = chRead(pTemporaryArray, fin,j);
sg->Cells[c][j+1] = pTemporaryArray;
++c;
delete []pTemporaryArray;
}
else{
while((fin.get())!='|');
++c;
}
if(!isFlag){
//Purpose
pTemporaryArray = new char[10];
*pTemporaryArray = chRead(pTemporaryArray, fin,j);
sg->Cells[c][j+1] = pTemporaryArray;
++c;
delete [] pTemporaryArray;
}
else{
while ((fin.get()) != '|');
++c;
}
fin >> count;
if (fin.fail())
throw ReadFileException(4, "You don`t entered digit!",j+1);
while((fin.get())!='|');
sg->Cells[c][j+1] = IntToStr(count);
if(IntToStr(count) < 0)
throw ReadFileException(5, "You entered a negative number!",j+1);
++j;
fin.getline(chInformation,200) ;
}while(1);
fin.close();
}
//створення об'єктів
void CColection :: vCreateObjects(TStringGrid *sg)
{
int i = 0;
while(1){
if(sg->Cells[0][i+1] == ""){
break;
}
else if(sg->Cells[0][i+1]=="RP"){
CResidentialPremises *objR = new CResidentialPremises;
objR->vSetType((sg->Cells[0][i+1]).c_str());
objR->vSetAddress((sg->Cells[1][i+1]).c_str());
objR->vSetOwner((sg->Cells[2][i+1]).c_str());
objR->vSetNumbersRooms(StrToInt(sg->Cells[3][i+1]));
objR->vSetTotalArea(StrToInt(sg->Cells[4][i+1]));
objR->vSetKitchenArea(StrToInt(sg->Cells[5][i+1]));
objR->vSetRoomsArea(StrToInt(sg->Cells[6][i+1]));
objR->vSetRepairCondition((sg->Cells[7][i+1]).c_str());
objR->vSetPrice(StrToInt(sg->Cells[9][i+1]));
ListR.push_back(*objR);
delete objR;
}
else if(sg->Cells[0][i+1]=="NRP"){
CNonResidentialPremises *objN = new CNonResidentialPremises;
objN->vSetType((sg->Cells[0][i+1]).c_str());
objN->vSetAddress((sg->Cells[1][i+1]).c_str());
objN->vSetOwner((sg->Cells[2][i+1]).c_str());
objN->vSetNumbersRooms(StrToInt(sg->Cells[3][i+1]));
objN->vSetTotalArea(StrToInt(sg->Cells[4][i+1]));
objN->vSetPurpose((sg->Cells[8][i+1]).c_str());
objN->vSetPrice(StrToInt(sg->Cells[9][i+1]));
ListN.push_back(*objN);
delete objN;
}
++i;
}
}
//пошук найбільшої площі з усіх
void CColection :: vSearchMaxSquare(TStringGrid *sg)
{
try
{
if(ListR.size() == 0 && ListN.size() == 0)
throw DefinitionException(6,"There are not elements!");
if(ListR.size() == 0)
throw DefinitionException(7,"There are not RP elements, please choose Definition only for NRP!");
if(ListN.size() == 0)
throw DefinitionException(8,"There are not NRP elements, please choose Definition only for RP!");
int k = 0;
CResidentialPremises *obj1 = new CResidentialPremises;
*obj1 = ListR.back();
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR)
if(itR->isDefinitionSquareMax(*obj1))
*obj1 = *itR;
CNonResidentialPremises *obj2 = new CNonResidentialPremises;
*obj2 = ListN.back();
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin();itN != ListN.end();++itN)
if(itN->isDefinitionSquareMax(*obj2))
*obj2 = *itN;
if(obj1->nGetTotalArea() >= obj2->nGetTotalArea()){
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj1->nGetTotalArea()){
itR->vPrintRPInForm(k, sg);
++k;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj1->nGetTotalArea()){
itN->vPrintNRPInForm(k, sg);
++k;
}
}
}
else{
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj2->nGetTotalArea()){
itR->vPrintRPInForm(k, sg);
++k;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj2->nGetTotalArea()){
itN->vPrintNRPInForm(k, sg);
++k;
}
}
}
delete obj1;
delete obj2;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//пошук найменшої площі з усіх
void CColection :: vSearchMinSquare(TStringGrid *sg)
{
try
{
if(ListR.size() == 0 && ListN.size() ==0)
throw DefinitionException(6,"There are not elements!");
if(ListR.size() == 0)
throw DefinitionException(7,"There are not RP elements, please choose Definition only for NRP!");
if(ListN.size()== 0)
throw DefinitionException(8,"There are not NRP elements, please choose Definition only for RP!");
int k = 0;
CResidentialPremises *obj1 = new CResidentialPremises;
*obj1 = ListR.back();
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR)
if(itR->isDefinitionSquareMin(*obj1))
*obj1 = *itR;
CNonResidentialPremises *obj2 = new CNonResidentialPremises;
*obj2 = ListN.back();
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin();itN != ListN.end();++itN)
if(itN->isDefinitionSquareMin(*obj2))
*obj2 = *itN;
if(obj1->nGetTotalArea() >= obj2->nGetTotalArea()){
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj1->nGetTotalArea()){
itR->vPrintRPInForm(k, sg);
++k;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj1->nGetTotalArea()){
itN->vPrintNRPInForm(k, sg);
++k;
}
}
}
else{
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj2->nGetTotalArea()){
itR->vPrintRPInForm(k,sg);
++k;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj2->nGetTotalArea()){
itN->vPrintNRPInForm(k, sg);
++k;
}
}
}
delete obj1;
delete obj2;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//додавання елементу
void CColection :: vAddObjects(TStringGrid *sg)
{
CResidentialPremises *obj1;
CNonResidentialPremises *obj2;
bool isRP;
if(sg->Cells[0][1] == "RP")
isRP = true;
else
isRP = false;
unsigned int i = 0;
if(sg->Cells[0][1] == "" )
throw AddInFormException(9,"You uncorrectly entered type!");
//Адреса
if(sg->Cells[1][1] == "" )
throw AddInFormException(16,"You uncorrectly entered address!");
string sTmpString3 = (sg->Cells[1][1]).c_str();
i = 0;
while(i < sTmpString3.length()){
if(!isalpha(sTmpString3[i]))
throw AddInFormException(16,"You uncorrectly entered address!");
++i;
}
//Власник
if(sg->Cells[2][1] == "")
throw AddInFormException(17,"You uncorrectly entered owner!");
string sTmpString4 = (sg->Cells[2][1]).c_str();
i = 0;
while(i < sTmpString4.length()){
if(!isalpha(sTmpString4[i]))
throw AddInFormException(17,"You uncorrectly entered owner!");
++i;
}
//Кількість кімнат
if(!isUint((sg->Cells[3][1]).c_str()) || (sg->Cells[3][1] == ""))
throw AddInFormException(18,"You don`t entered a number in Number rooms!");
//Загальна площа
if(!isUint((sg->Cells[4][1]).c_str()) || (sg->Cells[4][1] == ""))
throw AddInFormException(19,"You don`t entered a number in Total area!");
if(isRP){
//Тип
obj1 = new CResidentialPremises;
if(sg->Cells[0][1] != "RP")
throw AddInFormException(9,"You don`t entered a right type!");
//Площа кухні
if(!isUint((sg->Cells[5][1]).c_str()) || (sg->Cells[5][1] == ""))
throw AddInFormException(10,"You don`t entered a number in Kitchen area!");
//Площа кімнат
if(!isUint((sg->Cells[6][1]).c_str()) || (sg->Cells[6][1] == ""))
throw AddInFormException(11,"You don`t entered a number in Rooms area!");
//Ціна
if(!isUint((sg->Cells[8][1]).c_str()) || (sg->Cells[8][1] == ""))
throw AddInFormException(13,"You don`t entered a number in Price!");
//чи сума площ не більша за загальну
if(StrToInt(sg->Cells[5][1]) < 0 || StrToInt(sg->Cells[6][1]) < 0 || StrToInt(sg->Cells[8][1]) < 0 ||
StrToInt(sg->Cells[3][1]) < 0 || StrToInt(sg->Cells[4][1]) < 0)
throw AddInFormException(5,"You entered a negative number!");
if((StrToInt(sg->Cells[6][1]) + StrToInt(sg->Cells[5][1]) )
> StrToInt(sg->Cells[4][1]))
throw AddInFormException(12,"Square of Kitchen and Rooms are bigger than Total area!");
//Стан ремонту
if(sg->Cells[7][1] == "")
throw AddInFormException(14,"You uncorrectly entered repair condition!");
string sTmpString1 = (sg->Cells[7][1]).c_str();
i = 0;
while(i < sTmpString1.length()){
if(!isalpha(sTmpString1[i]) )
throw AddInFormException(14,"You uncorrectly entered repair condition!");
++i;
}
}
else if(!isRP){
//Тип
obj2 = new CNonResidentialPremises;
if(sg->Cells[0][1] != "NRP")
throw AddInFormException(9,"You don`t entered a right type!");
//Ціна
if(!isUint((sg->Cells[6][1]).c_str()) || (sg->Cells[6][1] == ""))
throw AddInFormException(13,"You don`t entered a number in Price!");
if(StrToInt(sg->Cells[6][1]) < 0 || StrToInt(sg->Cells[3][1]) < 0 || StrToInt(sg->Cells[4][1]) < 0)
throw AddInFormException(5,"You entered a negative number!");
//Цільове призначення
if(sg->Cells[5][1] == "")
throw AddInFormException(15,"You uncorrectly entered purpose!");
string sTmpString2 = (sg->Cells[5][1]).c_str();
i = 0;
while(i < sTmpString2.length()){
if(!isalpha(sTmpString2[i]))
throw AddInFormException(15,"You uncorrectly entered purpose!");
++i;
}
}
if(isRP){
obj1->vSetType((sg->Cells[0][1]).c_str());
obj1->vSetAddress((sg->Cells[1][1]).c_str());
obj1->vSetOwner((sg->Cells[2][1]).c_str());
obj1->vSetNumbersRooms(StrToInt(sg->Cells[3][1]));
obj1->vSetTotalArea(StrToInt(sg->Cells[4][1]));
obj1->vSetKitchenArea(StrToInt(sg->Cells[5][1]));
obj1->vSetRoomsArea(StrToInt(sg->Cells[6][1]));
obj1->vSetRepairCondition((sg->Cells[7][1]).c_str());
obj1->vSetPrice(StrToInt(sg->Cells[8][1]));
ListR.push_back(*obj1);
delete obj1;
}
else{
obj2->vSetType((sg->Cells[0][1]).c_str());
obj2->vSetAddress((sg->Cells[1][1]).c_str());
obj2->vSetOwner((sg->Cells[2][1]).c_str());
obj2->vSetNumbersRooms(StrToInt(sg->Cells[3][1]));
obj2->vSetTotalArea(StrToInt(sg->Cells[4][1]));
obj2->vSetPurpose((sg->Cells[5][1]).c_str());
obj2->vSetPrice(StrToInt(sg->Cells[6][1]));
ListN.push_back(*obj2);
delete obj2;
}
}
//вивід об'єктів
void CColection :: vPrintObjects(TStringGrid *sg)
{
int i = 0;
for(list <CResidentialPremises> :: iterator itR = ListR.begin();itR != ListR.end();++itR, ++i)
itR->vPrintRPInForm(i, sg);
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin();itN !=ListN.end();++itN,++i)
itN->vPrintNRPInForm(i, sg);
}
//видалення усіх елементів
void CColection :: vDeleteAllObjects(TEdit *ed)
{
ed->Text = IntToStr(CSummator()(ListR,ListN));
ListR.clear();
ListN.clear();
}
//пошук максимальноої площі RP
void CColection :: vSearchMaxSquareRP(TStringGrid *sg)
{
try
{
if(ListR.size()== 0)
throw DefinitionException(7,"There are not RP elements!");
int k = 0;
CResidentialPremises *obj1 = new CResidentialPremises;
*obj1 = ListR.back();
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR)
if(itR->isDefinitionSquareMax(*obj1))
*obj1 = *itR;
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj1->nGetTotalArea()){
itR->vPrintRPInForm(k, sg);
++k;
}
}
delete obj1;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//пошук мінімальної площі RP
void CColection :: vSearchMinSquareRP(TStringGrid *sg)
{
try
{
if(ListR.size() ==0)
throw DefinitionException(7,"There are not RP elements!");
int k = 0;
CResidentialPremises *obj1 = new CResidentialPremises;
*obj1 = ListR.back();
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR)
if(itR->isDefinitionSquareMin(*obj1))
*obj1 = *itR;
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(itR->nGetTotalArea() == obj1->nGetTotalArea()){
itR->vPrintRPInForm(k,sg);
++k;
}
}
delete obj1;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//пошук максимальної площі NRP
void CColection :: vSearchMaxSquareNRP(TStringGrid *sg)
{
try
{
if(ListN.size() == 0)
throw DefinitionException(8,"There are not NRP elements!");
int k = 0;
CNonResidentialPremises *obj1 = new CNonResidentialPremises;
*obj1 = ListN.back();
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN)
if(itN->isDefinitionSquareMax(*obj1))
*obj1 = *itN;
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj1->nGetTotalArea()){
itN->vPrintNRPInForm(k,sg);
++k;
}
}
delete obj1;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//пошук мінімальна площі NRP
void CColection :: vSearchMinSquareNRP(TStringGrid *sg)
{
try
{
if(ListN.size() == 0)
throw DefinitionException(8,"There are not NRP elements!");
int k = 0;
CNonResidentialPremises *obj1 = new CNonResidentialPremises;
*obj1 = ListN.back();
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN)
if(itN->isDefinitionSquareMin(*obj1))
*obj1 = *itN;
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(itN->nGetTotalArea() == obj1->nGetTotalArea()){
itN->vPrintNRPInForm(k,sg);
++k;
}
}
delete obj1;
}
catch(DefinitionException exp)
{
exp.vvDisplay();
}
}
//пошук власників, які мають більше двох нерухомостей
void CColection :: vSearchOwnerWith2(TStringGrid *sg)
{
//контейнер для пошуку власника,який має більше двох приміщень
map <string,int> mOwnersMap;
map <string, int> :: iterator i;
string sOwners;
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR)
sOwners += itR->sGetOwner() + " ";
for(list <CNonResidentialPremises> :: iterator itN =ListN.begin(); itN != ListN.end();++itN)
sOwners += itN->sGetOwner() + " ";
istringstream ist(sOwners);
while (ist >> sOwners)
mOwnersMap[sOwners]++;
int j =0;
for (i = mOwnersMap.begin(); i != mOwnersMap.end(); ++i){
if(i->second >= 2){
for(list <CResidentialPremises> :: iterator itR = ListR.begin(); itR != ListR.end();++itR){
if(i->first == itR->sGetOwner()){
itR->vPrintRPInForm(j,sg);
++j;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
if(i->first == itN->sGetOwner())
{
itN->vPrintNRPInForm(j,sg);
++j;
}
}
}
}
}
//видалення обраного елемента
void CColection :: vDeleteChooseObject(TStringGrid *sg, TEdit *ed)
{
unsigned int nTop = sg->Selection.Top;
if(sg->Cells[0][nTop] == "")
throw OtherException(21,"You don`t choosed element!");
list <CResidentialPremises> :: iterator itR = ListR.begin();
list <CNonResidentialPremises> :: iterator itN = ListN.begin();
for(unsigned int i = 0; i < (ListR.size() + ListN.size())*25;++i){
if(i == nTop && sg->Cells[0][i] == "RP"){
ed->Text = IntToStr(CSummator()(*itR));
ListR.erase(itR);
break;
}
else if(i == nTop && sg->Cells[0][i] == "NRP"){
ed->Text = IntToStr(CSummator()(*itN));
ListN.erase(itN);
break;
}
if(sg->Cells[0][i] == "RP")
++itR;
else if(sg->Cells[0][i] == "NRP")
++itN;
}
for(int i = 0;i < sg->ColCount;i++)
for(int j = 1; j < sg->RowCount;j++)
sg->Cells[i][j] = "";
vPrintObjects(sg);
}
//збереження у файл
void CColection :: vSaveToFile()
{
TStringList *List = new TStringList();
List->Clear();
string sStr;
for(list <CResidentialPremises> :: iterator itR = ListR.begin();itR != ListR.end();++itR){
sStr = "";
sStr +="|";
sStr += itR->sGetType()+"|" + itR->sGetAddress() + "|" + itR->sGetOwner() +"|" +
toString(itR->nGetNumberRooms()) + "|" + toString(itR->nGetTotalArea()) + "|"
+toString(itR->nGetKitchenArea()) + "|" + toString(itR->nGetRoomsArea()) +
"|" + itR->sGetRepairCondition() + "|" + toString(itR->nGetPrice()) + "|" ;
List->Add(sStr.c_str());
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin(); itN != ListN.end();++itN){
sStr = "";
sStr +="|";
sStr += itN->sGetType()+ "|" + itN->sGetAddress() + "|" + itN->sGetOwner()
+ "|" + toString(itN->nGetNumberRooms()) + "|" + toString(itN->nGetTotalArea()) +
"|" +itN->sGetPurpose() + "|" + toString(itN->nGetPrice()) + "|" ;
List->Add(sStr.c_str());
}
List->SaveToFile("Result.txt");
}
//пошук за заданим параметром
bool CColection :: isSeachByParametr(int _nCheckSearch ,TEdit *ed, TStringGrid *sg)
{
int j = 0;
if(ed->Text == "")
throw SearchInFormException(22,"You don`t entered a parametr!");
bool isCheckedSearch, isWasDeletingElement = false;
for(list <CResidentialPremises> :: iterator itR = ListR.begin();itR != ListR.end();++itR){
isCheckedSearch = false;
switch(_nCheckSearch){
case 1:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(16,"You uncorrectly entered address!");
++i;
}
if(itR->sGetAddress() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 2:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(17,"You uncorrectly entered owner!");
++i;
}
if(itR->sGetOwner() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 3:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(18,"You don`t entered a number in number rooms!");
if(itR->nGetNumberRooms() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 4:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(19,"You don`t write a number in total area!");
if(itR->nGetTotalArea() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 5:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(10,"You don`t entered a number in kitchen square!");
if(itR->nGetKitchenArea() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 6:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(11,"You don`t entered a number in rooms area!");
if(itR->nGetRoomsArea() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 7:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(14,"You uncorrectly entered repair condition!");
++i;
}
if(itR->sGetRepairCondition() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 8:
break;
case 9:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(13,"You don`t entered a number in price!");
if(itR->nGetPrice() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
}
if(!isCheckedSearch && !isWasDeletingElement)
isWasDeletingElement = false;
else
isWasDeletingElement = true;
if(isCheckedSearch){
itR->vPrintRPInForm(j,sg);
++j;
}
}
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin();itN != ListN.end();++itN){
isCheckedSearch = false;
switch(_nCheckSearch){
case 1:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(16,"You uncorrectly entered address!");
++i;
}
if(itN ->sGetAddress() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 2:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(17,"You uncorrectly entered owner!");
++i;
}
if(itN->sGetOwner() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 3:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(18,"You don`t entered a number in number rooms!");
if(itN->nGetNumberRooms() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 4:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(19,"You don`t entered a number in total area!");
if(itN->nGetTotalArea() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
case 8:{
string sTmpString = ed->Text.c_str();
unsigned int i = 0;
while(i < sTmpString.length()){
if(!isalpha(sTmpString[i]))
throw SearchInFormException(15,"You uncorrectly entered purpose!");
++i;
}
if(itN->sGetPurpose() == ed->Text.c_str())
isCheckedSearch = true;
break;
}
case 9:{
if(!isUint(ed->Text.c_str()) || (ed->Text.c_str() == ""))
throw SearchInFormException(13,"You don`t entered a number in price!");
if(itN->nGetPrice() == StrToInt(ed->Text))
isCheckedSearch = true;
break;
}
default:
break;
}
if(!isCheckedSearch && !isWasDeletingElement)
isWasDeletingElement = false;
else
isWasDeletingElement = true;
if(isCheckedSearch){
itN->vPrintNRPInForm(j,sg);
++j ;
}
}
if((!isCheckedSearch) && (isWasDeletingElement == false) )
isWasDeletingElement = false;
else
isWasDeletingElement = true;
return isWasDeletingElement;
}
//сортування за цільовим призначенням
void CColection :: vSortingPurpose(TStringGrid *sg)
{
int i = 0;
ListN.sort(isSortPurpose);
for(list <CNonResidentialPremises> :: iterator itN = ListN.begin();itN != ListN.end();++itN, ++i)
itN->vPrintNRPInForm(i,sg);
}
//сортування за адресою
void CColection :: vSortingAddress(TStringGrid *sg)
{
int i = 0;
ListR.sort(isSortAddressR);
ListN.sort(isSortAddressN);
list <CNonResidentialPremises> :: iterator itN = ListN.begin();
list <CResidentialPremises> :: iterator itR = ListR.begin();
while(1){
if(itN == ListN.end() && itR == ListR.end())
break;
if(itR->sGetAddress() <= itN->sGetAddress()){
itR->vPrintRPInForm(i,sg);
++itR;
++i;
if(itR == ListR.end()){
while(itN != ListN.end()){
itN->vPrintNRPInForm(i,sg);
++itN;
++i;
}
break;
}
}
else if(itN->sGetAddress() < itR->sGetAddress()){
itN->vPrintNRPInForm(i,sg);
++itN;
++i;
if(itN == ListN.end()){
while(itR != ListR.end()){
itR->vPrintRPInForm(i,sg);
++itR;
++i;
}
break;
}
}
}
}
//сортування за кількістю кімнат
void CColection :: vSortingNumberRooms(TStringGrid *sg)
{
int i = 0;
ListR.sort(isSortNumberRoomsR);
ListN.sort(isSortNumberRoomsN);
list <CNonResidentialPremises> :: iterator itN = ListN.begin();
list <CResidentialPremises> :: iterator itR = ListR.begin();
while(1){
if(itN == ListN.end() && itR == ListR.end())
break;
if(itR->nGetNumberRooms() <= itN->nGetNumberRooms()){
itR->vPrintRPInForm(i,sg);
++itR;
++i;
if(itR == ListR.end()){
while(itN != ListN.end()){
itN->vPrintNRPInForm(i,sg);
++itN;
++i;
}
break;
}
}
else if(itN->nGetNumberRooms() < itR->nGetNumberRooms()){
itN->vPrintNRPInForm(i,sg);
++itN;
++i;
if(itN == ListN.end()){
while(itR != ListR.end()){
itR->vPrintRPInForm(i,sg);
++itR;
++i;
}
break;
}
}
}
}
|
006d1ba2486b8d88e38fd826ab776b0f9e7a64f6
|
ffecc2faee340865d375270c4b3af358ceb2c8df
|
/src/plug/game/drawer/drawer_synth.cpp
|
97d92be5b273c81c6030a82665bec6b90d811dcb
|
[
"MIT"
] |
permissive
|
ompu/ompu
|
c81a184162ff7b166b85e8748b2aefd6b6869010
|
c45d292a0af1b50039db9aa79e444fb7019615e9
|
refs/heads/master
| 2018-12-18T13:56:36.786538
| 2018-09-14T15:37:33
| 2018-09-14T15:37:33
| 103,842,388
| 4
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 344
|
cpp
|
drawer_synth.cpp
|
#include "ompu/plug/game/drawer.hpp"
#include <boost/core/ignore_unused.hpp>
namespace ompu { namespace plug { namespace game {
void Drawer::partial(ompu::ui::ModWheel const& c) const
{
boost::ignore_unused(c);
}
void Drawer::partial(ompu::ui::PitchWheel const& c) const
{
boost::ignore_unused(c);
}
}}} // ompu
|
ebc7f8202cc17341f9ec35f47998f06e2fd7b616
|
9e9c547c04137d8b3c86697ec9dfbc3a66af2226
|
/spintegers/cpp/sparseInt.h
|
d89628672eb9f486e507381b1dbd48a9a854be88
|
[] |
no_license
|
matthewjpyates/sparseintegers
|
55d839fc3ee8207e1ce31c6431b6cd17fdaffcda
|
fe9d232da7eaf0399eb9deba2dbd15a64a3c5478
|
refs/heads/master
| 2022-06-11T02:05:59.421362
| 2020-05-01T09:10:43
| 2020-05-01T09:10:43
| 260,418,567
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 40,326
|
h
|
sparseInt.h
|
#ifndef SPARSEINT_H
#define SPARSEINT_H
#include <vector>
#include <utility>
#include <string>
#include <iostream>
#include <math.h>
template<typename S=unsigned short, typename T=unsigned long>
//template<typename T=unsigned long>
class SparseInt {
public:
T topBit;
std::vector<S> diffs;
std::vector<bool> signs; // true = positive
// false = negitive
/*
* IMPORTANT: New Position must be greater than or
* equal to old position
*
* takes a new positive postion and
* adds it to the sparese int as a
* difference from the last
*/
SparseInt& operator=(const T& other)
{
(*this)=SparseInt(other);
return this;
}
SparseInt& operator=(const long long& other)
{
(*this)=SparseInt(other);
return this;
}
SparseInt operator+(const SparseInt<S,T>& other)
{
SparseInt<S,T> out;
this->add(out,other);
return out;
}
SparseInt operator-(const SparseInt<S,T>& other)
{
SparseInt<S,T> out;
this->sub(out,other);
return out;
}
SparseInt operator*(const SparseInt<S,T>& other)
{
SparseInt<S,T> out;
this->multSparse(out,other);
return out;
}
SparseInt operator/(const SparseInt<S,T>& other)
{
SparseInt<S,T> out;
this->div(out,other);
return out;
}
SparseInt operator%(const SparseInt<S,T>& other)
{
SparseInt<S,T> out;
this->mod(out,other);
return out;
}
bool operator==(const SparseInt<S,T>& other)
{
return this->eq(other);
}
bool operator==(const long long other)
{
SparseInt<S,T> temp = SparseInt<S,T>(other);
return this->eq(temp);
}
bool operator<(const SparseInt<S,T>& other)
{
return this->lt(other);
}
bool operator>(const SparseInt<S,T>& other)
{
return this->gt(other);
}
bool operator<=(const SparseInt<S,T>& other)
{
return this->lte(other);
}
bool operator>=(const SparseInt<S,T>& other)
{
return this->gte(other);
}
bool operator!=(const SparseInt<S,T>& other)
{
return this->neq(other);
}
bool operator!=(const long long & other)
{
SparseInt<S,T> temp = SparseInt<S,T>(other);
return this->neq(temp);
}
// loops through the bits of the number
void resetTopBit()
{
S* diffArr = &this->diffs[0];
this->topBit = 0;
for(T ii=0;ii<this->diffs.size();ii++)
this->topBit += diffArr[ii];
}
S addPosIndex(S newPos, S oldPos)
{
if(signs.size()==0) // if there is no previous bit add the actual position
{
addPosDiff(newPos);
}
else if(newPos==oldPos)
{ // is they are same position either carry or cancel the bit
if(signs.back()) // based on the sign
{
diffs.back() += 1;
return oldPos + 1;
}
else
{ // pop from both lists to remove the position
removeBackDiff();
return oldPos;
}
}
else if(newPos==oldPos+1) // last bit is to close have to solve for sparseness
{
if(signs.back()) // last bit is positive
{ // ++ ==> -0+
signs.pop_back();
signs.push_back(false);
addPosDiff(newPos-oldPos+1);
}
else
{ // last bit is negitive
signs.back() = true; // -+ ==> +0
}
}
else
{
addPosDiff(newPos-oldPos);
}
return oldPos + this->diffs.back();
}
void addListOfPostions(std::vector<T> pos)
{
if(pos.size()==0)
return;
if(pos.size()==1)
{
addPosIndex(0,pos[0]);
return;
}
SparseInt<S,T> tmp, swp;
tmp = SparseInt<S,T>();
tmp.diffs.push_back(0);
tmp.signs.push_back(true);
if(pos.size()>0)
{
for(T ii =0;ii<pos.size();ii++)
{
tmp.diffs[0] = pos[ii];
tmp.topBit = pos[ii];
this->add(swp,tmp);
this->diffs = swp.diffs;
this->signs = swp.signs;
this->topBit = swp.topBit;
}
}
}
void removeBackDiff() // removes the last sign and difference
{
signs.pop_back();
diffs.pop_back();
}
bool isZero() const
{
return this->signs.size()==0;
}
void negateAndCopy(SparseInt<S,T>& out) const
{
out = *this;
for(T ii=0; ii<out.signs.size();ii++)
out.signs[ii] = !out.signs[ii];
}
// performs checks to make use that addSparse is not handed any empty
// operands
void add(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(other.isZero())
result = *this;
else if(this->isZero())
result = other;
else this->addDiffs(result, other);
}
void multSparse(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(other.isZero() || this->isZero()) // if either is 0 return 0
{
result = SparseInt<S,T>(0);
return;
}
else if(this->diffs.size()==1) // if you are of size 1 then you are
{ // multiple of 2 and it is just a shitf
result = other; // make result other
if(this->signs.front())
result.posBitInc(this->diffs.front());
else
result.negBitInc(this->diffs.front());
return;
}
else if(other.diffs.size()==1) // just like above only other is the one that
{ // is shifted by
result = *this; // make result this
if(other.signs.front())
result.posBitInc(other.diffs.front());
else
result.negBitInc(other.diffs.front());
return;
}
// at this point both numbers have at least 2 diffs
T otherSize = other.diffs.size();
T selfSize = this->diffs.size();
result = SparseInt<S,T>(0);
T place = 0;
if(otherSize>selfSize)
{
for(T ii=0; ii<otherSize;ii++)
{
SparseInt<S,T> temp = SparseInt<S,T>(0);
place += other.diffs[ii];
this->bitShift(temp,place,other.signs[ii]);
result.increment(temp);
}
}
else
{
for(T ii=0; ii<selfSize;ii++)
{
SparseInt<S,T> temp = SparseInt<S,T>(0);
place += this->diffs[ii];
other.bitShift(temp,place,this->signs[ii]);
result.increment(temp);
}
}
return;
}
// performs the same checks as add, but flips the result if self is empty
// also flips other beofre calling addSparse
void sub(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(other.isZero())
result = *this;
else if(this->isZero())
other.negateAndCopy(result);
else {
SparseInt<S,T> temp;
other.negateAndCopy(temp);
this->addDiffs(result, temp);
}
}
void increment(const SparseInt<S,T>& other)
{
SparseInt<S,T> temp;
this->add(temp,other);
this->diffs = temp.diffs;
this->signs = temp.signs;
}
void decrement(const SparseInt<S,T>& other)
{
SparseInt<S,T> temp;
this->sub(temp,other);
this->diffs = temp.diffs;
this->signs = temp.signs;
}
// returns this == other
bool eq(const SparseInt<S,T>& other) const
{
if(this->signs.size() != other.signs.size())
return false;
for(T ii = 0; ii<this->signs.size(); ii++)
{
if(this->signs[ii]!=other.signs[ii] ||this->diffs[ii]!=other.diffs[ii])
return false;
}
return true;
}
// returns this != other
bool neq(const SparseInt<S,T>& other) const
{
return (!this->eq(other));
}
// returns this < other
bool lt(const SparseInt<S,T>& other) const
{
if(this->isZero())
{
if(other.isZero())
return false;
return other.signs.back(); // return if other is +
}
if(other.isZero()) // already know that this is nonZero
return (!this->signs.back()); // return if this is -
// now both numbers are non zero
// check signs
if(this->signs.back()) // this is +
{
if(!other.signs.back()) // for no numbers can +<- so...
return false;
}
else // this is -
{
if(other.signs.back()) // for all numbers -<+ so...
return true;
}
// now both numbers are non zero with the same sign
T ii = this->diffs.size() - 1;
T jj = other.diffs.size() - 1;
T thisTop = this->topBit;
T otherTop = other.topBit;
while(true)
{
if(thisTop>otherTop)
return !this->signs[ii];
else if(thisTop == otherTop)
{
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii];
}
else if(thisTop< otherTop)
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii];
else
return this->signs[ii];
if(ii == 0 || jj ==0 )
{
break;
}
thisTop -= this->diffs[ii];
otherTop -= other.diffs[jj];
ii--;
jj--;
}
if(((int)ii -1)>((int)jj-1))
return !this->signs[ii-1]; // this is bigger
if(((int)jj -1)>((int)ii-1))
return other.signs[jj-1]; // other is bigger
return false;
}
void powMod(SparseInt<S,T>& out,const SparseInt<S,T>& power, const SparseInt<S,T>& modulo) const
{
if(modulo.isZero())
{
throw "mod by zero error";
//std::cerr << "mod by zero error in pow mod\n";
return;
}
if(power.isZero())
{
if(modulo.diffs.size()==1 && modulo.diffs[0]==0 && modulo.signs[0])
{
out = SparseInt<S,T>();
return;
}
SparseInt<S,T> temp = SparseInt<S,T>();
temp.diffs.push_back(0);
temp.signs.push_back(true);
temp.topBit=0;
temp.mod(out,modulo);
return;
}
if(!power.signs.back())
{
std::cerr << "Sparse ints can't handle negitive powers";
return;
}
if(this->isZero())
{
out= SparseInt<S,T>();
return;
}
if(power.diffs.size()==1 && power.diffs[0]==0)
{
this->mod(out,modulo);
return;
}
out = SparseInt<S,T>(1);
bool sn = false;
SparseInt<S,T> temp = *this;
SparseInt<S,T> swap;
for(T ii =0; ii<power.diffs.size(); ii++)
{
//sn=!power.signs[ii];
for(T jj =0; power.diffs[ii]>0; jj++)
{
temp.multSparse(swap,temp);
swap.resetTopBit();
swap.mod(temp,modulo);
if (jj == power.diffs[ii]-1) break;
if(sn)
{
temp.multSparse(swap,out);
swap.resetTopBit();
swap.mod(out,modulo);
}
}
if(!sn)
{
temp.multSparse(swap,out);
swap.resetTopBit();
swap.mod(out,modulo);
}
sn=!power.signs[ii];
}
return;
}
// returns this <= other
bool lte(const SparseInt<S,T>& other) const
{
if(this->isZero())
{
if(other.isZero())
return true;
return other.signs.back(); // return if other is +
}
if(other.isZero()) // already know that this is nonZero
return (!this->signs.back()); // return if this is -
// now both numbers are non zero
// check signs
if(this->signs.back()) // this is +
{
if(!other.signs.back()) // for no numbers can +<- so...
return false;
}
else // this is -
{
if(other.signs.back()) // for all numbers -<+ so...
return true;
}
// now both numbers are non zero with the same sign
T ii = this->diffs.size() - 1;
T jj = other.diffs.size() - 1;
T thisTop = this->topBit;
T otherTop = other.topBit;
while(true)
{
if(thisTop>otherTop)
return !this->signs[ii];
else if(thisTop == otherTop)
{
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii];
}
else if(thisTop< otherTop)
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii];
else
return this->signs[ii];
if(ii == 0 || jj ==0 )
{
break;
}
thisTop -= this->diffs[ii];
otherTop -= other.diffs[jj];
ii--;
jj--;
}
if(ii!=0)
return !this->signs[ii-1]; // this is bigger
else if(jj!=0)
return other.signs[jj-1]; // other is bigger
return true;
}
// this is used in div and mod
// 0 means this > other
// 1 means this < other
// 2 means this == other
char cmpQuoRem(const SparseInt<S,T>& other) const
{
if(this->isZero())
{
if(other.isZero())
return 2;
return other.signs.back() ? 1: 0; // return if other is +
}
if(other.isZero()) // already know that this is nonZero
return (!this->signs.back()) ? 1 :0; // return if this is -
// now both numbers are non zero
// check signs
if(this->signs.back()) // this is +
{
if(!other.signs.back()) // for no numbers can +<- so...
return 0;
}
else // this is -
{
if(other.signs.back()) // for all numbers -<+ so...
return 1;
}
// now both numbers are non zero with the same sign
T ii = this->diffs.size() - 1;
T jj = other.diffs.size() - 1;
T thisTop = this->topBit;
T otherTop = other.topBit;
while(true)
{
if(thisTop>otherTop)
return !this->signs[ii];
else if(thisTop == otherTop)
{
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii];
}
else if(thisTop< otherTop)
{
if(this->signs[ii]!=other.signs[jj])
return !this->signs[ii] ? 1: 0;
else
return this->signs[ii] ? 1: 0;
}
if(ii == 0 || jj ==0 )
{
break;
}
thisTop -= this->diffs[ii];
otherTop -= other.diffs[jj];
ii--;
jj--;
}
if(((int)ii -1)>((int)jj-1))
return !this->signs[ii-1] ? 1 : 0; // this is bigger
else if(((int)jj -1)>((int)ii-1))
return other.signs[jj-1] ? 1 : 0; // other is bigger
return 2;
}
// returns >
bool gt(const SparseInt<S,T>& other) const
{
return !this->lte(other);
}
void toBits(std::vector<T> &out) const
{
T place =0;
for(T ii=0; ii<((T)(this->diffs.size()));ii++)
{
place += ((T)(this->diffs[ii]));
out.push_back(place);
}
}
void div(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(this->signs.back()==other.signs.back())
{
if(this->signs.back())
{
this->divSparse(result,other);
}
else
{
SparseInt<S,T> temp,tempOther;
this->negateAndCopy(temp);
other.negateAndCopy(tempOther);
temp.divSparse(result,tempOther);
}
}
else
{
SparseInt<S,T> temp;
if(this->signs.back())
{
other.negateAndCopy(temp);
this->divSparse(result,temp);
}
else
{
this->negateAndCopy(temp);
temp.divSparse(result,other);
}
result.negateAndCopy(result);
}
}
// makes result = this/other
// only works for positive and positive numbers
void divSparse(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(other.isZero())
{
std::cerr << "Divide by 0 error, jerk\n";
return;
}
if(this->isZero())
{
result=*this;
return;
}
if(other.diffs.size()==1 && other.diffs[0]==0) // either 1 or -1
{
if(other.signs[0]) // this/1
{
result=*this;
return;
}
// this/-1
this->negateAndCopy(result);
return;
}
char cmp = this->cmpQuoRem(other);
if(cmp ==2)
{
result = SparseInt<S,T>(1);
return;
}
if(cmp == 1)
{
result = SparseInt<S,T>();
return;
}
// now this > other
// other is non zero
// this is non zero
// other is not 1
// time for math
// set up ...
T diff;
SparseInt<S,T> numerator, denominator, swap, swapOther;
// lets do this...
// ... LEROOOOOY JEEEENKINS!!!!
numerator = *this; // set the numerator as this
result = SparseInt<S,T>(0); // zero out the resulti
swap.diffs.push_back(0);
swap.signs.push_back(true);
while(numerator.gte(other))
{
if(numerator.topBit == other.topBit)
{
swap.diffs[0] = 0;
result.add(swapOther,swap); // calculate result + theShift
result = swapOther; // store the new result
return;
}
diff = numerator.topBit - other.topBit -1;
swap.diffs[0] =diff;
result.add(swapOther,swap); // calculate result + theShift
result = swapOther; // store the new result
other.leftShift(denominator,diff);
numerator.sub(swapOther,denominator); // subtract the numerator from the denominator
numerator = swapOther; // store the new numerator
numerator.resetTopBit();
}
return;
}
void mod(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
if(this->signs.back()==other.signs.back())
{
if(this->signs.back())
{
this->modSparse(result,other);
}
else
{
SparseInt<S,T> temp,tempOther;
this->negateAndCopy(temp);
other.negateAndCopy(tempOther);
temp.modSparse(result,tempOther);
result.negateAndCopy(result);
}
}
else
{
SparseInt<S,T> temp;
if(this->signs.back())
{
other.negateAndCopy(temp);
this->modSparse(result,temp);
}
else
{
this->negateAndCopy(temp);
temp.modSparse(result,other);
result.negateAndCopy(result);
}
}
}
// makes result = this % other
// only works for positive and positive numbers
void modSparse(SparseInt<S,T>& result, const SparseInt<S,T>& other) const
{
result = SparseInt<S,T>(0);
if(other.isZero())
{
std::cerr << "Mod by 0 error, jerk\n";
return;
}
if(this->isZero())
{
result=*this;
return;
}
if(other.diffs.size()==1 && other.diffs[0]==0) // either 1 or -1
{
if(other.signs[0]) // this%1
{
return;
}
// this/-1
this->negateAndCopy(result);
return;
}
char cmp = this->cmpQuoRem(other);
if(cmp ==2)
{
result = SparseInt<S,T>(0);
return;
}
if(cmp == 1)
{
result = *this;
return;
}
// now this > other
// other is non zero
// this is non zero
// other is not 1
// time for math
// set up ...
T diff;
SparseInt<S,T> denominator, swap;
// lets do this...
// ... LEROOOOOY JEEEENKINS!!!!
result = *this; // set the numerator as this
while(result.gte(other))
{
if(result.topBit == other.topBit)
{
result.sub(swap,other);
result = swap;
return;
}
diff = result.topBit - other.topBit -1;
other.leftShift(denominator,diff);
result.sub(swap,denominator); // subtract the numerator from the denominator
result = swap;
result.resetTopBit();
}
return;
}
void modNegSparse(SparseInt<S,T>& result, const SparseInt<S,T>& other, bool isEqual) const
{
if(other.isZero())
{
std::cerr << "Mod by 0 error, jerk\n";
return;
}
if(this->isZero())
{
result=*this;
return;
}
if(other.diffs.size()==1 && other.diffs[0]==0) // either 1 or -1
{
if(other.signs[0]) // this%1
{
result=SparseInt<S,T>(0);
return;
}
// this/-1
this->negateAndCopy(result);
return;
}
char cmp = this->cmpQuoRem(other);
if(cmp ==2)
{
result = SparseInt<S,T>(0);
return;
}
if(cmp == 1)
{
result = *this;
return;
}
// now this > other
// other is non zero
// this is non zero
// other is not 1
// time for math
// set up ...
T diff;
SparseInt<S,T> denominator, swap;
// lets do this...
// ... LEROOOOOY JEEEENKINS!!!!
result = *this; // set the numerator as this
while(result.gte(other))
{
if(result.topBit == other.topBit)
{
result.sub(swap,other);
result = swap;
return;
}
diff = result.topBit - other.topBit -1;
other.leftShift(denominator,diff);
result.sub(swap,denominator); // subtract the numerator from the denominator
result = swap;
result.resetTopBit();
}
return;
}
void abs(SparseInt<S,T>& out)
{
if(this->signs.back())
{
out = *this;
return;
}
this->negateAndCopy(out);
return;
}
// this gets the chunk that the number can be shifted over in
// division
void getChunk(SparseInt<S,T> &out,T& amount) const
{
out = SparseInt<S,T>(0);
T place = this->diffs.size() -1;
T firstDiff = this->topBit;
while((amount - this->diffs[place])>0)
{
amount -= this->diffs[place];
out.diffs.insert(out.diffs.begin(),this->diffs[place]);
out.signs.insert(out.signs.begin(),this->signs[place]);
if(place == 0)
break;
place--;
}
for(T ii = 0; ii< out.diffs.size(); ii++)
firstDiff -= out.diffs[ii];
if(out.diffs.size()>0)
out.diffs[0]=firstDiff;
else
{
out = SparseInt<S,T>(1);
}
}
// makes sure that carries are done properly
// probably the most used method in the whole
// libary
void carryLogic(const T newBit,const bool &newSign)
{
if(this->isZero())
{
this->diffs.push_back(newBit);
this->signs.push_back(newSign);
this->topBit = newBit;
return;
}
if(this->topBit>newBit)
std::cerr << "\n Error \n";
if(this->topBit==newBit)
{
if(this->signs.back()==newSign)
{
this->diffs.back() += 1;
this->topBit += 1;
return;
}
this->topBit -= this->diffs.back();
this->diffs.pop_back();
this->signs.pop_back();
return;
}
if(this->topBit+1==newBit)
{
if(this->signs.back()==newSign)
{
this->signs.back() = !signs.back();
this->diffs.push_back(2);
this->signs.push_back(newSign);
this->topBit += 2;
return;
}
this->signs.back() = !(this->signs.back());
return;
}
this->diffs.push_back(newBit-this->topBit);
this->topBit = newBit;
this->signs.push_back(newSign);
return;
}
bool gte( const SparseInt<S,T>& other) const
{
return !this->lt(other);
}
void addDiffs(SparseInt<S,T>& result, const SparseInt<S,T> other) const
{
T selfIndex = 0;
T otherIndex = 0;
T selfPlace = 0;
T otherPlace = 0;
result = SparseInt<S,T>();
while(((T)selfPlace) <((T) (this->diffs.size())) || ((T)otherPlace) < ((T)(other.diffs.size())))
{
if(((T)selfPlace) < ((T)(this->diffs.size())) &&((T) otherPlace) <((T) (other.diffs.size())))
{
if(((T)(this->diffs[selfPlace]))+selfIndex==((T)(other.diffs[otherPlace]))+otherIndex)
{
if(this->signs[selfPlace]==other.signs[otherPlace])
{
result.carryLogic(((T)(this->diffs[selfPlace]))+selfIndex + 1, this->signs[selfPlace]);
}
otherIndex += other.diffs[otherPlace];
selfIndex += this->diffs[selfPlace];
selfPlace++;
otherPlace++;
}
else if(this->diffs[selfPlace]+selfIndex>other.diffs[otherPlace]+otherIndex)
{
result.carryLogic(((T)other.diffs[otherPlace])+otherIndex, ((T)other.signs[otherPlace]));
otherIndex += other.diffs[otherPlace];
otherPlace++;
}
else
{
result.carryLogic(((T)this->diffs[selfPlace]+selfIndex), this->signs[selfPlace]);
selfIndex += this->diffs[selfPlace];
selfPlace++;
}
}
else if(selfPlace < this->diffs.size())
{
for(T ii = selfPlace; ii < this->diffs.size(); ii++)
{
result.carryLogic(((T) this->diffs[ii]+selfIndex), this->signs[ii]);
selfIndex += this->diffs[ii];
}
break;
}
else
{
for(T ii = otherPlace; ii < other.diffs.size(); ii++)
{
result.carryLogic(((T)other.diffs[ii]+otherIndex), other.signs[ii]);
otherIndex += other.diffs[ii];
}
break;
}
}
//result.resetTopBit();
return;
}
long long toLongLong()
{
long long out=0;
T place = 0;
for(T ii=0;ii<this->signs.size(); ii++)
{
place += this->diffs[ii];
out += pow(2,(place))*((this->signs[ii])?1:-1);
}
return out;
}
S addNegIndex(S newPos, S oldPos)
{
if(signs.size()==0) // if there is no previous bit add the actual position
addNegDiff(newPos);
else if(newPos==oldPos)
{ // is they are same position either carry or cancel the bit
if(!signs.back()) // based on the sign
{
diffs.back() += 1;
return oldPos +1;
}
else // pop from both lists to remove the position
removeBackDiff();
return oldPos;
}
else if(newPos==oldPos+1) // last bit is to close have to solve for sparseness
if(!signs.back()) // last bit is negitive
{ // -- ==> +0-
signs.back() = true;
addNegDiff(newPos-oldPos+1);
}
else // last bit is positive
signs.back() = false; // +- ==> -0
else
addNegDiff(newPos-oldPos);
return oldPos + this->diffs.back();
}
void addPosDiff(S diff) // puts a new positive difference on the number
{
signs.push_back(true);
diffs.push_back(diff);
}
std::string bitsToString() // loops through the number and returns a string
{ // that has all the indecies with their signs
std::string out = " ";
T place = 0;
if(this->signs.size()==0)
return "";
else
{
place = this->diffs[0];
out += ((this->signs[0])?1:-1)*diffs[0];
}
for(T ii=1; ii<this->signs.size(); ii++)
{
place += this->diffs[ii];
out += " " + ((this->signs[0])?1:-1)*place;
}
return out;
}
void printBits() const // loops through the number and returns a string
{ // that has all the indecies with their signs
T place = 0;
if(this->signs.size()==0)
return;
else
{
place = this->diffs[0];
std::cout << ((this->signs[0])?'+':'-') << (unsigned int) diffs[0];
}
for(T ii=1; ii<this->signs.size(); ii++)
{
place += this->diffs[ii];
std::cout << " " << ((this->signs[ii])?'+':'-') << place;
}
std::cout << "\n";
return;
}
std::string diffsToString() // loops through the number and returns a string
{ // prints the differences with the corrasponding sign
std::string out;
out = "";
if(this->signs.size()==0)
return "";
else
out += ((this->signs[0])?1:-1)*(this->diffs[0]);
for(T ii=1; ii<this->signs.size(); ii++)
out += " " + ((this->signs[ii])?1:-1)*this->diffs[ii];
return out;
}
// only will increase position
void posBitInc(S shift) // shifts the number over by the shift
{
if(this->signs.empty())
return;
this->diffs.front() += shift;
}
// will shift the bits ncreasesition
void bitShift(SparseInt<S,T>& out, S shift, bool sign) const // shifts the number over by the shift
{
out = *this;
if(sign)
out.posBitInc(shift);
else
out.negBitInc(shift);
return;
}
// only will increase position
void negBitInc(S shift) // shifts the number over by the shift
{ // also flips the signs
if(this->signs.empty())
return;
this->diffs.front() += shift;
for(T ii=0; ii<this->signs.size(); ii++)
this->signs[ii] = !(this->signs[ii]);
}
void addNegDiff(S diff) // places a new negitive difference
{
this->signs.push_back(false);
this->diffs.push_back(diff);
}
int toInt() const // loops through the diffs and converts them to indecies
{ // subtacting away the negitive signed bits
int out=0;
T place = 0;
for(T ii=0;ii<this->signs.size(); ii++)
{
place += this->diffs[ii];
out += pow(2,(place))*((this->signs[ii])?1:-1);
}
return out;
}
// returns this >> shift
// FIXME this does not work quite yet
void rightShift(SparseInt<S,T>& result, T other) const
{
result = *this;
T temp;
while(result.diffs.size()>0 && result.diffs[0] < other)
{
temp = result.diffs[0];
result.diffs.erase (result.diffs.begin());
result.signs.erase (result.signs.begin());
other -= temp;
}
if(result.isZero())
{
if((!(this->isZero())) && (!(this->signs.back())))
{
result.diffs.push_back(0);
result.signs.push_back(false);
}
return;
}
result.diffs[0] -= other;
}
void leftShift(SparseInt<S,T>& result, const T &other) const
{
result = *this;
if(result.isZero())
return;
result.diffs[0] += other;
}
T getLastBit(T lastIndex)
{
return lastIndex + this->diffs.back();
}
SparseInt(long long inNumber = 0)
{
if(inNumber ==0)
return;
S index = 0;
S last = 0;
bool inc = false;
if(inNumber>0)
{
while(inNumber != 0)
{
if(inNumber&1)
{
last = addPosIndex(index,last);
inNumber -= 1;
}
index++;
inNumber = inNumber/2;
}
}
else
{
while(inNumber != 0)
{
if(inNumber&1)
{
last = addNegIndex(index,last);
inNumber += 1;
}
index++;
inNumber = inNumber/2;
}
}
resetTopBit();
}
};
template<typename S, typename T>
bool operator==(long long other, const SparseInt<S,T>& x) {
return x->eq(SparseInt<S,T>(other));
}
#endif
|
5401e1841550a08bc7a0b7a35f50b7d853b18aee
|
181c548cbaa0c20607def382c18421296438b3a9
|
/src/MyGlWindow.cpp
|
d9396e14a88de09d45e20fecc4f1652368c4cbf9
|
[
"MIT"
] |
permissive
|
kbladin/shading_tests
|
04606e9caa9166e9d8cd2a5bbec5b8adaa656825
|
a6bb8be87843ad4c49b7b6201e235ae84659c4c3
|
refs/heads/master
| 2021-01-10T19:41:27.923118
| 2019-02-25T06:21:50
| 2019-02-25T06:21:50
| 20,775,677
| 0
| 0
| null | null | null | null |
UTF-8
|
C++
| false
| false
| 12,479
|
cpp
|
MyGlWindow.cpp
|
#include <iostream>
#include <sstream>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include <AntTweakBar.h>
#include "../include/Scene.h"
#include "../include/MyGlWindow.h"
#include "../include/SettingsManager.h"
Scene* MyGlWindow::scene_;
bool MyGlWindow::mouse_pressed_;
TwBar* MyGlWindow::load_file_bar_;
MyGlWindow::MyGlWindow()
{
if (InitGLFW() != 0)
std::cout << "ERROR: Failed to initialize GLFW!" << std::endl;
if (InitOpenGL() != 0)
std::cout << "ERROR: Failed to initialize GLEW!" << std::endl;
int width, height;
glfwGetWindowSize(window_, &width, &height);
float aspect_ratio = static_cast<float>(width) / height;
scene_ = new Scene::Scene(new Camera(glm::vec3(0.0f, 0.0f, 0.0f),
200.0f,
0.1f,
aspect_ratio));
InitTW();
RenderFunction = &Scene::Render;
}
MyGlWindow::~MyGlWindow()
{
glfwTerminate();
TwTerminate();
delete scene_;
}
int MyGlWindow::InitGLFW()
{
// Initialize glfw
if (!glfwInit())
return -1;
// Modern OpenGL
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
// Create a windowed mode window and its OpenGL context
window_ = glfwCreateWindow(640, 480, "Shader Tests", NULL, NULL);
if (!window_)
{
glfwTerminate();
return -1;
}
// Make the window_'s context current
glfwMakeContextCurrent(window_);
// Set callback functions
//glfwSetErrorCallback(window_, (GLFWerrorcallbackfun)ErrorCallback);
glfwSetMouseButtonCallback(window_, (GLFWmousebuttonfun)MouseButtonCallback);
glfwSetCursorPosCallback(window_, (GLFWcursorposfun)MousePosCallback);
glfwSetScrollCallback(window_, (GLFWscrollfun)ScrollCallback);
glfwSetWindowSizeCallback(window_, WindowSizeCallback);
glfwSetKeyCallback(window_, (GLFWkeyfun)KeyCallback);
glfwSetCharCallback(window_, (GLFWcharfun)CharCallback);
return 0;
}
int MyGlWindow::InitOpenGL()
{
glClearColor(0.1f,0.1f,0.2f,0.0f);
glEnable(GL_DEPTH_TEST);
// Initialize GLEW
glewExperimental = true; // Needed in core profile
if (glewInit() != GLEW_OK) {
return -1;
}
return 0;
}
int MyGlWindow::InitTW()
{
int width, height;
glfwGetWindowSize(window_, &width, &height);
// Initialize anttweakbar
TwInit(TW_OPENGL_CORE, NULL);
TwWindowSize(width*2, height*2);
TwBar *menu_bar;
menu_bar = TwNewBar("Menu");
//TwAddSeparator(menu_bar, NULL, " group='File'");
//TwAddSeparator(menu_bar, NULL, " group='Shader properties'");
TwAddButton(menu_bar, "Load obj mesh", PreLoadButtonCallback, scene_, " group=File ");
//TwAddButton(load_file_bar, "Load", LoadButtonCallback, scene_, "");
TwAddVarRW(
menu_bar,
"Number of blur loops",
TW_TYPE_UINT8,
&SettingsManager::Instance()->n_blur_loops,
"min=0 max=16 step=1 group='Shader properties' ");
TwAddVarRW(
menu_bar,
"Blur filter size",
TW_TYPE_UINT8,
&SettingsManager::Instance()->filter_size,
" group='Shader properties' ");
TwAddVarRW(
menu_bar,
"Multiplier 1",
TW_TYPE_FLOAT,
&SettingsManager::Instance()->multiplier1,
"min=-1.0 max=2.0 step=0.1 group='Shader properties' ");
TwAddVarRW(
menu_bar,
"Multiplier 2",
TW_TYPE_FLOAT,
&SettingsManager::Instance()->multiplier2,
"min=-1.0 max=2.0 step=0.1 group='Shader properties' ");
TwAddVarRW(
menu_bar,
"Ambient light intensity",
TW_TYPE_FLOAT,
&scene_->amb_light_.intensity,
"min=0.0 max=1.0 step=0.01 group='Shader properties' ");
TwAddVarRW(
menu_bar,
"Ambient light color",
TW_TYPE_COLOR3F,
&scene_->amb_light_.color,
" group='Shader properties' ");
/* TwEnumVal renderEV[] = { { MyGlWindow::PHONG, "Phong"},
{ MyGlWindow::TOON, "Toon" } };
*/
for (int i = 0; i < SettingsManager::Instance()->N_LIGHTSOURCES; ++i)
{
std::stringstream group_name;
group_name << "group = 'Light " << i << " properties' ";
TwAddVarRW(
menu_bar,
"Intensity",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].intensity,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Color",
TW_TYPE_COLOR3F,
&scene_->light_sources_[i].color,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Position",
TW_TYPE_DIR3F,
&scene_->light_sources_[i].position,
group_name.str().c_str());
/* TwAddVarRW(
menu_bar,
"Directional",
TW_TYPE_BOOL32,
&scene_->light_sources_[i].position.w,
group_name.str().c_str());*/
TwAddVarRW(
menu_bar,
"Constant attenuation",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].constant_attenuation,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Linear attenuation",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].linear_attenuation,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Quadratic attenuation",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].quadratic_attenuation,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Spot cutoff",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].spot_cutoff,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Spot exponent",
TW_TYPE_FLOAT,
&scene_->light_sources_[i].spot_exponent,
group_name.str().c_str());
TwAddVarRW(
menu_bar,
"Spot direction",
TW_TYPE_DIR3F,
&scene_->light_sources_[i].spot_direction.x,
group_name.str().c_str());
TwDefine(" Menu/Intensity min=0.0 max=100.0 step=1.0 ");
TwDefine(" Menu/'Constant attenuation' min=0.0 max=1.0 step=0.1 ");
TwDefine(" Menu/'Linear attenuation' min=0.0 max=1.0 step=0.1 ");
TwDefine(" Menu/'Quadratic attenuation' min=0.0 max=1.0 step=0.1 ");
TwDefine(" Menu/'Spot cutoff' min=0.0 max=100.0 step=1.0 ");
TwDefine(" Menu/'Spot exponent' min=0.0 max=100.0 step=1.0 ");
}
TwDefine(" Menu size='300 800' "); // resize bar
TwDefine(" Menu movable=false "); // resize bar
TwDefine(" Menu resizable=false "); // resize bar
TwDefine(" Menu color='64 64 64' alpha=255 text=light "); // light-green bar with dark text color
TwDefine(" Menu alwaysbottom=true "); // resize bar
TwDefine(" GLOBAL fontsize=3 ");
TwDefine(" GLOBAL fontresizable=false "); // font cannot be resized
return 0;
}
void MyGlWindow::RenderScene(void (Scene::*RenderFunction)(int, int), Scene* s)
{
int width, height;
glfwGetWindowSize(window_, &width, &height);
(s->*RenderFunction)(width, height);
}
void MyGlWindow::MainLoop()
{
float current_time = glfwGetTime();
int FPS = 0;
while (!glfwWindowShouldClose(window_))
{
UpdateMousePos();
scene_->Update();
RenderScene(RenderFunction, scene_);
int width, height;
glfwGetWindowSize(window_, &width, &height);
TwWindowSize(width*2, height*2);
TwDraw(); // draw the tweak bar(s)
// Print FPS
++FPS;
if((glfwGetTime() - current_time) > 1){
std::string title = "Shader Tests, ";
std::ostringstream ss;
ss << FPS;
std::string s(ss.str());
title.append(s);
title.append(" FPS");
glfwSetWindowTitle (window_, title.c_str());
FPS = 0;
current_time = glfwGetTime();
}
glfwSwapBuffers(window_);
glfwPollEvents();
}
}
void MyGlWindow::UpdateMousePos()
{
double cursor_pos_x, cursor_pos_y;
glfwGetCursorPos(window_, &cursor_pos_x, &cursor_pos_y);
if (mouse_pressed_)
{
double diff_x = prev_cursor_pos_x_ - cursor_pos_x;
double diff_y = prev_cursor_pos_y_ - cursor_pos_y;
scene_->GetCamera()->IncrementXrotation(-diff_y*0.01);
scene_->GetCamera()->IncrementYrotation(-diff_x*0.01);
}
prev_cursor_pos_x_ = cursor_pos_x;
prev_cursor_pos_y_ = cursor_pos_y;
}
void MyGlWindow::ErrorCallback(int error, const char* description)
{
fputs(description, stderr);
}
void MyGlWindow::KeyCallback(
GLFWwindow* window,
int key,
int scancode,
int action,
int mods)
{
switch (key)
{
case GLFW_KEY_ESCAPE :
{
glfwSetWindowShouldClose(window, true);
}
}
// Convert from glfw3 to glfw2 which Anttweakbar understands
switch(key) {
case GLFW_KEY_UP: key = 256 + 27; break;
case GLFW_KEY_DOWN: key = 256 + 28; break;
case GLFW_KEY_LEFT: key = 256 + 29; break;
case GLFW_KEY_RIGHT: key = 256 + 30; break;
case GLFW_KEY_LEFT_SHIFT : key = 256 + 31; break;
case GLFW_KEY_RIGHT_SHIFT : key = 256 + 32; break;
case GLFW_KEY_LEFT_CONTROL : key = 256 + 33; break;
case GLFW_KEY_RIGHT_CONTROL : key = 256 + 34; break;
case GLFW_KEY_LEFT_ALT : key = 256 + 35; break;
case GLFW_KEY_RIGHT_ALT : key = 256 + 36; break;
case GLFW_KEY_TAB : key = 256 + 37; break;
case GLFW_KEY_ENTER : key = 256 + 38; break;
case GLFW_KEY_BACKSPACE : key = 256 + 39; break;
case GLFW_KEY_INSERT : key = 256 + 40; break;
case GLFW_KEY_DELETE : key = 256 + 41; break;
case GLFW_KEY_PAGE_UP : key = 256 + 42; break;
case GLFW_KEY_PAGE_DOWN : key = 256 + 43; break;
case GLFW_KEY_HOME : key = 256 + 44; break;
case GLFW_KEY_END : key = 256 + 45; break;
default: break;
}
TwEventKeyGLFW(key, action);
}
void MyGlWindow::ScrollCallback(GLFWwindow* window, double x_pos, double y_pos)
{
scene_->GetCamera()->IncrementZposition(y_pos);
TwEventMouseWheelGLFW(y_pos);
}
void MyGlWindow::MouseButtonCallback(
GLFWwindow* window,
int button,
int action,
int mods)
{
if (button == GLFW_MOUSE_BUTTON_2 && action == GLFW_PRESS)
mouse_pressed_ = true;
else if (button == GLFW_MOUSE_BUTTON_2 && action == GLFW_RELEASE)
mouse_pressed_ = false;
TwEventMouseButtonGLFW(button, action);
}
void MyGlWindow::WindowSizeCallback(GLFWwindow* window, int width, int height)
{
scene_->GetCamera()->SetAspectRatio(width / static_cast<float>(height));
}
void MyGlWindow::MousePosCallback(GLFWwindow* window, double xpos, double ypos)
{
TwMouseMotion(int(xpos*2), int(ypos*2));
}
void MyGlWindow::CharCallback(GLFWwindow* window, int codepoint)
{
TwEventCharGLFW(codepoint, GLFW_PRESS);
}
void TW_CALL MyGlWindow::PreLoadButtonCallback(void* client_data)
{
load_file_bar_ = TwNewBar("Load obj file");
TwAddVarRW(load_file_bar_, "File path", TW_TYPE_CSSTRING(SettingsManager::Instance()->FILENAME_SIZE), SettingsManager::Instance()->file_to_load, "");
TwAddButton(load_file_bar_, "Load", LoadButtonCallback, scene_, "");
TwAddButton(load_file_bar_, "Cancel", CancelButtonCallback, load_file_bar_, "");
TwDefine(" 'Load obj file' size='300 800' "); // resize bar
TwDefine(" 'Load obj file' position='16 16' "); // resize bar
TwDefine(" 'Load obj file' movable=false "); // resize bar
TwDefine(" 'Load obj file' resizable=false "); // resize bar
TwDefine(" 'Load obj file' alwaystop=true "); // resize bar
TwDefine(" 'Load obj file' color='100 100 100' alpha=255 text=light "); // light-green bar with dark text color
}
void TW_CALL MyGlWindow::LoadButtonCallback(void* client_data)
{
MyMesh* new_mesh = new MyMesh(SettingsManager::Instance()->file_to_load);
if (!new_mesh->IsCorrupt())
{
TwBar *mesh_bar;
std::stringstream bar_name;
bar_name << "Mesh " << scene_->GetNumberOfMeshes();
mesh_bar = TwNewBar(bar_name.str().c_str());
TwAddVarRW(
mesh_bar,
"Position",
TW_TYPE_DIR3F,
&new_mesh->position_,
"");
TwAddVarRW(
mesh_bar,
"Rotation",
TW_TYPE_QUAT4F,
&new_mesh->quaternion_,
"");
scene_->AddMesh(new_mesh);
TwDeleteBar(load_file_bar_);
}
else
delete new_mesh;
}
void TW_CALL MyGlWindow::CancelButtonCallback(void* client_data)
{
TwDeleteBar(static_cast<TwBar*>(client_data));
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.