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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d1cf6445149bfc118de3f3372207b5555b88943e | 7947ad268579a1a62d3d3b70da884340838d9aec | /point.cpp | da2a5b42640a125a2af24b19c52bb944560925df | [] | no_license | cheinemann/clever_raytracer_name | 622bc50e4c773646cef36d24c9ed168ba495e31d | 827d3bcd09d87260610f0115f22f59b0873fcf6e | refs/heads/master | 2020-03-18T13:13:21.881237 | 2018-05-24T21:10:52 | 2018-05-24T21:10:52 | 134,769,101 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | point.cpp | #include <math.h>
#include "point.hpp"
#include "ray.hpp"
Point::Point()
{
}
Point::Point(const double a):x(0), y(0), z(0)
{
}
Point::Point(const double a, const double b, const double c):x(0), y(0), z(0)
{
}
Point::Point(const Point& p):x(p.x), y(p.y), z(p.z)
{
}
Point::~Point()
{
}
Point& Point::operator=(const Point& rhs)
{
if(this == &rhs)
{
return (*this);
}
x = rhs.x;
y = rhs.y;
z = rhs.z;
return (*this);
}
double Point::distance(const Point& p) const
{
return (sqrt((x - p.x) * (x - p.x) + (y - p.y) * (y - p.y) + (z - p.z) * (z - p.z)));
}
Point Point::operator^(const Point& p)
{
return(Point(y * p.z - z * p.y, z * p.x - x * p.z, x * p.y - y * p.x));
}
double Point::length(void)
{
return (sqrt(x * x + y * y + z * z));
}
Point Point::operator- (const Point& p) const
{
return (Point(x - p.x, y - p.y, z - p.z));
}
Point Point::operator+(const raytrace::Vect& v) const
{
return (Point(x + v.x, y + v.y, z + v.z));
}
|
03c184d65c834485b28f0ec452627558368f0a11 | 7cd8b14de39c83edaf72fa9bc5647d40347046e6 | /遊戲成品/Main.cpp | a71af039548ac756b8bfa955b26d1fed832ef0eb | [] | no_license | jadonlkketc/1092-programing | 62a27ebdc085ed403102092430cfd2976a8bbd22 | 044bfc993efaf3652b2509596dd39fd2a141eabe | refs/heads/main | 2023-05-03T21:22:32.265568 | 2021-05-29T22:36:59 | 2021-05-29T22:36:59 | 343,701,690 | 0 | 2 | null | null | null | null | BIG5 | C++ | false | false | 3,705 | cpp | Main.cpp | #include<iostream>
#include<iomanip>
#include <conio.h>
#include"Sudoku.h"
using namespace std;
int main() {
Sudoku action;
char location;
//第一頁
cout << "PC:你好,我是PC,我想和您玩一個遊戲。" << endl
<< "我這邊有一個白紙,請你填入任意格子來出一個數獨題目給我。" << endl
<< "而我會盡我所能的解出答案。" << endl << endl << endl
<< "白紙:" << endl;
action.printGrid();
cout << setw(20)<<" " << "PC:按下Enter按鍵繼續";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');//下一步,並執行清空畫面的指令
system("cls");
//第二頁
cout << "PC:看到下面那一張白紙了嗎?" << endl
<< "邊框有英文字母,您可以透過輸入的方式讓這個白紙有任何變化" << endl
<< "不過請您輸入符合數獨規則" << endl
<< "規則如下:(在下一頁)"<<endl;
cout << "白紙:"<<endl;
action.printGrid();
cout << setw(20) << " " << "PC:按下Enter按鍵繼續";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');//下一步,並執行清空畫面的指令
system("cls");
//第三頁
cout << "PC:數獨的玩法非常簡單,只有一條規則:" << endl
<< "每一列、每一行和每個九宮格內均有" << endl
<< "1至9的數字,但不可以重複。" << endl << endl
<< "PC:不過一旦你違反這個規則,我會視為你作弊," << endl
<< "你就會判定敗北。"<<endl;
cout << "白紙:" << endl;
action.printGrid();
cout << setw(20) << " " << "PC:按下Enter按鍵繼續";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');//下一步,並執行清空畫面的指令
system("cls");
//第四頁
cout << "白紙:" << endl;
action.printGrid();
cout << endl
<< "PC:輸入2字母(位置)和數字來修改白紙上的訊息" << endl
<< "當你修改結束後按下ESC按鍵即可結束,而我會開始解題"<<endl;
cout << setw(20) << " " << "PC:按下Enter按鍵繼續";
cin.ignore(std::numeric_limits<streamsize>::max(), '\n');//下一步,並執行清空畫面的指令
system("cls");
cout << "題目紙:" << endl;
action.printGrid();
cout << "輸入兩個英文(大寫與小寫)數字以及一個數字來修改題目值(若不需要直接按下esc)"<<endl;
char a, b;
int c;
while (true)
{
if (_kbhit())
{
if (_getch() == 27) //如果按下了ESC建則跳出迴圈
{
system("cls");
break;
}
else {
cin >> a >> b >> c;
if (a < b) {//防呆,使用者可任意順序輸入
char swap;
swap = a;
a = b;
b = swap;
}
if (a >= 97 && a <= 105 && b >= 65&&b<= 73&&c>=1&&c<=9) {//防呆2 如果輸入不切實際的東西則要避免
action.setPuzzle(a - 97, b - 65, c);
system("cls");
cout << "題目紙:" << endl;
action.printGrid();
cout << "輸入兩個英文(大寫與小寫)數字以及一個數字來修改題目值(若不需要直接按下esc)" << endl;
}
else {
system("cls");
cout << "題目紙:" << endl;
action.printGrid();
cout << "輸入不正確,再輸入一次" << endl;
cout << "輸入兩個英文(大寫與小寫)數字以及一個數字來修改題目值(若不需要直接按下esc)" << endl;
}
}
}
}
system("cls");
if (!action.isValid()) {
cout << "嘿!不公平,你亂輸入一通" << endl;
}
else if (action.search())
{
cout << "PC:解答:" << endl;
action.printGrid();
}
else
cout << "PC:這不可能,我居然輸了,此題無解。" << endl;
return 0;
} |
d9a7bda342802728e489ccaea258692d5c16b1b8 | c7f307e9d3b95a6b8875940b89e225ac3a4e34a5 | /semantic_map/src/semantic_map_main.cpp | 2a3dd1fdb7de3f6a5b24115252785158f06c9f17 | [] | no_license | strands-project/strands_3d_mapping | e540c6ab1da3ce047df4b739b357c36ad992981f | 28ee7a6b6ab6f591de201bd0a6e8a37c5a57a9ea | refs/heads/hydro-devel | 2021-01-23T21:27:31.872040 | 2017-05-05T07:13:55 | 2017-05-05T07:13:55 | 11,306,586 | 23 | 28 | null | 2022-08-30T10:53:40 | 2013-07-10T08:32:49 | C++ | UTF-8 | C++ | false | false | 390 | cpp | semantic_map_main.cpp | #include "semantic_map/semantic_map_node.h"
int main(int argc, char **argv)
{
// Set up ROS.
ros::init(argc, argv, "Semantic_map_node");
ros::NodeHandle n;
ros::NodeHandle aRosNode("~");
SemanticMapNode<pcl::PointXYZRGB> aSemanticMapNode(aRosNode);
ros::Rate loop_rate(10);
while (ros::ok())
{
ros::spinOnce();
loop_rate.sleep();
}
}
|
9026f10484f286ec8cbe168e497756a65b3c164c | 94903d3084f03c1255701126edb23095522b3583 | /0303 Range Sum Query - Immutable.cpp | 2245007653acfe8c758b590a5282bf3e448b2e5d | [] | no_license | xieh1987/MyLeetCodeCpp | dcf786f4c5504e063ab30adcbb87436fc6067fb0 | 9fff547aa12cf64b801092d175b34caf8e56336f | refs/heads/master | 2021-08-08T03:07:54.297810 | 2021-07-16T23:21:53 | 2021-07-16T23:21:53 | 23,158,836 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | cpp | 0303 Range Sum Query - Immutable.cpp | class NumArray {
public:
vector<int> num_array = {};
NumArray(vector<int>& nums) {
for (auto it=nums.begin();it!=nums.end();++it)
num_array.push_back(*it);
}
int sumRange(int left, int right) {
int res = 0;
while (left<=right)
{
res += this->num_array[left++];
}
return res;
}
};
/**
* Your NumArray object will be instantiated and called as such:
* NumArray* obj = new NumArray(nums);
* int param_1 = obj->sumRange(left,right);
*/
|
29bc19251cce180421eef2c6b92c06909f121537 | 0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8 | /Prague/CodeGen/idlc/idl/namecontext/SequenceType.cpp | 9aeb8c459b61230d12e9152573c79f83826aea71 | [] | no_license | seth1002/antivirus-1 | 9dfbadc68e16e51f141ac8b3bb283c1d25792572 | 3752a3b20e1a8390f0889f6192ee6b851e99e8a4 | refs/heads/master | 2020-07-15T00:30:19.131934 | 2016-07-21T13:59:11 | 2016-07-21T13:59:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 821 | cpp | SequenceType.cpp | #include "Context.hpp"
#include "Sequence.hpp"
namespace idl {
size_t SequenceType::getNumberOfItems() const {
return _size;
}
void SequenceType::setType(Type::Ptr type, size_t size) {
NamePath path;
path.push_back("sequence");
//path.insert(path.end(), type->getNamePath().begin(), type->getNamePath().end());
setNamePath( path, type->getNamePath().str(), Name() );
Type::setType(type);
//_type = type->getWeak();
_size = size;
}
//Type::Ptr SequenceType::getType() const {
// return _type.lock().get();
//}
size_t SequenceType::getSize() const {
const size_t headerSize = 4; /// where the actual sequence length saved
return headerSize + _size*getType()->getSize();
}
/*const Struct::Entries& Struct::getEntries() const {
return _entries;
}*/
} //namespace idl
|
9973b1a658ebb5cef56e678edcecfcfced089fea | 15bcb1f8bc02319735aebf4da423e0ba113b32f5 | /library/system/clock.cpp | 735742b3f2dbb41351b5748bed0b0dc3fb9a5199 | [] | no_license | joshguffin/dev | 3ced3e7bf027c630eab347dbc637f5b6b65ee406 | 291079663efa3e15a6a96a4f758078bf61a3a2bc | refs/heads/master | 2021-01-10T01:01:52.228872 | 2013-09-22T20:00:18 | 2013-09-22T20:08:18 | 5,392,339 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,945 | cpp | clock.cpp | #include "clock.h"
#include <boost/date_time/posix_time/posix_time_types.hpp>
#include <boost/date_time/posix_time/time_formatters.hpp>
#include <stdio.h>
/*
namespace SystemLib {
using namespace boost::posix_time;
using namespace boost::gregorian;
Clock&
Clock::Instance()
{
static Clock clock;
return clock;
}
Clock::Clock()
: trueStartup_(microsec_clock::local_time())
, adjustmentExists_(false)
{
readAdjustmentFile();
timeAdjustment();
}
void
Clock::readAdjustmentFile()
{
ptime now = microsec_clock::local_time();
std::string fakeDateString = "20110102";
std::string fakeTimeString = "12:30:02";
time_duration duration = duration_from_string(fakeTimeString);
fakeStartup_ = fakeDate(fakeDateString);
fakeStartup_ += fakeTime(fakeTimeString);
}
Clock::TimeStamp
Clock::fakeDate(const std::string& date)
{
bool invalidFakeTime
int yyyymmdd = atoi(date.c_str());
int days = yyyymmdd % 100;
yyyymmdd -= days;
yyyymmdd /= 100;
int months = yyyymmdd % 100;
yyyymmdd -= months;
yyyymmdd /= 100;
int years = yyyymmdd;
return ptime(date(years, months, days));
}
void
Clock::timeAdjustment()
{
now_ = microsec_clock::local_time();
if (adjustmentExists_) {
// set the date
static ptime epoch(date(1970,1,1));
now_ =
time_duration duration = time - epoch;
//
int hours = 12;
int minutes = 5;
int seconds = 3;
Duration adjusted(hours, minutes, seconds);
now_ -= adjusted;
}
time_ = ToTimeT(now_);
}
const char*
Clock::MillisecondPrecisionTimestamp()
{
ptime now = microsec_clock::local_time();
time_duration tod = now.time_of_day();
double timestamp = to_fractional_timestamp(now);
static char buffer[14];
sprintf(&buffer[0], "%.3lf", timestamp);
return buffer;
}
const char*
Clock::MicrosecondPrecisionTimestamp()
{
ptime now = microsec_clock::local_time();
time_duration tod = now.time_of_day();
double timestamp = to_fractional_timestamp(now);
static char buffer[17];
sprintf(&buffer[0], "%.6lf", timestamp);
return buffer;
}
const char*
Clock::MillisecondPrecisionTime()
{
ptime now = microsec_clock::local_time();
time_duration tod = now.time_of_day();
static char buffer[13];
sprintf(&buffer[0],
"%02d:%02d:%02d.%03ld",
tod.hours(),
tod.minutes(),
tod.seconds(),
tod.fractional_seconds() / 1000);
return buffer;
}
const char*
Clock::MicrosecondPrecisionTime()
{
ptime now = microsec_clock::local_time();
time_duration tod = now.time_of_day();
static char buffer[16];
sprintf(&buffer[0],
"%02d:%02d:%02d.%06ld",
tod.hours(),
tod.minutes(),
tod.seconds(),
tod.fractional_seconds());
return buffer;
}
const char*
Clock::SecondPrecisionTime()
{
ptime now = second_clock::local_time();
time_duration tod = now.time_of_day();
static char buffer[9];
sprintf(buffer, "%02d:%02d:%02d", tod.hours(), tod.minutes(), tod.seconds());
return buffer;
}
std::string
Clock::yyyymmddString()
{
ptime now = second_clock::local_time();
date today = now.date();
int year = static_cast<int>(today.year());
int month = static_cast<int>(today.month());
int day = static_cast<int>(today.day());
static char buffer[9];
sprintf(buffer, "%d%02d%02d", year, month, day);
return std::string(buffer);
}
int
Clock::YYYYMMDD()
{
ptime now = second_clock::local_time();
date today = now.date();
int yyyymmdd_value;
yyyymmdd_value = today.day();
yyyymmdd_value += today.month() * 100;
yyyymmdd_value += today.year() * 10000;
return yyyymmdd_value;
}
time_t
Clock::ToTimeT(const TimeStamp& time)
{
static ptime epoch(date(1970,1,1));
time_duration duration = time - epoch;
return static_cast<time_t>(duration.total_seconds());
}
double
Clock::ToFractionalTimestamp(const TimeStamp& time)
{
static ptime epoch(date(1970,1,1));
time_duration duration = time - epoch;
return static_cast<double>(duration.total_microseconds()) / 1E6;
}
timeval
Clock::ToTimeval(const Duration& length)
{
struct timeval tv;
tv.tv_sec = length.total_seconds();
tv.tv_usec = length.total_microseconds() - 1000000L * tv.tv_sec;
return tv;
}
Clock::TimeStamp
Clock::FromFractionalTimestamp(double timestamp)
{
static ptime epoch(date(1970,1,1));
return epoch + microseconds(timestamp * 1E6);
}
Clock::TimeStamp
Clock::Midnight()
{
ptime now = second_clock::local_time();
date today = now.date();
ptime today_midnight(today);
return today_midnight;
}
Clock::TimeStamp
Clock::MidnightTomorrow()
{
ptime now = second_clock::local_time();
date today = now.date();
date tomorrow = today + days(1);
ptime tomorrow_midnight(tomorrow);
return tomorrow_midnight;
}
} // end of namespace SystemLib
*/
|
ab3355015be169489be653fa4cdd31cd56eb02b5 | 0c31ee6983af7844accbe6cbe7c0fe2c5e94ed0a | /src/gard.cpp | 2449c165b2b2c5b4b4957660f1ff5a570750c652 | [] | no_license | SergiuBabin/Tema1_PA | 2ad34a692ac72046f10dba2b8532a44edbe99ae9 | 3dbec83cebf1f99d70cae6187e6ea06778b1dc9b | refs/heads/master | 2022-08-17T09:48:10.000084 | 2020-05-28T12:20:04 | 2020-05-28T12:20:04 | 267,577,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,882 | cpp | gard.cpp | #include <bits/stdc++.h>
#include <unordered_set>
using namespace std;
#define IN 1000000007
// Structura pentru obiectele de tip Gard
struct Gard {
int start;
int end;
Gard(int _start, int _end) : start(_start), end(_end) {}
};
// Comparator pentru sortare crescatoare
bool comp(Gard &e1, Gard &e2) {
if (1.0*e1.start < 1.0*e2.start)
return true;
else if (1.0*e1.start > 1.0*e2.start)
return false;
return (1.0*e1.end > 1.0*e2.end);
}
class Task {
public:
void solve() {
read_input();
print_output(get_result());
}
private:
// n -> numarul de garduri
// gard -> vector de tip gard
int n;
vector<Gard> gard;
// Citire input din fisier
void read_input() {
ifstream fin("gard.in");
fin >> n;
for (int i = 0, start, end; i < n; i++) {
fin >> start >> end;
gard.push_back(Gard(start, end));
}
fin.close();
}
// Rezolvare folosind algoritm Greedy
unsigned int get_result() {
// Sortarea vectorului de tip Gard
sort(gard.begin(), gard.end(), comp);
// Obiect pentru a memora gardul precedent
Gard mid = Gard(gard[0].start, gard[0].end);
unsigned int rez = 0;
// Verificare coliziuni si gasire bucati de gard redundante
for (int i = 1; i < gard.size(); i++) {
if (gard[i].start >= mid.start && gard[i].end <= mid.end) {
rez++;
continue;
}
mid.start = gard[i].start;
mid.end = gard[i].end;
}
return rez;
}
// Printare rezultat
void print_output(unsigned int n) {
ofstream fout("gard.out");
fout << n << '\n';
fout.close();
}
};
int main() {
Task *task = new Task();
task->solve();
delete task;
return 0;
}
|
3be405c3a737fac1b73464917d7de3b039fa8d20 | 087bfb31e3d795a3a3d6c9274e90ac3883f4591c | /Array/AvgOfArray.cpp | 5e3bad51766b5e0d0aec90003ac2e8dfaecff4ea | [] | no_license | vivek-gurjar/Data-Structures-Using-Cpp | fbaf954b622bdc9f8c43a8829e4bc21b62f375ae | 83bcac5ee01c27061e13381b4ed90cbf3b8c55a3 | refs/heads/main | 2023-04-15T11:51:07.466466 | 2021-04-16T13:27:46 | 2021-04-16T13:27:46 | 354,102,658 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 480 | cpp | AvgOfArray.cpp | #include<iostream>
using namespace std;
int avgFunction(int arr[],int num)
{
int avg,sum=0;
for(int i=0;i<num;i++)
{
sum=sum+arr[i];
}
avg=sum/num;
return avg;
}
int main()
{
int arr[20],i,num;
cout<<" Enter the size of array --> ";
cin>>num;
for(i=0;i<num;i++)
{
cout<<" Enter the Index " << i <<" value of array --> ";
cin>>arr[i];
}
cout<<" Average of array elements is --> " <<avgFunction(arr,num);
}
|
892d46faa93d70de6f0b1bcb8756d424b8611cbd | 3e499542d7d102d386b63b3e9aea86378a030572 | /src/gui/imgui/imguiExtensions.cpp | 095213354b8d8b7275322979ad90e8c00784d4d3 | [
"MIT"
] | permissive | haddenkim/hush | c322db5998a7e2fdb2f1a52946ffc8b3851f3ffa | c003fa327874cf3890da50e8914730974c648f3f | refs/heads/master | 2020-04-15T20:22:55.949832 | 2019-04-03T06:51:19 | 2019-04-03T06:51:19 | 164,990,890 | 2 | 0 | MIT | 2019-01-30T03:12:19 | 2019-01-10T04:39:56 | C++ | UTF-8 | C++ | false | false | 555 | cpp | imguiExtensions.cpp | #include "imguiExtensions.h"
bool ImGui::InputVec3f(const char* label, Point3f* p, const char* format, ImGuiInputTextFlags extra_flags)
{
float vArray[3] = { p->x, p->y, p->z };
if (ImGui::InputFloat3(label, vArray, format, extra_flags)) {
p->x = vArray[0];
p->y = vArray[1];
p->z = vArray[2];
return true;
} else {
return false;
}
}
bool ImGui::SliderUint(const char* label, unsigned int* v, unsigned int v_min, unsigned int v_max, const char* format)
{
return ImGui::SliderScalar(label, ImGuiDataType_U32, v, &v_min, &v_max, format);
} |
11a6aead2d2b93ac49b80defb5b009681f3d6a86 | 43748a1c43915c7e98d9f063ce215bcbb4d74bdc | /fdfr/tools/image2lcd_rgb565/rgb565.cc | 09c568c69bf8ff63838239bcb0ca9da921b7c623 | [] | no_license | lixiaokai666/bm1880-ai-demo-program | 3253f0011159b83afbc3c72df760ce48ac264cf5 | 7ec05f3a705143cd8fc3b1414f7e409f9cfc1302 | refs/heads/master | 2020-04-15T10:54:58.847655 | 2019-01-08T07:12:41 | 2019-01-08T07:12:41 | 164,603,036 | 1 | 0 | null | 2019-01-08T08:37:34 | 2019-01-08T08:37:33 | null | UTF-8 | C++ | false | false | 3,456 | cc | rgb565.cc | #include <iostream>
#include <opencv2/opencv.hpp>
using namespace std;
using namespace cv;
#ifdef HEX_16
unsigned short c_buf_hex_16[320*240];
#else
unsigned char c_buf_hex_8[320*240*2];
#endif
int main(int argc,char**argv)
{
string pic_name,name ;
cv::Mat imageSource = imread("logo_320x240.jpg",IMREAD_COLOR);
cv::Mat imageResize;
cv::Mat imageBGR,imageBGR565;
if(imageSource.empty())
{
cout<<"File not exist ."<<endl;
return -1;
}
// resize
cout<<"frame_src width:"<<imageSource.cols<<"height: "<<imageSource.rows<<endl;
if( imageSource.cols > 320 || imageSource.rows > 240)
{
int x = 240;
int y = 320;
cout<<" x= "<<x<<", y= "<<y<<endl;
cv::resize(imageSource, imageResize, Size(x, y) );
//cv::imwrite(pic_resize_path + file_path + '/' + pic_name, imageResize);
cout<<"frame width:%d"<<imageResize.cols<<" height: "<<imageResize.rows<<endl;
//imshow("Resize", imageResize);
imageBGR = imageResize;
}
else {
imageBGR = imageSource;
}
cout<<"imageBGR.channels : "<<imageBGR.channels()<<endl;
cout<<"imageBGR.size : "<<imageBGR.size()<<endl;
cout<<"elem 1 : "<<hex<<imageBGR.at<int>(0,0)<<endl;
cout<<"imageBGR.depth : "<<imageBGR.depth()<<endl;
cv:cvtColor(imageBGR,imageBGR565,COLOR_RGB2BGR565);
//imshow("imageRGB565", imageRGB565);
cout<<"imageBGR565.channels : "<<imageBGR565.channels()<<endl;
cout<<"imageBGR565.size : "<<imageBGR565.size()<<endl;
cout<<"imageBGR565.depth : "<<imageBGR565.depth()<<endl;
cout<<"elem 1 : "<<hex<<imageBGR565.at<int>(0,0)<<endl;
cout<<"imageBGR565.type : "<<imageBGR565.type()<<endl;
int colNumber = imageBGR.cols;
int rowNumber = imageBGR.rows;
int i,j;
#if 0
for (i = 0; i < rowNumber; i++)
{
for (j= 0; j < colNumber; j++)
{
unsigned short B = srcImage.at<Vec3b>(i, j)[0]; //B
unsigned short G = srcImage.at<Vec3b>(i, j)[1]; //G
unsigned short R = srcImage.at<Vec3b>(i, j)[2]; //R
//cout<<" R="<<R<<" G="<<G<<" B="<<B<<endl;
//cout<<"result = "<<(((R << 8) & 0xF800) | ((G << 3) & 0x07E0) | ((B >> 3) & 0x001F))<<endl;
//cout<<"1 = "<<((R << 8)&0xF800)<<endl;
//cout<<"2 = "<<(G << 3)<<endl;
//cout<<"3 = "<<(B >> 3)<<endl;
//cout<<"number : "<<(i*colNumber + j)<<endl;
//c_buf[i*colNumber + j] = ((R << 8) & 0xF800) | ((G << 6) & 0x07E0) | (B & 0x001F);
#ifdef HEX_16
c_buf_hex_16[i*colNumber + j] = ((R << 8) & 0xF800) | ((G << 3) & 0x07E0) | ((B >> 3) & 0x001F);
#else
unsigned short pix_data = ((R << 8) & 0xF800) | ((G << 3) & 0x07E0) | ((B >> 3) & 0x001F);
c_buf_hex_8[i*colNumber*2 + j*2 ] = (char)((pix_data >> 8) & 0xFF);
c_buf_hex_8[i*colNumber*2 + j*2 + 1] = (char)(pix_data & 0xFF);
#endif
}
}
//imshow("处理后的图像", srcImage);
#endif
cv::cvtColor(imageBGR,imageBGR565,cv::COLOR_BGR2BGR565);
memcpy(c_buf_hex_8,imageBGR565.data,colNumber*rowNumber*2);
#ifdef HEX_16
for(i=0; i<rowNumber; i++)
{
for(j=0; j<colNumber; j++)
{
printf(" 0x%04X, ",c_buf_hex_16[i*colNumber + j]);
}
printf("\n");
}
#else
for(i=0; i<rowNumber; i++)
{
for(j=0; j<colNumber; j++)
{
printf(" 0x%02X, 0x%02X,",c_buf_hex_8[i*colNumber*2 + j*2],c_buf_hex_8[i*colNumber*2 + (j*2+1)]);
}
printf("\n");
}
#endif
waitKey();
return 0;
}
|
db18dd2b73764b212c4d239ce18c8025bfdc6b4a | dee7931e7c49e096173d2069a078112265263acf | /Tests/TestQtC3/qc3canvas.cpp | fd3740e2f6b8ac5a62fbec2814229c8985074c65 | [] | no_license | bobbyblues/FRVSenseSmokeGenerator | 70dad337f4e84a53a14969dfb561202ccf9f99d8 | fefa9eb995d37460e8d7279799669bef8a4bddfc | refs/heads/master | 2016-09-05T23:34:21.376546 | 2011-11-09T09:49:02 | 2011-11-09T09:49:02 | 2,507,811 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,697 | cpp | qc3canvas.cpp | #include "qc3canvas.h"
QC3Canvas::QC3Canvas(QWidget *parent, const QPoint& Position, const QSize& Size, unsigned int FrameTime) :
QWidget(parent),
m_Initialized(false)
{
// Mise en place de quelques options pour autoriser le rendu direct dans le widget
setAttribute(Qt::WA_PaintOnScreen);
setAttribute(Qt::WA_OpaquePaintEvent);
setAttribute(Qt::WA_NoSystemBackground);
// Changement de la police de focus, pour autoriser notre widget à capter les évènements clavier
setFocusPolicy(Qt::StrongFocus);
// Définition de la position et de la taille du widget
move(Position);
resize(Size);
// Préparation du timer
m_Timer.setInterval(FrameTime);
}
#ifdef Q_WS_X11
#include <Qt/qx11info_x11.h>
#include <X11/Xlib.h>
#endif
void QC3Canvas::showEvent(QShowEvent*)
{
if (!m_Initialized)
{
// Sous X11, il faut valider les commandes qui ont été envoyées au serveur
// afin de s'assurer que C3 aura une vision à jour de la fenêtre
#ifdef Q_WS_X11
XFlush(QX11Info::display());
#endif
// On crée la fenêtre C3 avec l'identificateur du widget
Create(winId());
// On laisse la classe dérivée s'initialiser si besoin
OnInit();
// On paramètre le timer de sorte qu'il génère un rafraîchissement à la fréquence souhaitée
connect(&m_Timer, SIGNAL(timeout()), this, SLOT(repaint()));
m_Timer.start();
m_Initialized = true;
}
}
void QC3Canvas::paintEvent(QPaintEvent*)
{
// On laisse la classe dérivée faire sa tambouille
OnUpdate();
// On rafraîchit le widget
C3::Window::Display();
}
|
be2ba34a7d0b211c7884c902982355d748da0323 | c5718f09a6e4e7fe8ed375981bbab7693817302f | /Classes/Level/Backgrounds/CityBackGround.h | f430b41bc494872aa7de799bea772f1ff701c677 | [] | no_license | ryanmcbride/CrashTestMonkeys | 3ef3d4917b8d829005fb9b5c991970e86d282be8 | 236317741c7e769cb43da56cd52ec2681d12aeff | refs/heads/master | 2016-09-06T18:51:47.699575 | 2013-10-01T03:17:03 | 2013-10-01T03:17:03 | 10,875,817 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 610 | h | CityBackGround.h | //
// HelloWorldScene.h
// MonkeyDroid
//
// Created by Admin on 3/19/13.
// Copyright __MyCompanyName__ 2013. All rights reserved.
//
#ifndef __CITYBACKGROUND_H__
#define __CITYBACKGROUND_H__
// When you import this file, you import all the cocos2d classes
#include "BackGround.h"
class CityBackGround : public BackGround
{
public:
virtual ~CityBackGround();
CityBackGround();
virtual void InitBG(cocos2d::CCNode *layer);
virtual void Step(float xpos, float ypos);
protected:
cocos2d::CCPoint m_Parallax2Points[4];
cocos2d::CCArray *m_Parallax2;
};
#endif // __BACKGROUND_H__
|
09094fa902a9d1a37c9b5d680974a1f956a25c49 | 51f2492a5c207e3664de8f6b2d54bb93e313ca63 | /kattis/estimatingtheareaofacircle.cc | 954a5ce421a789414e9a9dc4bbf3e834028e1bd9 | [
"WTFPL",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | abeaumont/competitive-programming | 23c5aabd587d7bb15a61efd3428838cb934233dd | a24c9b89941a59d344b51dc1010de66522b1a0dd | refs/heads/master | 2023-09-01T09:50:58.267361 | 2023-07-31T18:00:10 | 2023-07-31T18:00:10 | 117,589,708 | 618 | 262 | WTFPL | 2023-07-12T17:36:20 | 2018-01-15T20:00:56 | C++ | UTF-8 | C++ | false | false | 424 | cc | estimatingtheareaofacircle.cc | // https://open.kattis.com/problems/estimatingtheareaofacircle
#include <cmath>
#include <iomanip>
#include <iostream>
using namespace std;
int main() {
while (true) {
double r;
int m, c;
cin >> r >> m >> c;
if (r == 0 && m == 0 && c == 0) break;
double a = M_PI * r * r;
double b = (r * 2) * (r * 2) * double(c) / double(m);
cout << setprecision(10) << fixed << a << " " << b << endl;
}
}
|
1a802ce11fb3a8249f19ab1e75b65e6479fde77d | 5ee0eb940cfad30f7a3b41762eb4abd9cd052f38 | /Case_save/case5/3000/epsilon | 2b0e51fcec496fc1e570ea1b45c6b298ed34bb92 | [] | no_license | mamitsu2/aircond5_play4 | 052d2ff593661912b53379e74af1f7cee20bf24d | c5800df67e4eba5415c0e877bdeff06154d51ba6 | refs/heads/master | 2020-05-25T02:11:13.406899 | 2019-05-20T04:56:10 | 2019-05-20T04:56:10 | 187,570,146 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,239 | epsilon | /*--------------------------------*- 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 "3000";
object epsilon;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 2 -3 0 0 0 0];
internalField nonuniform List<scalar>
459
(
0.000522626
0.000686819
0.000727747
0.000841096
0.000957545
0.00107753
0.00120695
0.00133384
0.00142329
0.00145368
0.00140909
0.00128644
0.00109774
0.000874502
0.000660915
4.72832e-05
8.28587e-05
0.000117799
0.000116862
0.000105268
9.10199e-05
7.48202e-05
6.07779e-05
4.96903e-05
4.10782e-05
3.43543e-05
2.90469e-05
2.48172e-05
2.13981e-05
1.85486e-05
1.60638e-05
1.37571e-05
1.25113e-05
9.68831e-06
0.00131704
0.00186093
0.000650519
0.000632988
0.000669014
0.000726458
0.000808905
0.00090928
0.000997372
0.00104546
0.0010346
0.000961555
0.000836157
0.000685978
0.000571599
0.000716821
0.000141484
5.65757e-05
0.000133619
0.0001429
0.000130517
0.000111222
9.30143e-05
8.36099e-05
6.74068e-05
5.31832e-05
4.19839e-05
3.33943e-05
2.68318e-05
2.1811e-05
1.7976e-05
1.51457e-05
1.33954e-05
1.26678e-05
3.42968e-05
2.2984e-05
0.00238417
0.0044899
0.00081613
0.000613809
0.000651622
0.000743394
0.000874493
0.0010262
0.00115233
0.0012186
0.00121066
0.00113326
0.000998684
0.000839919
0.000695389
0.000627753
0.000773078
0.000407586
0.000300202
0.000229597
0.00017867
0.000141131
0.00011872
0.000216134
0.000147771
0.000104701
7.6827e-05
5.82068e-05
4.53773e-05
3.63022e-05
2.97793e-05
2.51146e-05
1.8987e-05
1.60333e-05
6.68779e-05
3.69933e-05
0.00382713
0.00921167
0.00130683
0.00064384
0.000662588
0.000799976
0.00101259
0.00123751
0.00139292
0.00145626
0.00143023
0.00132953
0.00116282
0.000972978
0.000802641
0.000688238
0.000668656
0.0012657
0.000718448
0.000433472
0.000290816
0.000209601
0.000159296
0.000135752
0.000308353
0.000230647
0.000183647
0.000152189
0.000128296
0.000109016
9.23967e-05
7.69463e-05
6.14366e-05
3.59994e-05
2.44472e-05
0.000118295
5.02524e-05
0.00579055
0.0162483
0.0025933
0.000821113
0.000740967
0.000944685
0.00132903
0.00162281
0.00176439
0.00178652
0.0017167
0.00156884
0.00135676
0.00111177
0.000873166
0.00067511
0.000538335
0.00048266
0.0003929
0.000309611
0.000242427
0.000190608
0.00015175
0.000125882
0.000120613
0.000111091
0.000101696
9.25439e-05
8.31828e-05
7.37064e-05
6.44898e-05
5.58857e-05
4.8046e-05
3.78538e-05
2.97236e-05
8.16862e-05
5.76771e-05
9.30246e-05
0.000158106
0.000222033
0.00849176
0.0239463
0.00579199
0.00169514
0.00126873
0.00162587
0.002134
0.00232386
0.00233917
0.00226321
0.00212003
0.00190321
0.00161618
0.00128815
0.000966507
0.000697731
0.000508463
0.000397326
0.000325841
0.00026754
0.000216137
0.000173631
0.000141164
0.0001193
0.000108353
0.000103059
9.9418e-05
9.52627e-05
8.9398e-05
8.0874e-05
7.00996e-05
5.92563e-05
4.95308e-05
4.1055e-05
3.68804e-05
5.73275e-05
6.00146e-05
7.17481e-05
0.000295866
0.00025622
0.0114995
0.0284739
0.011683
0.0053816
0.00402111
0.00401216
0.00379716
0.00350216
0.00321516
0.0029531
0.00268019
0.00234892
0.0019452
0.00150062
0.00107491
0.000730346
0.000497553
0.000363526
0.000286707
0.000231907
0.000186899
0.000151769
0.000127245
0.000113054
0.000107921
0.000108288
0.000110543
0.000112871
0.000114031
0.000112196
0.000103344
9.117e-05
7.93247e-05
6.94175e-05
6.71146e-05
7.95333e-05
0.000102389
0.000165081
0.00041045
0.000380077
0.0120796
0.0298081
0.0171876
0.012294
0.00966403
0.00753241
0.0060046
0.00499066
0.00433158
0.00385943
0.00342136
0.00291356
0.00232235
0.00170268
0.00113528
0.000706759
0.00044339
0.000303276
0.000231244
0.000185199
0.000151434
0.000128291
0.000114867
0.000109816
0.000111432
0.000117659
0.000127019
0.000139191
0.000154361
0.00017245
0.0001922
0.00020416
0.00021589
0.000240697
0.000290942
0.000442918
0.000812863
0.00160934
0.00545812
0.00131688
0.0110832
0.0181591
0.0145894
0.0111771
0.00878573
0.00728788
0.00639188
0.00585607
0.00546342
0.00501802
0.00438496
0.00353337
0.00259294
0.00170828
0.000969391
0.000520382
0.000319762
0.000224658
0.000173726
0.000141637
0.000120697
0.000108601
0.000103777
0.000104822
0.000110591
0.000120401
0.000134356
0.000153446
0.000179478
0.000215125
0.000264104
0.000331679
0.000425505
0.00056683
0.000775268
0.00105985
0.00139048
0.00168912
0.00191419
0.00105356
0.00372551
0.00656869
0.00842175
0.00890705
0.00889415
0.00842521
0.00743505
0.00603485
0.00443486
0.00278432
0.00167305
0.000967808
0.000548619
0.00033077
0.000225846
0.000172543
0.000142138
0.000122894
0.000110534
0.000103574
0.000101132
0.000102506
0.000107213
0.000115174
0.000126792
0.000143043
0.000165627
0.000197296
0.000242351
0.000306896
0.000398577
0.000527967
0.000703467
0.000919773
0.00115041
0.00136592
0.00122373
0.000594402
0.00370629
0.00848319
0.00848159
0.00703127
0.00608535
0.00509927
0.00401957
0.00295665
0.0020113
0.00125471
0.000762118
0.000471843
0.000312926
0.000231103
0.000189103
0.00016567
0.000150686
0.000139938
0.000131798
0.000125672
0.000121678
0.000120265
0.00012172
0.000126493
0.00013531
0.000149224
0.000169755
0.00019913
0.000240579
0.000298529
0.000379039
0.000488723
0.000630486
0.000797789
0.000974996
0.00122863
0.000650926
0.000654263
0.00266554
0.00318175
0.00359228
0.00451024
0.00400216
0.0035636
0.0032263
0.0027746
0.00223394
0.00168376
0.00118676
0.000793769
0.000525936
0.000361207
0.000263296
0.000203917
0.000166296
0.000141571
0.000125278
0.00011509
0.000109628
0.000108042
0.000109665
0.000113818
0.000120468
0.000129799
0.000142209
0.000158382
0.000179456
0.000206974
0.000242012
0.000286659
0.000343453
0.000415641
0.00050645
0.000626125
0.000661605
0.000500124
0.000404636
0.000590555
)
;
boundaryField
{
floor
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
29
(
0.000660915
4.72832e-05
8.28587e-05
0.000117799
0.000116862
0.000105268
9.10199e-05
7.48202e-05
6.07779e-05
4.96903e-05
4.10782e-05
3.43543e-05
2.90469e-05
2.48172e-05
2.13981e-05
1.85486e-05
1.60638e-05
1.37571e-05
1.25113e-05
9.68831e-06
9.68831e-06
2.2984e-05
3.69933e-05
5.02524e-05
0.000660915
4.72832e-05
5.65757e-05
0.000407586
0.0012657
)
;
}
ceiling
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
43
(
0.00266554
0.00318175
0.00359228
0.00451024
0.00400216
0.0035636
0.0032263
0.0027746
0.00223394
0.00168376
0.00118676
0.000793769
0.000525936
0.000361207
0.000263296
0.000203917
0.000166296
0.000141571
0.000125278
0.00011509
0.000109628
0.000108042
0.000109665
0.000113818
0.000120468
0.000129799
0.000142209
0.000158382
0.000179456
0.000206974
0.000242012
0.000286659
0.000343453
0.000415641
0.00050645
0.000626125
0.000661605
0.000500124
0.000404636
0.000590555
0.0110832
0.0181591
0.00370629
)
;
}
sWall
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value uniform 0.00266554;
}
nWall
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 6(0.000222033 0.00025622 0.000380077 0.000594402 0.000654263 0.000590555);
}
sideWalls
{
type empty;
}
glass1
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(0.000522626 0.00131704 0.00238417 0.00382713 0.00579055 0.00849176 0.0114995 0.0120796 0.0110832);
}
glass2
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 2(0.00131688 0.00105356);
}
sun
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar>
14
(
0.000522626
0.000686819
0.000727747
0.000841096
0.000957545
0.00107753
0.00120695
0.00133384
0.00142329
0.00145368
0.00140909
0.00128644
0.00109774
0.000874502
)
;
}
heatsource1
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 3(9.30246e-05 0.000158106 0.000222033);
}
heatsource2
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 4(0.000716821 0.000141484 0.000141484 0.000773078);
}
Table_master
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(0.000216134 0.000147771 0.000104701 7.6827e-05 5.82068e-05 4.53773e-05 3.63022e-05 2.97793e-05 2.51146e-05);
}
Table_slave
{
Cmu 0.09;
kappa 0.41;
E 9.8;
type epsilonWallFunction;
value nonuniform List<scalar> 9(0.000308353 0.000230647 0.000183647 0.000152189 0.000128296 0.000109016 9.23967e-05 7.69463e-05 6.14366e-05);
}
inlet
{
type turbulentMixingLengthDissipationRateInlet;
mixingLength 0.01;
phi phi;
k k;
value uniform 0.000101881;
}
outlet
{
type zeroGradient;
}
}
// ************************************************************************* //
| |
dc50a7e7028f943238ce1079f45caf9dc4174981 | 44227276cdce0d15ee0cdd19a9f38a37b9da33d7 | /arcane/src/arcane/core/ISimpleTableWriterHelper.h | 3aae43769a566174dcf7e8447ba66bf2f552eba8 | [
"Apache-2.0",
"LGPL-2.1-or-later"
] | permissive | arcaneframework/framework | 7d0050f0bbceb8cc43c60168ba74fff0d605e9a3 | 813cfb5eda537ce2073f32b1a9de6b08529c5ab6 | refs/heads/main | 2023-08-19T05:44:47.722046 | 2023-08-11T16:22:12 | 2023-08-11T16:22:12 | 357,932,008 | 31 | 21 | Apache-2.0 | 2023-09-14T16:42:12 | 2021-04-14T14:21:07 | C++ | UTF-8 | C++ | false | false | 12,902 | h | ISimpleTableWriterHelper.h | // -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
//-----------------------------------------------------------------------------
// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
// See the top-level COPYRIGHT file for details.
// SPDX-License-Identifier: Apache-2.0
//-----------------------------------------------------------------------------
/*---------------------------------------------------------------------------*/
/* ISimpleTableWriterHelper.h (C) 2000-2022 */
/* */
/* Interface représentant un écrivain simple utilisant un */
/* ISimpleTableReaderWriter. */
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#ifndef ARCANE_ISIMPLETABLEWRITERHELPER_H
#define ARCANE_ISIMPLETABLEWRITERHELPER_H
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#include "arcane/ISimpleTableInternalMng.h"
#include "arcane/ISimpleTableReaderWriter.h"
#include "arcane/Directory.h"
#include "arcane/ItemTypes.h"
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
namespace Arcane
{
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/**
* @brief Interface de classe permettant d'écrire un fichier
* avec ISimpleTableReaderWriter.
* Fournit des méthodes permettant de gérer l'écriture en parallèle
* et les symboles de noms.
*
* Cette classe est, en quelque sorte, une surcouche de
* ISimpleTableReaderWriter qui est assez basique.
* ISimpleTableWriterHelper est là pour simplifier
* l'utilisation de ISimpleTableReaderWriter.
*
* Dans la partie SimpleTable, les symboles de noms sont des
* mots-clefs entourés d'arobases et qui seront replacés
* par leur signfication lors de l'exécution.
* Dans l'implémentation SimpleTableWriterHelper, il y a
* actuellement deux symboles de noms pris en charge :
* - \@proc_id\@ : Sera remplacé par l'id du processus.
* - \@num_procs\@ : Sera remplacé par le nombre de processus.
* Et dans SimpleTableWriterHelper, ces symboles ne sont remplacés
* que dans le nom du tableau.
*/
class ARCANE_CORE_EXPORT ISimpleTableWriterHelper
{
public:
virtual ~ISimpleTableWriterHelper() = default;
public:
/**
* @brief Méthode permettant d'initialiser l'objet.
* Notamment le nom du tableau et le nom du répertoire qui contiendra
* les fichiers (le répertoire des tableaux/directory_name).
*
* @param table_name Le nom du tableau (et du fichier de sortie).
* @param directory_name Le nom du dossier dans lequel enregistrer les tableaux.
*/
virtual bool init(const Directory& root_directory, const String& table_name, const String& directory_name) = 0;
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/**
* @brief Méthode permettant d'afficher le tableau.
*
* @param rank L'id du processus devant afficher le tableau (-1 pour
* signifier "tous les processus").
*/
virtual void print(Integer rank = 0) = 0;
/**
* @brief Méthode permettant d'écrire le tableau dans un fichier.
* Si rank != -1, les processus autres que rank retournent true.
*
* Par exemple, dans l'implémentation SimpleTableWriterHelper,
* le ou les fichiers seront écrits dans le répertoire :
* root_directory/[directory_name]/[table_name].[ISimpleTableReaderWriter.fileType()]
*
* @param root_directory Le répertoire racine où créer le répertoire des tableaux.
* @param rank L'id du processus devant écrire dans un fichier
* le tableau (-1 pour signifier "tous les processus").
* @return true Si le fichier a été correctement écrit.
* @return false Si le fichier n'a pas été correctement écrit.
*/
virtual bool writeFile(const Directory& root_directory, Integer rank) = 0;
/**
* @brief Méthode permettant d'écrire le tableau dans un fichier.
* Si rank != -1, les processus autres que rank retournent true.
*
* Par exemple, dans l'implémentation SimpleTableWriterHelper,
* le ou les fichiers seront écrits dans le répertoire :
* ./[output]/[directory_name]/[table_name].[ISimpleTableReaderWriter.fileType()]
*
* @param rank L'id du processus devant écrire dans un fichier
* le tableau (-1 pour signifier "tous les processus").
* @return true Si le fichier a été correctement écrit.
* @return false Si le fichier n'a pas été correctement écrit.
*/
virtual bool writeFile(Integer rank = -1) = 0;
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/**
* @brief Méthode permettant de récupérer la précision actuellement
* utilisée pour l'écriture des valeurs.
*
* @return Integer La précision.
*/
virtual Integer precision() = 0;
/**
* @brief Méthode permettant de modifier la précision du print.
*
* Aussi bien pour la méthode 'print()' que les méthodes 'writeFile()'.
*
* @warning Le flag "std::fixed" modifie le comportement de "setPrecision()",
* si le flag "std::fixed" est désactivé, la précision définira le
* nombre de chiffres total (avant et après la virgule) ;
* si le flag "std::fixed" est activé, la précision définira le
* nombre de chiffres après la virgule. Attention donc lors de
* l'utilisation de "std::numeric_limits<Real>::max_digits10"
* (pour l'écriture) ou de "std::numeric_limits<Real>::digits10"
* (pour la lecture) qui sont à utiliser sans le flag "std::fixed".
*
* @param precision La nouvelle précision.
*/
virtual void setPrecision(Integer precision) = 0;
/**
* @brief Méthode permettant de savoir si le frag 'std::fixed' est
* actif ou non pour l'écriture des valeurs.
*
* @return true Si oui.
* @return false Si non.
*/
virtual bool isFixed() = 0;
/**
* @brief Méthode permettant de définir le flag 'std::fixed' ou non.
*
* Aussi bien pour la méthode 'print()' que les méthodes 'writeFile()'.
*
* Ce flag permet de 'forcer' le nombre de chiffre après la virgule à
* la précision voulu. Par exemple, si l'on a appelé 'setPrecision(4)',
* et que l'on appelle 'setFixed(true)', le print de '6.1' donnera '6.1000'.
*
* @warning Le flag "std::fixed" modifie le comportement de "setPrecision()",
* si le flag "std::fixed" est désactivé, la précision définira le
* nombre de chiffres total (avant et après la virgule) ;
* si le flag "std::fixed" est activé, la précision définira le
* nombre de chiffres après la virgule. Attention donc lors de
* l'utilisation de "std::numeric_limits<Real>::max_digits10"
* (pour l'écriture) ou de "std::numeric_limits<Real>::digits10"
* (pour la lecture) qui sont à utiliser sans le flag "std::fixed".
*
* @param fixed Si le flag 'std::fixed' doit être défini ou non.
*/
virtual void setFixed(bool fixed) = 0;
/**
* @brief Méthode permettant de savoir si le frag 'std::scientific' est
* actif ou non pour l'écriture des valeurs.
*
* @return true Si oui.
* @return false Si non.
*/
virtual bool isForcedToUseScientificNotation() = 0;
/**
* @brief Méthode permettant de définir le flag 'std::scientific' ou non.
*
* Aussi bien pour la méthode 'print()' que la méthode 'writetable()'.
*
* Ce flag permet de 'forcer' l'affichage des valeurs en écriture
* scientifique.
*
* @param use_scientific Si le flag 'std::scientific' doit être défini ou non.
*/
virtual void setForcedToUseScientificNotation(bool use_scientific) = 0;
/**
* @brief Méthode permettant de récupérer le nom du répertoire tel qu'il
* a été donné précédement.
*
* Ici, les symboles de noms sont toujours présent.
*
* @return String Le répertoire.
*/
virtual String outputDirectoryWithoutComputation() = 0;
/**
* @brief Méthode permettant de récupérer le nom du répertoire où sera
* placé les tableaux.
*
* Peut-être différent pour chaque processus (dépendant de l'implémentation).
*
* Ici, les symboles de noms ont été résolus.
*
* @return String Le répertoire.
*/
virtual String outputDirectory() = 0;
/**
* @brief Méthode permettant de définir le répertoire
* dans lequel enregistrer les tableaux.
*
* Peut-être différent pour chaque processus (dépendant de l'implémentation).
*
* @param directory Le répertoire.
*/
virtual void setOutputDirectory(const String& directory) = 0;
/**
* @brief Méthode permettant de récupérer le nom du tableau tel qu'il
* a été donné précédement.
*
* Ici, les symboles de noms sont toujours présent.
*
* @return String Le nom.
*/
virtual String tableNameWithoutComputation() = 0;
/**
* @brief Méthode permettant de récupérer le nom du tableau.
*
* Peut-être différent pour chaque processus (dépendant de l'implémentation).
*
* Ici, les symboles de noms ont été résolus.
*
* @return String Le nom.
*/
virtual String tableName() = 0;
/**
* @brief Méthode permettant de définir le nom du tableau.
*
* @param name Le nom.
*/
virtual void setTableName(const String& name) = 0;
/**
* @brief Méthode permettant de récupérer le nom du fichier.
*
* Peut-être différent pour chaque processus (dépendant de l'implémentation).
*
* Ici, les symboles de noms ont été résolus et l'extension est ajoutée.
*
* @return String Le nom.
*/
virtual String fileName() = 0;
/**
* @brief Méthode permettant de récupérer le chemin où sera
* enregistrés les tableaux.
*
* Exemple (relatif) :
* ./output/csv/[directory_name]/
*
* @return String Le chemin.
*/
virtual Directory outputPath() = 0;
/**
* @brief Méthode permettant de récupérer le chemin où l'implémentation
* enregistre ces tableaux.
*
* Exemple (relatif) :
* ./output/csv/
*
* @return String Le chemin.
*/
virtual Directory rootPath() = 0;
/**
* @brief Méthode permettant de savoir si les paramètres actuellement en possession
* de l'implémentation lui permet d'écrire un fichier par processus, notamment
* grâce aux symboles de noms.
*
* @return true Si oui, l'implémentation peut écrire un fichier par processus.
* @return false Sinon, il n'y a qu'un seul fichier qui peut être écrit.
*/
virtual bool isOneFileByRanksPermited() = 0;
/**
* @brief Méthode permettant de connaitre le type de fichier qui sera utilisé.
*
* @return String Le type de fichier de sortie (= l'extension).
*/
virtual String fileType() = 0;
/**
* @brief Méthode permettant de récupérer une référence vers l'objet
* SimpleTableInternal utilisé.
*
* @return Ref<SimpleTableInternal> Une copie de la référence.
*/
virtual Ref<SimpleTableInternal> internal() = 0;
/**
* @brief Méthode permettant de récupérer une référence vers l'objet
* ISimpleTableReaderWriter utilisé.
*
* @return Ref<ISimpleTableReaderWriter> Une copie de la référence.
*/
virtual Ref<ISimpleTableReaderWriter> readerWriter() = 0;
/**
* @brief Méthode permettant de définir une référence vers un
* ISimpleTableReaderWriter.
*
* @param simple_table_reader_writer La référence vers un ISimpleTableReaderWriter.
*/
virtual void setReaderWriter(const Ref<ISimpleTableReaderWriter>& simple_table_reader_writer) = 0;
};
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
} // End namespace Arcane
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#endif
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
|
f73ba3152ec55152232835598fe92e68bc63ca1d | 97adb838ef1c783a6479131fec26963954d924d1 | /resourcelistwidget.h | f3162944c44dc1f65e8888bdeaea30438da42bda | [] | no_license | jewalky/TestShit | 862589a1ad35770c4b7a7622088a03a7b2e7522a | 52e78fbb4aa3510609add35de2023802c650d711 | refs/heads/master | 2021-01-19T05:07:57.693824 | 2016-07-29T09:49:59 | 2016-07-29T09:49:59 | 60,004,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,086 | h | resourcelistwidget.h | #ifndef RESOURCELISTWIDGET_H
#define RESOURCELISTWIDGET_H
#include <QGroupBox>
#include "data/texman.h"
namespace Ui {
class ResourceListWidget;
}
class ResourceListWidget : public QGroupBox
{
Q_OBJECT
public:
explicit ResourceListWidget(QWidget *parent = 0);
~ResourceListWidget();
QVector<TexResource> getResources();
void setResources(QVector<TexResource> resources);
void clear();
public slots:
void handleNewAccepted();
void handleEditAccepted();
private slots:
void on_bAddResource_clicked();
void on_resourceList_currentRowChanged(int currentRow);
void on_bEditResource_clicked();
private:
Ui::ResourceListWidget *ui;
QString getStringTypeFromType(TexResource::Type t)
{
switch (t)
{
case TexResource::WAD:
return "WAD";
case TexResource::Directory:
return "Directory";
case TexResource::ZIP:
return "ZIP";
}
return "Unknown";
}
};
#endif // RESOURCELISTWIDGET_H
|
9c9806b75cd516e5732aee6244550b60e407fd01 | 5e5a586912d70f60b73a0068c935aa93713ffe19 | /source/gamemodes/Zombies.h | 5d177095c2cce3954b28ff4fc528b101889d298a | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | Foamer/RocketPlugin | 607bacabe7ed5d9ec741eb111b3c2d2dc6b49fbf | 6e5b357ac79c9b2701510ac72cf8a6b7f4b4d5a9 | refs/heads/master | 2023-02-08T04:32:22.026120 | 2020-12-26T15:15:15 | 2020-12-26T15:15:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | Zombies.h | #pragma once
#include "../RocketPlugin.h"
class Zombies final : public RocketGameMode
{
public:
explicit Zombies(RocketPlugin* rp) : RocketGameMode(rp) { _typeid = std::make_shared<std::type_index>(typeid(*this)); }
void RenderOptions() override;
bool IsActive() override;
void Activate(bool active) override;
std::string GetGameModeName() override;
private:
void prepareZombies(int newNumZombies) const;
void onTick(ServerWrapper server);
int numZombies = 5;
bool zombiesHaveUnlimitedBoost = true;
size_t selectedPlayer = 0;
};
|
6cb13c87fa1432aad51a17dded5f951f06b48881 | 12ddfd65087bfad6223c58f89bd5549ea8f5be6c | /IZHO/2014/UFO.cpp | 4822e1435ba05a30fce33032693a62f563738b0b | [] | no_license | BenRitmicoCode/Olympiad-Preparation | 285ef73fa812c4b230276fb082d407197124b2c4 | b09b2edcd4eb14ebb5fe356c577a61e6ac92eff2 | refs/heads/master | 2021-05-11T08:36:36.170277 | 2019-08-17T19:22:37 | 2019-08-17T19:22:37 | 118,057,369 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,573 | cpp | UFO.cpp | #include <iostream>
#include <vector>
using namespace std;
const int MAXN = 1e6 + 5;
int n,m,r,k,p;
vector<vector<int>> a;
vector<int> temp;
int remain;
struct segtree{
vector<int> v1;
int n;
void reset(int n) {
this -> n = n;
v1.resize((n * 6) + 10);
}
void update(int curr,int l,int r,int u,int val){
// cout<<l<<" "<<r<<endl;
if(l == r){
v1[curr] = val;
return;
}
int mid = (l+r)/2;
if(u<=mid){
update(2*curr,l,mid,u,val);
}else{
update(2*curr+1,mid+1,r,u,val);
}
v1[curr] = max(v1[2*curr],v1[2*curr+1]);
}
void findfirst(int curr,int l,int r,int x){
if(remain == 0||v1[curr]<x){
//cout<<l<<" "<<r<<" "<<v1[curr]<<endl;
return;
}
if(l == r){
remain--;
temp.push_back(l);
}else{
int mid = (l+r)/2;
findfirst(2*curr,l,mid,x);
findfirst(2*curr+1,mid+1,r,x);
}
}
void findlast(int curr,int l,int r,int x){
if(remain == 0||v1[curr]<x){
return;
}
if(l == r){
remain--;
temp.push_back(l);
}else{
int mid = (l+r)/2;
findlast(2*curr+1,mid+1,r,x);
findlast(2*curr,l,mid,x);
}
}
};
segtree row[MAXN],col[MAXN];
int main(){
cin>>m>>n>>r>>k>>p;
a.resize(m+1);
for(int i=1;i<=n;i++){
col[i].reset(m+1);
}
a[0].resize(n+1);
for(int i=1;i<=m;i++){
row[i].reset(n+1);
a[i].resize(n+1);
for(int j=1;j<=n;j++){
cin>>a[i][j];
row[i].update(1,1,n,j,a[i][j]);
col[j].update(1,1,m,i,a[i][j]);
}
}
for(int i=0;i<k;i++){
temp.clear();
remain = r;
char z;
cin>>z;
int id,h;
cin>>id>>h;
if(z == 'W'){
row[id].findfirst(1,1,n,h);
for(int x:temp){
//cout<<x<<endl;1,
a[id][x]--;
row[id].update(1,1,n,x,a[id][x]);
col[x].update(1,1,m,id,a[id][x]);
}
}else if(z == 'E'){
row[id].findlast(1,1,n,h);
for(int x:temp){
a[id][x]--;
row[id].update(1,1,n,x,a[id][x]);
col[x].update(1,1,m,id,a[id][x]);
}
}else if(z == 'N'){
col[id].findfirst(1,1,m,h);
for(int x:temp){
a[x][id]--;
row[x].update(1,1,n,id,a[x][id]);
col[id].update(1,1,m,x,a[x][id]);
}
}else{
col[id].findlast(1,1,m,h);
for(int x:temp){
a[x][id]--;
//cout<<x<<endl;
row[x].update(1,1,n,id,a[x][id]);
col[id].update(1,1,m,x,a[x][id]);
}
}
}
for(int i=1;i<=m;i++){
for(int j=1;j<=n;j++){
a[i][j] += a[i-1][j]+a[i][j-1]-a[i-1][j-1];
}
}
int ans = 0;
for(int i=1;i<=m-p+1;i++){
for(int j=1;j<=n-p+1;j++){
if(i+p-1>m||j+p-1>n){
continue;
}
int temp = a[i+p-1][j+p-1] - a[i+p-1][j-1] - a[i-1][j+p-1] + a[i-1][j-1];
ans = max(ans,temp);
}
}
cout<<ans<<endl;
}
|
a4df709d2c0880964a919ffbbc2434e9614972ec | 8590b7928fdcff351a6e347c4b04a085f29b7895 | /corn/data_source/command_options_datasrc.h | b4442a8484594aaa8cfa6e9df9ac5b83fbd0dc88 | [] | no_license | liao007/VIC-CropSyst-Package | 07fd0f29634cf28b96a299dc07156e4f98a63878 | 63a626250ccbf9020717b7e69b6c70e40a264bc2 | refs/heads/master | 2023-05-23T07:15:29.023973 | 2021-05-29T02:17:32 | 2021-05-29T02:17:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,284 | h | command_options_datasrc.h | #ifndef command_options_datasrcH
#define command_options_datasrcH
#include "corn/data_source/vv_datasrc.h"
#include "corn/primitive.h"
#include "corn/container/text_list.h"
#include "corn/application/arguments.h"
#include "corn/OS/directory_entry_name_concrete.h"
#ifdef __BCPLUSPLUS__
#ifndef CROPSYST_VERSION
#define VCL_ARGS
#endif
#endif
namespace CORN {
//______________________________________________________________________________
class Command_options_data_source
: public extends_ VV_Data_source
{
protected:
// As of 2013, main() command line arguments are only ASCII.
nat16 argc;
const char **argv;
CORN::Text_list args; //160826
// rename to args_raw
public:
Command_options_data_source
(nat16 argc
,const char *argv[]
,const char *response_file_extension = 0);
Command_options_data_source
(nat16 argc
,char *argv[]
,char *response_file_extension = 0);
Command_options_data_source(const std::string &reponse_line); //161015
// used when reading from response file
// response file may have all options on one line
// or on separate lines, and/or may be INI file format with sections
// (essentially the INI format is extended to have unary lines).
Command_options_data_source //161015
(const CORN::OS::File_name &response_filename);
#ifdef VCL_ARGS
Command_options_data_source();
#endif
virtual VV_Data_source::Submission_status submit
(modifiable_ Data_record &data_rec
,const std::string &text
,bool unexpected_only) submission_;
virtual bool get(modifiable_ Data_record &data_rec);
//160222 I think just implement as get bool parse_options(modifiable_ Data_record &options_record);
/**
The command line argv[] array is scanned for items that match the pattern
variable=value
Variables are set to values for the current section.
[Initially this is the default/primary section of the data record]
[section_name] on the command line (argv) will set to the respective new current section.
if an argv item as the specified response_filename extension
and the file exists, it will be openned and values will be loaded into
the options record (overriding any currently set values)
There may be any number of response files specified on the command line.
This this options typically such response files will have only a
subset of the setable options as any values loaded for variable values
that may have be specified in previous response files would override
the previous values.
Values for string options that contain spaces (or tabs) should be enclosed
in double quotes on the command line I.e. variable="value with spaces".
String values that do not have spaces do no require quotation.
String values in response files must not be quoted
There must be no space separating the equal sign the variable nor the value.
(otherwise these will be treated as separate arguments).
Any other encountered argument will iniciate a call to
the virtual function consume_argument() which takes the current argv
and the remainder of the argv[] array.
This is to allow derived classes to handle additional
special command arguments.
Unrecognized variable=value pair are ignored.
**/
/*obsolete Arguments::get_end now does this
bool prompt_user_for_unencountered_options
(const char *selected_options[] = 0);
*/
//conceptual: bool user_select_response_files
// (const char *response_file_directory = 0)
/*
lists (enumerated) all files in the specified directory
(default current working direory)
with the matching response file extension
The user can select zero, one, or more of the listed file
by entering the enumerated number or number separated by spaces).
The response files will be opened and loaded in the order
the file numbers were entered.
*/
protected:
virtual const char *label_string(std::string &buffer) const; //170423
inline virtual bool set_data
(Data_record &/* data_rec */,bool /* append*/)
{ return false; }
// We don't write command line options.
// Indicate error is attempted.
virtual bool inherit //160128
(Data_record &/*data_rec*/
,const std::string &/*key*/
,const std::string &/*URL*/)
{ return true;} //160222
// The inheritance mechanism is not currently provided
// for command line options (unlikely to be needed/used).
// It is not an error if not implemented.
// However response file could be considered/works like inheritence.
};
//_Command_options_data_source______________________________________2013-04-01_/
}//_namespace_CORN_____________________________________________________________/
#endif
|
36470c659fecac0dcb4bf579c67fea0aebce4fa4 | 96cd9912bcfd023f1238ccfa4dac06b4dd8d833e | /hummingbird.h | a4a7039a0babe72448fc17002d0ce910fa8b81b3 | [] | no_license | SeNat07/Birds | ec91fc425a29e136a4e70c26e5ab495be97d6c5b | b5df4406b466c4915bfcaeb086552d33e144fae4 | refs/heads/master | 2023-01-23T16:02:22.108626 | 2020-05-16T17:07:54 | 2020-05-16T17:07:54 | 264,442,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 538 | h | hummingbird.h | #ifndef HUMMINGBIRD_H
#define HUMMINGBIRD_H
#include <iostream>
#include "flying_bird.h"
using namespace std;
namespace hummingbird {
class Hummingbird : public FlyingBird {
public:
Hummingbird();
void info();
string whatLovesToEat();
string getFavoriteFood() { return favoriteFood; }
void setFavoriteFood(string favoriteFoodValue) { favoriteFood = favoriteFoodValue; }
string getSize() { return size; }
void setSize(string sizeValue) { size = sizeValue; }
private:
string favoriteFood;
string size;
};
}
#endif |
973452e90cd84672571bbc57924ff212bee19802 | a3a942e6839b05b0e0032cc7245e64f5646751af | /section8_cjl_ref2/69.999/phi | 0537b5a05e55210192a83564f997dce75c1020ca | [] | no_license | carsumptive/OF-2 | 8826dc120b8a1f6b9fbd70e47cda6976f80d6ca7 | dfb46ab301dfded517b579cb59df02df14bcfd2f | refs/heads/main | 2023-04-08T18:45:15.811682 | 2021-04-08T14:51:19 | 2021-04-08T14:51:19 | 355,948,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 342,319 | 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 "69.999";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
29280
(
-1.62597e-05
1.60463e-05
2.13414e-07
-5.28672e-05
3.66292e-05
-2.17017e-08
-0.000103605
5.13373e-05
-5.99952e-07
-0.000164167
6.18869e-05
-1.32449e-06
-0.000231822
6.97852e-05
-2.12967e-06
-0.00030492
7.61358e-05
-3.03864e-06
-0.000382479
8.16789e-05
-4.11945e-06
-0.000463859
8.68294e-05
-5.44962e-06
-0.000548503
9.17425e-05
-7.09791e-06
-0.000635791
9.64057e-05
-9.11778e-06
-0.00072502
0.000100773
-1.15447e-05
-0.000815538
0.000104908
-1.43898e-05
-0.000907143
0.000109224
-1.76194e-05
-0.00100101
0.000115039
-2.11756e-05
0.000122712
-2.49226e-05
-0.0010988
-1.59504e-05
3.19967e-05
-5.19216e-05
7.26004e-05
-0.000101775
0.000101191
-0.000161224
0.000121335
-0.000227511
0.000136072
-0.000298937
0.000147563
-0.000374464
0.000157205
-0.000453381
0.000165746
-0.000535058
0.00017342
-0.00061878
0.000180128
-0.00070371
0.000185703
-0.000788976
0.000190173
-0.00087393
0.000194179
-0.000959718
0.000200827
0.000209137
-0.00104614
-1.53547e-05
4.73513e-05
-5.00958e-05
0.000107342
-9.82357e-05
0.000149331
-0.000155518
0.000178617
-0.000219138
0.000199693
-0.000287305
0.00021573
-0.000358861
0.000228761
-0.000432963
0.000239849
-0.000508837
0.000249293
-0.000585587
0.000256879
-0.000662127
0.000262243
-0.000737197
0.000265243
-0.000809183
0.000266165
-0.000879476
0.000271121
0.000273298
-0.000943637
-1.45001e-05
6.18514e-05
-4.7462e-05
0.000140303
-9.31066e-05
0.000194975
-0.000147217
0.000232728
-0.000206918
0.000259393
-0.000270276
0.000279088
-0.000335956
0.000294441
-0.000402913
0.000306806
-0.000470151
0.000316531
-0.000536513
0.000323241
-0.000600556
0.000326285
-0.000660585
0.000325273
-0.000713316
0.000318895
-0.000761226
0.000319031
0.000304582
-0.00079251
-1.34258e-05
7.52772e-05
-4.41233e-05
0.000171001
-8.6561e-05
0.000237413
-0.000136564
0.000282731
-0.000191155
0.000313984
-0.000248215
0.000336148
-0.000306162
0.000352389
-0.000363671
0.000364314
-0.000419435
0.000372295
-0.000471946
0.000375752
-0.00051929
0.000373629
-0.000559483
0.000365466
-0.000586576
0.000345988
-0.00060564
0.000338095
0.000293075
-0.000594133
-1.2181e-05
8.74581e-05
-4.02094e-05
0.000199029
-7.88174e-05
0.000276021
-0.000123863
0.000327777
-0.000172238
0.000362359
-0.000221583
0.000385493
-0.00027
0.000400806
-0.000315786
0.0004101
-0.000357217
0.000413727
-0.000392322
0.000410857
-0.000418536
0.000399843
-0.000433973
0.000380903
-0.000428807
0.000340822
-0.000412214
0.000321502
0.000230637
-0.000349776
-1.08222e-05
9.82803e-05
-3.58704e-05
0.000224078
-7.01294e-05
0.00031028
-0.000109471
0.000367118
-0.000150617
0.000403505
-0.000190915
0.00042579
-0.000228066
0.000437957
-0.000259882
0.000441916
-0.000284078
0.000437922
-0.000298076
0.000424855
-0.000298306
0.000400073
-0.000283524
0.000366121
-0.000239508
0.000296806
-0.000177238
0.000259231
0.000116143
-6.27435e-05
-9.41041e-06
0.000107691
-3.12683e-05
0.000245935
-6.07715e-05
0.000339783
-9.37708e-05
0.000400118
-0.000126778
0.000436513
-0.000156779
0.000455791
-0.000180985
0.000462163
-0.000196589
0.00045752
-0.000200558
0.000441892
-0.000189576
0.000413873
-0.000158478
0.000368974
-0.000105936
0.000313578
-2.05528e-05
0.000211424
0.000102166
0.000136513
-6.85123e-05
0.000286821
-8.0074e-06
0.000115698
-2.65676e-05
0.000264496
-5.10227e-05
0.000364238
-7.71523e-05
0.000426247
-0.000101203
0.000460564
-0.000119725
0.000474313
-0.000129328
0.000471766
-0.00012643
0.000454621
-0.000106995
0.000422457
-6.67398e-05
0.000373618
-9.20503e-07
0.000303155
9.96516e-05
0.000213006
0.000244972
6.6103e-05
0.000423873
-4.23877e-05
-0.00034261
0.000697971
-6.67194e-06
0.00012237
-2.19243e-05
0.000279748
-4.11452e-05
0.000383459
-5.99737e-05
0.000445076
-7.43206e-05
0.00047491
-8.02062e-05
0.000480199
-7.34999e-05
0.00046506
-4.96591e-05
0.000430781
-3.50523e-06
0.000376304
7.12243e-05
0.000298888
0.000182185
0.000192195
0.000333941
6.12503e-05
0.000549454
-0.000149411
0.000804406
-0.000297339
-0.000717934
0.00117973
-5.4556e-06
0.000127826
-1.74733e-05
0.000291766
-3.13612e-05
0.000397347
-4.25249e-05
0.000456239
-4.64455e-05
0.000478831
-3.84877e-05
0.000472241
-1.36059e-05
0.000440178
3.39665e-05
0.000383208
0.000111057
0.000299213
0.000225379
0.000184567
0.000387062
3.05112e-05
0.000603313
-0.000155001
0.000898597
-0.000444694
0.00124709
-0.000645829
-0.00120935
0.0017385
-4.3985e-06
0.000132224
-1.33154e-05
0.000300683
-2.18262e-05
0.000405858
-2.49824e-05
0.000459396
-1.77064e-05
0.000471555
5.46151e-06
0.000449073
5.07203e-05
0.000394919
0.00012534
0.000308588
0.00023804
0.000186513
0.000398879
2.3727e-05
0.0006194
-0.00019001
0.000912103
-0.000447704
0.00129661
-0.000829206
0.00175343
-0.00110264
-0.00182582
0.0023699
-3.52524e-06
0.000135749
-9.50377e-06
0.000306661
-1.26028e-05
0.000408957
-7.36132e-06
0.000454154
1.20292e-05
0.000452165
5.209e-05
0.000409012
0.000120467
0.000326542
0.000226299
0.000202756
0.000380517
3.22963e-05
0.00059593
-0.000191686
0.000884531
-0.000478611
0.00126485
-0.000828024
0.00174593
-0.00131028
0.0023193
-0.00167602
-0.00255971
0.00305319
-2.84125e-06
0.000138591
-6.03219e-06
0.000309852
-3.63307e-06
0.000406558
1.05248e-05
0.000439996
4.3225e-05
0.000419464
0.00010235
0.000349887
0.000197371
0.000231521
0.000339673
6.04545e-05
0.000542562
-0.000170593
0.000821499
-0.000470623
0.00118809
-0.000845198
0.00166324
-0.00130318
0.00224297
-0.00189001
0.00292999
-0.00236303
-0.00337937
0.00374964
-2.33006e-06
0.000140921
-2.82068e-06
0.000310343
5.27341e-06
0.000398464
2.9105e-05
0.000416165
7.67303e-05
0.000371839
0.000157772
0.000268845
0.000283933
0.000105359
0.000469138
-0.00012475
0.000728896
-0.000430351
0.00107997
-0.000821696
0.00153299
-0.00129822
0.0021028
-0.001873
0.00277308
-0.00256029
0.00355441
-0.00314436
-0.00423251
0.00440755
-1.95384e-06
0.000142875
3.2118e-07
0.000308068
1.44595e-05
0.000384326
4.90686e-05
0.000381556
0.000113798
0.00030711
0.000220439
0.000162204
0.000383278
-5.74797e-05
0.000618744
-0.000360217
0.000943735
-0.000755342
0.00137326
-0.00125122
0.00191528
-0.00184024
0.00256931
-0.00252703
0.00330814
-0.00329912
0.0041446
-0.00398082
-0.0050612
0.00497328
-1.6632e-06
0.000144538
3.40792e-06
0.000302997
2.44075e-05
0.000363326
7.13567e-05
0.000334606
0.000156047
0.000222419
0.000292864
2.53875e-05
0.000498794
-0.000263409
0.000792063
-0.000653486
0.00118898
-0.00115226
0.00169843
-0.00176067
0.00232128
-0.00246309
0.00303677
-0.00324251
0.00380934
-0.00407169
0.00464617
-0.00481765
-0.00581856
0.00540353
-1.3709e-06
0.000145909
6.93647e-06
0.000294689
3.57555e-05
0.000334507
9.71222e-05
0.00027324
0.000205364
0.000114178
0.000377727
-0.000146975
0.000633511
-0.000519193
0.000990955
-0.00101093
0.00146216
-0.00162346
0.00204523
-0.00234374
0.00272773
-0.00314559
0.0034706
-0.00398538
0.00423514
-0.00483623
0.00501674
-0.00559926
-0.00647923
0.00567741
-9.40956e-07
0.00014685
1.11833e-05
0.000282565
4.92228e-05
0.000296467
0.000127653
0.00019481
0.000263717
-2.18867e-05
0.000477453
-0.000360712
0.000789229
-0.000830968
0.00121411
-0.00143581
0.0017549
-0.00216425
0.00239515
-0.00298399
0.00310541
-0.00385585
0.00383658
-0.00471655
0.00455299
-0.00555264
0.00523959
-0.00628586
-0.00703891
0.00579928
-2.17654e-07
0.000147067
1.65066e-05
0.000265841
6.55738e-05
0.0002474
0.000164256
9.61271e-05
0.000332906
-0.000190536
0.000593672
-0.000621478
0.000965508
-0.0012028
0.00145573
-0.00192603
0.0020527
-0.00276123
0.00272398
-0.00365526
0.00342582
-0.00455769
0.00411059
-0.00540132
0.00474942
-0.00619147
0.00532223
-0.00685867
-0.00751397
0.0057973
7.56277e-07
0.000146311
2.3258e-05
0.000243339
8.55587e-05
0.0001851
0.000208123
-2.64373e-05
0.000414248
-0.000396661
0.000726586
-0.000933815
0.00115875
-0.00163497
0.00170512
-0.0024724
0.00233658
-0.00339269
0.00300743
-0.00432611
0.00366845
-0.00521871
0.00428341
-0.00601628
0.00483287
-0.00674094
0.00530594
-0.00733175
-0.0079332
0.00572517
2.149e-06
0.000144162
3.17795e-05
0.000213708
0.000109847
0.000107032
0.000260175
-0.000176765
0.000508247
-0.000644734
0.000874364
-0.00129993
0.00136176
-0.00212237
0.00194766
-0.0030583
0.00258681
-0.00403183
0.00322728
-0.00496659
0.00382522
-0.00581664
0.00435986
-0.00655092
0.00482098
-0.00720206
0.00522782
-0.00773859
-0.00829679
0.00559141
4.08178e-06
0.00014008
4.23662e-05
0.000175424
0.000138966
1.04327e-05
0.000320909
-0.000358709
0.000614243
-0.000938068
0.00103273
-0.00171841
0.00156411
-0.00265375
0.00216751
-0.0036617
0.00278748
-0.00465181
0.00337513
-0.00555424
0.0038996
-0.00634111
0.00435466
-0.00700598
0.00474489
-0.00759229
0.00509308
-0.00808678
-0.00860943
0.00540572
6.61928e-06
0.000133461
5.52406e-05
0.000126803
0.000173246
-0.000107572
0.000390253
-0.000575716
0.000730123
-0.00127794
0.00119496
-0.00218325
0.00175368
-0.00321248
0.00235085
-0.00425887
0.00292973
-0.00523068
0.00345213
-0.00607664
0.00390265
-0.00679163
0.00428793
-0.00739126
0.00462028
-0.00792464
0.00492331
-0.00838981
-0.00889384
0.00520772
9.8142e-06
0.000123647
7.05474e-05
6.60695e-05
0.000212771
-0.000249796
0.000467411
-0.000830356
0.000852181
-0.00166271
0.00135256
-0.00268363
0.00191892
-0.00377884
0.00248862
-0.00482857
0.00301219
-0.00575425
0.00346604
-0.0065305
0.003849
-0.00717459
0.00417605
-0.00771831
0.00446331
-0.00821189
0.00473332
-0.00865982
-0.00915227
0.00499175
1.37023e-05
0.000109944
8.83478e-05
-8.57596e-06
0.000257341
-0.000418789
0.00055075
-0.00112377
0.000975254
-0.00208721
0.00149657
-0.00320494
0.00205097
-0.00433324
0.0025774
-0.00535499
0.00303932
-0.00621617
0.00342787
-0.00691905
0.00375258
-0.0074993
0.00403282
-0.00799855
0.00428519
-0.00846426
0.00452861
-0.00890324
-0.00939017
0.00476651
1.83029e-05
9.16415e-05
0.000108613
-9.8886e-05
0.000306416
-0.000616592
0.000637735
-0.00145508
0.00109324
-0.00254272
0.00161904
-0.00373074
0.0021449
-0.0048591
0.0026187
-0.0058288
0.00301888
-0.00661636
0.00334897
-0.00724913
0.00362529
-0.00777562
0.0038683
-0.00824156
0.00409299
-0.00868895
0.00431479
-0.00912504
-0.00960972
0.00453434
2.362e-05
6.80215e-05
0.000131217
-0.000206483
0.000359073
-0.000844448
0.000725018
-0.00182103
0.00119997
-0.00301767
0.00171435
-0.00424512
0.0021997
-0.00534445
0.00261731
-0.0062464
0.00295972
-0.00695877
0.00323951
-0.00752892
0.00347634
-0.00801245
0.00368951
-0.00845474
0.00389155
-0.00889099
0.00409433
-0.00932782
-0.00981203
0.00429665
2.96417e-05
3.83797e-05
0.000155925
-0.000332766
0.00041396
-0.00110248
0.000808716
-0.00221578
0.00129008
-0.00349903
0.00177961
-0.00473465
0.00221745
-0.00578229
0.00257961
-0.00660855
0.00287033
-0.0072495
0.00310786
-0.00776645
0.00331252
-0.0082171
0.00350121
-0.00864343
0.00368375
-0.00907354
0.00386903
-0.00951311
-0.00999778
0.00405479
3.63389e-05
2.04088e-06
0.000182373
-0.0004788
0.000469317
-0.00138943
0.000884859
-0.00263133
0.00135979
-0.00397396
0.00181457
-0.00518943
0.00220212
-0.00616985
0.00251233
-0.00691875
0.00275812
-0.00749529
0.00296048
-0.0079688
0.0031386
-0.00839523
0.00330646
-0.00881129
0.00347143
-0.0092385
0.00363998
-0.00968166
-0.010167
0.00380924
4.36614e-05
-4.16205e-05
0.000210054
-0.000645193
0.000523061
-0.00170243
0.000949912
-0.00305818
0.00140711
-0.00443116
0.0018209
-0.00560323
0.00215858
-0.00650752
0.00242178
-0.00718196
0.00262914
-0.00770266
0.00280217
-0.00814184
0.00295789
-0.00855095
0.0031073
-0.0089607
0.00325575
-0.00938694
0.00340788
-0.0098338
-0.0103198
0.00356065
5.15383e-05
-9.31589e-05
0.000238296
-0.00083195
0.000572972
-0.00203711
0.00100119
-0.00348639
0.00143174
-0.00486172
0.00180151
-0.00597299
0.00209181
-0.00679782
0.00231344
-0.00740359
0.00248816
-0.00787737
0.00263642
-0.0082901
0.00277258
-0.00868711
0.00290502
-0.00909314
0.0030375
-0.00951943
0.00317331
-0.00996961
-0.0104559
0.00330945
5.98687e-05
-0.000153028
0.00026628
-0.00103836
0.000616918
-0.00238775
0.00103706
-0.00390653
0.00143469
-0.00525935
0.00175991
-0.00629821
0.00200652
-0.00704443
0.00219187
-0.00758894
0.00233876
-0.00802426
0.00246565
-0.00841699
0.00258419
-0.00880565
0.00270051
-0.00920947
0.00281727
-0.00963618
0.00293672
-0.0100891
-0.0105753
0.00305607
6.85215e-05
-0.000221549
0.000293076
-0.00126292
0.000653087
-0.00274776
0.00105697
-0.00431042
0.00141785
-0.00562023
0.00169973
-0.00658008
0.00190684
-0.00725155
0.00206071
-0.00774281
0.00218364
-0.00814719
0.00229159
-0.00852494
0.00239372
-0.00890777
0.00249441
-0.00931016
0.00259551
-0.00973728
0.00269852
-0.0101921
-0.0106777
0.00280096
7.73314e-05
-0.000298881
0.000317717
-0.0015033
0.000680153
-0.0031102
0.00106126
-0.00469152
0.00138356
-0.00594253
0.00162445
-0.00682097
0.0017963
-0.0074234
0.00192279
-0.0078693
0.00202473
-0.00824913
0.00211544
-0.00861566
0.00220191
-0.00899423
0.00228721
-0.00939546
0.00237263
-0.0098227
0.00245912
-0.0102786
-0.0107631
0.00254452
8.60971e-05
-0.000384978
0.000339274
-0.00175648
0.000697356
-0.00346828
0.0010509
-0.00504506
0.00133438
-0.00622601
0.00153721
-0.00702381
0.00167776
-0.00756395
0.00178029
-0.00797183
0.00186345
-0.00833228
0.00193806
-0.00869027
0.0020093
-0.00906548
0.00207931
-0.00946546
0.002149
-0.00989239
0.0022189
-0.0103485
-0.0108314
0.00228719
9.45853e-05
-0.000479563
0.000356937
-0.00201883
0.000704489
-0.00381583
0.00102729
-0.00536786
0.0012728
-0.00647153
0.00144077
-0.00719177
0.00155357
-0.00767675
0.00163485
-0.00805311
0.00170082
-0.00839826
0.00176007
-0.00874951
0.00181634
-0.00912175
0.00187109
-0.00952022
0.001925
-0.0099463
0.00197825
-0.0104017
-0.0108826
0.00202939
0.000102542
-0.000582105
0.000370072
-0.00228636
0.000701809
-0.00414757
0.000992041
-0.00565809
0.00120118
-0.00668067
0.00133743
-0.00732802
0.00142553
-0.00776485
0.00148768
-0.00811527
0.00153762
-0.00844819
0.00158195
-0.00879385
0.00162338
-0.00916319
0.00166289
-0.00955972
0.00170097
-0.00998437
0.00173757
-0.0104383
-0.0109166
0.00177159
0.000109706
-0.00069181
0.000378251
-0.00255491
0.00068992
-0.00445924
0.00094684
-0.00591501
0.00112163
-0.00685546
0.00122914
-0.00743553
0.00129509
-0.00783079
0.00133973
-0.0081599
0.0013744
-0.00848286
0.00140411
-0.00882356
0.00143077
-0.00918984
0.00145504
-0.00958399
0.00147726
-0.0100066
0.00149726
-0.0104583
-0.0109336
0.00151427
0.00011583
-0.000807641
0.000381269
-0.00282034
0.000669651
-0.00474762
0.000893332
-0.00613869
0.001036
-0.00699812
0.00111746
-0.007517
0.00116335
-0.00787669
0.00119167
-0.00818823
0.00121161
-0.0085028
0.00122688
-0.00883884
0.0012388
-0.00920176
0.00124782
-0.00959301
0.00125419
-0.010013
0.00125772
-0.0104619
-0.0109339
0.00125799
0.000120694
-0.000928334
0.000379125
-0.00307878
0.000641954
-0.00501045
0.000833062
-0.0063298
0.000945868
-0.00711093
0.00100366
-0.00757479
0.00103117
-0.00790419
0.00104406
-0.00820112
0.00104962
-0.00850836
0.00105056
-0.00883978
0.00104776
-0.00919896
0.00104153
-0.00958677
0.00103206
-0.0100035
0.00101923
-0.010449
-0.0109175
0.00100285
0.000124113
-0.00105245
0.000371997
-0.00332666
0.000607829
-0.00524628
0.000767436
-0.00648941
0.000852587
-0.00719608
0.000888757
-0.00761096
0.000899206
-0.00791464
0.000897307
-0.00819922
0.000888744
-0.0084998
0.000875436
-0.00882647
0.000857948
-0.00918147
0.000836455
-0.00956528
0.000811129
-0.00997817
0.000781987
-0.0104199
-0.0108842
0.000748691
0.000125951
-0.0011784
0.000360198
-0.00356091
0.000568265
-0.00545435
0.000697707
-0.00661885
0.000757273
-0.00725565
0.000773558
-0.00762724
0.000767981
-0.00790906
0.000751763
-0.008183
0.000729249
-0.00847729
0.000701765
-0.00879899
0.000669645
-0.00914935
0.000632941
-0.00952857
0.000591763
-0.00993699
0.000546112
-0.0103742
-0.0108339
0.00049587
0.00012612
-0.00130452
0.000344128
-0.00377892
0.00052421
-0.00563443
0.000624969
-0.00671961
0.000660847
-0.00729152
0.000658701
-0.0076251
0.000637901
-0.00788826
0.00060771
-0.00815281
0.000571387
-0.00844096
0.000529806
-0.00875741
0.000483132
-0.00910268
0.000431344
-0.00947679
0.00037448
-0.00988013
0.000311921
-0.0103117
-0.0107664
0.000244418
0.000124594
-0.00142911
0.000324307
-0.00397863
0.000476555
-0.00578668
0.000550167
-0.00679322
0.000564064
-0.00730542
0.000544692
-0.00760573
0.000509292
-0.00785286
0.000465396
-0.00810891
0.000415389
-0.00839096
0.000359807
-0.00870183
0.000298659
-0.00904153
0.000231939
-0.00941007
0.000159619
-0.00980781
8.14818e-05
-0.0102335
-0.0106761
-8.87331e-06
0.000121401
-0.00155051
0.000301297
-0.00415853
0.000426118
-0.0059115
0.000474105
-0.00684121
0.00046754
-0.00729886
0.000431934
-0.00757012
0.000382425
-0.00780335
0.000325042
-0.00805153
0.000261461
-0.00832738
0.000191998
-0.00863236
0.000116445
-0.00896598
3.46628e-05
-0.00932828
-5.29364e-05
-0.00972021
-0.000146917
-0.0101396
-0.0105738
-0.000249177
0.000116616
-0.00166713
0.000275599
-0.00431751
0.000373631
-0.00600953
0.000397465
-0.00686504
0.000371769
-0.00727316
0.000320747
-0.0075191
0.000257536
-0.00774014
0.000186827
-0.00798082
0.000109743
-0.00825029
2.63291e-05
-0.00854895
-6.31518e-05
-0.00887649
-0.000159138
-0.0092323
-0.000261773
-0.00961757
-0.000372439
-0.0100289
-0.0104569
-0.000489351
0.000110355
-0.00177748
0.000247696
-0.00445485
0.000319738
-0.00608157
0.000320817
-0.00686612
0.000277145
-0.00722949
0.000211406
-0.00745336
0.000134801
-0.00766354
5.07461e-05
-0.00789677
-3.95737e-05
-0.00815997
-0.000136145
-0.00845238
-0.000239678
-0.00877296
-0.000350115
-0.00912186
-0.000467902
-0.00949979
-0.000593789
-0.009903
-0.0103244
-0.000726347
0.000102762
-0.00188025
0.00021805
-0.00457014
0.000265003
-0.00612852
0.000244632
-0.00684575
0.000183988
-0.00716884
0.000104122
-0.00737349
1.38753e-05
-0.00757329
-8.25372e-05
-0.00780035
-0.000185757
-0.00805675
-0.000295929
-0.00834221
-0.000413237
-0.00865565
-0.000537924
-0.00899717
-0.000670518
-0.00936719
-0.000811317
-0.0097622
-0.0101763
-0.000959392
9.40012e-05
-0.00197425
0.000187096
-0.00466323
0.000209921
-0.00615135
0.000169286
-0.00680511
9.2569e-05
-0.00709213
-1.89668e-06
-0.00727903
-0.000103604
-0.00747158
-0.00021301
-0.00769095
-0.000329285
-0.00794048
-0.000452698
-0.00821879
-0.000583549
-0.0085248
-0.00072222
-0.0088585
-0.000869276
-0.00922014
-0.00102482
-0.00960666
-0.010013
-0.00118811
8.42492e-05
-0.0020585
0.000155242
-0.00473422
0.000154924
-0.00615103
9.50752e-05
-0.00674527
2.29283e-06
-0.00699934
-0.000103564
-0.00717317
-0.000218693
-0.00735645
-0.000340753
-0.00756889
-0.000469823
-0.00781141
-0.000606235
-0.00808238
-0.000750381
-0.00838066
-0.000902744
-0.00870614
-0.00106394
-0.00905894
-0.00123402
-0.00943658
-0.00983487
-0.00141215
7.36821e-05
-0.00213218
0.000122869
-0.00478341
0.000100359
-0.00612852
2.25027e-05
-0.00666741
-8.39161e-05
-0.00689292
-0.000203577
-0.00705351
-0.000331097
-0.00722893
-0.000465569
-0.00743442
-0.000607189
-0.00766979
-0.00075636
-0.00793321
-0.00091353
-0.00822349
-0.00107926
-0.0085404
-0.00125427
-0.00888394
-0.0014386
-0.00925224
-0.00964225
-0.00163122
6.24811e-05
-0.00219466
9.03182e-05
-0.00481125
4.65858e-05
-0.00608479
-4.83545e-05
-0.00657247
-0.000168764
-0.00677251
-0.000300998
-0.00692128
-0.000440662
-0.00708927
-0.000587299
-0.00728778
-0.00074123
-0.00751586
-0.000902903
-0.00777154
-0.00107281
-0.00805358
-0.00125159
-0.00836163
-0.00144007
-0.00869546
-0.00163833
-0.00905398
-0.00943563
-0.00184495
5.08531e-05
-0.00224551
5.79219e-05
-0.00481832
-5.76752e-06
-0.0060211
-0.00011736
-0.00646088
-0.000251291
-0.00663858
-0.000395698
-0.00677687
-0.000547256
-0.00693771
-0.000705817
-0.00712922
-0.000871803
-0.00734987
-0.00104571
-0.00759763
-0.00122804
-0.00787124
-0.00141953
-0.00817015
-0.00162112
-0.00849386
-0.0018329
-0.0088422
-0.00921571
-0.00205282
3.90173e-05
-0.00228453
2.63041e-05
-0.0048056
-5.79936e-05
-0.0059368
-0.00018456
-0.00633431
-0.000331339
-0.0064918
-0.000487589
-0.00662062
-0.000650775
-0.00677453
-0.000820999
-0.00695899
-0.000998772
-0.0071721
-0.00118462
-0.00741179
-0.00137908
-0.00767678
-0.00158292
-0.0079663
-0.00179723
-0.00827956
-0.00202199
-0.00861743
-0.00898315
-0.00225456
2.69963e-05
-0.00231153
-3.08613e-06
-0.00477552
-0.000107836
-0.00583205
-0.000249714
-0.00619243
-0.000408843
-0.00633268
-0.000576584
-0.00645288
-0.000751115
-0.0066
-0.000932731
-0.00677738
-0.00112201
-0.00698282
-0.0013195
-0.0072143
-0.00152576
-0.00747052
-0.0017416
-0.00775046
-0.00196822
-0.00805294
-0.00220554
-0.00838011
-0.00873804
-0.00245065
1.4492e-05
-0.00232602
-3.82116e-05
-0.00472282
-0.000156966
-0.0057133
-0.000312661
-0.00603674
-0.000483704
-0.00616163
-0.000662603
-0.00627398
-0.000848184
-0.00641441
-0.0010409
-0.00658466
-0.00124139
-0.00678234
-0.00145022
-0.00700547
-0.00166797
-0.00725277
-0.00189548
-0.00752295
-0.002134
-0.00781442
-0.00238374
-0.00813036
-0.00848055
-0.00264123
2.25267e-06
-0.00232827
-6.99696e-05
-0.0046506
-0.000204635
-0.00557863
-0.000373331
-0.00586804
-0.000555826
-0.00597914
-0.000745564
-0.00608424
-0.000941889
-0.00621809
-0.0011454
-0.00638115
-0.00135679
-0.00657095
-0.00157667
-0.00678559
-0.00180564
-0.0070238
-0.00204456
-0.00728402
-0.00229451
-0.00756447
-0.00255578
-0.00786909
-0.0082123
-0.00282403
-1.06149e-05
-0.00231766
-0.00010039
-0.00456082
-0.000250557
-0.00542846
-0.000431678
-0.00568692
-0.000625154
-0.00578566
-0.000825393
-0.005884
-0.00103214
-0.00601134
-0.00124613
-0.00616716
-0.00146809
-0.00634898
-0.00169871
-0.00655498
-0.0019387
-0.00678381
-0.00218896
-0.00703376
-0.00244996
-0.00730347
-0.00271977
-0.00759929
-0.0079324
-0.00299966
-2.30327e-05
-0.00229462
-0.000129679
-0.00445417
-0.000294615
-0.00526353
-0.000487617
-0.00549392
-0.000691635
-0.00558164
-0.000902022
-0.00567362
-0.00111886
-0.00579451
-0.00134297
-0.00594304
-0.00157516
-0.00611679
-0.00181618
-0.00631396
-0.00206692
-0.00653307
-0.00232833
-0.00677236
-0.00260082
-0.00703098
-0.00288526
-0.00731485
-0.00765821
-0.00315945
-3.50395e-05
-0.00225958
-0.000157836
-0.00433138
-0.000336756
-0.00508461
-0.000541088
-0.00528959
-0.00075522
-0.00536751
-0.000975388
-0.00545345
-0.00120195
-0.00556794
-0.00143583
-0.00570917
-0.00167788
-0.00587474
-0.00192895
-0.00606289
-0.00219001
-0.00627201
-0.00246188
-0.00650048
-0.00274379
-0.00674907
-0.00303389
-0.00702475
-0.00732274
-0.00336937
-4.66449e-05
-0.00221294
-0.000184823
-0.0041932
-0.000376943
-0.00489249
-0.000592046
-0.00507448
-0.000815864
-0.00514369
-0.00104543
-0.00522388
-0.00128135
-0.00533203
-0.00152461
-0.0054659
-0.00177615
-0.0056232
-0.00203689
-0.00580215
-0.00230774
-0.00600116
-0.00258901
-0.0062192
-0.00288008
-0.006458
-0.00318505
-0.00671978
-0.00699056
-0.00351723
-5.78125e-05
-0.00215513
-0.000210589
-0.00404042
-0.000415143
-0.00468793
-0.000640454
-0.00484917
-0.000873526
-0.00491062
-0.0011121
-0.00498531
-0.00135697
-0.00508715
-0.00160923
-0.00521365
-0.00186986
-0.00536257
-0.00213985
-0.00553215
-0.00242012
-0.0057209
-0.00271112
-0.0059282
-0.00301369
-0.00615542
-0.00333205
-0.00640142
-0.00665517
-0.00366744
-6.85052e-05
-0.00208662
-0.000235088
-0.00387384
-0.000451326
-0.0044717
-0.000686287
-0.00461421
-0.000928168
-0.00466874
-0.00117533
-0.00473815
-0.00142875
-0.00483373
-0.00168959
-0.00495282
-0.00195888
-0.00509328
-0.00223765
-0.00525338
-0.00252676
-0.00543179
-0.00282685
-0.00562811
-0.00313933
-0.00584294
-0.00346714
-0.00607362
-0.00631275
-0.00380956
-7.8731e-05
-0.00200789
-0.000258286
-0.00369428
-0.000485469
-0.00424451
-0.000729521
-0.00437016
-0.000979756
-0.00441851
-0.00123508
-0.00448282
-0.00149663
-0.00457218
-0.00176561
-0.00468384
-0.00204313
-0.00481576
-0.00233024
-0.00496628
-0.00262783
-0.00513419
-0.0029368
-0.00531914
-0.00325863
-0.00552111
-0.00359512
-0.00573713
-0.00596244
-0.00394543
-8.84505e-05
-0.00191944
-0.00028015
-0.00350259
-0.000517549
-0.00400712
-0.000770135
-0.00411757
-0.00102826
-0.00416038
-0.00129131
-0.00421977
-0.00156054
-0.00430294
-0.00183722
-0.00440716
-0.0021225
-0.00453048
-0.00241746
-0.00467132
-0.00272305
-0.0048286
-0.00304028
-0.00500192
-0.00337055
-0.00519084
-0.00371514
-0.00539254
-0.00560399
-0.00407359
-9.7628e-05
-0.00182181
-0.00030065
-0.00329956
-0.000547548
-0.00376022
-0.000808112
-0.00385701
-0.00107365
-0.00389484
-0.00134397
-0.00394945
-0.00162043
-0.00402648
-0.00190435
-0.00412324
-0.00219693
-0.00423791
-0.00249926
-0.00436899
-0.00281238
-0.00451549
-0.00313734
-0.00467696
-0.00347543
-0.00485275
-0.00382769
-0.00504027
-0.0052377
-0.00419399
-0.000106235
-0.00171558
-0.000319762
-0.00308604
-0.000575452
-0.00350453
-0.000843435
-0.00358903
-0.0011159
-0.00362237
-0.00139302
-0.00367234
-0.00167625
-0.00374325
-0.00196694
-0.00383255
-0.00226632
-0.00393852
-0.00257555
-0.00405976
-0.00289567
-0.00419536
-0.00322779
-0.00434484
-0.00357312
-0.00450742
-0.0039326
-0.00468079
-0.00486397
-0.00430633
-0.000114249
-0.00160133
-0.000337464
-0.00286282
-0.000601248
-0.00324074
-0.000876092
-0.00331418
-0.001155
-0.00334347
-0.00143844
-0.0033889
-0.00172794
-0.00345375
-0.00202492
-0.00353558
-0.00233062
-0.00363281
-0.00264624
-0.00374415
-0.00297286
-0.00386874
-0.00331159
-0.0040061
-0.0036636
-0.00415542
-0.0040298
-0.00431458
-0.00448331
-0.00441047
-0.00012165
-0.00147968
-0.000353739
-0.00263073
-0.000624924
-0.00296956
-0.000906068
-0.00303304
-0.0011909
-0.00305863
-0.00148017
-0.00309963
-0.00177547
-0.00315845
-0.00207824
-0.00323281
-0.00238977
-0.00332128
-0.00271126
-0.00342265
-0.00304385
-0.00353615
-0.00338865
-0.0036613
-0.0037468
-0.00379728
-0.00411921
-0.00394217
-0.00409623
-0.00450628
-0.000128421
-0.00135126
-0.000368571
-0.00239058
-0.000646471
-0.00269166
-0.000933353
-0.00274616
-0.00122361
-0.00276838
-0.0015182
-0.00280503
-0.0018188
-0.00285785
-0.00212685
-0.00292476
-0.0024437
-0.00300443
-0.00277056
-0.00309579
-0.00310859
-0.00319812
-0.00345891
-0.00331098
-0.00382265
-0.00343354
-0.00420072
-0.0035641
-0.00370331
-0.00459365
-0.00013455
-0.00121671
-0.000381949
-0.00214318
-0.000665882
-0.00240773
-0.000957937
-0.0024541
-0.00125309
-0.00247323
-0.00155251
-0.00250561
-0.00185789
-0.00255247
-0.00217072
-0.00261192
-0.00249237
-0.00268279
-0.00282408
-0.00276408
-0.00316701
-0.00285519
-0.00352232
-0.00295568
-0.0038911
-0.00306476
-0.00427428
-0.00318092
-0.0033051
-0.00467248
-0.000140024
-0.00107668
-0.000393863
-0.00188935
-0.00068315
-0.00211844
-0.000979811
-0.00215744
-0.00127934
-0.0021737
-0.00158306
-0.00220189
-0.00189271
-0.00224282
-0.00220981
-0.00229482
-0.00253574
-0.00235686
-0.00287176
-0.00242806
-0.00321907
-0.00250788
-0.0035788
-0.00259594
-0.00395207
-0.00269149
-0.00433979
-0.0027932
-0.0029022
-0.0047427
-0.000144833
-0.000931849
-0.000404303
-0.00162988
-0.00069827
-0.00182447
-0.000998967
-0.00185674
-0.00130233
-0.00187034
-0.00160983
-0.00189439
-0.00192323
-0.00192942
-0.00224408
-0.00197398
-0.00257376
-0.00202717
-0.00291357
-0.00208825
-0.00326471
-0.00215675
-0.00362833
-0.00223233
-0.00400553
-0.00231429
-0.00439722
-0.00240151
-0.00249518
-0.00480423
-0.000148969
-0.000782879
-0.000413263
-0.00136558
-0.000711238
-0.0015265
-0.0010154
-0.00155258
-0.00132206
-0.00156367
-0.00163281
-0.00158364
-0.00194944
-0.00161279
-0.0022735
-0.00164992
-0.00260642
-0.00169425
-0.00294948
-0.00174519
-0.0033039
-0.00180233
-0.00367085
-0.00186537
-0.00405142
-0.00193372
-0.0044465
-0.00200642
-0.00208465
-0.00485703
-0.000152426
-0.000630453
-0.000420738
-0.00109727
-0.00072205
-0.00122519
-0.0010291
-0.00124553
-0.00133852
-0.00125425
-0.00165199
-0.00127018
-0.00197131
-0.00129348
-0.00229806
-0.00132317
-0.00263367
-0.00135865
-0.00297944
-0.00139942
-0.0033366
-0.00144516
-0.00370633
-0.00149564
-0.0040897
-0.00155035
-0.00448761
-0.00160852
-0.00167121
-0.00490105
-0.000155198
-0.000475255
-0.000426723
-0.000825744
-0.000730703
-0.000921207
-0.00104007
-0.000936161
-0.0013517
-0.000942617
-0.00166734
-0.000954536
-0.00198882
-0.000971997
-0.00231773
-0.000994263
-0.00265549
-0.00102088
-0.00300344
-0.00105147
-0.0033628
-0.0010858
-0.00373475
-0.00112369
-0.00412036
-0.00116474
-0.00452051
-0.00120837
-0.00125544
-0.00493628
-0.000157281
-0.000317975
-0.000431215
-0.000551809
-0.000737195
-0.000615228
-0.0010483
-0.000625056
-0.00136159
-0.000629323
-0.00167887
-0.000637259
-0.00200197
-0.000648896
-0.00233249
-0.000663742
-0.00267188
-0.000681493
-0.00302145
-0.000701897
-0.00338246
-0.000724799
-0.00375608
-0.000750073
-0.00414337
-0.000777444
-0.0045452
-0.000806536
-0.000837949
-0.00496269
-0.000158671
-0.000159304
-0.000434212
-0.000276268
-0.000741524
-0.000307915
-0.00105379
-0.000312793
-0.00136819
-0.00031492
-0.00168656
-0.00031889
-0.00201074
-0.000324713
-0.00234234
-0.000332142
-0.00268281
-0.000341025
-0.00303347
-0.000351235
-0.00339558
-0.000362696
-0.00377031
-0.000375342
-0.00415872
-0.000389036
-0.00456166
-0.000403587
-0.000419308
-0.00498031
-0.000159367
6.26489e-08
-0.000435711
7.66038e-08
-0.00074369
6.41591e-08
-0.00105653
5.1013e-08
-0.00137149
3.86081e-08
-0.00169041
2.56492e-08
-0.00201513
1.21928e-08
-0.00234727
-1.5366e-09
-0.00268828
-1.53786e-08
-0.00303949
-2.91904e-08
-0.00340214
-4.28441e-08
-0.00377743
-5.62044e-08
-0.00416639
-6.91923e-08
-0.0045699
-8.18794e-08
-9.39841e-08
-0.00498911
-0.000159367
0.00015943
-0.000435712
0.000276422
-0.000743692
0.000308044
-0.00105654
0.000312895
-0.00137149
0.000314997
-0.00169041
0.000318941
-0.00201514
0.000324738
-0.00234728
0.000332139
-0.00268829
0.000340994
-0.00303949
0.000351177
-0.00340215
0.00036261
-0.00377743
0.00037523
-0.0041664
0.000388898
-0.0045699
0.000403424
0.000419119
-0.00498912
-0.000158672
0.000318102
-0.000434216
0.000551965
-0.00074153
0.000615358
-0.0010538
0.00062516
-0.0013682
0.000629402
-0.00168657
0.000637312
-0.00201075
0.000648922
-0.00234236
0.00066374
-0.00268282
0.000681464
-0.00303349
0.00070184
-0.00339559
0.000724714
-0.00377032
0.000749961
-0.00415873
0.000777306
-0.00456168
0.000806372
0.000837761
-0.00498032
-0.000157283
0.000475386
-0.000431222
0.000825903
-0.000737204
0.000921341
-0.00104831
0.000936267
-0.00136161
0.000942698
-0.00167889
0.000954591
-0.00200199
0.000972024
-0.00233251
0.000994262
-0.0026719
0.00102085
-0.00302148
0.00105142
-0.00338248
0.00108572
-0.0037561
0.00112358
-0.00414339
0.0011646
-0.00454522
0.0012082
0.00125526
-0.00496272
-0.000155202
0.000630588
-0.000426733
0.00109743
-0.000730716
0.00122532
-0.00104009
0.00124564
-0.00135172
0.00125433
-0.00166737
0.00127024
-0.00198885
0.0012935
-0.00231775
0.00132317
-0.00265552
0.00135862
-0.00300347
0.00139936
-0.00336283
0.00144508
-0.00373478
0.00149553
-0.00412039
0.00155021
-0.00452055
0.00160836
0.00167102
-0.00493631
-0.000152431
0.000783019
-0.00042075
0.00136575
-0.000722067
0.00152664
-0.00102912
0.00155269
-0.00133855
0.00156376
-0.00165202
0.0015837
-0.00197134
0.00161283
-0.00229809
0.00164992
-0.0026337
0.00169423
-0.00297948
0.00174513
-0.00333664
0.00180224
-0.00370637
0.00186526
-0.00408975
0.00193358
-0.00448765
0.00200626
0.00208446
-0.00490109
-0.000148976
0.000931995
-0.000413278
0.00163005
-0.000711259
0.00182462
-0.00101543
0.00185686
-0.0013221
0.00187043
-0.00163285
0.00189446
-0.00194948
0.00192946
-0.00227355
0.00197399
-0.00260646
0.00202715
-0.00294952
0.0020882
-0.00330395
0.00215667
-0.0036709
0.00223222
-0.00405147
0.00231415
-0.00444655
0.00240135
0.00249499
-0.00485708
-0.000144841
0.00107684
-0.00040432
0.00188953
-0.000698295
0.0021186
-0.000998999
0.00215757
-0.00130237
0.0021738
-0.00160987
0.00220196
-0.00192328
0.00224286
-0.00224413
0.00229483
-0.00257382
0.00235684
-0.00291363
0.00242801
-0.00326477
0.0025078
-0.00362839
0.00259584
-0.00400559
0.00269135
-0.00439728
0.00279304
0.00290201
-0.0048043
-0.000140033
0.00121687
-0.000393883
0.00214338
-0.000683179
0.00240789
-0.000979848
0.00245423
-0.00127938
0.00247333
-0.00158311
0.00250569
-0.00189276
0.00255252
-0.00220987
0.00261194
-0.0025358
0.00268277
-0.00287183
0.00276404
-0.00321914
0.00285511
-0.00357887
0.00295558
-0.00395215
0.00306463
-0.00433987
0.00318076
0.00330492
-0.00474277
-0.00013456
0.00135143
-0.000381972
0.0023908
-0.000665916
0.00269184
-0.00095798
0.0027463
-0.00125314
0.00276849
-0.00155256
0.00280511
-0.00185795
0.0028579
-0.00217079
0.00292478
-0.00249244
0.00300442
-0.00282415
0.00309575
-0.00316709
0.00319805
-0.0035224
0.00331088
-0.00389118
0.00343341
-0.00427436
0.00356394
0.00370312
-0.00467257
-0.000128433
0.00147986
-0.000368597
0.00263096
-0.000646509
0.00296975
-0.000933401
0.00303319
-0.00122366
0.00305876
-0.00151827
0.00309972
-0.00181887
0.0031585
-0.00212693
0.00323284
-0.00244378
0.00332127
-0.00277065
0.00342261
-0.00310868
0.00353608
-0.00345901
0.0036612
-0.00382274
0.00379715
-0.00420082
0.00394201
0.00409605
-0.00459374
-0.000121663
0.00160152
-0.000353768
0.00286307
-0.000624966
0.00324095
-0.000906122
0.00331435
-0.00119097
0.0033436
-0.00148024
0.003389
-0.00177555
0.00345381
-0.00207832
0.00353561
-0.00238986
0.00363281
-0.00271136
0.00374411
-0.00304395
0.00386867
-0.00338875
0.00400601
-0.0037469
0.00415529
-0.00411931
0.00431442
0.00448312
-0.00450638
-0.000114263
0.00171579
-0.000337496
0.0030863
-0.000601295
0.00350475
-0.000876152
0.0035892
-0.00115507
0.00362252
-0.00143852
0.00367244
-0.00172803
0.00374333
-0.00202501
0.00383259
-0.00233072
0.00393853
-0.00264634
0.00405973
-0.00297297
0.0041953
-0.0033117
0.00434474
-0.00366371
0.0045073
-0.00402992
0.00468063
0.00486379
-0.00441058
-0.000106251
0.00182204
-0.000319797
0.00329985
-0.000575505
0.00376045
-0.000843501
0.0038572
-0.00111598
0.003895
-0.00139311
0.00394957
-0.00167635
0.00402656
-0.00196704
0.00412329
-0.00226643
0.00423792
-0.00257566
0.00436896
-0.00289579
0.00451543
-0.00322792
0.00467686
-0.00357324
0.00485262
-0.00393272
0.00504012
0.00523751
-0.00430645
-9.76449e-05
0.00191968
-0.000300689
0.00350289
-0.000547606
0.00400737
-0.000808184
0.00411778
-0.00107374
0.00416055
-0.00134407
0.0042199
-0.00162054
0.00430304
-0.00190447
0.00440721
-0.00219705
0.0045305
-0.00249939
0.0046713
-0.00281251
0.00482854
-0.00313747
0.00500183
-0.00347556
0.00519071
-0.00382783
0.00539238
0.0056038
-0.00419412
-8.84688e-05
0.00200815
-0.000280192
0.00369461
-0.000517612
0.00424479
-0.000770214
0.00437038
-0.00102835
0.00441869
-0.00129142
0.00448297
-0.00156066
0.00457228
-0.00183735
0.0046839
-0.00212264
0.00481579
-0.0024176
0.00496627
-0.00272319
0.00513414
-0.00304042
0.00531906
-0.0033707
0.00552099
-0.00371529
0.00573697
0.00596225
-0.00407374
-7.87507e-05
0.0020869
-0.000258332
0.00387419
-0.000485537
0.004472
-0.000729607
0.00461445
-0.000979857
0.00466894
-0.0012352
0.00473831
-0.00149676
0.00483384
-0.00176575
0.00495289
-0.00204327
0.00509331
-0.00233038
0.00525338
-0.00262799
0.00543174
-0.00293696
0.00562803
-0.00325879
0.00584282
-0.00359528
0.00607346
0.00631256
-0.00394559
-6.85264e-05
0.00215543
-0.000235138
0.00404081
-0.0004514
0.00468826
-0.000686381
0.00484943
-0.000928278
0.00491083
-0.00117545
0.00498548
-0.00142889
0.00508728
-0.00168973
0.00521373
-0.00195903
0.00536261
-0.00223781
0.00553215
-0.00252693
0.00572086
-0.00282702
0.00592812
-0.00313951
0.00615531
-0.00346731
0.00640127
0.00665498
-0.00380973
-5.78351e-05
0.00221326
-0.000210642
0.00419361
-0.000415223
0.00489284
-0.000640556
0.00507476
-0.000873645
0.00514392
-0.00111223
0.00522407
-0.00135712
0.00533217
-0.00160938
0.005466
-0.00187002
0.00562325
-0.00214003
0.00580216
-0.0024203
0.00600113
-0.0027113
0.00621912
-0.00301388
0.00645788
-0.00333224
0.00671962
0.00699037
-0.00366762
-4.6669e-05
0.00225993
-0.00018488
0.00433182
-0.00037703
0.00508499
-0.000592155
0.00528989
-0.000815993
0.00536776
-0.00104558
0.00545365
-0.00128151
0.0055681
-0.00152478
0.00570927
-0.00177633
0.0058748
-0.00203708
0.0060629
-0.00230793
0.00627198
-0.00258921
0.0065004
-0.00288028
0.00674895
-0.00318525
0.00702459
0.00732255
-0.00351743
-3.5065e-05
0.002295
-0.000157897
0.00445466
-0.000336849
0.00526394
-0.000541206
0.00549425
-0.000755359
0.00558191
-0.000975544
0.00567383
-0.00120212
0.00579468
-0.00143601
0.00594316
-0.00167807
0.00611686
-0.00192915
0.00631398
-0.00219021
0.00653305
-0.0024621
0.00677229
-0.00274401
0.00703086
-0.00303411
0.00731469
0.00765804
-0.00336959
-2.30598e-05
0.00231806
-0.000129744
0.00456134
-0.000294715
0.00542891
-0.000487744
0.00568728
-0.000691784
0.00578595
-0.00090219
0.00588424
-0.00111904
0.00601153
-0.00134317
0.00616729
-0.00157537
0.00634907
-0.0018164
0.00655501
-0.00206714
0.00678379
-0.00232855
0.0070337
-0.00260105
0.00730336
-0.00288549
0.00759913
0.00793221
-0.00315967
-1.06439e-05
0.0023287
-0.000100459
0.00465116
-0.000250664
0.00557912
-0.000431814
0.00586843
-0.000625314
0.00597945
-0.000825573
0.0060845
-0.00103234
0.00621829
-0.00124634
0.00638129
-0.00146831
0.00657104
-0.00169894
0.00678563
-0.00193893
0.00702379
-0.0021892
0.00728396
-0.00245021
0.00756437
-0.00272001
0.00786894
0.0082121
-0.0029999
2.22585e-06
0.00232648
-7.00419e-05
0.00472342
-0.00020475
0.00571382
-0.000373477
0.00603715
-0.000555997
0.00616197
-0.000745756
0.00627426
-0.000942099
0.00641463
-0.00114563
0.00658482
-0.00135703
0.00678244
-0.00157691
0.00700552
-0.00180589
0.00725277
-0.00204482
0.00752289
-0.00229477
0.00781431
-0.00255603
0.0081302
0.00848035
-0.00282429
1.44611e-05
0.00231201
-3.82888e-05
0.00477617
-0.000157089
0.00583262
-0.000312816
0.00619288
-0.000483887
0.00633304
-0.000662809
0.00645318
-0.000848409
0.00660024
-0.00104114
0.00677756
-0.00124164
0.00698294
-0.00145048
0.00721436
-0.00166824
0.00747052
-0.00189575
0.0077504
-0.00213427
0.00805284
-0.00238401
0.00837995
0.00873783
-0.0026415
2.69639e-05
0.00228505
-3.19457e-06
0.00480633
-0.000107967
0.0059374
-0.000249881
0.0063348
-0.000409038
0.0064922
-0.000576804
0.00662095
-0.000751356
0.00677479
-0.000932989
0.00695919
-0.00112228
0.00717223
-0.00131978
0.00741186
-0.00152605
0.00767679
-0.0017419
0.00796625
-0.00196851
0.00827945
-0.00220583
0.00861727
0.00898293
-0.00245093
3.89868e-05
0.00224606
2.62274e-05
0.00481909
-5.81281e-05
0.00602175
-0.000184738
0.0064614
-0.000331547
0.00663901
-0.000487824
0.00677722
-0.000651032
0.00693799
-0.000821275
0.00712943
-0.000999062
0.00735002
-0.00118492
0.00759772
-0.00137939
0.00787126
-0.00158323
0.0081701
-0.00179754
0.00849376
-0.0020223
0.00884203
0.00921548
-0.00225486
5.08229e-05
0.00219524
5.78365e-05
0.00481208
-5.91836e-06
0.00608551
-0.000117549
0.00657304
-0.000251512
0.00677297
-0.000395949
0.00692166
-0.00054753
0.00708958
-0.000706111
0.00728801
-0.000872113
0.00751602
-0.00104603
0.00777163
-0.00122837
0.00805361
-0.00141986
0.00836158
-0.00162145
0.00869535
-0.00183323
0.00905381
0.0094354
-0.00205314
6.24509e-05
0.00213279
9.02286e-05
0.0047843
4.64364e-05
0.0061293
-4.85539e-05
0.00666803
-0.000168998
0.00689341
-0.000301266
0.00705393
-0.000440954
0.00722926
-0.000587612
0.00743467
-0.000741561
0.00766997
-0.000903247
0.00793332
-0.00107316
0.00822352
-0.00125194
0.00854037
-0.00144042
0.00888383
-0.00163868
0.00925207
0.00964201
-0.00184529
7.36525e-05
0.00205914
0.000122776
0.00473518
0.0001002
0.00615188
2.22908e-05
0.00674594
-8.41607e-05
0.00699987
-0.000203865
0.00717363
-0.000331407
0.00735681
-0.000465902
0.00756917
-0.000607541
0.00781161
-0.000756726
0.0080825
-0.000913906
0.0083807
-0.00107964
0.0087061
-0.00125465
0.00905884
-0.00143898
0.00943639
0.00983462
-0.00163158
8.42208e-05
0.00197492
0.000155147
0.00466425
0.000154758
0.00615226
9.48493e-05
0.00680584
2.00168e-06
0.00709271
-0.000103874
0.00727951
-0.000219021
0.00747195
-0.000341108
0.00769125
-0.000470199
0.0079407
-0.000606626
0.00821893
-0.000750782
0.00852486
-0.000903149
0.00885847
-0.00106434
0.00922003
-0.00123441
0.00960647
0.0100127
-0.00141253
9.39747e-05
0.00188094
0.000187
0.00457122
0.000209749
0.00612952
0.000169051
0.00684654
9.22942e-05
0.00716947
-2.19207e-06
0.00737399
-0.000103951
0.00757371
-0.000213388
0.00780069
-0.000329685
0.008057
-0.000453114
0.00834236
-0.000583976
0.00865572
-0.000722653
0.00899715
-0.000869707
0.00936708
-0.00102525
0.00976201
0.010176
-0.00118852
0.000102738
0.0017782
0.000217955
0.00445601
0.000264826
0.00608264
0.000244388
0.00686698
0.000183692
0.00723017
0.000103777
0.00745391
1.34944e-05
0.00766399
-8.29391e-05
0.00789713
-0.000186183
0.00816024
-0.000296373
0.00845255
-0.000413694
0.00877304
-0.000538387
0.00912184
-0.000670979
0.00949967
-0.00081177
0.0099028
0.0103241
-0.000959831
0.000110334
0.00166787
0.000247603
0.00431874
0.000319558
0.00601069
0.000320562
0.00686598
0.000276831
0.0072739
0.000211046
0.00751969
0.000134404
0.00774064
5.0317e-05
0.00798121
-4.00263e-05
0.00825058
-0.000136618
0.00854914
-0.000240166
0.00887659
-0.000350609
0.00923228
-0.000468396
0.00961746
-0.000594273
0.0100287
0.0104566
-0.000726817
0.000116599
0.00155127
0.000275509
0.00415983
0.000373448
0.00591275
0.0003972
0.00684222
0.000371439
0.00729966
0.000320367
0.00757077
0.000257115
0.00780389
0.000186373
0.00805196
0.000109258
0.0083277
2.58197e-05
0.00863258
-6.36732e-05
0.00896608
-0.000159666
0.00932828
-0.000262303
0.0097201
-0.000372958
0.0101393
0.0105735
-0.000489855
0.000121388
0.00142988
0.000301213
0.00398
0.000425935
0.00578803
0.000473831
0.00679433
0.000467195
0.0073063
0.000431533
0.00760643
0.000381979
0.00785344
0.000324559
0.00810938
0.000260946
0.00839131
0.000191458
0.00870207
0.000115886
0.00904165
3.40928e-05
0.00941007
-5.35e-05
0.00980769
-0.000147477
0.0102333
0.0106757
-0.000249718
0.000124587
0.0013053
0.00032423
0.00378036
0.000476374
0.00563588
0.000549886
0.00672082
0.000563704
0.00729248
0.00054427
0.00762586
0.00050882
0.00788889
0.000464883
0.00815331
0.000414841
0.00844135
0.000359231
0.00875768
0.000298062
0.00910282
0.000231332
0.0094768
0.000159009
0.00988001
8.08918e-05
0.0103114
0.0107661
-9.41365e-06
0.000126119
0.00117918
0.000344061
0.00356242
0.000524035
0.00545591
0.000624685
0.00662017
0.000660473
0.00725669
0.000658258
0.00762808
0.000637403
0.00790975
0.000607166
0.00818355
0.000570803
0.00847771
0.000529191
0.00879929
0.000482493
0.00914952
0.000430691
0.0095286
0.000373826
0.00993688
0.000311275
0.010374
0.0108335
0.000243781
0.000125955
0.00105322
0.000360143
0.00332823
0.000568099
0.00524796
0.000697422
0.00649084
0.000756888
0.00719722
0.000773094
0.00761187
0.000767456
0.00791538
0.000751186
0.00819982
0.000728628
0.00850027
0.000701108
0.00882681
0.00066896
0.00918167
0.00063224
0.00956532
0.000591057
0.00997806
0.000545412
0.0104196
0.0108838
0.000495191
0.000124124
0.000929097
0.000371958
0.0030804
0.000607675
0.00501224
0.000767155
0.00633136
0.000852194
0.00711218
0.000888275
0.00757579
0.000898654
0.00790501
0.000896697
0.00820178
0.000888084
0.00850889
0.000874734
0.00884016
0.000857215
0.00919918
0.0008357
0.00958684
0.000810367
0.0100034
0.000781231
0.0104488
0.010917
0.000747958
0.00012071
0.000808387
0.000379103
0.00282201
0.000641818
0.00474952
0.000832789
0.00614039
0.00094547
0.0069995
0.00100316
0.0075181
0.00103059
0.00787758
0.00104341
0.00818895
0.00104892
0.00850338
0.00104982
0.00883926
0.00104698
0.00920202
0.00104071
0.0095931
0.00103123
0.0100129
0.00101841
0.0104616
0.0109334
0.00100205
0.000115853
0.000692534
0.000381266
0.00255659
0.000669538
0.00446125
0.000893073
0.00591686
0.0010356
0.00685698
0.00111695
0.00743675
0.00116275
0.00783178
0.00119099
0.00816071
0.00121087
0.0084835
0.00122608
0.00882405
0.00123796
0.00919015
0.00124694
0.00958411
0.0012533
0.0100065
0.00125683
0.010458
0.0109331
0.00125712
0.000109734
0.000582801
0.000378269
0.00228806
0.000689836
0.00414968
0.000946603
0.00566009
0.00112124
0.00668234
0.00122862
0.00732937
0.00129446
0.00776594
0.00133901
0.00811616
0.00137361
0.00844891
0.00140326
0.00879439
0.00142987
0.00916355
0.00145409
0.00955989
0.00147629
0.00998432
0.0014963
0.010438
0.0109161
0.00151333
0.000102574
0.000480227
0.000370112
0.00202052
0.00070176
0.00381804
0.000991834
0.00537002
0.00120081
0.00647337
0.00133691
0.00719327
0.00142488
0.00767796
0.00148694
0.00805411
0.00153678
0.00839906
0.00158104
0.00875013
0.00162241
0.00912218
0.00166188
0.00952042
0.00169992
0.00994627
0.00173652
0.0104014
0.010882
0.00177056
9.46212e-05
0.000385606
0.000356999
0.00175814
0.000704479
0.00347056
0.00102712
0.00504737
0.00127245
0.00622804
0.00144025
0.00702547
0.0015529
0.00756531
0.00163407
0.00797294
0.00169994
0.00833318
0.0017591
0.00869098
0.0018153
0.00906598
0.00186999
0.00946573
0.00192386
0.0098924
0.00197711
0.0103482
0.0108309
0.00202827
8.61356e-05
0.00029947
0.000339356
0.00150492
0.00069739
0.00311252
0.00105078
0.00469399
0.00133406
0.00594475
0.00153671
0.00682283
0.00167709
0.00742492
0.00177948
0.00787055
0.00186252
0.00825015
0.00193703
0.00861647
0.00200819
0.00899482
0.00207812
0.00939579
0.00214777
0.00982276
0.00221765
0.0102783
0.0107626
0.00228595
7.73716e-05
0.000222098
0.000317817
0.00126448
0.000680234
0.0027501
0.0010612
0.00431302
0.0013833
0.00562265
0.00162397
0.00658216
0.00179563
0.00725326
0.00192196
0.00774422
0.00202376
0.00814835
0.00211435
0.00852587
0.00220071
0.00890846
0.00228593
0.00931058
0.00237129
0.0097374
0.00245775
0.0101919
0.0106772
0.00254316
6.85625e-05
0.000153536
0.000293192
0.00103985
0.000653217
0.00239008
0.00105699
0.00390925
0.00141765
0.00526199
0.0016993
0.00630051
0.00190619
0.00704637
0.00205986
0.00759055
0.00218263
0.00802559
0.00229044
0.00841806
0.00239244
0.00880646
0.00249303
0.00920999
0.00259405
0.00963637
0.00269702
0.0100889
0.0105747
0.00279946
5.99095e-05
9.36263e-05
0.000266408
0.000833348
0.000617094
0.00203939
0.00103715
0.00348919
0.00143459
0.00486455
0.00175954
0.00597556
0.0020059
0.00680001
0.00219102
0.00740542
0.00233772
0.0078789
0.00246443
0.00829134
0.00258282
0.00868807
0.00269902
0.00909379
0.00281568
0.00951971
0.00293507
0.0099695
0.0104554
0.00305441
5.15782e-05
4.20481e-05
0.000238432
0.000646494
0.00057319
0.00170464
0.00100136
0.00306102
0.00143174
0.00443418
0.00180124
0.00560606
0.00209125
0.00651
0.00231261
0.00718406
0.00248709
0.00770442
0.00263514
0.00814329
0.00277112
0.00855209
0.00290341
0.0089615
0.00303577
0.00938735
0.0031715
0.00983377
0.0103193
0.00330761
4.37003e-05
-1.65217e-06
0.000210195
0.000479999
0.000523316
0.00139151
0.000950177
0.00263416
0.00140723
0.00397713
0.00182075
0.00519253
0.0021581
0.00617264
0.00242099
0.00692117
0.00262807
0.00749734
0.00280084
0.00797051
0.00295634
0.0083966
0.00310556
0.00881228
0.00325386
0.00923906
0.00340589
0.00968174
0.0101665
0.00355861
3.6377e-05
-3.80291e-05
0.000182519
0.000333856
0.000469601
0.00110443
0.000885208
0.00221855
0.00136004
0.0035023
0.00181457
0.00473801
0.00220178
0.00578543
0.00251162
0.00661133
0.00275706
0.0072519
0.00295911
0.00776846
0.00313697
0.00821874
0.00330459
0.00864465
0.00346937
0.00907429
0.00363778
0.00951332
0.00999735
0.00380697
2.96797e-05
-6.77088e-05
0.000156074
0.000207462
0.000414269
0.000846238
0.000809141
0.00182368
0.00129047
0.00302097
0.00177978
0.0042487
0.00221727
0.00534795
0.00257901
0.00624959
0.00286933
0.00696158
0.00310648
0.00753132
0.0033108
0.00801442
0.0034992
0.00845625
0.0036815
0.00889198
0.00386661
0.00932822
0.0098117
0.00405227
2.36592e-05
-9.1368e-05
0.000131373
9.97485e-05
0.000359403
0.000618208
0.000725512
0.00145757
0.00120049
0.00254599
0.00171471
0.00373448
0.00219972
0.00486293
0.00261688
0.00583243
0.00295882
0.00661964
0.00323815
0.00725199
0.00347456
0.00777801
0.00368737
0.00824344
0.00388911
0.00869024
0.00409166
0.00912567
0.00960952
0.00429384
1.83455e-05
-0.000109714
0.000108778
9.31558e-06
0.000306768
0.000420218
0.000638288
0.00112605
0.00109391
0.00209037
0.00161962
0.00320877
0.00214516
0.00433739
0.0026185
0.0053591
0.00301814
0.00621999
0.00334767
0.00692245
0.00362348
0.0075022
0.00386603
0.00800089
0.00409034
0.00846593
0.00431184
0.00890417
0.00939016
0.00453121
1.37508e-05
-0.000123464
8.85284e-05
-6.5462e-05
0.000257719
0.000251027
0.000551358
0.000832411
0.000976038
0.00166569
0.00149735
0.00268746
0.00205152
0.00378322
0.00257748
0.00483313
0.00303881
0.00575867
0.00342671
0.00653455
0.00375079
0.00717812
0.00403045
0.00772122
0.00428233
0.00821405
0.00452537
0.00866113
0.0091525
0.00476302
9.87099e-06
-0.000133335
7.07488e-05
-0.00012634
0.000213182
0.000108594
0.000468073
0.00057752
0.000853072
0.00128069
0.00135355
0.00218698
0.00191977
0.003217
0.00248905
0.00426385
0.003012
0.00523573
0.00346511
0.00608144
0.0038473
0.00679593
0.00417363
0.0073949
0.00446025
0.00792742
0.00472976
0.00839162
0.00889441
0.00498785
6.68638e-06
-0.000140022
5.54676e-05
-0.000175121
0.000173695
-9.63358e-06
0.000390969
0.000360246
0.000731109
0.000940554
0.00119613
0.00172196
0.00175483
0.00265829
0.00235168
0.003667
0.00292995
0.00465746
0.00345153
0.00555985
0.00390114
0.00634632
0.00428552
0.00701052
0.00461706
0.00759588
0.00491942
0.00808927
0.00861045
0.00520338
4.16004e-06
-0.000144182
4.26211e-05
-0.000213582
0.000139457
-0.000106469
0.00032168
0.000178023
0.000615311
0.000646922
0.00103405
0.00130322
0.00156552
0.00212682
0.00216874
0.00306378
0.00278819
0.00403801
0.003375
0.00497304
0.00389844
0.00582288
0.00435239
0.00655657
0.00474158
0.0072067
0.00508886
0.00774198
0.00829848
0.00540084
2.23733e-06
-0.000146419
3.20607e-05
-0.000243405
0.000110376
-0.000184785
0.000260993
2.74068e-05
0.000509382
0.000398533
0.000875804
0.000936803
0.0013634
0.00163922
0.00194928
0.00247791
0.00258804
0.00339926
0.00322773
0.00433334
0.00382457
0.00522604
0.00435791
0.00602323
0.0048177
0.00674691
0.00522332
0.00733636
0.00793583
0.00558597
8.49849e-07
-0.000147269
2.35606e-05
-0.000266116
8.61161e-05
-0.00024734
0.000208973
-9.54499e-05
0.000415423
0.000192083
0.000728099
0.000624127
0.00116056
0.00120676
0.00170704
0.00193142
0.00233831
0.00276799
0.00300853
0.00366312
0.00366848
0.0045661
0.00428199
0.00540971
0.00482986
0.00619904
0.00530118
0.00686504
0.00751796
0.00571905
-8.11373e-08
-0.000147188
1.68233e-05
-0.000283021
6.61409e-05
-0.000296658
0.00016511
-0.000194419
0.000334082
2.31115e-05
0.000595202
0.000363007
0.000967389
0.000834575
0.00145787
0.00144094
0.00205485
0.00217101
0.00272573
0.00299224
0.00342663
0.00386519
0.00410993
0.00472641
0.004747
0.00556198
0.00531757
0.00629447
0.00704456
0.00579096
-8.28846e-07
-0.000146359
1.14965e-05
-0.000295346
4.97752e-05
-0.000334936
0.000128473
-0.000273117
0.000264842
-0.000113257
0.000478926
0.000148923
0.000791081
0.00052242
0.00121631
0.00101571
0.00175731
0.00163001
0.00239741
0.00235214
0.00310702
0.00315559
0.00383685
0.00399658
0.00455147
0.00484736
0.00523546
0.00561048
0.00648693
0.00579308
-1.26383e-06
-0.000145095
7.2321e-06
-0.000303842
3.62646e-05
-0.000363969
9.78652e-05
-0.000334718
0.000206374
-0.000221766
0.000379055
-2.37582e-05
0.000635213
0.000266262
0.000993058
0.000657863
0.0014646
0.00115847
0.00204779
0.00176895
0.00272996
0.00247342
0.0034718
0.00325474
0.00423474
0.00408442
0.0050136
0.00483162
0.00582878
0.00567175
-1.56516e-06
-0.00014353
3.67052e-06
-0.000309078
2.48446e-05
-0.000385143
7.19774e-05
-0.000381851
0.000156878
-0.000306666
0.000293955
-0.000160835
0.000500214
6.00027e-05
0.000793879
0.000364198
0.0011912
0.000761146
0.00170096
0.00125919
0.00232381
0.00185057
0.00303867
0.00253989
0.00381003
0.00331306
0.00464432
0.00399733
0.00507433
0.00539878
-1.86758e-06
-0.000141662
5.23687e-07
-0.000311469
1.47985e-05
-0.000399418
4.95272e-05
-0.000416579
0.000114389
-0.000371528
0.000221206
-0.000267652
0.000384291
-0.000103082
0.000620087
0.000128402
0.000945474
0.000435758
0.00137538
0.00082928
0.00191765
0.00130831
0.00257144
0.0018861
0.00330951
0.00257499
0.00414402
0.00316282
0.00424859
0.00496976
-2.25993e-06
-0.000139402
-2.65815e-06
-0.000311071
5.4971e-06
-0.000407573
2.93716e-05
-0.000440454
7.70383e-05
-0.000419195
0.000158149
-0.000348763
0.000284436
-0.000229369
0.000469847
-5.70093e-05
0.000729901
0.000175705
0.00108132
0.000477857
0.00153466
0.000854973
0.00210452
0.00131623
0.00277441
0.00190509
0.00355454
0.00238269
0.00339794
0.00440519
-2.79117e-06
-0.000136611
-5.93677e-06
-0.000307925
-3.53732e-06
-0.000409973
1.05824e-05
-0.000454574
4.32244e-05
-0.000451837
0.000102297
-0.000407835
0.000197298
-0.00032437
0.000339638
-0.00019935
0.000542642
-2.72995e-05
0.000821772
0.000198727
0.00118857
0.000488175
0.00166387
0.000840938
0.00224338
0.00132558
0.00292978
0.00169629
0.00258029
0.00374743
-3.49713e-06
-0.000133114
-9.47682e-06
-0.000301945
-1.26384e-05
-0.000406811
-7.51507e-06
-0.000459697
1.17172e-05
-0.000471069
5.15993e-05
-0.000447717
0.000119797
-0.000392568
0.00022547
-0.000305022
0.000379567
-0.000181397
0.000594916
-1.66218e-05
0.000883465
0.000199626
0.0012638
0.000460602
0.00174455
0.000844831
0.00231756
0.00112327
0.00184798
0.00304987
-4.39255e-06
-0.000128722
-1.3355e-05
-0.000292983
-2.19874e-05
-0.000398179
-2.53356e-05
-0.000456349
-1.83107e-05
-0.000478094
4.55822e-06
-0.000470586
4.94814e-05
-0.000437491
0.000123737
-0.000379278
0.000236054
-0.000293715
0.000396512
-0.000177079
0.000616607
-2.0469e-05
0.000908991
0.000168219
0.00129283
0.000460993
0.00174914
0.000666956
0.00123303
0.00236409
-5.47054e-06
-0.000123251
-1.75738e-05
-0.00028088
-3.16346e-05
-0.000384118
-4.30532e-05
-0.00044493
-4.73039e-05
-0.000473843
-3.97483e-05
-0.000478142
-1.53431e-05
-0.000461896
3.1675e-05
-0.000426296
0.000108124
-0.000370163
0.000221735
-0.00029069
0.000382567
-0.000181302
0.000598042
-4.72557e-05
0.000892142
0.000166893
0.00123965
0.000319446
0.000743485
0.0017292
-6.70522e-06
-0.000116546
-2.20762e-05
-0.000265509
-4.15108e-05
-0.000364683
-6.06427e-05
-0.000425798
-7.53804e-05
-0.000459105
-8.17492e-05
-0.000471773
-7.5632e-05
-0.000468014
-5.25e-05
-0.000449428
-7.16754e-06
-0.000415496
6.65255e-05
-0.000364384
0.000176169
-0.000290946
0.000326729
-0.000197816
0.000540468
-4.68457e-05
0.000793803
6.61105e-05
0.000370635
0.00116665
-8.05541e-06
-0.00010849
-2.67588e-05
-0.000246805
-5.14558e-05
-0.000339986
-7.79204e-05
-0.000399334
-0.000102401
-0.000434625
-0.00012146
-0.000452714
-0.000131729
-0.000457744
-0.000129656
-0.000451501
-0.000111247
-0.000433905
-7.22088e-05
-0.000403421
-7.44422e-06
-0.00035571
9.1051e-05
-0.000296311
0.0002339
-0.000189694
0.000410708
-0.000110698
9.96809e-05
0.000681662
-9.46878e-06
-9.90217e-05
-3.14849e-05
-0.000224789
-6.12443e-05
-0.000310227
-9.45925e-05
-0.000365986
-0.000128046
-0.000401171
-0.000158608
-0.000422152
-0.000183519
-0.000432833
-0.000200011
-0.00043501
-0.000205095
-0.000428821
-0.00019548
-0.000413036
-0.000166164
-0.000385026
-0.000115639
-0.000346836
-3.20833e-05
-0.00027325
8.77394e-05
-0.000230521
-8.08699e-05
0.00026829
-1.08861e-05
-8.81355e-05
-3.60976e-05
-0.000199578
-7.06131e-05
-0.000275711
-0.000110299
-0.0003263
-0.000151885
-0.000359585
-0.000192738
-0.0003813
-0.000230593
-0.000394978
-0.000263304
-0.000402298
-0.000288635
-0.000403489
-0.000304055
-0.000397616
-0.000306089
-0.000382991
-0.000293375
-0.000359551
-0.000251949
-0.000314676
-0.000192956
-0.000289513
-0.000192834
-8.09914e-05
-1.22455e-05
-7.589e-05
-4.04323e-05
-0.000171391
-7.92835e-05
-0.00023686
-0.000124653
-0.00028093
-0.000173439
-0.000310799
-0.000223305
-0.000331434
-0.000272386
-0.000345897
-0.000319022
-0.000355662
-0.000361538
-0.000360973
-0.00039801
-0.000361145
-0.000425943
-0.000355058
-0.000443401
-0.000342093
-0.000440769
-0.000317308
-0.000427076
-0.000303207
-0.000252004
-0.000367906
-1.34862e-05
-6.24038e-05
-4.43276e-05
-0.00014055
-8.69829e-05
-0.000194205
-0.000137273
-0.00023064
-0.000192228
-0.000255844
-0.00024975
-0.000273912
-0.000308288
-0.000287358
-0.000366556
-0.000297394
-0.00042329
-0.000304239
-0.000477027
-0.000307408
-0.000525906
-0.00030618
-0.000567925
-0.000300073
-0.00059727
-0.000287963
-0.000618879
-0.000281598
-0.000260505
-0.000610378
-1.45521e-05
-4.78517e-05
-4.76352e-05
-0.000107466
-9.34608e-05
-0.000148379
-0.000147809
-0.000176292
-0.00020781
-0.000195843
-0.00027155
-0.000210172
-0.000337719
-0.000221189
-0.000405306
-0.000229808
-0.000473349
-0.000236196
-0.000540729
-0.000240029
-0.000606038
-0.00024087
-0.000667586
-0.000238525
-0.000722158
-0.000233391
-0.000772159
-0.000231597
-0.000226755
-0.000805909
-1.53946e-05
-3.24571e-05
-5.02275e-05
-7.26335e-05
-9.85031e-05
-0.000100104
-0.000155963
-0.000118833
-0.000219807
-0.000131998
-0.000288259
-0.00014172
-0.00036018
-0.000149268
-0.000434752
-0.000155235
-0.000511227
-0.000159721
-0.000588738
-0.000162518
-0.000666219
-0.000163389
-0.00074242
-0.000162324
-0.000815763
-0.000160048
-0.000887608
-0.000159752
-0.000160778
-0.000953585
-1.59755e-05
-1.64816e-05
-5.20038e-05
-3.66052e-05
-0.000101941
-5.01659e-05
-0.000161499
-5.92749e-05
-0.000227925
-6.55726e-05
-0.000299527
-7.01179e-05
-0.000375279
-7.35162e-05
-0.000454486
-7.60283e-05
-0.000536535
-7.76722e-05
-0.000620725
-7.83282e-05
-0.000706234
-7.78794e-05
-0.000792196
-7.63628e-05
-0.000877979
-7.42649e-05
-0.00096472
-7.30106e-05
-7.32503e-05
-0.00105225
-1.62682e-05
-5.28952e-05
-0.000103661
-0.00016426
-0.000231963
-0.000305119
-0.000382755
-0.000464233
-0.000549003
-0.000636449
-0.000725873
-0.000816625
-0.00090851
-0.0010027
-0.00110087
-0.00114457
7.74063e-05
-3.16332e-05
-0.00117881
6.84658e-05
-3.42214e-05
-0.00120933
6.59813e-05
-3.54619e-05
-0.0012351
6.09828e-05
-3.52137e-05
-0.00125687
5.49053e-05
-3.31402e-05
-0.00127497
4.70475e-05
-2.89433e-05
-0.00128969
3.72022e-05
-2.24817e-05
-0.00130123
2.52385e-05
-1.36992e-05
-0.00130974
1.10595e-05
-2.55254e-06
-0.0013153
-5.02849e-06
1.05883e-05
-0.00131834
-2.21008e-05
2.51403e-05
-0.00131884
-4.061e-05
4.11164e-05
-0.00131688
-6.00297e-05
5.80614e-05
-0.00131249
-7.98407e-05
7.5452e-05
-0.00130572
-9.94552e-05
9.26904e-05
-0.00129662
-0.000118238
0.000109133
-0.0012852
-0.000135527
0.000124114
-0.00127151
-0.000150652
0.000136954
-0.00125554
-0.000162957
0.000146989
-0.00123731
-0.000171842
0.000153615
-0.00121683
-0.000176786
0.000156306
-0.0011941
-0.000177353
0.000154625
-0.00116913
-0.000173232
0.00014826
-0.00114193
-0.000164247
0.000137043
-0.0011125
-0.000150365
0.000120941
-0.00108087
-0.000131699
0.000100063
-0.00104701
-0.000108537
7.46817e-05
-0.00101098
-8.13673e-05
4.53337e-05
-0.000972918
-5.08473e-05
1.27884e-05
-0.000932739
-1.76869e-05
-2.24921e-05
-0.000890628
1.77131e-05
-5.98235e-05
-0.000846531
5.39666e-05
-9.80639e-05
-0.000800565
9.0319e-05
-0.000136285
-0.000752841
0.000125755
-0.000173479
-0.000703394
0.000159118
-0.000208566
-0.000652354
0.000189433
-0.000240473
-0.000599789
0.000215721
-0.000268286
-0.000545789
0.000237179
-0.000291179
-0.000490441
0.000253058
-0.000308406
-0.00043383
0.000262749
-0.000319361
-0.00037603
0.000265755
-0.000323555
-0.000317152
0.000261943
-0.000320821
-0.000257303
0.000251208
-0.000311057
-0.000196581
0.000233555
-0.000294277
-0.00013512
0.000209345
-0.000270806
-7.31022e-05
0.000179107
-0.000241125
-1.05534e-05
0.00014321
-0.000205759
5.21142e-05
0.000102823
-0.000165491
0.000114852
5.85088e-05
-0.000121246
0.000177543
1.1167e-05
-7.38586e-05
0.000239727
-3.77011e-05
-2.44831e-05
0.000301455
-8.76879e-05
2.59609e-05
0.000362456
-0.000137515
7.65136e-05
0.000422576
-0.000186156
0.000126036
0.000481669
-0.000232634
0.000173541
0.000539613
-0.000276058
0.000218114
0.00059633
-0.0003156
0.000258882
0.000651785
-0.000350534
0.000295078
0.00070598
-0.000380243
0.000326049
0.000758949
-0.000404235
0.000351266
0.000810757
-0.000422127
0.000370318
0.000861497
-0.000433658
0.000382918
0.000911278
-0.000438685
0.000388904
0.000960218
-0.000437184
0.000388244
0.00100844
-0.000429242
0.000381023
0.00105605
-0.000415064
0.000367452
0.00110315
-0.000394946
0.000347845
0.00114982
-0.000369304
0.000322633
0.00119612
-0.000338605
0.000292311
0.00124207
-0.000303456
0.000257503
0.00128768
-0.000264434
0.000218821
0.00133295
-0.000222333
0.000177065
0.00137782
-0.00017772
0.000132845
0.00142229
-0.000131643
8.71798e-05
0.00146627
-8.43697e-05
4.03858e-05
0.00150972
-3.75886e-05
-5.85768e-06
0.00155269
9.5668e-06
-5.25396e-05
0.00159487
5.35571e-05
-9.57394e-05
0.00163712
9.74594e-05
-0.000139708
0.000142458
-0.000183109
-0.00109012
0.000121384
-0.00112274
0.000101083
-0.00115177
9.50157e-05
-0.00117631
8.55188e-05
-0.00119699
7.55852e-05
-0.00121416
6.42158e-05
-0.00122807
5.11191e-05
-0.00123894
3.61012e-05
-0.00124696
1.90816e-05
-0.00125191
-7.48894e-08
-0.00125457
-1.94466e-05
-0.00125478
-4.03923e-05
-0.00125263
-6.21872e-05
-0.00124814
-8.43222e-05
-0.00124138
-0.000106217
-0.00123237
-0.000127245
-0.00122115
-0.00014675
-0.00120773
-0.00016407
-0.00119213
-0.000178559
-0.00117436
-0.000189618
-0.0011544
-0.000196744
-0.00113225
-0.000199498
-0.00110791
-0.000197573
-0.00108137
-0.000190795
-0.0010526
-0.000179132
-0.00102159
-0.000162705
-0.000988333
-0.000141796
-0.000952829
-0.000116871
-0.000915134
-8.85423e-05
-0.00087537
-5.74516e-05
-0.000833216
-2.44402e-05
-0.000788909
9.65909e-06
-0.000742469
4.38792e-05
-0.00069405
7.7336e-05
-0.000643604
0.000108672
-0.000591261
0.000137091
-0.000537079
0.000161539
-0.00048116
0.00018126
-0.000423612
0.00019551
-0.000364537
0.000203674
-0.000304042
0.000205261
-0.000242273
0.000200174
-0.00017942
0.000188355
-0.000115612
0.000169747
-5.09896e-05
0.000144722
1.41346e-05
0.000113983
7.94165e-05
7.79283e-05
0.000144778
3.74619e-05
0.000209972
-6.68558e-06
0.000274472
-5.33326e-05
0.000338421
-0.000101651
0.000401381
-0.000150648
0.00046313
-0.000199264
0.000523464
-0.00024649
0.000582213
-0.000291384
0.000639244
-0.000333088
0.000694472
-0.000370828
0.000747866
-0.000403927
0.00079944
-0.000431818
0.000849257
-0.000454051
0.000897418
-0.000470289
0.000944064
-0.000480304
0.00098936
-0.00048398
0.00103349
-0.000481313
0.00107664
-0.000472397
0.00111901
-0.000457434
0.00116078
-0.000436711
0.0012021
-0.000410626
0.00124312
-0.000379621
0.00128395
-0.000344284
0.00132466
-0.000305151
0.00136534
-0.000263015
0.001406
-0.000218379
0.0014467
-0.000172336
0.0014874
-0.000125072
0.00152814
-7.83341e-05
0.00156901
-3.12959e-05
0.00160973
1.28382e-05
0.00165137
5.58145e-05
0.000101712
-0.000984182
0.000161929
-0.00101378
0.000130681
-0.00104004
0.000121276
-0.00106223
0.000107707
-0.0010808
9.4152e-05
-0.00109608
7.94979e-05
-0.0011083
6.33462e-05
-0.00111764
4.54411e-05
-0.00112421
2.56509e-05
-0.00112813
3.84499e-06
-0.00112959
-1.79887e-05
-0.00112882
-4.11643e-05
-0.00112581
-6.5201e-05
-0.00112059
-8.9538e-05
-0.00111321
-0.000113596
-0.0011037
-0.000136753
-0.00109209
-0.000158361
-0.0010784
-0.000177767
-0.00106262
-0.000194333
-0.00104478
-0.000207462
-0.00102485
-0.000216674
-0.00100281
-0.00022153
-0.000978657
-0.00022173
-0.000952347
-0.000217105
-0.000923851
-0.000207629
-0.000893128
-0.000193427
-0.00086014
-0.000174784
-0.000824865
-0.000152146
-0.000787305
-0.000126103
-0.000747444
-9.73117e-05
-0.000705448
-6.64362e-05
-0.000661078
-3.47118e-05
-0.000613847
-3.35129e-06
-0.000564841
2.83303e-05
-0.000513435
5.72653e-05
-0.000459933
8.35893e-05
-0.000404346
0.000105952
-0.00034677
0.000123684
-0.000287346
0.000136087
-0.000226196
0.000142524
-0.00016344
0.000142505
-9.92216e-05
0.000135956
-3.37968e-05
0.00012293
3.2455e-05
0.000103495
9.9367e-05
7.78101e-05
0.000166652
4.66976e-05
0.000234361
1.02192e-05
0.000301557
-2.97335e-05
0.00036829
-7.34183e-05
0.000434294
-0.000119337
0.000499225
-0.000166583
0.000562759
-0.000214181
0.000624616
-0.000261122
0.000684561
-0.000306435
0.0007424
-0.000349223
0.000797986
-0.000388674
0.000851227
-0.000424069
0.000902092
-0.000454792
0.000950606
-0.000480333
0.000996853
-0.000500298
0.00104096
-0.000514401
0.00108312
-0.00052246
0.00112354
-0.000524396
0.00116245
-0.000520231
0.00120013
-0.000510073
0.00123683
-0.000494132
0.0012728
-0.000472685
0.0013083
-0.000446123
0.00134353
-0.000414855
0.00137871
-0.00037946
0.00141398
-0.00034042
0.0014495
-0.000298534
0.00148535
-0.00025423
0.00152166
-0.000208646
0.00155846
-0.000161872
0.00159584
-0.000115716
0.00163396
-6.94161e-05
0.00167254
-2.5742e-05
0.00171284
1.55173e-05
6.14993e-05
-0.000827803
0.000197221
-0.000853263
0.000156142
-0.000875659
0.000143672
-0.000894527
0.000126575
-0.000910107
0.000109732
-0.000922697
9.20879e-05
-0.00093249
7.31396e-05
-0.000939618
5.25687e-05
-0.000944153
3.01863e-05
-0.000946241
5.93282e-06
-0.000946023
-1.8207e-05
-0.000943709
-4.34781e-05
-0.000939303
-6.96077e-05
-0.000932836
-9.60041e-05
-0.000924346
-0.000122086
-0.00091386
-0.000147239
-0.0009014
-0.000170821
-0.000886977
-0.00019219
-0.000870597
-0.000210713
-0.000852272
-0.000225787
-0.000831973
-0.000236972
-0.000809676
-0.000243828
-0.000785346
-0.00024606
-0.000758941
-0.000243509
-0.000730412
-0.000236158
-0.000699699
-0.00022414
-0.000666744
-0.00020774
-0.000631494
-0.000187396
-0.000593913
-0.000163684
-0.000553942
-0.000137283
-0.000511624
-0.000108753
-0.000466856
-7.94805e-05
-0.000420031
-5.01757e-05
-0.000370151
-2.155e-05
-0.00031781
4.92397e-06
-0.000263436
2.92153e-05
-0.000206749
4.92648e-05
-0.000147859
6.47946e-05
-8.6955e-05
7.51825e-05
-2.41147e-05
7.96832e-05
4.02582e-05
7.81319e-05
0.000106134
7.00808e-05
0.000173144
5.59195e-05
0.000241079
3.5561e-05
0.000309953
8.93537e-06
0.000378865
-2.22145e-05
0.000447513
-5.84284e-05
0.000516075
-9.8296e-05
0.000583827
-0.00014117
0.000650495
-0.000186004
0.000715724
-0.000231812
0.000779171
-0.000277628
0.000840526
-0.000322477
0.000899528
-0.000365436
0.000955961
-0.000405656
0.00100966
-0.000442378
0.00106054
-0.000474944
0.00110855
-0.000502804
0.00115373
-0.000525515
0.00119618
-0.000542746
0.00123605
-0.00055427
0.00127355
-0.00055996
0.00130894
-0.000559781
0.0013425
-0.00055379
0.00137454
-0.000542118
0.0014054
-0.000524991
0.0014354
-0.00050268
0.00146485
-0.000475575
0.00149405
-0.000444055
0.00152328
-0.000408691
0.00155277
-0.000369911
0.00158276
-0.00032852
0.00161339
-0.000284861
0.00164486
-0.000240116
0.00167727
-0.000194283
0.00171075
-0.000149195
0.00174554
-0.000104213
0.00178137
-6.15684e-05
0.00181957
-2.26816e-05
2.24876e-05
-0.000622026
0.000225114
-0.000642717
0.000176832
-0.000660453
0.000161407
-0.000675277
0.0001414
-0.000687247
0.000121702
-0.000696576
0.000101417
-0.000703416
7.99804e-05
-0.00070786
5.70128e-05
-0.000709934
3.22597e-05
-0.000709704
5.70324e-06
-0.000707458
-2.0453e-05
-0.000703243
-4.76934e-05
-0.000697092
-7.57586e-05
-0.00068904
-0.000104056
-0.000679119
-0.000132007
-0.000667351
-0.000159007
-0.000653754
-0.000184419
-0.000638326
-0.000207618
-0.000621072
-0.000227967
-0.000602009
-0.00024485
-0.000581099
-0.000257883
-0.000558307
-0.00026662
-0.000533592
-0.000270775
-0.000506899
-0.000270202
-0.000478164
-0.000264894
-0.000447314
-0.00025499
-0.000414271
-0.000240783
-0.000378959
-0.000222708
-0.00034131
-0.000201332
-0.000301227
-0.000177366
-0.000258828
-0.000151153
-0.000213842
-0.000124466
-0.000166392
-9.76263e-05
-0.00011643
-7.15116e-05
-6.40989e-05
-4.74073e-05
-8.99802e-06
-2.58855e-05
4.85462e-05
-8.27946e-06
0.000108318
5.02311e-06
0.000170018
1.34826e-05
0.000233645
1.60558e-05
0.00029901
1.27674e-05
0.000366145
2.9453e-06
0.000434195
-1.21309e-05
0.000503125
-3.3369e-05
0.000572366
-6.03057e-05
0.0006421
-9.1948e-05
0.00071156
-0.000127888
0.00078048
-0.000167216
0.000848414
-0.000209104
0.000914979
-0.000252569
0.000979798
-0.000296632
0.00104251
-0.000340336
0.00110278
-0.000382746
0.00116032
-0.000422982
0.00121491
-0.000460248
0.00126638
-0.000493845
0.00131462
-0.000523179
0.00135958
-0.00054777
0.00140131
-0.000567245
0.00143991
-0.000581342
0.00147554
-0.0005899
0.00150843
-0.000592853
0.00153887
-0.000590217
0.00156717
-0.000582094
0.0015937
-0.000568644
0.00161882
-0.000550115
0.00164292
-0.000526781
0.00166638
-0.000499037
0.00168957
-0.000467238
0.00171282
-0.000431948
0.00173645
-0.000393542
0.00176077
-0.000352832
0.00178598
-0.000310077
0.00181235
-0.000266488
0.00184006
-0.000221989
0.00186925
-0.000178381
0.00190027
-0.000135234
0.00193281
-9.4108e-05
0.00196822
-5.80986e-05
-1.46553e-05
-0.000367098
0.000242436
-0.000383303
0.000193037
-0.000396085
0.00017419
-0.000406507
0.000151821
-0.00041461
0.000129805
-0.000420452
0.000107259
-0.000424137
8.36656e-05
-0.000425715
5.85901e-05
-0.000425196
3.17411e-05
-0.000422446
2.95326e-06
-0.000418063
-2.48355e-05
-0.000411826
-5.39304e-05
-0.000403816
-8.37687e-05
-0.000394075
-0.000113797
-0.00038263
-0.000143452
-0.000369499
-0.000172138
-0.000354693
-0.000199225
-0.00033819
-0.000224121
-0.000319997
-0.00024616
-0.000300139
-0.000264708
-0.00027857
-0.000279451
-0.00025525
-0.000289939
-0.00023013
-0.000295896
-0.000203146
-0.000297187
-0.000174222
-0.000293817
-0.000143276
-0.000285936
-0.000110221
-0.000273837
-7.49773e-05
-0.000257952
-3.74813e-05
-0.000238828
2.21384e-06
-0.000217061
4.50802e-05
-0.00019402
9.01954e-05
-0.000169581
0.000137752
-0.000145183
0.000187883
-0.000121642
0.000240473
-9.99975e-05
0.00029563
-8.10429e-05
0.000353073
-6.57227e-05
0.000412827
-5.47307e-05
0.000474889
-4.85796e-05
0.00053887
-4.79248e-05
0.000604567
-5.29301e-05
0.000671442
-6.3929e-05
0.00073974
-8.04289e-05
0.000808861
-0.000102491
0.000878332
-0.000129777
0.000947901
-0.000161517
0.00101712
-0.00019711
0.0010856
-0.000235689
0.00115289
-0.000276393
0.00121858
-0.000318261
0.00128227
-0.00036033
0.0013436
-0.000401663
0.00140221
-0.00044136
0.00145782
-0.000478589
0.00151018
-0.000512608
0.00155912
-0.000542779
0.00160451
-0.000568576
0.00164633
-0.000589587
0.0016846
-0.000605514
0.00171942
-0.000616166
0.00175097
-0.000621451
0.00177949
-0.000621367
0.00180526
-0.000615987
0.00182863
-0.000605465
0.00184998
-0.000589994
0.00186972
-0.000569856
0.00188827
-0.000545333
0.00190607
-0.000516832
0.00192352
-0.000484687
0.00194103
-0.000449467
0.00195899
-0.000411493
0.00197773
-0.000371581
0.00199758
-0.000329919
0.00201881
-0.00028772
0.00204169
-0.000244874
0.00206638
-0.000203071
0.00209333
-0.000162178
0.00212221
-0.000122988
0.00215427
-9.01606e-05
-4.93157e-05
-5.93628e-05
0.000239056
-7.60747e-05
0.000209749
-8.32612e-05
0.000181377
-8.95961e-05
0.000158156
-9.40893e-05
0.000134298
-9.66905e-05
0.00010986
-9.74374e-05
8.44126e-05
-9.63198e-05
5.74725e-05
-9.33043e-05
2.87256e-05
-8.8465e-05
-1.88604e-06
-8.20263e-05
-3.12742e-05
-7.39016e-05
-6.20551e-05
-6.41828e-05
-9.34876e-05
-5.2906e-05
-0.000125074
-4.00952e-05
-0.000156263
-2.57584e-05
-0.000186475
-9.891e-06
-0.000215092
7.42317e-06
-0.000241436
2.61892e-05
-0.000264926
4.66314e-05
-0.000285151
6.86849e-05
-0.000301505
9.23761e-05
-0.000313631
0.000117769
-0.000321288
0.000144936
-0.000324354
0.000173961
-0.000322842
0.000204934
-0.000316909
0.000237951
-0.000306854
0.00027311
-0.000293111
0.000310513
-0.000276231
0.000350299
-0.000256846
0.000392329
-0.00023605
0.000436885
-0.000214137
0.00048396
-0.000192258
0.000533601
-0.000171284
0.000585766
-0.000152162
0.00064045
-0.000135727
0.000697547
-0.00012282
0.000756915
-0.000114099
0.000818436
-0.000110101
0.000881877
-0.000111366
0.000947013
-0.000118066
0.00101345
-0.000130367
0.00108102
-0.000148
0.00114935
-0.000170814
0.00121798
-0.000198411
0.00128656
-0.000230096
0.00135465
-0.000265197
0.00142182
-0.000302865
0.00148764
-0.000342215
0.00155169
-0.000382307
0.00161355
-0.000422195
0.00167286
-0.000460966
0.00172926
-0.000497758
0.00178245
-0.000531787
0.00183221
-0.000562365
0.00187835
-0.000588914
0.00192075
-0.000610976
0.00195937
-0.000628208
0.00199424
-0.000640383
0.00202545
-0.000647383
0.00205319
-0.000649184
0.00207767
-0.000645852
0.0020992
-0.000637517
0.00211812
-0.000624388
0.00213483
-0.0006067
0.00214974
-0.00058477
0.00216331
-0.000558898
0.00217599
-0.000529513
0.00218823
-0.00049693
0.0022005
-0.000461731
0.00221319
-0.000424189
0.00222674
-0.000385126
0.00224149
-0.000344668
0.00225777
-0.000304006
0.00227594
-0.000263036
0.00229613
-0.000223269
0.00231888
-0.000184929
0.00234391
-0.000148017
0.00237223
-0.00011848
-8.09833e-05
0.000292134
0.000233743
0.000282522
0.000219361
0.000277388
0.00018651
0.000274226
0.000161318
0.000272298
0.000136226
0.000271967
0.000110192
0.00027328
8.30994e-05
0.000276267
5.44848e-05
0.000281056
2.39369e-05
0.000287276
-8.10564e-06
0.00029521
-3.92082e-05
0.000304661
-7.15063e-05
0.000315578
-0.000104404
0.000327921
-0.000137418
0.000341665
-0.000170007
0.000356801
-0.00020161
0.000373325
-0.000231616
0.000391265
-0.000259375
0.000410629
-0.000284289
0.000431401
-0.000305923
0.000453631
-0.000323735
0.000477375
-0.000337375
0.000502699
-0.000346612
0.000529678
-0.000351334
0.000558403
-0.000351567
0.000588972
-0.000347478
0.000621488
-0.00033937
0.00065606
-0.000327683
0.000692795
-0.000312966
0.000731817
-0.000295869
0.000773092
-0.000277324
0.000816811
-0.000257856
0.000863004
-0.000238451
0.000911704
-0.000219983
0.000962894
-0.000203352
0.00101654
-0.000189377
0.00107256
-0.000178833
0.00113081
-0.000172348
0.00119114
-0.000170435
0.00125332
-0.000173548
0.00131711
-0.000181854
0.00138217
-0.00019543
0.00144823
-0.00021406
0.00151492
-0.0002375
0.00158181
-0.000265303
0.00164852
-0.000296802
0.0017146
-0.000331282
0.00177964
-0.000367898
0.00184318
-0.000405761
0.00190482
-0.000443944
0.00196415
-0.000481522
0.00202079
-0.00051761
0.00207442
-0.000551386
0.00212474
-0.000582111
0.00217153
-0.000609151
0.0022146
-0.000631989
0.00225386
-0.000650229
0.00228924
-0.000663597
0.0023208
-0.000671935
0.0023486
-0.000675191
0.00237283
-0.000673409
0.0023937
-0.000666719
0.00241149
-0.000655311
0.00242655
-0.000639448
0.00243926
-0.000619409
0.00245004
-0.000595553
0.00245935
-0.000568201
0.00246764
-0.000537809
0.0024754
-0.000504687
0.0024831
-0.000469428
0.00249118
-0.000432275
0.0025001
-0.000394045
0.00251026
-0.000354828
0.00252202
-0.000315765
0.00253578
-0.000276793
0.00255171
-0.0002392
0.00257035
-0.000203568
0.00259154
-0.000169208
0.00261594
-0.000142887
-0.00010931
0.000700547
0.000231167
0.000693828
0.00022608
0.000688806
0.000191532
0.000686057
0.000164067
0.000684645
0.000137638
0.00068479
0.000110046
0.000686577
8.13126e-05
0.000690025
5.10372e-05
0.000695255
1.87062e-05
0.000701872
-1.47223e-05
0.000710226
-4.75623e-05
0.000720078
-8.13583e-05
0.000731344
-0.000115671
0.000743966
-0.00015004
0.0007579
-0.00018394
0.000773128
-0.000216839
0.000789648
-0.000248136
0.000807465
-0.000277193
0.000826593
-0.000303417
0.000847028
-0.000326357
0.00086882
-0.000345527
0.000892027
-0.000360583
0.000916716
-0.0003713
0.000942966
-0.000377583
0.000970868
-0.00037947
0.00100052
-0.000377134
0.00103204
-0.000370888
0.00106553
-0.000361172
0.0011011
-0.000348538
0.00113887
-0.000333639
0.00117886
-0.00031731
0.0012212
-0.000300201
0.00126596
-0.000283201
0.00131314
-0.000267169
0.00136275
-0.000252959
0.00141473
-0.00024136
0.00146899
-0.000233096
0.00152541
-0.000228762
0.00158381
-0.000228837
0.00164396
-0.000233701
0.00170561
-0.000243504
0.00176844
-0.00025826
0.00183215
-0.000277763
0.00189635
-0.000301701
0.00196064
-0.000329595
0.00202462
-0.000360783
0.00208786
-0.000394524
0.00214994
-0.000429976
0.00221043
-0.00046625
0.00226892
-0.000502434
0.00232503
-0.000537629
0.00237839
-0.000570978
0.00242871
-0.000601699
0.0024757
-0.0006291
0.00251915
-0.0006526
0.0025589
-0.000671739
0.00259485
-0.00068618
0.00262696
-0.000695713
0.00265527
-0.000700241
0.00267986
-0.000699779
0.00270088
-0.000694431
0.00271855
-0.000684386
0.00273313
-0.000669891
0.00274494
-0.00065126
0.00275435
-0.000628817
0.00276176
-0.000602966
0.00276761
-0.000574051
0.00277236
-0.00054256
0.00277648
-0.000508806
0.00278045
-0.000473397
0.00278473
-0.000436558
0.00278978
-0.000399097
0.00279605
-0.000361092
0.00280389
-0.000323612
0.00281376
-0.00028666
0.00282585
-0.000251294
0.00284067
-0.000218385
0.00285823
-0.00018677
0.0028788
-0.000163448
-0.000134147
0.00117214
0.000238752
0.00116202
0.000236202
0.00115296
0.000200597
0.00114676
0.000170264
0.00114261
0.000141785
0.00114046
0.000112195
0.00114029
8.14866e-05
0.00114204
4.92849e-05
0.00114576
1.4986e-05
0.0011511
-2.00605e-05
0.00115831
-5.47676e-05
0.00116714
-9.01902e-05
0.00117746
-0.000125989
0.00118916
-0.000161745
0.00120218
-0.000196955
0.00121647
-0.000231129
0.00123202
-0.000263688
0.00124882
-0.000293993
0.00126687
-0.000321466
0.00128617
-0.000345658
0.00130677
-0.000366125
0.00132871
-0.000382529
0.00135207
-0.00039466
0.00137692
-0.000402435
0.00140336
-0.000405903
0.00143147
-0.000405251
0.00146138
-0.000400794
0.00149319
-0.000392977
0.001527
-0.000382351
0.00156293
-0.000369567
0.00160102
-0.000355404
0.00164139
-0.000340567
0.00168408
-0.000325892
0.00172912
-0.000312208
0.00177648
-0.000300327
0.00182613
-0.000291005
0.00187795
-0.000284919
0.00193182
-0.00028263
0.00198756
-0.000284574
0.00204493
-0.000291073
0.00210367
-0.000302247
0.00216348
-0.000318064
0.00222402
-0.000338305
0.00228493
-0.000362614
0.00234582
-0.00039048
0.00240627
-0.00042124
0.00246589
-0.000454138
0.00252425
-0.000488336
0.00258095
-0.000522951
0.0026356
-0.000557089
0.00268785
-0.000589876
0.00273736
-0.000620489
0.00278385
-0.000648186
0.00282707
-0.00067232
0.00286683
-0.000692362
0.00290299
-0.000707904
0.00293548
-0.000718667
0.00296427
-0.000724497
0.00298938
-0.000725356
0.00301091
-0.000721312
0.00302901
-0.000712525
0.00304386
-0.000699239
0.00305572
-0.000681749
0.00306488
-0.000660418
0.00307167
-0.000635611
0.00307647
-0.000607772
0.0030797
-0.000577276
0.00308178
-0.00054464
0.00308317
-0.000510191
0.00308432
-0.00047455
0.0030857
-0.000437942
0.00308777
-0.000401161
0.00309096
-0.000364286
0.00309567
-0.000328318
0.00310232
-0.000293315
0.00311119
-0.00026016
0.00312266
-0.000229858
0.00313699
-0.000201096
0.003154
-0.00018046
-0.000155563
0.00171084
0.000266416
0.00168956
0.000257486
0.00167075
0.000219405
0.00165593
0.000185083
0.00164467
0.000153042
0.00163652
0.000120353
0.00163116
8.68457e-05
0.00162837
5.20712e-05
0.001628
1.53577e-05
0.00162986
-2.1921e-05
0.00163388
-5.87923e-05
0.00163986
-9.61675e-05
0.00164757
-0.000133699
0.00165685
-0.000171021
0.00166756
-0.000207664
0.00167963
-0.000243207
0.00169304
-0.000277099
0.00170775
-0.000308693
0.00172371
-0.000337435
0.00174095
-0.000362893
0.00175948
-0.000384653
0.00177934
-0.000402392
0.00180059
-0.000415912
0.0018233
-0.000425147
0.00184756
-0.000430159
0.00187345
-0.000431145
0.00190109
-0.000428428
0.00193056
-0.000422455
0.00196199
-0.000413776
0.00199546
-0.000403036
0.00203103
-0.00039098
0.0020688
-0.000378336
0.00210881
-0.000365898
0.00215107
-0.000354466
0.00219555
-0.000344813
0.00224221
-0.000337658
0.00229092
-0.000333635
0.00234156
-0.000333268
0.00239394
-0.00033695
0.00244782
-0.000344953
0.00250293
-0.000357364
0.00255898
-0.000374111
0.00261563
-0.000394954
0.00267252
-0.000419503
0.00272926
-0.000447225
0.00278548
-0.000477452
0.00284076
-0.000509421
0.00289472
-0.000542298
0.00294698
-0.000575215
0.00299719
-0.000607296
0.00304501
-0.000637697
0.00309015
-0.00066563
0.00313236
-0.000690393
0.00317143
-0.000711385
0.00320719
-0.000728124
0.00323954
-0.000740254
0.00326842
-0.000747547
0.00329382
-0.000749899
0.00331579
-0.000747321
0.0033344
-0.00073993
0.00334981
-0.000727935
0.0033622
-0.000711622
0.00337178
-0.000691329
0.00337882
-0.000667461
0.00338363
-0.00064042
0.00338654
-0.000610687
0.00338793
-0.000578665
0.00338819
-0.0005449
0.00338774
-0.000509738
0.00338701
-0.000473814
0.00338643
-0.000437362
0.00338643
-0.000401164
0.00338745
-0.000365308
0.00338988
-0.000330748
0.00339411
-0.000297549
0.00340049
-0.000266533
0.00340925
-0.00023862
0.00342088
-0.000212728
0.00343484
-0.000194414
-0.000173838
0.00231399
0.000322326
0.00227329
0.000298187
0.00223832
0.000254373
0.00220927
0.000214133
0.002186
0.000176308
0.00216759
0.000138768
0.00215334
0.000101098
0.00214273
6.26756e-05
0.00213536
2.2727e-05
0.00213112
-1.76805e-05
0.00212963
-5.73002e-05
0.00213065
-9.71852e-05
0.00213385
-0.000136905
0.00213899
-0.000176155
0.00214583
-0.00021451
0.00215428
-0.000251655
0.00216426
-0.000287078
0.00217568
-0.000320116
0.00218849
-0.000350245
0.00220267
-0.000377066
0.00221821
-0.000400192
0.00223513
-0.000419318
0.00225348
-0.000434262
0.00227331
-0.000444975
0.00229469
-0.000451536
0.00231769
-0.000454151
0.00234242
-0.000453153
0.00236895
-0.000448991
0.00239739
-0.000442216
0.00242782
-0.000433465
0.00246031
-0.000423462
0.0024949
-0.000412932
0.00253165
-0.000402644
0.00257055
-0.000393365
0.00261157
-0.000385832
0.00265464
-0.000380727
0.00269964
-0.000378644
0.00274644
-0.000380066
0.00279484
-0.000385349
0.0028446
-0.000394716
0.00289546
-0.000408223
0.00294711
-0.000425763
0.00299923
-0.000447072
0.00305147
-0.000471736
0.00310345
-0.000499206
0.0031548
-0.000528807
0.00320516
-0.000559779
0.00325416
-0.000591295
0.00330145
-0.000622504
0.00334671
-0.000652556
0.00338964
-0.000680636
0.00343001
-0.000705993
0.00346758
-0.000727967
0.0035022
-0.000745999
0.00353373
-0.000759656
0.0035621
-0.000768626
0.00358728
-0.000772728
0.00360928
-0.000771899
0.00362816
-0.000766197
0.003644
-0.000755776
0.00365695
-0.000740884
0.00366717
-0.000721843
0.00367487
-0.000699026
0.00368028
-0.00067287
0.00368367
-0.00064381
0.00368534
-0.000612354
0.0036856
-0.000578935
0.00368483
-0.000544122
0.00368337
-0.000508282
0.00368162
-0.000472067
0.00367998
-0.00043572
0.00367884
-0.000400027
0.0036786
-0.000365067
0.00367965
-0.000331795
0.00368231
-0.000300211
0.003687
-0.00027122
0.00369379
-0.000245415
0.00370338
-0.000222317
0.00371492
-0.000205951
-0.000189434
0.00296621
0.000409303
0.00289967
0.000364732
0.00284303
0.00031101
0.00279514
0.000262029
0.00275561
0.000215831
0.00272308
0.000171303
0.00269647
0.000127705
0.00267491
8.42333e-05
0.00265759
4.00472e-05
0.00264497
-5.06148e-06
0.00263562
-4.79426e-05
0.00262955
-9.11202e-05
0.00262636
-0.000133711
0.00262565
-0.000175446
0.00262709
-0.000215952
0.00263052
-0.00025508
0.0026358
-0.000292365
0.00264281
-0.000327123
0.00265143
-0.000358863
0.0026616
-0.000387236
0.00267329
-0.000411885
0.0026865
-0.000432522
0.00270122
-0.000448989
0.0027175
-0.000461256
0.00273538
-0.000469417
0.00275493
-0.000473693
0.0027762
-0.000474426
0.00279928
-0.00047207
0.00282424
-0.000467176
0.00285115
-0.000460376
0.00288006
-0.000452374
0.00291102
-0.000443888
0.00294404
-0.000435664
0.00297911
-0.000428438
0.00301619
-0.000422915
0.00305521
-0.000419738
0.00309603
-0.000419464
0.0031385
-0.000422537
0.00318242
-0.000429276
0.00322757
-0.000439863
0.00327367
-0.000454321
0.00332042
-0.000472516
0.00336751
-0.00049416
0.00341459
-0.000518822
0.00346133
-0.000545941
0.00350736
-0.000574842
0.00355235
-0.000604769
0.00359597
-0.00063491
0.0036379
-0.000664433
0.00367786
-0.000692517
0.0037156
-0.000718381
0.00375092
-0.000741311
0.00378364
-0.000760688
0.00381364
-0.000775995
0.00384082
-0.000786842
0.00386516
-0.000792958
0.00388663
-0.000794203
0.00390528
-0.000790552
0.00392118
-0.000782096
0.00393443
-0.000769023
0.00394515
-0.000751608
0.00395351
-0.000730203
0.00395969
-0.000705206
0.0039639
-0.000677077
0.00396637
-0.000646277
0.00396735
-0.000613337
0.00396713
-0.000578713
0.003966
-0.000542994
0.00396429
-0.000506567
0.00396232
-0.000470101
0.00396044
-0.000433845
0.00395902
-0.000398606
0.00395838
-0.000364427
0.00395892
-0.00033233
0.00396086
-0.000302149
0.00396468
-0.000275042
0.0039703
-0.000251038
0.00397856
-0.000230572
0.00398841
-0.000215805
-0.00020295
0.00363493
0.000524016
0.00354123
0.000458432
0.00346082
0.000391421
0.0033921
0.000330747
0.00333414
0.000273785
0.00328522
0.000220228
0.00324403
0.000168894
0.00320951
0.000118755
0.00318069
6.8866e-05
0.00315698
1.86462e-05
0.00313837
-2.9334e-05
0.00312358
-7.6322e-05
0.0031125
-0.000122635
0.00310461
-0.000167555
0.00309942
-0.000210762
0.0030967
-0.000252366
0.00309629
-0.000291953
0.00309797
-0.000328799
0.00310157
-0.000362465
0.00310699
-0.000392659
0.00311417
-0.000419059
0.00312304
-0.000441399
0.0031336
-0.000459545
0.00314583
-0.000473491
0.00315977
-0.000483349
0.00317543
-0.000489357
0.00319287
-0.000491865
0.00321214
-0.000491337
0.00323328
-0.000488323
0.00325636
-0.00048345
0.00328139
-0.000477407
0.0033084
-0.000470902
0.0033374
-0.000464658
0.00336835
-0.000459386
0.00340119
-0.000455758
0.00343583
-0.000454382
0.00347215
-0.00045578
0.00350997
-0.00046036
0.0035491
-0.000468406
0.0035893
-0.000480064
0.00363031
-0.00049533
0.00367184
-0.000514043
0.00371358
-0.000535898
0.00375521
-0.000560451
0.0037964
-0.000587134
0.00383683
-0.000615277
0.0038762
-0.000644135
0.0039142
-0.000672912
0.00395057
-0.000700804
0.00398507
-0.000727017
0.0040175
-0.000750807
0.00404768
-0.000771498
0.00407551
-0.000788509
0.00410088
-0.000801366
0.00412375
-0.000809716
0.00414412
-0.000813326
0.00416201
-0.00081209
0.00417747
-0.000806013
0.00419059
-0.000795214
0.00420147
-0.000779905
0.00421024
-0.000760383
0.00421706
-0.000737017
0.00422208
-0.000710226
0.00422549
-0.000680484
0.00422748
-0.000648272
0.00422828
-0.000614134
0.00422811
-0.000578546
0.00422723
-0.000542113
0.0042259
-0.000505235
0.0042244
-0.000468603
0.00422301
-0.000432459
0.00422207
-0.000397659
0.00422181
-0.000364168
0.00422262
-0.000333147
0.00422464
-0.000304166
0.00422838
-0.000278783
0.00423362
-0.000256279
0.00424127
-0.000238217
0.0042502
-0.00022474
-0.000215066
0.004273
0.000658568
0.00415813
0.000573304
0.00405695
0.000492606
0.00396931
0.000418381
0.00389397
0.000349132
0.00382906
0.000285133
0.0037733
0.000224659
0.00372557
0.000166485
0.00368458
0.000109852
0.00364916
5.40636e-05
0.00362138
-1.55387e-06
0.00359712
-5.20636e-05
0.00357741
-0.000102916
0.00356164
-0.000151787
0.00354919
-0.000198312
0.00353976
-0.000242941
0.00353313
-0.000285316
0.00352899
-0.000324662
0.00352713
-0.000360611
0.00352741
-0.000392938
0.00352971
-0.000421354
0.00353393
-0.000445625
0.00354003
-0.000465643
0.00354797
-0.000481427
0.00355773
-0.000493112
0.00356932
-0.000500949
0.00358276
-0.000505304
0.00359807
-0.000506645
0.00361527
-0.000505527
0.0036344
-0.000502572
0.00365544
-0.000498456
0.00367842
-0.000493875
0.00370329
-0.000489533
0.00373002
-0.000486115
0.00375853
-0.000484265
0.00378871
-0.00048456
0.00382042
-0.000487489
0.00385348
-0.000493427
0.0038877
-0.000502628
0.00392285
-0.000515208
0.00395865
-0.000531136
0.00399484
-0.000550233
0.00403113
-0.000572182
0.00406721
-0.000596529
0.00410278
-0.000622708
0.00413756
-0.000650056
0.00417127
-0.000677842
0.00420365
-0.000705296
0.00423448
-0.000731638
0.00426358
-0.000756109
0.00429077
-0.000777999
0.00431594
-0.000796671
0.00433901
-0.000811582
0.00435994
-0.000822294
0.00437872
-0.00082849
0.00439536
-0.000829968
0.00440992
-0.000826651
0.00442247
-0.000818566
0.00443311
-0.000805855
0.00444195
-0.000788744
0.00444912
-0.000767547
0.00445474
-0.000742642
0.00445898
-0.000714462
0.00446198
-0.000683488
0.00446392
-0.000650214
0.00446498
-0.000615192
0.00446534
-0.00057891
0.00446522
-0.000541987
0.00446481
-0.000504826
0.00446436
-0.000468153
0.00446407
-0.000432174
0.00446425
-0.000397832
0.00446504
-0.000364963
0.00446683
-0.000334938
0.00446964
-0.000306977
0.00447401
-0.000283152
0.00447961
-0.000261882
0.00448734
-0.000245946
0.0044961
-0.000233501
-0.000226489
0.00483174
0.000800107
0.00470564
0.000699411
0.0045914
0.000606838
0.00449084
0.000518949
0.00440265
0.000437314
0.0043253
0.000362483
0.00425769
0.000292277
0.00419877
0.000225405
0.00414748
0.000161135
0.00410301
9.85406e-05
0.00406389
3.75608e-05
0.00403226
-2.04259e-05
0.00400456
-7.52257e-05
0.00398137
-0.000128594
0.00396196
-0.000178897
0.00394603
-0.000227016
0.00393332
-0.000272603
0.00392347
-0.000314815
0.00391623
-0.000353373
0.00391142
-0.000388123
0.00390887
-0.000418811
0.00390848
-0.000445234
0.00391016
-0.000467318
0.00391384
-0.000485106
0.00391948
-0.000498755
0.00392707
-0.000508533
0.00393658
-0.000514818
0.00394802
-0.000518086
0.00396139
-0.000518892
0.00397667
-0.000517857
0.00399386
-0.000515644
0.00401292
-0.000512937
0.00403381
-0.000510422
0.00405646
-0.000508761
0.00408077
-0.000508573
0.00410661
-0.000510406
0.00413384
-0.000514722
0.00416228
-0.000521868
0.00419173
-0.00053207
0.00422194
-0.00054542
0.00425267
-0.000561868
0.00428366
-0.000581222
0.00431463
-0.000603155
0.00434532
-0.000627212
0.00437544
-0.000652833
0.00440475
-0.000679367
0.00443302
-0.000706104
0.00446002
-0.000732298
0.00448558
-0.000757199
0.00450955
-0.000780082
0.00453182
-0.000800273
0.00455232
-0.000817171
0.00457101
-0.000830268
0.00458788
-0.00083916
0.00460295
-0.00084356
0.00461627
-0.00084329
0.00462792
-0.000838297
0.00463798
-0.000828626
0.00464655
-0.000814433
0.00465376
-0.000795953
0.00465972
-0.000773509
0.00466457
-0.000747484
0.00466842
-0.000718316
0.00467142
-0.000686491
0.00467371
-0.000652505
0.00467544
-0.00061692
0.00467676
-0.000580222
0.00467782
-0.000543051
0.00467879
-0.000505794
0.00467986
-0.000469225
0.00468118
-0.000433491
0.004683
-0.00039965
0.0046854
-0.000367367
0.00468874
-0.000338278
0.00469296
-0.000311193
0.00469856
-0.000288758
0.00470518
-0.000268502
0.00471363
-0.00025439
0.0047229
-0.000242773
-0.000237903
0.00527016
0.000933477
0.0051445
0.000825068
0.0050279
0.000723438
0.00492317
0.000623681
0.00482944
0.000531044
0.00474581
0.00044611
0.00467153
0.000366559
0.00460576
0.000291177
0.00454768
0.000219214
0.00449622
0.000150001
0.00445083
8.29536e-05
0.00441227
1.81303e-05
0.00437868
-4.1632e-05
0.00434942
-9.93387e-05
0.00432418
-0.000153651
0.00430275
-0.000205586
0.0042848
-0.000254657
0.00426995
-0.000299964
0.00425793
-0.000341351
0.00424853
-0.000378729
0.0042416
-0.000411877
0.00423699
-0.000440627
0.00423461
-0.000464936
0.00423438
-0.000484872
0.00423623
-0.00050061
0.00424013
-0.000512435
0.00424605
-0.000520735
0.00425395
-0.00052599
0.00426382
-0.000528756
0.00427561
-0.000529649
0.00428929
-0.000529323
0.0043048
-0.000528446
0.00432206
-0.000527688
0.00434099
-0.000527691
0.00436147
-0.00052905
0.00438336
-0.000532291
0.00440648
-0.00053785
0.00443067
-0.000546053
0.0044557
-0.000557104
0.00448136
-0.000571076
0.0045074
-0.000587908
0.00453357
-0.000607397
0.00455963
-0.000629215
0.00458533
-0.000652912
0.00461044
-0.000677937
0.00463473
-0.000703658
0.00465801
-0.000729386
0.00468012
-0.000754403
0.00470091
-0.000777993
0.00472029
-0.000799462
0.00473819
-0.000818172
0.00475457
-0.000833554
0.00476944
-0.000845134
0.00478281
-0.000852534
0.00479475
-0.000855494
0.00480531
-0.000853857
0.0048146
-0.000847584
0.00482271
-0.000836734
0.00482974
-0.000821469
0.00483582
-0.000802031
0.00484106
-0.000778746
0.00484557
-0.000751996
0.00484947
-0.00072222
0.00485289
-0.000689905
0.00485592
-0.000655542
0.00485871
-0.000619702
0.00486134
-0.000582859
0.00486397
-0.000545678
0.00486669
-0.000508514
0.00486967
-0.000472204
0.00487299
-0.00043681
0.00487686
-0.000403526
0.00488132
-0.000371823
0.00488666
-0.000343622
0.00489278
-0.000317309
0.00490012
-0.000296101
0.00490831
-0.00027669
0.00491801
-0.000264095
0.00492839
-0.000253153
-0.000249934
0.00556466
0.00104623
0.00545113
0.000938592
0.00534304
0.000831533
0.00524356
0.000723159
0.00515262
0.000621985
0.00507008
0.000528649
0.00499555
0.000441094
0.00492846
0.00035826
0.0048683
0.000279378
0.00481444
0.000203864
0.0047661
0.000131289
0.00472278
6.14539e-05
0.00468708
-5.93469e-06
0.00465421
-6.64723e-05
0.00462497
-0.000124406
0.00459955
-0.000180172
0.00457768
-0.000232781
0.00455895
-0.00028124
0.00454314
-0.000325534
0.00453003
-0.000365625
0.00451948
-0.000401325
0.00451136
-0.000432503
0.00450556
-0.000459141
0.00450202
-0.000481328
0.00450066
-0.000499256
0.00450145
-0.000513219
0.00450432
-0.000523611
0.00450925
-0.000530913
0.00451617
-0.000535678
0.00452503
-0.000538514
0.00453577
-0.000540063
0.00454831
-0.00054098
0.00456253
-0.000541915
0.00457834
-0.000543494
0.00459558
-0.000546291
0.0046141
-0.000550813
0.00463372
-0.000557475
0.00465426
-0.000566588
0.0046755
-0.00057834
0.00469721
-0.000592793
0.00471918
-0.000609877
0.00474118
-0.00062939
0.00476297
-0.000651006
0.00478434
-0.000674284
0.00480509
-0.000698691
0.00482505
-0.000723614
0.00484405
-0.00074839
0.00486198
-0.000772331
0.00487874
-0.000794751
0.00489427
-0.000814991
0.00490854
-0.000832443
0.00492156
-0.000846571
0.00493335
-0.000856925
0.00494397
-0.000863153
0.00495349
-0.000865014
0.004962
-0.000862366
0.00496959
-0.000855183
0.00497639
-0.000843528
0.00498249
-0.000827569
0.00498801
-0.000807548
0.00499305
-0.000783789
0.00499773
-0.000756672
0.00500213
-0.000726629
0.00500638
-0.000694148
0.00501055
-0.00065971
0.00501474
-0.000623895
0.00501904
-0.000587155
0.00502354
-0.000550186
0.00502833
-0.000513297
0.00503352
-0.000477394
0.00503915
-0.000442438
0.0050454
-0.000409776
0.00505224
-0.000378663
0.00505993
-0.000351313
0.00506832
-0.000325704
0.00507779
-0.000305567
0.00508798
-0.000286882
0.0050994
-0.00027551
0.00511138
-0.000265134
-0.000263123
0.00571538
0.00113013
0.00562433
0.00102965
0.00553424
0.000921624
0.0054482
0.000809199
0.00536752
0.00070266
0.00529277
0.000603397
0.00522392
0.000509949
0.00516079
0.000421391
0.00510321
0.000336959
0.00505084
0.000256232
0.00500328
0.000178848
0.00496033
0.000104405
0.00492145
3.29467e-05
0.00488843
-3.34553e-05
0.00485735
-9.33246e-05
0.0048298
-0.000152621
0.00480551
-0.000208496
0.00478421
-0.00025994
0.00476574
-0.00030706
0.00474994
-0.000349827
0.0047367
-0.000388082
0.00472591
-0.000421721
0.00471752
-0.000450746
0.00471145
-0.000475257
0.00470765
-0.000495455
0.00470607
-0.000511638
0.00470665
-0.000524197
0.00470935
-0.000533608
0.00471408
-0.000540415
0.00472078
-0.000545215
0.00472936
-0.000548635
0.00473969
-0.000551315
0.00475166
-0.000553888
0.00476513
-0.000556961
0.00477993
-0.000561093
0.00479589
-0.000566774
0.00481282
-0.000574406
0.00483052
-0.000584287
0.00484878
-0.000596599
0.00486739
-0.000611398
0.00488612
-0.000628614
0.00490478
-0.000648049
0.00492316
-0.000669386
0.00494108
-0.000692201
0.00495837
-0.000715978
0.00497488
-0.00074013
0.00499051
-0.000764021
0.00500518
-0.000786994
0.00501882
-0.000808391
0.00503141
-0.000827585
0.00504297
-0.000843998
0.00505351
-0.000857117
0.00506311
-0.000866519
0.00507182
-0.000871869
0.00507975
-0.000872941
0.00508699
-0.000869604
0.00509364
-0.000861837
0.00509982
-0.000849709
0.00510564
-0.000833385
0.0051112
-0.000813105
0.00511659
-0.000789187
0.00512193
-0.000762011
0.0051273
-0.000731994
0.00513278
-0.000699629
0.00513844
-0.000665375
0.00514438
-0.000629828
0.00515063
-0.000593406
0.00515728
-0.000556844
0.00516438
-0.000520389
0.00517201
-0.000485028
0.00518018
-0.000450607
0.00518903
-0.000418624
0.00519849
-0.000388128
0.00520877
-0.000361595
0.00521972
-0.000336651
0.00523159
-0.000317441
0.00524412
-0.000299406
0.00525759
-0.000288983
0.00527157
-0.000279109
-0.000277909
0.00575026
0.00117716
0.0056877
0.00109221
0.00562141
0.00098792
0.00555367
0.000876933
0.00548752
0.000768812
0.0054244
0.000666517
0.00536481
0.000569533
0.00530898
0.000477229
0.00525703
0.000388904
0.00520888
0.000304388
0.00516449
0.000223237
0.00512304
0.000145849
0.00508497
7.10151e-05
0.00505293
-1.40575e-06
0.00502181
-6.22102e-05
0.00499377
-0.000124576
0.00496847
-0.000183203
0.0049459
-0.000237369
0.00492599
-0.000287143
0.00490863
-0.00033247
0.00489376
-0.000373213
0.00488132
-0.000409284
0.00487127
-0.000440695
0.00486357
-0.000467552
0.00485817
-0.000490057
0.00485503
-0.000508503
0.00485411
-0.000523273
0.00485533
-0.000534831
0.00485863
-0.000543708
0.0048639
-0.000550483
0.00487103
-0.000555768
0.0048799
-0.000560186
0.00489036
-0.000564351
0.00490226
-0.000568854
0.0049154
-0.000574238
0.00492961
-0.000580981
0.00494468
-0.000589475
0.0049604
-0.00060001
0.00497657
-0.000612767
0.00499297
-0.000627803
0.00500941
-0.000645053
0.00502569
-0.000664331
0.00504164
-0.000685333
0.0050571
-0.000707656
0.00507192
-0.000730806
0.00508602
-0.000754221
0.00509929
-0.000777296
0.0051117
-0.0007994
0.00512321
-0.000819909
0.00513385
-0.000838221
0.00514364
-0.000853785
0.00515263
-0.000866112
0.00516091
-0.000874796
0.00516856
-0.000879521
0.00517569
-0.000880068
0.0051824
-0.000876315
0.0051888
-0.000868241
0.00519501
-0.000855917
0.00520113
-0.000839502
0.00520726
-0.000819237
0.0052135
-0.000795425
0.00521993
-0.000768447
0.00522664
-0.000738702
0.0052337
-0.000706688
0.00524116
-0.000672836
0.0052491
-0.000637765
0.00525754
-0.000601844
0.00526655
-0.000565858
0.00527614
-0.000529974
0.00528639
-0.000495276
0.00529725
-0.000461472
0.00530886
-0.00043023
0.0053211
-0.000400372
0.00533415
-0.000374642
0.00534782
-0.000350328
0.00536232
-0.000331941
0.00537739
-0.000314476
0.00539321
-0.000304801
0.00540945
-0.00029535
-0.000294633
0.0126251
0.00125054
-0.0126985
0.0125765
0.00114086
0.0125243
0.00104012
0.0124665
0.000934713
0.0124056
0.000829699
0.0123436
0.000728522
0.0122811
0.000632056
0.0122183
0.000540003
0.0121558
0.000451458
0.0120938
0.000366345
0.012033
0.000284078
0.0119734
0.000205399
0.0119148
0.000129631
0.0118533
6.00982e-05
0.0117952
-4.16237e-06
0.011741
-7.0375e-05
0.0116876
-0.000129732
0.0116351
-0.000184947
0.0115841
-0.000236098
0.0115344
-0.000282813
0.0114862
-0.000324939
0.0114394
-0.0003625
0.0113943
-0.000395576
0.011351
-0.0004243
0.0113098
-0.000448881
0.011271
-0.000469614
0.0112346
-0.000486875
0.0112008
-0.000501106
0.0111699
-0.000512804
0.011142
-0.000522507
0.011117
-0.000530773
0.0110949
-0.000538166
0.0110758
-0.000545237
0.0110595
-0.000552509
0.0110457
-0.000560458
0.0110342
-0.000569495
0.0110247
-0.000579953
0.0110167
-0.000592071
0.01101
-0.000605984
0.0110039
-0.000621723
0.010998
-0.000639206
0.010992
-0.000658245
0.0109852
-0.000678555
0.0109773
-0.000699762
0.0109679
-0.000721418
0.0109567
-0.000743023
0.0109434
-0.000764037
0.0109279
-0.000783909
0.0109101
-0.000802095
0.01089
-0.000818074
0.0108676
-0.000831372
0.010843
-0.000841575
0.0108166
-0.000848341
0.0107885
-0.000851405
0.010759
-0.000850594
0.0107285
-0.000845816
0.0106973
-0.000837069
0.0106658
-0.000824435
0.0106344
-0.000808065
0.0106034
-0.0007882
0.010573
-0.000765109
0.0105438
-0.00073917
0.0105158
-0.000710723
0.0104894
-0.000680275
0.0104647
-0.000648165
0.010442
-0.000615053
0.0104213
-0.000581165
0.0104028
-0.000547394
0.0103866
-0.000513677
0.0103726
-0.000481314
0.0103608
-0.000449662
0.0103513
-0.000420747
0.0103438
-0.000392888
0.0103385
-0.000369341
0.0103349
-0.000346746
0.0103332
-0.00033023
0.0103328
-0.000314083
0.0103338
-0.00030574
0.0103354
-0.000297032
-0.000296859
0.0127204
0.00125803
-0.0127279
0.0127177
0.00114354
0.0127149
0.00104287
0.0127046
0.000945036
0.0126869
0.000847428
0.0126637
0.000751692
0.0126364
0.000659349
0.0126057
0.0005707
0.012572
0.000485215
0.0125355
0.000402772
0.0124964
0.000323225
0.0124548
0.000246967
0.0124105
0.000173911
0.0123666
0.00010405
0.0123251
3.73362e-05
0.0122798
-2.50803e-05
0.0122333
-8.32338e-05
0.0121867
-0.000138351
0.0121399
-0.000189275
0.012093
-0.000235911
0.0120463
-0.000278295
0.0120003
-0.000316436
0.0119551
-0.000350392
0.0119111
-0.000380289
0.0118685
-0.000406327
0.0118277
-0.000428785
0.0117888
-0.000448009
0.0117521
-0.000464403
0.0117177
-0.000478417
0.0116858
-0.000490534
0.0116562
-0.000501253
0.0116292
-0.000511077
0.0116044
-0.000520492
0.0115819
-0.000529956
0.0115613
-0.000539883
0.0115424
-0.000550628
0.0115249
-0.000562474
0.0115085
-0.000575621
0.0114927
-0.000590175
0.0114771
-0.000606149
0.0114614
-0.000623462
0.0114451
-0.000641936
0.0114278
-0.000661312
0.0114093
-0.000681255
0.0113893
-0.000701368
0.0113674
-0.000721209
0.0113437
-0.000740308
0.011318
-0.000758185
0.0112903
-0.000774368
0.0112606
-0.000788409
0.0112291
-0.000799902
0.011196
-0.000808493
0.0111616
-0.00081389
0.0111261
-0.000815876
0.0110898
-0.000814304
0.0110531
-0.000809108
0.0110163
-0.000800294
0.0109798
-0.000787948
0.0109439
-0.000772208
0.0109091
-0.000753307
0.0108754
-0.00073148
0.0108433
-0.000707094
0.0108131
-0.000680434
0.0107848
-0.000652002
0.0107587
-0.000622058
0.0107349
-0.000591277
0.0107135
-0.000559776
0.0106946
-0.000528495
0.0106782
-0.000497225
0.0106642
-0.000467353
0.0106526
-0.000438057
0.0106433
-0.000411476
0.0106362
-0.000385743
0.010631
-0.000364208
0.0106277
-0.000343391
0.0106258
-0.000328383
0.0106253
-0.00031356
0.0106256
-0.000306023
0.0106266
-0.000298072
-0.000297883
0.0126919
0.00123692
-0.0126708
0.0127104
0.00112498
0.0127275
0.00102574
0.0127399
0.000932656
0.012746
0.000841347
0.0127463
0.000751435
0.0127416
0.000663996
0.0127327
0.000579627
0.0127197
0.000498226
0.0127028
0.000419635
0.0126822
0.000343795
0.0126585
0.000270703
0.0126322
0.000200198
0.0126036
0.000132631
0.0125717
6.92428e-05
0.0125368
9.83409e-06
0.0125013
-4.76956e-05
0.012464
-0.000101105
0.0124254
-0.000150649
0.0123859
-0.000196362
0.0123457
-0.000238166
0.0123054
-0.000276057
0.0122651
-0.000310101
0.0122252
-0.000340426
0.0121861
-0.000367218
0.012148
-0.000390727
0.0121113
-0.000411261
0.0120761
-0.000429179
0.0120425
-0.00044488
0.0120108
-0.000458788
0.0119809
-0.000471341
0.0119528
-0.00048298
0.0119264
-0.000494128
0.0119016
-0.000505184
0.0118783
-0.000516507
0.011856
-0.0005284
0.0118347
-0.000541105
0.0118138
-0.00055479
0.0117932
-0.000569541
0.0117724
-0.000585364
0.0117511
-0.000602182
0.011729
-0.000619836
0.0117058
-0.000638097
0.0116812
-0.00065667
0.0116551
-0.00067521
0.0116272
-0.000693333
0.0115975
-0.000710632
0.011566
-0.000726693
0.0115328
-0.000741108
0.0114979
-0.000753494
0.0114615
-0.000763502
0.0114238
-0.000770828
0.0113851
-0.000775226
0.0113458
-0.000776511
0.011306
-0.00077456
0.0112662
-0.000769324
0.0112267
-0.000760809
0.0111879
-0.000749104
0.01115
-0.000734329
0.0111134
-0.000716706
0.0110784
-0.000696436
0.0110452
-0.000673869
0.011014
-0.000649241
0.010985
-0.000623038
0.0109584
-0.000595458
0.0109343
-0.000567165
0.0109127
-0.000538204
0.0108937
-0.000509508
0.0108773
-0.000480795
0.0108634
-0.000453441
0.0108519
-0.000426565
0.0108427
-0.000402267
0.0108356
-0.000378681
0.0108304
-0.000359022
0.010827
-0.00033996
0.0108249
-0.000326247
0.010824
-0.000312687
0.0108237
-0.000305708
0.0108241
-0.000298441
-0.00029801
0.0126301
0.00120204
-0.0125952
0.0126574
0.00109768
0.012682
0.00100106
0.0127034
0.000911248
0.01272
0.000824774
0.0127314
0.00074003
0.0127381
0.000657282
0.0127407
0.000577108
0.0127392
0.000499687
0.0127339
0.000424931
0.012725
0.000352747
0.0127126
0.000283069
0.0126967
0.000216072
0.0126772
0.000152096
0.012655
9.14795e-05
0.0126309
3.39682e-05
0.012604
-2.08133e-05
0.012575
-7.20902e-05
0.0125442
-0.000119914
0.012512
-0.000164165
0.0124787
-0.00020485
0.0124446
-0.000241975
0.0124101
-0.000275599
0.0123756
-0.00030584
0.0123412
-0.000332866
0.0123074
-0.000356901
0.0122743
-0.000378213
0.0122423
-0.000397118
0.0122114
-0.000413963
0.0121817
-0.000429117
0.0121533
-0.000442963
0.0121262
-0.00045588
0.0121003
-0.000468238
0.0120755
-0.00048038
0.0120516
-0.000492614
0.0120284
-0.000505201
0.0120057
-0.000518348
0.0119831
-0.000532196
0.0119604
-0.000546819
0.0119372
-0.000562219
0.0119133
-0.000578326
0.0118885
-0.000595003
0.0118625
-0.000612052
0.011835
-0.000629218
0.011806
-0.000646203
0.0117754
-0.000662677
0.011743
-0.000678292
0.011709
-0.000692691
0.0116734
-0.000705526
0.0116364
-0.000716468
0.0115981
-0.000725217
0.0115588
-0.000731514
0.0115187
-0.000735149
0.0114782
-0.000735964
0.0114375
-0.000733854
0.0113969
-0.000728783
0.0113569
-0.000720756
0.0113176
-0.000709859
0.0112795
-0.000696196
0.0112428
-0.000679973
0.0112077
-0.000661363
0.0111745
-0.000640693
0.0111434
-0.00061816
0.0111146
-0.000594222
0.0110882
-0.000569034
0.0110643
-0.000543227
0.0110429
-0.000516804
0.011024
-0.000490656
0.0110077
-0.000464474
0.0109938
-0.000439566
0.0109823
-0.000415067
0.010973
-0.000392946
0.0109658
-0.000371448
0.0109603
-0.000353531
0.0109565
-0.000336152
0.0109538
-0.00032359
0.0109523
-0.000311215
0.0109513
-0.000304667
0.0109509
-0.000298021
-0.000297265
0.0125546
0.00116145
-0.012514
0.0125881
0.00106417
0.0126175
0.000971733
0.0126432
0.000885528
0.0126646
0.000803309
0.0126815
0.000723223
0.0126938
0.000644926
0.0127021
0.000568809
0.0127066
0.000495179
0.0127075
0.000424073
0.0127048
0.000355442
0.0126986
0.000289284
0.0126889
0.000225738
0.012676
0.000164966
0.0126605
0.000107032
0.0126425
5.19759e-05
0.0126218
-1.48234e-07
0.0125989
-4.91975e-05
0.0125741
-9.50712e-05
0.0125476
-0.000137686
0.0125198
-0.000177037
0.0124909
-0.000213147
0.0124614
-0.000246075
0.0124315
-0.000275926
0.0124015
-0.000302853
0.0123716
-0.000327053
0.0123422
-0.000348762
0.0123133
-0.000368254
0.0122852
-0.000385832
0.0122579
-0.000401814
0.0122315
-0.000416533
0.0122059
-0.000430317
0.0121811
-0.000443482
0.0121571
-0.000456326
0.0121336
-0.000469113
0.0121105
-0.000482068
0.0120875
-0.000495365
0.0120644
-0.000509128
0.012041
-0.000523417
0.012017
-0.000538236
0.0119922
-0.000553524
0.0119664
-0.000569164
0.0119393
-0.000584987
0.0119109
-0.000600776
0.0118809
-0.000616276
0.0118495
-0.000631205
0.0118164
-0.000645267
0.0117819
-0.000658157
0.011746
-0.000669578
0.0117087
-0.000679248
0.0116704
-0.000686911
0.0116313
-0.000692346
0.0115915
-0.000695372
0.0115514
-0.000695856
0.0115112
-0.000693708
0.0114714
-0.000688898
0.011432
-0.000681434
0.0113936
-0.000671394
0.0113562
-0.00065887
0.0113203
-0.00064405
0.011286
-0.000627083
0.0112536
-0.000608269
0.0112232
-0.000587776
0.011195
-0.00056603
0.0111692
-0.00054315
0.0111457
-0.000519727
0.0111246
-0.00049574
0.011106
-0.000472018
0.0110897
-0.000448256
0.0110758
-0.000425659
0.0110642
-0.000403422
0.0110546
-0.000383339
0.0110469
-0.000363817
0.0110409
-0.00034751
0.0110365
-0.000331712
0.0110331
-0.000320191
0.0110308
-0.000308918
0.0110289
-0.000302737
0.0110275
-0.000296657
-0.000295574
0.0124753
0.00111628
-0.0124302
0.0125135
0.00102596
0.0125464
0.000938867
0.012575
0.000856953
0.0125994
0.000778936
0.0126193
0.00070323
0.012635
0.000629227
0.0126467
0.000557114
0.0126547
0.000487217
0.0126591
0.000419679
0.01266
0.000354516
0.0126576
0.000291743
0.0126519
0.000231419
0.0126432
0.000173627
0.0126318
0.000118437
0.0126178
6.59735e-05
0.0126014
1.63183e-05
0.0125827
-3.05066e-05
0.012562
-7.44218e-05
0.0125397
-0.000115355
0.0125159
-0.000153301
0.0124911
-0.000188286
0.0124654
-0.000220372
0.0124391
-0.000249654
0.0124125
-0.000276268
0.0123859
-0.000300391
0.0123593
-0.000322229
0.0123331
-0.000342021
0.0123073
-0.000360029
0.012282
-0.00037653
0.0122573
-0.00039181
0.0122331
-0.000406153
0.0122095
-0.000419831
0.0121862
-0.0004331
0.0121633
-0.000446187
0.0121405
-0.000459284
0.0121177
-0.000472542
0.0120946
-0.000486067
0.0120711
-0.000499911
0.012047
-0.000514078
0.012022
-0.000528518
0.0119959
-0.000543133
0.0119687
-0.000557777
0.0119402
-0.000572268
0.0119103
-0.000586391
0.011879
-0.000599906
0.0118463
-0.00061256
0.0118123
-0.000624095
0.011777
-0.000634258
0.0117405
-0.000642809
0.0117031
-0.000649529
0.011665
-0.00065423
0.0116264
-0.000656757
0.0115875
-0.000656998
0.0115487
-0.000654874
0.0115102
-0.000650365
0.0114722
-0.000643475
0.0114351
-0.000634278
0.0113991
-0.000622854
0.0113644
-0.000609374
0.0113313
-0.000593967
0.0112999
-0.000576907
0.0112705
-0.000558337
0.0112431
-0.000538646
0.0112179
-0.000517934
0.0111949
-0.000496739
0.0111742
-0.000475032
0.0111557
-0.00045357
0.0111396
-0.000432067
0.0111255
-0.000411616
0.0111136
-0.000391487
0.0111035
-0.000373288
0.0110953
-0.000355603
0.0110886
-0.000340778
0.0110833
-0.000326444
0.011079
-0.000315876
0.0110757
-0.000305618
0.0110727
-0.000299774
0.0110703
-0.000294214
-0.000292844
0.0123977
0.00106801
-0.0123494
0.0124389
0.000984786
0.0124744
0.000903392
0.0125052
0.000826157
0.0125317
0.000752431
0.0125539
0.000680974
0.012572
0.000611149
0.0125861
0.000543007
0.0125965
0.000476832
0.0126033
0.000412825
0.0126068
0.000351052
0.012607
0.000291531
0.0126041
0.000234293
0.0125984
0.000179406
0.0125898
0.000126959
0.0125788
7.70559e-05
0.0125653
2.97591e-05
0.0125497
-1.4904e-05
0.0125322
-5.68804e-05
0.0125129
-9.6129e-05
0.0124923
-0.00013264
0.0124704
-0.000166441
0.0124477
-0.000197592
0.0124242
-0.000226182
0.0124003
-0.000252334
0.0123761
-0.000276201
0.0123518
-0.000297968
0.0123276
-0.000317842
0.0123036
-0.000336049
0.0122799
-0.000352832
0.0122566
-0.000368434
0.0122335
-0.000383102
0.0122108
-0.000397071
0.0121882
-0.000410559
0.0121658
-0.000423763
0.0121434
-0.000436847
0.0121208
-0.000449943
0.0120978
-0.00046314
0.0120744
-0.000476485
0.0120503
-0.000489983
0.0120254
-0.000503592
0.0119995
-0.000517229
0.0119725
-0.000530775
0.0119443
-0.000544074
0.0119148
-0.000556945
0.0118841
-0.000569186
0.0118521
-0.000580581
0.011819
-0.000590913
0.0117847
-0.000599967
0.0117494
-0.000607537
0.0117133
-0.00061344
0.0116766
-0.000617515
0.0116395
-0.000619628
0.0116022
-0.000619686
0.0115649
-0.000617623
0.011528
-0.000613421
0.0114916
-0.000607088
0.011456
-0.000598691
0.0114214
-0.000588298
0.0113881
-0.000576067
0.0113563
-0.000562108
0.011326
-0.000546671
0.0112976
-0.000529879
0.011271
-0.000512084
0.0112464
-0.000493371
0.0112239
-0.000474227
0.0112035
-0.000454622
0.0111852
-0.000435238
0.0111689
-0.000415816
0.0111547
-0.000397334
0.0111423
-0.000379144
0.0111317
-0.000362673
0.0111228
-0.000346675
0.0111152
-0.000333208
0.011109
-0.000320217
0.0111036
-0.000310528
0.0110992
-0.000301201
0.0110951
-0.000295683
0.0110915
-0.000290601
-0.000289003
0.0123242
0.00101819
-0.0122744
0.0123673
0.00094168
0.0124047
0.000866013
0.0124372
0.000793628
0.0124654
0.000724261
0.0124894
0.000656985
0.0125093
0.000591238
0.0125253
0.000527007
0.0125376
0.000464528
0.0125464
0.000404013
0.0125519
0.00034556
0.0125542
0.000289205
0.0125535
0.000234981
0.01255
0.00018295
0.0125437
0.000133193
0.012535
8.57903e-05
0.012524
4.0798e-05
0.0125108
-1.76335e-06
0.0124958
-4.18192e-05
0.012479
-7.93852e-05
0.0124608
-0.000114439
0.0124414
-0.00014701
0.012421
-0.000177155
0.0123997
-0.000204957
0.0123779
-0.000230524
0.0123557
-0.000253994
0.0123333
-0.000275527
0.0123107
-0.000295306
0.0122882
-0.000313526
0.0122658
-0.000330396
0.0122435
-0.000346128
0.0122213
-0.000360935
0.0121992
-0.000375018
0.0121773
-0.000388566
0.0121552
-0.000401747
0.0121331
-0.000414705
0.0121107
-0.000427552
0.0120879
-0.000440365
0.0120646
-0.000453186
0.0120407
-0.000466021
0.0120159
-0.000478836
0.0119902
-0.000491563
0.0119636
-0.0005041
0.0119358
-0.000516318
0.0119069
-0.000528064
0.0118769
-0.000539167
0.0118458
-0.000549447
0.0118136
-0.000558718
0.0117804
-0.000566798
0.0117464
-0.000573516
0.0117117
-0.000578712
0.0116764
-0.000582252
0.0116408
-0.000584023
0.0116051
-0.000583945
0.0115694
-0.000581963
0.011534
-0.000578066
0.0114992
-0.000572259
0.0114651
-0.000564606
0.011432
-0.000555168
0.0114
-0.000544084
0.0113694
-0.000531455
0.0113402
-0.000517503
0.0113127
-0.000502338
0.0112868
-0.000486275
0.0112629
-0.000469389
0.0112408
-0.000452117
0.0112206
-0.000434432
0.0112023
-0.000416942
0.0111859
-0.000399419
0.0111713
-0.000382733
0.0111584
-0.000366313
0.0111472
-0.000351417
0.0111375
-0.000336959
0.011129
-0.000324733
0.0111217
-0.00031297
0.0111153
-0.000304092
0.0111097
-0.000295617
0.0111045
-0.000290421
0.0110996
-0.00028578
-0.000284014
0.0122561
0.000967576
-0.0122055
0.0123005
0.000897341
0.0123392
0.000827302
0.012373
0.000759789
0.0124025
0.00069479
0.0124278
0.000631634
0.0124492
0.00056987
0.0124667
0.000509469
0.0124806
0.000450629
0.0124911
0.000393553
0.0124983
0.000338363
0.0125024
0.000285111
0.0125035
0.000233839
0.0125019
0.000184605
0.0124976
0.000137477
0.0124909
9.2521e-05
0.0124819
4.97885e-05
0.0124708
9.31538e-06
0.0124578
-2.88598e-05
0.0124432
-6.47367e-05
0.0124271
-9.83128e-05
0.0124097
-0.000129614
0.0123912
-0.000158691
0.0123719
-0.000185621
0.0123518
-0.0002105
0.0123313
-0.000233451
0.0123104
-0.000254613
0.0122892
-0.000274146
0.0122679
-0.00029222
0.0122465
-0.000309016
0.0122251
-0.000324717
0.0122037
-0.000339506
0.0121822
-0.000353558
0.0121607
-0.000367036
0.012139
-0.000380083
0.0121172
-0.000392825
0.012095
-0.000405356
0.0120723
-0.000417747
0.0120492
-0.000430034
0.0120254
-0.000442222
0.0120008
-0.000454285
0.0119754
-0.000466167
0.0119491
-0.000477783
0.0119218
-0.000489024
0.0118935
-0.000499763
0.0118642
-0.000509855
0.0118339
-0.000519149
0.0118027
-0.000527487
0.0117706
-0.000534717
0.0117378
-0.000540692
0.0117044
-0.00054528
0.0116705
-0.000548365
0.0116363
-0.000549853
0.011602
-0.000549677
0.0115679
-0.000547791
0.011534
-0.000544188
0.0115006
-0.000538876
0.0114679
-0.00053191
0.0114361
-0.000523348
0.0114053
-0.000513314
0.0113758
-0.000501898
0.0113476
-0.000489299
0.0113208
-0.000475613
0.0112957
-0.000461125
0.0112722
-0.0004459
0.0112504
-0.000430329
0.0112304
-0.000414387
0.011212
-0.000398618
0.0111954
-0.000382821
0.0111805
-0.000367765
0.0111671
-0.000352954
0.0111552
-0.00033949
0.0111447
-0.000326434
0.0111353
-0.000315341
0.011127
-0.000304695
0.0111195
-0.000296569
0.0111127
-0.000288873
0.0111063
-0.000283995
0.0111003
-0.000279759
-0.000277884
0.0121936
0.000916652
-0.0121427
0.0122387
0.000852316
0.0122783
0.00078769
0.0123131
0.000724962
0.0123436
0.000664284
0.0123701
0.00060518
0.0123926
0.000547305
0.0124115
0.000490643
0.0124267
0.000435368
0.0124386
0.000381672
0.0124473
0.000329685
0.0124529
0.000279477
0.0124556
0.000231098
0.0124557
0.0001846
0.0124531
0.000140046
0.0124481
9.74927e-05
0.0124409
5.69906e-05
0.0124316
1.85741e-05
0.0124205
-1.77313e-05
0.0124077
-5.19193e-05
0.0123934
-8.39977e-05
0.0123778
-0.000113991
0.012361
-0.000141946
0.0123433
-0.00016793
0.0123249
-0.000192032
0.0123058
-0.000214357
0.0122862
-0.00023503
0.0122662
-0.000254188
0.012246
-0.00027198
0.0122255
-0.000288563
0.0122049
-0.000304096
0.0121841
-0.000318735
0.0121632
-0.000332633
0.0121421
-0.00034593
0.0121208
-0.00035875
0.0120992
-0.0003712
0.0120772
-0.000383365
0.0120547
-0.000395303
0.0120317
-0.000407049
0.0120081
-0.000418608
0.0119838
-0.000429959
0.0119587
-0.000441056
0.0119327
-0.000451829
0.0119059
-0.000462187
0.0118781
-0.000472023
0.0118495
-0.000481215
0.01182
-0.000489636
0.0117897
-0.000497155
0.0117586
-0.000503641
0.0117269
-0.000508972
0.0116946
-0.000513035
0.011662
-0.000515734
0.0116291
-0.00051699
0.0115962
-0.000516747
0.0115634
-0.000514967
0.0115308
-0.000511647
0.0114988
-0.000506795
0.0114673
-0.000500464
0.0114367
-0.000492704
0.011407
-0.000483628
0.0113784
-0.000473315
0.011351
-0.000461945
0.011325
-0.000449603
0.0113004
-0.000436543
0.0112774
-0.000422824
0.0112558
-0.000408795
0.0112359
-0.000394434
0.0112175
-0.000380225
0.0112007
-0.000365992
0.0111853
-0.000352416
0.0111714
-0.000339063
0.0111588
-0.000326901
0.0111475
-0.000315115
0.0111372
-0.000305058
0.011128
-0.000295426
0.0111194
-0.000287997
0.0111115
-0.000281012
0.011104
-0.000276449
0.0110968
-0.000272586
-0.000270652
0.0121361
0.000865799
-0.0120853
0.0121815
0.000806952
0.0122217
0.000747469
0.0122573
0.000689381
0.0122886
0.000632935
0.012316
0.000577799
0.0123396
0.00052372
0.0123595
0.000470705
0.012376
0.000418914
0.0123891
0.000368532
0.0123991
0.000319689
0.0124061
0.000272466
0.0124103
0.000226921
0.0124118
0.000183105
0.0124108
0.000141076
0.0124074
0.000100889
0.0124018
6.25877e-05
0.0123941
2.62053e-05
0.0123847
-8.23944e-06
0.0123735
-4.0735e-05
0.0123608
-7.1298e-05
0.0123467
-9.99498e-05
0.0123315
-0.000126732
0.0123153
-0.000151707
0.0122982
-0.000174951
0.0122804
-0.000196558
0.012262
-0.000216637
0.0122431
-0.000235309
0.0122239
-0.000252702
0.0122042
-0.000268952
0.0121843
-0.000284197
0.0121642
-0.000298574
0.0121438
-0.000312213
0.0121231
-0.000325234
0.0121021
-0.000337747
0.0120807
-0.000349843
0.0120589
-0.000361596
0.0120367
-0.000373058
0.0120139
-0.000384258
0.0119905
-0.000395203
0.0119664
-0.000405877
0.0119416
-0.000416242
0.011916
-0.00042624
0.0118896
-0.000435795
0.0118624
-0.000444817
0.0118344
-0.000453206
0.0118056
-0.000460853
0.0117761
-0.000467648
0.011746
-0.000473483
0.0117152
-0.000478253
0.0116841
-0.000481864
0.0116526
-0.000484235
0.0116209
-0.000485301
0.0115892
-0.000485016
0.0115575
-0.000483349
0.0115262
-0.000480299
0.0114953
-0.000475876
0.0114649
-0.00047013
0.0114353
-0.000463104
0.0114066
-0.000454901
0.0113789
-0.000445593
0.0113523
-0.000435339
0.0113269
-0.000424217
0.0113028
-0.000412452
0.0112801
-0.000400098
0.0112587
-0.000387465
0.0112388
-0.000374536
0.0112204
-0.000361741
0.0112033
-0.000348925
0.0111876
-0.00033669
0.0111732
-0.000324658
0.0111599
-0.000313679
0.0111479
-0.000303046
0.0111368
-0.000293934
0.0111266
-0.000285227
0.011117
-0.000278442
0.0111081
-0.000272107
0.0110995
-0.000267852
0.0110912
-0.000264334
-0.000262382
0.0120828
0.000815233
-0.0120323
0.0121283
0.000761474
0.0121689
0.000706856
0.0122051
0.00065323
0.0122371
0.000600896
0.0122653
0.000549628
0.0122898
0.000499248
0.0123107
0.000449784
0.0123282
0.000401396
0.0123425
0.000354255
0.0123537
0.000308495
0.0123619
0.000264201
0.0123674
0.000221435
0.0123703
0.000180252
0.0123707
0.000140707
0.0123687
0.00010285
0.0123646
6.67247e-05
0.0123584
3.23605e-05
0.0123504
-2.34108e-07
0.0123407
-3.10293e-05
0.0123294
-6.00603e-05
0.0123168
-8.73389e-05
0.012303
-0.000112904
0.0122881
-0.000136811
0.0122723
-0.000159126
0.0122557
-0.000179935
0.0122384
-0.00019933
0.0122205
-0.000217417
0.0122021
-0.000234309
0.0121832
-0.000250123
0.012164
-0.00026498
0.0121444
-0.000278995
0.0121245
-0.000292284
0.0121042
-0.000304949
0.0120836
-0.000317086
0.0120625
-0.000328774
0.012041
-0.000340077
0.012019
-0.00035104
0.0119964
-0.00036169
0.0119732
-0.000372034
0.0119494
-0.00038206
0.0119249
-0.000391738
0.0118997
-0.000401018
0.0118737
-0.000409838
0.011847
-0.000418124
0.0118196
-0.00042579
0.0117915
-0.000432746
0.0117628
-0.0004389
0.0117334
-0.00044416
0.0117036
-0.00044844
0.0116734
-0.00045166
0.0116429
-0.000453754
0.0116123
-0.000454665
0.0115817
-0.000454358
0.0115511
-0.000452807
0.0115208
-0.000450015
0.0114909
-0.000445993
0.0114616
-0.000440784
0.0114329
-0.000434431
0.011405
-0.000427025
0.0113781
-0.000418632
0.0113521
-0.000409392
0.0113273
-0.000399377
0.0113036
-0.000388787
0.0112812
-0.000377671
0.01126
-0.000366304
0.0112402
-0.000354673
0.0112216
-0.000343158
0.0112043
-0.000331627
0.0111882
-0.000320608
0.0111733
-0.000309775
0.0111595
-0.000299871
0.0111468
-0.000290284
0.0111349
-0.000282036
0.0111238
-0.00027417
0.0111134
-0.000267982
0.0111035
-0.000262242
0.0110939
-0.000258289
0.0110847
-0.000255087
-0.000253151
0.0120334
0.000765095
-0.0119833
0.0120788
0.000716065
0.0121196
0.00066603
0.0121562
0.000616668
0.0121888
0.000568304
0.0122176
0.000520789
0.0122429
0.000474003
0.0122647
0.000427996
0.0122831
0.000382923
0.0122984
0.000338951
0.0123107
0.000296209
0.0123201
0.000254786
0.0123268
0.000214749
0.0123309
0.000176153
0.0123326
0.000139053
0.0123319
0.000103496
0.0123291
6.95219e-05
0.0123243
3.71587e-05
0.0123177
6.42141e-06
0.0123093
-2.26789e-05
0.0122994
-5.01582e-05
0.0122881
-7.60346e-05
0.0122756
-0.000100342
0.0122619
-0.000123128
0.0122472
-0.000144454
0.0122317
-0.000164391
0.0122154
-0.000183023
0.0121984
-0.000200441
0.0121808
-0.000216744
0.0121627
-0.000232032
0.0121441
-0.000246411
0.0121251
-0.000259981
0.0121057
-0.00027284
0.0120858
-0.00028508
0.0120655
-0.000296781
0.0120448
-0.000308013
0.0120235
-0.000318832
0.0120017
-0.000329277
0.0119794
-0.000339372
0.0119565
-0.000349126
0.011933
-0.000358528
0.0119088
-0.000367555
0.011884
-0.000376165
0.0118584
-0.000384308
0.0118322
-0.000391921
0.0118054
-0.000398933
0.0117779
-0.000405269
0.0117498
-0.000410851
0.0117213
-0.000415603
0.0116923
-0.000419452
0.011663
-0.000422333
0.0116334
-0.000424189
0.0116037
-0.000424974
0.011574
-0.000424661
0.0115444
-0.000423228
0.0115151
-0.000420682
0.0114861
-0.000417031
0.0114577
-0.000412319
0.0114298
-0.000406583
0.0114027
-0.000399906
0.0113764
-0.000392345
0.0113511
-0.000384029
0.0113267
-0.00037502
0.0113034
-0.000365497
0.0112812
-0.000355504
0.0112602
-0.000345286
0.0112404
-0.000334833
0.0112217
-0.00032448
0.0112042
-0.000314114
0.0111878
-0.0003042
0.0111725
-0.000294454
0.0111581
-0.000285528
0.0111447
-0.000276893
0.0111321
-0.000269435
0.0111203
-0.000262336
0.011109
-0.000256702
0.0110983
-0.000251506
0.0110878
-0.000247845
0.0110777
-0.000244936
-0.000243041
0.0119874
0.000715501
-0.0119378
0.0120326
0.000670866
0.0120735
0.000625138
0.0121104
0.000579834
0.0121434
0.000535285
0.0121728
0.000491398
0.0121987
0.000448095
0.0122212
0.000405445
0.0122406
0.0003636
0.0122568
0.00032272
0.0122701
0.00028293
0.0122805
0.000244322
0.0122883
0.000206964
0.0122936
0.000170912
0.0122964
0.000136219
0.012297
0.000102933
0.0122954
7.10891e-05
0.0122918
4.07157e-05
0.0122864
1.18278e-05
0.0122793
-1.55681e-05
0.0122706
-4.14808e-05
0.0122605
-6.59287e-05
0.0122491
-8.89419e-05
0.0122366
-0.000110562
0.0122229
-0.000130842
0.0122084
-0.000149846
0.012193
-0.000167646
0.0121769
-0.000184321
0.0121601
-0.000199956
0.0121427
-0.000214641
0.0121248
-0.000228464
0.0121063
-0.000241515
0.0120874
-0.000253877
0.0120679
-0.00026563
0.012048
-0.000276844
0.0120275
-0.000287579
0.0120066
-0.000297883
0.0119851
-0.000307793
0.0119631
-0.000317329
0.0119404
-0.000326499
0.0119172
-0.000335298
0.0118933
-0.000343703
0.0118689
-0.000351685
0.0118438
-0.000359198
0.011818
-0.000366192
0.0117917
-0.000372608
0.0117648
-0.000378382
0.0117374
-0.00038345
0.0117096
-0.000387748
0.0116813
-0.000391217
0.0116528
-0.0003938
0.0116241
-0.000395452
0.0115952
-0.000396136
0.0115664
-0.000395828
0.0115377
-0.000394514
0.0115092
-0.000392199
0.011481
-0.000388895
0.0114534
-0.000384641
0.0114263
-0.000379471
0.0113998
-0.00037346
0.0113741
-0.00036666
0.0113493
-0.000359185
0.0113254
-0.000351092
0.0113024
-0.00034254
0.0112805
-0.000333568
0.0112596
-0.000324394
0.0112397
-0.000315011
0.011221
-0.000305714
0.0112033
-0.000296406
0.0111866
-0.000287497
0.0111709
-0.00027874
0.011156
-0.000270706
0.0111421
-0.000262937
0.0111288
-0.000256204
0.0111163
-0.000249804
0.0111043
-0.000244685
0.0110928
-0.000239988
0.0110815
-0.000236609
0.0110706
-0.000233971
-0.000232138
0.0119448
0.000666531
-0.0118958
0.0119897
0.000625982
0.0120305
0.000584299
0.0120675
0.000542848
0.0121008
0.000501953
0.0121307
0.000461561
0.0121571
0.00042163
0.0121803
0.000382235
0.0122004
0.000343528
0.0122175
0.000305662
0.0122316
0.000268758
0.012243
0.000232907
0.0122518
0.000198177
0.0122581
0.000164626
0.012262
0.000132306
0.0122637
0.000101262
0.0122633
7.15291e-05
0.0122608
4.31334e-05
0.0122566
1.60904e-05
0.0122506
-9.59461e-06
0.0122431
-3.39267e-05
0.012234
-5.69231e-05
0.0122237
-7.86099e-05
0.0122122
-9.90236e-05
0.0121995
-0.00011821
0.0121859
-0.000136226
0.0121714
-0.000153132
0.0121561
-0.000168999
0.01214
-0.000183901
0.0121233
-0.000197914
0.012106
-0.000211116
0.012088
-0.000223583
0.0120695
-0.000235389
0.0120505
-0.000246602
0.012031
-0.000257283
0.0120109
-0.000267484
0.0119902
-0.000277248
0.011969
-0.000286607
0.0119473
-0.000295578
0.011925
-0.000304171
0.011902
-0.00031238
0.0118785
-0.00032019
0.0118544
-0.000327575
0.0118297
-0.000334499
0.0118044
-0.000340918
0.0117786
-0.000346785
0.0117523
-0.000352047
0.0117255
-0.00035665
0.0116983
-0.000360541
0.0116707
-0.000363669
0.0116429
-0.000365991
0.0116149
-0.000367467
0.0115869
-0.000368067
0.0115588
-0.000367773
0.0115309
-0.000366575
0.0115032
-0.00036448
0.0114758
-0.000361498
0.0114488
-0.000357667
0.0114223
-0.000353017
0.0113965
-0.000347616
0.0113713
-0.000341512
0.011347
-0.000334806
0.0113234
-0.000327547
0.0113008
-0.000319879
0.011279
-0.000311837
0.0112582
-0.000303614
0.0112384
-0.000295204
0.0112196
-0.000286869
0.0112017
-0.000278524
0.0111847
-0.000270531
0.0111687
-0.000262675
0.0111534
-0.000255456
0.011139
-0.000248477
0.0111252
-0.000242408
0.011112
-0.000236649
0.0110993
-0.000232007
0.0110871
-0.00022777
0.0110752
-0.000224663
0.0110635
-0.000222275
-0.00022052
0.0119053
0.000618229
-0.011857
0.0119498
0.000581487
0.0119905
0.000543606
0.0120275
0.000505808
0.012061
0.000468408
0.0120912
0.000431379
0.0121182
0.000394702
0.0121419
0.000358462
0.0121627
0.000322803
0.0121804
0.000287873
0.0121954
0.000253788
0.0122077
0.000220636
0.0122174
0.000188485
0.0122246
0.000157394
0.0122295
0.000127412
0.0122322
9.85825e-05
0.0122328
7.09406e-05
0.0122314
4.4511e-05
0.0122282
1.93085e-05
0.0122232
-4.66204e-06
0.0122167
-2.74003e-05
0.0122087
-4.89254e-05
0.0121994
-6.9258e-05
0.0121888
-8.84298e-05
0.012177
-0.000106481
0.0121643
-0.00012346
0.0121506
-0.000139421
0.012136
-0.000154424
0.0121206
-0.000168534
0.0121045
-0.000181816
0.0120878
-0.000194338
0.0120703
-0.000206167
0.0120523
-0.000217365
0.0120337
-0.000227992
0.0120145
-0.000238101
0.0119948
-0.000247737
0.0119745
-0.000256937
0.0119536
-0.00026573
0.0119321
-0.000274131
0.0119101
-0.00028215
0.0118875
-0.000289783
0.0118643
-0.000297018
0.0118406
-0.000303833
0.0118163
-0.000310199
0.0117915
-0.000316082
0.0117661
-0.00032144
0.0117403
-0.00032623
0.0117141
-0.000330408
0.0116875
-0.000333929
0.0116605
-0.000336752
0.0116334
-0.00033884
0.0116061
-0.000340162
0.0115787
-0.000340694
0.0115514
-0.00034042
0.0115241
-0.000339335
0.0114971
-0.000337446
0.0114703
-0.000334765
0.011444
-0.000331324
0.0114181
-0.000327153
0.0113928
-0.000322313
0.0113682
-0.000316845
0.0113442
-0.000310841
0.011321
-0.000304346
0.0112986
-0.000297486
0.0112771
-0.000290292
0.0112564
-0.000282936
0.0112366
-0.000275414
0.0112177
-0.000267957
0.0111997
-0.00026049
0.0111825
-0.000253333
0.0111661
-0.000246299
0.0111504
-0.000239826
0.0111355
-0.000233571
0.0111212
-0.000228113
0.0111075
-0.000222942
0.0110943
-0.000218744
0.0110814
-0.00021493
0.0110689
-0.000212084
0.0110565
-0.000209928
-0.000208263
0.0118688
0.000570618
-0.0118212
0.0119129
0.00053743
0.0119534
0.000503125
0.0119904
0.000468794
0.012024
0.000434732
0.0120545
0.000400934
0.0120818
0.0003674
0.012106
0.000334213
0.0121273
0.000301514
0.0121458
0.000269443
0.0121614
0.000238109
0.0121745
0.0002076
0.012185
0.00017798
0.0121931
0.000149306
0.0121988
0.000121629
0.0122024
9.49884e-05
0.012204
6.94183e-05
0.0122035
4.4943e-05
0.0122013
2.15773e-05
0.0121973
-6.78056e-07
0.0121917
-2.18109e-05
0.0121846
-4.18479e-05
0.0121762
-6.0802e-05
0.0121664
-7.87013e-05
0.0121555
-9.55807e-05
0.0121435
-0.000111482
0.0121306
-0.000126451
0.0121167
-0.000140542
0.012102
-0.000153809
0.0120865
-0.00016631
0.0120702
-0.000178103
0.0120533
-0.000189245
0.0120357
-0.000199791
0.0120175
-0.000209792
0.0119987
-0.000219294
0.0119793
-0.000228337
0.0119593
-0.000236953
0.0119388
-0.000245167
0.0119176
-0.000252993
0.0118959
-0.00026044
0.0118737
-0.000267507
0.0118508
-0.000274182
0.0118274
-0.00028045
0.0118035
-0.000286287
0.0117791
-0.000291663
0.0117542
-0.000296545
0.0117289
-0.000300897
0.0117032
-0.000304683
0.0116771
-0.000307866
0.0116507
-0.000310412
0.0116242
-0.00031229
0.0115975
-0.000313476
0.0115708
-0.00031395
0.011544
-0.000313701
0.0115174
-0.000312724
0.011491
-0.000311029
0.0114649
-0.000308627
0.0114391
-0.000305548
0.0114138
-0.000301818
0.011389
-0.000297493
0.0113647
-0.00029261
0.0113411
-0.00028725
0.0113182
-0.000281453
0.0112961
-0.000275332
0.0112747
-0.000268914
0.0112541
-0.000262352
0.0112343
-0.000255641
0.0112154
-0.000248986
0.0111972
-0.000242323
0.0111798
-0.000235932
0.0111632
-0.000229651
0.0111472
-0.000223862
0.0111319
-0.00021827
0.0111172
-0.000213376
0.011103
-0.000208745
0.0110892
-0.000204962
0.0110758
-0.000201539
0.0110626
-0.000198943
0.0110497
-0.000197003
-0.000195437
0.0118353
0.000523698
-0.0117884
0.0118789
0.000493838
0.0119191
0.000462903
0.011956
0.000431862
0.0119898
0.000400992
0.0120204
0.0003703
0.012048
0.000339797
0.0120727
0.000309567
0.0120944
0.000279743
0.0121134
0.000250455
0.0121297
0.000221808
0.0121434
0.000193885
0.0121547
0.000166748
0.0121635
0.000140454
0.0121701
0.000115047
0.0121745
9.05701e-05
0.0121769
6.7053e-05
0.0121773
4.45193e-05
0.0121759
2.29836e-05
0.0121728
2.45133e-06
0.012168
-1.70738e-05
0.0121618
-3.56067e-05
0.0121542
-5.31619e-05
0.0121452
-6.97624e-05
0.0121351
-8.54384e-05
0.0121238
-0.000100226
0.0121115
-0.000114165
0.0120983
-0.000127301
0.0120842
-0.000139682
0.0120692
-0.000151358
0.0120535
-0.000162378
0.012037
-0.000172792
0.0120199
-0.000182647
0.0120021
-0.000191988
0.0119837
-0.000200854
0.0119646
-0.00020928
0.0119449
-0.000217293
0.0119247
-0.000224916
0.0119039
-0.000232162
0.0118825
-0.000239039
0.0118605
-0.000245546
0.011838
-0.000251676
0.011815
-0.000257415
0.0117914
-0.000262744
0.0117674
-0.000267638
0.0117429
-0.000272072
0.011718
-0.000276014
0.0116928
-0.000279436
0.0116672
-0.000282306
0.0116414
-0.000284598
0.0116154
-0.000286285
0.0115893
-0.000287349
0.0115631
-0.000287773
0.0115369
-0.000287551
0.0115109
-0.000286678
0.011485
-0.000285165
0.0114594
-0.000283023
0.0114342
-0.000280278
0.0114093
-0.000276956
0.0113849
-0.000273105
0.0113611
-0.00026876
0.0113378
-0.000263992
0.0113152
-0.000258836
0.0112933
-0.000253393
0.011272
-0.000247687
0.0112515
-0.000241852
0.0112318
-0.000235885
0.0112128
-0.000229967
0.0111945
-0.000224041
0.0111769
-0.000218353
0.01116
-0.000212763
0.0111437
-0.000207604
0.0111281
-0.000202621
0.011113
-0.00019825
0.0110983
-0.000194117
0.0110841
-0.000190721
0.0110702
-0.00018766
0.0110566
-0.000185305
0.0110431
-0.000183566
-0.000182107
0.0118047
0.000477454
-0.0117584
0.0118478
0.000450719
0.0118877
0.000422968
0.0119245
0.000395057
0.0119583
0.00036724
0.011989
0.000339535
0.0120169
0.000311957
0.0120418
0.000284591
0.012064
0.00025756
0.0120835
0.000230984
0.0121003
0.000204962
0.0121147
0.000179571
0.0121265
0.000154873
0.0121361
0.000130918
0.0121434
0.000107752
0.0121485
8.54127e-05
0.0121516
6.39302e-05
0.0121528
4.33263e-05
0.0121522
2.36158e-05
0.0121499
4.80472e-06
0.0121459
-1.31048e-05
0.0121404
-3.01221e-05
0.0121335
-4.62606e-05
0.0121253
-6.154e-05
0.0121158
-7.59857e-05
0.0121052
-8.96286e-05
0.0120936
-0.000102504
0.0120809
-0.00011465
0.0120673
-0.000126107
0.0120529
-0.00013692
0.0120377
-0.00014713
0.0120216
-0.00015678
0.0120049
-0.000165912
0.0119875
-0.000174562
0.0119694
-0.000182766
0.0119507
-0.000190553
0.0119313
-0.000197948
0.0119114
-0.00020497
0.0118908
-0.000211631
0.0118697
-0.000217938
0.0118481
-0.000223892
0.0118259
-0.000229486
0.0118032
-0.000234711
0.01178
-0.00023955
0.0117563
-0.000243985
0.0117323
-0.000247992
0.0117078
-0.000251548
0.011683
-0.000254628
0.0116579
-0.000257207
0.0116326
-0.000259262
0.011607
-0.000260774
0.0115814
-0.000261727
0.0115558
-0.000262108
0.0115301
-0.000261912
0.0115046
-0.000261139
0.0114792
-0.000259796
0.0114541
-0.000257895
0.0114293
-0.000255461
0.0114048
-0.000252516
0.0113808
-0.000249103
0.0113573
-0.000245254
0.0113344
-0.000241031
0.011312
-0.000236466
0.0112902
-0.000231647
0.0112691
-0.000226596
0.0112487
-0.00022143
0.011229
-0.000216148
0.0112099
-0.000210907
0.0111915
-0.00020566
0.0111738
-0.000200619
0.0111567
-0.000195666
0.0111402
-0.000191088
0.0111242
-0.000186669
0.0111088
-0.000182781
0.0110938
-0.000179111
0.0110791
-0.000176077
0.0110648
-0.000173352
0.0110507
-0.000171228
0.0110369
-0.000169677
-0.00016833
0.0117768
0.000431857
-0.0117312
0.0118194
0.000408068
0.0118591
0.000383334
0.0118957
0.000358406
0.0119295
0.000333515
0.0119603
0.000308685
0.0119883
0.000283935
0.0120136
0.000259346
0.0120361
0.00023503
0.012056
0.000211098
0.0120733
0.000187642
0.0120881
0.000164733
0.0121006
0.000142429
0.0121107
0.000120777
0.0121187
9.98217e-05
0.0121245
7.95968e-05
0.0121283
6.01311e-05
0.0121302
4.14454e-05
0.0121302
2.35537e-05
0.0121286
6.4627e-06
0.0121253
-9.82555e-06
0.0121205
-2.53177e-05
0.0121142
-4.0025e-05
0.0121067
-5.39642e-05
0.0120978
-6.71568e-05
0.0120878
-7.9629e-05
0.0120767
-9.1411e-05
0.0120646
-0.000102536
0.0120516
-0.000113038
0.0120376
-0.000122955
0.0120228
-0.000132323
0.0120072
-0.000141179
0.0119908
-0.000149558
0.0119738
-0.000157492
0.011956
-0.000165012
0.0119376
-0.000172142
0.0119186
-0.000178905
0.0118989
-0.000185316
0.0118787
-0.000191388
0.0118579
-0.000197125
0.0118365
-0.00020253
0.0118146
-0.000207598
0.0117922
-0.00021232
0.0117693
-0.000216685
0.011746
-0.000220676
0.0117223
-0.000224275
0.0116982
-0.000227463
0.0116738
-0.000230219
0.0116491
-0.000232524
0.0116242
-0.000234359
0.0115992
-0.000235708
0.011574
-0.000236558
0.0115488
-0.0002369
0.0115236
-0.000236731
0.0114985
-0.00023605
0.0114736
-0.000234867
0.0114489
-0.000233191
0.0114245
-0.000231045
0.0114004
-0.00022845
0.0113768
-0.000225444
0.0113536
-0.000222054
0.0113309
-0.000218335
0.0113087
-0.000214316
0.0112871
-0.000210073
0.0112662
-0.000205627
0.0112458
-0.000201079
0.0112261
-0.000196429
0.011207
-0.000191814
0.0111885
-0.000187193
0.0111707
-0.000182752
0.0111534
-0.000178387
0.0111366
-0.000174349
0.0111204
-0.000170451
0.0111047
-0.000167014
0.0110893
-0.000163772
0.0110743
-0.000161079
0.0110596
-0.000158668
0.0110452
-0.000156766
0.0110309
-0.000155391
-0.00015416
0.0117517
0.000386868
-0.0117067
0.0117939
0.000365868
0.0118332
0.000344001
0.0118697
0.000321925
0.0119033
0.000299845
0.0119342
0.000277787
0.0119624
0.000255775
0.0119879
0.000233881
0.0120107
0.000212208
0.0120309
0.000190858
0.0120487
0.000169912
0.012064
0.000149437
0.0120769
0.000129486
0.0120876
0.000110105
0.0120961
9.13309e-05
0.0121025
7.31981e-05
0.0121069
5.57323e-05
0.0121094
3.89532e-05
0.01211
2.2874e-05
0.012109
7.50157e-06
0.0121063
-7.16186e-06
0.0121021
-2.11208e-05
0.0120965
-3.43849e-05
0.0120895
-4.69678e-05
0.0120812
-5.88878e-05
0.0120718
-7.01671e-05
0.0120612
-8.08312e-05
0.0120496
-9.09081e-05
0.0120369
-0.000100428
0.0120234
-0.000109422
0.012009
-0.000117921
0.0119938
-0.000125956
0.0119778
-0.000133558
0.0119611
-0.000140755
0.0119436
-0.000147571
0.0119255
-0.000154028
0.0119067
-0.000160146
0.0118874
-0.000165939
0.0118674
-0.000171416
0.0118468
-0.000176583
0.0118258
-0.000181442
0.0118042
-0.00018599
0.0117821
-0.00019022
0.0117595
-0.000194122
0.0117365
-0.000197684
0.0117131
-0.00020089
0.0116894
-0.000203726
0.0116653
-0.000206174
0.011641
-0.000208219
0.0116165
-0.000209845
0.0115918
-0.00021104
0.0115671
-0.000211794
0.0115423
-0.0002121
0.0115175
-0.000211956
0.0114928
-0.000211362
0.0114683
-0.000210328
0.0114439
-0.000208862
0.0114199
-0.000206986
0.0113962
-0.000204717
0.0113728
-0.000202088
0.0113499
-0.000199124
0.0113274
-0.000195873
0.0113054
-0.00019236
0.011284
-0.000188652
0.0112632
-0.000184766
0.0112429
-0.000180792
0.0112232
-0.000176728
0.0112041
-0.000172693
0.0111855
-0.000168653
0.0111675
-0.000164768
0.0111501
-0.00016095
0.0111332
-0.000157414
0.0111167
-0.000154001
0.0111007
-0.000150986
0.0110851
-0.000148144
0.0110698
-0.000145772
0.0110547
-0.000143656
0.0110399
-0.000141968
0.0110253
-0.000140758
-0.000139645
0.0117292
0.000342441
-0.0116848
0.011771
0.000324091
0.01181
0.000304961
0.0118463
0.000285618
0.0118799
0.000266246
0.0119108
0.000246869
0.0119391
0.000227512
0.0119647
0.000208239
0.0119878
0.000189144
0.0120083
0.000170316
0.0120264
0.000151831
0.0120421
0.000133746
0.0120555
0.000116111
0.0120666
9.89673e-05
0.0120756
8.23495e-05
0.0120825
6.62877e-05
0.0120874
5.08061e-05
0.0120905
3.59226e-05
0.0120917
2.16495e-05
0.0120912
7.99365e-06
0.0120891
-5.0426e-06
0.0120854
-1.7462e-05
0.0120803
-2.92728e-05
0.0120738
-4.04861e-05
0.0120661
-5.11172e-05
0.0120571
-6.11848e-05
0.012047
-7.07101e-05
0.0120358
-7.97171e-05
0.0120236
-8.82308e-05
0.0120104
-9.62778e-05
0.0119964
-0.000103885
0.0119815
-0.000111077
0.0119658
-0.000117882
0.0119494
-0.000124321
0.0119322
-0.000130417
0.0119144
-0.000136189
0.0118959
-0.000141652
0.0118768
-0.000146818
0.0118571
-0.000151697
0.0118368
-0.000156294
0.0118159
-0.000160609
0.0117946
-0.000164642
0.0117728
-0.000168387
0.0117505
-0.000171836
0.0117278
-0.00017498
0.0117047
-0.000177806
0.0116813
-0.000180301
0.0116576
-0.000182453
0.0116336
-0.000184249
0.0116094
-0.000185676
0.0115851
-0.000186725
0.0115607
-0.000187388
0.0115363
-0.000187659
0.0115118
-0.000187539
0.0114875
-0.000187027
0.0114633
-0.000186132
0.0114393
-0.000184864
0.0114156
-0.000183239
0.0113921
-0.000181273
0.011369
-0.000178997
0.0113463
-0.000176431
0.0113241
-0.000173617
0.0113023
-0.000170576
0.011281
-0.000167366
0.0112602
-0.000164002
0.01124
-0.000160562
0.0112203
-0.000157044
0.0112012
-0.00015355
0.0111826
-0.000150052
0.0111645
-0.000146686
0.0111469
-0.000143378
0.0111298
-0.000140311
0.0111132
-0.000137352
0.0110969
-0.000134733
0.011081
-0.000132266
0.0110655
-0.000130198
0.0110502
-0.000128359
0.0110351
-0.000126877
0.0110201
-0.000125824
-0.000124832
0.0117093
0.000298523
-0.0116654
0.0117507
0.000282704
0.0117895
0.000266196
0.0118256
0.000249485
0.0118591
0.000232728
0.01189
0.000215951
0.0119184
0.000199174
0.0119442
0.000182457
0.0119674
0.00016588
0.0119882
0.000149523
0.0120066
0.000133451
0.0120226
0.000117717
0.0120364
0.000102364
0.0120479
8.74287e-05
0.0120573
7.29428e-05
0.0120647
5.8933e-05
0.0120701
4.54208e-05
0.0120736
3.24226e-05
0.0120753
1.99494e-05
0.0120753
8.00791e-06
0.0120736
-3.39971e-06
0.0120704
-1.42746e-05
0.0120658
-2.46239e-05
0.0120597
-3.44566e-05
0.0120524
-4.37852e-05
0.0120439
-5.26251e-05
0.0120341
-6.09943e-05
0.0120233
-6.89124e-05
0.0120115
-7.64007e-05
0.0119987
-8.34811e-05
0.011985
-9.01759e-05
0.0119704
-9.65072e-05
0.011955
-0.000102496
0.0119389
-0.000108163
0.011922
-0.000113525
0.0119044
-0.000118599
0.0118861
-0.000123397
0.0118673
-0.000127932
0.0118478
-0.000132209
0.0118277
-0.000136234
0.0118071
-0.000140008
0.011786
-0.00014353
0.0117644
-0.000146796
0.0117424
-0.0001498
0.0117199
-0.000152534
0.0116971
-0.00015499
0.011674
-0.000157155
0.0116505
-0.000159021
0.0116269
-0.000160576
0.011603
-0.000161812
0.011579
-0.00016272
0.0115549
-0.000163295
0.0115308
-0.000163533
0.0115067
-0.000163434
0.0114826
-0.000162999
0.0114587
-0.000162236
0.011435
-0.000161152
0.0114116
-0.000159763
0.0113884
-0.000158083
0.0113655
-0.000156138
0.011343
-0.000153944
0.0113209
-0.000151539
0.0112993
-0.00014894
0.0112781
-0.000146197
0.0112575
-0.000143323
0.0112373
-0.000140382
0.0112176
-0.000137375
0.0111984
-0.000134389
0.0111798
-0.000131398
0.0111616
-0.00012852
0.0111439
-0.00012569
0.0111267
-0.000123065
0.0111099
-0.000120533
0.0110934
-0.000118286
0.0110773
-0.000116173
0.0110615
-0.000114395
0.011046
-0.000112817
0.0110306
-0.000111535
0.0110154
-0.00011063
-0.000109761
0.011692
0.000255056
-0.0116486
0.0117331
0.000241666
0.0117716
0.000227682
0.0118076
0.000213514
0.011841
0.000199295
0.0118719
0.000185044
0.0119003
0.000170784
0.0119262
0.000156563
0.0119496
0.000142453
0.0119706
0.000128519
0.0119892
0.000114821
0.0120056
0.000101402
0.0120196
8.83001e-05
0.0120315
7.55478e-05
0.0120413
6.31725e-05
0.012049
5.11975e-05
0.0120548
3.96416e-05
0.0120587
2.85191e-05
0.0120608
1.784e-05
0.0120612
7.61038e-06
0.01206
-2.16783e-06
0.0120572
-1.14944e-05
0.0120529
-2.03757e-05
0.0120473
-2.88186e-05
0.0120403
-3.68334e-05
0.0120321
-4.44327e-05
0.0120228
-5.16311e-05
0.0120123
-5.84448e-05
0.0120008
-6.48913e-05
0.0119883
-7.09886e-05
0.0119749
-7.67552e-05
0.0119606
-8.22092e-05
0.0119455
-8.73681e-05
0.0119296
-9.22483e-05
0.0119129
-9.6865e-05
0.0118955
-0.000101231
0.0118775
-0.000105358
0.0118588
-0.000109254
0.0118395
-0.000112927
0.0118197
-0.000116379
0.0117993
-0.000119612
0.0117784
-0.000122627
0.011757
-0.000125419
0.0117352
-0.000127984
0.011713
-0.000130317
0.0116904
-0.000132409
0.0116675
-0.000134252
0.0116443
-0.000135839
0.0116209
-0.000137161
0.0115973
-0.000138212
0.0115735
-0.000138984
0.0115497
-0.000139474
0.0115259
-0.000139679
0.011502
-0.000139599
0.0114783
-0.000139236
0.0114546
-0.000138596
0.0114312
-0.000137686
0.0114079
-0.00013652
0.011385
-0.00013511
0.0113623
-0.000133476
0.01134
-0.000131634
0.0113181
-0.000129614
0.0112965
-0.000127432
0.0112755
-0.000125129
0.0112549
-0.000122716
0.0112347
-0.000120247
0.0112151
-0.000117722
0.0111959
-0.000115213
0.0111772
-0.000112701
0.011159
-0.000110283
0.0111412
-0.000107905
0.0111238
-0.000105698
0.0111069
-0.000103568
0.0110902
-0.000101677
0.011074
-9.9898e-05
0.011058
-9.83972e-05
0.0110422
-9.70678e-05
0.0110267
-9.59798e-05
0.0110113
-9.52164e-05
-9.44704e-05
0.0116773
0.000211981
-0.0116342
0.011718
0.000200932
0.0117563
0.000189392
0.0117921
0.000177692
0.0118255
0.000165941
0.0118563
0.000154158
0.0118848
0.000142358
0.0119108
0.000130584
0.0119343
0.000118894
0.0119555
0.000107344
0.0119743
9.59835e-05
0.0119909
8.48489e-05
0.0120052
7.39722e-05
0.0120174
6.33804e-05
0.0120274
5.3097e-05
0.0120355
4.31416e-05
0.0120416
3.35302e-05
0.0120459
2.42751e-05
0.0120483
1.53848e-05
0.0120491
6.86451e-06
0.0120482
-1.28399e-06
0.0120457
-9.05932e-06
0.0120418
-1.64674e-05
0.0120365
-2.35134e-05
0.0120299
-3.02053e-05
0.012022
-3.65532e-05
0.012013
-4.25689e-05
0.0120028
-4.82654e-05
0.0119915
-5.36567e-05
0.0119793
-5.87574e-05
0.0119661
-6.35822e-05
0.0119521
-6.81459e-05
0.0119372
-7.24626e-05
0.0119215
-7.65456e-05
0.011905
-8.04069e-05
0.0118878
-8.40573e-05
0.01187
-8.75058e-05
0.0118515
-9.07596e-05
0.0118324
-9.38242e-05
0.0118127
-9.67027e-05
0.0117925
-9.93967e-05
0.0117718
-0.000101906
0.0117506
-0.000104228
0.011729
-0.000106359
0.0117069
-0.000108295
0.0116846
-0.00011003
0.0116619
-0.000111558
0.0116389
-0.000112872
0.0116157
-0.000113967
0.0115923
-0.000114837
0.0115688
-0.000115476
0.0115452
-0.000115883
0.0115216
-0.000116054
0.011498
-0.000115991
0.0114745
-0.000115695
0.011451
-0.000115173
0.0114278
-0.000114428
0.0114047
-0.000113474
0.0113819
-0.000112319
0.0113594
-0.000110981
0.0113373
-0.000109473
0.0113155
-0.000107819
0.0112941
-0.000106033
0.0112731
-0.000104147
0.0112526
-0.00010217
0.0112325
-0.000100148
0.0112128
-9.80806e-05
0.0111936
-9.60265e-05
0.0111749
-9.39687e-05
0.0111566
-9.19871e-05
0.0111387
-9.00389e-05
0.0111213
-8.82291e-05
0.0111042
-8.64831e-05
0.0110874
-8.49307e-05
0.011071
-8.34712e-05
0.0110549
-8.22368e-05
0.0110389
-8.1145e-05
0.0110232
-8.02461e-05
0.0110076
-7.96186e-05
-7.89964e-05
0.011665
0.000169231
-0.0116222
0.0117055
0.000160455
0.0117436
0.00015129
0.0117793
0.000141998
0.0118125
0.000132661
0.0118434
0.000123294
0.0118719
0.000113908
0.0118979
0.000104538
0.0119216
9.52315e-05
0.0119429
8.60325e-05
0.0119619
7.69795e-05
0.0119786
6.81032e-05
0.0119932
5.94291e-05
0.0120056
5.09788e-05
0.0120159
4.27713e-05
0.0120242
3.48227e-05
0.0120306
2.71459e-05
0.0120351
1.97508e-05
0.0120379
1.26446e-05
0.0120389
5.83145e-06
0.0120383
-6.87374e-07
0.0120362
-6.90935e-06
0.0120325
-1.28403e-05
0.0120275
-1.84835e-05
0.0120211
-2.38453e-05
0.0120135
-2.89333e-05
0.0120047
-3.37568e-05
0.0119948
-3.83257e-05
0.0119838
-4.26511e-05
0.0119717
-4.67442e-05
0.0119588
-5.06165e-05
0.0119449
-5.42795e-05
0.0119302
-5.77441e-05
0.0119147
-6.10208e-05
0.0118984
-6.41189e-05
0.0118814
-6.7047e-05
0.0118637
-6.98119e-05
0.0118453
-7.24195e-05
0.0118264
-7.4874e-05
0.0118069
-7.7178e-05
0.0117868
-7.93328e-05
0.0117662
-8.13383e-05
0.0117452
-8.31929e-05
0.0117237
-8.4894e-05
0.0117019
-8.64381e-05
0.0116797
-8.78209e-05
0.0116571
-8.90379e-05
0.0116344
-9.00844e-05
0.0116113
-9.09556e-05
0.0115882
-9.16475e-05
0.0115648
-9.21567e-05
0.0115414
-9.24809e-05
0.011518
-9.26187e-05
0.0114946
-9.2571e-05
0.0114712
-9.23391e-05
0.011448
-9.19276e-05
0.0114249
-9.13411e-05
0.011402
-9.05888e-05
0.0113794
-8.96782e-05
0.011357
-8.86235e-05
0.011335
-8.74341e-05
0.0113133
-8.61303e-05
0.011292
-8.47213e-05
0.0112711
-8.32344e-05
0.0112506
-8.16758e-05
0.0112305
-8.00817e-05
0.0112109
-7.84507e-05
0.0111917
-7.6831e-05
0.0111729
-7.52074e-05
0.0111546
-7.36446e-05
0.0111366
-7.21068e-05
0.0111191
-7.0679e-05
0.0111019
-6.92999e-05
0.011085
-6.80742e-05
0.0110685
-6.69205e-05
0.0110522
-6.59444e-05
0.0110361
-6.50805e-05
0.0110203
-6.43672e-05
0.0110045
-6.38705e-05
-6.33727e-05
0.0116552
0.00012674
-0.0116127
0.0116955
0.00012018
0.0117334
0.00011334
0.011769
0.000106409
0.0118022
9.94425e-05
0.0118331
9.24504e-05
0.0118615
8.54424e-05
0.0118876
7.84439e-05
0.0119114
7.14896e-05
0.0119328
6.46138e-05
0.0119519
5.78449e-05
0.0119688
5.12061e-05
0.0119835
4.47164e-05
0.0119961
3.83922e-05
0.0120066
3.2248e-05
0.0120152
2.62957e-05
0.0120218
2.05454e-05
0.0120265
1.50044e-05
0.0120295
9.67833e-06
0.0120307
4.57041e-06
0.0120304
-3.18713e-07
0.0120284
-4.98597e-06
0.012025
-9.4367e-06
0.0120202
-1.36728e-05
0.0120141
-1.76988e-05
0.0120067
-2.15203e-05
0.0119981
-2.51441e-05
0.0119883
-2.85776e-05
0.0119775
-3.18286e-05
0.0119656
-3.49056e-05
0.0119528
-3.7817e-05
0.0119391
-4.05711e-05
0.0119246
-4.31761e-05
0.0119092
-4.56395e-05
0.011893
-4.79684e-05
0.0118762
-5.01688e-05
0.0118586
-5.2246e-05
0.0118404
-5.42043e-05
0.0118216
-5.60468e-05
0.0118021
-5.77756e-05
0.0117822
-5.93915e-05
0.0117618
-6.08946e-05
0.0117409
-6.22839e-05
0.0117195
-6.35575e-05
0.0116978
-6.47128e-05
0.0116757
-6.57471e-05
0.0116533
-6.66569e-05
0.0116307
-6.74389e-05
0.0116078
-6.80897e-05
0.0115848
-6.86067e-05
0.0115616
-6.89872e-05
0.0115384
-6.92299e-05
0.0115151
-6.93337e-05
0.0114918
-6.92995e-05
0.0114686
-6.91282e-05
0.0114455
-6.88236e-05
0.0114225
-6.8389e-05
0.0113998
-6.78314e-05
0.0113773
-6.7156e-05
0.011355
-6.63741e-05
0.0113331
-6.54919e-05
0.0113115
-6.45252e-05
0.0112902
-6.34801e-05
0.0112694
-6.23778e-05
0.0112489
-6.12215e-05
0.0112289
-6.00399e-05
0.0112093
-5.88296e-05
0.01119
-5.76291e-05
0.0111713
-5.64238e-05
0.0111529
-5.52656e-05
0.0111349
-5.41231e-05
0.0111173
-5.30652e-05
0.0111
-5.20395e-05
0.0110831
-5.11315e-05
0.0110664
-5.02721e-05
0.01105
-4.95488e-05
0.0110339
-4.89042e-05
0.0110179
-4.83745e-05
0.011002
-4.80043e-05
-4.76314e-05
0.0116478
8.44332e-05
-0.0116055
0.0116879
8.00493e-05
0.0117258
7.54999e-05
0.0117613
7.08954e-05
0.0117945
6.62677e-05
0.0118253
6.16221e-05
0.0118538
5.69647e-05
0.0118799
5.23123e-05
0.0119037
4.76883e-05
0.0119252
4.31156e-05
0.0119444
3.86132e-05
0.0119614
3.41963e-05
0.0119763
2.98776e-05
0.011989
2.56682e-05
0.0119997
2.15775e-05
0.0120084
1.76139e-05
0.0120151
1.3784e-05
0.01202
1.00927e-05
0.0120232
6.54378e-06
0.0120246
3.13953e-06
0.0120244
-1.19689e-07
0.0120226
-3.23158e-06
0.0120194
-6.19979e-06
0.0120148
-9.02547e-06
0.0120088
-1.17116e-05
0.0120015
-1.42618e-05
0.011993
-1.66806e-05
0.0119834
-1.89727e-05
0.0119728
-2.11433e-05
0.0119611
-2.3198e-05
0.0119484
-2.51423e-05
0.0119348
-2.69816e-05
0.0119203
-2.87212e-05
0.0119051
-3.03663e-05
0.011889
-3.19213e-05
0.0118722
-3.33903e-05
0.0118548
-3.47768e-05
0.0118366
-3.60836e-05
0.0118179
-3.73127e-05
0.0117986
-3.84655e-05
0.0117787
-3.95428e-05
0.0117584
-4.05444e-05
0.0117376
-4.14698e-05
0.0117163
-4.23178e-05
0.0116947
-4.30868e-05
0.0116727
-4.37749e-05
0.0116505
-4.43801e-05
0.0116279
-4.49001e-05
0.0116052
-4.53328e-05
0.0115822
-4.56765e-05
0.0115592
-4.59296e-05
0.011536
-4.60912e-05
0.0115129
-4.61606e-05
0.0114897
-4.61386e-05
0.0114666
-4.60257e-05
0.0114436
-4.58246e-05
0.0114208
-4.55372e-05
0.0113981
-4.51687e-05
0.0113757
-4.4722e-05
0.0113535
-4.42051e-05
0.0113316
-4.36215e-05
0.0113101
-4.29826e-05
0.0112889
-4.2291e-05
0.0112681
-4.15626e-05
0.0112477
-4.07973e-05
0.0112276
-4.00167e-05
0.011208
-3.92152e-05
0.0111888
-3.84226e-05
0.01117
-3.76237e-05
0.0111516
-3.68597e-05
0.0111336
-3.61012e-05
0.0111159
-3.54046e-05
0.0110986
-3.47217e-05
0.0110816
-3.41255e-05
0.0110649
-3.35507e-05
0.0110484
-3.30779e-05
0.0110321
-3.2644e-05
0.0110161
-3.22985e-05
0.0110001
-3.2049e-05
-3.18043e-05
0.0116429
4.22182e-05
-0.0116007
0.0116829
4.00003e-05
0.0117207
3.77276e-05
0.0117562
3.54268e-05
0.0117893
3.31197e-05
0.0118201
3.08036e-05
0.0118486
2.84797e-05
0.0118748
2.61572e-05
0.0118986
2.38489e-05
0.0119202
2.15663e-05
0.0119395
1.93188e-05
0.0119565
1.71135e-05
0.0119715
1.49569e-05
0.0119843
1.28545e-05
0.011995
1.0811e-05
0.0120038
8.8308e-06
0.0120107
6.91706e-06
0.0120157
5.0724e-06
0.012019
3.29859e-06
0.0120205
1.5968e-06
0.0120204
-3.23083e-08
0.0120188
-1.58858e-06
0.0120156
-3.07284e-06
0.0120111
-4.48612e-06
0.0120052
-5.82977e-06
0.0119981
-7.10561e-06
0.0119897
-8.31581e-06
0.0119802
-9.46275e-06
0.0119696
-1.0549e-05
0.011958
-1.15773e-05
0.0119454
-1.25504e-05
0.0119319
-1.3471e-05
0.0119175
-1.43418e-05
0.0119023
-1.51651e-05
0.0118863
-1.59433e-05
0.0118696
-1.66785e-05
0.0118522
-1.73722e-05
0.0118341
-1.80259e-05
0.0118155
-1.86407e-05
0.0117962
-1.92173e-05
0.0117764
-1.97559e-05
0.0117561
-2.02565e-05
0.0117354
-2.0719e-05
0.0117142
-2.11427e-05
0.0116927
-2.15268e-05
0.0116708
-2.18705e-05
0.0116486
-2.21726e-05
0.0116261
-2.24323e-05
0.0116034
-2.26483e-05
0.0115805
-2.28199e-05
0.0115576
-2.29462e-05
0.0115345
-2.3027e-05
0.0115114
-2.30617e-05
0.0114883
-2.3051e-05
0.0114653
-2.29948e-05
0.0114423
-2.2895e-05
0.0114196
-2.27519e-05
0.011397
-2.25687e-05
0.0113746
-2.23462e-05
0.0113525
-2.20894e-05
0.0113306
-2.17986e-05
0.0113091
-2.14812e-05
0.011288
-2.11364e-05
0.0112672
-2.07749e-05
0.0112468
-2.03929e-05
0.0112268
-2.00061e-05
0.0112072
-1.96051e-05
0.011188
-1.92136e-05
0.0111692
-1.88123e-05
0.0111507
-1.8437e-05
0.0111327
-1.80531e-05
0.011115
-1.77146e-05
0.0110976
-1.7364e-05
0.0110806
-1.7081e-05
0.0110638
-1.6777e-05
0.0110473
-1.65637e-05
0.011031
-1.6319e-05
0.0110149
-1.61816e-05
0.0109988
-1.60169e-05
-1.59305e-05
0.0116406
-0.0115983
0.0116806
0.0117183
0.0117537
0.0117868
0.0118176
0.0118461
0.0118723
0.0118961
0.0119177
0.011937
0.0119541
0.0119691
0.0119819
0.0119927
0.0120016
0.0120085
0.0120136
0.0120169
0.0120185
0.0120184
0.0120168
0.0120138
0.0120093
0.0120034
0.0119963
0.011988
0.0119786
0.011968
0.0119564
0.0119439
0.0119304
0.0119161
0.0119009
0.011885
0.0118683
0.0118509
0.0118329
0.0118142
0.011795
0.0117753
0.011755
0.0117343
0.0117132
0.0116916
0.0116698
0.0116476
0.0116252
0.0116025
0.0115797
0.0115567
0.0115337
0.0115107
0.0114876
0.0114646
0.0114417
0.011419
0.0113964
0.011374
0.011352
0.0113302
0.0113087
0.0112875
0.0112668
0.0112464
0.0112264
0.0112068
0.0111875
0.0111687
0.0111503
0.0111322
0.0111145
0.0110972
0.0110801
0.0110633
0.0110467
0.0110304
0.0110142
0.0109982
0.00559309
-0.0125664
0.00541227
-0.012547
0.00520638
-0.0124649
0.0049932
-0.012382
0.00477883
-0.0122997
0.00456512
-0.0122165
0.00435352
-0.0121378
0.00414489
-0.0120657
0.00393935
-0.012
0.00373668
-0.01194
0.00353656
-0.0118851
0.00333872
-0.0118344
0.00314296
-0.0117875
0.00294911
-0.011744
0.00275703
-0.0117037
0.00256658
-0.0116665
0.00237764
-0.0116323
0.00219007
-0.0116008
0.00200375
-0.0115721
0.00181855
-0.011546
0.00163433
-0.0115225
0.00145098
-0.0115014
0.00126836
-0.0114828
0.00108636
-0.0114666
0.000904835
-0.0114527
0.000723672
-0.0114411
0.000542741
-0.0114318
0.000361911
-0.0114247
0.000181076
-0.0114198
-0.0114173
0.00542055
-0.0123956
0.00522113
-0.0123476
0.00501225
-0.012256
0.00480159
-0.0121713
0.00459317
-0.0120912
0.00438692
-0.0120102
0.00418326
-0.0119342
0.00398289
-0.0118654
0.00378563
-0.0118027
0.00359106
-0.0117455
0.00339886
-0.0116929
0.00320882
-0.0116444
0.00302074
-0.0115994
0.00283447
-0.0115577
0.00264989
-0.0115191
0.00246687
-0.0114835
0.00228528
-0.0114507
0.002105
-0.0114205
0.00192591
-0.011393
0.00174788
-0.011368
0.00157079
-0.0113454
0.00139453
-0.0113251
0.00121898
-0.0113072
0.00104402
-0.0112916
0.000869525
-0.0112782
0.000695388
-0.0112669
0.000521488
-0.0112579
0.00034771
-0.0112509
0.000173922
-0.011246
-0.0112433
0.00521626
-0.0122061
0.00501923
-0.0121506
0.00482077
-0.0120575
0.00461931
-0.0119699
0.00441848
-0.0118904
0.00421991
-0.0118116
0.00402383
-0.0117381
0.0038308
-0.0116723
0.00364078
-0.0116127
0.00345333
-0.011558
0.00326818
-0.0115078
0.00308513
-0.0114614
0.00290402
-0.0114183
0.0027247
-0.0113784
0.00254703
-0.0113415
0.00237091
-0.0113074
0.0021962
-0.011276
0.00202278
-0.0112471
0.00185053
-0.0112207
0.00167933
-0.0111968
0.00150907
-0.0111751
0.00133963
-0.0111557
0.0011709
-0.0111385
0.00100275
-0.0111234
0.00083509
-0.0111105
0.000667793
-0.0110996
0.00050075
-0.0110908
0.000333849
-0.011084
0.000166967
-0.0110792
-0.0110764
0.00501914
-0.0120175
0.00482324
-0.0119547
0.00462706
-0.0118613
0.00443022
-0.011773
0.004235
-0.0116952
0.00404332
-0.0116199
0.00385487
-0.0115496
0.00366952
-0.011487
0.00348715
-0.0114303
0.00330733
-0.0113782
0.00312973
-0.0113302
0.00295417
-0.0112858
0.00278051
-0.0112446
0.00260861
-0.0112065
0.00243833
-0.0111712
0.00226956
-0.0111386
0.00210216
-0.0111086
0.00193603
-0.011081
0.00177105
-0.0110558
0.00160709
-0.0110328
0.00144406
-0.0110121
0.00128183
-0.0109935
0.00112029
-0.010977
0.000959342
-0.0109625
0.000798874
-0.01095
0.000638779
-0.0109395
0.000478951
-0.010931
0.000319285
-0.0109243
0.000159669
-0.0109195
-0.0109167
0.00480182
-0.0118276
0.00461051
-0.0117634
0.00442223
-0.011673
0.00423456
-0.0115854
0.00404786
-0.0115085
0.00386433
-0.0114364
0.00368406
-0.0113694
0.00350664
-0.0113096
0.00333197
-0.0112556
0.00315977
-0.011206
0.00298973
-0.0111601
0.00282169
-0.0111177
0.00265551
-0.0110785
0.00249106
-0.011042
0.0023282
-0.0110083
0.00216683
-0.0109772
0.00200682
-0.0109486
0.00184804
-0.0109222
0.0016904
-0.0108981
0.00153377
-0.0108762
0.00137804
-0.0108564
0.00122312
-0.0108386
0.00106889
-0.0108227
0.000915241
-0.0108089
0.000762081
-0.0107969
0.000609304
-0.0107868
0.000456809
-0.0107785
0.000304495
-0.010772
0.000152259
-0.0107673
-0.0107644
0.0045833
-0.0116444
0.00439912
-0.0115792
0.00421676
-0.0114907
0.00403556
-0.0114042
0.00385599
-0.0113289
0.00367995
-0.0112604
0.0035076
-0.011197
0.00333821
-0.0111402
0.00317145
-0.0110889
0.00300712
-0.0110417
0.00284493
-0.0109979
0.00268469
-0.0109575
0.00252627
-0.01092
0.00236955
-0.0108853
0.00221441
-0.0108532
0.0020607
-0.0108235
0.00190833
-0.0107962
0.00175718
-0.0107711
0.00160713
-0.0107481
0.00145808
-0.0107271
0.00130992
-0.0107082
0.00116255
-0.0106912
0.00101586
-0.010676
0.000869754
-0.0106628
0.000724138
-0.0106513
0.000578913
-0.0106415
0.000433983
-0.0106336
0.000289252
-0.0106273
0.000144625
-0.0106227
-0.0106198
0.00435688
-0.0114669
0.00417893
-0.0114013
0.00400361
-0.0113154
0.00383066
-0.0112312
0.00365986
-0.0111581
0.00349232
-0.0110928
0.00332829
-0.011033
0.00316713
-0.010979
0.00300842
-0.0109302
0.00285204
-0.0108853
0.00269776
-0.0108437
0.0025454
-0.0108051
0.00239484
-0.0107695
0.00224595
-0.0107364
0.00209861
-0.0107059
0.00195269
-0.0106776
0.00180808
-0.0106516
0.00166466
-0.0106276
0.00152233
-0.0106057
0.00138099
-0.0105858
0.00124052
-0.0105677
0.00110083
-0.0105515
0.000961829
-0.010537
0.000823409
-0.0105243
0.000685481
-0.0105133
0.000547951
-0.010504
0.00041073
-0.0104963
0.000273727
-0.0104903
0.000136849
-0.0104858
-0.010483
0.0041268
-0.0112971
0.0039566
-0.0112311
0.00378856
-0.0111473
0.00362317
-0.0110658
0.00346042
-0.0109954
0.00330101
-0.0109334
0.00314513
-0.0108771
0.00299216
-0.010826
0.00284163
-0.0107797
0.00269335
-0.010737
0.00254717
-0.0106975
0.00240289
-0.0106609
0.00226038
-0.010627
0.00211951
-0.0105956
0.00198015
-0.0105665
0.0018422
-0.0105397
0.00170553
-0.0105149
0.00157004
-0.0104922
0.00143561
-0.0104713
0.00130216
-0.0104523
0.00116957
-0.0104351
0.00103774
-0.0104197
0.0009066
-0.0104059
0.000776039
-0.0103938
0.000645973
-0.0103833
0.000516313
-0.0103744
0.000386972
-0.010367
0.000257867
-0.0103612
0.000128907
-0.0103568
-0.0103541
0.00389232
-0.0111346
0.00372926
-0.011068
0.00356859
-0.0109867
0.00341131
-0.0109086
0.00325728
-0.0108414
0.00310655
-0.0107827
0.00295912
-0.0107297
0.00281451
-0.0106814
0.00267228
-0.0106374
0.00253223
-0.010597
0.00239424
-0.0105595
0.00225813
-0.0105248
0.00212377
-0.0104926
0.00199102
-0.0104628
0.00185977
-0.0104353
0.0017299
-0.0104098
0.00160129
-0.0103863
0.00147384
-0.0103647
0.00134745
-0.0103449
0.001222
-0.0103269
0.00109742
-0.0103105
0.000973592
-0.0102958
0.000850441
-0.0102827
0.000727873
-0.0102712
0.000605803
-0.0102612
0.000484146
-0.0102527
0.00036282
-0.0102457
0.000241745
-0.0102401
0.000120835
-0.0102359
-0.0102332
0.00365434
-0.0109797
0.00349899
-0.0109127
0.00334619
-0.0108339
0.00319709
-0.0107595
0.00305154
-0.0106958
0.00290931
-0.0106405
0.00277026
-0.0105906
0.002634
-0.0105452
0.00250013
-0.0105036
0.00236842
-0.0104653
0.00223874
-0.0104298
0.00211094
-0.010397
0.00198486
-0.0103665
0.00186038
-0.0103383
0.00173737
-0.0103122
0.00161571
-0.0102881
0.00149531
-0.0102659
0.00137604
-0.0102454
0.00125781
-0.0102267
0.00114051
-0.0102096
0.00102407
-0.0101941
0.000908378
-0.0101802
0.000793356
-0.0101677
0.000678917
-0.0101568
0.000564978
-0.0101473
0.000451458
-0.0101392
0.00033828
-0.0101325
0.000225366
-0.0101272
0.000112635
-0.0101232
-0.0101206
0.00341325
-0.0108323
0.00326548
-0.0107649
0.0031206
-0.010689
0.00297987
-0.0106187
0.002843
-0.0105589
0.00270947
-0.0105069
0.00257898
-0.0104602
0.0024512
-0.0104174
0.00232579
-0.0103781
0.00220252
-0.010342
0.00208125
-0.0103085
0.00196184
-0.0102775
0.00184414
-0.0102488
0.00172801
-0.0102222
0.00161334
-0.0101976
0.0015
-0.0101748
0.0013879
-0.0101538
0.00127691
-0.0101344
0.00116696
-0.0101167
0.00105792
-0.0101006
0.00094973
-0.0100859
0.000842284
-0.0100727
0.000735503
-0.0100609
0.000629304
-0.0100506
0.000523607
-0.0100416
0.000418336
-0.0100339
0.000313416
-0.0100276
0.000208772
-0.0100225
0.000104329
-0.0100188
-0.0100163
0.00316947
-0.0106923
0.0030295
-0.0106249
0.00289286
-0.0105523
0.00276066
-0.0104865
0.00263243
-0.0104307
0.00250752
-0.010382
0.00238558
-0.0103382
0.0022663
-0.0102981
0.00214939
-0.0102612
0.00203464
-0.0102272
0.00192187
-0.0101958
0.00181094
-0.0101666
0.00170171
-0.0101396
0.00159403
-0.0101145
0.0014878
-0.0100913
0.00138288
-0.0100699
0.00127918
-0.0100501
0.00117658
-0.0100319
0.001075
-0.0100151
0.000974328
-0.0099999
0.000874488
-0.00998607
0.00077539
-0.00997361
0.000676953
-0.0099625
0.000579096
-0.00995271
0.000481745
-0.00994421
0.000384823
-0.00993699
0.00028826
-0.00993101
0.000191986
-0.00992626
9.59265e-05
-0.0099227
-0.00992034
0.0029235
-0.0105598
0.00279137
-0.0104928
0.00266308
-0.010424
0.00253946
-0.0103629
0.0024199
-0.0103111
0.00230367
-0.0102658
0.00219036
-0.0102249
0.00207967
-0.0101874
0.00197134
-0.0101529
0.00186516
-0.0101211
0.00176096
-0.0100916
0.00165859
-0.0100642
0.00155789
-0.0100389
0.00145874
-0.0100154
0.00136102
-0.00999361
0.0012646
-0.00997346
0.00116938
-0.00995485
0.00107525
-0.00993773
0.000982123
-0.00992202
0.000889902
-0.00990768
0.0007985
-0.00989467
0.000707835
-0.00988295
0.000617827
-0.0098725
0.000528398
-0.00986328
0.000439475
-0.00985529
0.000350988
-0.0098485
0.000262865
-0.00984289
0.000175041
-0.00983844
8.74458e-05
-0.00983511
-0.00983289
0.00267575
-0.0104345
0.00255158
-0.0103686
0.00243181
-0.0103043
0.00231685
-0.0102479
0.00220595
-0.0102002
0.00209837
-0.0101582
0.00199368
-0.0101202
0.0018916
-0.0100853
0.00179189
-0.0100532
0.00169433
-0.0100235
0.00159875
-0.00999599
0.00150499
-0.00997048
0.00141289
-0.0099468
0.00132234
-0.00992483
0.00123319
-0.00990446
0.00114533
-0.00988561
0.00105866
-0.00986818
0.000973077
-0.00985214
0.000888477
-0.00983742
0.000804774
-0.00982397
0.000721884
-0.00981177
0.000639724
-0.00980079
0.000558217
-0.00979099
0.000477288
-0.00978235
0.000396867
-0.00977487
0.000316883
-0.00976852
0.000237271
-0.00976328
0.000157965
-0.00975913
7.89001e-05
-0.00975604
-0.00975399
0.00242668
-0.0103167
0.00231058
-0.0102525
0.00219938
-0.0101931
0.00209306
-0.0101416
0.00199081
-0.010098
0.00189187
-0.0100593
0.00179584
-0.0100242
0.00170241
-0.00999192
0.00161136
-0.00996214
0.00152246
-0.0099346
0.00143554
-0.00990907
0.00135043
-0.00988537
0.00126699
-0.00986336
0.00118507
-0.00984291
0.00110455
-0.00982394
0.00102531
-0.00980637
0.000947239
-0.00979012
0.000870245
-0.00977515
0.000794229
-0.0097614
0.000719102
-0.00974885
0.000644779
-0.00973745
0.000571181
-0.00972719
0.000498233
-0.00971804
0.000425861
-0.00970998
0.000353996
-0.009703
0.000282571
-0.00969709
0.000211523
-0.00969223
0.000140789
-0.0096884
7.03054e-05
-0.00968556
-0.00968369
0.00217676
-0.0102063
0.0020688
-0.0101446
0.00196621
-0.0100905
0.00186853
-0.0100439
0.0017749
-0.0100044
0.00168458
-0.00996897
0.00159719
-0.00993678
0.00151243
-0.00990715
0.00143004
-0.00987975
0.00134983
-0.00985439
0.00127159
-0.00983084
0.00119517
-0.00980895
0.0011204
-0.00978859
0.00104715
-0.00976966
0.000975291
-0.00975208
0.000904705
-0.00973578
0.000835283
-0.0097207
0.000766924
-0.00970679
0.000699534
-0.00969401
0.000633024
-0.00968234
0.000567312
-0.00967174
0.00050232
-0.0096622
0.000437973
-0.00965369
0.0003742
-0.00964621
0.000310934
-0.00963974
0.00024811
-0.00963427
0.000185666
-0.00962979
0.000123541
-0.00962627
6.16761e-05
-0.0096237
-0.00962201
0.00192642
-0.0101033
0.00182665
-0.0100448
0.00173268
-0.00999652
0.00164359
-0.00995484
0.00155853
-0.0099193
0.00147681
-0.00988725
0.00139806
-0.00985803
0.00132196
-0.00983104
0.00124825
-0.00980604
0.00117672
-0.00978286
0.00110718
-0.0097613
0.00103945
-0.00974122
0.000973381
-0.00972252
0.000908823
-0.0097051
0.000845649
-0.00968891
0.000783741
-0.00967387
0.000722988
-0.00965994
0.00066329
-0.00964709
0.000604553
-0.00963527
0.000546689
-0.00962447
0.000489617
-0.00961467
0.000433258
-0.00960584
0.000377542
-0.00959798
0.000322396
-0.00959106
0.000267757
-0.0095851
0.000213559
-0.00958007
0.000159744
-0.00957597
0.000106251
-0.00957278
5.30274e-05
-0.00957047
-0.00956898
0.00167613
-0.0100079
0.00158458
-0.00995323
0.00149918
-0.00991112
0.0014186
-0.00987426
0.00134208
-0.00984278
0.00126893
-0.0098141
0.00119878
-0.00978788
0.00113132
-0.00976358
0.00106627
-0.00974099
0.00100342
-0.00972002
0.000942576
-0.00970045
0.000883546
-0.00968219
0.000826173
-0.00966514
0.000770312
-0.00964924
0.000715831
-0.00963443
0.000662609
-0.00962065
0.000610537
-0.00960787
0.000559513
-0.00959606
0.000509443
-0.0095852
0.000460239
-0.00957527
0.000411821
-0.00956625
0.000364112
-0.00955813
0.000317039
-0.0095509
0.000270535
-0.00954456
0.000224535
-0.0095391
0.000178977
-0.00953451
0.0001338
-0.00953079
8.89494e-05
-0.00952793
4.43734e-05
-0.0095259
-0.00952461
0.00142639
-0.00991996
0.00134303
-0.00986988
0.00126611
-0.0098342
0.00119396
-0.00980212
0.00112591
-0.00977473
0.00106128
-0.00974946
0.0009997
-0.0097263
0.000940843
-0.00970473
0.000884427
-0.00968457
0.000830237
-0.00966583
0.000778062
-0.00964827
0.000727713
-0.00963184
0.000679026
-0.00961646
0.000631852
-0.00960207
0.000586056
-0.00958863
0.000541517
-0.00957611
0.000498122
-0.00956448
0.000455769
-0.00955371
0.000414365
-0.0095438
0.000373821
-0.00953473
0.000334057
-0.00952649
0.000294997
-0.00951907
0.000256568
-0.00951247
0.000218705
-0.0095067
0.000181343
-0.00950174
0.000144421
-0.00949759
0.000107881
-0.00949425
7.16672e-05
-0.00949172
3.57301e-05
-0.00948996
-0.00948888
0.00117794
-0.00983992
0.00110255
-0.00979448
0.00103397
-0.00976562
0.000970139
-0.00973829
0.00091048
-0.00971507
0.000854283
-0.00969327
0.000801205
-0.00967323
0.00075089
-0.00965441
0.000703061
-0.00963674
0.000657484
-0.00962025
0.000613938
-0.00960473
0.000572235
-0.00959014
0.000532203
-0.00957643
0.000493689
-0.00956356
0.000456555
-0.0095515
0.000420677
-0.00954023
0.00038594
-0.00952974
0.000352242
-0.00952001
0.000319487
-0.00951104
0.000287587
-0.00950283
0.000256462
-0.00949536
0.000226035
-0.00948864
0.000196237
-0.00948268
0.000166999
-0.00947746
0.000138259
-0.009473
0.000109956
-0.00946929
8.20336e-05
-0.00946633
5.44386e-05
-0.00946412
2.71216e-05
-0.00946264
-0.00946176
0.000930665
-0.00976773
0.000863651
-0.00972747
0.00080329
-0.00970526
0.000747603
-0.0096826
0.000696189
-0.00966366
0.000648339
-0.00964542
0.000603673
-0.00962856
0.000561821
-0.00961256
0.000522512
-0.00959744
0.000485473
-0.00958321
0.000450494
-0.00956975
0.000417383
-0.00955702
0.000385959
-0.009545
0.000356063
-0.00953366
0.000327552
-0.00952299
0.000300298
-0.00951298
0.000274185
-0.00950363
0.000249108
-0.00949494
0.000224971
-0.00948691
0.000201686
-0.00947954
0.00017917
-0.00947284
0.000157348
-0.00946682
0.000136148
-0.00946148
0.000115506
-0.00945682
9.53571e-05
-0.00945285
7.56425e-05
-0.00944957
5.63059e-05
-0.00944699
3.72949e-05
-0.00944511
1.85581e-05
-0.0094439
-0.0094432
0.000684119
-0.00970316
0.000625397
-0.00966875
0.000573121
-0.00965298
0.000525574
-0.00963505
0.000482363
-0.00962045
0.000442852
-0.00960591
0.000406617
-0.00959232
0.000373241
-0.00957918
0.000342394
-0.00956659
0.000313865
-0.00955468
0.000287444
-0.00954333
0.000262916
-0.0095325
0.000240089
-0.00952217
0.000218798
-0.00951237
0.000198896
-0.00950309
0.000180251
-0.00949433
0.000162746
-0.00948612
0.000146273
-0.00947846
0.000130736
-0.00947137
0.000116044
-0.00946485
0.000102116
-0.00945892
8.88758e-05
-0.00945358
7.62523e-05
-0.00944885
6.41791e-05
-0.00944474
5.25942e-05
-0.00944126
4.14378e-05
-0.00943842
3.06561e-05
-0.00943621
2.01923e-05
-0.00943465
1.0001e-05
-0.00943371
-0.0094332
0.000438585
-0.00964587
0.000387664
-0.00961783
0.000343354
-0.00960867
0.000303899
-0.0095956
0.000268889
-0.00958544
0.000237684
-0.0095747
0.000209891
-0.00956453
0.000185013
-0.0095543
0.000162524
-0.0095441
0.000142498
-0.00953466
0.00012463
-0.00952546
0.000108672
-0.00951654
9.44283e-05
-0.00950793
8.17264e-05
-0.00949967
7.0416e-05
-0.00949177
6.03637e-05
-0.00948428
5.1449e-05
-0.00947721
4.35636e-05
-0.00947058
3.66088e-05
-0.00946441
3.04946e-05
-0.00945874
2.51382e-05
-0.00945356
2.04633e-05
-0.00944891
1.63991e-05
-0.00944479
1.28793e-05
-0.00944122
9.84217e-06
-0.00943822
7.22877e-06
-0.0094358
4.98037e-06
-0.00943396
3.0684e-06
-0.00943274
1.36752e-06
-0.00943201
-0.00943183
0.000193176
-0.00959463
0.000150133
-0.00957479
0.000113182
-0.00957172
8.19305e-05
-0.00956435
5.47321e-05
-0.00955824
3.16306e-05
-0.0095516
1.17256e-05
-0.00954463
-4.84319e-06
-0.00953774
-1.78668e-05
-0.00953108
-2.88176e-05
-0.0095237
-3.77563e-05
-0.00951652
-4.48843e-05
-0.00950941
-5.03658e-05
-0.00950245
-5.4355e-05
-0.00949568
-5.69918e-05
-0.00948914
-5.84039e-05
-0.00948287
-5.87067e-05
-0.0094769
-5.80061e-05
-0.00947128
-5.6398e-05
-0.00946602
-5.39709e-05
-0.00946116
-5.08058e-05
-0.00945673
-4.6978e-05
-0.00945273
-4.25573e-05
-0.00944921
-3.76088e-05
-0.00944617
-3.21936e-05
-0.00944364
-2.63705e-05
-0.00944163
-2.01907e-05
-0.00944014
-1.37112e-05
-0.00943922
-6.98106e-06
-0.00943874
-0.00943881
-5.23293e-05
-0.00955118
-8.47906e-05
-0.00954232
-0.000112878
-0.00954363
-0.000135201
-0.00954203
-0.000153428
-0.00954001
-0.000167745
-0.00953728
-0.000178655
-0.00953372
-0.000186589
-0.0095298
-0.000192094
-0.00952557
-0.000195088
-0.00952071
-0.000195956
-0.00951565
-0.000194908
-0.00951046
-0.000192147
-0.00950521
-0.000187847
-0.00949998
-0.000182164
-0.00949482
-0.000175234
-0.0094898
-0.00016718
-0.00948496
-0.000158115
-0.00948034
-0.000148138
-0.009476
-0.000137341
-0.00947196
-0.000125809
-0.00946826
-0.000113617
-0.00946493
-0.000100837
-0.00946199
-8.75359e-05
-0.00945947
-7.37759e-05
-0.0094574
-5.96154e-05
-0.00945579
-4.5107e-05
-0.00945465
-3.03133e-05
-0.00945401
-1.52599e-05
-0.0094538
-0.00945407
-0.000285295
-0.00951506
-0.000312371
-0.00951525
-0.00033274
-0.00952326
-0.000348026
-0.00952674
-0.000358582
-0.00952946
-0.000365185
-0.00953068
-0.000368217
-0.00953069
-0.000368186
-0.00952983
-0.000365547
-0.00952821
-0.00036041
-0.00952585
-0.000353086
-0.00952298
-0.000343813
-0.00951973
-0.000332798
-0.00951623
-0.000320223
-0.00951255
-0.000306249
-0.0095088
-0.000291018
-0.00950503
-0.000274659
-0.00950132
-0.000257285
-0.00949772
-0.000239001
-0.00949428
-0.0002199
-0.00949106
-0.000200068
-0.00948809
-0.000179584
-0.00948541
-0.000158521
-0.00948305
-0.000136945
-0.00948105
-0.000114921
-0.00947942
-9.25061e-05
-0.0094782
-6.97568e-05
-0.0094774
-4.67311e-05
-0.00947703
-2.34603e-05
-0.00947707
-0.00947753
-0.00051764
-0.00948677
-0.000537696
-0.00949519
-0.000550747
-0.00951021
-0.000558567
-0.00951892
-0.000561542
-0.00952648
-0.000560411
-0.00953181
-0.000555639
-0.00953546
-0.00054771
-0.00953776
-0.000537023
-0.0095389
-0.000523826
-0.00953905
-0.000508401
-0.0095384
-0.000490992
-0.00953714
-0.000471812
-0.0095354
-0.000451051
-0.00953331
-0.000428875
-0.00953097
-0.000405434
-0.00952847
-0.000380858
-0.00952589
-0.000355266
-0.00952331
-0.000328766
-0.00952078
-0.000301453
-0.00951837
-0.000273416
-0.00951613
-0.000244735
-0.00951409
-0.000215483
-0.0095123
-0.00018573
-0.0095108
-0.00015554
-0.00950961
-0.000124973
-0.00950877
-9.40849e-05
-0.00950829
-6.29324e-05
-0.00950819
-3.1554e-05
-0.00950845
-0.00950909
-0.000747183
-0.00946593
-0.000759857
-0.00948252
-0.000765786
-0.00950428
-0.000766174
-0.00951853
-0.000761689
-0.00953097
-0.000752949
-0.00954055
-0.000740488
-0.00954792
-0.000724773
-0.00955348
-0.000706194
-0.00955748
-0.000685055
-0.00956018
-0.000661638
-0.00956182
-0.000636199
-0.00956258
-0.00060896
-0.00956264
-0.000580117
-0.00956216
-0.000549845
-0.00956124
-0.000518297
-0.00956002
-0.000485609
-0.00955858
-0.000451904
-0.00955701
-0.000417293
-0.0095554
-0.000381874
-0.00955379
-0.000345738
-0.00955226
-0.000308966
-0.00955086
-0.000271636
-0.00954963
-0.000233816
-0.00954862
-0.000195572
-0.00954786
-0.000156965
-0.00954738
-0.000118053
-0.0095472
-7.88923e-05
-0.00954735
-3.95258e-05
-0.00954781
-0.00954861
-0.000973086
-0.00945224
-0.000978457
-0.00947715
-0.000977388
-0.00950535
-0.000970501
-0.00952542
-0.000958709
-0.00954276
-0.000942531
-0.00955673
-0.000922527
-0.00956792
-0.000899158
-0.00957685
-0.000872821
-0.00958381
-0.00084386
-0.00958915
-0.000812571
-0.00959311
-0.00077922
-0.00959593
-0.000744039
-0.00959782
-0.000707233
-0.00959896
-0.000668981
-0.0095995
-0.000629443
-0.00959956
-0.000588761
-0.00959926
-0.00054706
-0.00959871
-0.000504455
-0.009598
-0.000461048
-0.0095972
-0.00041693
-0.00959638
-0.000372188
-0.0095956
-0.000326898
-0.00959492
-0.000281133
-0.00959439
-0.000234958
-0.00959403
-0.000188436
-0.0095939
-0.000141627
-0.00959401
-9.45872e-05
-0.00959439
-4.73629e-05
-0.00959504
-0.00959597
-0.0011949
-0.00944545
-0.00119315
-0.0094789
-0.00118526
-0.00951324
-0.00117133
-0.00953935
-0.0011524
-0.00956168
-0.00112894
-0.00958019
-0.00110152
-0.00959535
-0.00107061
-0.00960775
-0.00103665
-0.00961778
-0.000999995
-0.0096258
-0.000960966
-0.00963214
-0.000919836
-0.00963706
-0.000876848
-0.00964081
-0.00083221
-0.0096436
-0.000786112
-0.00964559
-0.000738715
-0.00964695
-0.000690168
-0.00964781
-0.000640602
-0.00964828
-0.000590132
-0.00964847
-0.000538865
-0.00964847
-0.000486897
-0.00964835
-0.000434314
-0.00964819
-0.000381197
-0.00964804
-0.000327617
-0.00964797
-0.000273645
-0.00964801
-0.000219343
-0.0096482
-0.000164774
-0.00964858
-0.000109995
-0.00964917
-5.50546e-05
-0.00964998
-0.00965103
-0.00141229
-0.0094453
-0.00140372
-0.00948747
-0.00138921
-0.00952775
-0.00136843
-0.00956013
-0.00134248
-0.00958764
-0.00131182
-0.00961084
-0.00127709
-0.00963009
-0.00123878
-0.00964606
-0.00119735
-0.00965921
-0.00115316
-0.00966998
-0.00110656
-0.00967874
-0.00105782
-0.00968581
-0.00100718
-0.00969145
-0.000954865
-0.00969591
-0.000901069
-0.00969939
-0.000845962
-0.00970206
-0.000789695
-0.00970408
-0.000732404
-0.00970557
-0.000674211
-0.00970666
-0.000615225
-0.00970745
-0.000555546
-0.00970803
-0.000495263
-0.00970847
-0.000434459
-0.00970885
-0.000373209
-0.00970922
-0.000311583
-0.00970963
-0.000249647
-0.00971013
-0.000187465
-0.00971076
-0.000125097
-0.00971154
-6.25905e-05
-0.00971248
-0.00971362
-0.00162507
-0.00945145
-0.00160993
-0.00950262
-0.00158887
-0.00954881
-0.00156128
-0.00958772
-0.00152835
-0.00962057
-0.00149063
-0.00964855
-0.00144877
-0.00967195
-0.00140329
-0.00969154
-0.00135461
-0.00970789
-0.00130312
-0.00972147
-0.00124915
-0.00973271
-0.00119298
-0.00974197
-0.00113487
-0.00974956
-0.00107505
-0.00975573
-0.00101372
-0.00976072
-0.000951061
-0.00976472
-0.000887226
-0.00976791
-0.000822361
-0.00977044
-0.000756594
-0.00977243
-0.000690038
-0.00977401
-0.000622796
-0.00977527
-0.000554962
-0.0097763
-0.000486621
-0.00977719
-0.000417851
-0.00977799
-0.000348725
-0.00977876
-0.00027931
-0.00977955
-0.000209672
-0.0097804
-0.000139872
-0.00978134
-6.99615e-05
-0.00978239
-0.00978358
-0.00183285
-0.00946355
-0.00181115
-0.00952432
-0.00178344
-0.00957651
-0.00174915
-0.00962202
-0.00170949
-0.00966023
-0.00166507
-0.00969298
-0.00161644
-0.00972057
-0.00156409
-0.00974389
-0.00150845
-0.00976353
-0.00144988
-0.00978003
-0.00138873
-0.00979386
-0.00132532
-0.00980539
-0.0012599
-0.00981497
-0.00119273
-0.00982291
-0.00112401
-0.00982944
-0.00105394
-0.00983479
-0.000982688
-0.00983917
-0.000910397
-0.00984273
-0.000837203
-0.00984562
-0.000763227
-0.00984798
-0.000688575
-0.00984992
-0.000613345
-0.00985153
-0.000537624
-0.00985291
-0.000461493
-0.00985412
-0.000385027
-0.00985522
-0.000308296
-0.00985628
-0.000231367
-0.00985733
-0.000154303
-0.0098584
-7.71588e-05
-0.00985954
-0.00986074
-0.00203493
-0.00948145
-0.00200671
-0.00955254
-0.00197261
-0.00961061
-0.0019322
-0.00966242
-0.00188643
-0.009706
-0.00183578
-0.00974362
-0.00178072
-0.00977564
-0.00172173
-0.00980289
-0.00165925
-0.00982601
-0.00159372
-0.00984557
-0.0015255
-0.00986207
-0.00145494
-0.00987596
-0.00138231
-0.0098876
-0.0013079
-0.00989732
-0.00123191
-0.00990542
-0.00115456
-0.00991215
-0.00107602
-0.00991771
-0.000996441
-0.00992231
-0.000915967
-0.0099261
-0.000834722
-0.00992923
-0.000752815
-0.00993183
-0.000670347
-0.009934
-0.000587408
-0.00993585
-0.000504083
-0.00993744
-0.000420446
-0.00993886
-0.00033657
-0.00994016
-0.000252525
-0.00994137
-0.000168373
-0.00994255
-8.41739e-05
-0.00994374
-0.00994491
-0.00223114
-0.00950486
-0.00219735
-0.00958633
-0.00215789
-0.00965007
-0.0021122
-0.00970811
-0.00206071
-0.00975749
-0.00200393
-0.00980041
-0.00194237
-0.0098372
-0.00187662
-0.00986863
-0.00180724
-0.00989539
-0.0017347
-0.00991811
-0.00165941
-0.00993737
-0.00158173
-0.00995364
-0.00150197
-0.00996735
-0.0014204
-0.00997889
-0.00133727
-0.00998856
-0.00125276
-0.00999665
-0.00116707
-0.0100034
-0.00108036
-0.010009
-0.000992765
-0.0100137
-0.000904414
-0.0100176
-0.00081542
-0.0100208
-0.000725886
-0.0100235
-0.000635905
-0.0100258
-0.000545561
-0.0100278
-0.000454933
-0.0100295
-0.000364095
-0.010031
-0.000273117
-0.0100324
-0.000182064
-0.0100336
-9.09988e-05
-0.0100348
-0.0100359
-0.00242276
-0.00953275
-0.00238508
-0.00962401
-0.00234078
-0.00969437
-0.00228952
-0.00975937
-0.00223175
-0.00981526
-0.00216832
-0.00986384
-0.00209996
-0.00990556
-0.00202734
-0.00994124
-0.00195106
-0.00997167
-0.00187161
-0.00999756
-0.00178941
-0.0100196
-0.00170481
-0.0100382
-0.00161813
-0.010054
-0.00152963
-0.0100674
-0.00143956
-0.0100786
-0.00134813
-0.0100881
-0.00125552
-0.010096
-0.00116188
-0.0101027
-0.00106737
-0.0101082
-0.000972124
-0.0101128
-0.000876246
-0.0101167
-0.000779846
-0.0101199
-0.00068302
-0.0101227
-0.000585856
-0.010125
-0.000488433
-0.0101269
-0.000390828
-0.0101286
-0.000293114
-0.0101301
-0.000195356
-0.0101314
-9.76244e-05
-0.0101325
-0.0101335
-0.00260943
-0.00956455
-0.00256698
-0.00966646
-0.00251605
-0.00974531
-0.00245791
-0.00981751
-0.00239345
-0.00987971
-0.0023236
-0.00993369
-0.00224898
-0.00998018
-0.00217019
-0.01002
-0.00208774
-0.0100541
-0.00200208
-0.0100832
-0.00191361
-0.010108
-0.00182268
-0.0101292
-0.0017296
-0.0101471
-0.00163465
-0.0101623
-0.00153808
-0.0101752
-0.00144009
-0.0101861
-0.0013409
-0.0101952
-0.00124065
-0.0102029
-0.00113952
-0.0102093
-0.00103764
-0.0102147
-0.00093513
-0.0102192
-0.000832102
-0.010223
-0.000728659
-0.0102261
-0.000624893
-0.0102287
-0.000520891
-0.0102309
-0.00041673
-0.0102328
-0.000312488
-0.0102343
-0.000208233
-0.0102356
-0.000104043
-0.0102367
-0.0102376
-0.00278423
-0.00960436
-0.00273328
-0.00971741
-0.00267472
-0.00980387
-0.00261054
-0.00988168
-0.002541
-0.00994925
-0.00246646
-0.0100082
-0.00238722
-0.0100594
-0.00230367
-0.0101036
-0.00221625
-0.0101415
-0.0021254
-0.0101741
-0.00203153
-0.0102019
-0.001935
-0.0102257
-0.00183616
-0.010246
-0.00173529
-0.0102632
-0.00163268
-0.0102778
-0.00152856
-0.0102902
-0.00142314
-0.0103006
-0.00131662
-0.0103094
-0.00120916
-0.0103168
-0.00110092
-0.010323
-0.000992035
-0.0103281
-0.000882621
-0.0103324
-0.000772793
-0.0103359
-0.00066265
-0.0103389
-0.000552286
-0.0103413
-0.000441786
-0.0103433
-0.000331228
-0.0103449
-0.000220687
-0.0103462
-0.000110249
-0.0103472
-0.0103478
-0.00294579
-0.00965823
-0.0028878
-0.00977541
-0.0028248
-0.00986686
-0.0027571
-0.00994938
-0.00268416
-0.0100222
-0.00260597
-0.0100864
-0.00252268
-0.0101427
-0.00243467
-0.0101916
-0.00234242
-0.0102338
-0.00224643
-0.0102701
-0.00214716
-0.0103012
-0.00204503
-0.0103278
-0.00194042
-0.0103506
-0.00183365
-0.01037
-0.00172503
-0.0103864
-0.00161481
-0.0104004
-0.00150324
-0.0104122
-0.00139053
-0.0104221
-0.00127685
-0.0104305
-0.00116237
-0.0104374
-0.00104724
-0.0104432
-0.000931598
-0.010448
-0.00081555
-0.010452
-0.000699208
-0.0104552
-0.000582669
-0.0104578
-0.000466022
-0.0104599
-0.000349351
-0.0104615
-0.000232731
-0.0104628
-0.000116248
-0.0104636
-0.0104641
-0.00308564
-0.00973204
-0.00302878
-0.00983227
-0.00296503
-0.00993061
-0.00289418
-0.0100202
-0.00281684
-0.0100995
-0.00273358
-0.0101697
-0.00264486
-0.0102314
-0.00255124
-0.0102852
-0.00245334
-0.0103317
-0.0023517
-0.0103717
-0.00224682
-0.0104061
-0.00213912
-0.0104355
-0.00202898
-0.0104607
-0.00191673
-0.0104822
-0.00180266
-0.0105005
-0.00168705
-0.010516
-0.00157012
-0.0105291
-0.00145207
-0.0105402
-0.0013331
-0.0105494
-0.00121336
-0.0105572
-0.001093
-0.0105636
-0.000972149
-0.0105689
-0.000850928
-0.0105732
-0.000729442
-0.0105767
-0.000607789
-0.0105795
-0.000486059
-0.0105816
-0.000364335
-0.0105833
-0.000242693
-0.0105844
-0.000121202
-0.0105851
-0.0105853
0.00348503
-0.0095359
-0.00368116
0.00329995
-0.00964719
0.00312302
-0.00975368
0.00295639
-0.00985361
0.00280025
-0.0099434
0.00265183
-0.0100213
0.00250819
-0.0100878
0.00236821
-0.0101452
0.0022317
-0.0101952
0.0020987
-0.0102387
0.00196925
-0.0102766
0.00184332
-0.0103096
0.00172085
-0.0103382
0.00160172
-0.0103631
0.0014858
-0.0103846
0.00137292
-0.0104031
0.00126291
-0.0104191
0.00115556
-0.0104328
0.00105066
-0.0104445
0.000948019
-0.0104545
0.000847413
-0.010463
0.000748637
-0.0104701
0.000651482
-0.010476
0.000555744
-0.010481
0.000461218
-0.0104849
0.000367709
-0.0104881
0.000275019
-0.0104906
0.000182953
-0.0104924
9.13499e-05
-0.0104935
-0.0104939
0.00248448
-0.00946787
-0.00255251
0.00243146
-0.00959416
0.00237652
-0.00969875
0.00230947
-0.00978656
0.00223036
-0.00986429
0.00214285
-0.00993375
0.00205067
-0.0099956
0.00195592
-0.0100505
0.00185984
-0.0100991
0.00176326
-0.0101421
0.00166675
-0.0101801
0.00157072
-0.0102136
0.00147543
-0.010243
0.00138107
-0.0102687
0.00128775
-0.0102913
0.00119553
-0.0103109
0.00110444
-0.010328
0.00101449
-0.0103429
0.000925636
-0.0103557
0.000837841
-0.0103667
0.000751043
-0.0103762
0.000665166
-0.0103842
0.000580126
-0.010391
0.000495829
-0.0103967
0.000412176
-0.0104013
0.000329065
-0.010405
0.000246383
-0.0104079
0.000164018
-0.01041
8.18351e-05
-0.0104113
-0.0104121
0.00232774
-0.00948902
-0.0023066
0.00230025
-0.00956666
0.00224768
-0.00964618
0.0021827
-0.00972157
0.00210995
-0.00979154
0.00203184
-0.00985565
0.00194996
-0.00991372
0.00186539
-0.0099659
0.00177887
-0.0100126
0.00169099
-0.0100542
0.00160226
-0.0100914
0.00151312
-0.0101244
0.00142392
-0.0101538
0.00133495
-0.0101798
0.00124643
-0.0102027
0.00115852
-0.010223
0.00107133
-0.0102408
0.000984913
-0.0102565
0.000899309
-0.0102701
0.000814514
-0.0102819
0.000730508
-0.0102922
0.000647253
-0.010301
0.000564695
-0.0103084
0.000482772
-0.0103147
0.000401411
-0.0103199
0.000320534
-0.0103241
0.000240057
-0.0103274
0.000159894
-0.0103298
7.9965e-05
-0.0103314
-0.0103321
0.00168834
-0.00949763
-0.00167973
0.00169037
-0.0095687
0.00168308
-0.00963889
0.00166622
-0.00970472
0.00163973
-0.00976505
0.00160408
-0.00981999
0.00156044
-0.00987008
0.00151028
-0.00991574
0.00145494
-0.00995724
0.00139556
-0.00999486
0.00133303
-0.0100289
0.00126808
-0.0100595
0.00120127
-0.0100869
0.00113305
-0.0101115
0.00106378
-0.0101335
0.000993739
-0.010153
0.000923158
-0.0101703
0.000852218
-0.0101855
0.00078106
-0.0101989
0.000709792
-0.0102107
0.000638497
-0.0102209
0.000567231
-0.0102297
0.000496032
-0.0102372
0.000424921
-0.0102436
0.000353906
-0.0102489
0.000282983
-0.0102532
0.000212139
-0.0102566
0.000141356
-0.010259
7.06016e-05
-0.0102607
-0.0102615
0.00154868
-0.00953949
-0.00150682
0.00156983
-0.00958986
0.00157195
-0.009641
0.00155874
-0.00969151
0.00153394
-0.00974025
0.00150046
-0.00978651
0.00146021
-0.00982983
0.00141451
-0.00987004
0.00136435
-0.00990708
0.0013105
-0.00994101
0.0012536
-0.00997195
0.0011942
-0.0100001
0.00113277
-0.0100255
0.00106973
-0.0100485
0.00100542
-0.0100692
0.000940129
-0.0100877
0.000874109
-0.0101042
0.000807553
-0.010119
0.000740621
-0.010132
0.000673437
-0.0101435
0.000606099
-0.0101535
0.00053868
-0.0101623
0.000471235
-0.0101698
0.0004038
-0.0101762
0.0003364
-0.0101815
0.00026905
-0.0101859
0.000201753
-0.0101893
0.000134506
-0.0101918
6.73064e-05
-0.0101935
-0.0101942
0.00115147
-0.0095656
-0.00112535
0.0011701
-0.00960849
0.00118172
-0.00965263
0.00118615
-0.00969594
0.00118318
-0.00973728
0.00117283
-0.00977616
0.00115552
-0.00981252
0.00113187
-0.00984639
0.00110262
-0.00987783
0.00106853
-0.00990692
0.00103031
-0.00993373
0.000988583
-0.00995834
0.00094389
-0.00998083
0.000896694
-0.0100013
0.000847388
-0.0100199
0.000796309
-0.0100366
0.000743744
-0.0100517
0.00068994
-0.0100652
0.000635106
-0.0100772
0.00057942
-0.0100878
0.000523036
-0.0100972
0.000466081
-0.0101053
0.000408663
-0.0101124
0.000350874
-0.0101184
0.00029279
-0.0101234
0.000234475
-0.0101275
0.000175984
-0.0101308
0.000117365
-0.0101332
5.8655e-05
-0.0101348
-0.0101356
0.00104745
-0.00960554
-0.00100752
0.00107632
-0.00963736
0.00109371
-0.00967001
0.00110031
-0.00970254
0.00109756
-0.00973453
0.001087
-0.0097656
0.0010699
-0.00979542
0.00104727
-0.00982376
0.0010199
-0.00985046
0.000988425
-0.00987545
0.000953365
-0.00989867
0.000915187
-0.00992016
0.000874301
-0.00993994
0.000831078
-0.00995807
0.000785846
-0.00997462
0.0007389
-0.00998966
0.000690498
-0.0100033
0.000640868
-0.0100155
0.000590205
-0.0100265
0.00053868
-0.0100363
0.00048644
-0.0100449
0.000433611
-0.0100525
0.0003803
-0.0100591
0.000326602
-0.0100647
0.000272596
-0.0100694
0.000218352
-0.0100733
0.000163929
-0.0100764
0.00010938
-0.0100786
5.47568e-05
-0.0100801
-0.0100808
0.000792428
-0.00963269
-0.000765285
0.000813777
-0.00965871
0.000829842
-0.00968608
0.00084082
-0.00971352
0.000846592
-0.0097403
0.000847062
-0.00976607
0.000842287
-0.00979065
0.000832488
-0.00981396
0.000817998
-0.00983597
0.000799221
-0.00985667
0.00077658
-0.00987603
0.000750495
-0.00989407
0.000721357
-0.0099108
0.000689526
-0.00992624
0.000655327
-0.00994042
0.00061905
-0.00995338
0.000580958
-0.00996518
0.000541283
-0.00997585
0.000500235
-0.00998545
0.000458
-0.00999404
0.000414746
-0.0100017
0.000370622
-0.0100084
0.000325761
-0.0100142
0.000280284
-0.0100192
0.000234298
-0.0100234
0.000187901
-0.0100269
0.000141183
-0.0100296
9.42302e-05
-0.0100317
4.71167e-05
-0.010033
-0.0100337
0.000716532
-0.00966524
-0.00068398
0.000742611
-0.00968479
0.000761609
-0.00970507
0.000773546
-0.00972545
0.000778926
-0.00974568
0.000778445
-0.00976559
0.000772789
-0.00978499
0.000762561
-0.00980373
0.000748271
-0.00982169
0.000730351
-0.00983875
0.000709171
-0.00985485
0.000685059
-0.00986996
0.000658316
-0.00988406
0.000629219
-0.00989714
0.000598024
-0.00990923
0.000564969
-0.00992033
0.000530273
-0.00993048
0.000494134
-0.00993971
0.000456735
-0.00994806
0.000418242
-0.00995555
0.000378802
-0.00996223
0.000338553
-0.00996812
0.000297615
-0.00997327
0.000256101
-0.00997771
0.000214111
-0.00998145
0.000171739
-0.00998453
0.00012907
-0.00998697
8.61844e-05
-0.00998879
4.31609e-05
-0.00999
-0.00999053
0.00054771
-0.00968818
-0.00052477
0.000566648
-0.00970372
0.000581823
-0.00972025
0.000593389
-0.00973702
0.000601325
-0.00975362
0.000605557
-0.00976982
0.000606061
-0.00978549
0.000602886
-0.00980056
0.00059616
-0.00981496
0.000586068
-0.00982866
0.000572838
-0.00984162
0.000556714
-0.00985384
0.000537943
-0.00986529
0.000516768
-0.00987597
0.000493421
-0.00988588
0.000468119
-0.00989503
0.000441065
-0.00990343
0.000412449
-0.00991109
0.000382444
-0.00991805
0.000351215
-0.00992432
0.000318911
-0.00992992
0.000285671
-0.00993488
0.000251624
-0.00993923
0.000216891
-0.00994297
0.000181583
-0.00994614
0.000145807
-0.00994876
0.00010966
-0.00995083
7.32409e-05
-0.00995237
3.66372e-05
-0.00995339
-0.00995389
0.000491557
-0.00971287
-0.000466866
0.000512287
-0.00972445
0.000528567
-0.00973653
0.000540278
-0.00974873
0.000547578
-0.00976092
0.000550765
-0.00977301
0.000550177
-0.0097849
0.000546143
-0.00979652
0.000538964
-0.00980778
0.000528908
-0.0098186
0.000516214
-0.00982893
0.000501099
-0.00983872
0.000483762
-0.00984795
0.000464395
-0.0098566
0.000443177
-0.00986466
0.000420282
-0.00987213
0.000395873
-0.00987902
0.000370104
-0.00988533
0.000343122
-0.00989107
0.000315065
-0.00989626
0.00028606
-0.00990092
0.000256228
-0.00990505
0.000225682
-0.00990868
0.000194527
-0.00991182
0.000162862
-0.00991448
0.000130783
-0.00991668
9.83777e-05
-0.00991842
6.5731e-05
-0.00991972
3.29284e-05
-0.00992059
-0.00992097
0.000376271
-0.00973057
-0.000358566
0.000391294
-0.00973948
0.000403737
-0.00974897
0.000413674
-0.00975867
0.000421101
-0.00976835
0.000425975
-0.00977788
0.000428263
-0.00978719
0.000427962
-0.00979622
0.000425111
-0.00980493
0.000419788
-0.00981328
0.000412105
-0.00982125
0.000402193
-0.00982881
0.000390199
-0.00983596
0.000376275
-0.00984268
0.000360572
-0.00984896
0.000343239
-0.0098548
0.00032442
-0.0098602
0.000304255
-0.00986516
0.000282876
-0.00986969
0.000260411
-0.0098738
0.000236979
-0.00987748
0.000212695
-0.00988077
0.00018767
-0.00988365
0.000162006
-0.00988615
0.000135804
-0.00988828
0.000109158
-0.00989003
8.21625e-05
-0.00989143
5.49062e-05
-0.00989247
2.74746e-05
-0.00989316
-0.00989349
0.000333328
-0.00974842
-0.00031548
0.000348693
-0.00975484
0.000361234
-0.00976151
0.000370832
-0.00976827
0.000377525
-0.00977504
0.000381434
-0.00978179
0.000382715
-0.00978847
0.000381542
-0.00979505
0.000378085
-0.00980147
0.000372502
-0.00980769
0.00036494
-0.00981368
0.000355535
-0.00981941
0.000344417
-0.00982484
0.000331709
-0.00982997
0.000317533
-0.00983478
0.000302005
-0.00983927
0.000285239
-0.00984343
0.000267346
-0.00984727
0.000248434
-0.00985078
0.000228606
-0.00985397
0.000207962
-0.00985684
0.000186597
-0.0098594
0.000164603
-0.00986166
0.000142068
-0.00986362
0.000119077
-0.00986529
9.57095e-05
-0.00986667
7.20459e-05
-0.00986776
4.81615e-05
-0.00986858
2.41331e-05
-0.00986913
-0.00986936
0.00025186
-0.00976122
-0.000239061
0.000262887
-0.00976587
0.000272193
-0.00977082
0.000279814
-0.00977589
0.000285746
-0.00978097
0.000289964
-0.00978601
0.000292442
-0.00979095
0.000293167
-0.00979578
0.000292145
-0.00980045
0.000289405
-0.00980496
0.000284999
-0.00980928
0.000278995
-0.0098134
0.000271475
-0.00981732
0.000262528
-0.00982102
0.000252248
-0.0098245
0.000240731
-0.00982775
0.000228073
-0.00983078
0.000214369
-0.00983356
0.000199713
-0.00983612
0.000184196
-0.00983845
0.000167905
-0.00984055
0.000150928
-0.00984243
0.000133348
-0.00984408
0.000115246
-0.00984552
9.6701e-05
-0.00984674
7.77897e-05
-0.00984775
5.85875e-05
-0.00984856
3.91686e-05
-0.00984916
1.9604e-05
-0.00984956
-0.00984975
0.000217504
-0.00977339
-0.000205334
0.000228132
-0.0097765
0.000236992
-0.00977968
0.000243999
-0.0097829
0.000249154
-0.00978613
0.000252502
-0.00978935
0.000254116
-0.00979257
0.000254084
-0.00979574
0.000252497
-0.00979886
0.000249449
-0.00980191
0.000245025
-0.00980485
0.00023931
-0.00980769
0.000232382
-0.00981039
0.00022432
-0.00981296
0.000215199
-0.00981538
0.000205096
-0.00981765
0.000194084
-0.00981976
0.000182238
-0.00982172
0.000169629
-0.00982351
0.000156331
-0.00982515
0.000142413
-0.00982663
0.000127942
-0.00982796
0.000112988
-0.00982913
9.76134e-05
-0.00983014
8.18831e-05
-0.00983101
6.5859e-05
-0.00983173
4.96015e-05
-0.0098323
3.31699e-05
-0.00983273
1.66241e-05
-0.00983302
-0.00983313
0.000157447
-0.0097818
-0.000149037
0.000164747
-0.0097838
0.00017098
-0.00978591
0.000176163
-0.00978808
0.000180291
-0.00979025
0.00018335
-0.00979241
0.000185323
-0.00979454
0.000186195
-0.00979662
0.000185964
-0.00979863
0.000184636
-0.00980058
0.000182232
-0.00980245
0.000178785
-0.00980424
0.000174337
-0.00980594
0.000168938
-0.00980756
0.00016264
-0.00980908
0.000155501
-0.00981051
0.000147581
-0.00981184
0.000138938
-0.00981308
0.000129633
-0.00981421
0.000119724
-0.00981524
0.000109271
-0.00981618
9.83325e-05
-0.00981702
8.69643e-05
-0.00981776
7.52229e-05
-0.0098184
6.31635e-05
-0.00981895
5.08404e-05
-0.00981941
3.83072e-05
-0.00981977
2.56173e-05
-0.00982004
1.28218e-05
-0.00982022
-0.00982031
0.000128102
-0.00978923
-0.000120676
0.000134621
-0.00979032
0.000140109
-0.0097914
0.000144523
-0.00979249
0.000147859
-0.00979359
0.000150133
-0.00979469
0.000151375
-0.00979578
0.000151627
-0.00979687
0.000150939
-0.00979794
0.000149359
-0.009799
0.000146937
-0.00980003
0.000143721
-0.00980102
0.000139756
-0.00980198
0.000135087
-0.00980289
0.00012976
-0.00980376
0.000123817
-0.00980457
0.000117302
-0.00980533
0.00011026
-0.00980603
0.000102734
-0.00980668
9.47671e-05
-0.00980728
8.64024e-05
-0.00980781
7.76824e-05
-0.0098083
6.86488e-05
-0.00980872
5.93428e-05
-0.0098091
4.98049e-05
-0.00980941
4.0075e-05
-0.00980968
3.01924e-05
-0.00980989
2.01952e-05
-0.00981005
1.01228e-05
-0.00981015
-0.00981019
8.10828e-05
-0.00979363
-7.66793e-05
8.49467e-05
-0.00979418
8.82912e-05
-0.00979474
9.11119e-05
-0.00979531
9.34014e-05
-0.00979588
9.51492e-05
-0.00979643
9.63433e-05
-0.00979698
9.69727e-05
-0.0097975
9.703e-05
-0.009798
9.65137e-05
-0.00979848
9.54292e-05
-0.00979894
9.37885e-05
-0.00979938
9.16095e-05
-0.0097998
8.89146e-05
-0.0098002
8.57299e-05
-0.00980057
8.20838e-05
-0.00980092
7.80062e-05
-0.00980125
7.35281e-05
-0.00980155
6.86811e-05
-0.00980184
6.34968e-05
-0.00980209
5.80071e-05
-0.00980232
5.22435e-05
-0.00980253
4.62374e-05
-0.00980272
4.00199e-05
-0.00980288
3.36217e-05
-0.00980301
2.70734e-05
-0.00980313
2.04053e-05
-0.00980322
1.36477e-05
-0.00980329
6.8299e-06
-0.00980333
-0.00980336
5.37673e-05
-0.00979695
-5.0448e-05
5.66953e-05
-0.00979711
5.91628e-05
-0.00979721
6.11428e-05
-0.00979729
6.26322e-05
-0.00979737
6.36416e-05
-0.00979744
6.41891e-05
-0.00979752
6.42979e-05
-0.00979761
6.39942e-05
-0.0097977
6.33046e-05
-0.00979779
6.22545e-05
-0.00979789
6.08678e-05
-0.009798
5.91664e-05
-0.0097981
5.71708e-05
-0.0097982
5.49003e-05
-0.0097983
5.23736e-05
-0.0097984
4.96089e-05
-0.00979849
4.66242e-05
-0.00979857
4.34373e-05
-0.00979865
4.0066e-05
-0.00979872
3.6528e-05
-0.00979879
3.28407e-05
-0.00979885
2.90215e-05
-0.0097989
2.50876e-05
-0.00979894
2.1056e-05
-0.00979898
1.69434e-05
-0.00979902
1.27663e-05
-0.00979904
8.54071e-06
-0.00979906
4.28319e-06
-0.00979908
-0.00979907
1.38951e-05
-1.30449e-05
1.45873e-05
1.5176e-05
1.56828e-05
1.61137e-05
1.6469e-05
1.67458e-05
1.69389e-05
1.70418e-05
1.70486e-05
1.69549e-05
1.67582e-05
1.6458e-05
1.60558e-05
1.55544e-05
1.49579e-05
1.42715e-05
1.35007e-05
1.26515e-05
1.17302e-05
1.07434e-05
9.69738e-06
8.59886e-06
7.45438e-06
6.27051e-06
5.05381e-06
3.81086e-06
2.54834e-06
1.27272e-06
-0.00359084
-0.00345969
-0.00376512
-0.00237824
-0.00392273
-0.00214899
-0.00406493
-0.00153752
-0.00419129
-0.00138046
-0.00430554
-0.0010111
-0.00440887
-0.000904188
-0.00450341
-0.000670744
-0.00459075
-0.000596634
-0.00467192
-0.000443609
-0.00474829
-0.000390489
-0.00482032
-0.000286543
-0.00488905
-0.00024675
-0.00495463
-0.000173472
-0.00501782
-0.000142148
-0.00507863
-8.82321e-05
-0.00513754
-6.1764e-05
-0.00519448
-1.97365e-05
-0.00524976
4.8304e-06
4.04969e-05
-0.00373387
-0.00324304
-0.00390168
-0.00221043
-0.00405538
-0.00199529
-0.00418877
-0.00140413
-0.00430788
-0.00126135
-0.00441386
-0.000905118
-0.00450953
-0.000808521
-0.00459623
-0.000584041
-0.00467591
-0.000516956
-0.00474937
-0.000370141
-0.00481806
-0.000321799
-0.00488241
-0.000222201
-0.00494341
-0.000185743
-0.00500129
-0.000115591
-0.00505673
-8.67106e-05
-0.00510978
-3.51873e-05
-0.00516087
-1.06668e-05
-0.00521007
2.94579e-05
-0.00525757
5.23339e-05
8.6226e-05
-0.00387753
-0.00303295
-0.00403761
-0.00205035
-0.0041862
-0.00184669
-0.00431105
-0.00127928
-0.00442301
-0.0011494
-0.00452066
-0.000807468
-0.00460869
-0.000720487
-0.00468734
-0.000505395
-0.00475936
-0.000444934
-0.00482498
-0.000304516
-0.00488607
-0.000260715
-0.00494271
-0.000165556
-0.00499617
-0.000132291
-0.00504646
-6.53008e-05
-0.00509435
-3.88158e-05
-0.00513976
1.02241e-05
-0.00518346
3.30274e-05
-0.00522508
7.10813e-05
-0.00526507
9.23284e-05
0.000124452
-0.0040156
-0.00282691
-0.00416827
-0.00189768
-0.00431152
-0.00170345
-0.00442793
-0.00116287
-0.00453305
-0.00104428
-0.0046226
-0.000717915
-0.00470339
-0.000639693
-0.00477429
-0.000434494
-0.00483904
-0.000380191
-0.00489715
-0.000246404
-0.00495099
-0.000206877
-0.00500027
-0.000116269
-0.00504653
-8.60327e-05
-0.00508956
-2.22713e-05
-0.00513011
1.7318e-06
-0.0051685
4.86177e-05
-0.00520497
6.94933e-05
-0.00523939
0.000105504
-0.00527223
0.000125171
0.000155519
-0.00414656
-0.00262578
-0.00429264
-0.0017516
-0.00443051
-0.00156558
-0.00453895
-0.00105443
-0.00463758
-0.000945651
-0.0047194
-0.000636091
-0.00479336
-0.000565737
-0.00485688
-0.000370974
-0.00491473
-0.000322336
-0.00496569
-0.000195443
-0.00501265
-0.000159915
-0.00505495
-7.39716e-05
-0.00509434
-4.66484e-05
-0.00513031
1.36994e-05
-0.0051644
3.58245e-05
-0.00519574
7.99568e-05
-0.00522539
9.91464e-05
-0.00525298
0.000133094
-0.00527904
0.000151225
0.000179785
-0.00427023
-0.00242915
-0.0044104
-0.00161143
-0.00454289
-0.00143309
-0.0046439
-0.000953426
-0.00473639
-0.000853154
-0.00481091
-0.000561572
-0.00487844
-0.000498209
-0.00493496
-0.000314454
-0.00498633
-0.000270971
-0.00503051
-0.000151256
-0.00507099
-0.000119434
-0.00510668
-3.82832e-05
-0.00513945
-1.38815e-05
-0.00516911
4.33636e-05
-0.00519662
6.33319e-05
-0.00522151
0.000104844
-0.0052447
0.000122343
-0.00526583
0.000154219
-0.00528547
0.000170863
0.000197619
-0.00438629
-0.00223684
-0.00452122
-0.00147651
-0.00464839
-0.00130591
-0.00474257
-0.000859247
-0.00482926
-0.000766458
-0.00489695
-0.000493886
-0.00495846
-0.0004367
-0.0050084
-0.000264516
-0.00505368
-0.000225686
-0.00509149
-0.000113443
-0.00512591
-8.50179e-05
-0.00515518
-9.01025e-06
-0.00518209
1.30237e-05
-0.00520552
6.67951e-05
-0.00522697
8.47847e-05
-0.00524573
0.0001236
-0.00526287
0.000139488
-0.00527792
0.00016926
-0.00529152
0.000184465
0.000209402
-0.0044946
-0.00204857
-0.00462483
-0.00134628
-0.00474682
-0.00118392
-0.00483479
-0.000771276
-0.00491601
-0.00068524
-0.00497737
-0.000432526
-0.00503326
-0.000380808
-0.00507706
-0.000220721
-0.00511667
-0.000186074
-0.00514852
-8.1587e-05
-0.0051771
-5.64443e-05
-0.00520071
1.46057e-05
-0.00522201
3.43241e-05
-0.00523961
8.43878e-05
-0.00525536
0.000100542
-0.00526839
0.000136624
-0.00527987
0.000150971
-0.00528922
0.000178609
-0.00529718
0.000192422
0.000215525
-0.00459499
-0.00186404
-0.00472103
-0.00122025
-0.00483805
-0.0010669
-0.00492043
-0.000688896
-0.0049965
-0.000609171
-0.00505206
-0.000376964
-0.00510273
-0.00033014
-0.00514084
-0.000182609
-0.00517519
-0.000151724
-0.00520149
-5.52876e-05
-0.00522475
-3.31829e-05
-0.00524303
3.28837e-05
-0.00525907
5.03653e-05
-0.00527129
9.66031e-05
-0.00528176
0.000111012
-0.00528945
0.000144316
-0.00529567
0.000157193
-0.00529973
0.000182667
-0.00530244
0.000195134
0.000216386
-0.00468734
-0.00168297
-0.00480962
-0.00109797
-0.00492195
-0.000954564
-0.00499934
-0.000611512
-0.0050706
-0.00053791
-0.0051209
-0.00032666
-0.00516674
-0.000284303
-0.00519965
-0.000149703
-0.00522915
-0.000122219
-0.00525034
-3.40982e-05
-0.00526881
-1.47082e-05
-0.00528203
4.61034e-05
-0.00529325
6.15809e-05
-0.00530049
0.000103846
-0.0053061
0.00011662
-0.00530887
0.000147089
-0.00531024
0.000158563
-0.00530942
0.000181842
-0.00530729
0.00019301
0.000212393
-0.00477153
-0.00150509
-0.00489045
-0.000979053
-0.00499845
-0.000846572
-0.0050714
-0.000538557
-0.00513822
-0.000471091
-0.0051838
-0.000281078
-0.0052252
-0.0002429
-0.00525339
-0.000121513
-0.00527848
-9.7132e-05
-0.00529509
-1.7491e-05
-0.00530897
-8.21787e-07
-0.00531775
5.48765e-05
-0.0053245
6.83287e-05
-0.0053272
0.000106546
-0.00532836
0.000117781
-0.00532663
0.000145365
-0.00532357
0.000155499
-0.00531828
0.000176551
-0.00531173
0.000186464
0.000203963
-0.00484747
-0.00133011
-0.00496341
-0.000863108
-0.00506744
-0.000742539
-0.00513651
-0.000469491
-0.00519927
-0.00040833
-0.00524066
-0.000239686
-0.00527803
-0.000205534
-0.00530199
-9.75541e-05
-0.00532309
-7.60346e-05
-0.00533524
-5.34101e-06
-0.00534567
9.61099e-06
-0.00535008
5.92866e-05
-0.00535275
7.09949e-05
-0.00535135
0.000105154
-0.00534849
0.00011492
-0.0053427
0.00013957
-0.00533562
0.000148424
-0.00532629
0.00016722
-0.00531575
0.000175919
0.000191517
-0.00491505
-0.00115776
-0.00502839
-0.000749769
-0.00512889
-0.000642044
-0.00519457
-0.000403802
-0.00525369
-0.000349215
-0.00529141
-0.000201967
-0.00532515
-0.000171789
-0.00534538
-7.73274e-05
-0.00536281
-5.8605e-05
-0.00537145
3.29528e-06
-0.00537815
1.63129e-05
-0.00537895
6.00873e-05
-0.00537799
7.00351e-05
-0.00537293
0.00010009
-0.00536647
0.000108468
-0.00535704
0.000130141
-0.00534639
0.000137768
-0.00533345
0.00015428
-0.00531933
0.000161803
0.000175486
-0.00497423
-0.000987759
-0.00508532
-0.000638677
-0.00518272
-0.000544649
-0.00524552
-0.000341003
-0.00530141
-0.00029332
-0.00533596
-0.000167417
-0.00536651
-0.000141245
-0.00538349
-6.03463e-05
-0.00539767
-4.44216e-05
-0.00540321
8.83876e-06
-0.0054068
1.98988e-05
-0.00540427
5.75566e-05
-0.00540016
6.59285e-05
-0.00539188
9.18052e-05
-0.00538227
9.88614e-05
-0.00536965
0.000117518
-0.00535585
0.000123966
-0.00533973
0.000138169
-0.00532248
0.000144551
0.000156305
-0.00502495
-0.000819834
-0.00513415
-0.000529479
-0.0052289
-0.000449903
-0.00528927
-0.00028063
-0.00534239
-0.000240199
-0.00537426
-0.000135545
-0.00540205
-0.000113464
-0.00541625
-4.61409e-05
-0.00542777
-3.2907e-05
-0.0054305
1.15692e-05
-0.00543139
2.07956e-05
-0.00542606
5.22261e-05
-0.00541924
5.91023e-05
-0.00540818
8.07475e-05
-0.00539586
8.65434e-05
-0.00538049
0.000102146
-0.00536398
0.000107458
-0.00534514
0.00011933
-0.00532519
0.000124601
0.000134415
-0.0050672
-0.000653685
-0.00517485
-0.000421831
-0.0052674
-0.000357352
-0.00532579
-0.000222239
-0.00537659
-0.000189398
-0.00540626
-0.000105878
-0.00543173
-8.79974e-05
-0.00544364
-3.42289e-05
-0.00545289
-2.36522e-05
-0.00545334
1.20147e-05
-0.00545194
1.93945e-05
-0.00544427
4.45594e-05
-0.00543518
5.00079e-05
-0.0054218
6.73737e-05
-0.00540722
7.19586e-05
-0.00538955
8.44787e-05
-0.00537078
8.86879e-05
-0.00534966
9.82099e-05
-0.00532746
0.000102396
0.00011026
-0.00510097
-0.000488994
-0.0052074
-0.0003154
-0.00529821
-0.000266541
-0.00535504
-0.000165406
-0.00540398
-0.000140455
-0.00543191
-7.79528e-05
-0.00545551
-6.43939e-05
-0.00546561
-2.41342e-05
-0.00547307
-1.61943e-05
-0.00547165
1.06024e-05
-0.00546841
1.61504e-05
-0.00545888
3.50271e-05
-0.00544796
3.90905e-05
-0.00543273
5.2144e-05
-0.00541633
5.55556e-05
-0.00539682
6.49692e-05
-0.00537623
6.81045e-05
-0.00535328
7.52614e-05
-0.00532927
7.83833e-05
8.42883e-05
-0.00512626
-0.000325425
-0.0052318
-0.000209864
-0.00532131
-0.000177025
-0.005377
-0.000109717
-0.00542455
-9.29125e-05
-0.00545118
-5.13194e-05
-0.00547338
-4.21977e-05
-0.00548212
-1.53933e-05
-0.00548822
-1.00883e-05
-0.00548542
7.80074e-06
-0.00548078
1.15101e-05
-0.00546985
2.40983e-05
-0.00545756
2.68018e-05
-0.00544094
3.55208e-05
-0.00542317
3.77861e-05
-0.00540228
4.40759e-05
-0.00538033
4.61582e-05
-0.00535601
5.09385e-05
-0.00533064
5.30121e-05
5.69523e-05
-0.00514312
-0.000162616
-0.00524808
-0.000104896
-0.00533672
-8.83879e-05
-0.00539166
-5.47743e-05
-0.00543826
-4.6313e-05
-0.00546404
-2.55385e-05
-0.0054853
-2.09452e-05
-0.00549314
-7.54933e-06
-0.00549834
-4.88503e-06
-0.00549461
4.06957e-06
-0.00548904
5.93662e-06
-0.00547718
1.22387e-05
-0.00546397
1.35966e-05
-0.00544642
1.79679e-05
-0.00542774
1.91042e-05
-0.00540592
2.22589e-05
-0.00538307
2.33019e-05
-0.00535783
2.56981e-05
-0.00533155
2.67341e-05
2.87053e-05
-0.00515154
-1.90504e-07
-0.00525624
-1.98753e-07
-0.00534443
-1.98279e-07
-0.005399
-1.98676e-07
-0.00544513
-1.88515e-07
-0.00547048
-1.81528e-07
-0.00549126
-1.66425e-07
-0.00549866
-1.52528e-07
-0.00550341
-1.34476e-07
-0.00549921
-1.25395e-07
-0.00549317
-1.05288e-07
-0.00548085
-8.60852e-08
-0.00546718
-6.75693e-08
-0.00544916
-5.01271e-08
-0.00543003
-3.45892e-08
-0.00540775
-2.04518e-08
-0.00538444
-9.67296e-09
-0.00535874
-1.37132e-09
-0.005332
2.31466e-09
2.46668e-09
-0.00515154
0.000162234
-0.00525624
0.000104498
-0.00534443
8.79908e-05
-0.005399
5.43766e-05
-0.00544513
4.59355e-05
-0.00547048
2.51753e-05
-0.00549126
2.06118e-05
-0.00549866
7.24414e-06
-0.00550341
4.61711e-06
-0.00549921
-4.32206e-06
-0.00549317
-6.14733e-06
-0.00548085
-1.24108e-05
-0.00546718
-1.37319e-05
-0.00544916
-1.80682e-05
-0.00543003
-1.91734e-05
-0.00540775
-2.22998e-05
-0.00538444
-2.33213e-05
-0.00535874
-2.57009e-05
-0.005332
-2.67295e-05
-2.87004e-05
-0.00514313
0.000325042
-0.00524809
0.000209464
-0.00533673
0.000176627
-0.00539167
0.000109318
-0.00543827
9.25339e-05
-0.00546405
5.09551e-05
-0.0054853
4.18634e-05
-0.00549314
1.50871e-05
-0.00549835
9.81947e-06
-0.00549462
-8.05329e-06
-0.00548904
-1.17216e-05
-0.00547718
-2.42708e-05
-0.00546398
-2.69376e-05
-0.00544642
-3.56215e-05
-0.00542774
-3.78558e-05
-0.00540592
-4.41171e-05
-0.00538307
-4.61778e-05
-0.00535783
-5.09414e-05
-0.00533155
-5.30076e-05
-5.69474e-05
-0.00512629
0.000488608
-0.00523182
0.000314996
-0.00532133
0.00026614
-0.00537702
0.000165005
-0.00542456
0.000140074
-0.00545119
7.75868e-05
-0.00547338
6.40581e-05
-0.00548212
2.38265e-05
-0.00548823
1.59242e-05
-0.00548543
-1.0856e-05
-0.00548078
-1.63627e-05
-0.00546985
-3.52004e-05
-0.00545757
-3.92271e-05
-0.00544094
-5.22453e-05
-0.00542317
-5.56258e-05
-0.00540228
-6.50107e-05
-0.00538033
-6.81244e-05
-0.00535601
-7.52644e-05
-0.00533064
-7.83788e-05
-8.42834e-05
-0.005101
0.000653294
-0.00520742
0.000421423
-0.00529823
0.000356947
-0.00535506
0.000221834
-0.005404
0.000189015
-0.00543192
0.000105509
-0.00545552
8.76594e-05
-0.00546562
3.39192e-05
-0.00547307
2.33802e-05
-0.00547166
-1.22692e-05
-0.00546841
-1.9608e-05
-0.00545888
-4.47336e-05
-0.00544796
-5.01457e-05
-0.00543273
-6.74757e-05
-0.00541633
-7.20296e-05
-0.00539682
-8.45207e-05
-0.00537623
-8.87082e-05
-0.00535329
-9.82132e-05
-0.00532927
-0.000102392
-0.000110255
-0.00506724
0.000819438
-0.00517488
0.000529065
-0.00526743
0.000449495
-0.00532581
0.000280221
-0.00537661
0.000239812
-0.00540628
0.000135174
-0.00543174
0.000113123
-0.00544365
4.58286e-05
-0.0054529
3.26325e-05
-0.00545335
-1.18254e-05
-0.00545194
-2.10098e-05
-0.00544428
-5.24017e-05
-0.00543518
-5.92417e-05
-0.00542181
-8.08506e-05
-0.00540722
-8.66155e-05
-0.00538955
-0.000102189
-0.00537078
-0.000107478
-0.00534966
-0.000119333
-0.00532746
-0.000124596
-0.00013441
-0.005025
0.000987356
-0.00513419
0.000638256
-0.00522893
0.000544236
-0.0052893
0.000340589
-0.00534242
0.000292929
-0.00537428
0.000167042
-0.00540206
0.000140901
-0.00541626
6.00306e-05
-0.00542777
4.41428e-05
-0.00543051
-9.09449e-06
-0.0054314
-2.01154e-05
-0.00542607
-5.77337e-05
-0.00541924
-6.60699e-05
-0.00540818
-9.19095e-05
-0.00539586
-9.89348e-05
-0.00538049
-0.000117561
-0.00536398
-0.000123987
-0.00534514
-0.000138173
-0.00532519
-0.000144547
-0.000156301
-0.00497428
0.00115734
-0.00508537
0.00074934
-0.00518276
0.000641625
-0.00524555
0.000403382
-0.00530144
0.00034882
-0.00533599
0.000201588
-0.00536653
0.00017144
-0.0053835
7.70078e-05
-0.00539768
5.83247e-05
-0.00540322
-3.55886e-06
-0.00540681
-1.65255e-05
-0.00540428
-6.02676e-05
-0.00540017
-7.01789e-05
-0.00539188
-0.000100196
-0.00538227
-0.000108542
-0.00536965
-0.000130185
-0.00535585
-0.00013779
-0.00533973
-0.000154284
-0.00532248
-0.000161799
-0.000175482
-0.00491511
0.00132968
-0.00502844
0.000862669
-0.00512893
0.000742112
-0.00519461
0.000469064
-0.00525372
0.000407928
-0.00529144
0.000239302
-0.00532518
0.00020518
-0.0053454
9.72312e-05
-0.00536282
7.57422e-05
-0.00537147
5.09058e-06
-0.00537816
-9.8343e-06
-0.00537896
-5.94668e-05
-0.00537799
-7.11426e-05
-0.00537293
-0.000105261
-0.00536648
-0.000114996
-0.00535705
-0.000139615
-0.00534639
-0.000148447
-0.00533345
-0.000167225
-0.00531933
-0.000175915
-0.000191513
-0.00484754
0.00150465
-0.00496347
0.000978603
-0.0050675
0.000846137
-0.00513655
0.000538123
-0.00519931
0.000470684
-0.0052407
0.000280689
-0.00527806
0.000242541
-0.00530201
0.000121186
-0.00532311
9.68375e-05
-0.00533524
1.72228e-05
-0.00534569
6.16734e-07
-0.00535009
-5.50671e-05
-0.00535275
-6.84806e-05
-0.00535136
-0.000106655
-0.00534849
-0.000117859
-0.0053427
-0.000145411
-0.00533562
-0.000155523
-0.00532629
-0.000176556
-0.00531575
-0.000186461
-0.000203958
-0.00477161
0.00168253
-0.00489052
0.00109751
-0.0049985
0.000954119
-0.00507145
0.00061107
-0.00513826
0.000537495
-0.00518384
0.000326266
-0.00522523
0.000283938
-0.00525342
0.000149372
-0.0052785
0.00012192
-0.00529511
3.38349e-05
-0.00530898
1.44841e-05
-0.00531776
-4.62895e-05
-0.0053245
-6.1735e-05
-0.0053272
-0.000103957
-0.00532836
-0.0001167
-0.00532663
-0.000147137
-0.00532357
-0.000158588
-0.00531828
-0.000181847
-0.00531173
-0.000193007
-0.000212389
-0.00468743
0.00186357
-0.00480969
0.00121977
-0.00492202
0.00106644
-0.00499939
0.000688445
-0.00507064
0.000608748
-0.00512094
0.000376563
-0.00516677
0.000329768
-0.00519967
0.000182273
-0.00522917
0.000151418
-0.00525036
5.50207e-05
-0.00526883
3.29576e-05
-0.00528204
-3.30758e-05
-0.00529326
-5.05217e-05
-0.0053005
-9.6717e-05
-0.0053061
-0.000111095
-0.00530887
-0.000144366
-0.00531024
-0.000157219
-0.00530942
-0.000182673
-0.00530729
-0.000195132
-0.000216382
-0.00459509
0.00204808
-0.00472111
0.00134579
-0.00483812
0.00118345
-0.00492049
0.000770816
-0.00499655
0.000684807
-0.0050521
0.000432119
-0.00510276
0.000380429
-0.00514087
0.000220381
-0.00517521
0.000185763
-0.00520151
8.13162e-05
-0.00522477
5.62135e-05
-0.00524304
-1.4801e-05
-0.00525908
-3.4482e-05
-0.00527129
-8.45049e-05
-0.00528176
-0.000100627
-0.00528945
-0.000136675
-0.00529567
-0.000150998
-0.00529973
-0.000178617
-0.00530244
-0.00019242
-0.000215521
-0.0044947
0.00223633
-0.00462492
0.001476
-0.00474689
0.00130543
-0.00483486
0.000858777
-0.00491606
0.000766015
-0.00497742
0.000493472
-0.0050333
0.000436313
-0.00507709
0.000264169
-0.00511669
0.000225368
-0.00514855
0.000113169
-0.00517711
8.47789e-05
-0.00520073
8.81638e-06
-0.00522202
-1.31869e-05
-0.00523961
-6.69149e-05
-0.00525537
-8.4872e-05
-0.00526839
-0.000123653
-0.00527987
-0.000139516
-0.00528922
-0.000169268
-0.00529718
-0.000184463
-0.000209398
-0.00438641
0.00242862
-0.00452131
0.00161091
-0.00464847
0.00143259
-0.00474263
0.000952945
-0.00482932
0.000852699
-0.004897
0.00056115
-0.0049585
0.000497813
-0.00500843
0.000314101
-0.00505371
0.000270646
-0.00509152
0.000150977
-0.00512593
0.000119191
-0.00515519
3.80819e-05
-0.0051821
1.37191e-05
-0.00520553
-4.34873e-05
-0.00522698
-6.34222e-05
-0.00524573
-0.000104899
-0.00526288
-0.000122372
-0.00527792
-0.000154228
-0.00529152
-0.000170861
-0.000197615
-0.00427035
0.00262523
-0.0044105
0.00175106
-0.00454297
0.00156506
-0.00464397
0.00105394
-0.00473645
0.000945184
-0.00481096
0.000635662
-0.00487848
0.000565332
-0.004935
0.000370616
-0.00498636
0.000322004
-0.00503054
0.000195159
-0.00507101
0.000159666
-0.0051067
7.37669e-05
-0.00513946
4.6481e-05
-0.00516912
-1.38257e-05
-0.00519663
-3.59172e-05
-0.00522151
-8.00142e-05
-0.00524471
-9.9177e-05
-0.00526583
-0.000133104
-0.00528547
-0.000151224
-0.000179781
-0.00414669
0.00282633
-0.00429275
0.00189712
-0.0044306
0.00170291
-0.00453902
0.00116236
-0.00463764
0.0010438
-0.00471945
0.000717478
-0.0047934
0.000639278
-0.00485691
0.000434128
-0.00491476
0.000379852
-0.00496572
0.000246115
-0.00501267
0.000206622
-0.00505497
0.00011606
-0.00509435
8.58604e-05
-0.00513032
2.2144e-05
-0.0051644
-1.82936e-06
-0.00519574
-4.86766e-05
-0.00522539
-6.95253e-05
-0.00525298
-0.000105515
-0.00527904
-0.00012517
-0.000155516
-0.00401574
0.00303234
-0.00416838
0.00204976
-0.00431161
0.00184614
-0.00442801
0.00127877
-0.00453311
0.0011489
-0.00462266
0.000807022
-0.00470344
0.000720062
-0.00477433
0.000505023
-0.00483907
0.000444588
-0.00489718
0.000304221
-0.00495101
0.000260454
-0.00500029
0.000165342
-0.00504654
0.000132114
-0.00508957
6.51685e-05
-0.00513012
3.87183e-05
-0.00516851
-1.02865e-05
-0.00520497
-3.3061e-05
-0.00523939
-7.10936e-05
-0.00527223
-9.23282e-05
-0.000124449
-0.00387768
0.00324239
-0.00403773
0.00220981
-0.0041863
0.00199471
-0.00431114
0.0014036
-0.00442308
0.00126084
-0.00452072
0.000904663
-0.00460874
0.000808085
-0.00468738
0.000583661
-0.00475939
0.000516601
-0.00482501
0.00036984
-0.00488609
0.000321532
-0.00494273
0.000221982
-0.00499618
0.000185563
-0.00504647
0.000115455
-0.00509436
8.66098e-05
-0.00513977
3.51233e-05
-0.00518346
1.06313e-05
-0.00522508
-2.94714e-05
-0.00526507
-5.23342e-05
-8.62229e-05
-0.00373403
0.00345899
-0.00390181
0.00237759
-0.00405548
0.00214838
-0.00418886
0.00153698
-0.00430795
0.00137993
-0.00441392
0.00101064
-0.00450958
0.000903741
-0.00459627
0.000670355
-0.00467594
0.000596271
-0.0047494
0.000443301
-0.00481809
0.000390216
-0.00488242
0.000286319
-0.00494343
0.000246565
-0.0050013
0.000173332
-0.00505674
0.000142044
-0.00510978
8.81658e-05
-0.00516088
6.17267e-05
-0.00521007
1.9722e-05
-0.00525757
-4.83125e-06
-4.0494e-05
-0.00359102
0.00368041
-0.00376526
0.00255183
-0.00392284
0.00230597
-0.00406503
0.00167917
-0.00419137
0.00150627
-0.0043056
0.00112487
-0.00440892
0.00100706
-0.00450345
0.000764889
-0.00459079
0.000683608
-0.00467195
0.000524456
-0.00474832
0.000466586
-0.00482033
0.000358336
-0.00488906
0.00031529
-0.00495464
0.000238917
-0.00501783
0.000205227
-0.00507863
0.000148968
-0.00513754
0.000120637
-0.00519448
7.66635e-05
-0.00524976
5.04467e-05
1.30475e-05
-0.00953592
0.00348423
0.0097321
-0.00946788
0.00248379
-0.009489
0.00232709
-0.00949762
0.00168778
-0.00953947
0.00154812
-0.00956559
0.001151
-0.00960553
0.00104699
-0.00963268
0.000792038
-0.00966523
0.000716161
-0.00968817
0.0005474
-0.00971287
0.000491278
-0.00973057
0.000376045
-0.00974842
0.000333139
-0.00976122
0.000251717
-0.00977339
0.000217398
-0.0097818
0.000157378
-0.00978923
0.000128062
-0.00979363
8.10661e-05
-0.00979695
5.37654e-05
1.38974e-05
-0.00964718
0.00329912
0.00983229
-0.00959415
0.00243076
-0.00956664
0.00229957
-0.00956868
0.00168983
-0.00958983
0.00156927
-0.00960847
0.00116964
-0.00963734
0.00107586
-0.00965869
0.000813393
-0.00968477
0.000742241
-0.00970372
0.000566343
-0.00972445
0.000512009
-0.00973948
0.000391072
-0.00975484
0.000348506
-0.00976587
0.000262745
-0.0097765
0.000228026
-0.0097838
0.000164678
-0.00979032
0.000134581
-0.00979418
8.49291e-05
-0.00979711
5.66927e-05
1.45891e-05
-0.00975365
0.00312217
0.00993059
-0.00969872
0.00237583
-0.00964615
0.002247
-0.00963885
0.00168253
-0.00964097
0.00157139
-0.0096526
0.00118127
-0.00966999
0.00109325
-0.00968606
0.000829467
-0.00970506
0.000761242
-0.00972024
0.000581524
-0.00973652
0.000528292
-0.00974897
0.000403518
-0.00976151
0.000361048
-0.00977082
0.000272054
-0.00977968
0.000236887
-0.00978591
0.000170911
-0.0097914
0.000140068
-0.00979474
8.82728e-05
-0.00979721
5.91595e-05
1.51775e-05
-0.00985355
0.00295554
0.0100202
-0.0097865
0.00230879
-0.00972152
0.00218202
-0.00970468
0.00166569
-0.00969147
0.00155818
-0.00969591
0.00118571
-0.00970251
0.00109985
-0.0097135
0.000840452
-0.00972544
0.000773184
-0.00973701
0.000593096
-0.00974872
0.000540006
-0.00975866
0.000413459
-0.00976827
0.000370649
-0.00977589
0.000279677
-0.0097829
0.000243895
-0.00978808
0.000176094
-0.00979249
0.000144482
-0.00979531
9.10928e-05
-0.00979729
6.11388e-05
1.56838e-05
-0.00994331
0.00279942
0.0100994
-0.00986421
0.00222969
-0.00979148
0.00210928
-0.00976499
0.0016392
-0.00974021
0.00153339
-0.00973723
0.00118274
-0.0097345
0.00109711
-0.00974028
0.000846232
-0.00974566
0.000778569
-0.0097536
0.000601038
-0.00976091
0.000547311
-0.00976834
0.000420891
-0.00977504
0.000377345
-0.00978097
0.000285611
-0.00978613
0.000249051
-0.00979026
0.000180222
-0.00979359
0.000147818
-0.00979588
9.33817e-05
-0.00979737
6.26276e-05
1.61144e-05
-0.0100212
0.00265102
0.0101695
-0.00993366
0.0021422
-0.00985557
0.00203119
-0.00981992
0.00160356
-0.00978645
0.00149992
-0.00977612
0.00117241
-0.00976556
0.00108656
-0.00976604
0.000846709
-0.00976556
0.000778097
-0.0097698
0.000605277
-0.009773
0.000550505
-0.00977787
0.000425769
-0.00978179
0.000381256
-0.00978601
0.000289831
-0.00978936
0.000252401
-0.00979241
0.000183282
-0.00979469
0.000150091
-0.00979644
9.51289e-05
-0.00979744
6.36364e-05
1.64693e-05
-0.0100876
0.00250741
0.0102313
-0.00999548
0.00205003
-0.00991362
0.00194933
-0.00987
0.00155993
-0.00982977
0.00145969
-0.00981246
0.0011551
-0.00979538
0.00106947
-0.00979061
0.000841942
-0.00978496
0.00077245
-0.00978547
0.000605786
-0.00978489
0.000549923
-0.00978718
0.000428061
-0.00978847
0.000382542
-0.00979095
0.000292312
-0.00979257
0.000254016
-0.00979454
0.000185255
-0.00979578
0.000151333
-0.00979698
9.63225e-05
-0.00979752
6.41833e-05
1.67459e-05
-0.0101451
0.00236746
0.010285
-0.0100503
0.00195531
-0.00996579
0.00186478
-0.00991564
0.00150979
-0.00986997
0.00141401
-0.00984632
0.00113146
-0.00982371
0.00104686
-0.00981392
0.000832151
-0.00980371
0.000762233
-0.00980054
0.000602618
-0.00979651
0.000545896
-0.00979621
0.000427765
-0.00979505
0.000381374
-0.00979577
0.000293039
-0.00979574
0.000253986
-0.00979662
0.000186129
-0.00979687
0.000151586
-0.0097975
9.69516e-05
-0.00979761
6.42916e-05
1.69386e-05
-0.010195
0.00223099
0.0103315
-0.010099
0.00185927
-0.0100125
0.00177829
-0.00995714
0.00145446
-0.009907
0.00136387
-0.00987776
0.00110222
-0.00985041
0.00101951
-0.00983593
0.000817671
-0.00982165
0.000747956
-0.00981493
0.000595899
-0.00980776
0.000538726
-0.00980492
0.000424919
-0.00980147
0.000377921
-0.00980045
0.00029202
-0.00979886
0.000252402
-0.00979863
0.000185898
-0.00979794
0.000150898
-0.009798
9.70086e-05
-0.0097977
6.39875e-05
1.70413e-05
-0.0102385
0.00209805
0.0103715
-0.010142
0.00176272
-0.0100541
0.00169044
-0.00999475
0.0013951
-0.00994092
0.00131004
-0.00990685
0.00106815
-0.00987539
0.000988047
-0.00985662
0.000798904
-0.00983871
0.000730049
-0.00982863
0.000585816
-0.00981858
0.000528679
-0.00981327
0.000419602
-0.00980769
0.000372344
-0.00980495
0.000289283
-0.00980191
0.000249356
-0.00980058
0.000184571
-0.009799
0.000149319
-0.00979848
9.64921e-05
-0.00979779
6.32975e-05
1.70479e-05
-0.0102764
0.00196865
0.0104058
-0.0101799
0.00166624
-0.0100912
0.00160175
-0.0100287
0.0013326
-0.00997186
0.00125317
-0.00993365
0.00102994
-0.00989861
0.000953006
-0.00987598
0.000776275
-0.00985482
0.000708882
-0.00984159
0.000572595
-0.00982891
0.000515995
-0.00982123
0.000411924
-0.00981368
0.000364788
-0.00980927
0.000284881
-0.00980485
0.000244935
-0.00980245
0.000182169
-0.00980003
0.000146898
-0.00979894
9.54076e-05
-0.00979789
6.22471e-05
1.6954e-05
-0.0103094
0.00184277
0.0104352
-0.0102134
0.00157025
-0.0101243
0.00151264
-0.0100593
0.00126767
-0.00999996
0.00119379
-0.00995825
0.000988232
-0.00992009
0.000914846
-0.00989402
0.000750202
-0.00986992
0.000684784
-0.00985381
0.000556479
-0.0098387
0.000500889
-0.0098288
0.000402019
-0.0098194
0.000355389
-0.0098134
0.000278881
-0.00980768
0.000239222
-0.00980424
0.000178724
-0.00980102
0.000143682
-0.00979938
9.3767e-05
-0.009798
6.08601e-05
1.67571e-05
-0.010338
0.00172034
0.0104604
-0.0102428
0.001475
-0.0101536
0.00142347
-0.0100868
0.00120089
-0.0100254
0.00113239
-0.00998073
0.000943556
-0.00993987
0.00087398
-0.00991074
0.000721077
-0.00988402
0.000658056
-0.00986525
0.000537718
-0.00984793
0.000483562
-0.00983594
0.000390032
-0.00982483
0.000344278
-0.00981731
0.000271365
-0.00981039
0.000232298
-0.00980594
0.000174278
-0.00980198
0.000139718
-0.0097998
9.15882e-05
-0.0097981
5.91585e-05
1.64567e-05
-0.0103628
0.00160127
0.0104819
-0.0102685
0.00138068
-0.0101796
0.00133454
-0.0101114
0.00113269
-0.0100484
0.00106937
-0.0100012
0.000896378
-0.009958
0.000830776
-0.00992618
0.00068926
-0.0098971
0.000628974
-0.00987593
0.000516554
-0.00985658
0.000464206
-0.00984266
0.000376116
-0.00982996
0.000331577
-0.00982102
0.000262422
-0.00981296
0.00022424
-0.00980756
0.00016888
-0.00980289
0.000135051
-0.0098002
8.88938e-05
-0.0097982
5.71628e-05
1.60544e-05
-0.0103843
0.0014854
0.0105002
-0.0102911
0.00128739
-0.0102026
0.00124606
-0.0101333
0.00106344
-0.010069
0.00100509
-0.0100198
0.000847091
-0.00997454
0.000785565
-0.00994036
0.000655075
-0.00990918
0.000597794
-0.00988584
0.000493218
-0.00986463
0.000442999
-0.00984894
0.00036042
-0.00983477
0.000317407
-0.00982449
0.000252147
-0.00981538
0.000215123
-0.00980908
0.000162585
-0.00980376
0.000129724
-0.00980057
8.57096e-05
-0.0097983
5.48923e-05
1.55529e-05
-0.0104029
0.00137257
0.0105157
-0.0103107
0.0011952
-0.0102228
0.00115818
-0.0101528
0.000993429
-0.0100876
0.000939825
-0.0100365
0.000796031
-0.00998958
0.000738638
-0.00995332
0.000618814
-0.00992028
0.000564754
-0.00989499
0.000467928
-0.0098721
0.000420115
-0.00985478
0.000343096
-0.00983926
0.000301886
-0.00982775
0.000240635
-0.00981765
0.000205024
-0.00981051
0.000155449
-0.00980457
0.000123783
-0.00980092
8.2064e-05
-0.0097984
5.23657e-05
1.49564e-05
-0.0104189
0.0012626
0.0105288
-0.0103278
0.00110415
-0.0102407
0.00107102
-0.0101701
0.000922874
-0.0101041
0.000873831
-0.0100516
0.000743487
-0.0100032
0.000690257
-0.00996511
0.000580737
-0.00993043
0.000530073
-0.00990338
0.000440886
-0.00987899
0.000395717
-0.00986018
0.000324286
-0.00984342
0.000285128
-0.00983077
0.000227983
-0.00981976
0.000194016
-0.00981184
0.000147531
-0.00980533
0.00011727
-0.00980125
7.79872e-05
-0.00979849
4.96011e-05
1.42699e-05
-0.0104326
0.00115529
0.0105399
-0.0103427
0.00101423
-0.0102563
0.000984641
-0.0101854
0.000851959
-0.0101188
0.000807301
-0.010065
0.000689703
-0.0100154
0.000640646
-0.00997578
0.000541078
-0.00993965
0.000493949
-0.00991105
0.000412282
-0.00988529
0.00036996
-0.00986514
0.00030413
-0.00984725
0.000267243
-0.00983355
0.000214285
-0.00982171
0.000182174
-0.00981307
0.000138891
-0.00980603
0.00011023
-0.00980155
7.351e-05
-0.00979857
4.66166e-05
1.34991e-05
-0.0104443
0.00105043
0.0105492
-0.0103555
0.000925406
-0.0102699
0.000899067
-0.0101988
0.000780825
-0.0101319
0.000740393
-0.0100771
0.000634889
-0.0100264
0.000590003
-0.00998538
0.000500047
-0.009948
0.000456566
-0.009918
0.000382291
-0.00989103
0.00034299
-0.00986967
0.00028276
-0.00985076
0.000248339
-0.00983611
0.000199635
-0.00982351
0.00016957
-0.00981421
0.000129589
-0.00980668
0.000102705
-0.00980184
6.86641e-05
-0.00979865
4.34301e-05
1.26499e-05
-0.0104543
0.000947825
0.0105569
-0.0103665
0.000837641
-0.0102818
0.000814301
-0.0102105
0.000709582
-0.0101434
0.000673233
-0.0100877
0.000579224
-0.0100362
0.000538497
-0.00999397
0.000457829
-0.00995549
0.000418088
-0.00992427
0.000351075
-0.00989623
0.000314944
-0.00987377
0.000260304
-0.00985395
0.000228519
-0.00983844
0.000184124
-0.00982514
0.000156277
-0.00981524
0.000119684
-0.00980727
9.47406e-05
-0.00980209
6.3481e-05
-0.00979872
4.00592e-05
1.17287e-05
-0.0104627
0.000847251
0.0105633
-0.010376
0.000750869
-0.010292
0.000730323
-0.0102207
0.000638311
-0.0101534
0.000605918
-0.010097
0.00052286
-0.0100448
0.000486277
-0.0100016
0.000414592
-0.00996216
0.000378664
-0.00992987
0.000318784
-0.00990088
0.000285951
-0.00987746
0.000236882
-0.00985682
0.000207883
-0.00984054
0.00016784
-0.00982662
0.000142363
-0.00981617
0.000109235
-0.00980781
8.63782e-05
-0.00980232
5.79925e-05
-0.00979879
3.65216e-05
1.07419e-05
-0.0104699
0.000748502
0.0105686
-0.010384
0.000665017
-0.0103008
0.000647093
-0.0102295
0.000567068
-0.0101621
0.000538522
-0.0101052
0.000465925
-0.0100524
0.000433467
-0.0100083
0.000370484
-0.00996806
0.00033843
-0.00993483
0.000285557
-0.00990501
0.000256131
-0.00988074
0.000212609
-0.00985938
0.000186527
-0.00984241
0.00015087
-0.00982795
0.000127898
-0.00981701
9.82993e-05
-0.00980829
7.76606e-05
-0.00980253
5.22303e-05
-0.00979885
3.28348e-05
9.69605e-06
-0.0104758
0.000651373
0.0105729
-0.0103908
0.00058
-0.0103083
0.00056456
-0.0102371
0.000495891
-0.0101697
0.000471098
-0.0101123
0.000408527
-0.010059
0.000380175
-0.0100141
0.000325641
-0.00997321
0.000297508
-0.00993917
0.000251525
-0.00990864
0.000225596
-0.00988362
0.000187594
-0.00986164
0.000164541
-0.00984407
0.000133297
-0.00982912
0.000112949
-0.00981775
8.69349e-05
-0.00980872
6.86294e-05
-0.00980272
4.62256e-05
-0.0097989
2.90162e-05
8.59765e-06
-0.0104807
0.000555656
0.0105764
-0.0103965
0.000495725
-0.0103145
0.000482659
-0.0102435
0.000424802
-0.010176
0.000403684
-0.0101183
0.000350758
-0.0100646
0.000326495
-0.0100191
0.000280181
-0.00997764
0.000256009
-0.00994292
0.000216806
-0.00991178
0.000194453
-0.00988612
0.000161941
-0.0098636
0.000142015
-0.0098455
0.000115202
-0.00983013
9.75797e-05
-0.0098184
7.51975e-05
-0.00980909
5.9326e-05
-0.00980288
4.00096e-05
-0.00979894
2.5083e-05
7.45331e-06
-0.0104847
0.00046115
0.0105792
-0.0104011
0.000412092
-0.0103198
0.000401319
-0.0102488
0.000353808
-0.0101814
0.000336305
-0.0101233
0.000292694
-0.0100693
0.000272508
-0.0100234
0.000234212
-0.00998138
0.000214034
-0.00994609
0.000181512
-0.00991444
0.000162801
-0.00988825
0.000135749
-0.00986526
0.000119032
-0.00984673
9.66639e-05
-0.009831
8.18549e-05
-0.00981895
6.31422e-05
-0.00980941
4.97908e-05
-0.00980301
3.36131e-05
-0.00979898
2.10521e-05
6.2696e-06
-0.0104879
0.000367657
0.0105814
-0.0104048
0.000328999
-0.010324
0.000320462
-0.0102531
0.000282906
-0.0101857
0.000268975
-0.0101274
0.000234399
-0.0100732
0.000218281
-0.0100268
0.000187832
-0.00998447
0.000171678
-0.0099487
0.000145749
-0.00991664
0.000130734
-0.00989
0.000109115
-0.00986664
9.56738e-05
-0.00984774
7.77599e-05
-0.00983172
6.58363e-05
-0.0098194
5.08233e-05
-0.00980967
4.00636e-05
-0.00980313
2.70664e-05
-0.00979902
1.69402e-05
5.05306e-06
-0.0104904
0.000274982
0.010583
-0.0104077
0.000246335
-0.0103272
0.000240004
-0.0102564
0.000212081
-0.0101891
0.000201697
-0.0101307
0.000175927
-0.0100763
0.000163877
-0.0100296
0.000141132
-0.00998691
0.000129025
-0.00995077
0.000109617
-0.00991838
9.8341e-05
-0.0098914
8.21297e-05
-0.00986774
7.2019e-05
-0.00984855
5.8565e-05
-0.00983229
4.95844e-05
-0.00981976
3.82943e-05
-0.00980988
3.01837e-05
-0.00980322
2.04e-05
-0.00979904
1.27639e-05
3.81029e-06
-0.0104921
0.00018293
0.0105842
-0.0104098
0.000163986
-0.0103297
0.00015986
-0.0102589
0.000141318
-0.0101917
0.000134469
-0.0101331
0.000117327
-0.0100785
0.000109345
-0.0100316
9.41959e-05
-0.00998872
8.61539e-05
-0.00995232
7.32123e-05
-0.00991968
6.57065e-05
-0.00989244
5.48843e-05
-0.00986856
4.81435e-05
-0.00984915
3.91536e-05
-0.00983272
3.31584e-05
-0.00982004
2.56086e-05
-0.00981004
2.01894e-05
-0.00980329
1.36441e-05
-0.00979906
8.53907e-06
2.54796e-06
-0.0104933
9.13382e-05
0.0105849
-0.0104112
8.18194e-05
-0.0103312
7.99477e-05
-0.0102605
7.05825e-05
-0.0101933
6.72879e-05
-0.0101346
5.86359e-05
-0.01008
5.47394e-05
-0.0100329
4.70996e-05
-0.00998993
4.31457e-05
-0.00995334
3.66228e-05
-0.00992055
3.29161e-05
-0.00989312
2.74637e-05
-0.00986911
2.41241e-05
-0.00984955
1.95965e-05
-0.00983301
1.66184e-05
-0.00982022
1.28174e-05
-0.00981015
1.01199e-05
-0.00980333
6.82812e-06
-0.00979907
4.28237e-06
1.27252e-06
-0.0104937
0.0105851
-0.0104119
-0.010332
-0.0102614
-0.0101941
-0.0101354
-0.0100807
-0.0100336
-0.00999046
-0.00995384
-0.00992092
-0.00989346
-0.00986933
-0.00984974
-0.00983312
-0.0098203
-0.00981018
-0.00980335
-0.00979907
-0.00308584
0.00965828
-0.00302897
0.00977542
-0.00296521
0.00986683
-0.00289434
0.00994931
-0.00281699
0.0100221
-0.00273372
0.0100863
-0.00264499
0.0101425
-0.00255136
0.0101914
-0.00245344
0.0102336
-0.00235179
0.0102698
-0.0022469
0.0103009
-0.00213918
0.0103275
-0.00202903
0.0103503
-0.00191677
0.0103697
-0.0018027
0.0103861
-0.00168708
0.0104001
-0.00157014
0.0104119
-0.00145209
0.0104218
-0.00133311
0.0104302
-0.00121337
0.0104372
-0.00109301
0.010443
-0.000972153
0.0104478
-0.00085093
0.0104517
-0.000729442
0.010455
-0.000607788
0.0104576
-0.000486058
0.0104597
-0.000364334
0.0104613
-0.000242692
0.0104626
-0.000121201
0.0104634
0.0104639
-0.00294603
0.0096044
-0.00288802
0.00971741
-0.00282501
0.00980383
-0.00275729
0.00988159
-0.00268434
0.00994912
-0.00260613
0.0100081
-0.00252283
0.0100592
-0.0024348
0.0101034
-0.00234253
0.0101413
-0.00224653
0.0101738
-0.00214725
0.0102016
-0.00204511
0.0102254
-0.00194048
0.0102457
-0.0018337
0.0102629
-0.00172507
0.0102775
-0.00161485
0.0102899
-0.00150327
0.0103003
-0.00139054
0.0103091
-0.00127686
0.0103165
-0.00116238
0.0103227
-0.00104725
0.0103278
-0.000931599
0.0103321
-0.000815549
0.0103357
-0.000699206
0.0103386
-0.000582666
0.010341
-0.00046602
0.010343
-0.000349349
0.0103446
-0.000232729
0.0103459
-0.000116247
0.0103469
0.0103476
-0.00278447
0.00956459
-0.00273351
0.00966645
-0.00267493
0.00974525
-0.00261074
0.0098174
-0.00254119
0.00987957
-0.00246663
0.00993351
-0.00238737
0.00997996
-0.0023038
0.0100198
-0.00221637
0.0100539
-0.0021255
0.0100829
-0.00203162
0.0101077
-0.00193508
0.0101289
-0.00183622
0.0101468
-0.00173534
0.010162
-0.00163272
0.0101749
-0.00152859
0.0101858
-0.00142317
0.0101949
-0.00131664
0.0102026
-0.00120917
0.010209
-0.00110093
0.0102144
-0.000992036
0.0102189
-0.00088262
0.0102227
-0.00077279
0.0102258
-0.000662646
0.0102285
-0.000552282
0.0102307
-0.000441782
0.0102325
-0.000331225
0.0102341
-0.000220685
0.0102354
-0.000110248
0.0102365
0.0102374
-0.00260968
0.00953278
-0.00256722
0.00962399
-0.00251627
0.0096943
-0.00245811
0.00975925
-0.00239364
0.00981509
-0.00232376
0.00986364
-0.00224913
0.00990533
-0.00217032
0.00994098
-0.00208786
0.00997139
-0.00200218
0.00999726
-0.0019137
0.0100193
-0.00182275
0.0100379
-0.00172966
0.0100537
-0.0016347
0.0100671
-0.00153811
0.0100783
-0.00144012
0.0100878
-0.00134091
0.0100957
-0.00124067
0.0101023
-0.00113953
0.0101079
-0.00103764
0.0101125
-0.000935128
0.0101164
-0.000832098
0.0101197
-0.000728654
0.0101224
-0.000624887
0.0101247
-0.000520884
0.0101267
-0.000416725
0.0101284
-0.000312483
0.0101298
-0.00020823
0.0101311
-0.000104041
0.0101323
0.0101333
-0.00242303
0.00950488
-0.00238533
0.00958629
-0.00234101
0.00964998
-0.00228973
0.00970796
-0.00223195
0.00975731
-0.0021685
0.00980019
-0.00210011
0.00983694
-0.00202748
0.00986835
-0.00195118
0.00989509
-0.00187171
0.0099178
-0.00178949
0.00993703
-0.00170488
0.0099533
-0.00161818
0.00996701
-0.00152968
0.00997855
-0.0014396
0.00998822
-0.00134815
0.00999632
-0.00125553
0.0100031
-0.00116189
0.0100087
-0.00106738
0.0100134
-0.000972122
0.0100173
-0.000876241
0.0100205
-0.00077984
0.0100233
-0.000683012
0.0100256
-0.000585847
0.0100275
-0.000488424
0.0100292
-0.000390821
0.0100308
-0.000293108
0.0100321
-0.000195352
0.0100334
-9.76222e-05
0.0100346
0.0100357
-0.00223142
0.00948144
-0.00219761
0.00955247
-0.00215813
0.0096105
-0.00211243
0.00966226
-0.00206092
0.0097058
-0.00200411
0.00974338
-0.00194253
0.00977536
-0.00187676
0.00980259
-0.00180736
0.00982568
-0.0017348
0.00984523
-0.00165949
0.00986173
-0.00158179
0.0098756
-0.00150202
0.00988724
-0.00142044
0.00989697
-0.00133729
0.00990507
-0.00125278
0.0099118
-0.00116708
0.00991738
-0.00108036
0.00992198
-0.000992764
0.00992578
-0.000904409
0.00992893
-0.000815412
0.00993154
-0.000725876
0.00993373
-0.000635894
0.00993559
-0.00054555
0.00993719
-0.000454923
0.00993862
-0.000364086
0.00993992
-0.00027311
0.00994115
-0.000182059
0.00994233
-9.09961e-05
0.00994352
0.0099447
-0.00203523
0.00946353
-0.00200699
0.00952423
-0.00197287
0.00957637
-0.00193244
0.00962183
-0.00188664
0.00966
-0.00183597
0.00969271
-0.00178089
0.00972028
-0.00172187
0.00974357
-0.00165938
0.00976319
-0.00159382
0.00977968
-0.00152559
0.00979349
-0.001455
0.00980502
-0.00138237
0.0098146
-0.00130794
0.00982254
-0.00123194
0.00982907
-0.00115458
0.00983444
-0.00107603
0.00983882
-0.000996441
0.0098424
-0.000915962
0.00984531
-0.000834713
0.00984768
-0.000752803
0.00984963
-0.000670333
0.00985126
-0.000587394
0.00985265
-0.000504068
0.00985387
-0.000420433
0.00985498
-0.000336559
0.00985605
-0.000252516
0.00985711
-0.000168367
0.00985818
-8.41707e-05
0.00985933
0.00986053
-0.00183317
0.00945141
-0.00181145
0.00950251
-0.00178372
0.00954864
-0.0017494
0.00958751
-0.00170971
0.00962032
-0.00166527
0.00964826
-0.00161661
0.00967163
-0.00156424
0.0096912
-0.00150857
0.00970752
-0.00144998
0.00972109
-0.00138882
0.00973233
-0.00132539
0.00974158
-0.00125995
0.00974917
-0.00119277
0.00975535
-0.00112404
0.00976035
-0.00105396
0.00976436
-0.000982691
0.00976756
-0.000910393
0.0097701
-0.000837194
0.00977211
-0.000763213
0.0097737
-0.000688559
0.00977498
-0.000613327
0.00977603
-0.000537606
0.00977692
-0.000461475
0.00977774
-0.000385011
0.00977852
-0.000308282
0.00977932
-0.000231356
0.00978018
-0.000154295
0.00978112
-7.7155e-05
0.00978219
0.00978338
-0.00162541
0.00944524
-0.00161024
0.00948734
-0.00158916
0.00952756
-0.00156154
0.00955989
-0.00152858
0.00958736
-0.00149084
0.00961053
-0.00144895
0.00962974
-0.00140344
0.00964569
-0.00135474
0.00965882
-0.00130323
0.00966958
-0.00124924
0.00967833
-0.00119305
0.0096854
-0.00113492
0.00969105
-0.00107509
0.00969551
-0.00101374
0.009699
-0.000951069
0.00970168
-0.000887225
0.00970371
-0.000822353
0.00970523
-0.000756579
0.00970633
-0.000690019
0.00970714
-0.000622775
0.00970773
-0.00055494
0.00970819
-0.000486599
0.00970858
-0.00041783
0.00970897
-0.000348706
0.0097094
-0.000279294
0.00970991
-0.000209659
0.00971055
-0.000139863
0.00971133
-6.9957e-05
0.00971228
0.00971342
-0.00141265
0.00944536
-0.00140405
0.00947874
-0.00138952
0.00951303
-0.0013687
0.00953908
-0.00134272
0.00956137
-0.00131204
0.00957984
-0.00127727
0.00959497
-0.00123894
0.00960735
-0.00119748
0.00961736
-0.00115327
0.00962537
-0.00110664
0.00963171
-0.00105788
0.00963663
-0.00100722
0.00964039
-0.000954893
0.00964318
-0.000901084
0.00964519
-0.000845964
0.00964657
-0.000789688
0.00964744
-0.000732389
0.00964793
-0.000674191
0.00964813
-0.000615201
0.00964815
-0.00055552
0.00964805
-0.000495236
0.00964791
-0.000434432
0.00964778
-0.000373184
0.00964772
-0.00031156
0.00964777
-0.000249628
0.00964798
-0.000187451
0.00964837
-0.000125086
0.00964896
-6.25854e-05
0.00964978
0.00965083
-0.00119528
0.00945212
-0.0011935
0.00947696
-0.00118558
0.0095051
-0.00117162
0.00952512
-0.00115266
0.00954242
-0.00112916
0.00955635
-0.00110171
0.00956751
-0.00107077
0.00957642
-0.00103678
0.00958337
-0.0010001
0.00958869
-0.000961048
0.00959265
-0.000919897
0.00959548
-0.000876888
0.00959738
-0.000832234
0.00959853
-0.000786121
0.00959908
-0.000738712
0.00959916
-0.000690155
0.00959888
-0.000640581
0.00959835
-0.000590106
0.00959766
-0.000538835
0.00959688
-0.000486865
0.00959608
-0.000434282
0.00959532
-0.000381165
0.00959466
-0.000327588
0.00959414
-0.000273619
0.0095938
-0.000219321
0.00959368
-0.000164757
0.0095938
-0.000109984
0.00959419
-5.50487e-05
0.00959484
0.00959579
-0.000973493
0.00946578
-0.000978831
0.00948229
-0.000977728
0.009504
-0.000970805
0.0095182
-0.000958977
0.00953059
-0.000942764
0.00954014
-0.000922725
0.00954748
-0.000899324
0.00955301
-0.000872956
0.009557
-0.000843966
0.0095597
-0.000812651
0.00956134
-0.000779277
0.00956211
-0.000744076
0.00956218
-0.000707251
0.00956171
-0.000668984
0.00956081
-0.000629434
0.00955961
-0.000588741
0.00955819
-0.000547032
0.00955664
-0.000504422
0.00955505
-0.000461011
0.00955347
-0.000416892
0.00955196
-0.00037215
0.00955058
-0.000326861
0.00954937
-0.000281098
0.00954838
-0.000234927
0.00954763
-0.00018841
0.00954716
-0.000141607
0.009547
-9.45738e-05
0.00954716
-4.73561e-05
0.00954763
0.00954843
-0.000747616
0.00948658
-0.000760254
0.00949493
-0.000766145
0.00950989
-0.000766494
0.00951855
-0.000761969
0.00952606
-0.000753191
0.00953136
-0.000740693
0.00953498
-0.000724943
0.00953726
-0.000706331
0.00953839
-0.000685161
0.00953853
-0.000661717
0.00953789
-0.000636252
0.00953664
-0.000608991
0.00953492
-0.000580129
0.00953284
-0.000549841
0.00953052
-0.000518279
0.00952804
-0.000485581
0.00952549
-0.000451869
0.00952293
-0.000417252
0.00952043
-0.000381829
0.00951805
-0.000345692
0.00951582
-0.000308921
0.00951381
-0.000271592
0.00951205
-0.000233776
0.00951056
-0.000195537
0.00950939
-0.000156935
0.00950856
-0.00011803
0.0095081
-7.88769e-05
0.009508
-3.9518e-05
0.00950827
0.00950891
-0.000518102
0.00951483
-0.000538117
0.00951495
-0.000551127
0.0095229
-0.000558904
0.00952632
-0.000561836
0.009529
-0.000560663
0.00953018
-0.000555851
0.00953017
-0.000547885
0.0095293
-0.000537161
0.00952767
-0.000523931
0.0095253
-0.000508476
0.00952244
-0.00049104
0.00951921
-0.000471837
0.00951572
-0.000451056
0.00951206
-0.000428863
0.00950833
-0.000405408
0.00950459
-0.000380821
0.0095009
-0.000355222
0.00949733
-0.000328716
0.00949393
-0.0003014
0.00949073
-0.000273362
0.00948779
-0.000244682
0.00948513
-0.000215433
0.0094828
-0.000185685
0.00948082
-0.0001555
0.00947921
-0.00012494
0.009478
-9.40592e-05
0.00947722
-6.29149e-05
0.00947686
-3.15451e-05
0.0094769
0.00947737
-0.000285787
0.0095509
-0.000312819
0.00954198
-0.000333142
0.00954323
-0.000348382
0.00954156
-0.000358891
0.00953951
-0.000365448
0.00953674
-0.000368435
0.00953315
-0.000368366
0.00952923
-0.000365687
0.00952499
-0.000360514
0.00952013
-0.000353158
0.00951508
-0.000343856
0.0095099
-0.000332816
0.00950468
-0.00032022
0.00949947
-0.000306228
0.00949434
-0.000290983
0.00948934
-0.000274612
0.00948453
-0.00025723
0.00947995
-0.000238941
0.00947564
-0.000219837
0.00947163
-0.000200005
0.00946795
-0.000179523
0.00946465
-0.000158463
0.00946174
-0.000136893
0.00945924
-0.000114875
0.00945719
-9.24683e-05
0.00945559
-6.97277e-05
0.00945448
-4.67113e-05
0.00945384
-2.34503e-05
0.00945364
0.00945392
-5.28399e-05
0.00959433
-8.52632e-05
0.0095744
-0.0001133
0.00957126
-0.000135575
0.00956384
-0.000153751
0.00955768
-0.000168019
0.00955101
-0.000178879
0.00954401
-0.000186775
0.00953712
-0.000192234
0.00953045
-0.00019519
0.00952309
-0.000196023
0.00951592
-0.000194945
0.00950883
-0.000192157
0.00950189
-0.000187835
0.00949514
-0.000182132
0.00948864
-0.000175187
0.0094824
-0.000167123
0.00947647
-0.000158049
0.00947088
-0.000148067
0.00946565
-0.000137268
0.00946083
-0.000125736
0.00945642
-0.000113546
0.00945246
-0.000100771
0.00944896
-8.74764e-05
0.00944595
-7.37242e-05
0.00944344
-5.95726e-05
0.00944144
-4.50741e-05
0.00943998
-3.0291e-05
0.00943906
-1.52487e-05
0.00943859
0.00943867
0.000192591
0.00964552
0.000149608
0.00961739
0.000112712
0.00960816
8.15197e-05
0.00959503
5.4378e-05
0.00958482
3.13327e-05
0.00957405
1.14783e-05
0.00956387
-5.01838e-06
0.00955362
-1.8004e-05
0.00954343
-2.89144e-05
0.009534
-3.78169e-05
0.00952482
-4.49127e-05
0.00951592
-5.03663e-05
0.00950734
-5.43318e-05
0.00949911
-5.69491e-05
0.00949125
-5.83457e-05
0.0094838
-5.86368e-05
0.00947676
-5.79281e-05
0.00947017
-5.63152e-05
0.00946404
-5.38863e-05
0.0094584
-5.07221e-05
0.00945326
-4.68977e-05
0.00944864
-4.24826e-05
0.00944455
-3.75414e-05
0.00944101
-3.21353e-05
0.00943803
-2.63224e-05
0.00943563
-2.01538e-05
0.00943381
-1.36862e-05
0.00943259
-6.96856e-06
0.00943188
0.0094317
0.000437962
0.00970274
0.000387102
0.00966825
0.000342856
0.00965241
0.000303465
0.00963442
0.000268519
0.00961977
0.000237376
0.0096052
0.000209643
0.0095916
0.000184814
0.00957845
0.000162379
0.00956587
0.000142399
0.00955398
0.000124572
0.00954265
0.000108651
0.00953184
9.44374e-05
0.00952155
8.17613e-05
0.00951179
7.0472e-05
0.00950254
6.04363e-05
0.00949383
5.15339e-05
0.00948566
4.36568e-05
0.00947805
3.67066e-05
0.00947099
3.05937e-05
0.00946451
2.52357e-05
0.00945862
2.05564e-05
0.00945331
1.64855e-05
0.00944862
1.2957e-05
0.00944454
9.90946e-06
0.00944108
7.28425e-06
0.00943826
5.02298e-06
0.00943607
3.09722e-06
0.00943452
1.38231e-06
0.00943359
0.00943308
0.000683447
0.00976726
0.000624793
0.0097269
0.000572586
0.00970461
0.00052511
0.0096819
0.00048197
0.00966291
0.000442527
0.00964464
0.000406356
0.00962777
0.000373039
0.00961177
0.000342247
0.00959666
0.000313768
0.00958245
0.000287392
0.00956902
0.000262902
0.00955633
0.000240108
0.00954435
0.000218845
0.00953305
0.000198965
0.00952242
0.000180337
0.00951246
0.000162845
0.00950315
0.00014638
0.00949451
0.000130847
0.00948652
0.000116156
0.0094792
0.000102226
0.00947255
8.89799e-05
0.00946656
7.63486e-05
0.00946125
6.42654e-05
0.00945662
5.26686e-05
0.00945268
4.1499e-05
0.00944942
3.07029e-05
0.00944687
2.0224e-05
0.009445
1.00169e-05
0.0094438
0.0094431
0.000929938
0.00983937
0.000862998
0.00979384
0.000802716
0.00976489
0.000747108
0.0097375
0.000695771
0.00971425
0.000647996
0.00969242
0.000603401
0.00967237
0.000561614
0.00965355
0.000522364
0.00963591
0.000485379
0.00961944
0.000450449
0.00960395
0.000417379
0.0095894
0.00038599
0.00957574
0.000356124
0.00956292
0.000327636
0.00955091
0.0003004
0.00953969
0.0002743
0.00952925
0.000249232
0.00951958
0.000225099
0.00951066
0.000201813
0.00950249
0.000179294
0.00949507
0.000157465
0.00948839
0.000136257
0.00948246
0.000115603
0.00947727
9.54404e-05
0.00947284
7.57108e-05
0.00946915
5.63581e-05
0.00946622
3.73302e-05
0.00946402
1.85758e-05
0.00946255
0.00946167
0.00117715
0.00991934
0.00110184
0.00986915
0.00103335
0.00983338
0.000969609
0.00980125
0.000910036
0.00977382
0.000853921
0.00974853
0.000800921
0.00972537
0.000750678
0.0097038
0.000702914
0.00968367
0.000657395
0.00966496
0.000613902
0.00964745
0.000572243
0.00963106
0.000532249
0.00961573
0.000493766
0.0096014
0.000456657
0.00958802
0.000420797
0.00957555
0.000386074
0.00956398
0.000352384
0.00955327
0.000319632
0.00954341
0.000287732
0.00953439
0.000256602
0.0095262
0.000226168
0.00951882
0.000196358
0.00951227
0.000167107
0.00950653
0.000138352
0.00950159
0.000110033
0.00949747
8.20919e-05
0.00949416
5.44779e-05
0.00949164
2.71414e-05
0.00948989
0.00948882
0.00142553
0.0100071
0.00134227
0.00995241
0.00126544
0.00991021
0.00119339
0.00987329
0.00112544
0.00984177
0.00106089
0.00981308
0.000999403
0.00978686
0.000940625
0.00976258
0.00088428
0.00974002
0.000830155
0.00971908
0.000778035
0.00969957
0.000727734
0.00968136
0.000679088
0.00966438
0.000631947
0.00964854
0.000586177
0.00963379
0.000541658
0.00962007
0.000498276
0.00960736
0.000455932
0.00959561
0.00041453
0.00958481
0.000373985
0.00957493
0.000334215
0.00956596
0.000295145
0.00955789
0.000256704
0.00955071
0.000218826
0.0095444
0.000181447
0.00953897
0.000144506
0.00953441
0.000107946
0.00953072
7.17109e-05
0.00952787
3.5752e-05
0.00952585
0.00952457
0.0016752
0.0101025
0.00158375
0.0100439
0.00149846
0.0099955
0.00141799
0.00995376
0.00134157
0.00991819
0.00126852
0.00988613
0.00119847
0.00985691
0.00113109
0.00982995
0.00106612
0.00980499
0.00100335
0.00978186
0.00094256
0.00976035
0.000883582
0.00974034
0.000826252
0.00972171
0.000770427
0.00970437
0.000715973
0.00968824
0.000662772
0.00967327
0.000610714
0.00965942
0.000559697
0.00964663
0.000509629
0.00963488
0.000460423
0.00962414
0.000411998
0.00961439
0.000364278
0.00960561
0.000317191
0.0095978
0.00027067
0.00959092
0.000224651
0.00958499
0.000179071
0.00957999
0.000133872
0.00957592
8.89979e-05
0.00957275
4.43978e-05
0.00957045
0.00956896
0.0019254
0.0102054
0.00182575
0.0101435
0.0017319
0.0100893
0.00164292
0.0100427
0.00155799
0.0100031
0.00147638
0.00996773
0.00139773
0.00993556
0.00132172
0.00990596
0.0012481
0.00987861
0.00117665
0.00985331
0.00110717
0.00982983
0.0010395
0.00980801
0.000973479
0.00978773
0.000908959
0.00976889
0.000845815
0.00975139
0.000783927
0.00973516
0.000723189
0.00972016
0.000663498
0.00970632
0.000604763
0.00969361
0.000546895
0.00968201
0.000489815
0.00967147
0.000433444
0.00966198
0.000377711
0.00965353
0.000322546
0.00964609
0.000267885
0.00963965
0.000213664
0.00963421
0.000159824
0.00962976
0.000106305
0.00962627
5.30544e-05
0.0096237
0.00962202
0.00217564
0.0103157
0.00206781
0.0102513
0.00196536
0.0101918
0.00186781
0.0101403
0.00177431
0.0100966
0.00168412
0.0100579
0.00159685
0.0100228
0.00151218
0.00999062
0.00142989
0.0099609
0.00134976
0.00993344
0.0012716
0.00990799
0.00119523
0.00988437
0.00112052
0.00986245
0.00104731
0.00984209
0.000975481
0.00982321
0.000904918
0.00980573
0.00083551
0.00978956
0.000767158
0.00977467
0.000699769
0.009761
0.000633255
0.00974852
0.000567533
0.00973719
0.000502526
0.00972699
0.000438161
0.00971789
0.000374367
0.00970988
0.000311077
0.00970294
0.000248227
0.00969707
0.000185755
0.00969223
0.0001236
0.00968842
6.1706e-05
0.00968559
0.00968373
0.00242545
0.0104334
0.0023095
0.0103673
0.00219845
0.0103028
0.00209228
0.0102465
0.00199018
0.0101987
0.00189138
0.0101567
0.00179547
0.0101187
0.00170216
0.0100839
0.00161121
0.0100519
0.0015224
0.0100222
0.00143556
0.00999483
0.00135052
0.00996942
0.00126713
0.00994584
0.00118525
0.00992397
0.00110476
0.0099037
0.00102555
0.00988494
0.000947495
0.00986761
0.000870508
0.00985166
0.000794492
0.00983702
0.000719359
0.00982366
0.000645024
0.00981153
0.00057141
0.0098006
0.000498441
0.00979086
0.000426045
0.00978228
0.000354153
0.00977484
0.0002827
0.00976852
0.000211621
0.00976331
0.000140854
0.00975919
7.03383e-05
0.00975611
0.00975406
0.00267438
0.0105585
0.00255039
0.0104913
0.00243079
0.0104224
0.002316
0.0103612
0.00220526
0.0103095
0.00209783
0.0102642
0.00199328
0.0102233
0.00189133
0.0101859
0.00179173
0.0101515
0.00169428
0.0101197
0.00159878
0.0100903
0.00150509
0.0100631
0.00141306
0.0100379
0.00132255
0.0100145
0.00123343
0.00999281
0.0011456
0.00997277
0.00105895
0.00995427
0.00097337
0.00993724
0.000888769
0.00992162
0.00080506
0.00990737
0.000722156
0.00989443
0.000639977
0.00988278
0.000558447
0.00987239
0.000477492
0.00986323
0.00039704
0.00985529
0.000317025
0.00984853
0.000237378
0.00984296
0.000158037
0.00983853
7.89364e-05
0.00983521
0.009833
0.00292199
0.0106909
0.00279005
0.0106232
0.00266196
0.0105505
0.00253853
0.0104847
0.00241915
0.0104288
0.00230309
0.0103802
0.00218994
0.0103364
0.00207939
0.0102964
0.00197119
0.0102597
0.00186512
0.0102258
0.00176101
0.0101944
0.00165871
0.0101654
0.00155808
0.0101385
0.00145898
0.0101136
0.0013613
0.0100905
0.0012649
0.0100692
0.0011697
0.0100495
0.00107558
0.0100314
0.000982448
0.0100148
0.000890217
0.0099996
0.000798801
0.00998585
0.000708114
0.00997347
0.00061808
0.00996243
0.000528622
0.00995269
0.000439667
0.00994424
0.000351143
0.00993706
0.000262984
0.00993112
0.000175121
0.00992639
8.74857e-05
0.00992284
0.00992049
0.00316781
0.0108307
0.00302804
0.010763
0.00289163
0.0106869
0.00275964
0.0106167
0.00263161
0.0105569
0.0025069
0.0105049
0.00238513
0.0104582
0.002266
0.0104156
0.00214923
0.0103764
0.0020346
0.0103404
0.00192193
0.0103071
0.00181109
0.0102762
0.00170192
0.0102477
0.0015943
0.0102212
0.00148811
0.0101967
0.00138322
0.0101741
0.00127953
0.0101532
0.00117694
0.0101339
0.00107535
0.0101163
0.000974676
0.0101003
0.000874819
0.0100857
0.000775698
0.0100726
0.000677232
0.0100609
0.000579343
0.0100506
0.000481955
0.0100416
0.000384994
0.010034
0.00028839
0.0100277
0.000192073
0.0100227
9.59703e-05
0.0100189
0.0100165
0.0034114
0.0109779
0.00326387
0.0109105
0.00311924
0.0108316
0.00297875
0.0107571
0.0028421
0.0106935
0.00270879
0.0106382
0.00257849
0.0105885
0.00245088
0.0105432
0.00232562
0.0105017
0.00220248
0.0104635
0.00208133
0.0104283
0.00196201
0.0103956
0.00184438
0.0103653
0.00172831
0.0103373
0.00161368
0.0103113
0.00150038
0.0102874
0.00138829
0.0102653
0.00127731
0.0102449
0.00116735
0.0102263
0.00105831
0.0102093
0.000950093
0.0101939
0.000842622
0.0101801
0.000735809
0.0101677
0.000629574
0.0101568
0.000523838
0.0101474
0.000418524
0.0101393
0.000313558
0.0101327
0.000208868
0.0101274
0.000104377
0.0101234
0.0101208
0.00365228
0.0111326
0.00349721
0.0110656
0.00334469
0.0109841
0.00319587
0.010906
0.00305056
0.0108388
0.00290857
0.0107802
0.00276973
0.0107274
0.00263366
0.0106792
0.00249995
0.0106354
0.00236839
0.0105951
0.00223883
0.0105578
0.00211113
0.0105233
0.00198513
0.0104913
0.00186071
0.0104617
0.00173775
0.0104343
0.00161613
0.010409
0.00149574
0.0103856
0.00137648
0.0103642
0.00125824
0.0103445
0.00114093
0.0103266
0.00102447
0.0103104
0.000908748
0.0102958
0.000793691
0.0102828
0.000679212
0.0102713
0.000565229
0.0102614
0.000451663
0.0102529
0.000338435
0.0102459
0.00022547
0.0102404
0.000112688
0.0102362
0.0102335
0.00389003
0.0112948
0.00372729
0.0112284
0.00356693
0.0111444
0.00340995
0.011063
0.00325619
0.0109926
0.00310573
0.0109307
0.00295854
0.0108745
0.00281414
0.0108236
0.00267209
0.0107774
0.0025322
0.010735
0.00239434
0.0106957
0.00225834
0.0106593
0.00212407
0.0106256
0.00199139
0.0105944
0.00186019
0.0105655
0.00173036
0.0105388
0.00160177
0.0105142
0.00147432
0.0104916
0.00134792
0.0104709
0.00122246
0.0104521
0.00109785
0.010435
0.000973996
0.0104196
0.000850807
0.010406
0.000728195
0.0103939
0.000606078
0.0103835
0.00048437
0.0103746
0.00036299
0.0103673
0.000241859
0.0103615
0.000120893
0.0103572
0.0103544
0.00412425
0.0114644
0.00395441
0.0113982
0.00378674
0.0113121
0.00362166
0.011228
0.00345923
0.011155
0.00330011
0.0110898
0.00314449
0.0110302
0.00299175
0.0109764
0.00284142
0.0109278
0.00269332
0.0108831
0.00254729
0.0108417
0.00240313
0.0108034
0.00226071
0.010768
0.00211991
0.0107352
0.00198062
0.0107048
0.0018427
0.0106767
0.00170605
0.0106509
0.00157056
0.0106271
0.00143613
0.0106054
0.00130266
0.0105856
0.00117004
0.0105676
0.00103818
0.0105515
0.000906998
0.0105371
0.00077639
0.0105245
0.000646272
0.0105136
0.000516556
0.0105043
0.000387157
0.0104967
0.000257991
0.0104907
0.00012897
0.0104862
0.0104834
0.00435404
0.0116416
0.0041765
0.0115757
0.00400157
0.011487
0.00382898
0.0114006
0.00365852
0.0113255
0.00349131
0.011257
0.00332758
0.0111939
0.00316667
0.0111373
0.00300819
0.0110863
0.002852
0.0110393
0.00269788
0.0109958
0.00254566
0.0109556
0.00239521
0.0109184
0.0022464
0.010884
0.00209911
0.0108521
0.00195323
0.0108226
0.00180864
0.0107955
0.00166523
0.0107705
0.0015229
0.0107477
0.00138153
0.0107269
0.00124104
0.0107081
0.00110131
0.0106912
0.000962262
0.0106762
0.000823791
0.010663
0.000685806
0.0106516
0.000548216
0.0106419
0.000410931
0.010634
0.000273862
0.0106277
0.000136917
0.0106232
0.0106203
0.00458014
0.0118245
0.00439643
0.0117594
0.00421452
0.0116689
0.00403371
0.0115814
0.00385453
0.0115047
0.00367885
0.0114327
0.00350682
0.0113659
0.00333771
0.0113064
0.0031712
0.0112528
0.00300708
0.0112034
0.00284507
0.0111578
0.00268497
0.0111157
0.00252667
0.0110767
0.00237004
0.0110406
0.00221496
0.0110072
0.0020613
0.0109763
0.00190895
0.0109478
0.0017578
0.0109217
0.00160775
0.0108978
0.00145867
0.010876
0.00131048
0.0108563
0.00116307
0.0108386
0.00101633
0.0108229
0.000870168
0.0108091
0.000724491
0.0107972
0.0005792
0.0107872
0.000434201
0.010779
0.000289399
0.0107725
0.000144698
0.0107679
0.010765
0.00479829
0.012014
0.00460751
0.0119502
0.0044197
0.0118568
0.00423247
0.0117687
0.00404621
0.0116909
0.00386308
0.0116158
0.00368317
0.0115458
0.00350607
0.0114835
0.00333168
0.0114271
0.00315972
0.0113754
0.00298987
0.0113277
0.00282199
0.0112836
0.00265594
0.0112428
0.00249158
0.0112049
0.0023288
0.0111699
0.00216748
0.0111376
0.00200749
0.0111078
0.00184872
0.0110804
0.00169106
0.0110554
0.00153441
0.0110326
0.00137865
0.0110121
0.00122368
0.0109936
0.00106939
0.0109772
0.000915689
0.0109629
0.000762462
0.0109505
0.000609614
0.0109401
0.000457045
0.0109315
0.000304654
0.0109249
0.000152339
0.0109202
0.0109173
0.00501525
0.0122022
0.00481995
0.0121455
0.00462428
0.0120524
0.00442794
0.011965
0.00423322
0.0118856
0.00404197
0.0118071
0.00385391
0.0117339
0.0036689
0.0116685
0.00348683
0.0116092
0.00330727
0.0115549
0.00312988
0.0115051
0.0029545
0.011459
0.00278098
0.0114163
0.00260918
0.0113767
0.00243898
0.0113401
0.00227025
0.0113063
0.00210289
0.0112752
0.00193676
0.0112466
0.00177177
0.0112204
0.00160779
0.0111966
0.00144471
0.0111751
0.00128243
0.0111559
0.00112084
0.0111388
0.000959825
0.0111239
0.000799285
0.011111
0.000639114
0.0111002
0.000479206
0.0110915
0.000319457
0.0110847
0.000159756
0.0110799
0.0110771
0.00521192
0.0123911
0.00501549
0.0123419
0.00481757
0.0122504
0.00461669
0.0121659
0.00441642
0.0120859
0.00421834
0.0120052
0.00402271
0.0119295
0.00383008
0.0118611
0.0036404
0.0117989
0.00345324
0.0117421
0.00326833
0.01169
0.00308547
0.0116419
0.00290452
0.0115973
0.00272531
0.011556
0.00254773
0.0115177
0.00237166
0.0114824
0.00219698
0.0114499
0.00202356
0.01142
0.0018513
0.0113927
0.00168008
0.0113679
0.00150978
0.0113454
0.00134029
0.0113254
0.00117149
0.0113076
0.00100328
0.0112921
0.000835535
0.0112788
0.000668155
0.0112676
0.000501025
0.0112586
0.000334035
0.0112517
0.000167061
0.0112468
0.0112442
0.00541586
0.0125612
0.00521706
0.0125407
0.00500879
0.0124586
0.00479879
0.0123759
0.00459096
0.0122937
0.00438524
0.0122109
0.00418207
0.0121327
0.00398211
0.0120611
0.00378522
0.0119958
0.00359096
0.0119364
0.00339902
0.0118819
0.00320919
0.0118317
0.00302127
0.0117852
0.00283513
0.0117421
0.00265064
0.0117022
0.00246767
0.0116654
0.00228612
0.0116314
0.00210585
0.0116002
0.00192674
0.0115718
0.00174868
0.0115459
0.00157155
0.0115226
0.00139524
0.0115017
0.00121962
0.0114832
0.00104458
0.0114671
0.000870001
0.0114533
0.000695775
0.0114418
0.000521783
0.0114326
0.000347909
0.0114255
0.000174022
0.0114207
0.0114182
0.00558761
0.0126926
0.00540738
0.012721
0.00520222
0.0126638
0.00498978
0.0125883
0.00477611
0.0125074
0.00456304
0.012424
0.00435202
0.0123437
0.00414389
0.0122692
0.00393879
0.0122009
0.00373648
0.0121387
0.00353666
0.0120817
0.00333907
0.0120293
0.0031435
0.0119808
0.0029498
0.0119358
0.00275782
0.0118942
0.00256744
0.0118557
0.00237854
0.0118203
0.00219098
0.0117878
0.00200465
0.0117581
0.00181941
0.0117311
0.00163515
0.0117068
0.00145174
0.0116851
0.00126905
0.0116659
0.00108696
0.0116492
0.00090535
0.0116349
0.000724092
0.0116231
0.00054306
0.0116136
0.000362127
0.0116065
0.000181185
0.0116017
0.0115994
0.00124199
0.0126169
-0.00116625
0.0012515
0.0127115
0.00123231
0.012683
0.00119912
0.0126215
0.0011599
0.0125466
0.00111586
0.012468
0.0010685
0.0123911
0.0010194
0.0123183
0.000969343
0.012251
0.000918834
0.0121892
0.000868273
0.0121323
0.000817898
0.0120797
0.000767865
0.0120308
0.000718306
0.0119854
0.000669311
0.0119432
0.000620939
0.0119041
0.00057322
0.011868
0.000526162
0.0118349
0.000479757
0.0118045
0.000433982
0.0117769
0.000388802
0.011752
0.000344174
0.0117297
0.000300048
0.01171
0.000256369
0.0116929
0.000213077
0.0116782
0.00017011
0.0116661
0.0001274
0.0116563
8.48733e-05
0.011649
4.24383e-05
0.0116441
0.0116418
0.00113207
0.0125655
-0.00108069
0.00113725
0.0127063
0.00112091
0.0126993
0.00109545
0.012647
0.00106344
0.0125786
0.00102643
0.012505
0.000986198
0.0124313
0.000943809
0.0123607
0.000900001
0.0122948
0.000855349
0.0122338
0.000810226
0.0121774
0.000764881
0.012125
0.000719516
0.0120762
0.00067429
0.0120306
0.000629322
0.0119881
0.000584698
0.0119487
0.000540477
0.0119123
0.000496695
0.0118786
0.000453367
0.0118478
0.000410493
0.0118198
0.00036806
0.0117944
0.000326044
0.0117718
0.000284414
0.0117517
0.000243132
0.0117342
0.000202153
0.0117192
0.00016143
0.0117068
0.00012091
0.0116968
8.05359e-05
0.0116894
4.02435e-05
0.0116844
0.011682
0.00103163
0.0125099
-0.000976046
0.00103735
0.0127006
0.00102269
0.012714
0.000999987
0.0126697
0.000972221
0.0126064
0.000940573
0.0125367
0.000906018
0.0124659
0.000869312
0.0123974
0.000831068
0.012333
0.000791753
0.0122731
0.000751692
0.0122175
0.000711129
0.0121656
0.000670264
0.012117
0.000629264
0.0120716
0.000588264
0.0120291
0.000547369
0.0119896
0.000506658
0.011953
0.000466184
0.0119191
0.000425983
0.011888
0.000386075
0.0118597
0.000346463
0.0118341
0.000307142
0.0118111
0.000268097
0.0117907
0.000229305
0.011773
0.000190738
0.0117578
0.000152362
0.0117452
0.000114142
0.0117351
7.60331e-05
0.0117275
3.79938e-05
0.0117224
0.01172
0.000927342
0.0124482
-0.000865602
0.000940961
0.0126869
0.000931224
0.0127237
0.000911867
0.012689
0.000887711
0.0126306
0.0008603
0.0125641
0.000830339
0.0124958
0.000798378
0.0124294
0.00076489
0.0123665
0.000730242
0.0123078
0.000694702
0.012253
0.000658486
0.0122018
0.000621776
0.0121537
0.000584732
0.0121086
0.00054749
0.0120664
0.000510162
0.012027
0.000472838
0.0119903
0.000435585
0.0119564
0.000398451
0.0119252
0.000361469
0.0118967
0.000324658
0.0118709
0.000288027
0.0118477
0.000251573
0.0118272
0.000215289
0.0118092
0.000179159
0.0117939
0.000143164
0.0117811
0.000107278
0.0117709
7.14729e-05
0.0117633
3.57148e-05
0.0117582
0.0117558
0.000824454
0.0123829
-0.00075911
0.000845687
0.0126657
0.000842281
0.0127271
0.00082771
0.0127036
0.000807703
0.0126506
0.000784352
0.0125874
0.000758519
0.0125217
0.000730746
0.0124571
0.000701455
0.0123958
0.000670961
0.0123383
0.000639495
0.0122845
0.000607243
0.012234
0.000574366
0.0121866
0.000541012
0.012142
0.000507312
0.0121001
0.000473378
0.0120609
0.000439303
0.0120244
0.000405162
0.0119905
0.000371012
0.0119593
0.000336896
0.0119308
0.000302843
0.0119049
0.000268873
0.0118817
0.000234995
0.011861
0.000201213
0.011843
0.000167522
0.0118276
0.000133914
0.0118148
0.000100374
0.0118045
6.68855e-05
0.0117968
3.34275e-05
0.0117917
0.0117892
0.000726491
0.012316
-0.000659619
0.000753248
0.012639
0.000755566
0.0127248
0.000745968
0.0127132
0.000730382
0.0126661
0.000711159
0.0126066
0.000689323
0.0125435
0.000665485
0.012481
0.000640081
0.0124212
0.00061342
0.0123649
0.000585723
0.0123122
0.000557157
0.0122626
0.00052787
0.0122159
0.000497998
0.0121719
0.000467664
0.0121304
0.000436979
0.0120916
0.000406037
0.0120553
0.000374915
0.0120216
0.000343676
0.0119906
0.00031237
0.0119621
0.000281035
0.0119363
0.000249699
0.011913
0.000218381
0.0118924
0.000187093
0.0118743
0.000155839
0.0118589
0.000124622
0.011846
9.34365e-05
0.0118357
6.22747e-05
0.0118279
3.11285e-05
0.0118228
0.0118203
0.000634614
0.0122484
-0.000566991
0.000665347
0.0126082
0.000672244
0.0127179
0.000666949
0.0127185
0.000655423
0.0126777
0.000640119
0.0126219
0.000622109
0.0125615
0.000602021
0.0125011
0.000580299
0.0124429
0.000557257
0.012388
0.000533112
0.0123363
0.000508029
0.0122877
0.000482146
0.0122418
0.000455592
0.0121984
0.000428484
0.0121575
0.000400929
0.0121191
0.00037302
0.0120832
0.000344837
0.0120498
0.000316447
0.012019
0.000287903
0.0119907
0.00025925
0.0119649
0.000230522
0.0119417
0.000201746
0.0119211
0.000172942
0.0119031
0.000144123
0.0118877
0.000115298
0.0118748
8.64718e-05
0.0118645
5.76448e-05
0.0118568
2.88179e-05
0.0118516
0.0118491
0.000548437
0.0121806
-0.000480636
0.000582225
0.0125744
0.000592887
0.0127072
0.000591222
0.0127202
0.000583207
0.0126857
0.000571401
0.0126338
0.000556899
0.012576
0.000540307
0.0125176
0.000522047
0.0124612
0.00050242
0.0124076
0.000481637
0.0123571
0.000459858
0.0123095
0.000437217
0.0122644
0.000413835
0.0122218
0.000389825
0.0121815
0.000365289
0.0121437
0.000340321
0.0121082
0.000314999
0.0120751
0.000289392
0.0120446
0.000263559
0.0120165
0.000237547
0.0119909
0.000211397
0.0119679
0.00018514
0.0119474
0.000158804
0.0119295
0.000132409
0.0119141
0.000105971
0.0119012
7.95025e-05
0.011891
5.30104e-05
0.0118833
2.6504e-05
0.0118781
0.0118756
0.000467324
0.0121133
-0.000400076
0.000503466
0.0125383
0.000517368
0.0126933
0.000518897
0.0127186
0.000513972
0.0126906
0.000505266
0.0126425
0.00049392
0.0125874
0.000480524
0.012531
0.000465469
0.0124762
0.000449033
0.012424
0.000431413
0.0123747
0.00041276
0.0123281
0.0003932
0.012284
0.000372846
0.0122421
0.000351806
0.0122026
0.000330179
0.0121653
0.000308054
0.0121303
0.00028551
0.0120977
0.000262617
0.0120675
0.000239435
0.0120397
0.000216016
0.0120143
0.000192404
0.0119915
0.000168635
0.0119712
0.000144742
0.0119533
0.000120751
0.0119381
9.66841e-05
0.0119253
7.25597e-05
0.0119151
4.83925e-05
0.0119074
2.41983e-05
0.0119023
0.0118998
0.000390771
0.0120474
-0.000324885
0.000428627
0.0125004
0.000445365
0.0126766
0.000449794
0.0127142
0.00044767
0.0126927
0.000441763
0.0126484
0.000433276
0.0125959
0.000422798
0.0125415
0.000410694
0.0124883
0.000397222
0.0124375
0.000382563
0.0123894
0.000366856
0.0123438
0.000350214
0.0123006
0.000332744
0.0122596
0.000314546
0.0122208
0.000295713
0.0121841
0.000276331
0.0121497
0.000256477
0.0121175
0.000236222
0.0120877
0.000215627
0.0120603
0.000194744
0.0120352
0.000173621
0.0120126
0.000152299
0.0119925
0.000130814
0.0119748
0.000109197
0.0119597
8.74759e-05
0.011947
6.56737e-05
0.0119369
4.38115e-05
0.0119293
2.19111e-05
0.0119242
0.0119217
0.000318581
0.0119836
-0.000254754
0.00035751
0.0124615
0.000376618
0.0126575
0.000383645
0.0127072
0.00038409
0.0126923
0.000380763
0.0126517
0.000374909
0.0126017
0.000367119
0.0125493
0.000357747
0.0124977
0.000347033
0.0124482
0.000335146
0.0124013
0.000322212
0.0123568
0.000308335
0.0123145
0.000293609
0.0122743
0.000278126
0.0122363
0.000261974
0.0122003
0.000245235
0.0121664
0.000227983
0.0121348
0.000210286
0.0121054
0.000192207
0.0120783
0.000173799
0.0120536
0.000155112
0.0120313
0.000136189
0.0120114
0.00011707
0.011994
9.77895e-05
0.011979
7.838e-05
0.0119664
5.88696e-05
0.0119564
3.92842e-05
0.0119489
1.96506e-05
0.0119439
0.0119414
0.000250419
0.0119225
-0.00018928
0.00028993
0.012422
0.000310979
0.0126365
0.000320251
0.0126979
0.000323024
0.0126895
0.000322085
0.0126526
0.000318678
0.0126051
0.000313391
0.0125546
0.000306569
0.0125045
0.000298439
0.0124564
0.000289161
0.0124106
0.000278847
0.0123671
0.000267591
0.0123258
0.000255479
0.0122865
0.000242593
0.0122491
0.000229014
0.0122139
0.000214819
0.0121806
0.00020008
0.0121495
0.000184863
0.0121206
0.000169229
0.012094
0.000153231
0.0120696
0.000136922
0.0120476
0.000120346
0.012028
0.000103546
0.0120108
8.65592e-05
0.0119959
6.94222e-05
0.0119836
5.21667e-05
0.0119737
3.48232e-05
0.0119662
1.7423e-05
0.0119613
0.0119588
0.000186069
0.0118645
-0.000128104
0.000225767
0.0123823
0.000248213
0.012614
0.000259384
0.0126867
0.000264301
0.0126846
0.000265581
0.0126514
0.000264449
0.0126062
0.0002615
0.0125575
0.000257073
0.012509
0.000251382
0.0124621
0.000244572
0.0124174
0.000236745
0.0123749
0.000227985
0.0123345
0.000218368
0.0122961
0.000207969
0.0122595
0.000196863
0.012225
0.00018512
0.0121924
0.000172809
0.0121618
0.000159993
0.0121334
0.000146731
0.0121072
0.000133079
0.0120833
0.000119088
0.0120616
0.000104804
0.0120423
9.02717e-05
0.0120253
7.5532e-05
0.0120107
6.06232e-05
0.0119985
4.5581e-05
0.0119887
3.04394e-05
0.0119814
1.52334e-05
0.0119765
0.011974
0.00012517
0.0118095
-7.0135e-05
0.000164707
0.0123428
0.000187991
0.0125907
0.000200895
0.0126738
0.000207791
0.0126777
0.000211113
0.012648
0.000212095
0.0126053
0.000211342
0.0125583
0.000209179
0.0125111
0.000205801
0.0124654
0.000201338
0.0124218
0.000195882
0.0123804
0.000189506
0.0123409
0.00018228
0.0123033
0.000174269
0.0122676
0.000165541
0.0122337
0.000156163
0.0122017
0.000146198
0.0121718
0.000135707
0.0121439
0.000124748
0.0121182
0.000113375
0.0120947
0.00010164
0.0120733
8.95909e-05
0.0120543
7.7273e-05
0.0120376
6.47294e-05
0.0120232
5.20008e-05
0.0120112
3.91259e-05
0.0120016
2.61417e-05
0.0119943
1.30866e-05
0.0119895
0.0119871
6.78625e-05
0.0117572
-1.562e-05
0.000106312
0.0123043
0.000130016
0.012567
0.000144615
0.0126592
0.00015333
0.012669
0.000158531
0.0126428
0.000161492
0.0126023
0.00016282
0.012557
0.000162812
0.0125111
0.00016164
0.0124666
0.00015942
0.0124241
0.000156233
0.0123835
0.000152145
0.012345
0.000147214
0.0123082
0.0001415
0.0122733
0.000135065
0.0122401
0.000127968
0.0122088
0.000120271
0.0121795
0.000112031
0.0121522
0.000103304
0.0121269
9.41454e-05
0.0121038
8.46047e-05
0.0120829
7.47312e-05
0.0120642
6.45716e-05
0.0120478
5.41705e-05
0.0120336
4.35709e-05
0.0120218
3.28135e-05
0.0120123
2.19385e-05
0.0120052
1.09868e-05
0.0120005
0.0119981
1.46646e-05
0.0117084
3.41219e-05
5.0017e-05
0.012269
7.44529e-05
0.0125426
9.04517e-05
0.0126432
0.000100712
0.0126587
0.000107655
0.0126359
0.000112518
0.0125974
0.000115845
0.0125536
0.000117902
0.0125091
0.000118845
0.0124657
0.000118779
0.0124241
0.000117774
0.0123846
0.000115887
0.0123469
0.000113167
0.012311
0.000109668
0.0122768
0.000105444
0.0122443
0.000100552
0.0122137
9.50477e-05
0.012185
8.89873e-05
0.0121582
8.2425e-05
0.0121335
7.54136e-05
0.0121108
6.80042e-05
0.0120903
6.0246e-05
0.0120719
5.21866e-05
0.0120558
4.38721e-05
0.0120419
3.53471e-05
0.0120303
2.66546e-05
0.012021
1.7837e-05
0.012014
8.9375e-06
0.0120094
0.0120071
-3.9183e-05
0.011665
8.26433e-05
-4.88334e-06
0.0122347
2.11728e-05
0.0125165
3.80127e-05
0.0126264
4.96688e-05
0.0126471
5.83386e-05
0.0126272
6.50587e-05
0.0125907
7.03196e-05
0.0125484
7.43723e-05
0.012505
7.73615e-05
0.0124627
7.93777e-05
0.0124221
8.04813e-05
0.0123834
8.07191e-05
0.0123466
8.01351e-05
0.0123115
7.87753e-05
0.0122781
7.6689e-05
0.0122464
7.3928e-05
0.0122165
7.05454e-05
0.0121884
6.6595e-05
0.0121622
6.21291e-05
0.012138
5.71999e-05
0.0121158
5.18583e-05
0.0120956
4.61537e-05
0.0120777
4.01348e-05
0.0120618
3.38488e-05
0.0120482
2.73417e-05
0.0120368
2.06584e-05
0.0120277
1.38434e-05
0.0120208
6.94206e-06
0.0120163
0.012014
-9.10387e-05
0.0116253
0.000130668
-5.65877e-05
0.0122002
-3.1328e-05
0.0124913
-1.32432e-05
0.0126083
9.91496e-08
0.0126337
1.04839e-05
0.0126168
1.90001e-05
0.0125822
2.61464e-05
0.0125412
3.21499e-05
0.012499
3.71348e-05
0.0124577
4.11781e-05
0.0124181
4.4329e-05
0.0123803
4.6628e-05
0.0123443
4.81129e-05
0.01231
4.88238e-05
0.0122774
4.88059e-05
0.0122465
4.81075e-05
0.0122172
4.67784e-05
0.0121897
4.48699e-05
0.0121641
4.24336e-05
0.0121404
3.95214e-05
0.0121187
3.61837e-05
0.012099
3.24704e-05
0.0120814
2.84308e-05
0.0120659
2.41132e-05
0.0120525
1.9565e-05
0.0120414
1.4833e-05
0.0120324
9.96333e-06
0.0120257
5.00322e-06
0.0120212
0.012019
-0.000141386
0.011589
0.000177748
-0.000108442
0.0121673
-8.27293e-05
0.0124656
-6.33579e-05
0.0125889
-4.84185e-05
0.0126188
-3.62206e-05
0.0126046
-2.58248e-05
0.0125718
-1.67708e-05
0.0125322
-8.83e-06
0.0124911
-1.88154e-06
0.0124507
4.14439e-06
0.012412
9.29451e-06
0.0123751
1.3601e-05
0.01234
1.70957e-05
0.0123066
1.98155e-05
0.0122747
2.18016e-05
0.0122445
2.30999e-05
0.0122159
2.37588e-05
0.0121891
2.38257e-05
0.012164
2.33538e-05
0.0121409
2.23936e-05
0.0121196
2.09955e-05
0.0121004
1.92101e-05
0.0120832
1.70872e-05
0.012068
1.46765e-05
0.012055
1.20265e-05
0.012044
9.18556e-06
0.0120353
6.20159e-06
0.0120287
3.12343e-06
0.0120243
0.0120221
-0.000191076
0.0115558
0.000224255
-0.000159262
0.0121354
-0.000132968
0.0124393
-0.000112326
0.0125683
-9.57265e-05
0.0126022
-8.17253e-05
0.0125906
-6.94577e-05
0.0125595
-5.84916e-05
0.0125212
-4.86155e-05
0.0124812
-3.97181e-05
0.0124418
-3.17353e-05
0.012404
-2.46281e-05
0.012368
-1.83647e-05
0.0123338
-1.29149e-05
0.0123011
-8.24509e-06
0.01227
-4.31674e-06
0.0122405
-1.08684e-06
0.0122127
1.49232e-06
0.0121865
3.47331e-06
0.012162
4.9023e-06
0.0121394
5.82957e-06
0.0121187
6.30676e-06
0.0120999
6.38512e-06
0.0120831
6.11556e-06
0.0120683
5.54862e-06
0.0120555
4.73437e-06
0.0120449
3.72244e-06
0.0120363
2.5625e-06
0.0120299
1.30491e-06
0.0120256
0.0120234
-0.000240243
0.0115255
0.000270579
-0.000209171
0.0121044
-0.000182327
0.0124124
-0.000160311
0.0125463
-0.000141983
0.0125839
-0.000126118
0.0125748
-0.000111941
0.0125454
-9.90448e-05
0.0125083
-8.72309e-05
0.0124694
-7.63966e-05
0.012431
-6.64827e-05
0.0123941
-5.74504e-05
0.012359
-4.92703e-05
0.0123256
-4.19133e-05
0.0122937
-3.53465e-05
0.0122635
-2.95319e-05
0.0122347
-2.44269e-05
0.0122076
-1.99853e-05
0.012182
-1.61603e-05
0.0121582
-1.28996e-05
0.0121362
-1.0152e-05
0.0121159
-7.866e-06
0.0120976
-5.98986e-06
0.0120812
-4.47174e-06
0.0120668
-3.25992e-06
0.0120543
-2.30306e-06
0.0120439
-1.55007e-06
0.0120355
-9.49728e-07
0.0120293
-4.50244e-07
0.0120251
0.012023
-0.000288973
0.0114975
0.000316951
-0.000258447
0.0120738
-0.000230883
0.0123849
-0.000207377
0.0125228
-0.000187226
0.0125637
-0.000169427
0.012557
-0.00015329
0.0125292
-0.000138436
0.0124935
-0.000124677
0.0124556
-0.000111913
0.0124182
-0.000100088
0.0123823
-8.91624e-05
0.0123481
-7.91059e-05
0.0123155
-6.98889e-05
0.0122845
-6.14784e-05
0.0122551
-5.3836e-05
0.0122271
-4.6919e-05
0.0122006
-4.06811e-05
0.0121758
-3.50725e-05
0.0121526
-3.0043e-05
0.0121311
-2.55402e-05
0.0121114
-2.15113e-05
0.0120936
-1.79035e-05
0.0120776
-1.46638e-05
0.0120635
-1.17393e-05
0.0120514
-9.07733e-06
0.0120412
-6.62531e-06
0.0120331
-4.33058e-06
0.012027
-2.13986e-06
0.0120229
0.0120208
-0.000337364
0.0114714
0.000363488
-0.000307136
0.0120436
-0.000278652
0.0123564
-0.000253528
0.0124976
-0.000231452
0.0125416
-0.000211642
0.0125372
-0.000193491
0.0125111
-0.000176648
0.0124766
-0.000160933
0.0124399
-0.000146247
0.0124036
-0.000132531
0.0123686
-0.000119743
0.0123353
-0.000107851
0.0123036
-9.68213e-05
0.0122735
-8.66203e-05
0.0122449
-7.7208e-05
0.0122177
-6.85399e-05
0.012192
-6.05685e-05
0.0121678
-5.32429e-05
0.0121453
-4.65113e-05
0.0121244
-4.03204e-05
0.0121053
-3.46164e-05
0.0120879
-2.9345e-05
0.0120723
-2.44518e-05
0.0120586
-1.98825e-05
0.0120468
-1.5583e-05
0.0120369
-1.14993e-05
0.012029
-7.57737e-06
0.012023
-3.76241e-06
0.0120191
0.0120171
-0.000385443
0.0114466
0.000410216
-0.000355194
0.0120134
-0.000325585
0.0123268
-0.000298707
0.0124708
-0.000274609
0.0125175
-0.000252714
0.0125153
-0.000232498
0.0124909
-0.000213639
0.0124578
-0.00019596
0.0124222
-0.000179361
0.012387
-0.000163776
0.012353
-0.00014916
0.0123207
-0.000135474
0.0122899
-0.000122682
0.0122607
-0.000110746
0.0122329
-9.96235e-05
0.0122065
-8.92671e-05
0.0121816
-7.96273e-05
0.0121582
-7.06519e-05
0.0121363
-6.22867e-05
0.012116
-5.44769e-05
0.0120974
-4.71672e-05
0.0120806
-4.03016e-05
0.0120655
-3.38245e-05
0.0120521
-2.76799e-05
0.0120407
-2.18123e-05
0.0120311
-1.61663e-05
0.0120234
-1.06862e-05
0.0120176
-5.31604e-06
0.0120137
0.0120118
-0.000433117
0.0114227
0.000457055
-0.000402507
0.0119828
-0.000371567
0.0122958
-0.000342803
0.012442
-0.000316593
0.0124913
-0.00029255
0.0124912
-0.000270231
0.0124685
-0.000249338
0.0124369
-0.000229697
0.0124026
-0.0002112
0.0123685
-0.000193775
0.0123356
-0.000177369
0.0123043
-0.000161937
0.0122745
-0.000147437
0.0122462
-0.000133825
0.0122193
-0.000121054
0.0121938
-0.000109075
0.0121696
-9.7835e-05
0.0121469
-8.7279e-05
0.0121258
-7.73506e-05
0.0121061
-6.79931e-05
0.0120881
-5.91491e-05
0.0120717
-5.0761e-05
0.0120571
-4.27713e-05
0.0120442
-3.51228e-05
0.012033
-2.77583e-05
0.0120237
-2.0621e-05
0.0120162
-1.36537e-05
0.0120106
-6.79901e-06
0.0120068
0.012005
-0.000480183
0.011399
0.000503809
-0.000448881
0.0119515
-0.000416415
0.0122634
-0.000385648
0.0124112
-0.000357255
0.0124629
-0.00033102
0.012465
-0.000306576
0.0124441
-0.000283647
0.0124139
-0.000262057
0.012381
-0.00024169
0.0123481
-0.000222464
0.0123164
-0.000204316
0.0122861
-0.000187192
0.0122574
-0.000171042
0.0122301
-0.000155818
0.0122041
-0.000141467
0.0121794
-0.000127935
0.0121561
-0.000115166
0.0121342
-0.000103102
0.0121137
-9.1684e-05
0.0120947
-8.08522e-05
0.0120773
-7.05476e-05
0.0120614
-6.07105e-05
0.0120472
-5.12819e-05
0.0120347
-4.22027e-05
0.0120239
-3.34143e-05
0.0120149
-2.48583e-05
0.0120077
-1.64763e-05
0.0120022
-8.20964e-06
0.0119986
0.0119968
-0.00052634
0.0113752
0.000550161
-0.000494038
0.0119192
-0.00045988
0.0122292
-0.000427023
0.0123784
-0.000396401
0.0124323
-0.000367957
0.0124365
-0.000341392
0.0124175
-0.000316446
0.012389
-0.000292938
0.0123575
-0.000270743
0.0123259
-0.000249767
0.0122954
-0.000229935
0.0122663
-0.000211182
0.0122386
-0.000193451
0.0122123
-0.000176686
0.0121873
-0.000160827
0.0121636
-0.000145817
0.0121411
-0.000131595
0.01212
-0.000118099
0.0121002
-0.000105267
0.0120819
-9.30373e-05
0.012065
-8.13482e-05
0.0120497
-7.01381e-05
0.012036
-5.93459e-05
0.0120239
-4.89112e-05
0.0120135
-3.87736e-05
0.0120048
-2.88735e-05
0.0119978
-1.9151e-05
0.0119925
-9.54635e-06
0.011989
0.0119872
-0.000571206
0.0113507
0.000595686
-0.000537635
0.0118856
-0.000501656
0.0121932
-0.00046666
0.0123434
-0.000433804
0.0123995
-0.000403167
0.0124059
-0.000374512
0.0123889
-0.000347593
0.0123621
-0.000322221
0.0123321
-0.00029826
0.0123019
-0.0002756
0.0122727
-0.000254154
0.0122448
-0.000233847
0.0122183
-0.000214612
0.0121931
-0.000196383
0.0121691
-0.000179097
0.0121463
-0.000162689
0.0121247
-0.000147093
0.0121044
-0.000132245
0.0120853
-0.000118079
0.0120677
-0.000104531
0.0120515
-9.15366e-05
0.0120367
-7.90317e-05
0.0120235
-6.69537e-05
0.0120119
-5.52404e-05
0.0120018
-4.38303e-05
0.0119934
-3.26621e-05
0.0119866
-2.16749e-05
0.0119815
-1.08077e-05
0.0119781
0.0119764
-0.000614329
0.0113252
0.000639872
-0.000579276
0.0118505
-0.000541397
0.0121553
-0.000504262
0.0123062
-0.000469208
0.0123644
-0.000436434
0.0123731
-0.000405756
0.0123582
-0.000376935
0.0123333
-0.000349778
0.012305
-0.000324131
0.0122763
-0.000299871
0.0122485
-0.000276896
0.0122219
-0.000255122
0.0121966
-0.000234469
0.0121724
-0.000214864
0.0121495
-0.000196237
0.0121277
-0.000178517
0.012107
-0.000161633
0.0120875
-0.000145518
0.0120692
-0.000130102
0.0120523
-0.000115318
0.0120367
-0.000101099
0.0120225
-8.73801e-05
0.0120098
-7.4096e-05
0.0119986
-6.11831e-05
0.0119889
-4.85785e-05
0.0119808
-3.62199e-05
0.0119742
-2.40451e-05
0.0119693
-1.19923e-05
0.0119661
0.0119644
-0.000655211
0.0112982
0.000682147
-0.000618531
0.0118139
-0.000578732
0.0121155
-0.000539508
0.012267
-0.000502342
0.0123272
-0.000467531
0.0123383
-0.000434931
0.0123256
-0.000404313
0.0123026
-0.000375474
0.0122761
-0.000348244
0.0122491
-0.000322485
0.0122227
-0.000298084
0.0121975
-0.000274941
0.0121734
-0.000252968
0.0121505
-0.000232083
0.0121286
-0.000212209
0.0121078
-0.000193269
0.012088
-0.000175189
0.0120694
-0.000157896
0.0120519
-0.000141317
0.0120357
-0.000125383
0.0120208
-0.000110024
0.0120072
-9.51733e-05
0.0119949
-8.07647e-05
0.0119842
-6.67327e-05
0.0119749
-5.30134e-05
0.011967
-3.95433e-05
0.0119608
-2.62594e-05
0.011956
-1.3099e-05
0.0119529
0.0119513
-0.000693334
0.0112697
0.000721904
-0.000654952
0.0117755
-0.000613279
0.0120739
-0.000572076
0.0122258
-0.000532933
0.0122881
-0.000496225
0.0123016
-0.000461844
0.0122912
-0.000429566
0.0122704
-0.000399174
0.0122457
-0.000370487
0.0122204
-0.000343351
0.0121956
-0.000317639
0.0121718
-0.00029324
0.012149
-0.000270056
0.0121273
-0.000247997
0.0121065
-0.000226978
0.0120868
-0.000206917
0.012068
-0.000187736
0.0120502
-0.000169358
0.0120336
-0.000151707
0.0120181
-0.000134711
0.0120038
-0.0001183
0.0119907
-0.000102403
0.011979
-8.6953e-05
0.0119687
-7.18841e-05
0.0119598
-5.71311e-05
0.0119523
-4.26296e-05
0.0119463
-2.8316e-05
0.0119417
-1.4127e-05
0.0119387
0.0119372
-0.000728174
0.0112393
0.000758523
-0.000688099
0.0117354
-0.000644663
0.0120304
-0.000601648
0.0121828
-0.000560714
0.0122472
-0.000522295
0.0122632
-0.00048631
0.0122552
-0.000452537
0.0122366
-0.000420751
0.0122139
-0.000390755
0.0121904
-0.000362382
0.0121672
-0.000335491
0.0121449
-0.000309961
0.0121235
-0.000285685
0.012103
-0.000262565
0.0120834
-0.000240511
0.0120647
-0.000219435
0.0120469
-0.000199254
0.01203
-0.000179888
0.0120142
-0.00016126
0.0119994
-0.000143294
0.0119858
-0.000125918
0.0119734
-0.000109062
0.0119622
-9.26557e-05
0.0119523
-7.66333e-05
0.0119438
-6.09285e-05
0.0119366
-4.54767e-05
0.0119308
-3.02135e-05
0.0119265
-1.50756e-05
0.0119236
0.0119221
-0.000759233
0.0112072
0.000791405
-0.000717553
0.0116937
-0.000672533
0.0119854
-0.000627928
0.0121382
-0.000585436
0.0122047
-0.000545533
0.0122233
-0.000508158
0.0122179
-0.000473088
0.0122015
-0.000440089
0.0121809
-0.000408952
0.0121592
-0.000379498
0.0121377
-0.000351575
0.0121169
-0.000325052
0.012097
-0.000299814
0.0120778
-0.000275756
0.0120594
-0.000252782
0.0120417
-0.000230801
0.0120249
-0.000209725
0.012009
-0.000189473
0.0119939
-0.000169965
0.0119799
-0.000151123
0.011967
-0.000132874
0.0119551
-0.000115146
0.0119445
-9.78698e-05
0.011935
-8.0978e-05
0.0119269
-6.44042e-05
0.01192
-4.80834e-05
0.0119145
-3.19514e-05
0.0119103
-1.59445e-05
0.0119076
0.0119062
-0.000786056
0.0111732
0.000819994
-0.000742938
0.0116506
-0.000696576
0.011939
-0.000650655
0.0120923
-0.000606884
0.0121609
-0.000565761
0.0121822
-0.000527239
0.0121793
-0.000491095
0.0121654
-0.000457089
0.0121469
-0.000424999
0.0121271
-0.000394637
0.0121074
-0.000365841
0.0120881
-0.000338473
0.0120696
-0.000312411
0.0120517
-0.000287544
0.0120345
-0.000263772
0.012018
-0.000241001
0.0120021
-0.00021914
0.0119871
-0.000198106
0.0119729
-0.000177816
0.0119596
-0.000158194
0.0119473
-0.000139164
0.0119361
-0.000120654
0.011926
-0.000102595
0.011917
-8.4918e-05
0.0119092
-6.75581e-05
0.0119027
-5.045e-05
0.0118974
-3.35296e-05
0.0118934
-1.67338e-05
0.0118908
0.0118894
-0.000808251
0.0111377
0.000843804
-0.000763938
0.0116063
-0.000716531
0.0118916
-0.000669616
0.0120454
-0.000624881
0.0121162
-0.000582834
0.0121401
-0.000543436
0.0121399
-0.000506466
0.0121284
-0.000471674
0.0121121
-0.000438834
0.0120943
-0.00040775
0.0120763
-0.000378252
0.0120587
-0.000350195
0.0120415
-0.000323454
0.012025
-0.000297914
0.012009
-0.00027347
0.0119935
-0.000250027
0.0119787
-0.000227494
0.0119646
-0.000205783
0.0119512
-0.000184814
0.0119387
-0.000164508
0.011927
-0.00014479
0.0119164
-0.000125587
0.0119068
-0.000106832
0.0118982
-8.84551e-05
0.0118908
-7.03919e-05
0.0118846
-5.25777e-05
0.0118796
-3.49493e-05
0.0118758
-1.74439e-05
0.0118733
0.011872
-0.000825514
0.0111007
0.000862445
-0.000780309
0.0115611
-0.000732205
0.0118435
-0.000684652
0.0119978
-0.000639299
0.0120708
-0.000596649
0.0120975
-0.000556668
0.0121
-0.000519134
0.0120909
-0.000483796
0.0120768
-0.000450422
0.0120609
-0.00041881
0.0120447
-0.000388788
0.0120286
-0.000360207
0.012013
-0.000332937
0.0119977
-0.000306862
0.0119829
-0.000281876
0.0119685
-0.000257883
0.0119547
-0.00023479
0.0119415
-0.000212511
0.0119289
-0.000190964
0.0119171
-0.000170071
0.0119061
-0.000149757
0.0118961
-0.000129952
0.0118869
-0.000110586
0.0118788
-9.15937e-05
0.0118718
-7.29092e-05
0.0118659
-5.44694e-05
0.0118611
-3.62122e-05
0.0118575
-1.80759e-05
0.0118551
0.0118539
-0.000837637
0.0110627
0.000875636
-0.000791896
0.0115153
-0.000743477
0.0117951
-0.000695672
0.01195
-0.000650067
0.0120252
-0.000607153
0.0120546
-0.000566894
0.0120597
-0.000529073
0.0120531
-0.000493436
0.0120412
-0.000459751
0.0120272
-0.000427814
0.0120127
-0.00039745
0.0119983
-0.000368511
0.011984
-0.000340866
0.01197
-0.000314397
0.0119564
-0.000289001
0.0119431
-0.000264579
0.0119303
-0.000241041
0.0119179
-0.0002183
0.0119062
-0.000196277
0.0118951
-0.000174893
0.0118848
-0.000154077
0.0118752
-0.000133757
0.0118666
-0.000113867
0.011859
-9.43407e-05
0.0118523
-7.51155e-05
0.0118467
-5.61293e-05
0.0118421
-3.73212e-05
0.0118387
-1.86311e-05
0.0118364
0.0118353
-0.000844519
0.011024
0.000883221
-0.000798636
0.0114695
-0.00075031
0.0117468
-0.000702654
0.0119023
-0.000657174
0.0119797
-0.000614341
0.0120117
-0.000574119
0.0120195
-0.000536292
0.0120152
-0.000500609
0.0120055
-0.000466838
0.0119935
-0.00043478
0.0119807
-0.00040426
0.0119677
-0.000375131
0.0119549
-0.000347264
0.0119422
-0.000320544
0.0119297
-0.000294867
0.0119175
-0.000270138
0.0119056
-0.000246267
0.0118941
-0.000223171
0.0118831
-0.000200771
0.0118727
-0.000178992
0.011863
-0.000157763
0.011854
-0.000137015
0.0118459
-0.000116684
0.0118386
-9.67055e-05
0.0118323
-7.70186e-05
0.011827
-5.75632e-05
0.0118227
-3.82802e-05
0.0118194
-1.91115e-05
0.0118173
0.0118162
-0.000846172
0.010985
0.000885169
-0.000800564
0.0114238
-0.00075275
0.011699
-0.000705647
0.0118552
-0.000660672
0.0119348
-0.000618267
0.0119693
-0.000578394
0.0119796
-0.00054084
0.0119777
-0.000505361
0.01197
-0.000471731
0.0119598
-0.000439753
0.0119487
-0.00040926
0.0119373
-0.000380108
0.0119257
-0.000352171
0.0119142
-0.000325338
0.0119029
-0.000299508
0.0118916
-0.00027459
0.0118806
-0.000250498
0.01187
-0.00022715
0.0118597
-0.000204471
0.01185
-0.000182389
0.0118409
-0.000160835
0.0118325
-0.000139744
0.0118248
-0.000119053
0.0118179
-9.87006e-05
0.011812
-7.86283e-05
0.0118069
-5.87784e-05
0.0118028
-3.90941e-05
0.0117998
-1.95196e-05
0.0117977
0.0117966
-0.000842717
0.0109462
0.000881579
-0.000797811
0.0113789
-0.000750927
0.0116521
-0.000704775
0.0118091
-0.000660675
0.0118907
-0.000619036
0.0119277
-0.000579815
0.0119404
-0.000542808
0.0119407
-0.000507777
0.011935
-0.000474506
0.0119266
-0.000442806
0.011917
-0.000412517
0.011907
-0.000383502
0.0118967
-0.000355642
0.0118864
-0.00032883
0.011876
-0.000302972
0.0118658
-0.00027798
0.0118556
-0.000253772
0.0118458
-0.000230273
0.0118362
-0.000207409
0.0118271
-0.000185113
0.0118186
-0.000163319
0.0118107
-0.000141965
0.0118034
-0.000120992
0.011797
-0.000100341
0.0117913
-7.99565e-05
0.0117865
-5.97838e-05
0.0117827
-3.97688e-05
0.0117797
-1.98582e-05
0.0117778
0.0117768
-0.000834385
0.0109079
0.000872672
-0.000790602
0.0113352
-0.000745052
0.0116065
-0.000700231
0.0117643
-0.000657358
0.0118478
-0.000616806
0.0118871
-0.000578527
0.0119021
-0.000542324
0.0119045
-0.000507973
0.0119006
-0.000475268
0.0118939
-0.000444034
0.0118858
-0.000414118
0.011877
-0.000385394
0.011868
-0.000357749
0.0118587
-0.000331087
0.0118494
-0.000305318
0.01184
-0.000280361
0.0118307
-0.000256139
0.0118215
-0.000232582
0.0118127
-0.000209623
0.0118042
-0.000187196
0.0117962
-0.000165243
0.0117887
-0.000143703
0.0117819
-0.000122522
0.0117758
-0.000101644
0.0117704
-8.10173e-05
0.0117659
-6.05899e-05
0.0117622
-4.03112e-05
0.0117595
-2.01309e-05
0.0117576
0.0117567
-0.000821507
0.0108706
0.000858789
-0.00077925
0.0112929
-0.000735411
0.0115627
-0.000692275
0.0117211
-0.000650955
0.0118065
-0.000611784
0.011848
-0.000574713
0.011865
-0.000539554
0.0118693
-0.000506098
0.0118672
-0.000474153
0.0118619
-0.000443557
0.0118552
-0.000414171
0.0118477
-0.000385879
0.0118397
-0.000358581
0.0118314
-0.000332187
0.011823
-0.000306616
0.0118144
-0.000281795
0.0118059
-0.000257654
0.0117974
-0.000234129
0.0117891
-0.000211157
0.0117812
-0.00018868
0.0117737
-0.000166641
0.0117667
-0.000144988
0.0117602
-0.000123668
0.0117545
-0.00010263
0.0117494
-8.18266e-05
0.0117451
-6.12086e-05
0.0117416
-4.07291e-05
0.011739
-2.03415e-05
0.0117372
0.0117363
-0.000804504
0.0108347
0.00084037
-0.000764144
0.0112525
-0.00072236
0.0115209
-0.000681226
0.01168
-0.000641749
0.011767
-0.000604225
0.0118104
-0.0005686
0.0118294
-0.0005347
0.0118354
-0.000502331
0.0118348
-0.000471319
0.0118309
-0.000441517
0.0118254
-0.000412803
0.0118189
-0.000385073
0.011812
-0.000358238
0.0118046
-0.00033222
0.011797
-0.000306948
0.0117892
-0.000282356
0.0117813
-0.000258382
0.0117734
-0.000234969
0.0117657
-0.000212061
0.0117583
-0.000189606
0.0117512
-0.000167552
0.0117446
-0.000145852
0.0117385
-0.000124457
0.0117331
-0.000103322
0.0117283
-8.2402e-05
0.0117242
-6.1653e-05
0.0117209
-4.10314e-05
0.0117184
-2.04945e-05
0.0117167
0.0117158
-0.000783873
0.0108007
0.000817947
-0.000745742
0.0112144
-0.000706314
0.0114815
-0.000667456
0.0116411
-0.000630071
0.0117296
-0.00059442
0.0117748
-0.000560448
0.0117954
-0.000527992
0.0118029
-0.000496877
0.0118037
-0.000466948
0.011801
-0.000438077
0.0117965
-0.000410159
0.011791
-0.000383103
0.0117849
-0.000356836
0.0117783
-0.00033129
0.0117714
-0.000306405
0.0117643
-0.000282124
0.011757
-0.000258395
0.0117497
-0.000235167
0.0117425
-0.000212392
0.0117355
-0.000190024
0.0117289
-0.000168018
0.0117226
-0.000146331
0.0117169
-0.00012492
0.0117117
-0.000103744
0.0117071
-8.27631e-05
0.0117032
-6.19374e-05
0.0117
-4.12275e-05
0.0116976
-2.05944e-05
0.011696
0.0116952
-0.000760178
0.0107687
0.000792126
-0.000724559
0.0111788
-0.000687735
0.0114447
-0.000651377
0.0116048
-0.000616289
0.0116945
-0.000582696
0.0117412
-0.000550544
0.0117633
-0.000519684
0.0117721
-0.000489961
0.011774
-0.000461241
0.0117723
-0.000433415
0.0117687
-0.000406396
0.011764
-0.000380111
0.0117586
-0.000354499
0.0117527
-0.000329507
0.0117464
-0.000305084
0.0117398
-0.000281186
0.0117331
-0.000257769
0.0117263
-0.00023479
0.0117195
-0.000212208
0.0117129
-0.000189986
0.0117066
-0.000168083
0.0117007
-0.000146463
0.0116952
-0.000125088
0.0116903
-0.000103922
0.0116859
-8.29304e-05
0.0116822
-6.20772e-05
0.0116792
-4.13274e-05
0.0116769
-2.06464e-05
0.0116754
0.0116746
-0.000734031
0.0107392
0.000763571
-0.000701152
0.0111459
-0.000667125
0.0114106
-0.000633437
0.0115711
-0.000600799
0.0116619
-0.000569405
0.0117098
-0.0005392
0.0117331
-0.000510053
0.0117429
-0.000481828
0.0117457
-0.000454413
0.0117449
-0.000427722
0.011742
-0.000401685
0.011738
-0.000376247
0.0117332
-0.000351362
0.0117278
-0.000326989
0.0117221
-0.000303092
0.011716
-0.000279636
0.0117096
-0.000256586
0.0117032
-0.00023391
0.0116969
-0.000211574
0.0116906
-0.000189546
0.0116846
-0.000167794
0.011679
-0.000146288
0.0116737
-0.000124995
0.011669
-0.000103884
0.0116648
-8.29257e-05
0.0116613
-6.20884e-05
0.0116584
-4.13419e-05
0.0116562
-2.06557e-05
0.0116547
0.0116539
-0.000706079
0.0107123
0.000732983
-0.000676108
0.0111159
-0.000645011
0.0113795
-0.000614107
0.0115402
-0.000584019
0.0116318
-0.000554916
0.0116807
-0.000526743
0.0117049
-0.000499387
0.0117156
-0.000472733
0.0117191
-0.000446693
0.0117188
-0.0004212
0.0117165
-0.000396204
0.011713
-0.000371669
0.0117087
-0.000347564
0.0117037
-0.000323861
0.0116984
-0.000300538
0.0116926
-0.00027757
0.0116867
-0.000254933
0.0116806
-0.000232602
0.0116745
-0.000210553
0.0116686
-0.000188762
0.0116628
-0.000167202
0.0116574
-0.000145848
0.0116524
-0.000124676
0.0116478
-0.000103659
0.0116438
-8.27714e-05
0.0116404
-6.19878e-05
0.0116376
-4.12819e-05
0.0116354
-2.06279e-05
0.011634
0.0116333
-0.000676985
0.0106882
0.000701086
-0.00065003
0.011089
-0.000621936
0.0113515
-0.000593869
0.0115121
-0.000566379
0.0116043
-0.000539609
0.0116539
-0.00051351
0.0116788
-0.000487984
0.0116901
-0.00046294
0.011694
-0.000438312
0.0116942
-0.000414053
0.0116922
-0.000390135
0.0116891
-0.000366538
0.0116851
-0.000343247
0.0116804
-0.00032025
0.0116754
-0.000297534
0.0116699
-0.000275088
0.0116642
-0.000252896
0.0116584
-0.000230944
0.0116526
-0.000209215
0.0116468
-0.000187691
0.0116413
-0.000166355
0.0116361
-0.000145187
0.0116312
-0.000124167
0.0116268
-0.000103275
0.0116229
-8.24905e-05
0.0116196
-6.17921e-05
0.0116169
-4.11586e-05
0.0116148
-2.05684e-05
0.0116134
0.0116127
-0.000647418
0.010667
0.000668609
-0.000623523
0.0110651
-0.000598443
0.0113264
-0.00057321
0.0114869
-0.00054831
0.0115794
-0.000523866
0.0116295
-0.000499838
0.0116548
-0.000476143
0.0116664
-0.000452714
0.0116706
-0.000429504
0.011671
-0.00040649
0.0116692
-0.000383663
0.0116662
-0.000361018
0.0116624
-0.000338558
0.011658
-0.000316283
0.0116531
-0.000294193
0.0116478
-0.000272288
0.0116423
-0.000250563
0.0116367
-0.000229011
0.011631
-0.000207625
0.0116254
-0.000186393
0.0116201
-0.000165304
0.011615
-0.000144346
0.0116102
-0.000123503
0.011606
-0.000102762
0.0116022
-8.21058e-05
0.0115989
-6.15185e-05
0.0115963
-4.09833e-05
0.0115943
-2.04828e-05
0.0115929
0.0115922
-0.000618032
0.0106487
0.000636267
-0.00059718
0.0110442
-0.000575064
0.0113043
-0.000552604
0.0114644
-0.000530233
0.011557
-0.000508062
0.0116073
-0.000486059
0.0116328
-0.000464158
0.0116445
-0.000442313
0.0116488
-0.0004205
0.0116492
-0.000398715
0.0116474
-0.000376966
0.0116445
-0.000355268
0.0116407
-0.000333636
0.0116364
-0.000312084
0.0116315
-0.000290626
0.0116264
-0.00026927
0.011621
-0.00024802
0.0116154
-0.000226881
0.0116099
-0.00020585
0.0116044
-0.000184924
0.0115991
-0.000164099
0.0115941
-0.000143368
0.0115895
-0.000122721
0.0115853
-0.000102148
0.0115816
-8.164e-05
0.0115784
-6.11837e-05
0.0115758
-4.07669e-05
0.0115739
-2.03767e-05
0.0115725
0.0115719
-0.000589459
0.0106335
0.000604749
-0.000571573
0.0110264
-0.000552313
0.011285
-0.000532511
0.0114446
-0.000512559
0.0115371
-0.000492561
0.0115873
-0.000472494
0.0116127
-0.000452314
0.0116243
-0.000431992
0.0116284
-0.000411524
0.0116287
-0.000390926
0.0116268
-0.000370223
0.0116238
-0.000349444
0.0116199
-0.000328621
0.0116155
-0.000307779
0.0116107
-0.000286941
0.0116055
-0.000266128
0.0116001
-0.000245353
0.0115947
-0.000224626
0.0115892
-0.000203955
0.0115837
-0.000183342
0.0115785
-0.000162789
0.0115736
-0.000142294
0.011569
-0.000121853
0.0115649
-0.000101463
0.0115612
-8.11153e-05
0.0115581
-6.0804e-05
0.0115555
-4.05203e-05
0.0115536
-2.02553e-05
0.0115523
0.0115516
-0.000562286
0.010621
0.000574701
-0.000547233
0.0110113
-0.000530667
0.0112684
-0.000513357
0.0114273
-0.000495666
0.0115194
-0.000477698
0.0115693
-0.000459444
0.0115945
-0.000440875
0.0116057
-0.000421984
0.0116095
-0.000402783
0.0116095
-0.000383307
0.0116074
-0.000363595
0.0116041
-0.000343692
0.0116
-0.000323641
0.0115955
-0.000303479
0.0115905
-0.00028324
0.0115853
-0.000262953
0.0115799
-0.000242639
0.0115743
-0.000222317
0.0115688
-0.000202
0.0115634
-0.000181698
0.0115582
-0.000161418
0.0115533
-0.000141162
0.0115488
-0.000120933
0.0115446
-0.000100731
0.011541
-8.05525e-05
0.0115379
-6.03949e-05
0.0115354
-4.02538e-05
0.0115334
-2.01239e-05
0.0115321
0.0115315
-0.000537054
0.0106114
0.000546716
-0.000524649
0.0109989
-0.000510569
0.0112543
-0.000495537
0.0114123
-0.000479907
0.0115038
-0.000463789
0.0115532
-0.000447187
0.0115779
-0.000430092
0.0115886
-0.00041251
0.011592
-0.000394475
0.0115915
-0.000376033
0.0115889
-0.00035724
0.0115853
-0.00033815
0.0115809
-0.000318819
0.0115761
-0.000299295
0.011571
-0.00027962
0.0115656
-0.00025983
0.0115601
-0.000239955
0.0115545
-0.00022002
0.0115489
-0.000200045
0.0115435
-0.000180045
0.0115382
-0.00016003
0.0115333
-0.000140011
0.0115287
-0.000119993
0.0115246
-9.9979e-05
0.011521
-7.99718e-05
0.0115179
-5.99714e-05
0.0115154
-3.99771e-05
0.0115134
-1.99872e-05
0.0115122
0.0115115
-0.000514234
0.0106043
0.000521315
-0.000504247
0.0109889
-0.000492397
0.0112425
-0.000479392
0.0113993
-0.000465587
0.01149
-0.000451103
0.0115387
-0.000435964
0.0115627
-0.000420176
0.0115728
-0.000403762
0.0115756
-0.000386769
0.0115745
-0.000369256
0.0115714
-0.00035129
0.0115673
-0.000332938
0.0115626
-0.000314262
0.0115575
-0.000295321
0.0115521
-0.000276164
0.0115465
-0.000256833
0.0115407
-0.000237367
0.011535
-0.000217794
0.0115293
-0.00019814
0.0115238
-0.000178425
0.0115185
-0.000158665
0.0115135
-0.000138873
0.011509
-0.000119059
0.0115048
-9.92294e-05
0.0115012
-7.93909e-05
0.011498
-5.95466e-05
0.0114955
-3.9699e-05
0.0114936
-1.98498e-05
0.0114923
0.0114917
-0.000494235
0.0105996
0.000498949
-0.000486396
0.0109811
-0.000476487
0.0112326
-0.000465223
0.011388
-0.000452975
0.0114777
-0.000439884
0.0115256
-0.000425992
0.0115488
-0.000411323
0.0115582
-0.000395913
0.0115601
-0.00037982
0.0115584
-0.000363114
0.0115547
-0.000345871
0.0115501
-0.000328166
0.0115449
-0.00031007
0.0115394
-0.000291647
0.0115336
-0.000272952
0.0115278
-0.000254035
0.0115218
-0.000234937
0.0115159
-0.000215694
0.0115101
-0.000196334
0.0115044
-0.000176883
0.0114991
-0.000157359
0.011494
-0.00013778
0.0114894
-0.000118158
0.0114852
-9.8504e-05
0.0114815
-7.8827e-05
0.0114784
-5.91332e-05
0.0114758
-3.94279e-05
0.0114739
-1.97155e-05
0.0114726
0.0114719
-0.00047737
0.010597
0.000479974
-0.000471374
0.0109751
-0.000463087
0.0112243
-0.000453252
0.0113782
-0.000442271
0.0114667
-0.000430309
0.0115137
-0.000417432
0.0115359
-0.000403676
0.0115444
-0.000389091
0.0115456
-0.000373743
0.011543
-0.000357711
0.0115387
-0.000341076
0.0115334
-0.00032392
0.0115277
-0.000306318
0.0115218
-0.000288339
0.0115157
-0.000270045
0.0115095
-0.000251488
0.0115033
-0.000232714
0.0114971
-0.000213762
0.0114911
-0.000194665
0.0114853
-0.00017545
0.0114798
-0.000156141
0.0114747
-0.000136755
0.01147
-0.000117311
0.0114657
-9.78197e-05
0.011462
-7.82936e-05
0.0114588
-5.87413e-05
0.0114563
-3.91706e-05
0.0114543
-1.95881e-05
0.011453
0.0114523
-0.000463889
0.0105962
0.000464669
-0.000459408
0.0109706
-0.000452403
0.0112173
-0.000443669
0.0113695
-0.000433647
0.0114567
-0.000422538
0.0115026
-0.000410426
0.0115238
-0.000397366
0.0115313
-0.000383416
0.0115316
-0.000368648
0.0115283
-0.000353145
0.0115232
-0.000336994
0.0115173
-0.000320278
0.011511
-0.000303078
0.0115046
-0.000285464
0.011498
-0.000267502
0.0114915
-0.000249246
0.011485
-0.000230746
0.0114786
-0.000212043
0.0114724
-0.000193171
0.0114665
-0.000174162
0.0114608
-0.000155039
0.0114556
-0.000135826
0.0114508
-0.000116539
0.0114465
-9.7194e-05
0.0114427
-7.78044e-05
0.0114395
-5.8381e-05
0.0114368
-3.89334e-05
0.0114349
-1.94704e-05
0.0114335
0.0114329
-0.000453917
0.0105969
0.000453193
-0.000450603
0.0109673
-0.000444527
0.0112112
-0.000436554
0.0113615
-0.000427177
0.0114473
-0.000416635
0.011492
-0.000405037
0.0115122
-0.000392451
0.0115188
-0.00037894
0.0115181
-0.000364583
0.0115139
-0.000349462
0.011508
-0.000333667
0.0115015
-0.000317281
0.0114946
-0.000300386
0.0114877
-0.000283055
0.0114807
-0.000265353
0.0114738
-0.000247338
0.011467
-0.000229058
0.0114603
-0.000210558
0.0114539
-0.000191873
0.0114478
-0.000173035
0.011442
-0.000154071
0.0114366
-0.000135004
0.0114317
-0.000115854
0.0114273
-9.66368e-05
0.0114234
-7.73674e-05
0.0114202
-5.80585e-05
0.0114175
-3.8721e-05
0.0114155
-1.93651e-05
0.0114142
0.0114135
-0.000447537
0.0105988
0.00044564
-0.000445036
0.0109648
-0.000439534
0.0112057
-0.000431982
0.0113539
-0.000422935
0.0114383
-0.000412675
0.0114818
-0.000401336
0.0115009
-0.000388997
0.0115064
-0.000375729
0.0115048
-0.000361609
0.0114998
-0.00034672
0.0114932
-0.000331149
0.0114859
-0.000314979
0.0114785
-0.000298291
0.011471
-0.000281156
0.0114636
-0.00026364
0.0114563
-0.0002458
0.0114492
-0.000227685
0.0114422
-0.000209338
0.0114356
-0.000190798
0.0114292
-0.000172096
0.0114233
-0.000153259
0.0114178
-0.000134311
0.0114128
-0.000115272
0.0114083
-9.61615e-05
0.0114043
-7.69933e-05
0.011401
-5.77813e-05
0.0113983
-3.85378e-05
0.0113963
-1.92738e-05
0.0113949
0.0113942
-0.000444671
0.0106015
0.000441956
-0.00044262
0.0109627
-0.000437339
0.0112004
-0.000429875
0.0113465
-0.000420853
0.0114293
-0.000410599
0.0114715
-0.000399272
0.0114896
-0.000386965
0.0114941
-0.000373749
0.0114916
-0.0003597
0.0114857
-0.000344897
0.0114784
-0.000329424
0.0114704
-0.00031336
0.0114624
-0.000296782
0.0114544
-0.000279761
0.0114466
-0.000262358
0.0114389
-0.000244629
0.0114314
-0.000226624
0.0114242
-0.000208384
0.0114173
-0.000189947
0.0114108
-0.000171344
0.0114047
-0.000152602
0.011399
-0.000133746
0.0113939
-0.000114796
0.0113893
-9.57696e-05
0.0113853
-7.66834e-05
0.0113819
-5.75512e-05
0.0113792
-3.83856e-05
0.0113771
-1.91983e-05
0.0113757
0.011375
-0.000445253
0.0106047
0.000442066
-0.000443306
0.0109608
-0.000437908
0.011195
-0.000430214
0.0113388
-0.000420924
0.01142
-0.00041041
0.011461
-0.000398859
0.011478
-0.000386371
0.0114816
-0.000373021
0.0114783
-0.00035888
0.0114716
-0.000344021
0.0114635
-0.00032852
0.0114549
-0.000312452
0.0114463
-0.000295889
0.0114378
-0.000278896
0.0114296
-0.000261533
0.0114215
-0.000243852
0.0114137
-0.000225901
0.0114063
-0.000207718
0.0113992
-0.000189341
0.0113924
-0.000170799
0.0113862
-0.00015212
0.0113804
-0.000133325
0.0113751
-0.000114437
0.0113704
-9.54719e-05
0.0113663
-7.64462e-05
0.0113629
-5.73737e-05
0.0113601
-3.82674e-05
0.011358
-1.91388e-05
0.0113566
0.0113559
-0.000448988
0.010608
0.000445693
-0.000446803
0.0109586
-0.000440969
0.0111892
-0.000432751
0.0113306
-0.000422926
0.0114101
-0.000411913
0.01145
-0.000399924
0.011466
-0.000387069
0.0114688
-0.000373419
0.0114646
-0.000359039
0.0114572
-0.000343995
0.0114485
-0.000328355
0.0114393
-0.000312185
0.0114302
-0.00029555
0.0114212
-0.000278511
0.0114125
-0.000261121
0.0114041
-0.000243431
0.0113961
-0.000225482
0.0113883
-0.000207313
0.011381
-0.000188956
0.0113741
-0.000170442
0.0113676
-0.000151794
0.0113617
-0.000133035
0.0113563
-0.000114185
0.0113516
-9.52598e-05
0.0113474
-7.62754e-05
0.0113439
-5.72452e-05
0.0113411
-3.81817e-05
0.011339
-1.90965e-05
0.0113375
0.0113368
-0.000455718
0.0106111
0.000452642
-0.000452986
0.0109559
-0.000446428
0.0111826
-0.000437419
0.0113215
-0.000426814
0.0113995
-0.000415081
0.0114383
-0.000402456
0.0114534
-0.000389055
0.0114554
-0.000374947
0.0114505
-0.00036019
0.0114424
-0.000344838
0.0114331
-0.000328948
0.0114234
-0.00031258
0.0114138
-0.00029579
0.0114044
-0.000278629
0.0113954
-0.000261148
0.0113867
-0.000243389
0.0113783
-0.000225392
0.0113703
-0.00020719
0.0113628
-0.000188815
0.0113557
-0.000170291
0.0113491
-0.000151643
0.0113431
-0.000132891
0.0113376
-0.000114053
0.0113327
-9.51444e-05
0.0113285
-7.61794e-05
0.011325
-5.7171e-05
0.0113221
-3.81309e-05
0.0113199
-1.90701e-05
0.0113185
0.0113177
-0.000464917
0.0106136
0.0004624
-0.000461346
0.0109523
-0.000453807
0.0111751
-0.000443782
0.0113115
-0.000432197
0.0113879
-0.000419567
0.0114256
-0.000406147
0.01144
-0.00039206
0.0114413
-0.00037737
0.0114358
-0.000362124
0.0114272
-0.000346366
0.0114173
-0.000330142
0.0114072
-0.0003135
0.0113971
-0.000296486
0.0113874
-0.000279145
0.011378
-0.000261519
0.011369
-0.000243646
0.0113604
-0.000225559
0.0113522
-0.000207289
0.0113445
-0.000188862
0.0113373
-0.000170302
0.0113306
-0.000151629
0.0113244
-0.000132861
0.0113188
-0.000114015
0.0113139
-9.51043e-05
0.0113096
-7.61423e-05
0.011306
-5.71406e-05
0.0113031
-3.81098e-05
0.0113009
-1.90602e-05
0.0112994
0.0112987
-0.000476435
0.0106153
0.00047475
-0.000471784
0.0109476
-0.000463048
0.0111664
-0.00045181
0.0113003
-0.000439067
0.0113752
-0.000425377
0.0114119
-0.000411016
0.0114256
-0.000396112
0.0114264
-0.000380722
0.0114204
-0.000364882
0.0114114
-0.000348624
0.0114011
-0.000331981
0.0113905
-0.000314988
0.0113802
-0.000297683
0.0113701
-0.000280102
0.0113604
-0.000262278
0.0113512
-0.000244242
0.0113424
-0.000226023
0.011334
-0.000207646
0.0113261
-0.000189133
0.0113188
-0.000170505
0.0113119
-0.000151778
0.0113057
-0.000132969
0.0113
-0.000114091
0.011295
-9.51563e-05
0.0112907
-7.61767e-05
0.011287
-5.71619e-05
0.0112841
-3.81214e-05
0.0112818
-1.90641e-05
0.0112804
0.0112796
-0.000489476
0.0106159
0.000488912
-0.000483527
0.0109417
-0.000473426
0.0111563
-0.00046084
0.0112877
-0.000446827
0.0113612
-0.00043198
0.0113971
-0.000416593
0.0114102
-0.000400793
0.0114106
-0.000384633
0.0114043
-0.000368136
0.0113949
-0.00035132
0.0113843
-0.000334207
0.0113734
-0.000316819
0.0113628
-0.000299182
0.0113525
-0.000281323
0.0113426
-0.000263268
0.0113331
-0.00024504
0.0113242
-0.000226662
0.0113156
-0.000208155
0.0113076
-0.000189535
0.0113001
-0.00017082
0.0112932
-0.000152022
0.0112869
-0.000133156
0.0112812
-0.000114233
0.0112761
-9.52619e-05
0.0112717
-7.62533e-05
0.011268
-5.72153e-05
0.011265
-3.81558e-05
0.0112628
-1.90824e-05
0.0112613
0.0112605
-0.000504063
0.0106151
0.00050481
-0.00049666
0.0109343
-0.000485061
0.0111447
-0.00047101
0.0112736
-0.000455622
0.0113458
-0.000439522
0.011381
-0.00042302
0.0113937
-0.000406245
0.0113938
-0.00038924
0.0113873
-0.000372018
0.0113776
-0.000354583
0.0113668
-0.000336942
0.0113558
-0.000319106
0.0113449
-0.000301089
0.0113345
-0.000282909
0.0113244
-0.000264582
0.0113148
-0.000246126
0.0113057
-0.000227556
0.0112971
-0.000208888
0.011289
-0.000190133
0.0112814
-0.000171305
0.0112744
-0.000152413
0.011268
-0.000133468
0.0112622
-0.000114478
0.0112571
-9.54517e-05
0.0112527
-7.63953e-05
0.0112489
-5.73157e-05
0.0112459
-3.8219e-05
0.0112437
-1.91108e-05
0.0112422
0.0112414
-0.00051903
0.0106128
0.000521299
-0.000510055
0.0109253
-0.000496895
0.0111315
-0.000481353
0.0112581
-0.000464577
0.011329
-0.00044722
0.0113636
-0.000429599
0.0113761
-0.000411843
0.011376
-0.000393988
0.0113694
-0.000376033
0.0113597
-0.00035797
0.0113488
-0.000339792
0.0113376
-0.000321498
0.0113266
-0.000303093
0.011316
-0.000284582
0.0113059
-0.000265976
0.0112962
-0.000247283
0.011287
-0.000228513
0.0112783
-0.000209676
0.0112701
-0.000190779
0.0112625
-0.000171831
0.0112554
-0.000152839
0.011249
-0.00013381
0.0112432
-0.000114749
0.011238
-9.56623e-05
0.0112336
-7.65545e-05
0.0112298
-5.74304e-05
0.0112268
-3.82944e-05
0.0112246
-1.9151e-05
0.011223
0.0112223
-0.000534835
0.010609
0.000538718
-0.000524219
0.0109147
-0.000509446
0.0111167
-0.000492365
0.011241
-0.000474163
0.0113108
-0.000455511
0.011345
-0.000436736
0.0113573
-0.000417965
0.0113573
-0.000399224
0.0113507
-0.000380502
0.011341
-0.000361777
0.01133
-0.00034303
0.0113189
-0.000324247
0.0113079
-0.000305422
0.0112972
-0.000286552
0.011287
-0.000267638
0.0112773
-0.000248682
0.0112681
-0.000229688
0.0112593
-0.000210658
0.0112511
-0.000191598
0.0112434
-0.00017251
0.0112363
-0.000153398
0.0112299
-0.000134265
0.011224
-0.000115115
0.0112189
-9.59508e-05
0.0112144
-7.67741e-05
0.0112107
-5.75879e-05
0.0112076
-3.83946e-05
0.0112054
-1.9196e-05
0.0112038
0.0112031
-0.000549732
0.0106034
0.000555338
-0.000537471
0.0109024
-0.000521145
0.0111004
-0.000502618
0.0112225
-0.000483089
0.0112913
-0.000463238
0.0113251
-0.000443394
0.0113375
-0.000423681
0.0113376
-0.000404118
0.0113311
-0.000384682
0.0113215
-0.00036534
0.0113107
-0.000346061
0.0112996
-0.00032682
0.0112886
-0.000307602
0.011278
-0.000288395
0.0112678
-0.000269192
0.0112581
-0.000249989
0.0112489
-0.000230784
0.0112401
-0.000211574
0.0112319
-0.000192359
0.0112242
-0.00017314
0.0112171
-0.000153915
0.0112107
-0.000134687
0.0112048
-0.000115454
0.0111997
-9.62171e-05
0.0111952
-7.69778e-05
0.0111914
-5.77363e-05
0.0111884
-3.84934e-05
0.0111861
-1.92502e-05
0.0111846
0.0111838
-0.000565007
0.010596
0.000572336
-0.000551103
0.0108885
-0.000533226
0.0110825
-0.000513253
0.0112025
-0.000492398
0.0112704
-0.000471348
0.0113041
-0.000450434
0.0113166
-0.000429773
0.0113169
-0.000409379
0.0113107
-0.000389217
0.0113014
-0.000369242
0.0112907
-0.000349414
0.0112798
-0.000329698
0.0112689
-0.000310067
0.0112584
-0.000290503
0.0112483
-0.000270992
0.0112386
-0.000251522
0.0112294
-0.000232085
0.0112207
-0.000212676
0.0112125
-0.000193288
0.0112048
-0.000173919
0.0111978
-0.000154564
0.0111913
-0.000135221
0.0111855
-0.000115888
0.0111803
-9.65622e-05
0.0111759
-7.72425e-05
0.0111721
-5.7927e-05
0.0111691
-3.86144e-05
0.0111668
-1.93025e-05
0.0111653
0.0111645
-0.000577946
0.010587
0.000586981
-0.000562534
0.0108731
-0.000543305
0.0110633
-0.000522111
0.0111813
-0.00050015
0.0112485
-0.000478104
0.011282
-0.0004563
0.0112948
-0.00043485
0.0112954
-0.000413761
0.0112896
-0.00039299
0.0112806
-0.000372484
0.0112702
-0.000352194
0.0112595
-0.000332077
0.0112488
-0.0003121
0.0112384
-0.000292236
0.0112284
-0.000272464
0.0112188
-0.00025277
0.0112097
-0.00023314
0.011201
-0.000213564
0.0111929
-0.000194033
0.0111853
-0.000174539
0.0111783
-0.000155078
0.0111718
-0.000135642
0.011166
-0.000116228
0.0111609
-9.68317e-05
0.0111565
-7.74499e-05
0.0111527
-5.80794e-05
0.0111497
-3.87176e-05
0.0111474
-1.9363e-05
0.0111459
0.0111452
-0.000591252
0.0105763
0.000601936
-0.00057436
0.0108562
-0.000553788
0.0110427
-0.000531374
0.0111589
-0.000508308
0.0112254
-0.000485267
0.011259
-0.000462571
0.0112721
-0.000440328
0.0112732
-0.000418536
0.0112678
-0.000397146
0.0112592
-0.000376096
0.0112492
-0.000355328
0.0112387
-0.000334793
0.0112282
-0.000314449
0.0112181
-0.000294264
0.0112082
-0.000274213
0.0111988
-0.000254273
0.0111897
-0.000234429
0.0111812
-0.000214665
0.0111731
-0.00019497
0.0111656
-0.000175332
0.0111586
-0.000155743
0.0111522
-0.000136194
0.0111465
-0.00011668
0.0111414
-9.71933e-05
0.011137
-7.77286e-05
0.0111333
-5.82804e-05
0.0111303
-3.88439e-05
0.011128
-1.94127e-05
0.0111265
0.0111257
-0.000600621
0.0105642
0.00061277
-0.000582552
0.0108382
-0.000561004
0.0110212
-0.000537747
0.0111357
-0.000513933
0.0112016
-0.000490218
0.0112353
-0.000466914
0.0112488
-0.000444126
0.0112504
-0.000421846
0.0112455
-0.000400023
0.0112374
-0.00037859
0.0112277
-0.000357484
0.0112176
-0.000336652
0.0112074
-0.000316048
0.0111974
-0.000295636
0.0111878
-0.000275387
0.0111785
-0.000255274
0.0111696
-0.00023528
0.0111612
-0.000215385
0.0111532
-0.000195576
0.0111458
-0.000175839
0.0111389
-0.000156164
0.0111326
-0.000136541
0.0111269
-0.000116961
0.0111218
-9.74165e-05
0.0111174
-7.7901e-05
0.0111137
-5.84085e-05
0.0111108
-3.89334e-05
0.0111085
-1.94733e-05
0.011107
0.0111063
-0.000610975
0.0105506
0.000624543
-0.000591714
0.0108189
-0.000569134
0.0109986
-0.00054497
0.0111115
-0.000520346
0.011177
-0.000495906
0.0112108
-0.000471949
0.0112248
-0.000448574
0.011227
-0.000425768
0.0112227
-0.000403475
0.0112151
-0.000381623
0.0112059
-0.000360145
0.0111961
-0.000338981
0.0111863
-0.000318084
0.0111766
-0.000297412
0.0111671
-0.000276931
0.011158
-0.000256615
0.0111493
-0.00023644
0.011141
-0.000216385
0.0111332
-0.000196434
0.0111258
-0.000176571
0.011119
-0.000156783
0.0111128
-0.000137058
0.0111071
-0.000117387
0.0111021
-9.77593e-05
0.0110978
-7.81662e-05
0.0110941
-5.85995e-05
0.0110912
-3.90514e-05
0.011089
-1.95103e-05
0.0110875
0.0110868
-0.000615576
0.010536
0.000630164
-0.000595642
0.010799
-0.000572603
0.0109756
-0.000548093
0.011087
-0.000523177
0.0111521
-0.000498469
0.0111861
-0.00047426
0.0112006
-0.000450644
0.0112034
-0.000427612
0.0111997
-0.000405108
0.0111926
-0.000383062
0.0111838
-0.000361406
0.0111745
-0.000340083
0.0111649
-0.000319041
0.0111555
-0.000298241
0.0111463
-0.000277646
0.0111374
-0.000257228
0.0111289
-0.000236963
0.0111208
-0.00021683
0.0111131
-0.000196809
0.0111058
-0.000176886
0.0110991
-0.000157045
0.0110929
-0.000137274
0.0110874
-0.000117561
0.0110824
-9.78978e-05
0.0110781
-7.82736e-05
0.0110745
-5.86809e-05
0.0110716
-3.91123e-05
0.0110694
-1.95673e-05
0.0110679
0.0110672
-0.000622506
0.0105204
0.000638146
-0.000601751
0.0107782
-0.000578042
0.0109519
-0.000552968
0.0110619
-0.000527561
0.0111267
-0.000502414
0.011161
-0.000477806
0.011176
-0.000453825
0.0111794
-0.000430459
0.0111763
-0.000407649
0.0111698
-0.000385324
0.0111615
-0.000363416
0.0111525
-0.000341863
0.0111434
-0.000320615
0.0111343
-0.000299628
0.0111253
-0.000278866
0.0111167
-0.000258298
0.0111083
-0.000237898
0.0111004
-0.000217642
0.0110928
-0.000197512
0.0110857
-0.00017749
0.0110791
-0.00015756
0.011073
-0.000137707
0.0110675
-0.000117921
0.0110626
-9.81885e-05
0.0110584
-7.84995e-05
0.0110548
-5.88436e-05
0.011052
-3.92105e-05
0.0110498
-1.9581e-05
0.0110483
0.0110476
-0.000621759
0.0105043
0.000637831
-0.000600951
0.0107574
-0.000577393
0.0109283
-0.000552538
0.011037
-0.000527345
0.0111015
-0.000502373
0.011136
-0.000477895
0.0111515
-0.000454002
0.0111556
-0.00043069
0.011153
-0.000407908
0.011147
-0.000385593
0.0111392
-0.000363681
0.0111306
-0.000342117
0.0111218
-0.000320851
0.011113
-0.000299844
0.0111043
-0.000279059
0.0110959
-0.000258469
0.0110877
-0.000238047
0.0110799
-0.000217771
0.0110725
-0.000197622
0.0110655
-0.000177582
0.011059
-0.000157636
0.0110531
-0.00013777
0.0110477
-0.000117971
0.0110428
-9.82278e-05
0.0110387
-7.85302e-05
0.0110351
-5.88685e-05
0.0110323
-3.92345e-05
0.0110301
-1.96355e-05
0.0110287
0.011028
-0.00062522
0.0104877
0.000641824
-0.000603996
0.0107362
-0.000580129
0.0109044
-0.000555029
0.0110119
-0.000529629
0.0110761
-0.000504473
0.0111109
-0.000479822
0.0111269
-0.000455766
0.0111315
-0.000432297
0.0111296
-0.000409367
0.0111241
-0.000386912
0.0111167
-0.00036487
0.0111086
-0.000343184
0.0111001
-0.000321806
0.0110916
-0.000300695
0.0110832
-0.000279816
0.011075
-0.000259139
0.0110671
-0.000238638
0.0110594
-0.000218289
0.0110522
-0.000198074
0.0110453
-0.000177974
0.0110389
-0.000157972
0.0110331
-0.000138055
0.0110277
-0.000118208
0.011023
-9.8421e-05
0.0110189
-7.86814e-05
0.0110154
-5.8979e-05
0.0110126
-3.93018e-05
0.0110105
-1.96191e-05
0.011009
0.0110084
-0.000619563
0.00063607
-0.000598932
-0.000575805
-0.000551451
-0.000526734
-0.000502163
-0.000477994
-0.000454325
-0.000431165
-0.000408478
-0.000386215
-0.000364324
-0.000342756
-0.000321472
-0.000300433
-0.000279611
-0.000258978
-0.000238511
-0.00021819
-0.000197995
-0.000177911
-0.000157922
-0.000138015
-0.000118177
-9.83966e-05
-7.86631e-05
-5.89664e-05
-3.92986e-05
-1.96619e-05
0.0057426
-0.00111788
0.00567844
-0.00101653
0.00561033
-0.000907943
0.00554071
-0.000795976
0.0054727
-0.0006911
0.00540788
-0.000594804
0.00534687
-0.000505979
0.00529003
-0.000423798
0.00523761
-0.000347651
0.00518975
-0.000277025
0.00514646
-0.000211472
0.00510773
-0.000150551
0.00507325
-9.36194e-05
0.00504303
-3.99173e-05
0.00501714
1.02705e-05
0.00499561
5.56499e-05
0.00497696
0.0001013
0.00496148
0.000146141
0.00494896
0.000190273
0.00493909
0.000234122
0.00493157
0.000278095
0.00492609
0.000322435
0.00492232
0.00036726
0.00491995
0.000412583
0.0049187
0.000458309
0.00491829
0.000504213
0.00491851
0.000549948
0.00491914
0.000595055
0.00492003
0.000638982
0.00492106
0.000681118
0.00492215
0.000720813
0.00492326
0.000757407
0.00492441
0.000790259
0.00492562
0.00081878
0.00492697
0.000842454
0.00492855
0.000860867
0.00493046
0.000873723
0.00493283
0.000880856
0.00493576
0.000882235
0.00493939
0.000877957
0.0049438
0.000868254
0.00494912
0.000853473
0.00495541
0.000834078
0.00496274
0.000810623
0.00497113
0.000783732
0.00498062
0.000754086
0.0049912
0.000722404
0.00500286
0.000689425
0.00501558
0.000655889
0.00502932
0.000622525
0.00504404
0.000590031
0.00505968
0.000559063
0.00507617
0.00053022
0.00509345
0.000504032
0.00511145
0.000480956
0.00513007
0.000461355
0.00514922
0.000445514
0.00516882
0.000433598
0.00518875
0.000425707
0.00520891
0.000421794
0.00522919
0.000421786
0.00524947
0.00042541
0.00526965
0.00043247
0.00528959
0.000442458
0.00530919
0.000455145
0.00532835
0.000469753
0.00534697
0.000486188
0.00536497
0.0005033
0.00538228
0.000521412
0.00539884
0.000538772
0.00541461
0.000556566
0.00542961
0.000571983
0.00544376
0.000587784
0.00545721
0.000599318
0.00546982
0.000611942
0.00548191
0.000618071
0.00549319
0.000626865
0.00550427
0.000626754
0.00551467
0.000631422
0.000625688
0.00570772
-0.00103252
0.00561481
-0.000923619
0.00552262
-0.000815758
0.00543434
-0.000707698
0.00535138
-0.000608131
0.0052744
-0.000517832
0.00520352
-0.000435099
0.00513873
-0.000359006
0.00507999
-0.000288913
0.00502721
-0.000224244
0.0049802
-0.000164463
0.00493879
-0.000109139
0.00490267
-5.75012e-05
0.00487117
-8.41898e-06
0.0048463
3.51397e-05
0.00482441
7.75461e-05
0.00480646
0.000119245
0.0047923
0.000160301
0.00478158
0.000200994
0.00477393
0.000241777
0.00476897
0.000283056
0.00476633
0.000325073
0.00476565
0.000367937
0.00476658
0.000411651
0.00476879
0.000456102
0.00477196
0.000501042
0.00477582
0.000546094
0.00478011
0.000590763
0.00478463
0.000634463
0.00478921
0.000676538
0.00479373
0.000716295
0.0047981
0.00075303
0.0048023
0.000786059
0.00480633
0.000814752
0.00481023
0.000838557
0.00481406
0.000857032
0.00481793
0.000869856
0.00482194
0.000876848
0.00482621
0.000877968
0.00483085
0.000873317
0.00483597
0.000863129
0.00484168
0.000847765
0.00484806
0.000827696
0.00485519
0.000803489
0.00486314
0.000775785
0.00487195
0.000745276
0.00488166
0.000712697
0.00489229
0.000678797
0.00490384
0.000644331
0.00491633
0.000610035
0.00492975
0.000576618
0.00494406
0.000544745
0.00495926
0.000515024
0.0049753
0.000487994
0.00499213
0.000464122
0.00500971
0.000443779
0.00502796
0.000427263
0.00504681
0.000414749
0.00506617
0.00040635
0.00508593
0.00040203
0.00510599
0.000401724
0.00512623
0.000405173
0.00514652
0.000412182
0.00516672
0.000422252
0.00518672
0.000435148
0.00520637
0.000450097
0.00522557
0.000466988
0.0052442
0.000484673
0.00526216
0.000503451
0.00527938
0.000521557
0.00529577
0.000540171
0.00531133
0.000556424
0.00532598
0.000573136
0.00533981
0.000585488
0.0053527
0.000599054
0.00536491
0.000605854
0.00537622
0.000615557
0.00538712
0.00061586
0.00539728
0.000621254
0.000615737
0.00555744
-0.000918213
0.00544177
-0.00080795
0.00533124
-0.000705231
0.0052291
-0.000605557
0.00513535
-0.000514384
0.00504998
-0.000432457
0.00497272
-0.000357843
0.00490322
-0.000289503
0.00484113
-0.000226825
0.00478612
-0.000169232
0.00473782
-0.000116164
0.00469577
-6.70871e-05
0.00465957
-2.13016e-05
0.00463062
2.05333e-05
0.00460604
5.97159e-05
0.00458591
9.76821e-05
0.00457033
0.00013482
0.00455897
0.000171664
0.00455138
0.000208578
0.00454717
0.000245994
0.00454592
0.000284305
0.00454724
0.00032375
0.00455074
0.000364436
0.00455604
0.000406357
0.00456275
0.000449385
0.00457055
0.000493249
0.00457909
0.000537548
0.0045881
0.000581756
0.00459731
0.000625251
0.00460651
0.000667338
0.00461552
0.000707281
0.00462422
0.000744331
0.00463253
0.000777757
0.00464039
0.000806885
0.00464783
0.000831122
0.00465487
0.000849991
0.00466158
0.000863141
0.00466807
0.000870365
0.00467442
0.00087161
0.00468077
0.00086697
0.00468722
0.000856677
0.00469389
0.000841092
0.0047009
0.000820694
0.00470833
0.000796055
0.00471629
0.000767825
0.00472486
0.000736709
0.0047341
0.000703449
0.0047441
0.000668806
0.00475488
0.000633543
0.00476651
0.000598406
0.00477902
0.000564114
0.00479242
0.00053134
0.00480674
0.000500704
0.00482198
0.000472755
0.00483813
0.000447974
0.00485516
0.000426748
0.00487304
0.000409389
0.00489169
0.000396092
0.00491106
0.000386985
0.00493103
0.000382054
0.00495151
0.000381247
0.00497236
0.000384326
0.00499344
0.000391099
0.00501461
0.000401088
0.0050357
0.000414049
0.00505657
0.000429226
0.00507708
0.000446484
0.00509706
0.000464692
0.00511641
0.000484104
0.00513499
0.000502975
0.00515273
0.000522432
0.00516954
0.00053961
0.00518538
0.000557301
0.00520024
0.000570624
0.00521406
0.00058523
0.005227
0.000592916
0.00523893
0.000603631
0.00525018
0.000604613
0.00526064
0.000610789
0.000605783
0.00526373
-0.000783165
0.00513555
-0.000679772
0.00501608
-0.00058576
0.00490813
-0.000497611
0.00481093
-0.000417179
0.00472371
-0.000345237
0.00464589
-0.000280026
0.00457684
-0.000220456
0.00451599
-0.000165967
0.00446282
-0.000116063
0.00441675
-7.00944e-05
0.0043775
-2.7836e-05
0.00434494
1.12543e-05
0.00431886
4.66096e-05
0.00429764
8.09403e-05
0.00428148
0.00011384
0.00427008
0.000146218
0.00426304
0.000178705
0.00425993
0.000211687
0.00426035
0.000245581
0.00426388
0.000280774
0.00427012
0.000317509
0.00427866
0.000355893
0.00428911
0.000395911
0.00430107
0.000437425
0.00431417
0.000480146
0.00432807
0.000523652
0.00434243
0.000567389
0.00435698
0.000610705
0.00437145
0.000652871
0.00438562
0.000693109
0.00439932
0.000730626
0.00441243
0.000764647
0.00442487
0.000794451
0.00443658
0.000819403
0.00444759
0.000838985
0.00445792
0.00085281
0.00446765
0.000860642
0.00447685
0.000862402
0.00448565
0.00085817
0.00449416
0.000848166
0.00450251
0.000832746
0.00451082
0.000812386
0.00451921
0.000787659
0.00452782
0.000759218
0.00453676
0.000727772
0.00454614
0.000694069
0.00455607
0.000658876
0.00456665
0.000622962
0.00457797
0.000587083
0.00459012
0.000551966
0.00460317
0.000518293
0.00461718
0.000486697
0.00463219
0.000457743
0.00464823
0.000431929
0.00466532
0.000409664
0.00468343
0.000391279
0.00470252
0.000376997
0.00472254
0.000366968
0.00474339
0.000361207
0.00476495
0.000359682
0.0047871
0.000362181
0.00480967
0.000368525
0.0048325
0.00037826
0.00485541
0.000391136
0.00487822
0.000406424
0.00490074
0.000423955
0.0049228
0.000442635
0.00494425
0.000462653
0.00496491
0.000482314
0.0049847
0.000502647
0.00500346
0.00052085
0.00502116
0.000539603
0.00503771
0.000554071
0.0050531
0.000569838
0.00506737
0.000578646
0.00508049
0.000590512
0.00509265
0.000592459
0.0051039
0.000599538
0.000595371
0.00482609
-0.000639496
0.00469702
-0.000550708
0.00457937
-0.000468109
0.00447496
-0.000393198
0.00438257
-0.000324787
0.00430084
-0.000263508
0.00422889
-0.000208082
0.00416594
-0.0001575
0.00411123
-0.000111262
0.0040641
-6.89286e-05
0.00402422
-3.02206e-05
0.00399073
5.66261e-06
0.00396507
3.69079e-05
0.00394422
6.74662e-05
0.0039288
9.63574e-05
0.00391844
0.000124202
0.00391275
0.000151904
0.00391137
0.000180086
0.0039139
0.00020916
0.00391994
0.000239542
0.0039291
0.000271615
0.00394098
0.000305629
0.00395517
0.000341694
0.00397129
0.000379791
0.00398895
0.000419774
0.00400775
0.000461341
0.00402735
0.000504054
0.0040474
0.000547337
0.00406759
0.000590512
0.00408764
0.000632821
0.0041073
0.000673451
0.00412636
0.000711568
0.00414465
0.000746356
0.00416205
0.000777048
0.00417849
0.000802966
0.00419393
0.000823548
0.00420837
0.000838371
0.00422185
0.00084716
0.00423445
0.000849807
0.00424625
0.000846366
0.00425738
0.000837038
0.00426796
0.000822164
0.00427814
0.00080221
0.00428805
0.000777741
0.00429787
0.000749405
0.00430773
0.00071791
0.0043178
0.000684002
0.00432822
0.000648452
0.00433915
0.000612032
0.00435073
0.000575503
0.0043631
0.0005396
0.00437637
0.000505019
0.00439066
0.000472408
0.00440605
0.00044235
0.00442262
0.000415365
0.00444039
0.00039189
0.00445938
0.000372284
0.00447958
0.000356804
0.00450092
0.00034563
0.00452331
0.000338811
0.00454665
0.000336344
0.00457078
0.000338052
0.00459553
0.00034377
0.00462071
0.000353078
0.00464613
0.00036572
0.00467155
0.000381002
0.00469679
0.00039872
0.0047216
0.000417825
0.00474582
0.000438428
0.00476923
0.000458908
0.00479172
0.000480159
0.00481307
0.000499497
0.00483326
0.000519412
0.00485212
0.000535214
0.00486967
0.000552284
0.00488584
0.000562471
0.0049007
0.000575659
0.00491427
0.000578882
0.00492678
0.000587028
0.000584071
0.00426771
-0.000502009
0.00414946
-0.00043246
0.0040442
-0.000362846
0.00395204
-0.000301039
0.00387177
-0.000244517
0.00380178
-0.000193517
0.00374101
-0.000147311
0.00368863
-0.000105127
0.0036439
-6.65242e-05
0.00360632
-3.13486e-05
0.00357454
1.5539e-06
0.00355132
2.88825e-05
0.00353252
5.57108e-05
0.00351927
8.0717e-05
0.00351121
0.000104419
0.00350788
0.000127525
0.00350896
0.000150831
0.0035141
0.00017494
0.00352297
0.000200293
0.0035352
0.000227317
0.00355041
0.000256396
0.00356826
0.000287788
0.00358834
0.000321611
0.00361028
0.000357847
0.00363371
0.000396345
0.00365826
0.000436794
0.00368356
0.00047875
0.00370928
0.000521616
0.0037351
0.000564696
0.00376071
0.00060721
0.00378585
0.000648315
0.00381027
0.000687142
0.00383379
0.000722837
0.00385624
0.000754594
0.00387752
0.000781688
0.00389755
0.000803518
0.00391631
0.000819617
0.00393379
0.000829673
0.00395006
0.00083354
0.00396518
0.000831239
0.00397928
0.000822943
0.00399247
0.000808969
0.00400492
0.000789764
0.00401679
0.000765876
0.00402825
0.00073794
0.00403951
0.000706655
0.00405075
0.000672762
0.00406217
0.000637027
0.00407398
0.000600223
0.00408637
0.000563116
0.00409952
0.000526449
0.00411361
0.000490932
0.00412878
0.00045723
0.00414518
0.000425952
0.0041629
0.000397645
0.00418201
0.000372779
0.00420255
0.00035175
0.0042245
0.000334853
0.00424782
0.00032231
0.00427242
0.000314209
0.00429818
0.000310582
0.00432494
0.000311292
0.00435252
0.000316196
0.00438069
0.000324911
0.00440923
0.000337179
0.00443788
0.000352347
0.00446643
0.000370172
0.00449459
0.000389662
0.00452218
0.000410838
0.00454892
0.000432174
0.00457468
0.000454399
0.00459919
0.000474989
0.00462242
0.00049618
0.00464412
0.000513512
0.00466436
0.000532047
0.00468294
0.000543885
0.00470001
0.000558592
0.00471547
0.00056342
0.00472966
0.000572837
0.000571497
0.00362932
-0.000383894
0.00353158
-0.000334721
0.00344646
-0.000277725
0.00337258
-0.000227163
0.00330912
-0.000181061
0.00325462
-0.000139008
0.00320803
-0.000100722
0.00316866
-6.57637e-05
0.00313578
-3.36386e-05
0.00310848
-4.04639e-06
0.00308922
2.08115e-05
0.00307401
4.40882e-05
0.00306418
6.5542e-05
0.00305938
8.55226e-05
0.0030592
0.000104595
0.0030633
0.000123426
0.0030714
0.000142731
0.00308324
0.000163103
0.00309851
0.000185019
0.0031169
0.000208927
0.00313808
0.000235217
0.00316171
0.000264156
0.00318745
0.000295872
0.00321494
0.000330353
0.00324384
0.000367449
0.00327379
0.000406846
0.00330444
0.000448097
0.00333547
0.000490587
0.00336655
0.000533615
0.00339738
0.000576381
0.00342767
0.000618021
0.00345717
0.000657639
0.00348567
0.000694346
0.00351296
0.000727298
0.00353892
0.000755732
0.00356343
0.000779004
0.00358644
0.000796607
0.00360793
0.000808185
0.00362792
0.00081355
0.00364648
0.000812684
0.0036637
0.000805722
0.00367971
0.000792953
0.00369469
0.000774791
0.0037088
0.000751761
0.00372226
0.000724478
0.0037353
0.000693622
0.00374814
0.000659922
0.00376103
0.000624137
0.00377421
0.000587037
0.00378794
0.00054939
0.00380244
0.000511951
0.00381792
0.000475443
0.0038346
0.000440556
0.00385262
0.000407927
0.00387213
0.000378137
0.00389321
0.000351696
0.00391592
0.000329042
0.00394026
0.000310517
0.00396618
0.000296389
0.00399359
0.000286795
0.00402237
0.000281804
0.00405233
0.000281327
0.00408328
0.000285246
0.00411498
0.000293219
0.00414717
0.00030499
0.00417956
0.00031995
0.00421192
0.000337818
0.00424392
0.000357663
0.00427534
0.000379412
0.00430587
0.000401647
0.00433535
0.000424912
0.00436347
0.000446874
0.00439018
0.000469466
0.00441516
0.00048853
0.00443851
0.000508705
0.00445992
0.00052247
0.0044796
0.000538917
0.00449733
0.000545687
0.00451355
0.000556614
0.000557324
0.002959
-0.00029302
0.0028878
-0.000263523
0.00282599
-0.000215911
0.00277251
-0.000173685
0.00272718
-0.000135735
0.0026889
-0.000100728
0.00265689
-6.87106e-05
0.00263064
-3.95107e-05
0.00260943
-1.24323e-05
0.00259448
1.09066e-05
0.00258399
3.12978e-05
0.00257829
4.97898e-05
0.00257718
6.66522e-05
0.00258038
8.23245e-05
0.00258762
9.73527e-05
0.00259865
0.000112391
0.00261327
0.000128113
0.00263126
0.000145113
0.00265237
0.00016391
0.00267632
0.000184975
0.00270284
0.000208705
0.00273161
0.000235379
0.00276235
0.00026514
0.00279471
0.000297983
0.0028284
0.000333765
0.00286307
0.000372172
0.00289841
0.000412763
0.00293409
0.000454905
0.0029698
0.000497902
0.00300524
0.000540944
0.00304011
0.000583148
0.00307415
0.000623598
0.00310712
0.000661376
0.00313881
0.000695607
0.00316906
0.000725487
0.00319773
0.000750337
0.00322472
0.000769607
0.00325001
0.000782897
0.00327359
0.000789972
0.00329551
0.000790767
0.00331585
0.000785376
0.00333476
0.000774047
0.00335239
0.000757158
0.00336895
0.000735201
0.00338467
0.00070876
0.0033998
0.000678493
0.00341461
0.00064511
0.00342939
0.000609358
0.00344442
0.000572004
0.00345999
0.000533817
0.00347638
0.000495564
0.00349384
0.000457987
0.00351259
0.000421803
0.00353284
0.000387681
0.00355473
0.000356244
0.00357838
0.000328048
0.00360384
0.00030358
0.00363112
0.000283233
0.00366019
0.000267328
0.00369093
0.000256053
0.00372321
0.000249522
0.00375684
0.000247697
0.0037916
0.000250486
0.00382723
0.000257593
0.00386345
0.000268767
0.00389995
0.000283444
0.00393646
0.000301309
0.00397263
0.000321493
0.00400822
0.000343828
0.00404286
0.00036701
0.00407638
0.000391388
0.00410841
0.000414843
0.00413891
0.000438966
0.00416748
0.00045996
0.00419423
0.000481957
0.00421878
0.000497921
0.00424135
0.000516343
0.00426165
0.000525386
0.00428017
0.000538098
0.000541299
0.00230383
-0.000232758
0.00225816
-0.00021785
0.00221779
-0.000175545
0.00218304
-0.000138929
0.00215402
-0.000106722
0.0021301
-7.68043e-05
0.00211088
-4.94911e-05
0.00209616
-2.47915e-05
0.00208556
-1.82678e-06
0.00207986
1.66016e-05
0.00207816
3.29986e-05
0.00208046
4.74906e-05
0.00208665
6.04587e-05
0.00209658
7.24029e-05
0.00211004
8.38876e-05
0.00212686
9.55698e-05
0.00214688
0.000108097
0.00216993
0.000122065
0.0021958
0.000138037
0.00222426
0.000156513
0.00225507
0.000177892
0.00228798
0.00020247
0.00232271
0.000230408
0.00235899
0.000261709
0.00239651
0.000296242
0.00243498
0.000333698
0.0024741
0.00037365
0.00251356
0.000415439
0.00255307
0.000458395
0.00259232
0.000501696
0.00263101
0.000544453
0.00266888
0.00058573
0.00270567
0.000624589
0.00274115
0.000660128
0.00277513
0.0006915
0.00280747
0.000718
0.00283804
0.000739034
0.00286679
0.000754153
0.00289369
0.000763073
0.00291878
0.000765678
0.00294214
0.000762013
0.00296391
0.000752282
0.00298425
0.000736817
0.00300338
0.000716069
0.00302155
0.000690586
0.00303905
0.000660999
0.00305616
0.000627992
0.00307322
0.0005923
0.00309055
0.000554682
0.00310845
0.000515914
0.00312724
0.000476773
0.0031472
0.000438027
0.00316858
0.000400421
0.0031916
0.000364665
0.00321641
0.000331428
0.00324315
0.000301316
0.00327186
0.000274869
0.00330255
0.000252536
0.00333518
0.000234697
0.00336965
0.000221592
0.00340579
0.000213382
0.0034434
0.000210083
0.00348225
0.000211634
0.00352206
0.000217784
0.00356254
0.000228289
0.00360335
0.000242633
0.00364419
0.000260468
0.0036847
0.000280985
0.0037246
0.000303931
0.0037635
0.00032811
0.0038012
0.000353681
0.0038373
0.000378742
0.00387174
0.000404528
0.00390407
0.000427637
0.00393439
0.000451635
0.00396225
0.000470057
0.0039879
0.000490692
0.00401097
0.00050232
0.00403195
0.00051712
0.000523237
0.00169701
-0.000200568
0.00167068
-0.000191526
0.00164655
-0.000151406
0.00162625
-0.000118629
0.00160967
-9.01484e-05
0.00159662
-6.37553e-05
0.0015871
-3.99662e-05
0.00158115
-1.88473e-05
0.00157874
5.85477e-07
0.00158011
1.52356e-05
0.00158493
2.81773e-05
0.00159321
3.92076e-05
0.00160487
4.88013e-05
0.00161979
5.74837e-05
0.00163784
6.58362e-05
0.00165889
7.45231e-05
0.00168281
8.41735e-05
0.00170949
9.5381e-05
0.00173877
0.000108765
0.00177043
0.000124851
0.00180428
0.000144044
0.0018401
0.000166649
0.00187765
0.000192855
0.00191669
0.000222669
0.00195695
0.00025598
0.00199817
0.000292487
0.00204004
0.000331781
0.0020823
0.00037317
0.00212467
0.000416032
0.00216683
0.000459536
0.00220849
0.000502788
0.00224938
0.000544841
0.00228923
0.000584739
0.0023278
0.000621557
0.0023649
0.000654403
0.00240034
0.000682558
0.002434
0.000705379
0.00246578
0.000722367
0.00249567
0.000733186
0.00252368
0.000737666
0.0025499
0.000735797
0.00257444
0.000727734
0.00259751
0.000713756
0.0026193
0.00069427
0.00264011
0.000669782
0.00266022
0.000640889
0.00267996
0.00060825
0.00269967
0.000572585
0.00271971
0.000534648
0.0027404
0.000495221
0.00276208
0.000455096
0.00278504
0.000415069
0.00280954
0.000375919
0.0028358
0.000338403
0.00286399
0.000303235
0.00289423
0.000271077
0.00292658
0.000242526
0.00296102
0.000218089
0.00299751
0.000198206
0.00303594
0.00018317
0.00307613
0.00017319
0.00311787
0.000168339
0.00316092
0.000168585
0.00320498
0.000173723
0.00324975
0.000183519
0.00329488
0.000197505
0.00334004
0.000215305
0.00338487
0.000236162
0.00342905
0.00025975
0.00347218
0.000284977
0.00351404
0.000311818
0.0035542
0.000338586
0.00359257
0.00036616
0.00362866
0.000391546
0.00366258
0.000417715
0.00369381
0.000438826
0.0037226
0.0004619
0.00374853
0.000476392
0.00377204
0.000493606
0.000503019
0.00115467
-0.000188587
0.00113966
-0.000176514
0.00112564
-0.000137385
0.00111451
-0.000107498
0.00110578
-8.14244e-05
0.00109965
-5.76205e-05
0.00109633
-3.66498e-05
0.00109597
-1.84848e-05
0.00109915
-2.59268e-06
0.001105
9.38237e-06
0.00111404
1.91431e-05
0.0011261
2.71428e-05
0.00114116
3.37407e-05
0.00115915
3.94906e-05
0.00117999
4.50056e-05
0.00120356
5.09459e-05
0.0012298
5.79348e-05
0.00125861
6.6568e-05
0.00128985
7.75338e-05
0.00132332
9.13736e-05
0.00135888
0.000108488
0.00139634
0.000129184
0.0014355
0.000153699
0.00147614
0.000182031
0.00151802
0.0002141
0.00156089
0.000249618
0.00160447
0.000288195
0.00164855
0.000329088
0.00169282
0.000371765
0.00173699
0.000415371
0.00178076
0.000459016
0.00182385
0.000501746
0.001866
0.000542589
0.00190696
0.000580602
0.00194652
0.000614838
0.0019845
0.000644584
0.00202073
0.000669142
0.00205514
0.000687962
0.00208767
0.000700651
0.00211836
0.000706983
0.00214726
0.000706891
0.00217452
0.000700476
0.00220032
0.000687961
0.00222488
0.000669703
0.0022485
0.000646165
0.00227148
0.00061791
0.00229416
0.000585567
0.0023169
0.000549847
0.00234005
0.000511496
0.00236397
0.000471307
0.00238897
0.000430093
0.00241536
0.000388678
0.0024434
0.000347881
0.0024733
0.000308505
0.00250521
0.000271316
0.00253926
0.000237033
0.00257548
0.000206307
0.00261386
0.000179704
0.00265434
0.000157726
0.0026968
0.000140717
0.00274105
0.000128933
0.00278689
0.000122503
0.00283405
0.000121425
0.00288223
0.000125536
0.00293114
0.000134617
0.0029804
0.000148244
0.00302968
0.000166025
0.0030786
0.000187235
0.00312685
0.000211504
0.003174
0.000237823
0.00321982
0.000266005
0.00326384
0.00029456
0.00330597
0.000324029
0.0033457
0.000351823
0.0033831
0.000380308
0.00341763
0.000404303
0.00344951
0.000430014
0.0034783
0.000447605
0.00350435
0.000467557
0.00048058
0.000680222
-0.000187146
0.000668921
-0.000165214
0.000659604
-0.000128067
0.000652685
-0.000100579
0.000647607
-7.63464e-05
0.000644803
-5.48161e-05
0.000644564
-3.64111e-05
0.000647114
-2.10345e-05
0.000652887
-8.36534e-06
0.000660855
1.41365e-06
0.000671928
8.07079e-06
0.000685753
1.33172e-05
0.000702348
1.71461e-05
0.00072166
2.0179e-05
0.000743622
2.30432e-05
0.000768172
2.63954e-05
0.000795197
3.09096e-05
0.00082468
3.70854e-05
0.000856481
4.57326e-05
0.000890462
5.73925e-05
0.000926489
7.24619e-05
0.000964418
9.12546e-05
0.00100404
0.000114079
0.00104519
0.000140882
0.00108764
0.000171647
0.00113116
0.000206098
0.00117549
0.000243862
0.00122047
0.000284115
0.00126575
0.000326478
0.00131108
0.000370046
0.00135615
0.000413942
0.00140069
0.000457203
0.00144444
0.000498847
0.00148712
0.00053792
0.00152857
0.00057339
0.00156855
0.000604602
0.00160691
0.000630777
0.00164356
0.000651312
0.00167846
0.00066576
0.0017116
0.000673834
0.00174308
0.000675413
0.00177302
0.000670538
0.0018016
0.000659377
0.00182907
0.000642233
0.00185571
0.000619528
0.00188183
0.00059179
0.00190778
0.000559621
0.0019339
0.000523723
0.00196056
0.000484842
0.00198808
0.000443782
0.00201679
0.00040138
0.00204698
0.000358493
0.00207888
0.000315981
0.00211269
0.000274693
0.00214856
0.000235451
0.00218656
0.000199025
0.00222675
0.000166118
0.0022691
0.00013736
0.00231352
0.000113301
0.00235989
9.43457e-05
0.00240804
8.07856e-05
0.00245774
7.28066e-05
0.00250873
7.0436e-05
0.00256072
7.35468e-05
0.00261339
8.19394e-05
0.00266641
9.52305e-05
0.0027194
0.000113029
0.00277203
0.000134608
0.00282394
0.000159597
0.00287472
0.00018704
0.00292411
0.000216618
0.00297166
0.000247012
0.00301723
0.000278459
0.0030603
0.000308747
0.00310095
0.000339658
0.00313858
0.000366677
0.00317342
0.000395177
0.00320497
0.000416045
0.00323349
0.000439039
0.000455891
0.000270314
-0.00018917
0.000256396
-0.000151296
0.000247773
-0.000119444
0.000241295
-9.41014e-05
0.000236658
-7.17095e-05
0.000234383
-5.25403e-05
0.000234673
-3.67014e-05
0.00023766
-2.40216e-05
0.000243507
-1.4212e-05
0.000252402
-7.48122e-06
0.000263615
-3.14255e-06
0.000277366
-4.33841e-07
0.000293796
7.15964e-07
0.000312881
1.09375e-06
0.000334506
1.41817e-06
0.000358614
2.28822e-06
0.000385181
4.34198e-06
0.000414162
8.10495e-06
0.000445441
1.44531e-05
0.000478904
2.39294e-05
0.000514327
3.70392e-05
0.000551696
5.3886e-05
0.000590804
7.49706e-05
0.000631532
0.000100154
0.000673655
0.000129523
0.000716952
0.000162801
0.000761199
0.000199615
0.000806268
0.000239046
0.000851809
0.000280937
0.000897556
0.000324298
0.000943233
0.000368265
0.000988566
0.00041187
0.00103329
0.000454123
0.00107714
0.000494074
0.00111997
0.00053055
0.00116153
0.000563044
0.00120167
0.000590643
0.00124028
0.000612702
0.00127732
0.000628718
0.00131281
0.000638344
0.00134682
0.000641404
0.00137947
0.000637883
0.00141096
0.000627889
0.00144152
0.000611677
0.00147142
0.000589628
0.00150097
0.000562239
0.0015305
0.000530085
0.00156036
0.000493871
0.00159086
0.000454339
0.00162233
0.00041231
0.00165506
0.000368649
0.00168931
0.000324246
0.00172529
0.000280003
0.00176316
0.000236816
0.00180306
0.000195559
0.00184503
0.000157049
0.00188913
0.000122024
0.00193528
9.12066e-05
0.00198342
6.51615e-05
0.00203341
4.43566e-05
0.00208509
2.91069e-05
0.00213822
1.96699e-05
0.00219257
1.60882e-05
0.00224785
1.82674e-05
0.00230376
2.60311e-05
0.00235995
3.90348e-05
0.00241607
5.69087e-05
0.00247183
7.88564e-05
0.00252682
0.000104605
0.00258067
0.000133186
0.00263309
0.000164196
0.00268366
0.000196443
0.00273221
0.000229912
0.00277823
0.000262727
0.00282176
0.000296127
0.0028622
0.000326243
0.00289975
0.000357619
0.00293392
0.000381879
0.0029648
0.000408156
0.000428946
-8.22628e-05
-0.000187899
-0.000101534
-0.000132024
-0.000111929
-0.000109049
-0.000120608
-8.54228e-05
-0.000126949
-6.53682e-05
-0.00013063
-4.88597e-05
-0.000131597
-3.57339e-05
-0.000129792
-2.5827e-05
-0.000125115
-1.88891e-05
-0.00011783
-1.47663e-05
-0.0001079
-1.30723e-05
-9.5223e-05
-1.31108e-05
-7.9963e-05
-1.4544e-05
-6.21558e-05
-1.67134e-05
-4.17709e-05
-1.89667e-05
-1.88607e-05
-2.0622e-05
6.48957e-06
-2.10083e-05
3.40183e-05
-1.94238e-05
6.38349e-05
-1.53635e-05
9.57308e-05
-7.96649e-06
0.000129567
3.20275e-06
0.000165666
1.77876e-05
0.000203475
3.7161e-05
0.000243018
6.06113e-05
0.000284075
8.84664e-05
0.000326427
0.000120449
0.000369898
0.000156145
0.000414411
0.000194533
0.000459577
0.000235771
0.000505142
0.000278733
0.00055085
0.000322558
0.000596442
0.000366278
0.000641662
0.000408903
0.000686227
0.000449508
0.000730096
0.000486682
0.000772917
0.000520223
0.000814572
0.000548987
0.000854966
0.000572307
0.000894057
0.000589627
0.000931862
0.000600539
0.000968444
0.000604822
0.00100393
0.000602399
0.00103849
0.000593327
0.00107236
0.000577809
0.00110579
0.000556199
0.00113907
0.000528962
0.0011725
0.000496653
0.00120638
0.000459984
0.00124103
0.000419695
0.00127671
0.000376632
0.00131367
0.000331687
0.00135213
0.000285783
0.00139227
0.000239861
0.00143423
0.000194861
0.00147808
0.000151706
0.00152387
0.00011126
0.00157162
7.42714e-05
0.00162128
4.15487e-05
0.00167271
1.37363e-05
0.00172584
-8.77385e-06
0.00178052
-2.55755e-05
0.00183651
-3.63184e-05
0.00189358
-4.09804e-05
0.00195146
-3.96165e-05
0.00200988
-3.23885e-05
0.00206852
-1.96051e-05
0.002127
-1.56818e-06
0.00218514
2.07164e-05
0.00224247
4.72725e-05
0.00229869
7.69696e-05
0.00235346
0.000109417
0.00240642
0.000143487
0.00245736
0.000178977
0.00250579
0.000214287
0.00255174
0.00025018
0.0025946
0.000283387
0.00263457
0.000317648
0.00267111
0.000345335
0.00270423
0.000375035
0.000399759
-0.0003881
-0.000167705
-0.000406888
-0.000113236
-0.000421771
-9.41659e-05
-0.000433872
-7.33213e-05
-0.000443061
-5.61799e-05
-0.000449293
-4.26276e-05
-0.000452615
-3.24121e-05
-0.000453048
-2.53932e-05
-0.000450611
-2.13264e-05
-0.0004454
-1.99776e-05
-0.000437534
-2.09382e-05
-0.000427012
-2.36325e-05
-0.000413924
-2.7632e-05
-0.000398298
-3.23399e-05
-0.000380175
-3.70892e-05
-0.000359604
-4.11931e-05
-0.000336583
-4.40297e-05
-0.000311145
-4.48616e-05
-0.000283398
-4.31106e-05
-0.000253273
-3.80917e-05
-0.000220818
-2.92513e-05
-0.000186594
-1.64369e-05
-0.000150773
1.34036e-06
-0.000112647
2.2485e-05
-7.29151e-05
4.87345e-05
-3.16158e-05
7.91494e-05
1.10077e-05
0.000113521
5.40578e-05
0.000151483
9.8183e-05
0.000191646
0.000142996
0.000233919
0.000188243
0.000277312
0.000233662
0.000320859
0.000279004
0.000363562
0.000323939
0.000404573
0.000368616
0.000442006
0.0004125
0.000476339
0.000455544
0.000505944
0.000497656
0.000530195
0.000538794
0.000548489
0.000578976
0.000560357
0.000618248
0.000565551
0.00065673
0.000563917
0.000694581
0.000555476
0.00073201
0.00054038
0.000769236
0.000518972
0.000806514
0.000491684
0.000844112
0.000459054
0.00088228
0.000421816
0.000921274
0.000380702
0.000961318
0.000336588
0.00100261
0.000290393
0.00104532
0.000243073
0.00108958
0.000195602
0.00113549
0.000148955
0.00118308
0.000104113
0.00123237
6.19686e-05
0.00128333
2.33079e-05
0.00133597
-1.10914e-05
0.00139027
-4.05612e-05
0.00144596
-6.44606e-05
0.00150289
-8.25091e-05
0.00156094
-9.43682e-05
0.0016199
-9.9936e-05
0.00167952
-9.92422e-05
0.00173957
-9.24319e-05
0.00179976
-7.97956e-05
0.00185988
-6.16939e-05
0.00191944
-3.88437e-05
0.00197822
-1.15077e-05
0.00203596
1.92276e-05
0.00209229
5.30931e-05
0.00214688
8.88955e-05
0.00219951
0.00012635
0.00224974
0.000164054
0.00229754
0.000202376
0.00234236
0.000238573
0.00238437
0.000275638
0.00242301
0.000306698
0.00245822
0.000339817
0.000368368
-0.000640497
-0.000137586
-0.000663074
-9.06588e-05
-0.000682339
-7.49009e-05
-0.000698255
-5.74058e-05
-0.000710778
-4.3657e-05
-0.000720071
-3.33341e-05
-0.000726257
-2.62259e-05
-0.000729426
-2.22245e-05
-0.000729649
-2.11039e-05
-0.000727053
-2.25736e-05
-0.000721757
-2.62336e-05
-0.000713795
-3.15944e-05
-0.000703239
-3.81885e-05
-0.000690138
-4.54408e-05
-0.000674525
-5.27021e-05
-0.000656422
-5.92963e-05
-0.000635876
-6.45757e-05
-0.000612909
-6.78289e-05
-0.000587609
-6.84105e-05
-0.00056004
-6.56598e-05
-0.000530179
-5.91123e-05
-0.000498173
-4.8443e-05
-0.000463766
-3.30669e-05
-0.000428096
-1.31853e-05
-0.000390506
1.11441e-05
-0.000351228
3.98718e-05
-0.00031042
7.27139e-05
-0.000268162
0.000109225
-0.000224836
0.000148319
-0.000180644
0.000189728
-0.000135798
0.000232465
-9.05091e-05
0.00027557
-4.49719e-05
0.000318024
9.02554e-07
0.000358699
4.55546e-05
0.000397354
9.02637e-05
0.00043163
0.000134614
0.000461594
0.000178457
0.000486351
0.00022172
0.000505226
0.000264409
0.000517669
0.00030653
0.000523429
0.000348207
0.00052224
0.000389569
0.000514114
0.000430797
0.000499152
0.000472055
0.000477714
0.000513557
0.000450183
0.000555519
0.000417091
0.000598126
0.00037921
0.000641576
0.000337252
0.000686033
0.000292131
0.000731632
0.000244794
0.000778484
0.000196222
0.000826672
0.000147414
0.000876252
9.93752e-05
0.000927204
5.31613e-05
0.000979448
9.72511e-06
0.00103331
-3.05563e-05
0.00108841
-6.6187e-05
0.00114469
-9.68422e-05
0.0012021
-0.000121874
0.0012605
-0.000140903
0.00131974
-0.000153612
0.00137967
-0.000159863
0.00144008
-0.000159659
0.00150078
-0.00015313
0.00156153
-0.000140543
0.00162211
-0.000122274
0.00168218
-9.89105e-05
0.00174156
-7.08944e-05
0.00179985
-3.90589e-05
0.0018568
-3.85965e-06
0.00191218
3.35157e-05
0.00196571
7.28174e-05
0.00201703
0.000112739
0.00206606
0.000153348
0.0021123
0.000192332
0.00215591
0.000232029
0.0021963
0.000266302
0.00223346
0.000302662
0.000334842
-0.000842871
-0.000100624
-0.000869669
-6.38605e-05
-0.000893095
-5.14751e-05
-0.000912626
-3.78753e-05
-0.000928424
-2.78584e-05
-0.00094077
-2.0988e-05
-0.000949843
-1.71528e-05
-0.000955788
-1.62795e-05
-0.000958714
-1.8178e-05
-0.000958764
-2.25237e-05
-0.000956072
-2.89252e-05
-0.000950705
-3.6962e-05
-0.000942728
-4.61649e-05
-0.000932195
-5.59742e-05
-0.000919142
-6.57551e-05
-0.000903597
-7.48407e-05
-0.000885602
-8.25709e-05
-0.000865186
-8.82449e-05
-0.000842402
-9.1195e-05
-0.000817269
-9.07922e-05
-0.000789839
-8.65425e-05
-0.000760248
-7.80341e-05
-0.000728417
-6.48982e-05
-0.000694404
-4.71976e-05
-0.000658627
-2.46334e-05
-0.000621439
2.68402e-06
-0.00058231
3.35844e-05
-0.000541581
6.84959e-05
-0.000499546
0.000106285
-0.000456381
0.000146562
-0.000412285
0.000188369
-0.000367455
0.00023074
-0.000322093
0.000272662
-0.000276469
0.000313076
-0.000230412
0.000351296
-0.00018444
0.000385657
-0.00013856
0.000415714
-9.28403e-05
0.000440632
-4.73289e-05
0.000459714
-2.08741e-06
0.000472428
4.30879e-05
0.000478254
8.81714e-05
0.000477157
0.000133253
0.000469033
0.000178484
0.00045392
0.000223948
0.00043225
0.000269813
0.000404318
0.000316239
0.000370665
0.000363331
0.000332118
0.000411222
0.000289361
0.000460009
0.000243345
0.000509754
0.000195048
0.000560506
0.00014547
0.000612296
9.56242e-05
0.000665108
4.65633e-05
0.00071886
-5.91558e-07
0.000773919
-4.53335e-05
0.000829723
-8.63606e-05
0.000886461
-0.000122925
0.000944002
-0.000154383
0.00100229
-0.000180164
0.00106122
-0.000199835
0.0011207
-0.000213084
0.00118059
-0.000219752
0.00124075
-0.000219825
0.00130104
-0.000213414
0.00136126
-0.000200771
0.00142125
-0.000182264
0.00148075
-0.000158411
0.00153958
-0.000129719
0.00159744
-9.6919e-05
0.00165417
-6.05918e-05
0.00170936
-2.16788e-05
0.00176295
1.92335e-05
0.00181457
6.11214e-05
0.00186412
0.000103795
0.00191119
0.000145263
0.00195589
0.000187325
0.00199766
0.000224533
0.00203656
0.000263765
0.000299307
-0.000995249
-5.89608e-05
-0.00102576
-3.33502e-05
-0.00105266
-2.45721e-05
-0.00107522
-1.53205e-05
-0.00109383
-9.24859e-06
-0.00110882
-5.98965e-06
-0.00112043
-5.5517e-06
-0.00112882
-7.88936e-06
-0.00113414
-1.28519e-05
-0.00113655
-2.01188e-05
-0.0011362
-2.92744e-05
-0.00113317
-3.99871e-05
-0.00112754
-5.17988e-05
-0.00111935
-6.41639e-05
-0.00110864
-7.64614e-05
-0.00109545
-8.80323e-05
-0.00107981
-9.82102e-05
-0.00106176
-0.000106301
-0.00104132
-0.000111633
-0.00101852
-0.00011359
-0.000993404
-0.000111659
-0.00096603
-0.000105408
-0.000936413
-9.45161e-05
-0.000904714
-7.88966e-05
-0.000870863
-5.84839e-05
-0.000834874
-3.33056e-05
-0.000797765
-3.52426e-06
-0.000758489
2.92203e-05
-0.000717719
6.55148e-05
-0.000675544
0.000104387
-0.000632149
0.000144974
-0.000587697
0.000186288
-0.000542358
0.000227323
-0.000496325
0.000267043
-0.000449594
0.000304565
-0.000402468
0.000338532
-0.000355011
0.000368257
-0.000307291
0.000392911
-0.000259352
0.000411776
-0.000211201
0.000424276
-0.000162876
0.000429928
-0.000114318
0.000428599
-6.54906e-05
0.000420205
-1.63559e-05
0.000404786
3.3372e-05
0.000382522
8.37003e-05
0.000353989
0.000134594
0.000319771
0.000186089
0.000280623
0.000238272
0.000237177
0.00029117
0.000190448
0.000344767
0.000141451
0.000399049
9.11884e-05
0.000453954
4.07188e-05
0.000509532
-9.01397e-06
0.000565815
-5.68753e-05
0.000622533
-0.000102051
0.000679703
-0.00014353
0.000737298
-0.00018052
0.000795252
-0.000212337
0.000853513
-0.000238425
0.00091202
-0.000258342
0.000970711
-0.000271776
0.00102952
-0.00027856
0.00108836
-0.000278665
0.00114714
-0.000272191
0.00120574
-0.000259374
0.00126404
-0.000240563
0.00132187
-0.00021624
0.00137907
-0.000186926
0.00143545
-0.000153299
0.00149085
-0.000115985
0.00154501
-7.58457e-05
0.00159773
-3.34868e-05
0.00164882
1.00315e-05
0.00169815
5.4465e-05
0.0017454
9.80203e-05
0.00179063
0.000142091
0.00183333
0.000181833
0.00187371
0.000223386
0.000261965
-0.00109684
-1.43707e-05
-0.00113005
-1.42303e-07
-0.00115944
4.81965e-06
-0.00118414
9.38522e-06
-0.00120478
1.13911e-05
-0.0012217
1.09245e-05
-0.00123516
7.90938e-06
-0.00124547
2.4198e-06
-0.00125261
-5.7049e-06
-0.00125683
-1.59063e-05
-0.00125831
-2.77886e-05
-0.00125714
-4.11556e-05
-0.00125339
-5.55558e-05
-0.0012471
-7.04559e-05
-0.00123831
-8.5247e-05
-0.00122706
-9.92779e-05
-0.00121339
-0.00011188
-0.00119733
-0.000122367
-0.00117889
-0.000130069
-0.0011581
-0.000134377
-0.00113499
-0.000134768
-0.0011096
-0.000130805
-0.00108194
-0.000122175
-0.0010521
-0.000108734
-0.00102014
-9.04452e-05
-0.00098605
-6.73949e-05
-0.000949724
-3.98504e-05
-0.000912089
-8.41477e-06
-0.000872446
2.58719e-05
-0.00083115
6.30911e-05
-0.000788353
0.000102177
-0.000744178
0.000142113
-0.000698763
0.000181908
-0.000652265
0.000220545
-0.000604724
0.000257024
-0.000556356
0.000290164
-0.000507233
0.000319134
-0.000457428
0.000343106
-0.000406996
0.000361343
-0.000355968
0.000373249
-0.000304381
0.000378341
-0.000252232
0.000376451
-0.000199513
0.000367486
-0.000146193
0.000351466
-9.23341e-05
0.000328663
-3.79237e-05
0.000299579
1.70857e-05
0.000264762
7.28197e-05
0.000224889
0.000129011
0.000180986
0.000185666
0.000133793
0.000242697
8.4419e-05
0.000300004
3.38818e-05
0.000357624
-1.69013e-05
0.000415383
-6.67729e-05
0.000473243
-0.000114735
0.000531073
-0.000159882
0.000588834
-0.000201291
0.000646482
-0.000238168
0.00070398
-0.000269835
0.0007613
-0.000295745
0.000818425
-0.000315466
0.000875343
-0.000328694
0.000932042
-0.000335259
0.000988505
-0.000335128
0.0010447
-0.00032839
0.0011006
-0.000315268
0.00115613
-0.000296092
0.0012112
-0.000271317
0.00126574
-0.000241456
0.00131959
-0.000207157
0.00137266
-0.000169048
0.00142476
-0.00012795
0.00147576
-8.4491e-05
0.00152547
-3.96737e-05
0.00157379
6.14126e-06
0.00162051
5.13068e-05
0.00166565
9.69423e-05
0.00170878
0.00013871
0.00175029
0.000181879
0.000223104
-0.00114687
-0.00118124
-0.00121188
-0.00123771
-0.00125946
-0.00127748
-0.00129205
-0.00130333
-0.00131158
-0.0013169
-0.00131955
-0.00131959
-0.00131708
-0.00131209
-0.00130464
-0.00129479
-0.00128256
-0.00126797
-0.00125105
-0.00123181
-0.00121027
-0.00118645
-0.00116037
-0.00113206
-0.00110156
-0.0010689
-0.00103407
-0.000997147
-0.000958486
-0.000917887
-0.000875534
-0.000831485
-0.000785861
-0.000738795
-0.000690337
-0.000640647
-0.000589799
-0.000537872
-0.000484935
-0.000431047
-0.000376261
-0.000320631
-0.000264203
-0.000207014
-0.000149157
-9.07025e-05
-3.16996e-05
2.76993e-05
8.74386e-05
0.000147373
0.000207309
0.000267152
0.000326764
0.000386027
0.000444833
0.000503066
0.000560657
0.000617568
0.000673782
0.000729303
0.000784155
0.000838379
0.000892024
0.00094514
0.000997773
0.00104996
0.00110171
0.00115302
0.00120388
0.00125423
0.001304
0.00135311
0.00140147
0.00144897
0.0014955
0.00154095
0.00158535
0.00162832
0.00167049
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
100
(
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0053033
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
-0.0097978
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
100
(
0.0103377
0.0106277
0.0108242
0.0109501
0.0110258
0.0110676
0.0110877
0.0110947
0.0110941
0.0110896
0.011083
0.0110754
0.0110676
0.0110597
0.0110519
0.0110443
0.0110369
0.0110298
0.0110231
0.0110167
0.0110108
0.0110053
0.0110004
0.010996
0.0109921
0.0109889
0.0109863
0.0109843
0.010983
0.0109823
0.00167777
0.00169212
0.00175305
0.00185858
0.00200537
0.00218893
0.0024039
0.00264427
0.00290363
0.00317541
0.00345311
0.00373052
0.00400192
0.00426232
0.00450753
0.00473431
0.00494042
0.00512457
0.00528635
0.00542618
0.00552505
0.00540724
0.0052706
0.00511431
0.00493808
0.00474224
0.00452772
0.00429619
0.00405001
0.00379226
0.00352679
0.00325818
0.00299175
0.00273342
0.00248962
0.00226698
0.00207209
0.00191105
0.00178915
0.00171049
0.0104712
0.0107155
0.0108813
0.0109876
0.0110513
0.0110863
0.0111027
0.0111078
0.0111064
0.0111014
0.0110945
0.0110867
0.0110786
0.0110703
0.0110622
0.0110542
0.0110464
0.011039
0.0110319
0.0110251
0.0110189
0.0110131
0.0110078
0.0110032
0.0109991
0.0109957
0.0109929
0.0109908
0.0109894
0.0109887
)
;
}
cylinder
{
type calculated;
value uniform 0;
}
top
{
type symmetryPlane;
value uniform 0;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
defaultFaces
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| |
522d5cbe48d2514a693a0afc66f504e5005fd65e | 19349c1992e35a9eefb1f705dccc4ebec7891cec | /tool.h | ecc09eabee9402eb27dc3cbda3c96f53eb287f45 | [] | no_license | VideoLiam/acnode-cl | 2a0e553b06d600a2795ac1a6a631a28f66d6dc2a | 3de2d1a42d99c81915218e7fcf13354a81b0a506 | refs/heads/master | 2020-04-15T11:51:55.776135 | 2015-05-09T22:30:01 | 2015-05-09T22:30:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409 | h | tool.h | #ifndef _TOOL_H_
#define _TOOL_H_
#include <Energia.h>
#include "user.h"
class Tool
{
public:
Tool(int pin);
Tool(int pin, int onpin);
void poll();
void startrunning();
void stoprunning();
void on(user user);
void off(user user);
void begin();
private:
int _toolpin;
int _toolonpin;
boolean _toolon;
unsigned long _start;
user tool_user;
};
#endif
|
85c2c27a663dc07fbfc345250cdf15ccddda932b | 868778cfaff0103c350abbb7af2aaddb62eae40c | /Chapter 11/11-12/main.cpp | a6c9b867ac5c2215dd52a8aeebbcbb64c2c261f1 | [] | no_license | Jerrydepon/C_plus_plus_Practice | a1f3287f98a0fb625218cfccfb9228d040186f13 | d75a4d3be64c6030d020c10a5bbb86e8313415c1 | refs/heads/master | 2020-07-06T16:36:38.765385 | 2019-08-19T02:03:19 | 2019-08-19T02:03:19 | 203,080,358 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | cpp | main.cpp | #include <iostream>
#include "feetinch4.h"
using namespace std;
int main()
{
FeetInches first, second, third;
int f, i;
cout << "Enter a distance in feet and inches: ";
cin >> f >> i;
first.setData(f, i);
cout << "Enter another distance in feet and inches: ";
cin >> f >> i;
second.setData(f, i);
if (first == second)
cout << "First is equal to second.\n";
if (first > second)
cout << "First is greater than second.\n";
if (first < second)
cout << "First is less than second.\n";
return 0;
}
|
9c16faa24722aef189f1a6f947b345ae8b77a4f3 | 9325e8133fe8c00c6538415d5a8d21589ad6c63f | /dynamic_programming/edit_distance.cpp | e63a9e2f5ebc68a141fbc908978622abedf0f03e | [] | no_license | nskprasanth/practice | 91fc14d7d62451f96d4212679da805f1934e4136 | 8283cfe4880998d59bace2fc5a4fd7c44492fd4e | refs/heads/master | 2021-01-10T05:49:22.425097 | 2015-11-16T02:10:20 | 2015-11-16T02:10:20 | 45,445,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,384 | cpp | edit_distance.cpp | /**
* Given two strings str1 and str2 and below operations that can performed on str1. Find minimum number of edits (operations) required to convert str1 into str2.
* Insert
* Remove
* Replace
* All of the above operations are of equal cost. Can be easily customized for different costs.
* -- Example --
* str1 = "sunday", str2 = "saturday"
* edit distance -> 3 : insert at and replace n with r
*
* Prasanth Kalapatapu
* Nov 5, 2015
*/
#include<iostream>
using namespace std;
int min (int a, int b, int c) {
return (a<b) ? min(a,c):min(b,c);
}
int main () {
string s1, s2;
cin >> s1 >> s2;
int n = s1.size(), m = s2.size();
// 1-indexed array containing edit distances for combinations of indices
int a[n+1][m+1];
for (int i=0;i<=m;++i) {
// to convert an empty string to a i-char string, insert i characters
a[0][i] = i;
}
for (int i=0;i<=n;++i) {
// to convert an i-char string to an empty string, delete i characters
a[i][0] = i;
}
for (int i=0;i<n;++i) {
for (int j=0;j<m;++j) {
if (s1[i] == s2[j]) {
a[i+1][j+1] = a[i][j];
} else {
// min of replace, delete and insert operations (respectively)
a[i+1][j+1] = 1+min(a[i][j], a[i][j+1], a[i+1][j]);
}
}
}
// a[n][m] holds the edit distance to convert s1(of size n) to s2(of size m)
cout << a[n][m] << endl;
return 0;
}
|
1793c45648a429d6c6aed4d245f8ad2a772e6650 | fa3b8a8253deb70fac9cdd4d43d9b583ee99b276 | /home_weather.ino | 9d55c2bff30274c9757c7c0e78dd6ba1accebf3e | [] | no_license | shtirlic/arduino-sketches | c5d115e81c0e8313353a8295e89c39e96022709f | 40a0e1ce142be8f268eaa5c0941ee9a699e7bd1c | refs/heads/master | 2021-01-23T10:00:31.737515 | 2013-03-23T20:50:52 | 2013-03-23T20:50:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,769 | ino | home_weather.ino | #include <Wire.h>
#include <LiquidCrystal_SR3W.h>
#include <DHT22.h>
#define APP_VERSION "0.1"
#define CONTRAST_PIN 5
#define DHT22_PIN 6
#define LDR_PIN A0
#define STATUS_LED_PIN 13
#define BEEP_PIN 11
#define CONTRAST 120
#define MEASUREMENT_DELAY 5000
DHT22 myDHT22(DHT22_PIN);
LiquidCrystal_SR3W lcd(2, 3, 4);
int LDRReading;
DHT22_ERROR_t errorCode;
int lightSensorMin = 1023;
int lightSensorMax = 0;
void welcomeScreen()
{
lcd.blink();
lcd.setCursor(0, 0);
lcd.print("Home Weather");
lcd.setCursor(0, 1);
lcd.print("Version ");
lcd.print(APP_VERSION);
beep(50);
beep(50);
beep(50);
// Wait for DHT initilization
delay(2000);
lcd.noBlink();
}
void beep(int duration)
{
analogWrite(BEEP_PIN, 10);
delay(duration);
analogWrite(BEEP_PIN, 0);
delay(duration);
}
void setup(void)
{
Serial.begin ( 9600 );
pinMode(STATUS_LED_PIN, OUTPUT);
pinMode(BEEP_PIN, OUTPUT);
pinMode(CONTRAST_PIN, OUTPUT);
analogWrite (CONTRAST_PIN, CONTRAST);
lcd.begin ( 16, 2 );
welcomeScreen();
}
void printMeasurements(void)
{
// Serial output
Serial.println(LDRReading);
Serial.print(myDHT22.getTemperatureC());
Serial.print("C\t");
Serial.print(myDHT22.getHumidity());
Serial.println("%");
// LCD output
lcd.clear();
lcd.setCursor(0, 0);
lcd.print(myDHT22.getTemperatureC());
lcd.print(" C");
lcd.setCursor(0, 1);
lcd.print(myDHT22.getHumidity());
lcd.print(" %");
// Status update
if(myDHT22.getHumidity() < 45.0){
digitalWrite(STATUS_LED_PIN, HIGH);
}else{
digitalWrite(STATUS_LED_PIN, LOW);
}
}
void doMeasurements(void)
{
errorCode = myDHT22.readData();
LDRReading = map(analogRead(LDR_PIN), lightSensorMin, lightSensorMax, 255, 0);
LDRReading = constrain(LDRReading, 0, 255);
switch(errorCode)
{
case DHT_ERROR_NONE:
printMeasurements();
break;
case DHT_ERROR_CHECKSUM:
lcd.setCursor(0, 0);
lcd.print("check sum error ");
break;
case DHT_BUS_HUNG:
lcd.setCursor(0, 0);
lcd.print("BUS Hung ");
break;
case DHT_ERROR_NOT_PRESENT:
lcd.setCursor(0, 0);
lcd.print("Not Present ");
break;
case DHT_ERROR_ACK_TOO_LONG:
lcd.setCursor(0, 0);
lcd.print("ACK time out ");
break;
case DHT_ERROR_SYNC_TIMEOUT:
lcd.setCursor(0, 0);
lcd.print("Sync Timeout ");
break;
case DHT_ERROR_DATA_TIMEOUT:
lcd.setCursor(0, 0);
lcd.print("Data Timeout ");
break;
case DHT_ERROR_TOOQUICK:
lcd.setCursor(0, 0);
lcd.print("Polled to quick ");
break;
}
}
void loop(void)
{
doMeasurements();
delay(MEASUREMENT_DELAY);
}
|
0882aa90a7781da479859802cc5936eae56cdeda | 148b778983b0df3328adb85cdb5e046c8be6a4d6 | /book/8_recursion/8_5.cpp | bd51170d4365c27a80faf8782abaaa344fac8e2b | [] | no_license | mascai/exercise | 9dcbdca7038ca9b02b1bf9abc0ead354f4e06ba1 | c58912261126ae3ed4b44cb466344f4b8c4d8c6c | refs/heads/master | 2023-06-24T12:15:32.170458 | 2023-06-08T18:20:19 | 2023-06-08T18:20:19 | 95,127,196 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,252 | cpp | 8_5.cpp | /*Напишите рекурсивную функцию для умножения двух положительных целых
чисел без использования оператора * . Допускается использование операций
сложения, вычитания и поразрядного сдвига, но их количество должно быть
минимальным.*/
#include <iostream>
#include <stdio.h>
#define For(x,n) for(int x = 0; x < n; ++x)
#include <bits/stdc++.h>
using namespace std;
int rec(int smal, int big, vector<int> memo);
int F(int a, int b){ // a * b
int big = a > b ? a : b,
smal = a > b ? b : a;
vector<int>memo(smal + 1, 0);
return rec(smal, big, memo);
}
int rec(int smal, int big, vector<int> memo){
if (smal == 0){
return 0;
}
if (smal == 1){
return big;
}
if (memo[smal] != 0){
return memo[smal];
}
int s = smal / 2;
int side1 = rec(s, big, memo);
int side2 = side1;
if (smal % 2 == 1){
side2 = rec(smal - s, big, memo);
}
memo[smal] = side1 + side2;
return side1 + side2;
}
int main() {
int a, b;
cin >> a >> b;
cout << F(a, b);
return 0;
}
|
345abb2e2307ed999a885ced2bffb6cc96350a9b | bd226417f1cc508a6fdadf8c996552184e89b34e | /competitive_coding/inversionCount.cpp | 38ec2f00042f370b8e2e3ab2efb9a7be4e4c554b | [
"MIT"
] | permissive | rupav/cp | 5876a42f5d86df482426b523fdeddcd84843c373 | 0b4c20ef3504472c1b0a9bbf586bb2daae9631c5 | refs/heads/main | 2023-02-24T23:21:31.930979 | 2021-01-30T06:08:15 | 2021-01-30T06:08:15 | 334,339,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,853 | cpp | inversionCount.cpp | /// Inversion count - count of elements for each i(0 to n-1) such that arr[j] > arr[i] for all j>i.
#include<bits/stdc++.h>
using namespace std;
#define fr(i,n) for(int i=0; i<n; i++)
#define rep(i, st, en) for(int i=st; i<=en; i++)
typedef long long ll;
typedef pair<int, int> pii;
ll mod = 1e9+7;
int getNext(int i, int n){
i += i&(-i);
return i;
}
/// updateBIT is a O(logn) operation
void updateBIT(int n, int*BIT, int i, int update){
BIT[i] += update;
int next = getNext(i, n);
while(next<=n){
BIT[next] += update;
next = getNext(next ,n);
}
}
int getParent(int i, int n){
i -= i&(-i);
return i;
}
/// getSum is a O(logn) operation
int getSumBIT(int n, int *BIT, int i){
if(i<0)
return 0;
int sum = 0;
sum += BIT[i];
int parentIndex = getParent(i, n);
while(parentIndex>0){
sum += BIT[parentIndex];
parentIndex = getParent(parentIndex, n);
}
return sum;
}
ll inversionCOunt(int *arr, int n){
int temp[n];
fr(i, n) temp[i] = arr[i];
sort(temp, temp+n);
///remove duplicates
vector<int> v;
int prev = INT_MIN;
fr(i, n){
if(temp[i] != prev)
v.push_back(temp[i]);
prev = temp[i];
}
/// compress/update arr to range 1, n, maintaining their relative ordering.
fr(i, n){
arr[i] = lower_bound(v.begin(), v.end(), arr[i]) - v.begin() + 1;
}
ll count = 0;
/// construct BIT in reverse order
int BIT[n+1] = {0}; // initialize
for(int i=n-1; i>=0; i--){
count += 1ll*getSumBIT(n, BIT, arr[i] - 1);
/// update BIT, by freq of 1 of arr[i]
updateBIT(n, BIT, arr[i], 1);
}
return count;
}
int main(){
int n;
cin>>n;
int arr[n];
fr(i, n) cin>>arr[i];
cout<<inversionCOunt(arr, n)<<endl;
return 0;
}
|
d03b19d08e1df7451c8e7d5b55ba2a26b8fdca45 | 32c3c90c4c8e3e47fb5252f97213556bba84f30b | /week11/boj1577/orihehe_1577.cpp | 9fbfdaf19ead92155382aabc2fa18ec697c24367 | [] | no_license | onww1/Soft-Algorithm-Study | 8b4398ca8afcce64ec3e01609b0661044636bd39 | 6b66759a3e542d22b06433ff46aa82a0f883b529 | refs/heads/master | 2020-04-16T17:07:39.029418 | 2019-12-23T23:05:57 | 2019-12-23T23:05:57 | 165,763,614 | 3 | 3 | null | 2019-03-10T07:13:26 | 2019-01-15T01:32:14 | C++ | UTF-8 | C++ | false | false | 1,308 | cpp | orihehe_1577.cpp | /*
BOJ 1577 - 도로의 개수
시간복잡도 : O(MN)
공간복잡도 : O(NM)
현재 정점에서 왼쪽도로와 윗쪽 도로가 공사중인지 아닌지를 vec에 체크해줍니다.
그리고나서 왼쪽, 윗쪽 도로에 대해 공사중이 아닐 때 그곳까지의 경로를 더해줍니다.
도로정보는 칸마다 번호를 매겨 저장해주었습니다.
*/
#include <cstdio>
#include <algorithm>
#define ll long long
#define pii pair<int,int>
using namespace std;
/* 🐣🐥 */
ll dp[101][101];
bool vec[10201][2]; // 왼쪽 윗쪽
int main() {
int n, m, k;
pii a, b;
scanf("%d %d %d", &n, &m, &k);
while (k--) {
scanf("%d %d %d %d", &a.first, &a.second, &b.first, &b.second);
if (a.first > b.first || a.second > b.second) swap(a, b);
if (a.first < b.first) { // 왼쪽에서 온거
vec[b.second*(n+1) + b.first][0] = true;
}
else {
vec[b.second*(n + 1) + b.first][1] = true;
}
}
for (int i = 1; i <= n; i++) {
if (vec[i][0]) break;
dp[i][0] = 1;
}
for (int i = 1; i <= m; i++) {
if (vec[i*(n + 1)][1]) break;
dp[0][i] = 1;
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
if (!vec[j*(n + 1) + i][0]) dp[i][j] += dp[i-1][j];
if (!vec[j*(n + 1) + i][1]) dp[i][j] += dp[i][j-1];
}
}
printf("%lld", dp[n][m]);
return 0;
} |
5b828feebd313d47505fdc6d26706bbee46ca2c7 | b2f33b1842536f9d80d44b7a7cb9585042f38204 | /projects/HouJiePrac/oop/templateMethod.cpp | cdc744464b3d9a3110f9b6d69020f8f546532bd6 | [] | no_license | freedomvictory/cpp-practices | 250650017175fd4b90bb1e53f6ddc6928be6055b | ccc77d7aed50e002029cbb7a93a8ac56324c1a20 | refs/heads/master | 2023-03-09T16:55:34.709710 | 2021-02-27T03:38:03 | 2021-02-27T03:38:03 | 310,278,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 684 | cpp | templateMethod.cpp | //
// Created by dingguoliang on 2021/2/25.
//
#include <iostream>
using namespace std;
//template method
class CDocument
{
public:
void OnFileOpen()
{
cout << "dialog .." << endl;
cout << "check file status..." << endl;
cout << "open file..." << endl;
Serialize();
cout << "close file ..." << endl;
cout << "update all views ..." << endl;
}
virtual void Serialize()
{} ;
};
class CMyDoc : public CDocument
{
public:
virtual void Serialize() override
{
cout << "CMyDoc::Serialize()" << endl;
}
};
int main()
{
CMyDoc myDoc;
myDoc.OnFileOpen();
} |
2052d93152a57299b13b81bc90f9213cc034f076 | 89714ac860fc9cdc71c1b8a87a91f5ebb892173f | /gameboard.cc | 640808082dd23ae50f9a986b2a570fbe10d33930 | [] | no_license | F1nde/Carcassonne | cf3cac80a6fa11346ff5f4c1a0c200c752fce1af | efde0677b0b5375fbb28922059a03414f467188c | refs/heads/master | 2021-05-09T05:08:15.564123 | 2018-01-28T21:39:58 | 2018-01-28T21:39:58 | 119,299,845 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,213 | cc | gameboard.cc | #include "gameboard.hh"
#include "gameconstants.hh"
#include "card.hh"
#include "pointcard.hh"
#include "playerdatabase.hh"
#include <QDebug>
#include <memory>
gameBoard::gameBoard( int width, int height, std::shared_ptr<playerDataBase> dataBase )
{
firstTurn_ = true;
dataBase_ = dataBase;
tile_ tile;
tile.pointer_ = nullptr;
tile.lock_ = false;
std::vector< tile_ > vectorRow ( width, tile );
std::vector< std::vector< tile_ > > fullVector ( height, vectorRow );
gameBoard_ = fullVector;
qDebug() << "Luotiin pelilauta, jonka leveys on " << width << " ja korkeus " << height;
}
gameBoard::~gameBoard()
{
}
bool gameBoard::placeCard( std::shared_ptr<Card> getCard, int x, int y )
{
// Tarkastetaan, onko kyseessa ensimmainen siirto. Jos ei ole, tarkastetaan,
// onko ruudussa jo korttia ja etta onko ruudun ymparilla jossain kortti
if( firstTurn_ || (gameBoard_.at(y - 1).at(x - 1).pointer_ == nullptr
&& cardAdjacent(x - 1, y - 1) ) ) {
// heitetaan kortti pointterista kentalle
gameBoard_.at(y - 1).at(x - 1).pointer_ = getCard;
if (firstTurn_) { firstTurn_ = false; }
qDebug() << "Kortti asetettu koordinaatteihin: (" << x << ", " << y << ")";
return true;
}
// Jos kortin asettaminen ei onnistunut, palautetaan false
return false;
}
bool gameBoard::checkRoads( int x, int y, int direction )
{
int trues = 0;
int trueCounter = 0;
std::vector<bool> links;
// Jos direction on 5 (= uusi kortti ) hypataan tarkistusten yli
if( direction != 5 ) {
if( ( y-1 >= 0 and y <= static_cast<int>( gameBoard_.size() ) ) and (x-1 >= 0 and x <= static_cast<int>(gameBoard_.at(0).size()) ) ) {
if( gameBoard_.at(y-1).at(x-1).pointer_ == NULL ) {
return false; // Tarkisteltavassa kohdassa ei ole korttia
}
} else {
return false; // Tarkisteltava ruutu on pelilaudan ulkopuolella
}
}
// Tarkistetaan onko ruudussa lukko
if( gameBoard_.at(y - 1).at(x - 1).lock_ == true ) {
return true;
}
// Kysytaan kortilta sen linkkitiedot
links = gameBoard_.at(y-1).at(x-1).pointer_->link();
// Tarkistetaan onko ruudussa umpikuja
if( direction != 5 ) {
direction = gameConstants::comingDirection.at(direction);
if( links.at(direction) == false ) {
return true;
}
}
// Kun tahan asta paastaan, tiedetaan etta kyseessa on eteneva tie tai aloituspala.
// Selvitetaan kortin linkkejen maara, jolla voidaan tunnistaa kortin tyyppi
for( int i = 0; i < 4; ++i ) {
if( links.at(i) == true ) {
++trues;
}
}
// Kyseessa on neljan umpikujan kortti -> rekursio jokaiseen suuntaan
if( trues == 0 ) {
for( int i = 0; i < 4; ++i ) {
if( checkRoads( x + gameConstants::compass.at(i).first, y + gameConstants::compass.at(i).second, i) == true ){
++trueCounter;
placeTokens();
pointcards_.erase( pointcards_.begin(),pointcards_.end() );
// tie valmistui
}
}
cleaning();
invariant();
if( trueCounter != 0) { // Ainakin yksi tie valmistui
return true;
}
} else { // Linkillinen kortti
int road = 0; // Apumuuttuja pitamaan kirjaa onko umpikujista lahtenyita teita valmistunut
gameBoard_.at(y - 1).at(x - 1).lock_ = true; // Laitetaan pelilautaan lukko
for( int i = 0; i < 4; ++i ) { // Loop rekursioiden aloittamisille ja kokoamiselle. 0 = pohjoinen, 1 = ita, 2 = etela, 3 = lansi.
if( direction == i ) { // Tulosuunta -> trueCounter
++trueCounter;
continue;
}
// Jos tarkisteltavassa suunnassa on linkki tai kyseessa on aloituspala -> rekursio
if( links.at(i) == true or direction == 5 ) {
size_t temp = pointcards_.size(); // Apumuuttuja umpikujasta lahtevaa tieta varten
if( checkRoads( x + gameConstants::compass.at(i).first, y + gameConstants::compass.at(i).second, i) == true ) {
if( direction == 5 and links.at(i) == false ) { // Tarkistetaan onko kyseessa umpikujasta lahtenyt tie
while( temp != pointcards_.size() ) { // Puretaan pistekorttilistasta umpikuja tiesta saadut pointerit
qDebug() << "Lisatty nappula.";
dataBase_->changeTokens( pointcards_.back()->placeToken() );
pointcards_.erase( pointcards_.end()-1, pointcards_.end() );
}
++road;
} else { // Kyseessa oli linkillinen tie
++trueCounter;
}
}
}
}
if( trues == trueCounter ) { // Linkilla varustettu tie on valmistunut
if( direction == 5 ) {
// tie valmistui
checkPointcard( x , y );
placeTokens();
cleaning();
invariant();
return true;
} else { // Palautetaan tieto valmistuneesta tiesta rekursion seuraavalle tasolle
checkPointcard( x , y );
return true;
}
}
if( direction == 5 ) {
cleaning();
invariant();
if( road != 0 ) { // Ainakin yksi umpikujasta lahtenyt tie on valmistunut
return true;
}
}
}
return false; //Tie(t) ei valmistunut
}
void gameBoard::cleaning()
{
for( int i = 0; i < getHeight(); ++i){
for( int j = 0; j < getWidth(); ++j){
gameBoard_.at(i).at(j).lock_ = false;
}
}
pointcards_.erase( pointcards_.begin(),pointcards_.end() );
}
void gameBoard::checkPointcard( int x ,int y )
{
std::shared_ptr<Card> temp = gameBoard_.at(y - 1).at(x - 1).pointer_;
std::shared_ptr<pointCard> pc (std::dynamic_pointer_cast<pointCard>( temp ));
if ( pc != 0 ) {
// Jos tultiin tanne, tiedetaan, etta kyseessa oli pointCard
pointcards_.push_back( pc );
}
return;
}
void gameBoard::placeTokens()
{
for( size_t i = 0; i < pointcards_.size(); ++i ) {
qDebug() << "Lisatty nappula.";
dataBase_->changeTokens( pointcards_.at(i)->placeToken() );
}
return;
}
int gameBoard::getWidth()
{
return gameBoard_.at(0).size();
}
int gameBoard::getHeight()
{
return gameBoard_.size();
}
std::shared_ptr<Card> gameBoard::getCardPointer( int x, int y )
{
return gameBoard_.at(y - 1).at(x - 1).pointer_;
}
bool gameBoard::cardAdjacent( int x, int y )
{
for( int i = -1; i < 2; i+=2 ) {
if( !(x+i < 0 || x+i >= getWidth()) )
if ( gameBoard_.at(y).at(x + i).pointer_ != nullptr ) { return true; }
if( !(y+i < 0 || y+i >= getHeight()) )
if ( gameBoard_.at(y + i).at(x).pointer_ != nullptr ) { return true; }
}
return false;
}
void gameBoard::invariant() const
{
Q_ASSERT( pointcards_.size() == 0 );
return;
}
|
6f5912762ffe1834bac1334be7934fc7ed32f4cf | 263bc70c476d7ab9a9653a149513a417d34f0f77 | /app/Wifi.cpp | 61f83b77ed5cf61dfc44449c69a134151663e2dc | [] | no_license | sosarkar/MySensorsGateway | 30802fbca2a2b496453c140ded5de15fee86d80a | 12f478df543ae0bd54e932050d575bccabd07262 | refs/heads/master | 2021-01-16T21:57:09.925034 | 2016-02-25T02:59:39 | 2016-02-25T02:59:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,601 | cpp | Wifi.cpp | #include <user_config.h>
#include <SmingCore/SmingCore.h>
#include <SmingCore/Debug.h>
#include <globals.h>
#include <AppSettings.h>
#include "Wifi.h"
void
wifi_cb ( System_Event_t *e )
{
Wifi.handleEvent(e);
}
extern void otaEnable();
void WifiClass::begin(WifiStateChangeDelegate dlg)
{
changeDlg = dlg;
if (AppSettings.exist())
{
if (AppSettings.ssid.equals("") &&
!WifiStation.getSSID().equals(""))
{
AppSettings.ssid = WifiStation.getSSID();
AppSettings.password = WifiStation.getPassword();
AppSettings.save();
}
WifiStation.config(AppSettings.ssid, AppSettings.password);
if (!AppSettings.dhcp && !AppSettings.ip.isNull())
{
WifiStation.setIP(AppSettings.ip,
AppSettings.netmask,
AppSettings.gateway);
}
}
else
{
String SSID = WifiStation.getSSID();
if (!SSID.equals(""))
{
AppSettings.ssid = SSID;
AppSettings.password = WifiStation.getPassword();
AppSettings.save();
}
}
wifi_set_event_handler_cb(wifi_cb);
WifiStation.enable(true);
softApEnable();
otaEnable();
}
void WifiClass::softApEnable()
{
char id[16];
WifiAccessPoint.enable(false);
// Start AP for configuration
sprintf(id, "%x", system_get_chip_id());
if (AppSettings.apPassword.equals(""))
{
WifiAccessPoint.config((String)"MySensors gateway " + id,
"", AUTH_OPEN);
}
else
{
WifiAccessPoint.config((String)"MySensors gateway " + id,
AppSettings.apPassword, AUTH_WPA_WPA2_PSK);
}
WifiAccessPoint.enable(true);
}
void WifiClass::handleEvent(System_Event_t *e)
{
int event = e->event;
if (event == EVENT_STAMODE_GOT_IP)
{
Debug.printf("Wifi client got IP\n");
if (!haveIp && changeDlg)
changeDlg(true);
haveIp = true;
if (!AppSettings.portalUrl.equals(""))
{
String mac;
uint8 hwaddr[6] = {0};
wifi_get_macaddr(STATION_IF, hwaddr);
for (int i = 0; i < 6; i++)
{
if (hwaddr[i] < 0x10) mac += "0";
mac += String(hwaddr[i], HEX);
if (i < 5) mac += ":";
}
String body = AppSettings.portalData;
body.replace("{ip}", WifiStation.getIP().toString());
body.replace("{mac}", mac);
portalLogin.setPostBody(body.c_str());
String url = AppSettings.portalUrl;
url.replace("{ip}", WifiStation.getIP().toString());
url.replace("{mac}", mac);
portalLogin.downloadString(
url, HttpClientCompletedDelegate(&WifiClass::portalLoginHandler, this));
}
}
else if (event == EVENT_STAMODE_CONNECTED)
{
if (!connected)
Debug.printf("Wifi client got connected\n");
connected = true;
}
else if (event == EVENT_STAMODE_DISCONNECTED)
{
if (connected)
Debug.printf("Wifi client got disconnected\n");
connected = false;
if (changeDlg)
changeDlg(false);
}
else
{
//Debug.printf("Unknown wifi event %d !\n", event);
}
}
void WifiClass::portalLoginHandler(HttpClient& client, bool successful)
{
String response = client.getResponseString();
Debug.println("Portal server response: '" + response + "'");
}
WifiClass Wifi;
|
764c8eeb44bf2c457e23ee1e93498c3d6eab116c | c9b02ab1612c8b436c1de94069b139137657899b | /server/app/data/ResourceManager.cpp | e4ecb506cdc5244b017cbe21030b70dfbb24dd14 | [] | no_license | colinblack/game_server | a7ee95ec4e1def0220ab71f5f4501c9a26ab61ab | a7724f93e0be5c43e323972da30e738e5fbef54f | refs/heads/master | 2020-03-21T19:25:02.879552 | 2020-03-01T08:57:07 | 2020-03-01T08:57:07 | 138,948,382 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,050 | cpp | ResourceManager.cpp | /*
* ResourceManager.cpp
*
* Created on: 2016-9-2
* Author: Ralf
*/
#include "ResourceManager.h"
#include "BaseManager.h"
unsigned OfflineResourceItem::CalcAddExplotBox(int exploit, int box_lvl, int add_exploit) const
{
if (add_exploit <= 0)
{
return 0;
}
try
{
ExploitBoxCfgWrap cfg;
unsigned old_stage = cfg.GetExploitBoxStage(box_lvl, exploit);
unsigned new_exploit = exploit + add_exploit;
unsigned new_stage = cfg.GetExploitBoxStage(box_lvl, new_exploit);
unsigned nAddCnt = 0;
for (unsigned stage = old_stage + 1; stage <= new_stage; ++stage)
{
nAddCnt += cfg.GetBoxCntByStage(box_lvl, stage);
}
return nAddCnt;
}
catch(const std::exception& e)
{
error_log("uid: %u, %s", uid, e.what());
}
return 0;
}
//////////////////////////////////////////////////////////////////////////////////////
int ResourceManager::OnInit() {
for(unsigned i=0;i<MEMORY_HERO_PROPERTY_NUM;++i)
{
if(m_data->item[i].uid != 0)
m_map[m_data->item[i].uid] = i;
else
m_freeIndex.insert(i);
}
return 0;
}
|
7ac774a1eef3bdf24797e84681294db9aeeb8039 | f7759fb3e7ffee16271ad30a0333312eef027742 | /src/transformations/transformations.cpp | e004401a8a4238ef07216f68d5ffbe61ff41985b | [] | no_license | xz1548/FacePro | 276f68a6e038d6b85b8833db1ddeb68705a01ebb | ffabd5e29353d05ebd1e80c896e2cec52f5ff7b3 | refs/heads/master | 2023-03-20T18:39:56.106156 | 2021-03-22T14:17:26 | 2021-03-22T14:17:26 | 350,535,342 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 205,524 | cpp | transformations.cpp | #include "..\..\head\transformations\transformations.h"
#include <cmath>
const int MAXN = 11;
const double a = -320.0;
const double b = 320.0;
const int MAXQ = 20;
const int MINQ = -20;
const int MAXL = 128;
const double MAX = 1000.0;
const double MIN = 100.0;
int K;///the number of charges
double Matrix[MAXL][MAXL] = { 0.027602092,0.020276590,0.023571918,0.050546910,0.104669123,0.117161515,0.135333658,0.117100278,0.017574498,0.099793110,0.093818655,0.050493327,0.074858083,0.120632899,0.032516378,0.123204862,0.136688531,0.134085949,0.041265645,0.018489229,0.103490307,0.013938539,0.080361777,0.044384915,0.052096977,0.101243667,0.108492622,0.075772814,0.038996040,0.117092623,0.099234321,0.084958396,0.029255496,0.081333918,0.059724837,0.038571207,0.096122705,0.043018560,0.102529648,0.136634948,0.095667253,0.131471886,0.057225593,0.049578596,0.090259242,0.116778782,0.052227106,0.135651326,0.098193288,0.113873842,0.048472499,0.033691367,0.066935519,0.114103481,0.131743626,0.122071974,0.026894036,0.103926622,0.046838231,0.110004416,0.069117094,0.084881849,0.031195950,0.126599700,0.103685501,0.124196140,0.051744863,0.078876775,0.045613487,0.126370061,0.129504640,0.135796764,0.134200769,0.082198894,0.109920214,0.116143446,0.025952514,0.109315497,0.058515402,0.135697253,0.129489331,0.037388564,0.016039740,0.040691546,0.060134361,0.109560446,0.041881844,0.108366320,0.065458171,0.044893949,0.032409213,0.040017936,0.048629419,0.040136583,0.117609312,0.106858354,0.034257811,0.077613757,0.119331608,0.094584120,0.089723416,0.114222129,0.128723866,0.032317357,0.035103650,0.026710325,0.059032091,0.107654438,0.090044912,0.132317725,0.105916832,0.116510869,0.031578683,0.031306943,0.096968544,0.113491109,0.017842411,0.101997650,0.038731955,0.103241531,0.024639741,0.134105086,0.093784209,0.062292972,0.046516736,0.058086741,0.038712818,0.138449101,
0.002701468,0.002612850,0.012351134,0.010173459,0.014775767,0.014760129,0.002820713,0.018456050,0.019037936,0.010102434,0.004963200,0.009865248,0.014808999,0.008741876,0.021701711,0.010131756,0.002893041,0.019830292,0.022922824,0.021488635,0.016719515,0.004183225,0.017593321,0.011830499,0.008070720,0.016930636,0.012823549,0.008174977,0.017762088,0.007735793,0.018005137,0.012171941,0.004740350,0.005234921,0.006627407,0.021250798,0.020178902,0.013758607,0.015250138,0.022619175,0.014640885,0.007353299,0.014654568,0.008819417,0.007592439,0.011079846,0.010236013,0.010174762,0.014079198,0.014047921,0.006652169,0.022023605,0.009481451,0.003092433,0.016217125,0.014227765,0.010410644,0.011006214,0.023638290,0.007617852,0.018858744,0.019853098,0.022512963,0.020530771,0.014435628,0.018959092,0.014846793,0.019565087,0.019375469,0.015404569,0.003598733,0.019331812,0.015457350,0.019033375,0.018966911,0.016946926,0.015100268,0.013324636,0.016273815,0.012797485,0.023072042,0.019557920,0.006422803,0.016845927,0.020259050,0.009384362,0.021925212,0.014431718,0.004861549,0.008107861,0.023247977,0.004351340,0.008940616,0.015677593,0.010381974,0.019128510,0.018926511,0.023648064,0.017351574,0.005370455,0.016937152,0.011320941,0.019686938,0.007931275,0.007458208,0.007155862,0.009084622,0.023326821,0.011377631,0.013270553,0.009063770,0.008831146,0.020014045,0.007215158,0.008249260,0.010547482,0.019259483,0.011013382,0.012140012,0.021454099,0.012424765,0.014620685,0.019185200,0.002467541,0.002422580,0.021362874,0.015251441,-0.986135844,
0.006347107,0.003765739,0.000829029,0.001931996,0.002967136,0.004231682,0.002367913,0.003064342,0.002355600,0.001317437,0.007452234,0.002946614,0.001445533,0.002818734,0.007533888,0.007485069,0.002803181,0.007427393,0.005060743,0.003145347,0.005435096,0.004881668,0.003296341,0.002537916,0.006946978,0.005770133,0.006270854,0.002975344,0.004884260,0.002998890,0.004315711,0.002443734,0.002788708,0.004056278,0.002024666,0.001543603,0.001724839,0.007770855,0.007464547,0.001350487,0.004041157,0.000990175,0.004090192,0.003612801,0.003043172,0.004602362,0.001144841,0.002005873,0.006580618,0.003661621,0.007040728,0.006245580,0.004517252,0.003390307,0.007343579,0.002845088,0.005948993,0.003352505,0.004209864,0.007570178,0.006592067,0.004154781,0.007780360,0.007198634,0.005123819,0.001776682,0.000990823,0.002272867,0.006765310,0.006024382,0.001888146,0.005070464,0.005475490,0.002812686,0.004246587,0.006290511,0.003375402,0.002951583,0.005515237,0.005349770,0.002151035,0.005120363,0.001987512,0.004523084,0.003813694,0.001546411,0.004499971,0.005203529,0.005115611,0.002722608,0.004099049,0.005609419,0.001768042,0.004403413,0.004689415,0.002822622,0.000911762,0.007705187,0.002553685,0.005566432,0.001361935,0.001392609,0.001442293,0.003974841,0.003784749,0.003019411,0.006830978,0.001864168,0.003246010,0.004303614,0.003103008,0.001129072,0.005055559,0.002342207,0.005898446,0.001304908,0.002192509,0.004515092,0.002273731,0.003013363,0.004780141,0.004649237,0.005400965,0.007553545,0.003271283,0.002329894,-0.998722302,-0.008481166,
0.001485550,0.001896499,0.007522187,0.008835343,0.007811306,0.003471497,0.009898778,0.002533529,0.007492790,0.003075702,0.003521199,0.009699668,0.006706958,0.008716847,0.008885954,0.009075669,0.003151467,0.002091669,0.002606566,0.002824466,0.010610967,0.005159234,0.001960747,0.002464129,0.008054056,0.005686254,0.006471178,0.006754235,0.002252593,0.008962022,0.007857977,0.002874168,0.010590965,0.001244618,0.006602099,0.007344595,0.004089435,0.002754762,0.008127397,0.009214167,0.004609485,0.005713530,0.006352985,0.010709764,0.008832009,0.005031040,0.007066689,0.008010719,0.002485646,0.006519061,0.009500861,0.008041631,0.005550181,0.001758304,0.008485006,0.003391793,0.004750711,0.003037517,0.005077711,0.001248255,0.002057120,0.008329840,0.008603200,0.008594411,0.005715954,0.009580869,0.008063754,0.009977270,0.003843654,0.003655151,0.005094077,0.008915957,0.005304097,0.009971815,0.006980014,0.010362155,0.009152949,0.004526144,0.002395940,0.005356526,0.007226401,0.002736276,0.007062749,0.004111862,0.010260630,0.002191375,0.003371791,0.009846955,0.003504228,0.007814942,0.010130921,0.009393578,0.010891297,0.009410246,0.007176700,0.001996205,0.004920424,0.004999825,0.010590662,0.003304209,0.010121223,0.009442674,0.003400582,0.006247217,0.008163764,0.002712334,0.007577344,0.004615546,0.002416245,0.005585336,0.002207134,0.001455244,0.008900501,0.008716241,0.003441495,0.008794733,0.003738796,0.002435944,0.001170369,0.010456407,0.001194007,0.002070152,0.008444700,0.003717885,0.004416133,-0.997174236,0.000689074,-0.011161272,
0.006469405,0.006238667,0.001720527,0.002341288,0.004409619,0.001570500,0.005076907,0.006000333,0.006895035,0.007583925,0.002855225,0.006548929,0.008483375,0.007353900,0.001685157,0.003744942,0.001516851,0.006218252,0.003452247,0.004348374,0.002364789,0.004585996,0.002286689,0.004900293,0.002934037,0.008251213,0.001257390,0.000953538,0.006178134,0.004513831,0.007203160,0.007439121,0.004862549,0.007407074,0.004918097,0.000958997,0.007869499,0.006986903,0.001358753,0.002046219,0.004406771,0.003773429,0.001075791,0.005941462,0.001524447,0.002189599,0.003536044,0.003263289,0.001968831,0.004073957,0.007996974,0.001362551,0.003319787,0.008348303,0.007700956,0.007709976,0.002130015,0.003467677,0.005716658,0.002785909,0.006218489,0.005402361,0.003087862,0.003837048,0.007725406,0.003325247,0.007170164,0.005831315,0.005645680,0.005768646,0.003035637,0.002098443,0.007112242,0.002749826,0.005839624,0.003221747,0.002801102,0.005515356,0.004786823,0.007757216,0.001304155,0.002741755,0.002158976,0.006691122,0.001163623,0.002620927,0.004712047,0.006330772,0.000963745,0.007442919,0.007554964,0.003745417,0.003970458,0.004542080,0.006725543,0.008348541,0.001029026,0.006908566,0.002788995,0.004851867,0.004888661,0.001746402,0.008339045,0.005627164,0.002988161,0.003634084,0.006171487,0.002144733,0.002994095,0.008339283,0.003244298,0.002415589,0.007007556,0.005049845,0.002735346,0.003000979,0.003167623,0.006426913,0.008203499,0.004729851,0.005035602,0.005320226,0.006614684,0.006249587,-0.998381693,-0.001201782,-0.000997346,0.005295292,
0.002752695,0.006133594,0.007730215,0.009785169,0.008660262,0.004506440,0.011158456,0.009503514,0.007532953,0.008381694,0.003081008,0.008006038,0.010809902,0.001341329,0.007157640,0.005477998,0.012406867,0.001358139,0.009655148,0.006875642,0.010635283,0.002064852,0.002147187,0.002023684,0.001863473,0.010036979,0.005970638,0.011690891,0.012315268,0.001387986,0.001498452,0.003271065,0.003952391,0.008802290,0.005686924,0.002417865,0.001870677,0.004930124,0.007366223,0.001919049,0.009357025,0.006855058,0.003726655,0.005400465,0.001838086,0.011346798,0.004859453,0.009489105,0.004281733,0.005752792,0.002488193,0.003473130,0.003687202,0.001482672,0.005818661,0.003676224,0.004749672,0.008936085,0.005745245,0.010479188,0.002818564,0.002000699,0.004071777,0.006378541,0.002369150,0.004560644,0.002703980,0.006674949,0.012485771,0.009897008,0.010781771,0.011376645,0.001441504,0.011559841,0.009676418,0.004819658,0.011668592,0.002732455,0.001269629,0.008965932,0.001262767,0.009079143,0.011986270,0.010873026,0.006773065,0.012097766,0.009382069,0.006377512,0.002316318,0.007832105,0.008449277,0.002960935,0.004798044,0.001757466,0.009674703,0.010255854,0.002627134,0.004828577,0.012297429,0.007299669,0.010395138,0.011373557,0.003348255,0.004923606,0.006765861,0.001332752,0.008539503,0.001282322,0.001848035,0.003736261,0.004415871,0.005118810,0.002529018,0.005367531,0.002659725,0.003455291,0.009631134,0.011297740,0.004793242,0.003345510,0.006477001,0.007518544,0.003271752,-0.996914834,-0.002816857,0.000727049,-0.004672465,0.007790860,
0.002990492,0.008312362,0.013721378,0.013006347,0.004637068,0.015308413,0.013775506,0.009751086,0.003207546,0.008181372,0.009298575,0.015015580,0.003075473,0.005831133,0.016037518,0.003671965,0.004425968,0.011587109,0.003466819,0.013608792,0.010311311,0.012009308,0.015900574,0.015193661,0.003663845,0.012578194,0.005555079,0.006361587,0.010126193,0.011066939,0.012203087,0.007962695,0.016657284,0.013347895,0.002680880,0.015363082,0.003668717,0.010159753,0.004885515,0.006614365,0.002547725,0.019589400,0.009149723,0.009961644,0.010631208,0.007369993,0.005590804,0.011761943,0.012495919,0.002598605,0.002781558,0.009097219,0.010566254,0.008126162,0.006140204,0.005886884,0.012386039,0.005487961,0.014220439,0.008484490,0.019447043,0.008366490,0.011304561,0.014652922,0.018135521,0.003297940,0.014482960,0.016433735,0.017680304,0.015394476,0.011714852,0.010810372,0.011515660,0.013648305,0.008703167,0.003202133,0.013360886,0.017739303,0.003329334,0.015420999,0.008950532,0.014494868,0.016800182,0.012195509,0.010197101,0.010446090,0.017989916,0.006193249,0.017245114,0.006001636,0.012024464,0.007336434,0.004251135,0.004842213,0.005430044,0.005404603,0.018133356,0.003680625,0.012480222,0.006435202,0.009504803,0.005053312,0.010157046,0.010410366,0.017125491,0.016014784,0.006369707,0.003938275,0.005831133,0.004466564,0.004685783,0.015051846,0.014753059,0.006556990,0.012478057,0.002313351,0.004462234,0.002154214,0.017645121,0.015545494,0.006640888,0.017882202,-0.992545386,0.004175804,-0.001155760,-0.001264298,-0.000556966,-0.002408268,
0.012845690,0.013276330,0.023649827,0.004919785,0.009021460,0.024243546,0.016165858,0.018212460,0.003527616,0.009364561,0.008903563,0.009051817,0.012933936,0.021140816,0.011949816,0.011162662,0.010129124,0.022815372,0.015628616,0.008582348,0.004472201,0.020927613,0.023690773,0.024048699,0.022416500,0.010682603,0.023471923,0.003214166,0.006662820,0.003771175,0.009413272,0.024576057,0.010493404,0.003467608,0.002830825,0.011722494,0.011349743,0.011579889,0.022395321,0.009865798,0.021039156,0.024601472,0.017599679,0.018182809,0.024825970,0.011108302,0.020417904,0.023534754,0.010404452,0.012826629,0.018505437,0.013632844,0.012261148,0.014406585,0.013324336,0.013733798,0.016033842,0.025059645,0.021034215,0.017486724,0.018515320,0.017104090,0.016845705,0.017938544,0.018480728,0.002624682,0.020220233,0.009312319,0.002687514,0.008982632,0.020883137,0.003644100,0.002940956,0.003031320,0.012421403,0.025426749,0.010976992,0.010572472,0.018514614,0.012670610,0.012121366,0.018256230,0.008423505,0.003926488,0.017013726,0.020110808,0.003193693,0.007636350,0.005356779,0.004112863,0.014732037,0.002731990,0.007972391,0.009653302,0.003539617,0.022055751,0.009794495,0.005038388,0.006196881,0.004132630,0.015751455,0.016614148,0.016920538,0.012588717,0.008429153,0.004186990,0.005618693,0.022950918,0.023803022,0.006865433,0.003759173,0.014922648,0.004532208,0.007732362,0.015886295,0.009402683,0.004096626,0.018324709,0.011963935,0.024942454,0.008011926,-0.986773197,-0.002146196,0.001674738,0.001734843,0.007082893,0.001586516,0.007333317,
0.003267890,0.002556949,0.001854302,0.002947355,0.001334979,0.003004995,0.004299929,0.002606014,0.004594597,0.004378938,0.000667338,0.002328076,0.003586879,0.003866363,0.003138973,0.002700487,0.002616979,0.004903323,0.000725681,0.004185774,0.003377125,0.004690476,0.001899149,0.001876093,0.002831794,0.003421269,0.002878890,0.000592406,0.003778076,0.003116620,0.000914910,0.000947244,0.001950744,0.003122666,0.003765563,0.001432967,0.003368128,0.001627257,0.002689381,0.004010323,0.003536971,0.001036657,0.002958602,0.003760784,0.000641189,0.003535565,0.000900148,0.000755626,0.001972957,0.003885624,0.001470785,0.000883981,0.003597282,0.002638348,0.002226432,0.002330325,0.003855116,0.000750846,0.000837588,0.003546672,0.003056309,0.003388091,0.002686147,0.001768405,0.003899963,0.003110997,0.002774576,0.004100017,0.001828154,0.002484126,0.001401757,0.001791742,0.002883951,0.004839497,0.004805334,0.003441232,0.002997404,0.000983797,0.001122554,0.004032676,0.003127164,0.004968132,0.001070960,0.003977426,0.003391606,0.000864580,0.004714797,0.001132817,0.004552421,0.001083050,0.002142503,0.000862190,0.001444777,0.004466804,0.003016523,0.003970115,0.001320640,0.004026068,0.004735182,0.003751224,0.001030471,0.002994733,0.004725482,0.002663654,0.002074038,0.004802944,0.003459790,0.001550356,0.002050841,0.004750787,0.002372079,0.004165248,0.004690617,0.004256207,0.003148674,0.003749818,0.000813407,0.001754487,0.003359693,0.003629055,-0.999367161,-0.003949130,-0.003386808,-0.004516759,-0.003563532,0.000848636,-0.003446271,-0.008075109,
0.014938982,0.016096640,0.015942068,0.006649782,0.018606804,0.014462204,0.006564332,0.018305279,0.014852444,0.004572856,0.007066692,0.007632730,0.007663753,0.005023510,0.003752644,0.005383271,0.016048200,0.008434437,0.003582289,0.009462015,0.016693702,0.004113494,0.004085736,0.014987967,0.016517904,0.003398870,0.008738683,0.014995586,0.017130749,0.014738148,0.014777879,0.012450590,0.016677374,0.013647435,0.016384558,0.004024234,0.007249566,0.015113148,0.003718355,0.011964558,0.006337373,0.008231425,0.018558364,0.017500307,0.009169198,0.003320496,0.015188257,0.014795840,0.007410669,0.004805803,0.015312350,0.003224705,0.014585753,0.017440438,0.002451300,0.012135458,0.011836655,0.006161574,0.008931353,0.011542206,0.004067231,0.006322677,0.019268089,0.016939711,0.010914121,0.019246863,0.018212210,0.009816877,0.004251194,0.014687531,0.003440235,0.017739785,0.009022790,0.013992501,0.005803446,0.011247213,0.004592450,0.004852610,0.008454030,0.014937894,0.003909394,0.018128392,0.003951302,0.018644903,0.019018815,0.010621849,0.009317784,0.014747944,0.004868938,0.009131100,0.010630558,0.015030419,0.007137446,0.016976177,0.013819968,0.016444972,0.017491055,0.013498305,0.012739052,0.018877305,0.011688070,0.011413759,0.015505565,0.010763359,0.012794023,0.003155038,0.011529144,0.007827578,0.012868587,0.010773700,0.002382178,0.007276235,0.005600434,0.017021896,0.014595005,0.014066521,0.016743230,0.010030775,0.003527862,-0.991064255,0.000125787,-0.008062945,-0.003002030,0.004764986,0.001308720,-0.002238570,0.002209618,-0.003863964,
0.008200739,0.004351274,0.003537243,0.005176340,0.007106935,0.001351703,0.005734507,0.005527378,0.003015169,0.007045325,0.002762982,0.004084605,0.002765281,0.007949013,0.002663211,0.002390794,0.003837016,0.001535383,0.001854697,0.003244826,0.002824822,0.001878375,0.003036548,0.003144135,0.007754068,0.003649428,0.007382800,0.001572625,0.007391076,0.007332225,0.003868051,0.003830579,0.005127604,0.001372853,0.004926912,0.005399101,0.002796776,0.004138399,0.008148555,0.002332633,0.004339090,0.001134000,0.001008251,0.008138670,0.007533606,0.000880664,0.001336071,0.001110091,0.000982504,0.007236362,0.001931479,0.001028711,0.002366656,0.003503679,0.007882345,0.003343908,0.004493115,0.002231023,0.004868751,0.007411536,0.008283499,0.007455214,0.001807800,0.002491485,0.001690327,0.003562301,0.001186184,0.004961625,0.003425058,0.005837037,0.002777005,0.002913099,0.007889012,0.008157520,0.007074521,0.007047164,0.002917466,0.006030832,0.003622531,0.003775866,0.002193551,0.005758185,0.000961354,0.001908490,0.007818896,0.002067113,0.008040048,0.006499342,0.003091261,0.008256602,0.001224116,0.005770369,0.003971041,0.008200280,0.005193352,0.008075451,0.005629908,0.004645990,0.005484849,0.003902304,0.003225975,0.003029192,0.001759294,0.002863443,0.006163017,0.007306017,0.002410795,0.005616115,0.006515664,0.002619532,0.005948762,0.007925334,0.001674695,0.001303197,0.003286666,0.002274241,0.001762972,0.006508308,-0.998443947,0.002208426,-0.001727010,-0.005435727,-0.012935889,-0.001818227,-0.006020063,0.001865963,-0.000282174,-0.005671416,
0.002866220,0.015744360,0.003283801,0.018643263,0.007256163,0.003843574,0.010185414,0.012010295,0.017782809,0.012358186,0.012585804,0.010356831,0.014190373,0.006100648,0.007972177,0.004760791,0.008181811,0.004355574,0.005507155,0.015290810,0.008657842,0.003307406,0.012439679,0.005176124,0.014470260,0.018494889,0.010328730,0.009678472,0.007645081,0.015363310,0.009143428,0.012925265,0.002896569,0.002439646,0.018671364,0.017576548,0.015885990,0.018356632,0.006866683,0.006330515,0.006049505,0.011008775,0.016071456,0.019142899,0.006362550,0.003056183,0.009496939,0.008336366,0.017033074,0.007985104,0.005647098,0.008548248,0.004405594,0.017278115,0.017818778,0.007449498,0.005654966,0.020135427,0.006444043,0.017355111,0.017550695,0.007983980,0.005993865,0.009894288,0.019787537,0.017289917,0.008042430,0.011287537,0.013743005,0.015585308,0.020044942,0.020402949,0.003579424,0.015717383,0.010339408,0.010293884,0.003131493,0.002228326,0.011602268,0.006896470,0.013917231,0.018055389,0.019591392,0.008338615,0.002458193,0.013867211,0.014660785,0.014793983,0.006410884,0.010795769,0.019135031,0.005987682,0.010959317,0.013155131,0.002348599,0.007380369,0.019624551,0.019313191,0.006868931,0.008467879,0.016191729,0.009292364,0.013034297,0.003138238,0.002499782,0.017873294,0.007409032,0.007609112,0.011372402,0.006012973,0.011702870,0.012801058,0.003192192,0.007684423,0.003677778,0.002923546,0.005805588,-0.991643104,-0.001157037,0.003652476,0.001623279,-0.002408913,0.010237080,-0.003341921,-0.000674734,0.004981084,0.000333302,0.006675959,
0.001603515,0.000506793,0.003497451,0.004391044,0.001164244,0.002005474,0.001478298,0.002249583,0.001336133,0.000892688,0.002503685,0.001845980,0.003182765,0.000641875,0.003101311,0.003116362,0.003109153,0.000601780,0.004303772,0.003652771,0.004197274,0.001882154,0.002799905,0.002973185,0.003911932,0.001234948,0.001520670,0.002364682,0.003380709,0.003107255,0.003008220,0.002499638,0.002628269,0.003371982,0.000720800,0.003100552,0.002100588,0.003922556,0.002076809,0.002709597,0.003873987,0.003349088,0.003068173,0.002838229,0.003869940,0.002159149,0.002124999,0.002118548,0.001628558,0.000917099,0.002073394,0.001310710,0.002383148,0.000754317,0.000832483,0.000644405,0.000686776,0.001200292,0.002584380,0.002057584,0.003226401,0.000644658,0.004472245,0.001956019,0.001327026,0.002667732,0.002994181,0.003635063,0.000516279,0.004538016,0.004160215,0.001831814,0.001075707,0.004272025,0.002833296,0.001703562,0.003790256,0.002553013,0.002357472,0.003978208,0.001135280,0.002747036,0.002592349,0.001996241,0.003247777,0.001895055,0.002590578,0.001135027,0.000894838,0.000782396,0.004061433,0.002720348,0.001822075,0.001098474,0.003832754,0.004363471,0.001250252,0.001212054,0.002899446,0.004417226,0.002179766,0.004160342,0.003694004,0.004466048,0.004295424,0.003792407,0.002443606,0.001689017,0.002527717,0.004107219,0.002128287,0.002309662,0.001099992,0.004570901,0.003170370,0.002383527,-0.999298894,-0.002998851,-0.000449378,-0.013509535,0.000132781,-0.000887019,-0.001751134,-0.007988743,-0.002133583,-0.001972134,-0.001060462,-0.016019599,
0.005999580,0.011297850,0.007405484,0.021702028,0.007085707,0.009729894,0.004706249,0.018481378,0.009413210,0.006736860,0.015210627,0.002697904,0.009455888,0.007014577,0.012096982,0.022089842,0.012850961,0.003116644,0.019691209,0.007842779,0.020997530,0.008077818,0.018139953,0.012443973,0.009136111,0.012226872,0.014693542,0.008489136,0.005491773,0.021904285,0.011161156,0.019261335,0.006099163,0.003372713,0.012572626,0.004069170,0.017291339,0.011235379,0.009277753,0.005689700,0.021270298,0.020631983,0.016721061,0.003170456,0.014876625,0.006021229,0.003788360,0.017861617,0.018306954,0.008752008,0.016895484,0.017284535,0.021491730,0.006594600,0.006441825,0.002559973,0.008094518,0.016544782,0.007348579,0.006412135,0.004568936,0.021118760,0.018161601,0.002378746,0.010505522,0.007586092,0.007491458,0.019754298,0.021163294,0.014364488,0.020575697,0.018992896,0.018696624,0.007872469,0.004021543,0.004512032,0.021372355,0.011026318,0.010615619,0.010702212,0.006468421,0.002657700,0.017184953,0.012444592,0.019108560,0.009033437,0.017376695,0.003987525,0.019234739,0.008105033,0.007439502,0.013736687,0.022190661,0.006859328,0.020179842,0.015048574,0.004041955,0.013729264,0.007586092,0.007286109,0.005504143,0.002971910,0.011034977,0.004281323,0.006941591,0.018578486,0.014227175,0.022047164,0.008303579,0.007944217,0.019104230,0.005565996,0.008078437,0.019278035,0.003364053,-0.989833538,0.000853843,0.011589859,0.003114589,0.000282668,-0.000275995,0.008086281,0.011176195,0.005102663,0.003116962,-0.000501866,0.004267589,0.008284929,
0.008107523,0.009534401,0.007242152,0.013823537,0.004068595,0.002166799,0.009226820,0.008012964,0.010222873,0.015258915,0.003970849,0.005662811,0.011282673,0.002205578,0.017030030,0.003072543,0.017033217,0.015935700,0.017017812,0.016826570,0.010265902,0.019144318,0.008387480,0.016505708,0.002859520,0.014144399,0.018311883,0.018448409,0.009079670,0.003300971,0.017366297,0.012545933,0.014960896,0.013419804,0.013911190,0.012008331,0.013960063,0.008382168,0.013735884,0.002533346,0.013671606,0.010429521,0.015237135,0.011176959,0.014155023,0.010685573,0.010198436,0.019144318,0.001937839,0.006740141,0.003787576,0.008428384,0.012454031,0.008981393,0.006429373,0.005761619,0.009064264,0.005348855,0.011167396,0.013459115,0.014376545,0.004728381,0.013622202,0.003938444,0.015715240,0.009389376,0.018521718,0.006747047,0.010834316,0.019277656,0.002880769,0.012309006,0.011642846,0.005611282,0.006103730,0.017134151,0.006484621,0.008806088,0.003745609,0.004332616,0.012074734,0.002253389,0.013728447,0.010108128,0.006743329,0.007723445,0.004714569,0.017847590,0.015351880,0.016872255,0.003208537,0.004554669,0.015677523,0.013146221,0.003901258,0.003096979,0.006260442,0.014123681,0.010198436,0.017609600,0.009960446,0.010802443,0.018348538,0.003668581,0.005058273,0.002389914,0.010981998,0.011690125,0.010748789,0.003115572,0.017190992,0.008873554,0.005528410,0.010724352,-0.992445759,0.010594648,-0.000451007,0.009094923,0.001669816,-0.001431326,0.000063839,-0.000237693,-0.000859349,0.004783944,0.002677284,0.003622898,-0.001201284,0.007865741,
0.003347475,0.006583417,0.003616645,0.001722225,0.001832608,0.006366782,0.004055621,0.005836313,0.003934809,0.006353403,0.003966291,0.001819622,0.004169742,0.005495325,0.004192370,0.003716403,0.004166397,0.006237313,0.004415694,0.001099671,0.001649423,0.003245356,0.002320380,0.001071927,0.003862597,0.001964438,0.006418728,0.003485799,0.002776276,0.003544040,0.001492013,0.002270796,0.000927111,0.005490013,0.002241282,0.005811915,0.005890816,0.006157625,0.005153944,0.001631911,0.004871591,0.004422384,0.006416563,0.006613325,0.005036477,0.001981556,0.005486274,0.005514018,0.002790443,0.006072034,0.000967447,0.002826451,0.006305786,0.001373956,0.001561470,0.003628845,0.006734923,0.004937113,0.007159929,0.006638313,0.003082831,0.005268262,0.002189730,0.005636207,0.001955781,0.002574596,0.006546032,0.005114395,0.006895678,0.002880954,0.007005471,0.001173850,0.002338088,0.002487824,0.001434953,0.004449341,0.004928062,0.002463426,0.004477084,0.004511911,0.006703048,0.005820179,0.002022679,0.004101269,0.005378449,0.004831845,0.006184581,0.003300056,0.004274026,0.001406029,0.004657121,0.003970226,0.003032263,0.003492882,0.001309419,0.004833616,0.003513739,0.001761183,0.006370127,0.005933513,0.006888988,0.004918420,0.005418785,0.005755051,0.006964151,0.002509468,0.004096744,0.003293956,0.000899367,0.004493218,0.003672329,0.001247045,0.003010423,-0.998646029,-0.006370805,-0.014343029,-0.003236645,-0.003052849,0.000630400,-0.012459756,-0.003041797,-0.002139769,-0.002376942,-0.002715330,-0.003243096,-0.006333055,-0.000700055,-0.001843077,
0.007210002,0.004446503,0.003326214,0.005535572,0.001986791,0.001239331,0.001503694,0.006923826,0.007254429,0.004900382,0.005248796,0.001005588,0.004817531,0.006811957,0.003787298,0.002111868,0.002380233,0.005548180,0.005190961,0.004153723,0.006455538,0.006997871,0.004041854,0.003036436,0.001843903,0.004774705,0.001672198,0.005614021,0.004285004,0.003420672,0.002954786,0.004073474,0.006968253,0.005911804,0.002139885,0.002845119,0.005545779,0.001742241,0.006312250,0.004796718,0.001023799,0.001691009,0.004039653,0.004458710,0.001232927,0.004721672,0.006478552,0.006519577,0.005507555,0.002138484,0.002934373,0.005859171,0.006387896,0.002813099,0.004041254,0.006377290,0.006087111,0.000992179,0.001446058,0.001769657,0.002849321,0.001652185,0.004046257,0.002066640,0.003960004,0.005238390,0.005897795,0.002856926,0.000857697,0.001179295,0.006493361,0.007240420,0.002457680,0.003166716,0.004106694,0.003992624,0.003117086,0.005091099,0.004211358,0.005424904,0.001024599,0.002104263,0.003013022,0.002518918,0.002463684,0.001603956,0.001223322,0.006400104,0.003134897,0.004668439,0.001552524,0.000935945,0.006585418,0.000775246,0.005703476,0.001756449,0.005352860,0.002235344,0.003695241,0.007134755,0.004541962,0.003791100,0.004078877,0.003241562,0.006888804,0.005294224,0.006073303,0.005936219,0.006238605,0.002580756,0.001527709,0.006514174,-0.998695627,-0.001090501,-0.000990138,-0.003277713,0.000266966,0.001225212,0.000443169,-0.000614923,-0.003302262,0.000987020,-0.010485881,0.000028793,-0.005156455,-0.006211795,-0.003300788,-0.014824664,
0.020869157,0.017551319,0.018565306,0.020891690,0.012257272,0.009754278,0.013024005,0.014908863,0.007175767,0.007443728,0.013256643,0.012830342,0.022111519,0.002681339,0.008322516,0.022040266,0.021434310,0.013069071,0.003733693,0.020668795,0.016900906,0.015237115,0.003971813,0.002571719,0.015024573,0.015415552,0.002831153,0.018766276,0.015007521,0.008255526,0.009661101,0.011392491,0.010442449,0.004136852,0.009860244,0.004586295,0.017880179,0.015819929,0.007407797,0.009296309,0.005649002,0.005069232,0.007883427,0.006883447,0.005436460,0.019367969,0.009944895,0.007114867,0.020610940,0.020441638,0.003389607,0.006582600,0.013780384,0.013875997,0.021824070,0.002811056,0.006641673,0.021468414,0.008599003,0.009816396,0.015857687,0.006685521,0.003009591,0.010865096,0.017659721,0.013287093,0.006307332,0.013708522,0.004161821,0.008855392,0.014572085,0.004358528,0.004787874,0.012583697,0.017003827,0.004578378,0.016071446,0.019021447,0.007672712,0.009215921,0.012558119,0.017738282,0.008834077,0.008533231,0.021986065,0.019735197,0.014155529,0.011366304,0.018405747,0.011395536,0.009618471,0.014839437,0.015518473,0.006228162,0.020342371,0.016062920,0.014131778,0.015423469,0.021807018,0.011549004,0.006399900,0.007691591,0.002970006,0.019899018,0.010035636,0.018649957,0.019750422,0.013637878,0.015882656,0.021251000,0.007531424,-0.989557565,-0.001322875,0.003738166,0.004659900,0.010739784,0.000882082,0.002349934,-0.001848625,0.007963700,-0.000276234,0.002744935,-0.001529221,0.003954065,0.003905605,0.006818494,0.004439885,0.009877743,
0.013775594,0.019492358,0.015221700,0.008430121,0.003470789,0.013336097,0.016513238,0.008669397,0.006498864,0.016847674,0.004835485,0.009284362,0.005148469,0.003258466,0.002806868,0.016356471,0.002693005,0.015349313,0.003651758,0.018961551,0.008503829,0.014103980,0.003922937,0.019421400,0.012632022,0.011281627,0.013592425,0.005291484,0.009013183,0.002061538,0.017027543,0.014606183,0.009267311,0.016016535,0.011596261,0.004296427,0.016122146,0.018847138,0.007298099,0.015764058,0.006590723,0.019189275,0.006015362,0.005072561,0.002059887,0.004777179,0.006001060,0.011967000,0.005070360,0.008202396,0.014153485,0.017172759,0.006111072,0.016677156,0.003541746,0.017986846,0.002421276,0.008005475,0.015024778,0.014068226,0.015840516,0.007434514,0.015999483,0.018887293,0.015644145,0.014982424,0.003495541,0.005034056,0.003773871,0.004343732,0.018734926,0.006985666,0.006180379,0.005188623,0.019644724,0.019167823,0.011393839,0.019334491,0.017430186,0.003045043,0.014603433,0.016939534,0.009145748,0.019562215,0.010087449,0.015527532,0.004223269,0.007624834,0.018184317,0.019360344,0.019351543,0.017998947,0.007669389,0.002217204,0.015234901,0.008754656,0.016013234,0.017504444,0.010110001,0.011651266,0.003957041,0.005931203,0.019109517,0.009883927,0.017241516,0.015527532,0.018304780,0.012165022,0.011680970,0.007699092,-0.990863949,0.008477195,0.003170002,0.001136594,-0.004327577,-0.004646304,0.000574839,0.002060659,-0.000860233,0.011556382,0.000957516,0.013668857,0.008442024,0.003251388,0.002934772,0.005221298,0.002131719,0.008788217,
0.018609894,0.007417721,0.005599035,0.022401196,0.011375159,0.006028277,0.020420442,0.010776390,0.019991878,0.019932204,0.020928345,0.020298383,0.011802367,0.022823657,0.003376875,0.010223732,0.009445942,0.012239747,0.012100057,0.014472757,0.021447098,0.020595394,0.009187583,0.024315495,0.008087691,0.020373653,0.017271308,0.007195979,0.016570145,0.010238650,0.008379956,0.020735762,0.008448445,0.024470103,0.022859597,0.014304586,0.024394155,0.019184251,0.013526118,0.010462426,0.009279127,0.022116390,0.010153887,0.014248981,0.009316423,0.010595335,0.010587198,0.009313033,0.019801330,0.015588244,0.015811342,0.011023221,0.017422527,0.005312873,0.015242409,0.024494515,0.011192070,0.024090363,0.006260868,0.010988638,0.023811660,0.006604669,0.009792455,0.021705457,0.015268855,0.009890103,0.010419705,0.002478382,0.016010028,0.016568789,0.005038918,0.006117788,0.014864703,0.007213610,0.021868203,0.004834807,0.024606403,0.010876072,0.004965004,0.017257746,0.003634556,0.009494087,0.003799336,0.009130622,0.012241781,0.005171827,0.007511978,0.015557729,0.015301405,0.014942685,0.018957763,0.010540408,0.020905289,0.013149768,0.019249350,0.016115134,0.011257846,0.008231450,0.017933142,0.021277571,0.022030949,0.007407549,0.017270630,0.003022224,0.004250278,0.011618600,0.019099488,0.019641296,0.002690630,-0.987175215,0.009988299,-0.002286282,0.003260881,0.001102548,0.012995595,0.010473912,-0.000693225,0.010691120,0.003840478,0.005937068,-0.000548262,0.013496039,0.010960700,0.006139776,-0.000578291,0.003808119,0.002112390,0.008129985,
0.012268448,0.010365804,0.018127027,0.013608566,0.004135928,0.010148200,0.009682557,0.015880985,0.018095579,0.017901307,0.016885313,0.013034375,0.005575465,0.012976550,0.010727464,0.007596294,0.004706061,0.018080869,0.002110533,0.004042596,0.015186578,0.003059572,0.016776257,0.011278830,0.009525821,0.011145427,0.017812541,0.002960154,0.004309403,0.005413149,0.002709579,0.002365166,0.007100217,0.005219385,0.011635417,0.018106738,0.011937222,0.010376456,0.007962519,0.014022471,0.008629027,0.016893429,0.015939317,0.005188950,0.012596630,0.004322084,0.011153035,0.014631155,0.013982907,0.015712582,0.015154115,0.015916999,0.002368209,0.010754855,0.006239944,0.011732806,0.015667438,0.012023453,0.014665647,0.007965562,0.003892962,0.008827864,0.014274060,0.016773214,0.004856711,0.005614522,0.012055916,0.014366884,0.006958191,0.011840340,0.014122904,0.003618040,0.012756409,0.011234193,0.003658111,0.007488760,0.010899924,0.006530083,0.008240484,0.010418557,0.004444835,0.011388900,0.009814946,0.006099440,0.002587843,0.002482845,0.007408617,0.002554872,0.007494847,0.002636030,0.002482845,0.009986899,0.002982472,0.008823806,0.017559430,0.011901209,0.009973711,0.002399658,0.017753701,0.011449768,0.016033663,0.004676135,0.012049829,0.003922381,0.010111679,0.016315179,0.004507225,0.017177988,-0.993159258,0.012807404,0.000472037,-0.002941031,-0.002063426,0.003631868,-0.000015775,0.004889426,0.000104272,0.000419749,-0.001892636,-0.000670262,0.000946780,-0.008782974,0.005049555,0.004690131,0.001855130,0.004314306,0.001096777,0.003760003,
0.015996272,0.003858647,0.007117015,0.005545354,0.022536897,0.019775802,0.009383350,0.017396936,0.022319379,0.011343526,0.018363193,0.005328464,0.013149679,0.012470093,0.004846907,0.014528969,0.017671662,0.005893634,0.002523364,0.008519565,0.003066530,0.012144444,0.008471787,0.015745434,0.020640845,0.013264725,0.008583060,0.004393012,0.007162279,0.005474315,0.007526275,0.011362386,0.018512815,0.011488119,0.014980978,0.011044282,0.007927363,0.017067516,0.011953330,0.008647813,0.022394190,0.012705842,0.013695988,0.008518308,0.011873490,0.022640626,0.005847741,0.012589539,0.021911375,0.013682786,0.014513881,0.008417722,0.005518950,0.019265955,0.004507429,0.019536910,0.004277337,0.020994154,0.010665826,0.012781282,0.016946184,0.005498204,0.011064399,0.003119337,0.017139184,0.006684494,0.008844585,0.006439943,0.015136259,0.015571923,0.016881431,0.016039649,0.007401800,0.021009242,0.020593695,0.003447500,0.017877236,0.022275372,0.004535718,0.016341408,0.012819630,0.009041985,0.015071506,0.003386520,0.016847483,0.017502552,0.015165806,0.015552434,0.005970959,0.010962555,0.018592656,0.022346411,0.008273129,0.002674243,0.012402197,0.013103158,0.008603178,0.004420673,0.010741894,0.013182998,0.005564214,0.012637317,0.016668943,0.005417735,0.002552911,0.006968650,0.008462985,-0.990433973,-0.004544635,-0.001440637,0.002444147,0.002278453,-0.001075641,0.001739560,0.000932570,-0.006861653,0.001408942,0.006626375,-0.000115518,0.006566674,0.001914595,-0.005734033,0.008901957,0.007104495,0.003827792,0.003232721,0.003492135,-0.006001232,
0.002683281,0.007694838,0.004760960,0.008929753,0.004553991,0.004645856,0.003452334,0.004925083,0.003571796,0.002266075,0.004845563,0.011779028,0.004214852,0.011757242,0.002552927,0.008645080,0.004636416,0.011710764,0.004824866,0.001869929,0.005529651,0.006280186,0.010244189,0.004215578,0.008514726,0.007713719,0.008076823,0.011500164,0.010366555,0.007568478,0.012571683,0.008262369,0.005349188,0.006881122,0.003683268,0.004312164,0.001986848,0.003047111,0.009567000,0.002889887,0.007040162,0.003674917,0.012954758,0.009376734,0.006813222,0.012769938,0.011946782,0.005075408,0.005649838,0.011915555,0.012508503,0.006907629,0.008958439,0.012685335,0.009554655,0.006663623,0.010630168,0.012589112,0.007564484,0.005831390,0.003068897,0.002167674,0.006731524,0.011039386,0.010200616,0.010223129,0.005592831,0.003863368,0.007014382,0.001646257,0.005629504,0.011793915,0.011550273,0.007465719,0.009294673,0.008561566,0.010622180,0.004131338,0.008860401,0.008573186,0.005190149,0.004942875,0.005124064,0.012275754,0.003239919,0.011511057,0.005785639,0.012516855,0.008130562,0.002609934,0.006834645,0.004278758,0.008730773,0.012847642,0.001937829,0.005588473,0.007411254,0.002583791,0.011282302,0.008178855,0.008926849,0.011752158,0.008281250,0.008482410,0.006253316,0.001568190,-0.996408114,0.000380578,0.002791310,-0.008896928,-0.010161957,-0.011064471,-0.003060274,-0.000836750,-0.003490180,-0.006049555,-0.000650784,0.000597423,0.000623354,-0.003163769,-0.001522356,0.004360414,0.000829029,-0.003792238,-0.002888460,-0.002898951,-0.003802869,0.000717915,
0.005320470,0.001058932,0.003103368,0.004400975,0.001276697,0.004158365,0.003598609,0.004922941,0.002143995,0.003087709,0.003084786,0.001353321,0.001795948,0.007010387,0.005142167,0.002623160,0.006780722,0.002298706,0.001818915,0.004637739,0.007192239,0.006567551,0.007365114,0.006233701,0.001484648,0.001928110,0.002772651,0.005376425,0.005320052,0.005083915,0.003423855,0.002317288,0.005320888,0.001678819,0.007185558,0.005650352,0.006748151,0.002523360,0.001044317,0.006420983,0.005989630,0.003839549,0.002551337,0.005161792,0.002666796,0.006526837,0.006299678,0.002276365,0.005393963,0.006578199,0.003266848,0.002439010,0.002330024,0.002187214,0.004822306,0.005004576,0.001064152,0.004929622,0.006615363,0.003733485,0.006356885,0.004777417,0.002025613,0.002027283,0.006068551,0.006323062,0.000918419,0.005410457,0.004834833,0.003868361,0.006026377,0.004297626,0.004784098,0.005915511,0.005328613,0.004556938,0.007063418,0.004084455,0.001160403,0.002606457,0.001882803,0.003828901,0.004434590,0.003605708,0.007160713,0.005140496,0.001030955,0.006840017,0.007178251,0.002718157,0.003447030,0.002131050,0.001833947,0.003257870,0.003210893,0.003995303,0.004224968,0.006194241,0.005563080,0.003182081,0.005586673,0.007118955,0.002952624,0.005991300,0.005290405,-0.998317836,0.002043791,-0.001703470,-0.012308643,-0.006135858,-0.011137707,-0.013829316,-0.003533704,-0.000550523,0.001380123,-0.014449349,-0.002744001,-0.013870951,-0.005588237,0.000980274,-0.003740511,0.000497769,-0.012158711,0.001040371,-0.002160703,-0.000317384,-0.001574634,-0.002346226,
0.005300165,0.008741329,0.008141679,0.002141425,0.008138925,0.005194006,0.003061556,0.001366262,0.001929607,0.005855999,0.005186244,0.008956151,0.006059555,0.001748085,0.004665713,0.004838222,0.003997210,0.006078083,0.001301164,0.006711032,0.002098110,0.006016490,0.002561806,0.007281388,0.005613886,0.006980687,0.006620897,0.005671472,0.007536020,0.005595108,0.002457650,0.004038272,0.007966416,0.002343729,0.006764112,0.008633417,0.003762858,0.004942629,0.005624151,0.004789148,0.007170972,0.002184240,0.001195005,0.002493454,0.008583342,0.006952144,0.006746836,0.007177733,0.007765364,0.008688750,0.001589597,0.004174977,0.004078582,0.007855500,0.001008976,0.008379786,0.004409328,0.005477431,0.006612384,0.005023250,0.004962659,0.005460406,0.008608880,0.005391552,0.005632414,0.001220043,0.002335466,0.002374024,0.004903570,0.004309429,0.001849738,0.008650943,0.001177479,0.004544031,0.004699013,0.003430359,0.005910581,0.001354745,0.005545784,0.003354746,0.004207025,0.004067816,0.004552293,0.001451640,0.007727057,0.001373273,0.001553293,0.006151943,0.004289148,0.002787895,0.003960906,0.006295409,0.006451142,0.004692503,0.006612384,0.003900064,0.003451892,0.008369020,0.004319694,0.006247587,0.002389297,0.008247338,0.003542027,0.004204271,-0.998198986,-0.002711206,-0.002346927,0.003625499,-0.005155951,0.002352104,-0.012004719,-0.004134295,-0.004801508,-0.004777929,-0.000077945,-0.001849429,-0.002957745,0.002453268,-0.003918560,-0.007269534,-0.000751526,-0.002052693,-0.012759538,-0.003805809,-0.001046031,-0.005340571,-0.001918660,-0.001517004,
0.003486937,0.003410381,0.003187417,0.007618144,0.007714380,0.003076692,0.004082732,0.007810399,0.004994483,0.005277350,0.002913633,0.004000770,0.004340730,0.003861715,0.001527409,0.001487617,0.003397405,0.004252496,0.006303069,0.001774593,0.003053553,0.005294651,0.005538592,0.003970926,0.004132256,0.006530142,0.005207282,0.001164309,0.004978912,0.005686297,0.001943925,0.002110661,0.001058558,0.004316725,0.002440457,0.005824054,0.005381587,0.007643230,0.003547490,0.001922947,0.005829677,0.001103107,0.006824471,0.002271125,0.005762853,0.003035171,0.003098967,0.006694932,0.007282725,0.005934131,0.007860355,0.007524504,0.005583357,0.004913385,0.005099585,0.006604103,0.002581458,0.003762668,0.000890740,0.007791800,0.001958630,0.005903422,0.001803140,0.001112623,0.000896579,0.001095971,0.006061940,0.000793207,0.004412961,0.004809148,0.006791600,0.004530606,0.006715260,0.005206417,0.003133785,0.007083334,0.000914745,0.002209924,0.004403661,0.006405144,0.004034074,0.007772770,0.001818062,0.007851704,0.002748194,0.007575108,0.006340699,0.007200547,0.005216797,0.001294497,0.006706826,0.007620090,0.005232801,0.001202370,0.002866921,0.001718366,0.001528490,0.007022565,0.004344190,0.002160617,0.006021283,0.006880915,0.007014347,-0.998494057,-0.001617779,-0.003831900,-0.004917696,0.000010117,0.000602284,0.002900403,-0.005496510,-0.015062052,-0.001473745,-0.003750034,0.000676652,0.000576189,-0.003287482,0.001584453,-0.000935077,-0.005907877,-0.001457415,-0.007056153,-0.006737096,-0.002265884,-0.003776347,-0.003776424,-0.002283053,-0.002491720,
0.007604094,0.021371392,0.003271099,0.002531859,0.024111700,0.009675765,0.019193127,0.024177456,0.010046076,0.006507694,0.024494471,0.010824770,0.004574458,0.023643100,0.015621520,0.002560930,0.014633099,0.010250959,0.019667957,0.010786700,0.011473335,0.024853708,0.023611260,0.006541611,0.002565776,0.022462947,0.014691242,0.006318731,0.015119004,0.020247305,0.019242963,0.003775000,0.020289527,0.010214274,0.015940612,0.006021097,0.019921984,0.019356480,0.019012470,0.013616299,0.007346606,0.003284250,0.003272483,0.021509134,0.024084705,0.019159211,0.011875487,0.016130267,0.023987109,0.023726852,0.005241020,0.023202186,0.016144110,0.014444136,0.018871959,0.022702438,0.016648011,0.018265617,0.007045512,0.012355162,0.008372405,0.011008887,0.008164753,0.013403802,0.005870896,0.020342824,0.008739948,0.005198105,0.016310924,0.019018700,0.005696469,0.013270905,0.016218173,0.020147632,0.006890465,0.019913678,0.007118882,0.003833834,0.015892852,0.012655564,0.020371896,0.018921104,0.013097170,0.021085525,0.020864722,0.021118057,0.024588606,0.003819299,0.010807465,0.018065579,0.018639390,0.003068985,0.011134171,0.014575649,0.016126806,0.020355976,0.017601132,0.011075336,0.018663616,0.008152294,0.017358872,0.024771340,-0.986878149,-0.000488527,0.003494545,0.002841155,0.002423715,0.001146593,0.002450898,0.003430271,-0.003041178,0.015010477,0.001714645,0.000584283,-0.003062800,0.006172604,-0.000327418,0.003792917,0.004969088,0.001311960,-0.000561726,0.003163010,0.004854159,0.006439667,-0.001452814,0.005886245,0.004767000,0.001900682,
0.004297538,0.019191256,0.004014368,0.021965809,0.004811225,0.010641575,0.010290983,0.014114100,0.010595343,0.022155874,0.004587129,0.019216299,0.018210756,0.011950193,0.005538735,0.017451783,0.010407847,0.019950871,0.002486148,0.018540158,0.014296459,0.016947085,0.021388553,0.013899636,0.005536166,0.005286386,0.004213422,0.004462560,0.006370908,0.021970304,0.023210859,0.012744482,0.020476759,0.021134278,0.015398318,0.019351784,0.005161175,0.023195448,0.021574123,0.006035085,0.007823359,0.002675571,0.009978918,0.003397301,0.014953979,0.007184460,0.016435325,0.009760601,0.019304268,0.021653744,0.017734311,0.015944111,0.021844451,0.007187028,0.017608458,0.002455969,0.011236810,0.007339208,0.014559082,0.017611026,0.016173986,0.014783178,0.015254486,0.013717277,0.020827992,0.017178887,0.015258339,0.012722650,0.007076586,0.020406769,0.005608725,0.004947352,0.018967802,0.005104027,0.011162967,0.005010279,0.008096255,0.014411397,0.008818627,0.005215112,0.007628799,0.013280001,0.005063574,0.019064761,0.014913526,0.011808929,0.015760468,0.018296156,0.004165263,0.008794227,0.017205855,0.019212446,0.017263003,0.016520083,0.011142420,0.016512378,0.017725321,0.017542963,0.020283484,0.020390716,0.002961309,-0.989001739,-0.005568191,-0.001244589,-0.002036279,-0.002528137,-0.002354844,0.002775063,0.008534570,0.011857051,0.009261178,0.009416198,0.001154183,0.000154352,0.003718804,0.013121945,-0.001033014,0.005829701,0.002962261,0.004124038,0.000761896,0.001181751,0.008838913,-0.003108884,0.004810669,-0.000955651,0.004302897,0.008059204,
0.007585192,0.007955358,0.017438652,0.014512447,0.006746811,0.011280567,0.010033745,0.014014872,0.018288567,0.017678788,0.015048297,0.017115149,0.008684157,0.005289739,0.010086701,0.002719544,0.005384640,0.007842106,0.018195763,0.018643004,0.003740387,0.009458571,0.013258809,0.012269950,0.013289219,0.005528302,0.014421741,0.004728721,0.018437997,0.011129564,0.011420559,0.016384253,0.015148442,0.013250944,0.006991142,0.019069272,0.018935572,0.009078966,0.007233376,0.010098760,0.016792171,0.006336797,0.005562383,0.002419636,0.016056032,0.007682190,0.014484134,0.008761231,0.008214370,0.009770014,0.019007928,0.003128510,0.017839228,0.004630150,0.009027059,0.006221971,0.003102819,0.013964537,0.016018281,0.003246481,0.018603680,0.006566971,0.002136506,0.012481249,0.011791250,0.004362749,0.008121042,0.013089455,0.007333520,0.003923373,0.012925344,0.016173478,0.016360135,0.018949204,0.014580084,0.004729770,0.012577723,0.008028238,0.008545213,0.009335357,0.016610757,0.010335226,0.012264183,0.010853774,0.012050786,0.013057472,0.018347814,0.005722299,0.009460668,0.010654010,0.007924424,0.011003204,0.016185013,0.003080798,0.009657286,0.018329463,0.004849314,0.015120653,0.009539840,0.017549282,-0.992403409,0.012044655,-0.001562523,-0.001210168,0.003112256,-0.001086583,-0.001113947,0.008262544,-0.004934375,-0.006107039,0.008492968,0.007265208,-0.000220272,-0.002420083,0.001851663,0.008128605,0.000734284,-0.003778901,0.001806853,0.000631080,0.002070298,-0.000758869,0.002039303,-0.003118557,0.000234608,-0.003251743,0.003034572,-0.000898070,
0.017706708,0.004545143,0.006725426,0.014353299,0.010187028,0.014884066,0.018353599,0.019203280,0.004512289,0.010828254,0.002874103,0.012886749,0.013403355,0.018140046,0.016057760,0.013607279,0.010388119,0.003967360,0.019941370,0.015809086,0.008521086,0.004962620,0.020511790,0.015643682,0.004852161,0.008487098,0.018066407,0.004432419,0.002372791,0.009744627,0.005178439,0.004935996,0.014884066,0.008775424,0.015159363,0.011813884,0.006649521,0.017493155,0.010465723,0.003896553,0.006381021,0.007735413,0.003739645,0.019577707,0.013324051,0.019010686,0.015315705,0.017476161,0.009228587,0.004242090,0.018579614,0.014834785,0.009514080,0.003424696,0.015295312,0.003071795,0.003392975,0.019313172,0.002499110,0.003014017,0.013225488,0.018005796,0.010196657,0.019093955,0.011513664,0.003954331,0.008583962,0.013738129,0.018613035,0.016847963,0.012521386,0.013900135,0.008197074,0.018469156,0.014932215,0.006924817,0.017803572,0.018132682,0.002598806,0.016121769,0.017247314,0.015009253,0.020145294,0.013233419,0.006479018,0.013135989,0.015955232,0.002488914,0.007039808,0.002965302,0.011209478,0.007686132,0.010340537,0.016762995,0.010266331,0.018551291,0.010952874,0.003211710,0.007938204,-0.991680292,-0.004740730,-0.005496567,0.008513826,0.002610394,-0.001012678,0.001310637,-0.000053159,0.000909033,-0.000125455,-0.005187586,0.000792676,0.002149610,-0.003147220,-0.001454624,-0.005997928,0.006936261,-0.001738017,0.004168876,0.000910855,-0.006977489,-0.000821811,0.011415558,0.005594281,0.000375034,0.000358602,0.003604262,-0.000971946,0.010770248,
0.022861540,0.003273814,0.023754763,0.016924107,0.018175794,0.011441365,0.018100869,0.021958768,0.025364180,0.011613252,0.023499137,0.015335992,0.006788674,0.019311421,0.008770512,0.008334185,0.018930185,0.015350684,0.025980474,0.017677764,0.010363034,0.025398704,0.010879428,0.017336194,0.005452513,0.005139591,0.022098334,0.018251453,0.024651658,0.010191882,0.011220998,0.014966510,0.018947080,0.010657592,0.009043033,0.007528374,0.011763836,0.022021206,0.012704071,0.006131245,0.003795350,0.008553817,0.025741742,0.010233017,0.026622478,0.014303204,0.017147413,0.014051250,0.020932591,0.025973128,0.010788343,0.006078357,0.021492324,0.022774128,0.023117166,0.014538262,0.011761633,0.006380995,0.012402902,0.022002107,0.026598237,0.008754352,0.014738797,0.017703473,0.010355688,0.015383004,0.004232412,0.010786139,0.008808709,0.018329317,0.013689848,0.008249710,0.009671080,0.016289449,0.005049241,0.021517299,0.010130179,0.007558491,0.025890858,0.009126773,0.011280497,0.009741598,0.020920838,0.012012852,0.012410982,0.007678959,0.003237820,0.003774782,0.017945877,0.007854518,0.026504948,0.025301008,0.009640229,0.004467471,0.012936926,0.005794083,0.017167246,0.011368644,-0.987202628,0.008170761,0.006580950,-0.001381899,0.002507281,0.002065150,0.002748740,0.000111864,-0.001046539,0.006811303,-0.003247408,0.002994074,0.006451969,-0.003815950,0.001905768,-0.000775704,0.005208049,0.009464592,0.000551194,0.009037322,0.000808147,0.003724143,-0.000902175,0.014015977,0.002249486,-0.003142595,0.003826047,-0.001702161,0.003716457,0.002708721,
0.006441529,0.005457664,0.015627912,0.008921325,0.008592210,0.007632706,0.002597049,0.009395111,0.004184457,0.011642738,0.007544710,0.008177585,0.017646848,0.017838251,0.012148839,0.006151689,0.004942614,0.013692994,0.007319003,0.015832241,0.013520980,0.017292875,0.003238375,0.016989612,0.016102692,0.007838527,0.003669407,0.003176729,0.009348876,0.006363973,0.002062113,0.011745151,0.015454903,0.007827590,0.016250346,0.005490476,0.007537253,0.011495580,0.007495492,0.003529707,0.015909797,0.013680068,0.010191550,0.003740997,0.012554018,0.014255771,0.008463945,0.012902522,0.010073724,0.015063146,0.016304039,0.003812587,0.005030113,0.012742936,0.011499558,0.017787045,0.006453957,0.012987038,0.017108929,0.003732048,0.007495492,0.003578428,0.013310684,0.003175237,0.010690691,0.010962136,0.005956805,0.011804809,0.013677085,0.014805124,0.016122081,0.012857281,0.016960777,0.008191008,0.007451245,0.017915807,0.009438861,0.010498790,0.004316699,0.007709765,0.009574086,0.011082447,0.010317329,0.015739274,0.003895611,0.009193267,0.012720564,0.002956490,0.007323974,0.014229422,0.008188522,0.010691188,0.005553614,0.008853712,0.009573589,0.011976327,0.003989076,-0.993852088,0.002659961,0.008072843,-0.004299663,-0.004989521,0.002562159,-0.002744046,-0.003539678,-0.002029741,0.004524553,0.008004034,0.007534878,0.005378150,-0.006131969,-0.003728801,0.001664938,0.002143241,-0.004032387,-0.001937785,0.001365530,-0.008927130,-0.000544225,-0.002766883,-0.001312268,0.008247834,0.006129479,0.001205887,-0.002250614,0.001013726,-0.003543857,-0.010327191,
0.010216503,0.011496826,0.008705962,0.005509281,0.007429131,0.011342184,0.005392744,0.010704880,0.002275448,0.006907095,0.002563774,0.003719622,0.011543822,0.001176757,0.002893699,0.009274995,0.003306184,0.010053604,0.005827139,0.007236702,0.004519824,0.006178656,0.010938272,0.001874394,0.009005720,0.003807898,0.003914275,0.007983875,0.009978347,0.009339773,0.002227499,0.003617374,0.007888613,0.004295641,0.003440504,0.008427796,0.005602320,0.007904172,0.006855971,0.004413766,0.008153124,0.011512703,0.003483690,0.003735499,0.007882262,0.008857111,0.011388227,0.001202795,0.003417006,0.008065165,0.009768135,0.001649893,0.002084288,0.010105363,0.004909764,0.005469271,0.002185901,0.006033540,0.008529409,0.007248133,0.008785982,0.008973014,0.005568661,0.005242864,0.006595587,0.006692437,0.004112737,0.003796785,0.006041161,0.006794368,0.005176816,0.006432689,0.002859722,0.008356032,0.005843016,0.002543134,0.008923477,0.009603967,0.008756451,0.007832090,0.005046624,0.010320973,0.005792845,0.005362260,0.004694789,0.004116548,0.002553296,0.003433518,0.006505723,0.002499949,0.009875464,0.005122199,0.003736134,0.002639032,0.006590189,0.001655291,-0.997135102,0.002174733,-0.008852833,-0.004320150,0.001487170,-0.010853586,-0.010323788,0.001275098,-0.000108157,-0.001199756,-0.003234342,-0.001771508,-0.004615739,-0.004603380,-0.010285929,-0.007605129,-0.003087336,-0.001139509,-0.001491145,0.001780044,0.000443962,-0.014175717,-0.003232685,-0.011729163,0.000098602,-0.002926026,-0.013040302,0.000322515,0.001072881,-0.001894842,0.001280530,-0.012611432,
0.011038489,0.006465305,0.015859971,0.006008051,0.017334921,0.022840026,0.007433987,0.019189089,0.022214446,0.019607647,0.013829737,0.022830352,0.009713162,0.009050821,0.009927923,0.004257716,0.017783146,0.014892579,0.008442654,0.022380192,0.011778866,0.021261242,0.004333173,0.007259211,0.023461737,0.012666932,0.005445674,0.019529611,0.009377800,0.010554793,0.010029177,0.014055462,0.013063563,0.022557548,0.013683984,0.022498214,0.021521793,0.021347663,0.012056185,0.010500619,0.015900601,0.017138218,0.018436458,0.007177950,0.008345915,0.002602186,0.020306104,0.016205007,0.015492362,0.003338049,0.020793025,0.010334873,0.014169614,0.012631461,0.004551159,0.004705941,0.019981060,0.022521432,0.016275949,0.003554745,0.017336211,0.014454673,0.022320859,0.005917116,0.008392995,0.015850942,0.018361646,0.012855251,0.015156999,0.022493700,0.011281627,0.010450315,0.006334384,0.019846270,0.021255438,0.019051719,0.005833920,0.008875401,0.006925783,0.013944535,0.016404290,0.015896732,0.007567487,0.019255516,0.015287920,0.013142889,0.003636651,0.011204881,0.014643636,0.004308666,0.022028707,0.017048573,0.020963931,0.011575714,0.008597437,-0.988998541,0.006166829,0.001310338,0.013625817,-0.003600613,-0.003277276,0.001172684,-0.002017518,0.004115016,0.002468473,0.001102269,0.003675119,0.003828651,0.001588432,0.002878350,0.006486176,0.000376652,0.003284706,0.000576531,0.011104510,0.000884830,-0.000996029,0.007648877,-0.002435264,-0.000688517,-0.000228748,-0.003602391,0.008331927,-0.001745743,-0.002181265,0.006483344,0.002758689,0.000024339,
0.003802457,0.013944004,0.007525627,0.016473522,0.005074120,0.005435184,0.011830779,0.014776591,0.020738633,0.020258135,0.021605738,0.008510095,0.023783858,0.011239821,0.008762771,0.013901891,0.022578471,0.019650608,0.023627144,0.024915376,0.018941598,0.009732742,0.004215299,0.022671671,0.016630236,0.004422410,0.016624713,0.003655408,0.018737938,0.005500769,0.011027187,0.013261227,0.009045823,0.007107262,0.021496660,0.024218101,0.014198750,0.015658885,0.007278474,0.008396184,0.015511145,0.023151478,0.014882908,0.018918125,0.010877377,0.005254997,0.016969899,0.020286440,0.018213947,0.004281574,0.016914669,0.007337155,0.004200801,0.006476954,0.023865322,0.015020292,0.004811779,0.013062400,0.012122806,0.016878770,0.014198060,0.014466614,0.012580521,0.015506313,0.021540843,0.018327168,0.020225687,0.006155241,0.021257791,0.021696177,0.023814925,0.003655408,0.014245005,0.010141442,0.022688930,0.017422782,0.006510091,0.009925355,0.020121441,0.006358900,0.022871188,0.004485924,0.016546011,0.015130751,0.006351996,0.012855289,0.014656466,0.003322649,0.005527694,0.005526313,0.014486635,0.021392414,0.022752444,0.023253653,-0.988200614,0.010509283,0.000808294,0.004282839,0.007281625,0.005813881,0.005593252,0.006928438,0.002709763,0.003011844,-0.000222470,0.002224128,0.007739894,0.004431938,-0.003747026,0.001075660,0.000721452,-0.003802401,-0.000740313,0.004190891,0.011117230,-0.003148693,-0.000615224,0.013865602,0.000495248,0.001256795,0.000580524,0.015752475,0.008416370,-0.000561774,-0.000004443,0.001351276,0.001085844,0.009465319,
0.004745822,0.008477067,0.007259704,0.007228730,0.006270107,0.002463775,0.007053838,0.007259078,0.009885278,0.005430061,0.004956381,0.002217549,0.011295367,0.011206200,0.010010112,0.008752076,0.008638819,0.009282698,0.004632252,0.006532602,0.010469713,0.003157400,0.008748322,0.003423649,0.010678395,0.004835928,0.010435297,0.009050864,0.002439997,0.004522123,0.001742618,0.010627397,0.005878086,0.001681296,0.004684813,0.009033343,0.007244686,0.004243985,0.008268385,0.003974920,0.009849924,0.010372411,0.009101235,0.006713752,0.002277932,0.002579536,0.004686378,0.010210972,0.003109531,0.009627164,0.008919773,0.005420049,0.008191420,0.009699436,0.010664628,0.004331274,0.009930957,0.007078241,0.006430608,0.004727050,0.006917428,0.004558415,0.007523137,0.011020983,0.009320867,0.009038662,0.009167563,0.005142224,0.009628728,0.007821925,0.006511953,0.002334561,0.006183443,0.001798621,0.003995882,0.003820051,0.008081604,0.002291386,0.010728766,0.001698504,0.006369286,0.005969756,0.009373742,0.001811449,0.004130414,0.008394157,0.003944885,0.004656655,0.008386961,0.009086530,0.010997831,0.002340506,0.004641951,-0.997021685,-0.014901994,-0.003333176,0.001752602,-0.002672619,0.004289586,-0.010035904,0.003221091,-0.009266344,-0.006788270,0.001430569,-0.001873635,-0.000738448,-0.008425993,0.004147000,-0.002994270,-0.005706059,0.003698044,0.000202095,0.001554897,-0.000794451,-0.007194495,-0.000080473,0.000443764,-0.006585164,-0.005836036,-0.011310294,-0.003029260,-0.001920929,0.000645793,0.001475575,-0.002289112,-0.005880217,-0.002132924,-0.008446064,
0.009276625,0.009506863,0.004425443,0.001966874,0.002597702,0.008244399,0.013404723,0.002990199,0.010455330,0.012203763,0.003170262,0.014696321,0.008216074,0.005871613,0.003439750,0.005043323,0.006865399,0.006198963,0.005886989,0.010642677,0.014146420,0.001851553,0.002206824,0.004339256,0.009187201,0.011089395,0.011015751,0.008419606,0.002305555,0.003458363,0.009480157,0.003056964,0.006374980,0.007234427,0.010406369,0.008288099,0.004695336,0.001957568,0.001792476,0.008460474,0.006937019,0.010803317,0.002838461,0.004638282,0.012920778,0.005391310,0.006449838,0.009746003,0.002317289,0.011260961,0.009196103,0.006760193,0.008695972,0.013353738,0.004831293,0.002953782,0.011489580,0.009953986,0.009746003,0.001602297,0.009266105,0.013315298,0.009718083,0.010909736,0.007876180,0.013947744,0.002404691,0.004373650,0.008416774,0.011749356,0.011685019,0.005379575,0.007035751,0.011630393,0.009627849,0.011362524,0.011950865,0.007251422,0.006710019,0.009879128,0.010156304,0.009642821,0.007400732,0.014073586,0.008528858,0.011724269,0.012175033,0.011883696,0.002241218,0.011798722,0.001737850,0.008396137,-0.995993682,0.000742614,-0.013204638,-0.011206469,0.000928209,0.001711594,-0.000055296,-0.002210123,-0.008762361,-0.008850104,-0.002112396,-0.002182331,-0.003101539,0.001296858,-0.003409291,0.000066929,0.003437331,-0.012395858,0.000194264,-0.008122030,-0.004147931,-0.000091175,-0.008951796,-0.014764816,-0.000419632,-0.003584230,-0.001225652,-0.000414185,0.000174290,0.000362256,0.002394479,-0.000794503,-0.001197534,-0.006929473,0.000831301,-0.000416250,
0.007543244,0.012078456,0.004433806,0.002368903,0.004448955,0.005607104,0.012501536,0.010748262,0.004110275,0.001865031,0.006354076,0.010795150,0.010706062,0.012676466,0.001536449,0.009639526,0.012915598,0.012243288,0.012432646,0.005431813,0.004658872,0.012327327,0.005470045,0.005108642,0.004190346,0.012346803,0.003036525,0.003674571,0.011357453,0.004986371,0.009032859,0.002199743,0.002367100,0.011101369,0.012006680,0.005798987,0.008231064,0.005411975,0.008624928,0.007880120,0.009858460,0.002239058,0.007962716,0.008301397,0.003250049,0.009128801,0.006638293,0.012619839,0.003224440,0.011250691,0.001642129,0.012810279,0.008195717,0.001707773,0.007255059,0.002994686,0.001731218,0.007898876,0.012890711,0.006926838,0.001586224,0.010889649,0.001905427,0.005314591,0.007380937,0.003400092,0.003672046,0.011546090,0.011271972,0.012450319,0.003477278,0.006631079,0.005509359,0.001349256,0.001660524,0.005556969,0.009403279,0.008913834,0.011090549,0.001321483,0.002321654,0.003304872,0.012566459,0.011577108,0.009797865,0.009287501,0.011804699,0.009599490,0.004809997,0.009944302,0.004856886,-0.996241605,-0.002564839,0.002286034,-0.012857215,-0.009203825,-0.000660881,-0.004332505,-0.016604016,-0.000380705,-0.005115301,-0.011962231,0.005445761,-0.004698819,-0.003184131,0.000803049,0.000354319,-0.015345219,-0.004929578,-0.003130723,-0.011926441,-0.008664691,0.001173732,-0.001377816,0.001413655,-0.007257183,-0.001459451,-0.000005585,-0.003647519,-0.009559099,0.000491973,0.004429512,-0.001711504,0.000594637,-0.001156295,-0.006380662,-0.003254395,0.002659448,
0.010882050,0.001220540,0.004025967,0.006871348,0.008185497,0.001981661,0.005508588,0.002141809,0.011989105,0.011774353,0.007835568,0.006866354,0.002267664,0.007063126,0.010596047,0.011673136,0.011679462,0.001706312,0.002202406,0.010458539,0.012025063,0.007092426,0.009926486,0.004388215,0.007248246,0.005427016,0.001390344,0.004216414,0.011481690,0.006057288,0.006069607,0.005350770,0.010657309,0.009254596,0.001655038,0.002827351,0.011680794,0.001895094,0.010199837,0.009718726,0.004937914,0.005837209,0.003445304,0.004304978,0.009587877,0.008866710,0.007704386,0.009551253,0.005602147,0.006298343,0.007696062,0.012024064,0.009270910,0.004924596,0.006979223,0.011068168,0.008864047,0.010108276,0.008029344,0.003566497,0.006258722,0.011364160,0.007765648,0.009634490,0.001226533,0.009044505,0.011594227,0.010032364,0.011451725,0.010189516,0.009033185,0.009746694,0.008620661,0.003432319,0.001265488,0.011243299,0.005476625,0.004671222,0.001864130,0.002744447,0.010531454,0.008832749,0.002849992,0.006871681,0.008962932,0.004900624,0.001883108,0.011346513,0.002772414,0.009548922,-0.996088771,0.000790908,0.004120363,-0.006082890,-0.007119797,-0.013883115,-0.004872630,-0.001859674,-0.018435181,-0.004973518,-0.001749486,-0.010632762,-0.010979244,-0.003842162,-0.000916753,-0.000457297,-0.002653769,-0.012070492,0.002417715,-0.012446864,-0.014217293,-0.004215496,0.001014781,-0.002384125,0.002005361,-0.001787155,-0.002474780,-0.013839854,0.001058185,-0.005247628,-0.000685173,-0.008293394,-0.006854035,-0.005700045,-0.005635428,-0.006802172,-0.001877903,-0.017161520,
0.007029997,0.001821803,0.007606442,0.004185959,0.001355874,0.005102763,0.001787289,0.012884764,0.003627506,0.003160476,0.011820361,0.009948202,0.004097841,0.011845696,0.012272338,0.011340113,0.009561947,0.009134203,0.007958917,0.011923167,0.001483646,0.002094971,0.009004595,0.001632347,0.003271359,0.007027427,0.001693663,0.006300079,0.001421229,0.010826086,0.011741421,0.007626636,0.012651984,0.011700666,0.001689257,0.011875068,0.005657912,0.002767245,0.011861483,0.001469694,0.005699769,0.008679289,0.009872199,0.002986074,0.006442538,0.002720983,0.002490038,0.005712987,0.005226864,0.007023021,0.007194119,0.012390931,0.002741177,0.010830859,0.004111058,0.004443707,0.006571779,0.009484109,0.007063042,0.007051660,0.011936752,0.003566557,0.001452070,0.012321170,0.011108067,0.008229883,0.008022069,0.006052979,0.004835469,0.008402816,0.008197206,0.012776819,0.007115913,0.006133387,0.002063762,0.007519057,0.004592041,0.011564082,0.006879828,0.005998639,0.006298610,0.003471462,0.002502154,0.013289377,0.012692739,0.011648529,0.004572948,0.010292600,0.003601437,-0.996795753,-0.004508643,-0.005140640,-0.006686248,-0.004865641,0.002145796,0.003677332,0.001692877,-0.007987065,0.000454188,0.004092088,-0.004084729,-0.001153413,-0.009662127,0.001294327,0.000177834,0.000121535,0.002264283,-0.003861054,0.003087083,-0.007767183,-0.013151119,-0.004701852,-0.002260737,0.001081969,-0.011240878,-0.001657893,0.000670933,-0.004880737,-0.005970904,-0.003215586,0.000267392,0.003565784,0.000008098,-0.004385672,-0.005127007,-0.004600873,-0.000409391,-0.000723013,
0.013292195,0.009354118,0.009087909,0.003401756,0.003348610,0.015492731,0.006252493,0.006134231,0.015078095,0.006843803,0.007399682,0.006766717,0.007975192,0.007028617,0.007860761,0.016831438,0.009777850,0.004696414,0.006517745,0.011836184,0.012768395,0.007717601,0.002074540,0.015011543,0.006892161,0.016389032,0.012647739,0.016969330,0.003100116,0.010274359,0.007380531,0.002393895,0.002303403,0.004082600,0.007482514,0.001890204,0.014366129,0.016186024,0.010061296,0.016513997,0.004075897,0.005174728,0.007833948,0.015506616,0.009726140,0.010280583,0.009118073,0.011646103,0.013152388,0.001947181,0.017400723,0.006827045,0.010821141,0.007853579,0.016087871,0.016243000,0.006007829,0.004974114,0.011874966,0.010836463,0.010813960,0.001781039,0.009751517,0.002094170,0.013404233,0.005135946,0.004459411,0.014712297,0.014894717,0.013567502,0.002629462,0.014312504,0.012831596,0.013884463,0.003515230,0.006421986,0.004309548,0.013002525,0.015304086,0.013031253,0.011185025,0.003487460,0.003555927,0.001751833,0.012167988,0.004511599,0.005632934,0.007315415,-0.995051002,0.001947031,0.003091370,0.001128339,0.004188197,-0.003310820,0.005697158,-0.003929787,-0.001299839,0.000761670,-0.006097183,0.002262486,-0.000954805,0.005421361,0.000471836,-0.001518125,0.000012986,-0.003314681,-0.002148208,0.004210070,0.000312080,-0.004429223,-0.009300221,-0.009038270,0.000081510,-0.001049827,-0.007206752,-0.009856196,0.000758466,0.002067356,0.000151246,0.003733026,-0.002572580,0.005353678,-0.009513648,0.002516170,0.002633145,0.001196229,-0.001722780,0.006031795,
0.005583837,0.020087358,0.013764993,0.003870254,0.018610511,0.019389538,0.005583149,0.015242529,0.020708102,0.004560504,0.023398222,0.018254719,0.003199272,0.005742120,0.020838169,0.008578823,0.014749099,0.006657407,0.007104728,0.021120326,0.022444396,0.014666517,0.020030927,0.021980558,0.013217885,0.018638727,0.007220344,0.008522392,0.012163584,0.015758668,0.019061273,0.008191374,0.021260028,0.006483984,0.023712034,0.016234205,0.006065567,0.003468353,0.018458422,0.013981772,0.024093290,0.021324029,0.018143921,0.017653244,0.013571613,0.002826276,0.008759128,0.006171548,0.012816673,0.009256686,0.010660586,0.016210118,0.013208251,0.021609626,0.023794617,0.004912168,0.013042398,0.018621522,0.021939267,0.016556964,0.016472317,0.016609266,0.016405563,0.005548051,0.003588098,0.015453802,0.017955358,0.009862290,0.021759651,0.009284214,0.007568566,0.004781412,0.018393733,0.006190129,0.015427651,0.018292569,0.016217000,0.012564108,0.012846953,0.018377904,0.003205466,0.016615460,0.009670286,0.018288440,0.002957719,0.016841185,0.016755850,-0.989320012,0.003155819,-0.001950219,-0.003856691,-0.001709710,-0.002726580,0.002976198,0.014003942,0.005806187,0.003597584,0.009800302,0.014050604,0.011869179,0.008103904,-0.001574867,0.014945448,-0.001819466,-0.000226142,-0.002002727,-0.003339338,-0.000195392,0.010830593,0.002153799,0.006434425,0.003695676,-0.001661414,0.001626086,-0.004200871,0.011680809,0.001928733,-0.000476079,-0.001063368,-0.000100377,0.002336731,0.010315991,0.007368121,0.001846134,-0.000343027,-0.002106991,0.000266899,0.004062911,
0.013567470,0.007946360,0.010284388,0.010742969,0.007889755,0.005098068,0.007515671,0.010489478,0.013986675,0.004952864,0.012342672,0.007955794,0.004462289,0.001867899,0.002769475,0.004452855,0.014846823,0.006078809,0.007556689,0.010837721,0.010135492,0.002216962,0.010574385,0.013551063,0.008513639,0.009918507,0.005867977,0.012718397,0.002342067,0.013414883,0.002239932,0.010080118,0.002757990,0.004132914,0.011372186,0.005982827,0.003347009,0.010721230,0.006470121,0.004165318,0.014506373,0.011076856,0.006411055,0.002917960,0.004276887,0.004008219,0.003569737,0.011683923,0.004792484,0.014136390,0.011267590,0.004470082,0.005073457,0.011984175,0.002780139,0.010423028,0.010274953,0.006714178,0.004413888,0.011010407,0.009086251,0.011212215,0.007051347,0.005447132,0.014342711,0.002571768,0.012450139,0.007895498,0.012624466,0.007776545,0.013093302,0.002058222,0.014792679,0.007532898,0.006829439,0.006473403,0.002909756,0.003103772,0.006388495,0.007319194,0.005819985,0.006301537,0.010598586,0.006121878,0.004750235,0.001785452,-0.995947703,-0.008049905,0.000450903,0.000420200,0.003506327,-0.006885464,-0.006588105,0.001295948,-0.005626019,0.005449087,0.002392692,-0.005751434,0.006239265,-0.008649900,-0.011580730,-0.008239150,-0.016411202,-0.003459664,0.001629220,0.002084186,-0.001412038,-0.007632869,-0.001093712,0.000232752,0.001957139,-0.007318378,0.001333081,-0.003493174,0.000916880,-0.010270592,-0.000837200,-0.008230203,-0.005330860,-0.003105331,-0.002990005,0.004819278,-0.011822261,-0.005855897,-0.002356808,-0.000152845,-0.002027775,-0.014880687,
0.008396755,0.010863665,0.014882443,0.008062614,0.020319571,0.019998013,0.024968183,0.013020202,0.006503756,0.013046066,0.006033303,0.011181728,0.011902438,0.021403781,0.017935847,0.013659124,0.015224972,0.015542336,0.005709648,0.009004220,0.018661450,0.005188863,0.017263371,0.023060505,0.020077005,0.011071280,0.004701633,0.007776707,0.017294129,0.009137737,0.005962700,0.009241894,0.022247522,0.005466382,0.003139979,0.022942367,0.005584520,0.022094432,0.025108690,0.009414556,0.024369806,0.014538515,0.019893856,0.005142028,0.018239230,0.005167892,0.018593643,0.023052116,0.007705405,0.017997362,0.024655014,0.021051465,0.019604454,0.007425090,0.012891578,0.022366359,0.015270410,0.007859194,0.021781263,0.024761268,0.016857229,0.009576035,0.013349449,0.011445266,0.020213317,0.016809694,0.011011162,0.021437335,0.004257044,0.022486593,0.006427561,0.019547133,0.014664342,0.011996808,0.008317764,0.004770139,0.013345255,0.005309098,0.022062975,0.005625064,0.021280051,0.020743189,0.012349823,0.011828340,0.017115175,-0.989113745,0.007604993,0.000224661,0.006731987,-0.003109253,0.003311103,-0.000953278,-0.002763652,-0.000220085,0.004407199,0.004144118,0.003593493,0.003674719,0.010959805,0.001299860,0.000841451,0.005504371,-0.002955057,-0.001941576,0.004897889,-0.000158253,-0.002492932,-0.002182068,0.011021768,0.011745516,-0.001461068,-0.004743134,0.002918739,0.000239557,0.005295491,0.005882051,0.001112501,-0.000225309,0.003367206,0.003885871,0.002604937,-0.001019523,0.002912530,-0.004092123,0.002987730,0.005736134,0.003836245,0.009199974,
0.010814374,0.002921711,0.012314934,0.003182593,0.004984920,0.005641993,0.014223366,0.006154510,0.012746655,0.011350740,0.007955863,0.001881102,0.002495343,0.005439030,0.006757070,0.002501671,0.013454347,0.002166320,0.010657650,0.015066367,0.011022204,0.010115930,0.016403875,0.005763673,0.012039450,0.017245902,0.016456928,0.008587627,0.015954145,0.015967287,0.005496463,0.004152627,0.003557368,0.016912012,0.004898770,0.015712732,0.001780837,0.008037632,0.011987858,0.016198966,0.013717177,0.015058579,0.012114405,0.013586735,0.003735994,0.012514490,0.008213825,0.004093734,0.007985066,0.016913472,0.014506151,0.016993781,0.001950216,0.015552114,0.016836570,0.004329307,0.010018586,0.014616150,0.005813805,0.006649505,0.008985278,0.003702411,0.005493056,0.013131652,0.014755352,0.008711741,0.012377721,0.011001762,0.015815916,0.014319250,0.006722513,0.009447176,0.015142782,0.007712016,0.014702299,0.006611541,0.003607987,0.004538110,0.016606351,0.003850374,0.014907209,0.005733496,0.014553850,0.003940417,-0.994356017,-0.005433313,0.002585533,0.008284561,-0.004304638,-0.006613818,-0.002332283,-0.003537982,-0.001761304,0.001688624,0.005227577,-0.004117086,0.001038937,0.004206000,-0.000586602,0.002850897,-0.003330301,-0.005012475,-0.009894725,0.001115781,-0.003497005,-0.003479995,0.002945775,-0.007151172,0.005665411,-0.001630375,-0.002149428,-0.013312006,0.000775312,-0.001980104,0.001308853,-0.010350806,-0.001108223,0.006365048,-0.004424797,-0.010807567,-0.001233118,-0.006802873,-0.002732777,-0.002052165,0.002126934,-0.005631638,-0.000323372,-0.010024951,
0.004600777,0.014937546,0.006074878,0.015252194,0.009858641,0.001721051,0.007215006,0.013392450,0.008525691,0.005618658,0.003271608,0.007163755,0.010761837,0.012371627,0.009012997,0.001871863,0.010118257,0.006028668,0.006106805,0.010174549,0.006160576,0.006049672,0.012481271,0.004026512,0.012700979,0.009907791,0.008463097,0.007204923,0.002182311,0.003359407,0.004042055,0.012251061,0.005161599,0.014729600,0.001628630,0.004438622,0.012590915,0.003713544,0.014761947,0.010613965,0.009968705,0.001534530,0.007261636,0.015032066,0.011307116,0.003884941,0.009638513,0.004162622,0.009023079,0.005962293,0.001948320,0.010126659,0.010539609,0.011395755,0.012617801,0.001770201,0.008880668,0.005172521,0.008666421,0.002357909,0.002978804,0.011447426,0.013084943,0.007586787,0.011340723,0.006081599,0.011023134,0.014074678,0.002073087,0.011284011,0.011733089,0.007328010,0.013284066,0.004550786,0.006861709,0.012869016,0.015195902,0.010561874,0.013088303,0.004461307,0.008231627,0.008238768,0.008533252,-0.995655256,0.003346410,-0.002390594,0.000204676,-0.009602401,0.004496082,-0.008084013,-0.000936562,-0.005990653,-0.008449096,0.003608942,-0.006547648,-0.010603145,-0.000352088,-0.009004292,-0.002779211,-0.005685113,-0.004427626,-0.011617237,-0.012700976,-0.005046927,0.001768875,-0.000825546,-0.007557341,0.003166324,0.000096791,-0.001914007,-0.013840852,-0.002176890,0.000151904,-0.001364592,-0.004427409,-0.005700913,-0.000257998,-0.002161204,0.000631884,-0.012974059,-0.002346856,0.004405455,-0.006255587,-0.007729608,-0.004462295,-0.000756660,-0.002200168,-0.009392839,
0.004862074,0.003254268,0.005360555,0.004087552,0.006780321,0.002314636,0.008868836,0.002447928,0.008546357,0.001725862,0.001369846,0.009977589,0.008863963,0.007434737,0.001114156,0.009243198,0.009129398,0.003590505,0.001410263,0.009282755,0.001258053,0.009019612,0.004323463,0.002030282,0.010350518,0.006765702,0.003105497,0.006820451,0.004624157,0.008817812,0.009913380,0.007183347,0.006360382,0.006235403,0.004663428,0.002135195,0.009652817,0.010431066,0.004911951,0.004359868,0.001129922,0.001571072,0.001095524,0.010227832,0.008801187,0.008639231,0.003991812,0.008874282,0.005551749,0.005627424,0.005095119,0.008318759,0.005723451,0.008073675,0.002833182,0.004954662,0.002841495,0.007447637,0.008034978,0.005889420,0.002391458,0.005497286,0.003112664,0.002285398,0.004344102,0.002093631,0.003191492,0.003185759,0.001479918,0.001434915,0.005787660,0.009184721,0.007888787,0.002863567,0.005449989,0.007251570,0.005228983,0.003585346,0.010253057,0.006958329,0.008981775,0.007720525,-0.997148290,-0.003592867,-0.009840496,-0.006736979,-0.005997845,-0.005274597,0.000952886,0.000869007,0.001784624,-0.008581378,-0.003513358,-0.005966795,-0.012106805,-0.002630451,-0.002168656,-0.006364338,-0.015748266,-0.016123692,-0.008726922,-0.001619570,-0.008578170,-0.000045656,-0.002410599,-0.002261412,-0.002377148,-0.011211455,-0.007160607,-0.000596615,-0.006042621,-0.005826775,-0.001580338,-0.000406876,-0.011235080,-0.014630392,-0.001757907,-0.016419828,0.000219996,-0.001602987,-0.000298025,-0.004396902,-0.014246525,-0.010747863,-0.001091640,-0.005590951,-0.001001023,-0.003701501,
0.002514177,0.003152720,0.002019981,0.004686889,0.014474287,0.014458479,0.012296167,0.006478971,0.001784531,0.007299718,0.002926422,0.013307437,0.004911523,0.006871249,0.010607250,0.007633758,0.010107231,0.014968482,0.005171101,0.011172995,0.001830706,0.004366993,0.010390519,0.010438358,0.003803328,0.001830290,0.013422250,0.012018702,0.003480936,0.002879415,0.010906762,0.015031713,0.002318662,0.013538311,0.014946019,0.008523143,0.004832485,0.003068690,0.012571552,0.012981301,0.011623096,0.008382955,0.001807411,0.014744264,0.006574233,0.010588114,0.002522080,0.003309964,0.003389834,0.001537017,0.001596920,0.014844102,0.005369528,0.010794029,0.003234254,0.010228700,0.011745813,0.006537626,0.007621278,0.008933309,0.006264321,0.013309933,0.006974831,0.007153290,0.006811347,0.005733518,0.013036212,0.006096261,0.002717179,0.002882743,0.014191414,0.005997672,0.008485704,0.004225973,0.012603167,0.005489749,0.006046758,0.014617803,0.012268711,0.011861874,0.004290451,-0.995776811,-0.002885386,-0.001591346,0.001032774,-0.012386513,-0.000386366,-0.008781496,0.002131266,0.001205896,-0.003179909,0.001473246,-0.004700114,-0.001422948,0.003105866,-0.007926647,-0.005269283,-0.005185548,-0.001882127,-0.008518557,-0.004522457,-0.006881341,-0.011886720,-0.005020996,-0.000773962,-0.000931557,-0.000862079,-0.002550011,-0.005695138,-0.002641596,-0.011597263,-0.012451059,0.000182354,-0.003473462,0.002799483,0.002749025,-0.001062425,-0.013350332,-0.003446429,-0.012957649,-0.003422367,-0.011233001,-0.009596766,-0.006570579,-0.000862736,0.000309813,-0.003005030,-0.013515881,
0.007683942,0.026767028,0.013218569,0.003319787,0.013326771,0.007627264,0.013800800,0.024852880,0.011065689,0.021788010,0.013210840,0.018393381,0.012326330,0.003828166,0.005699376,0.030381496,0.029380196,0.010869895,0.030514602,0.028770486,0.027905727,0.016682756,0.005223630,0.026689741,0.009747512,0.018661311,0.027349259,0.011167880,0.005154072,0.022414896,0.030172820,0.008423323,0.021108741,0.017396376,0.028203712,0.012257631,0.006419007,0.014798664,0.007002955,0.022644181,0.020869150,0.007905499,0.017507154,0.005440035,0.021916822,0.010540995,0.007928685,0.020339303,0.019004809,0.005656439,0.009643603,0.018458646,0.008975498,0.015982018,0.013165327,0.006891318,0.020576317,0.016239643,0.009932143,0.025351812,0.019207474,0.011371403,0.014362421,0.013176490,0.028037974,0.028445879,0.007263155,0.024825400,0.019675491,0.009016718,0.008999543,0.027961546,0.018924087,0.024929308,0.026529155,0.023652351,0.027099363,0.016463776,0.026436410,0.004166512,-0.985420831,0.005447690,-0.002479579,0.001890922,-0.001900046,-0.001863577,0.004361811,0.016546939,0.001734281,0.002884309,-0.001905362,0.006841775,0.000488831,0.002170664,-0.002512374,0.002632621,0.002797582,0.004261621,0.009302419,-0.001439551,-0.001287571,0.011435876,-0.000271946,0.001598868,0.002589814,0.003461725,0.004706918,0.004458939,0.009769729,0.016298126,0.002106557,0.005064745,0.004536319,-0.001553472,0.003777091,0.011223346,0.002208041,0.002113983,0.003972617,0.012442990,0.000890240,0.007706189,0.005824422,0.007931815,0.005403898,0.002090570,0.004245495,-0.002050778,
0.009879195,0.009004684,0.013558503,0.008207859,0.017641032,0.014865830,0.014458908,0.020178001,0.018252154,0.025489433,0.015535400,0.022325806,0.022434564,0.022024684,0.021267070,0.024090364,0.018073109,0.004323610,0.008242632,0.009684613,0.007562703,0.015262393,0.024940459,0.017545591,0.014904302,0.013390555,0.019199171,0.018511104,0.017842273,0.018942440,0.009307286,0.023776665,0.014902823,0.024843538,0.014606140,0.017332512,0.012934064,0.025006307,0.022120125,0.022728288,0.023778884,0.015207643,0.011193181,0.020075161,0.025396211,0.003676976,0.021737619,0.023127810,0.024540197,0.007900818,0.021382488,0.008127214,0.006609028,0.026286999,0.017755710,0.004238527,0.006755520,0.009687572,0.025732846,0.013013228,0.015132918,0.015360054,0.020718097,0.018238097,0.023093037,0.010774422,0.021141295,0.020270483,0.020203896,0.018959457,0.019107429,0.016814612,0.006448479,0.024299743,0.023590961,0.009697930,0.023426712,0.015323061,0.007849028,-0.986103038,0.019088391,-0.002339781,-0.001099332,0.006017852,0.009037421,0.014678729,0.002655398,0.001472581,-0.000222635,0.003092649,0.005741531,0.007331773,0.000061866,0.007090824,0.014731889,0.006756164,0.000418502,0.006476430,0.012211416,0.001291519,0.007387039,0.014458955,0.008149017,-0.000363737,0.003827426,0.003018514,0.001774407,0.002548541,0.005024659,0.004050693,0.013508012,0.008698244,0.000220618,0.001354800,0.011615278,0.007612343,-0.000289130,0.009833526,0.002837653,0.001914425,0.000054341,0.009367471,0.000234999,0.000920870,-0.000507259,0.004159249,0.000856929,0.008597104,
0.005357758,0.017544180,0.013085852,0.016846035,0.007122471,0.009130679,0.015605542,0.013141704,0.006954427,0.010525498,0.011291253,0.002799853,0.002262404,0.015020080,0.007515882,0.009989029,0.014456175,0.005743819,0.017179675,0.004797772,0.002559300,0.008115062,0.007711853,0.010068397,0.002244277,0.011887003,0.016539341,0.013865814,0.013174039,0.006102935,0.008092525,0.015169998,0.016436457,0.009065028,0.002629849,0.008647121,0.014210722,0.015558999,0.003795873,0.011344655,0.007885286,0.016349250,0.014375338,0.017421208,0.015460034,0.012190267,0.004300007,0.015875001,0.012349493,0.016830847,0.007992580,0.005539520,0.008802918,0.003358859,0.006393461,0.013875613,0.003559729,0.013124066,0.011575900,0.005675720,0.010915969,0.012342634,0.009288925,0.009276677,0.013186287,0.004597882,0.016794103,0.009273247,0.003635177,0.016437927,0.007662370,0.013596355,0.003973716,0.014783446,0.009054740,0.004484709,0.012782098,0.015503148,-0.994285579,0.004781424,-0.013554904,-0.005625894,-0.005387489,-0.006208863,-0.008952674,-0.011588412,-0.000200609,-0.003429537,-0.008099091,-0.001715801,0.003982094,-0.005406326,-0.001297362,-0.005573529,-0.010050304,0.002644471,-0.003593104,0.003190954,-0.014773981,0.005783507,-0.000469801,0.000054957,-0.005995583,-0.001243122,-0.001744854,0.001986623,-0.003847965,0.004594273,-0.000395597,0.005555627,-0.010244872,0.000186371,-0.001144202,-0.001571165,0.003886482,-0.002117215,-0.000415643,-0.003894809,-0.000628728,-0.000760784,0.000743674,-0.007804032,0.003877806,0.002938879,-0.001479458,0.001862100,-0.002539598,-0.007033272,
0.016288971,0.006979548,0.014771331,0.012703640,0.011638331,0.024357631,0.006613834,0.009347066,0.011245966,0.023425578,0.019193955,0.004650527,0.005846871,0.004700868,0.023636567,0.009541028,0.007826465,0.025988538,0.010425700,0.009652074,0.007089855,0.022447626,0.010681848,0.025818266,0.023062085,0.017494199,0.012303132,0.004810434,0.011000923,0.018770497,0.020376233,0.005005877,0.023633606,0.021428216,0.013971795,0.013686034,0.022422455,0.019420490,0.024461274,0.006201481,0.006322892,0.010394607,0.014707665,0.020351803,0.022139656,0.016178664,0.026839897,0.007177212,0.020850033,0.007411150,0.011125295,0.007770202,0.021562953,0.021155041,0.021977528,0.004921481,0.013803744,0.020431757,0.023803137,0.023461113,0.011268175,0.002827139,0.016981903,0.022175931,0.003094391,0.004158960,0.017782920,0.005618855,0.021740628,0.019174707,0.020323671,0.019974244,0.024983935,0.018955575,0.008035233,0.024653756,0.005208722,-0.988567389,-0.004646361,0.005378056,0.002681455,-0.006620888,0.001811372,-0.001718303,0.006635268,0.011443142,0.005395398,0.004909236,-0.001713272,-0.003432314,0.003227875,-0.001141198,0.000988882,0.004714675,0.007431491,0.008398921,-0.002577051,0.002055561,0.010837447,-0.004037981,0.005367208,0.001752917,0.014219484,0.003251438,0.004840311,0.000978158,0.005062575,-0.006856728,0.006578616,0.006852481,-0.005805686,-0.004447671,-0.000197293,0.002478893,0.004916843,0.003379375,0.000277005,0.011184674,-0.000600213,0.009308956,0.002376004,0.008176613,-0.004565865,0.005030606,0.000402360,0.003107916,0.002682196,0.004044512,
0.007916708,0.011942220,0.004047275,0.013071834,0.002587796,0.005718429,0.010201881,0.013208146,0.003229819,0.005517050,0.004499039,0.012156777,0.010180055,0.003875548,0.008434774,0.008823941,0.005222601,0.005240721,0.004091340,0.009973735,0.007813754,0.014159443,0.011726840,0.008317406,0.007567899,0.003366130,0.011780376,0.009015436,0.007882939,0.007241740,0.003536210,0.010555632,0.004021331,0.007086073,0.013633141,0.014655271,0.009078444,0.010085337,0.009293413,0.011618944,0.005127472,0.001895943,0.001767456,0.002308996,0.013940357,0.012802506,0.011483868,0.003168458,0.002641744,0.004360668,0.004977158,0.014476542,0.007616082,0.005395976,0.014852943,0.006234848,0.003105862,0.001863821,0.013090778,0.009825892,0.005774024,0.009436725,0.005341205,0.005484517,0.009137334,0.008746520,0.010969097,0.004096282,0.009747647,0.010225767,0.005171124,0.013372461,0.002401243,0.009431372,0.014194036,0.003519738,-0.995762158,0.003318130,-0.006307026,-0.014536241,-0.018542670,-0.000405226,-0.000787564,-0.009589600,0.002494146,-0.006037263,0.002409780,-0.009523269,0.001097510,-0.000528285,-0.000486454,-0.004637063,-0.007411602,-0.004080057,0.000459227,0.000980964,-0.004679142,-0.004285652,-0.002860372,-0.011870247,-0.007183287,-0.001998960,-0.000721913,0.001526281,-0.002846207,-0.003996799,-0.006795625,-0.012099541,-0.006323281,-0.018662085,-0.007102736,-0.011521787,-0.001076026,-0.002929755,-0.002044279,-0.016663791,-0.002549856,0.001435875,-0.000872542,-0.000495228,-0.001780073,-0.004910725,-0.009077670,-0.009122435,-0.001193483,-0.006656518,-0.001619591,-0.010067832,
0.007396630,0.010274993,0.015713221,0.014970852,0.017773948,0.008537517,0.023045797,0.027226673,0.016017458,0.014700684,0.021602258,0.025094640,0.011633758,0.020893958,0.011984739,0.010887428,0.024270666,0.005251129,0.013458385,0.026866184,0.003414618,0.007314233,0.022715415,0.009594422,0.008973273,0.017903091,0.010012748,0.025445621,0.027222711,0.028250302,0.008661113,0.018364991,0.003839281,0.025039973,0.003354404,0.005323227,0.013675470,0.016517388,0.010842268,0.006319126,0.006686745,0.006132940,0.006490259,0.021283761,0.010269447,0.024839525,0.012352358,0.015763135,0.019696026,0.008692805,0.026270388,0.020021654,0.015575364,0.022317689,0.003764807,0.017876945,0.015031858,0.017750180,0.013592281,0.015482667,0.024362571,0.018659720,0.025832255,0.018287348,0.007559841,0.023296159,0.024549550,0.020818691,0.024051204,0.022903186,0.007730181,0.023091750,0.026952543,0.026059640,0.021352689,-0.987108899,0.004901828,-0.006503285,0.008330618,0.012310240,-0.002515297,0.003648612,-0.001028571,-0.002846987,0.005730711,0.013157525,0.003071038,-0.000821798,0.005302399,0.001344762,-0.002380817,0.002689828,-0.002330017,0.004323535,0.000051446,-0.000752236,0.004930460,-0.005320045,-0.002219223,0.008027206,0.009836158,0.012025565,-0.000256229,-0.001435832,0.002888920,0.000233680,0.000995990,0.012558199,0.006218086,0.014046283,-0.005557962,0.011004136,0.001253561,0.000572688,-0.003320652,0.011254477,0.001471205,0.004665218,-0.001337145,0.004283243,0.000223904,-0.007247556,0.010349031,0.003939852,0.003088513,-0.002182351,-0.000682942,0.001631466,
0.023308817,0.021081227,0.019009412,0.024769828,0.021850266,0.015691393,0.007860802,0.014497660,0.023521984,0.014837906,0.005963619,0.009478408,0.008634760,0.013167829,0.021150096,0.024325457,0.020518795,0.008736424,0.010940238,0.022464350,0.029597230,0.011156684,0.009213589,0.023060396,0.005515970,0.016637524,0.029821055,0.017421321,0.023529362,0.014561610,0.009917859,0.008026416,0.003013722,0.023074334,0.015501182,0.013188325,0.005797185,0.003417099,0.004764148,0.028106704,0.020528633,0.026592402,0.016525202,0.027115480,0.026465322,0.004777266,0.025618394,0.024750151,0.015114203,0.005855396,0.010116268,0.011776507,0.010890226,0.006763814,0.009572693,0.025594618,0.011006648,0.023430978,0.020661452,0.009975250,0.020085903,0.010305658,0.019849780,0.019057784,0.019127473,0.010553259,0.013191605,0.017582836,0.017429520,0.003636005,0.026788351,0.020348262,0.027119579,0.011956879,-0.987486072,-0.001943933,-0.005097833,0.010446527,0.003289387,-0.002379798,-0.005370228,-0.003444933,0.000108213,0.002545640,-0.002800482,0.009021916,0.002873622,0.002108888,0.008282968,0.005886921,0.007566547,0.006727964,-0.000227452,0.004316521,-0.004246534,-0.004110653,0.001455265,0.005229802,0.013597719,-0.000540182,-0.000691666,0.004673550,0.010129192,0.002284896,0.001536588,-0.000033164,-0.000066982,-0.005287835,0.009950762,-0.003454508,-0.005362206,-0.002232193,0.000940387,0.003318631,0.007795395,0.011501724,0.000223484,0.003751176,-0.001794472,0.009010465,-0.001350638,0.005850547,0.004694612,-0.001459283,-0.000053024,0.001131131,0.000987703,-0.001291645,
0.016951308,0.009969375,0.025807756,0.018929048,0.025548196,0.005934604,0.005624928,0.003848402,0.006271957,0.004021940,0.019064438,0.013816394,0.022025065,0.014585349,0.013864267,0.011841646,0.017528772,0.003656163,0.017312597,0.005115532,0.010431645,0.008973024,0.024061150,0.016970756,0.019166168,0.016319986,0.014775344,0.009486908,0.016329711,0.004421378,0.008340207,0.024060402,0.012506627,0.015161318,0.013588251,0.010657544,0.020082481,0.020109409,0.003853638,0.005242694,0.026485453,0.003852142,0.025432254,0.003558174,0.020520067,0.010617152,0.024023002,0.019156443,0.005152185,0.010936552,0.014940654,0.017018628,0.015892124,0.021125956,0.009613321,0.014577869,0.004615861,0.013711673,0.005504498,0.016965520,0.024639363,0.027044966,0.015726814,0.004769203,0.013143184,0.012244823,0.004297956,0.008776297,0.023450026,0.021810386,0.021934556,0.024299018,0.007164334,-0.990276854,0.005031945,-0.009457299,-0.000958497,-0.003876753,-0.004350838,-0.006450743,-0.008402559,0.003366459,0.002691103,0.003727980,0.002240264,0.003331217,0.001436147,0.007691418,-0.004807109,0.000875626,0.004322416,0.006166702,-0.004109834,0.005370439,0.004420536,-0.005349265,-0.001489046,0.002700681,-0.000226397,-0.006569974,-0.007354714,0.008256859,-0.006170463,-0.000427782,0.000996897,-0.001546592,-0.000182254,-0.008056064,-0.001021390,0.007035144,0.005165850,-0.000638387,0.000860751,0.001450009,0.005328157,0.005183003,-0.001482658,-0.004105190,-0.003854290,-0.002516829,-0.002242361,0.011484657,-0.003627018,-0.005065126,0.001866297,-0.003833471,0.001589368,-0.005732420,
0.010195832,0.019625447,0.024447853,0.028141611,0.011782114,0.003455723,0.018686572,0.027444265,0.015105406,0.028898886,0.016325763,0.015842705,0.031868965,0.016984065,0.013934082,0.025435761,0.004490847,0.009434017,0.026531721,0.022047092,0.017734076,0.028406748,0.006250557,0.019065209,0.020402698,0.007671583,0.022788931,0.030731237,0.028718193,0.004398230,0.018550371,0.021986256,0.012701921,0.023055884,0.013385648,0.026909451,0.020639687,0.017649632,0.012330548,0.027558673,0.010720658,0.028610141,0.015214367,0.033006693,0.004439999,0.008954591,0.006331370,0.009898915,0.030861989,0.010102308,0.025530193,0.015069086,0.030026626,0.014196495,0.020399066,0.032776060,0.017681412,0.023805895,0.027180944,0.015840889,0.025074376,0.023135788,0.023073136,0.020074909,0.026701518,0.005083773,0.027305340,0.008900111,0.024331629,0.005560475,0.031651952,0.020900284,-0.982881350,0.011809492,-0.003197088,-0.003463527,0.007129237,-0.003595170,0.010531833,0.019078881,0.004709065,0.001364741,-0.001477101,-0.002368744,-0.001840230,0.005396047,-0.003941141,0.001650136,0.000653011,0.002072556,-0.000008138,0.003381921,0.002911761,0.003389986,0.008192991,0.014250034,0.005386830,-0.001961887,0.012817206,0.008845132,0.000710611,0.000747605,0.004245113,-0.000798050,0.005904143,0.000681725,-0.001122927,0.010617522,0.003373297,0.008486712,0.011283003,0.013786405,0.003874095,0.003744817,0.004826123,0.000421134,0.002431549,0.013745361,-0.001586038,0.008039925,0.001175278,0.019750009,0.004660163,0.008553590,0.000559271,0.004001274,0.001071128,0.006458247,
0.026173114,0.013118948,0.011379573,0.010210807,0.017182080,0.016837747,0.008349440,0.018664681,0.019233323,0.013133705,0.015949367,0.027112652,0.031426656,0.018136375,0.026109166,0.019420247,0.013659059,0.014723541,0.035050025,0.027278915,0.019334655,0.025853376,0.020759211,0.024497686,0.032978123,0.009384408,0.004656220,0.020065625,0.017436887,0.026727982,0.033221124,0.004446669,0.014557277,0.025468706,0.028229275,0.032195011,0.030316919,0.010663360,0.018347894,0.030860965,0.031863467,0.009428679,0.023745072,0.006132918,0.013102223,0.023245297,0.009766126,0.007524024,0.004955298,0.017359166,0.019494032,0.008747883,0.019179213,0.012737230,0.030840305,0.034212804,0.027518965,0.007590923,0.034829652,0.008800025,0.029563321,0.019598316,0.009676599,0.016955804,0.020944167,0.008050362,0.029420668,0.029187506,0.011955101,0.031547664,0.020524081,-0.982027202,0.008149271,-0.003867288,0.002407822,-0.000686470,-0.003050859,0.001908728,-0.000390017,0.008257066,-0.003766514,0.003955399,-0.002909023,0.003161559,0.004216081,0.001814892,0.008823073,0.016803180,-0.000902807,-0.002797646,-0.000350532,0.003157865,0.004711521,0.006841111,0.017875902,0.010700026,0.002130914,0.002831019,0.013613320,0.002864816,0.001131858,0.016277714,0.008153522,0.001614502,-0.001222074,0.001698804,-0.001263515,0.002245465,0.012368707,0.016211235,0.009459513,0.014477479,-0.000907325,0.005039383,0.004793112,-0.000490659,0.002177887,-0.003562247,0.003697549,-0.000285558,0.002558192,0.018450700,0.005111342,-0.001811583,0.005711695,0.000633224,0.001573420,0.003429962,
0.007087611,0.004575013,0.012617513,0.016407364,0.027041721,0.014880491,0.018475383,0.012416177,0.014652736,0.016278910,0.030223009,0.024322321,0.030187479,0.013976758,0.026486909,0.029035037,0.031395494,0.006588371,0.022689770,0.021115524,0.016588657,0.008401304,0.022922081,0.011629966,0.016895672,0.016652429,0.017350271,0.009801545,0.020699188,0.032977939,0.026097903,0.014512439,0.017773897,0.024274948,0.026336590,0.027797869,0.007342697,0.021695845,0.032196282,0.027802424,0.008279227,0.004201494,0.014979793,0.032764760,0.005238237,0.004197850,0.022838267,0.014392184,0.018218475,0.021992838,0.008276494,0.030991912,0.020352999,0.007477528,0.021177474,0.010355446,0.010857419,0.033103660,0.007042060,0.030406125,0.027623864,0.021010757,0.017384890,0.020107023,0.018313221,0.014068771,0.012288634,0.027161065,0.011190853,0.025329000,-0.983990100,0.006672854,-0.005752750,-0.003506116,-0.005448758,0.014419521,0.003915914,0.000361604,0.004941886,0.005080684,0.014286724,-0.004534065,0.001025065,-0.001587179,0.006340285,0.013995323,-0.003268904,0.012040808,0.009890654,0.001515715,0.000304627,0.006568716,-0.002084727,0.002244643,-0.003370219,0.008155155,0.002373405,-0.003226474,0.007375171,0.003900460,0.002054985,0.014108010,0.015401088,-0.000747206,0.005245621,-0.000065786,0.004420828,0.000309887,0.000630487,0.015732876,-0.003418438,0.003263599,-0.001181645,-0.001185084,0.012667693,-0.003631362,-0.000920721,-0.003241495,0.003302031,0.012490396,0.002401747,0.000115852,0.002809638,-0.001643287,0.003530942,0.004016871,0.004240172,0.016987349,
0.031761753,0.004795416,0.026551070,0.007758829,0.008427349,0.025453044,0.022964964,0.023986613,0.019764334,0.023752092,0.030104829,0.023423223,0.025191567,0.003447594,0.022632501,0.021255026,0.029135296,0.022124821,0.012692758,0.029944888,0.009465172,0.026803562,0.031514652,0.029772366,0.024259772,0.008421958,0.008248538,0.012131165,0.012002673,0.016058721,0.010692589,0.026554664,0.022216473,0.028134313,0.031774332,0.029982627,0.008874826,0.016433415,0.021987343,0.028676137,0.011923601,0.023530151,0.028850456,0.016844950,0.006476600,0.030020366,0.024733307,0.025753159,0.009461578,0.021016012,0.020208217,0.022893080,0.017719238,0.028320312,0.014826811,0.004447678,0.014019016,0.027735357,0.029155962,0.020641317,0.027181851,0.027351677,0.005523240,0.006082138,0.011695369,0.020183956,0.027408285,0.008572914,0.004106230,-0.982931155,0.001306753,-0.002835618,0.021028953,-0.002329812,0.018118201,-0.000214186,0.000087215,0.002453267,-0.003181182,0.005768548,0.014351792,0.007977286,0.005996861,-0.000487861,0.000241741,-0.001590748,0.003840019,0.012179772,-0.000934520,0.001606562,-0.000209847,-0.002357410,-0.001112578,0.002012509,-0.000673361,-0.001345772,0.002239666,-0.000142242,0.003515376,-0.000008745,0.012459345,-0.000277110,0.000925088,0.000961459,0.002723975,0.001973004,0.008426993,0.002664617,0.003954454,0.005036235,0.012185589,0.009331369,0.004710821,0.003077202,-0.002619543,0.002594238,-0.001057566,0.000596341,0.000296457,0.001559424,0.001585756,0.013380819,0.000004651,-0.001056368,0.001200208,0.005104453,0.000072199,0.004976840,
0.012216336,0.016933071,0.007177305,0.017255939,0.015794746,0.010868290,0.019152576,0.014071829,0.015958752,0.015462734,0.003164023,0.010752286,0.016399338,0.008500208,0.012490060,0.009308807,0.003046304,0.009485384,0.009905399,0.010719142,0.014812426,0.010200838,0.003469748,0.012499775,0.003422317,0.013692387,0.006804149,0.008505351,0.004874368,0.018435409,0.014030113,0.019636022,0.012217479,0.018484553,0.020390905,0.006225843,0.016010753,0.006146412,0.016574773,0.009128801,0.014102116,0.010525992,0.006484138,0.014490129,0.007687608,0.008699072,0.013919824,0.020294330,0.009989973,0.005000086,0.015573595,0.005664681,0.009627675,0.002827440,0.009230519,0.018839994,0.008621926,0.014668993,0.004762935,0.009912828,0.002221133,0.003256597,0.015750744,0.017479376,0.020496623,0.011913469,0.007832184,0.016958786,-0.993309937,0.010126540,0.002839833,0.002781635,-0.009980310,-0.012510322,-0.004868206,-0.012992213,-0.002640650,-0.011694525,0.004239225,-0.008418938,-0.008331474,0.003498865,0.003857123,0.004813745,-0.008600795,0.006291349,-0.005526394,-0.012671391,-0.008120540,0.000188039,-0.005415832,-0.005517775,-0.002747502,-0.003838832,-0.011647840,-0.005915759,-0.001301408,-0.006724095,0.000876684,-0.011098206,-0.000366026,0.001674801,-0.007191435,-0.001715327,-0.001399718,-0.001807136,-0.002264847,-0.007900424,-0.000367512,-0.006778115,0.003011558,0.002580033,0.002230374,-0.004043891,-0.004065673,-0.014120542,0.001119487,-0.006550446,-0.001054012,0.002648730,-0.000087746,0.006792376,-0.011373638,-0.008588166,-0.002825101,-0.000169314,-0.004358946,-0.012020640,
0.005963636,0.002845742,0.014424542,0.002587324,0.018963732,0.016839903,0.009133472,0.023446435,0.021753085,0.018195621,0.017993043,0.023286709,0.002689263,0.018700770,0.021855673,0.021538170,0.006882382,0.008988681,0.021986829,0.020440219,0.020144143,0.022119285,0.022188109,0.008141356,0.004903344,0.017853445,0.016947036,0.007548554,0.011627398,0.008480935,0.020847974,0.022662092,0.023340600,0.006672012,0.014920600,0.021354420,0.009943138,0.003459322,0.015360819,0.019083202,0.020148038,0.003598270,0.012646135,0.019535108,0.021798535,0.007290136,0.007763469,0.004341708,0.020475930,0.008062792,0.021220666,0.004452736,0.018252110,0.023441240,0.003691118,0.019793526,0.023339302,0.015458212,0.013326591,0.011267691,0.012915590,0.015482236,0.014120674,0.008323807,0.017324923,0.012567570,0.022050460,-0.990537702,-0.005768549,0.011506092,-0.008821405,-0.008858407,0.010252809,0.004558693,-0.002043704,-0.005328552,0.003644300,0.008923066,0.001086578,-0.003279320,-0.008238005,0.001969843,0.002109591,-0.006143682,-0.001306841,-0.007357602,0.000011517,0.004816707,-0.005723522,0.000721902,-0.003237177,-0.005115775,0.002608587,0.001462534,0.007152099,0.000964353,0.002203412,-0.002115871,0.004361717,-0.003084309,-0.002215487,0.000494426,0.009028951,0.003331308,0.002854142,-0.001153681,0.003125504,0.005633337,-0.003359168,0.012215383,0.004953628,-0.002561026,0.001507868,-0.001095072,0.004024237,-0.008172840,-0.001099862,-0.001366632,-0.000659612,0.001238352,-0.001302035,0.005381873,-0.006432204,-0.001446157,-0.001113067,-0.003872326,0.001898295,-0.006021885,
0.003011636,0.015356403,0.004961606,0.017439176,0.014067162,0.020489701,0.007663030,0.008423032,0.012925187,0.007378359,0.012161898,0.008081820,0.011550478,0.015200590,0.009618259,0.007686041,0.023396247,0.009500578,0.010294766,0.008015419,0.005275205,0.016172287,0.021300326,0.002648729,0.007135105,0.019525893,0.021178042,0.013805500,0.013368302,0.010176427,0.023572441,0.011758887,0.004143092,0.019188626,0.009820094,0.012028438,0.021990639,0.007170607,0.016602911,0.009013414,0.018123572,0.004868907,0.007699190,0.018737621,0.017737654,0.007733377,0.009850994,0.018629144,0.012526778,0.020998560,0.012541899,0.013908718,0.011958749,0.016272218,0.003974787,0.018521323,0.006229152,0.023821611,0.009277048,0.007835280,0.013913320,0.013848234,0.007743896,0.018816514,0.010337500,0.006359983,-0.992647542,-0.010022198,0.002233101,-0.012342778,0.002230492,-0.015681512,-0.012951039,0.006778085,-0.000626016,-0.012752367,-0.004605382,-0.007256040,-0.008443471,-0.008830740,0.003537143,-0.006374486,0.001659000,-0.004555492,-0.004818460,-0.001308058,-0.006189564,-0.008235386,0.001645926,-0.003103195,-0.005999200,0.001761680,0.003175008,-0.003365445,-0.010887865,-0.008660812,0.000752936,0.000221023,0.006580177,-0.000856447,-0.000274649,-0.006292431,0.001830591,-0.002789592,0.001688021,0.002068414,-0.000328228,-0.000343496,-0.004430601,-0.000188966,0.003466815,0.001699233,-0.002852143,-0.003215300,-0.010883735,0.000139662,-0.001235586,-0.000572216,0.001626089,-0.011364530,-0.000940996,-0.010037175,-0.008605716,0.000879946,-0.004421372,-0.004356653,0.001604491,-0.007097077,
0.006522078,0.003668485,0.025481810,0.029093600,0.005556751,0.020227421,0.031561834,0.026897046,0.013895950,0.029731372,0.032722732,0.008196469,0.020517405,0.033328711,0.010806323,0.024272742,0.023213964,0.008919020,0.007765829,0.006497993,0.008806302,0.006044231,0.018601200,0.028347928,0.007655038,0.017866125,0.016296745,0.013523113,0.010360268,0.014024082,0.030849880,0.007948875,0.023875821,0.028793019,0.030791113,0.034029104,0.023359438,0.025360422,0.034391343,0.013537564,0.013833329,0.030479934,0.009564499,0.008715742,0.021125311,0.007747524,0.021199493,0.005193548,0.005180061,0.026908607,0.027112848,0.022996235,0.020313164,0.008022094,0.033887484,0.031783416,0.015690766,0.008285102,0.013796719,0.014619464,0.010993222,0.014664744,0.009963347,0.003696423,0.008993202,-0.985146828,0.007110202,0.004532841,0.000762519,0.004966384,0.009351265,0.017303584,0.019855002,0.004971695,0.009581969,-0.003131595,0.000304612,0.015204298,0.008667763,0.011220677,-0.007380610,0.003891757,0.003779883,0.003842426,0.003584875,0.003131683,0.007120606,0.003380145,0.006743701,0.001065756,-0.000540654,0.005513103,-0.004783125,-0.000394206,0.000596801,0.001726973,0.001339530,0.002744796,0.004934006,0.011387943,0.010864086,0.001954728,-0.000972011,0.004688462,0.005119507,-0.001007467,-0.000627464,0.009735739,0.009535208,0.011136524,0.000246863,0.002713080,0.000335689,0.002809003,0.004968903,0.008894531,0.000704168,-0.002739539,0.002316101,-0.004533635,0.000426631,0.016891580,0.010633932,0.003700245,0.003309010,-0.000967189,0.003991017,-0.000586780,
0.019924269,0.019578588,0.021066038,0.031489306,0.013145021,0.023697109,0.005950584,0.026811949,0.018110600,0.027515359,0.024534900,0.017190328,0.016117140,0.016045779,0.016215376,0.030414264,0.006254561,0.033135231,0.014596327,0.032055556,0.029303079,0.007292532,0.005691091,0.005431599,0.022756448,0.023378303,0.027703492,0.005277757,0.027995421,0.023756421,0.008475078,0.026677569,0.010318403,0.033126890,0.005830105,0.031814598,0.025420882,0.012115391,0.012879968,0.006438987,0.023419081,0.008669698,0.023871340,0.024229996,0.023984404,0.016042999,0.008526050,0.008713255,0.014436924,0.024191072,0.004589174,0.021231928,0.031048168,0.007404670,0.006867150,0.005430672,0.018345071,0.031352145,0.014346102,0.029311420,0.017766772,0.009744739,0.004765258,0.016081923,-0.985906852,0.012137460,0.004348706,0.000618423,-0.007415482,0.012203914,0.005185451,0.002373090,-0.003515967,0.003328255,0.001086345,0.010861630,0.000270092,0.015993406,-0.000296550,-0.003494479,-0.007879087,0.002248925,0.002093608,-0.001680046,-0.003107254,-0.002963116,-0.005229355,0.013354361,-0.002804790,-0.002313785,0.007236277,0.001318105,0.001072927,-0.000846876,-0.004448626,0.008945781,0.001372567,0.001414485,0.008725877,0.002003276,0.002183344,-0.003701267,0.011024678,0.004723349,0.000778614,-0.001037051,-0.001098277,-0.002326395,0.008859200,0.003567584,-0.001848211,-0.001791295,0.001253181,0.003385941,-0.002032304,0.003972756,0.001752393,-0.005835300,0.003822639,0.002940872,-0.000377690,0.000163874,-0.005953859,0.005241971,-0.001981111,0.001545970,0.000256840,0.002591430,
0.007264147,0.022973667,0.016240613,0.004901325,0.034051568,0.028589717,0.012796516,0.023711755,0.021811531,0.031957655,0.020724615,0.007028147,0.021015149,0.029055136,0.025873366,0.029757495,0.033088763,0.030355487,0.029572268,0.005061166,0.027921207,0.027584601,0.028979917,0.009060004,0.021111993,0.027694609,0.011440690,0.008909566,0.030937495,0.016368485,0.006195095,0.004214950,0.027670163,0.006078505,0.005692067,0.005066807,0.034123967,0.031000491,0.015492182,0.024828760,0.027912745,0.028144984,0.014207815,0.003899030,0.019973363,0.021584934,0.020858129,0.027423820,0.021453300,0.025369397,0.020275180,0.013780006,0.027035502,0.020385188,0.005538808,0.007023446,0.004089899,0.006148083,0.011339145,0.003654568,0.015725361,0.020628710,0.027519725,-0.984044275,0.006375253,0.019041438,-0.003949525,0.009962145,-0.004627090,0.018755195,0.003774033,0.008004832,0.003810751,0.013744452,0.001560937,0.002557212,0.003120086,-0.002412136,0.004171721,0.005101882,0.008616284,0.001519176,0.003881020,0.002365238,-0.001028896,0.008984435,0.004025995,0.013135908,0.010024953,-0.003754392,-0.000333579,0.004018043,-0.001388618,-0.001824662,0.003387560,0.013661016,0.003741887,0.010807804,0.003924095,-0.003459070,0.003103601,0.004509992,0.007814141,0.005094593,0.001930511,0.003600966,-0.001407938,0.014358620,-0.001559320,-0.001905167,-0.003843041,0.006479105,0.003667008,-0.000211710,0.011095816,0.015347069,0.001581015,0.004756310,0.003369115,-0.000811318,0.002272744,0.003082079,-0.000933211,0.002431217,0.002666444,0.000015491,-0.001094349,-0.000546167,
0.009918617,0.003179504,0.003732608,0.003567815,0.005168399,0.009734049,0.018239737,0.020640313,0.009372704,0.002861305,0.016154963,0.013276787,0.003322724,0.017873598,0.007562984,0.005690342,0.016057885,0.006248839,0.012440241,0.010372246,0.018668197,0.019210514,0.013079636,0.016173539,0.011587515,0.007220215,0.018084532,0.014782092,0.016349717,0.004249157,0.012724883,0.014654452,0.006788759,0.002821755,0.012267059,0.020932745,0.020835068,0.013796333,0.012713497,0.008954431,0.016624771,0.009602215,0.016289793,0.007335870,0.008608667,0.009252855,0.004658442,0.004059196,0.008113091,0.003864442,0.017562590,0.007542010,0.009493752,0.020269381,0.013513489,0.015389726,0.017601541,0.021453489,0.004045414,0.006817522,0.004253951,0.019949384,-0.993432785,-0.015232336,0.007237403,0.002314705,0.002422731,-0.002667861,-0.006727341,0.008114044,-0.005862617,0.003240427,-0.010930899,-0.005568421,-0.010326270,-0.016136291,0.001439660,-0.008840293,-0.001787722,-0.011305294,-0.005308940,-0.000810547,0.001522697,-0.007075454,0.001403622,-0.004480556,-0.001297148,-0.008201354,-0.003864008,0.002905619,-0.002152702,0.003604818,-0.004875339,-0.002320152,-0.004776877,-0.014004009,-0.000870775,-0.007401012,-0.005472405,-0.004206521,0.003761111,-0.008859767,-0.000029459,0.000998958,-0.005136813,0.000909271,-0.002637463,-0.003866987,-0.008165022,-0.001836500,-0.011389302,0.002524999,-0.001387579,0.000412359,-0.007943554,-0.011908369,-0.002820501,-0.000272657,0.000402450,-0.013790403,-0.001240908,-0.009044803,-0.006921295,-0.001598358,-0.001041520,-0.005803668,-0.005622625,-0.017396507,
0.034089488,0.010026685,0.009087203,0.007938723,0.018374512,0.030195912,0.018767387,0.031024867,0.025337734,0.004755536,0.029069538,0.009179644,0.005105205,0.004629937,0.013916242,0.003806006,0.005055970,0.032515981,0.008125615,0.028656568,0.007935709,0.018785473,0.008581791,0.021205016,0.005391571,0.033010339,0.018732219,0.009577542,0.011645408,0.016594018,0.015220464,0.019230597,0.034782796,0.004718359,0.026988610,0.004384768,0.006692779,0.011377128,0.006855556,0.006918858,0.018407670,0.018921120,0.015188311,0.004590750,0.005804541,0.036074961,0.033474554,0.013468104,0.022621776,0.007356948,0.026191808,0.005216737,0.015298838,0.031737266,0.029748779,0.006572204,0.006084879,0.014950175,0.030820894,0.007495609,0.026978562,-0.987797420,-0.008486972,-0.001848956,0.007860688,0.003116804,-0.001885346,-0.000358436,0.008047606,-0.005002879,-0.003547664,0.000020859,-0.005263752,-0.013578065,0.005299086,-0.003749685,-0.001740435,0.013304178,-0.002630635,0.001201199,0.004695954,-0.005904169,-0.000357763,-0.004376996,0.006009410,0.004268388,-0.003038829,-0.001341129,0.007733025,0.003082448,-0.004980923,-0.003968075,-0.006157102,0.002140599,-0.000757675,-0.000297820,-0.002338770,0.006906745,0.007466434,-0.006857714,0.004879952,-0.001960692,0.003473532,-0.001864141,-0.000185597,-0.000431725,0.004797367,0.008165390,0.001799482,0.008557193,0.003969397,0.006566234,0.002772454,-0.001367320,0.006381440,-0.009645845,0.001493663,0.002761198,-0.003251374,0.004670103,-0.000601616,-0.001532766,0.001863797,0.003676262,-0.000389855,-0.002742824,0.000356125,-0.006784717,
0.034578342,0.005230327,0.011776994,0.018496167,0.027149129,0.012700523,0.024361386,0.029035263,0.015402488,0.024990415,0.008831041,0.029239220,0.007376650,0.011348110,0.030492513,0.013328599,0.027744800,0.016288847,0.021814772,0.032699833,0.016759666,0.013813713,0.005057820,0.016014362,0.030343834,0.013733655,0.027053821,0.015604540,0.004476445,0.007260375,0.014021484,0.006702826,0.017868091,0.010504640,0.019754225,0.005627759,0.003765452,0.011654047,0.013217089,0.008213449,0.032264278,0.018008193,0.022424739,0.014909749,0.020293665,0.008645192,0.030493466,0.018620067,0.021850989,0.020129737,0.003502403,0.034320059,0.018135905,0.014884016,0.008212496,0.015277636,0.016625283,0.009466742,0.018501886,0.016016268,-0.988093366,-0.009545620,0.007428270,0.003401146,0.001597710,0.006524381,-0.000920966,0.002233543,0.010134839,-0.006296538,-0.008886269,-0.010447453,-0.007222977,-0.010462265,-0.002843618,-0.009847428,0.002513023,0.003501646,-0.000913993,0.000927939,-0.002635415,0.002288881,0.003670337,0.005182420,0.001074418,-0.001949034,-0.000670134,-0.001959858,-0.001454013,-0.004896135,0.001719928,0.006246821,-0.001491947,0.000222665,-0.000785668,-0.003275846,-0.001914427,0.002684238,-0.010638606,-0.001835098,-0.008040216,-0.003793279,0.005366144,0.002485021,0.000478198,-0.002094507,0.003818283,-0.004670580,0.006752005,-0.009869159,-0.005424138,-0.004110373,0.001256739,0.000783478,-0.003436569,0.006363416,-0.000887029,-0.007927087,-0.004172975,0.006804932,-0.000385812,-0.003957176,-0.010412727,0.002962785,-0.002228328,0.003614047,-0.002401520,-0.006935002,
0.034118839,0.018464391,0.024113727,0.009471550,0.026059244,0.011693654,0.011382259,0.031257010,0.017453061,0.029642645,0.018044807,0.027283189,0.005230550,0.005378251,0.026359350,0.012801884,0.011327694,0.024527667,0.018727807,0.016355180,0.007450772,0.015388066,0.017245150,0.011235498,0.032074541,0.033719011,0.003845733,0.020158722,0.003579495,0.010288141,0.034153647,0.008789491,0.012700280,0.033376570,0.010358699,0.031484677,0.012470732,0.003485418,0.011936373,0.029078182,0.027948315,0.009883609,0.032998379,0.019543457,0.019681750,0.019634711,0.025100597,0.019691158,0.029977560,0.012951466,0.019082478,0.007150666,0.023362051,0.018657249,0.022532290,0.031494085,0.019482306,0.012203553,0.021329983,-0.985672005,0.004265187,0.011550586,0.004662972,0.018631201,-0.007402112,0.007243001,0.005704879,0.006537290,0.002841894,0.004196459,-0.008507551,0.016825915,0.007571858,-0.000710716,0.009777609,0.003910120,-0.001493148,-0.004112673,0.006510655,0.007539703,-0.005244507,-0.000100519,0.000117923,0.006891980,0.005071384,-0.006897942,-0.002247738,0.001536894,0.000459885,0.001261543,0.004687209,0.001556627,0.006897605,0.003003563,-0.000159526,0.014583624,0.000333734,0.008634680,-0.002866255,0.010546264,0.011254327,-0.000787767,0.006250206,-0.002216418,0.001648924,0.001003506,0.003507726,0.002487324,0.006272917,0.007820259,-0.000232525,0.005391425,0.003494801,-0.001591679,0.000500142,0.008031503,0.000820148,-0.003639442,-0.002089849,0.003533155,-0.000085739,0.001196859,0.003721281,-0.002731800,0.003416267,0.006477460,-0.002104088,0.010543826,
0.010442484,0.017870391,0.019198121,0.022793459,0.013167230,0.003895714,0.015720267,0.012347095,0.010788161,0.006386243,0.018765083,0.006606904,0.011704694,0.021557609,0.012466086,0.023781537,0.012441987,0.017430576,0.010204502,0.012267266,0.017101467,0.026633558,0.013738086,0.025699704,0.021196117,0.025240308,0.021931150,0.027111782,0.022324273,0.027209686,0.009642683,0.004696268,0.009117767,0.021935669,0.007114499,0.008189938,0.015583201,0.011709965,0.003000269,0.023351512,0.019529488,0.023404230,0.023458454,0.009214918,0.018987250,0.005674556,0.011757411,0.015583954,0.015949212,0.004229341,0.008881291,0.014474626,0.019235023,0.008232865,0.012787663,0.004601377,0.017917837,0.008450513,-0.990677490,-0.006238367,-0.002993776,-0.017815596,0.006714546,0.004708322,0.001266308,0.000300594,0.002925976,-0.001345051,0.005673482,-0.013922769,0.006951453,-0.019856631,-0.011711761,0.005526482,-0.006654888,-0.001986085,-0.005930384,-0.012126083,-0.002716522,-0.013199855,0.002223944,-0.001060216,-0.002927434,-0.001672679,0.002629986,-0.011265670,0.002449343,-0.011646478,-0.004645631,-0.002055388,-0.001957567,-0.007036154,-0.004561862,-0.000651582,-0.002297715,-0.006071529,-0.003465332,-0.009569261,-0.000895351,0.004686522,-0.008235550,-0.006035136,0.003222599,0.002421445,-0.002518248,-0.003528072,-0.002401273,-0.002674945,-0.006392885,0.004094602,-0.008149771,-0.000387436,0.001943844,-0.004106315,-0.003762331,0.000700722,-0.000495446,0.000225206,-0.002184600,-0.001196425,0.001274849,-0.010632908,-0.007885945,-0.002066582,-0.003060240,-0.000887334,-0.001392958,-0.016161462,
0.024371569,0.032727437,0.018012777,0.008249904,0.035482550,0.004538245,0.007920512,0.024091259,0.033013201,0.014513805,0.021742977,0.018704282,0.010801056,0.022379947,0.017038780,0.019474317,0.025694591,0.030308260,0.023130350,0.027519335,0.039381809,0.025790572,0.013123160,0.012971552,0.026377370,0.019539760,0.027009977,0.014745034,0.018709735,0.023131441,0.010879586,0.019798256,0.025851652,0.007741637,0.034539093,0.029540406,0.036545984,0.010375682,0.030899420,0.024111982,0.005331185,0.035775949,0.005362816,0.017761915,0.030416239,0.027655673,0.037253850,0.023267779,0.018125119,0.022037467,0.020818062,0.011405304,0.005544963,0.005826364,0.004647315,0.005060691,0.007726367,-0.984116812,0.008010214,0.010270841,0.011132581,0.005274105,-0.008714631,0.019023290,-0.008820618,0.013233707,-0.009172020,0.001801536,-0.000628629,-0.003488618,-0.010253507,0.015619122,-0.001897020,0.002523993,-0.002933925,0.000235878,0.007672622,-0.002072088,-0.001236042,0.010718366,0.004264458,0.002338921,-0.000536790,0.003937808,-0.003014178,0.009869717,0.002638505,-0.000845542,0.006283206,-0.001251349,-0.001271264,0.000822840,-0.000545546,0.001406687,0.004461972,-0.004760254,0.002039630,-0.000744798,0.012910346,-0.005235396,0.000387439,0.008512514,0.000952205,0.001628097,0.001068791,0.000551554,-0.003530627,-0.005902346,0.001819337,-0.005297995,0.005060213,-0.006099184,0.004039521,-0.000052912,0.007988044,-0.002256965,0.001530945,-0.006735049,0.002947751,0.007917038,0.002597318,-0.007259723,0.006043868,-0.001179256,0.001881139,0.004841591,0.001666074,0.005573592,
0.011526286,0.002512767,0.018953602,0.012914284,0.005511815,0.004091629,0.018979577,0.002919341,0.015116560,0.020258591,0.013521887,0.003826792,0.013874251,0.006283741,0.018815818,0.015470618,0.013926766,0.011075102,0.011458524,0.006410230,0.016725915,0.003581153,0.007417630,0.003017596,0.007132464,0.013070702,0.013581743,0.005851191,0.003068983,0.010254048,0.016638954,0.016075397,0.015576779,0.020165418,0.016808924,0.019853711,0.005440100,0.004804828,0.012164946,0.009923142,0.005804887,0.006449758,0.015095667,0.003306151,0.015846134,0.015621389,0.006628199,0.004848309,0.019951967,0.017618684,0.002688949,0.005052160,0.015038633,0.014652388,0.008505780,0.017410879,-0.994270700,0.004292148,-0.007675121,-0.008080978,-0.005752073,0.003212256,-0.009485455,0.006297887,-0.007338666,-0.004619677,0.002916635,-0.014108167,-0.001000058,-0.002660077,-0.001258509,-0.017872565,-0.007914423,0.002933541,-0.003089610,-0.007892581,0.002025677,-0.006613769,0.002849354,0.000942787,-0.013421892,-0.006498455,0.000941968,-0.004124417,-0.004271845,-0.009181337,-0.005678521,-0.006805070,-0.001730997,-0.003063364,-0.004490586,0.001970891,-0.007619107,-0.005834454,0.001129296,-0.014213634,0.001497299,-0.002236510,-0.003851774,0.001200900,0.001901048,-0.005579501,-0.010577362,-0.000343078,-0.001541464,0.001028308,-0.007614886,0.001040916,-0.010198884,-0.004384850,0.000987229,-0.001786058,-0.003888011,-0.004822665,-0.004716545,-0.003765632,0.000501736,-0.001908755,-0.002796882,-0.008001934,-0.002739014,-0.010872645,-0.009278883,-0.002629968,-0.000711210,-0.002490904,-0.004467187,-0.007129945,
0.021288434,0.026730470,0.029923455,0.005675589,0.007347960,0.013766305,0.018529477,0.005851628,0.033524162,0.014725414,0.027700708,0.019438001,0.035550635,0.011925988,0.029173771,0.027054220,0.035971510,0.027948580,0.032663189,0.015827176,0.008023788,0.024275028,0.029417595,0.036826413,0.005844546,0.028691181,0.011987703,0.033871182,0.019149661,0.028349220,0.033948072,0.016611258,0.021729544,0.010799945,0.024668587,0.007046468,0.036567413,0.021387583,0.019063665,0.034026987,0.023879446,0.022594563,0.020150251,0.035872362,0.011635625,0.020462872,0.021732579,0.011958363,0.009625339,0.011602238,0.005765632,0.018186504,0.027189790,0.017027075,0.010750371,-0.982478012,-0.005269586,0.019545838,0.012744961,-0.008396700,0.003803833,0.013046695,-0.003071728,0.019005474,0.016654917,-0.008524111,-0.003290240,-0.002213091,-0.005551225,0.021959607,0.015043257,-0.007277875,-0.007541807,0.002844965,-0.005081454,0.001250720,0.001753862,0.014617999,-0.000509971,0.018658190,0.014125139,-0.000855006,0.001245588,0.007684010,0.007717313,-0.004773837,-0.001002874,0.013830640,-0.003665180,0.004562026,-0.002533739,0.006581628,0.006019367,0.003891988,0.004489918,0.013618197,0.002393959,-0.004987281,0.005902041,0.012690293,0.009413152,0.015599736,-0.002165375,-0.001318493,-0.001509299,0.000290570,0.002803997,-0.002774936,0.002384547,-0.003755674,-0.002950649,0.014798514,-0.000753395,0.001501280,0.010081382,0.013847301,0.002688288,0.007398277,0.002107391,0.003599956,0.001378141,0.006958053,0.007768232,0.005132706,-0.000940316,0.005156095,0.002756419,0.004558381,
0.016543093,0.035934544,0.022725580,0.020501295,0.031139831,0.019508806,0.019515216,0.028763842,0.031863098,0.016643517,0.012766509,0.007314766,0.029370659,0.030246698,0.011623384,0.032665422,0.024911405,0.011880854,0.032937849,0.037050960,0.010864862,0.004518919,0.009956773,0.016716164,0.032905798,0.030467845,0.010409749,0.012177853,0.026045983,0.027491448,0.029916581,0.032214582,0.029531979,0.013646821,0.009464268,0.005823363,0.037805209,0.013705580,0.008020939,0.003906759,0.022443538,0.032676105,0.023773622,0.009760198,0.012442801,0.029398436,0.025213746,0.005252869,0.032613073,0.035709124,0.035612974,0.036820199,0.032477394,0.024057801,-0.981011268,0.017371884,0.003581511,0.021558592,0.005075294,0.002161959,0.013306163,-0.008084892,-0.001695446,0.022049733,0.018377028,-0.008994111,0.011644697,0.015231163,0.005531432,0.011833897,0.004446004,-0.003627752,0.006833473,0.009071058,0.012222237,0.019231439,-0.006023732,-0.001000598,0.008141012,0.005893437,0.010269578,0.005785775,0.004484308,-0.001923837,-0.003185137,0.007726980,0.008205071,-0.003801958,-0.003173316,0.005434586,0.002220234,0.002253868,0.005063731,-0.000789537,-0.002744052,0.015669555,0.003841637,0.003641940,-0.000277542,0.001429192,0.008343413,0.002004031,0.002812639,0.001270834,0.005820830,0.000445446,0.000969928,0.014119091,0.009265135,0.007185744,0.013403426,-0.002166127,0.001859424,0.003915032,0.009332605,0.012321933,0.002560264,-0.000907179,-0.001739283,0.014489340,0.001818374,0.009481380,0.008295889,0.003565680,-0.000061762,0.000620706,-0.001025038,0.004836086,
0.026907319,0.012952170,0.025515112,0.019118424,0.026897718,0.017632335,0.011247383,0.021438770,0.020195918,0.015999025,0.004422898,0.028265389,0.012317409,0.016915428,0.024557102,0.035010928,0.012469965,0.023915940,0.020032694,0.022438386,0.023822059,0.033791547,0.034014513,0.022609078,0.007356669,0.009575667,0.027691436,0.024303197,0.012663061,0.016912228,0.017372030,0.020526634,0.022296498,0.031129816,0.010931602,0.028778532,0.017712347,0.023494543,0.015593631,0.037097640,0.023132889,0.008749943,0.022028725,0.021191266,0.006105282,0.033196258,0.027024670,0.020613047,0.020382612,0.030092861,0.034656742,0.034770893,0.015390934,-0.984106936,0.002621156,0.008399846,-0.002969879,0.019021108,0.008698135,0.004810118,0.005465057,-0.012388866,-0.008092697,0.003575585,0.015153977,0.014606918,-0.001636027,-0.005933488,0.010342109,-0.002171592,0.016259072,0.011876947,0.010246699,-0.003534777,0.014443713,-0.002292463,0.003871464,-0.002420412,0.009193620,-0.003964498,0.005223078,-0.001302540,-0.001468225,-0.002161320,-0.002897042,0.011208281,-0.002959182,-0.004029623,0.003909894,-0.002170943,0.003259252,0.007170969,-0.005239973,-0.001588190,0.011211027,0.004854659,-0.002148174,0.000171118,-0.002988239,0.011705819,0.010364797,0.010543215,0.004509130,0.000864482,-0.001226779,0.003224121,-0.002927713,-0.003120721,0.003548031,0.014309273,-0.001689824,0.002556563,0.002470231,0.003551955,0.005137146,0.008961009,0.002300761,-0.003594102,0.001257639,-0.003198118,0.000758891,0.004737417,0.004232123,0.006745077,-0.002321059,0.006072889,0.001976567,0.014675050,
0.009283663,0.023725626,0.005356659,0.010540770,0.025919523,0.023605731,0.031634213,0.031763055,0.008249346,0.014277195,0.019701095,0.017874935,0.003653973,0.019847832,0.028842631,0.026557471,0.026701524,0.005498922,0.004908395,0.007085292,0.004196184,0.031358634,0.026017944,0.019734200,0.029498474,0.006269292,0.018752673,0.020734517,0.014497300,0.017232514,0.004891395,0.019949832,0.011851561,0.026026891,0.018369725,0.025818417,0.031989424,0.026059102,0.019546306,0.027693788,0.011809508,0.008005083,0.031247686,0.016491671,0.020267464,0.006375765,0.032078898,0.029900211,0.009130663,0.015334775,0.007372503,0.017847198,-0.988064827,0.004986109,-0.013173646,-0.007505606,-0.004536378,0.014740726,-0.003916417,-0.005915620,-0.001071897,-0.001428136,0.002113782,-0.007626409,-0.014256645,-0.003669193,0.000619659,-0.005157054,0.000925218,0.002081505,-0.002963611,-0.002619300,-0.013901389,-0.002849534,0.002907502,-0.002061038,0.000120641,-0.008462335,0.001053970,0.009500302,0.004406774,0.002092395,-0.000039669,-0.002804851,0.007057893,-0.006501061,0.001906842,-0.000908066,-0.002578344,0.003281855,-0.002653064,-0.000986371,-0.002268750,-0.002085007,0.007370883,-0.000470661,0.003985483,0.003389724,-0.007834549,0.001176580,-0.007907125,-0.010673301,-0.002930049,-0.001554261,0.000776022,0.001302791,-0.003099665,0.005558619,0.007272336,-0.004644459,0.003045968,-0.003556833,-0.002625596,-0.002323713,-0.002998060,-0.010686121,-0.000204881,0.004555859,0.001203903,-0.004767199,-0.001403866,0.001143090,-0.002800170,0.001303075,0.000104780,-0.000597634,-0.001150750,0.000685167,
0.014919112,0.016485864,0.015674495,0.012803153,0.003707460,0.024843060,0.026681750,0.019933963,0.028219175,0.013398572,0.003338655,0.022803527,0.009786955,0.004031830,0.012769383,0.018727128,0.015633615,0.010705856,0.021402071,0.010660533,0.024389830,0.003980286,0.005074257,0.015424774,0.021552259,0.021408291,0.029158515,0.016246808,0.029017214,0.009770959,0.026621319,0.006130015,0.007728760,0.018853322,0.006578801,0.021043931,0.023829959,0.012391691,0.013561201,0.018245461,0.005820753,0.003277336,0.016764911,0.022874622,0.007286195,0.011577656,0.010483684,0.019585598,0.011486121,0.028315153,0.009948696,-0.990337670,-0.002653400,-0.019528478,-0.021911291,-0.003385869,0.004547700,0.005137489,-0.002351938,0.006654778,-0.020665582,0.005270640,0.002148482,-0.000024002,-0.006800528,-0.010488628,-0.003537922,0.006168430,0.004184319,-0.009505988,-0.018521202,0.003499664,-0.002822528,-0.008432937,-0.000252436,-0.010290317,-0.008100341,0.001084314,0.002958652,0.001445399,-0.007862678,-0.008568257,-0.003112739,-0.004240388,-0.009714977,-0.012414291,0.001488153,-0.008511668,-0.000459973,-0.008359765,-0.006896386,-0.007272414,-0.002204663,-0.000986942,0.000414832,-0.002055252,0.002963208,0.001203593,0.002630194,-0.008398198,0.003666956,-0.009004211,-0.015387942,-0.004861061,-0.000674848,0.000286592,-0.002855465,-0.002269358,-0.008901250,-0.002855778,-0.012188566,-0.000674721,-0.003179151,-0.000229984,-0.002719977,-0.011036947,0.000184061,-0.003744688,0.001209931,0.002903385,0.000765549,-0.006404148,-0.004321084,-0.000016268,0.000642447,-0.004573413,-0.003981925,-0.015403962,
0.012687288,0.018134796,0.007943421,0.020457447,0.020963046,0.028471279,0.013081546,0.009971292,0.026483564,0.003570995,0.012392508,0.031031216,0.019459026,0.025152945,0.007394928,0.011929803,0.012759386,0.018407673,0.017105345,0.018403110,0.023957396,0.018945214,0.013620912,0.031962101,0.011405038,0.009441052,0.012187165,0.012374255,0.004514658,0.011010781,0.025116440,0.009744959,0.025472367,0.022769147,0.022543727,0.016845245,0.012629792,0.016127003,0.028042342,0.014950618,0.030639696,0.025871187,0.013610873,0.023481914,0.020614420,0.006259612,0.021106329,0.008582264,0.003362002,0.032493254,-0.989077103,0.004436610,0.008650356,-0.016096300,-0.017900186,0.012874658,0.007345388,-0.001988213,0.005197450,-0.004419618,0.012588259,-0.012706580,-0.006874080,-0.004273284,0.011356643,-0.011165400,-0.000269814,-0.008434384,-0.004295033,-0.003734212,0.006785468,-0.002834191,-0.010773885,-0.003522853,0.003858847,-0.016208955,0.002083651,-0.000230883,0.001151080,-0.008496563,0.002761619,0.005820488,0.000381671,0.004910012,-0.006777117,-0.012654456,-0.004281941,0.000070545,-0.010354317,-0.001819182,-0.001829422,0.005134644,-0.002987570,-0.003177685,-0.006167366,-0.009728239,-0.004429638,-0.008503581,0.000679828,-0.010040643,-0.010358555,-0.007615223,0.004654654,-0.004727981,0.002628824,-0.000028017,-0.007371404,-0.004848849,-0.007165777,-0.004364689,-0.006645369,0.004000878,0.000133789,0.002181146,0.004228144,-0.009195703,-0.000179983,0.001187481,0.000782584,-0.007799586,0.000422734,-0.007776411,0.004183744,0.001533187,-0.004903738,-0.005349578,-0.004516523,0.001331592,
0.029897567,0.034682552,0.022516323,0.008819943,0.028686921,0.031831992,0.032778556,0.026105877,0.029093368,0.032184101,0.014829701,0.024702875,0.018284497,0.010968459,0.036948437,0.013734252,0.021424134,0.037788499,0.006976805,0.008729742,0.009110107,0.024624629,0.023247710,0.016009918,0.037731988,0.021417613,0.008641715,0.031028880,0.027393682,0.032087379,0.035505226,0.029566107,0.024273607,0.015356778,0.024940875,0.019636421,0.031540741,0.004714180,0.014562359,0.026138480,0.006442122,0.014786231,0.034303274,0.004907623,0.033563194,0.024558337,0.036563726,0.021145924,0.025475559,-0.982514341,-0.014554498,-0.010700745,0.006811704,-0.006477424,-0.009975728,0.014927832,-0.005785674,0.003724429,0.011632163,0.011651782,-0.000443855,0.011883793,0.006764291,-0.000563120,-0.002539047,-0.005707823,-0.007880557,0.008390274,0.007554284,0.003949042,-0.000351435,0.006401092,0.011768760,0.005216965,0.013776791,0.009620128,0.004370184,0.012109711,-0.004157813,0.013471634,0.014514664,0.007687375,0.001165183,0.003479339,-0.006004710,-0.000354621,-0.004931523,0.008450226,0.009345868,0.001020564,0.002077258,-0.002301494,-0.002616056,-0.002099877,0.012865618,0.015211245,0.000403376,-0.002274935,-0.006192304,0.009757833,0.005256926,-0.004942335,-0.005427641,-0.000645798,-0.001890381,-0.001429801,-0.003257632,0.002315357,-0.001984457,0.003054823,0.005642537,-0.004463335,0.002935016,-0.001099028,0.007491403,0.006032246,0.001934183,0.005235777,-0.001838024,0.009948304,-0.000321903,0.005785005,0.010333678,0.002326266,0.001913868,0.001230005,0.001492996,0.003345800,
0.025634652,0.024620571,0.012464855,0.029601499,0.031855012,0.039984231,0.004349997,0.026632163,0.007679452,0.013872196,0.031114888,0.021368442,0.037408156,0.034522775,0.017257989,0.016571993,0.005735245,0.026858619,0.021177335,0.029864409,0.023412069,0.018428933,0.021044776,0.034765801,0.029483300,0.016007510,0.036148839,0.017475608,0.023659514,0.018853123,0.019240860,0.032866884,0.011444146,0.024970750,0.023267359,0.016500190,0.029636848,0.013406028,0.005625883,0.032505659,0.022604560,0.012299155,0.026707281,0.026344951,0.009324296,0.018536085,0.024885691,0.015710356,-0.984731073,-0.000578973,0.015521765,0.004286769,0.011521155,0.004370580,-0.007528059,0.014858383,-0.009041270,0.006032872,0.000933845,-0.008636963,-0.003157928,-0.004638534,0.004432958,0.001475222,0.007679964,0.015062954,0.001306639,-0.004052400,0.003890744,0.013540920,0.002976656,0.018242884,-0.008352770,0.012364102,0.004678727,-0.001897965,0.006777186,-0.003619894,-0.000169883,-0.004110462,0.000038597,0.005607688,0.000613525,0.000173866,0.002727163,0.008654020,0.004104143,0.002889820,-0.002026153,0.002281981,0.002318217,0.005590207,0.006175764,0.004839565,-0.000512479,0.001864905,0.004564169,0.002482852,-0.002937016,0.004869894,0.005961532,-0.004103623,-0.007179308,-0.002171265,-0.001620812,-0.000132508,0.002893044,-0.006698904,-0.001687505,-0.001388667,0.008106010,-0.006212099,-0.000499145,0.001711307,0.011045353,-0.003843820,0.001284122,-0.003812492,0.003728673,0.006964773,0.001239716,0.006984764,-0.000998536,0.003158310,0.003566415,0.004755346,-0.001755500,0.002113981,
0.024174944,0.025844788,0.036588346,0.006321197,0.042982540,0.021459019,0.022644657,0.020798848,0.009916946,0.026250114,0.043961875,0.035640563,0.006526287,0.034890590,0.014948324,0.035721871,0.038894091,0.007787165,0.018993085,0.016246822,0.041436478,0.043616014,0.034403956,0.034471915,0.005037261,0.019774612,0.023898254,0.005838204,0.036912364,0.034112704,0.006165863,0.031109168,0.020414152,0.018819548,0.026218562,0.032971967,0.034189158,0.018902069,0.040705921,0.005662239,0.005918298,0.023066973,0.032570282,0.013961707,0.038430515,0.044156043,0.013325807,-0.979007230,0.010941764,0.007346153,0.010711653,-0.003569162,-0.007697236,0.006568496,0.021738525,0.015754704,0.007278791,0.005983801,0.002292009,0.004290630,0.000973457,0.007360566,0.010772128,0.000750171,0.016074892,0.021246742,-0.003611624,0.016142116,-0.005670232,0.002620981,0.011916827,0.020238349,0.015383793,0.000634093,-0.001809777,0.006654610,0.007075100,0.013969732,-0.001394277,0.001913422,0.004519977,0.006606982,-0.001642155,0.006373747,0.009279319,-0.001894639,-0.001295530,0.014471307,0.001523146,0.004046064,0.000170672,-0.002571398,-0.000067550,-0.001144040,-0.000078416,0.003620392,0.007419548,0.002175993,0.009235390,-0.000730551,0.007700145,0.009837691,0.006671217,-0.000505015,0.000526048,0.003818609,0.005386811,0.005977350,0.001401838,0.013363829,0.004097455,0.011686230,-0.000291916,0.000286851,-0.002672936,0.000438938,0.001413235,0.007730109,0.005610321,0.002158297,0.003317735,-0.001412108,0.003203327,0.000067580,0.003627061,0.001385039,0.004049615,0.009686829,
0.010771618,0.036918995,0.011244129,0.024789802,0.011083813,0.029914650,0.020287234,0.020406417,0.030039106,0.009966873,0.013721649,0.037163689,0.007556855,0.006269051,0.028793490,0.020850451,0.020083675,0.030745763,0.014423033,0.015095939,0.006341826,0.006555932,0.032739170,0.010389812,0.034505813,0.007706624,0.011111236,0.035634356,0.014578076,0.020294617,0.030759475,0.022418808,0.023485123,0.008367928,0.012505566,0.026313861,0.008408008,0.013349336,0.027652292,0.024317291,0.035872721,0.033191642,0.025455325,0.010999436,0.024915313,0.032288808,-0.986303898,0.008306029,-0.005110311,-0.014249266,-0.003457103,0.004835850,-0.014402583,-0.008635017,-0.007328359,-0.002780748,0.003073371,-0.017991977,0.003255930,-0.008132261,-0.014347949,-0.020132990,0.005665010,-0.004055811,0.006545473,-0.006415833,0.000741153,0.004543975,-0.003232518,-0.007662660,-0.008799790,0.007020053,0.007240328,-0.013324146,-0.012161323,-0.000974243,-0.004254172,-0.015767095,0.004205969,-0.008622416,0.004909858,0.005079930,0.001360148,-0.002418399,-0.000223292,-0.006715229,0.003051455,0.002642877,-0.001970047,0.003165121,-0.001603575,-0.000231646,-0.000792790,0.001534490,-0.006662132,-0.009230316,-0.005477123,-0.001174276,-0.006374890,-0.007459465,-0.005488869,-0.006640439,-0.002264027,-0.000018580,-0.002484689,-0.003513820,-0.006494097,0.002562221,-0.002834119,-0.001534392,0.001023574,-0.002264116,-0.003520667,-0.002554933,-0.001068538,0.004864181,-0.000091441,-0.002110731,0.001357619,-0.006847914,0.000968371,-0.009593199,0.001400037,-0.000714184,-0.000836813,-0.002467835,0.001660642,-0.001177304,
0.040894341,0.034394087,0.035600553,0.045118973,0.036855012,0.018248767,0.042642051,0.046226789,0.010610036,0.034438080,0.007745178,0.020241770,0.006990637,0.007191937,0.047575898,0.014602706,0.023703862,0.025656871,0.019204609,0.019068631,0.032543727,0.023626541,0.027677869,0.021069632,0.015359914,0.026568719,0.018020805,0.012004471,0.016143784,0.044495076,0.036581724,0.038674709,0.014044132,0.021562884,0.016374412,0.022734689,0.011800505,0.013050964,0.016054465,0.010228766,0.013354913,0.039577226,0.029330927,0.006230763,0.023045304,-0.980890453,-0.010217480,-0.014427818,0.005891484,0.003664905,0.011479267,0.003550044,0.012847856,-0.008118942,-0.002781017,0.004287917,-0.004307063,-0.003458977,0.010963975,0.003020282,0.011166030,-0.017654594,0.000810838,0.001387913,0.006539679,0.014817749,0.004450465,0.009427303,0.004499741,-0.005688524,0.017334658,0.001318943,0.014645270,0.005190308,0.016182036,-0.005770382,-0.004275727,0.002502842,-0.000326212,0.017416526,0.010616439,-0.001865752,-0.003210167,0.004688525,-0.000895358,0.012572802,0.005514210,0.015483736,0.000271591,0.005933344,-0.001502339,-0.001477322,0.002821715,0.005136809,0.012363439,0.014913864,-0.001196470,-0.001943323,0.004751836,-0.004455589,0.007671307,0.010660863,-0.001011629,0.002507729,-0.001201796,-0.001740800,-0.004032177,-0.007445898,0.009285498,0.009036311,0.009813732,-0.002682650,0.000314270,0.002660137,0.003980187,0.010369780,0.001044953,0.010948499,0.004921751,0.011584645,0.000146971,0.007630110,0.006709181,-0.002466405,0.004167853,0.003050199,0.000596735,0.006692535,
0.006480541,0.027526965,0.011042473,0.039097559,0.016857857,0.034822877,0.032347762,0.039837823,0.019265985,0.013213307,0.030251862,0.019094544,0.027495174,0.034913707,0.023993682,0.011388762,0.014741521,0.005890147,0.019136553,0.029761380,0.020080048,0.039353018,0.007850937,0.013795754,0.011444395,0.034384622,0.009953649,0.027369148,0.041074245,0.014121607,0.030313172,0.037656770,0.020285551,0.006229623,0.012839770,0.039205420,0.021551493,0.015582833,0.038699043,0.040604200,0.025513947,0.025214208,0.030485749,0.007923601,-0.983431123,0.002718761,-0.003097400,-0.011294229,0.014735336,-0.009415515,-0.003472093,0.007647151,-0.000969575,0.015027188,0.010571930,0.011556546,-0.004361156,-0.008937123,-0.002541691,0.000369553,-0.003623233,0.010807065,0.004866256,0.001510556,-0.004038744,0.000022891,-0.004851105,-0.005119126,0.004560270,0.014606388,0.015116101,0.009415710,0.017943482,-0.005243209,-0.009146897,0.006708212,-0.004626262,-0.006323304,-0.003754485,-0.006933535,-0.004795427,0.002018994,-0.002908487,-0.002160719,0.006806175,-0.003086765,0.003965369,0.002337037,-0.000088211,0.001084377,-0.002243583,0.004859073,-0.005751013,0.004955304,0.004725437,0.007043763,-0.001043563,-0.001744826,-0.009860605,-0.002162108,-0.003684106,-0.000649290,-0.008161552,-0.001113156,-0.003246184,0.001472589,-0.000144654,0.000909866,-0.001286294,0.006672943,0.009258712,0.007585644,0.003268822,-0.000997122,-0.002042413,-0.001278514,-0.001309364,0.005812093,-0.002628594,0.002551839,0.002328710,-0.009781792,-0.000157814,0.004861123,0.003459278,-0.002428254,0.001313018,0.006914585,
0.015910187,0.013231837,0.021661602,0.020163073,0.005728827,0.019242363,0.030632911,0.023732768,0.021920714,0.016051835,0.006920741,0.027622034,0.005753875,0.017523589,0.013859751,0.022324064,0.024455689,0.031318693,0.008915037,0.010141498,0.008339809,0.016165844,0.003701710,0.023955604,0.009347753,0.029566235,0.020638975,0.020243398,0.016112294,0.007850088,0.020464506,0.029295031,0.016272080,0.021447403,0.017319755,0.025784068,0.020366908,0.022776646,0.017872526,0.015865275,0.030514583,0.014508393,0.029491956,-0.989096323,0.010836654,0.012353840,0.006894687,0.005456647,-0.008593739,0.013439296,-0.008582678,-0.008228541,-0.000490719,-0.004968735,0.006095915,-0.018073535,0.006710659,0.000272657,0.004230816,-0.004093101,-0.000422501,0.008702195,0.003519916,0.012374429,-0.008056216,0.006037420,-0.007329308,-0.008067645,-0.004008852,-0.000630011,-0.018867223,0.008420620,-0.019885060,0.007442988,-0.015376217,-0.010708955,0.004458908,-0.009703791,-0.008493580,-0.007334034,0.006546247,-0.008298605,-0.005345636,-0.009001122,-0.006668262,0.005210738,0.003074282,-0.008144730,-0.009436483,0.002129345,0.000886240,-0.002399408,0.000795057,-0.000843706,-0.009779507,0.003279012,0.001428960,0.002568792,0.000887322,-0.011868357,0.006175755,0.005820436,-0.012053467,0.000615925,0.001530673,-0.002197880,-0.004468091,-0.000793137,0.002439958,-0.004110319,0.001491222,0.001355859,-0.001726617,-0.003458328,-0.002907612,0.003985899,-0.000919387,-0.012034967,-0.005229548,-0.010095050,-0.001859033,-0.008347370,-0.003980829,-0.001088712,-0.003337869,-0.006621795,-0.001272916,-0.000601915,
0.041334749,0.010644433,0.032056008,0.039057122,0.014550281,0.026953700,0.021731393,0.029286621,0.017987897,0.037415961,0.021467866,0.041894744,0.014658515,0.042478269,0.033779522,0.038486539,0.038824183,0.008647980,0.009109152,0.020326700,0.008479746,0.011791481,0.018257307,0.017030259,0.014676162,0.029358385,0.013173822,0.037983014,0.028743096,0.013957345,0.015806740,0.011797364,0.030932488,0.013400879,0.013365585,0.028206630,0.041259456,0.005916239,0.014199695,0.021073752,0.015185569,0.025146657,-0.984516667,-0.011098352,-0.006934077,-0.006208805,-0.005243965,-0.009187498,-0.006202002,-0.013237795,0.001970167,-0.001599948,-0.013268878,-0.003173117,-0.004775574,-0.000313145,-0.004040257,0.013584821,-0.007849593,-0.016257463,-0.006334530,-0.002058939,-0.004777941,0.003292301,-0.006995318,0.008134307,0.003674544,0.000588974,0.004152153,-0.010842294,0.000725564,-0.006496539,0.000761633,-0.014003116,-0.002749363,0.006516638,0.005266768,-0.003724860,-0.004825725,0.002735688,-0.004760132,0.005386831,0.004456021,-0.000146505,-0.004035635,-0.009148851,0.000553924,-0.006375408,-0.000551334,-0.003533195,0.003639898,-0.001321952,0.003208906,-0.002787020,-0.003892177,-0.006012301,0.002507057,-0.002168833,-0.013655825,0.005656096,0.004376124,-0.000577087,0.006849719,-0.003415012,0.003051570,0.001226761,-0.007791354,-0.004180269,-0.006426862,0.002533775,0.002701670,0.002172293,-0.000350006,-0.002943654,-0.006523657,-0.007466477,-0.000790948,-0.007895196,0.002269667,-0.010342169,-0.000703676,-0.007455763,-0.001578120,0.001247258,0.002520508,-0.001620892,-0.001331925,-0.005449458,
0.006406150,0.020052816,0.012343968,0.015079320,0.041436987,0.008948063,0.008820538,0.011174745,0.048976756,0.047724426,0.031196256,0.014782715,0.008708774,0.037237241,0.035516363,0.031608923,0.023753923,0.035143816,0.038940925,0.026704205,0.031997231,0.047894938,0.021856801,0.036181215,0.016729987,0.015043498,0.051276514,0.037672834,0.049025474,0.016658344,0.016590999,0.044625126,0.034185226,0.006909088,0.035603768,0.020952659,0.044077769,0.043672266,0.029800639,0.034216749,0.027820411,-0.976050032,-0.000093619,0.005443869,0.003530113,-0.011091960,-0.011956954,0.010065471,0.015166769,0.013044404,-0.005517187,0.013350391,0.013680536,0.018857713,-0.004083916,0.007693216,0.005453194,-0.007061632,-0.004444317,0.011854796,0.002600656,0.000094598,0.004443772,0.001346290,0.016186087,-0.005956794,0.010442604,0.016752984,0.003550764,0.002008752,0.022904350,0.017902619,-0.000178361,0.014350036,-0.003749448,0.014711612,0.007631911,0.010848346,-0.002085822,0.011042832,0.016892060,0.002206068,0.005332504,0.008923660,-0.002496657,0.005478997,-0.000503002,-0.001015545,0.008042886,0.000322875,0.003295123,0.007117792,-0.001314012,-0.001019382,-0.001311753,0.003607687,-0.003736183,0.000791535,0.014830785,0.008025103,0.011296378,0.016058467,0.019025886,0.005372294,0.005555129,0.002349567,0.006145147,0.006158483,-0.000658018,0.001051214,-0.001358664,0.013141175,0.004761628,0.001693127,0.007808509,-0.001752599,0.000175903,0.005865434,0.005466051,0.008861809,0.003452611,-0.002818490,-0.004287928,0.003063734,0.003535541,0.003408387,0.005236848,0.014263368,
0.035334476,0.043051330,0.009011335,0.017297114,0.022686935,0.038756585,0.015454879,0.042923001,0.014346972,0.042235728,0.031404755,0.030621948,0.020981584,0.024154164,0.020046208,0.021413625,0.011004713,0.015139760,0.011801779,0.047709675,0.006742762,0.033378171,0.047040938,0.007303132,0.047823745,0.036754651,0.045170186,0.038616848,0.005728963,0.041167745,0.016177800,0.008671976,0.051097562,0.009350694,0.026270167,0.019199236,0.028967929,0.025575764,0.006622988,0.028384745,-0.980018377,0.003259612,0.010685784,-0.012592891,-0.000400411,0.012531638,-0.014158382,0.021222534,0.002362379,0.020094444,-0.012618880,0.010750587,0.009624036,0.001064460,0.002167064,0.000868286,0.005948822,0.018488051,-0.001560180,-0.006554777,-0.012429699,0.000678519,-0.003985086,-0.004710340,-0.000951915,0.006278919,-0.004174583,-0.003227864,-0.001434960,0.011690676,0.013172265,-0.008384334,0.009644156,-0.011969694,-0.003355009,0.009917644,0.004182027,0.010277826,0.003785710,-0.005071349,-0.001153359,-0.003191331,0.005378384,-0.000874607,-0.002882982,-0.009331039,-0.005264831,-0.007770898,0.005621703,0.001880392,0.002252329,-0.001632994,0.001230611,-0.002218007,-0.000683144,0.000686932,-0.001279572,-0.004592265,0.013082335,0.006531855,-0.003780443,0.007775661,0.010351272,-0.001047415,-0.001177968,-0.001609619,0.000210823,-0.008104129,0.004175566,0.007185966,0.006495117,0.009237580,0.003851981,-0.000225921,-0.000843813,-0.007229498,-0.001227296,0.006339492,0.000622239,0.005653462,-0.000198178,-0.005019898,0.008402712,-0.002534428,0.000806625,0.001978252,0.000546310,-0.000468631,
0.041314354,0.035796305,0.033788496,0.028250658,0.006942616,0.028345036,0.036825326,0.032760997,0.035648650,0.015135207,0.007085705,0.031690876,0.007814848,0.050009278,0.024668873,0.032509831,0.030634455,0.046104782,0.020120479,0.011643233,0.047622436,0.030763844,0.013535353,0.026416383,0.007817893,0.018260325,0.053700662,0.029769834,0.028853458,0.050570977,0.052117553,0.050196511,0.012996487,0.033666719,0.030969344,0.027695048,0.045780549,0.019316746,0.032164287,-0.975447327,0.002200062,0.002021657,0.005760000,0.007681207,-0.012941156,0.021898467,-0.001567699,0.028646088,-0.004105999,0.003512637,0.004627194,0.001405950,-0.005887945,-0.008909240,0.024094120,-0.004141073,0.002834194,0.004105460,-0.004463928,-0.006426839,0.010954893,0.013996904,0.005137695,0.001187077,0.019172217,0.012262246,0.006849280,0.000155848,0.006081606,-0.002066486,-0.001974134,-0.003001735,-0.001453175,0.011781799,-0.005741637,0.014701285,-0.001921302,0.013551938,0.002560652,0.001071930,0.001736682,-0.003220657,0.001498765,-0.001058314,-0.003960674,0.008442041,0.005566575,0.005087047,-0.003908398,0.007444298,-0.001901942,0.001828134,0.000530951,0.004808730,0.011979142,0.008878724,0.003129465,0.009684096,0.015771531,0.012616644,0.006316536,0.014237134,0.007608143,0.003714708,0.001950879,-0.000776642,0.007087331,0.007537762,0.001457376,0.012879998,0.001360935,0.009873540,0.001647760,0.003829254,0.014900680,0.012050429,0.000813294,0.009307668,0.004298387,0.005372309,0.000423150,0.011351872,0.008083697,0.007576683,0.005586420,0.000530464,0.005036599,-0.001845787,
0.016420443,0.035209832,0.010149934,0.006346397,0.005864902,0.041465121,0.040796838,0.028017840,0.038603821,0.011700958,0.018315985,0.013968690,0.034163824,0.040556091,0.031175232,0.009805415,0.033462335,0.038764319,0.042663325,0.019074202,0.005602016,0.046439189,0.022166564,0.023124021,0.043309469,0.015129537,0.037935538,0.025851111,0.030338150,0.040513199,0.040715205,0.028402483,0.017733486,0.010037862,0.042403207,0.042924827,0.029549494,0.010064150,-0.980375674,0.002262233,0.022068348,0.002408406,0.008162526,0.002058067,-0.011447624,0.010557496,-0.005847824,-0.013582497,0.018875182,0.013397233,-0.009884415,0.003761841,0.000101597,0.006637427,0.018435128,0.007217575,-0.000167350,-0.006887984,0.013328023,0.009471440,0.005114144,0.012272062,0.000923347,0.007841676,0.008387068,-0.012351972,-0.002021121,0.001815975,-0.004302300,0.002123072,-0.010125085,0.007491829,0.010384815,0.010640563,0.012071960,0.007099549,0.000082715,-0.006473934,0.008042540,-0.002060029,0.013531834,-0.003130243,0.001411154,-0.005637373,-0.000217591,-0.008718142,0.002420952,-0.001240299,0.000307712,-0.004129805,-0.003638330,0.000171436,0.005924968,-0.000295782,0.010575144,0.004736041,0.000566038,0.004015650,0.006281986,0.002736895,0.007348213,-0.005137304,-0.000948921,0.001350872,0.000565464,0.003651426,-0.001622815,0.002603665,0.004621636,0.004692830,0.005659602,0.007755328,-0.001397692,-0.000412051,0.000272605,0.004773062,0.000618732,0.006706125,-0.002425257,0.009247732,0.001093173,-0.004790030,0.006533952,-0.000191427,0.004553870,-0.000947979,-0.002165534,0.001872069,
0.008548295,0.003944622,0.027946512,0.037641883,0.004009764,0.009245627,0.031042324,0.024188608,0.038347758,0.014849912,0.011572559,0.030762537,0.038592304,0.010869887,0.038243105,0.031566658,0.013606889,0.018843820,0.024513246,0.019549695,0.032191373,0.021843522,0.030145297,0.015970128,0.006329220,0.024221712,0.033822041,0.022057100,0.033021124,0.010293227,0.009011759,0.005742949,0.036053931,0.008594214,0.032988019,0.033893590,0.021039401,-0.986578748,0.012524670,0.004356915,-0.004449630,-0.020837461,0.014416755,-0.006817189,0.003722279,0.005976458,0.003409390,0.001852861,0.004634203,0.014520951,-0.000756419,0.003568702,-0.010384501,-0.005323510,0.002808695,-0.003726374,0.005954229,0.007530172,0.001638621,0.010925755,0.003665354,0.001842826,-0.002184860,-0.015200696,0.004897532,-0.009441763,0.003371116,0.009876770,0.004644920,0.001513405,-0.004969764,0.006349762,-0.002536150,-0.007471513,0.009804191,-0.004539707,-0.001443003,-0.008124527,-0.006489539,-0.011889785,-0.000888723,0.004061710,-0.004630687,0.003450254,0.000516326,-0.010915262,-0.003580204,0.007150543,-0.008692349,0.003204335,0.005484190,0.001997646,0.004237133,0.002095831,-0.004051767,-0.010134885,-0.001732419,-0.003354733,-0.009247734,-0.008035160,0.000371275,-0.012280983,-0.009142561,-0.003952494,-0.000439928,0.001374858,0.002184544,-0.008587854,-0.001900041,-0.007732404,-0.012104004,-0.006237373,0.001675352,-0.003272151,0.000713629,-0.002977775,-0.001941614,-0.009976333,-0.000942011,-0.008021670,0.000576038,-0.002766051,-0.003120231,0.000085207,-0.003865618,0.002033822,-0.004739474,-0.003913226,
0.045136810,0.053000314,0.019121494,0.050933016,0.034142825,0.011899940,0.035704956,0.034935548,0.025144638,0.026122330,0.022290833,0.014574993,0.033758898,0.045575139,0.011598394,0.015174976,0.046507755,0.050518002,0.014127337,0.024061249,0.019474334,0.036547419,0.018639643,0.020955639,0.048133615,0.046238851,0.056402807,0.020809529,0.041494945,0.007100078,0.031559479,0.054267117,0.041757632,0.026831118,0.013182287,0.036398200,-0.975999257,0.003816588,0.003149743,-0.009256118,0.001345627,-0.011622826,-0.015142520,0.000703377,0.005306885,0.018079901,0.013280697,-0.005222802,-0.002546626,-0.003220812,0.005778685,-0.006256812,-0.011192884,0.005212105,-0.011459747,-0.012235982,0.006379583,-0.010246741,0.001304752,0.007647280,0.015342943,0.013344152,-0.007988049,-0.010823006,-0.002040901,-0.002513887,-0.007883299,0.006258434,-0.003230277,0.014419121,0.013632710,-0.007877029,0.000927979,-0.003082935,0.012178653,0.004669867,0.000149783,-0.005601861,-0.002360886,0.006613035,0.013010707,0.004034518,-0.003206632,-0.002676846,0.008760830,0.010108634,0.005815654,0.009175494,-0.004599363,0.002302546,-0.003889499,0.000578676,0.004398193,0.000853529,0.003427765,-0.004451747,0.002288467,0.004434344,0.007005149,0.006882835,-0.004037818,0.011176103,-0.002734367,-0.000158283,0.002644991,-0.001603049,0.006430328,0.007211380,0.000251580,-0.005775754,-0.002323757,-0.001355587,-0.000189989,-0.001134020,0.000389047,-0.004175727,0.000757471,-0.003014624,0.003180803,0.006145044,0.000215649,0.006085378,0.007995229,0.006129856,-0.001769701,0.002910512,0.003362809,-0.005325651,
0.012056511,0.036119030,0.026601829,0.008371018,0.034698595,0.013808004,0.006400234,0.042167200,0.043881909,0.027671400,0.019206791,0.046370501,0.027733650,0.038297786,0.014321568,0.007667874,0.035625273,0.031504029,0.026521186,0.007287299,0.032156241,0.021793003,0.032429293,0.031799718,0.006925116,0.030164236,0.022852671,0.016912024,0.034402907,0.026175981,0.043320243,0.032949931,0.047783863,0.032710834,0.024662170,-0.981535590,-0.006640895,-0.013141623,-0.016572022,-0.000020632,0.004213628,0.003134591,-0.005196013,-0.008530970,-0.019085518,-0.001396780,-0.008155016,-0.012407194,0.002651432,0.000719751,-0.000104216,-0.006006900,-0.011870469,-0.012811583,0.012862814,0.011570931,-0.008196749,-0.010732340,0.006542063,-0.015702436,0.009134934,0.010760061,-0.010624753,0.010979376,-0.016659744,-0.019694144,-0.000107851,-0.008027707,0.004234215,-0.014337835,-0.013663986,-0.016385968,-0.013134401,-0.000671858,-0.001069982,0.005526624,-0.008043332,-0.004653992,-0.000614019,-0.006041934,0.000512482,-0.001693915,0.002980054,0.001677135,-0.008933354,-0.014809355,0.000745659,-0.005104385,0.003241181,-0.006880211,0.002840541,0.000603826,-0.002841262,-0.003500346,-0.014520184,-0.012755707,-0.003303391,0.001244219,0.003970119,-0.004523756,-0.010366338,-0.010400269,0.003467207,-0.002975764,-0.004918565,-0.002597977,-0.000218472,-0.003741203,-0.011217737,-0.003941444,0.002069850,0.002499598,0.000301872,-0.003599161,-0.004831359,0.001790334,-0.001596227,-0.012065172,-0.002546465,0.002946236,0.000524182,-0.004124554,-0.008936941,0.001212229,0.002438761,-0.003824688,0.000787390,-0.013704346,
0.035244529,0.042504898,0.012891624,0.038034611,0.006925864,0.047313867,0.013063163,0.046753798,0.034237285,0.041902311,0.049790192,0.037698862,0.038864451,0.021776486,0.014136384,0.008346562,0.031504384,0.017553977,0.034495327,0.041773290,0.015639187,0.053339738,0.006953721,0.040060828,0.048678851,0.017356047,0.013423836,0.013287484,0.029573466,0.016848760,0.007587097,0.018794339,0.007110599,0.035725426,-0.981010583,0.001089299,0.017341001,-0.013141828,-0.014885631,-0.004602637,0.000090908,-0.010964033,0.008710091,-0.000710374,0.009466960,0.006675425,0.006161161,-0.002727474,0.000055951,-0.002323841,-0.006584722,0.008605475,-0.001422704,0.007407205,0.012822125,-0.004246417,-0.006740228,-0.014647252,0.008508450,0.007925253,-0.001787291,-0.010269932,-0.001827649,0.012299970,0.014155697,-0.014154407,0.001953789,-0.001441531,-0.008715186,-0.011542813,-0.010084920,-0.008532740,0.004507026,-0.001534135,-0.000212683,0.011052864,-0.005085433,0.000360899,0.006315998,0.000342809,-0.012490756,-0.008018325,0.000945237,0.006721166,0.003161266,0.007717109,-0.003308337,-0.010624059,0.000682385,0.004864507,0.004462430,-0.004119829,-0.003694662,0.001767441,-0.007365241,-0.000265792,0.002767728,-0.006643571,0.006742836,-0.005251064,0.004584161,-0.003381330,-0.003392016,0.001349360,-0.002228918,-0.003423906,0.002401354,-0.004487614,-0.002496280,-0.008753096,-0.001198752,0.002087454,0.001840352,0.001359767,-0.003746820,-0.003266444,0.001446315,-0.009686731,-0.001437898,-0.006523653,-0.001243467,0.009591718,0.005955801,-0.000057296,-0.000397287,-0.002234111,0.001501050,0.003567940,
0.006841592,0.021185479,0.046672676,0.040908323,0.035811160,0.024456504,0.035177122,0.043403032,0.009098710,0.009938567,0.050170241,0.025839230,0.018534677,0.039706553,0.046997292,0.036978396,0.015005341,0.037454960,0.042853257,0.049298612,0.031506889,0.030283017,0.008189785,0.018864819,0.031802496,0.019949175,0.009619477,0.005417425,0.031102154,0.033873133,0.039967627,0.008934330,0.026224625,-0.980861569,-0.009802197,-0.007933073,0.001211654,0.011647337,0.015423015,-0.005093503,0.015397613,0.018565223,0.009592429,-0.003012501,0.017751225,0.005050207,0.011837737,0.007508886,-0.001998451,0.008260530,-0.004926541,-0.003099832,-0.007752117,-0.011078378,0.010208442,0.011548669,-0.008454996,0.014620570,-0.004784410,-0.014111911,0.008581699,0.012192942,0.008570093,0.016657756,-0.012229553,-0.009493208,-0.005981072,0.008801594,-0.006226850,-0.008295679,-0.004364503,-0.004722906,-0.003757467,-0.001032545,-0.005735303,-0.009207114,0.000080332,-0.006484721,0.001297282,-0.008826357,-0.001035638,-0.006860270,-0.001271908,-0.006901497,-0.008381689,0.008446355,0.002976620,0.008154992,0.003912317,-0.004097404,-0.002382442,-0.003428098,-0.000931857,0.004932369,0.006949466,-0.009343976,0.002172767,0.002410702,0.006018604,0.003326816,-0.001310723,-0.008312295,0.004506012,-0.000437065,0.002771938,0.001863029,-0.000020471,-0.000742354,0.005123951,-0.009739016,-0.005533559,0.009035291,-0.001774213,-0.001954757,-0.002715043,0.008824460,-0.000828163,0.006850710,0.002848166,-0.003414006,-0.000573516,0.011402907,-0.003022110,-0.002325836,-0.002982175,0.004759778,0.000113520,0.007876530,
0.021361877,0.031669782,0.014880896,0.017824394,0.021977255,0.007921707,0.004678699,0.033182431,0.016894404,0.038155797,0.032431140,0.011523370,0.007014369,0.045034446,0.038610095,0.036979153,0.043915690,0.013411034,0.041613998,0.032385836,0.033247870,0.028630643,0.028019039,0.031832121,0.035616259,0.018198151,0.031693693,0.010326591,0.040480141,0.043465167,0.006168696,0.045041996,-0.982061952,-0.002772574,0.018817352,-0.022785413,-0.015224981,-0.017190454,0.004670765,0.010213287,-0.028706820,-0.010357160,-0.010998822,-0.003862045,-0.002117785,0.006755633,-0.007155820,-0.000034411,0.007192514,-0.005945085,-0.012486838,0.005384127,0.003223877,-0.007405632,-0.012961241,-0.006373127,-0.005926359,-0.008883275,0.005347480,-0.001745210,-0.003226476,-0.023692411,0.002151697,-0.012973756,0.003733516,-0.013617296,0.004799811,-0.011963771,-0.003650106,-0.008486153,-0.005386571,-0.002840861,-0.001082089,-0.003914897,0.008231080,0.007130958,0.003022243,-0.014792207,-0.009102033,-0.004872615,-0.009256827,0.003853762,-0.001227001,0.001235923,0.002879480,-0.015005733,0.003491602,-0.012653729,0.003288513,-0.007950201,-0.004881275,0.003188407,-0.002406459,-0.001092875,-0.000681739,-0.005900180,-0.003389367,-0.009247432,-0.008756067,-0.008083588,-0.008636180,-0.013709221,-0.011964355,0.001288523,-0.004601874,-0.002768965,-0.001871289,-0.012877856,-0.002000143,-0.000482719,-0.004630329,-0.003502694,-0.004104330,0.000907351,-0.009009863,0.000778302,-0.001137013,0.001168449,-0.002521408,-0.010847197,-0.000319543,-0.003788683,-0.012341162,-0.000668351,-0.002859443,-0.008190996,-0.000541629,-0.000181698,
0.040136771,0.049574262,0.038121162,0.061499237,0.010466323,0.042822826,0.043535976,0.016666883,0.030259433,0.019410588,0.020755751,0.039496217,0.022470299,0.018246915,0.044960140,0.063403817,0.024810456,0.027485835,0.022711575,0.020962863,0.058403227,0.072482598,0.066557476,0.023189855,0.018432676,0.027836004,0.018157238,0.014790060,0.017527360,0.030285055,0.037437904,-0.974582934,-0.018620497,0.021533828,0.010675878,-0.006647758,-0.022020480,0.018083431,0.000119279,-0.017456237,0.018473614,-0.016661993,0.012499624,-0.010755844,-0.013899465,-0.008183493,-0.001796809,-0.003844078,-0.009210506,-0.005873599,0.007963226,0.009404853,-0.001294349,0.003813633,-0.010905031,0.006830578,-0.005519152,0.000540072,0.012030403,0.010510142,0.011941024,-0.002555419,-0.003495156,0.017160022,-0.005083069,0.010419954,0.001898900,-0.006944481,-0.007572269,-0.004409671,0.006128224,0.017201562,-0.002403283,-0.008903942,0.010797253,-0.001438056,-0.001364125,0.010104098,-0.005296691,-0.005885205,0.010373821,-0.007063901,-0.001487323,-0.004481685,0.005581298,0.005572281,-0.001560221,0.007010118,0.007221343,0.000010708,0.002142870,0.006109837,0.004581282,-0.003290202,0.001048075,0.000451788,0.003526631,-0.001405559,0.001597521,0.007602368,-0.003972614,0.003326314,0.010691514,0.002661894,0.001307100,0.002160502,-0.000144455,0.001350596,0.009200910,-0.004143246,-0.000736206,0.003868300,0.000701429,0.001934836,0.000092795,-0.005251332,0.000371447,-0.001448773,0.000620727,-0.000343766,0.002302175,-0.008844593,0.003386675,0.003900440,-0.002423386,0.003566879,0.002540470,0.001605607,
0.008938112,0.036188406,0.023940879,0.011596678,0.014619789,0.024416199,0.022947946,0.052989733,0.052713806,0.042669666,0.022369909,0.054725856,0.021866393,0.025109037,0.042518611,0.058494171,0.050061283,0.049525542,0.015689257,0.067392309,0.035110882,0.008235204,0.022764666,0.070318744,0.008668228,0.042190319,0.022067799,0.071668168,0.022426303,0.032708102,-0.973072852,-0.003276586,0.021734942,-0.008755433,0.022341470,-0.013785976,-0.000961713,0.014335625,-0.011489655,-0.019154276,0.014585026,0.015310399,0.011590775,0.000088679,-0.006841764,-0.008947849,-0.008957628,0.019968123,0.004934757,-0.009126111,-0.007146913,-0.009612681,0.013979398,0.004979713,-0.003531824,-0.005295347,-0.005701029,0.012029272,0.008565719,-0.013697024,0.006779835,0.004544658,-0.001166515,0.018063594,0.013014216,-0.011116830,-0.010997677,-0.003924306,-0.001744047,0.012079572,-0.005727333,-0.010814985,0.002989725,0.005110455,0.009937245,0.010745383,0.003860721,-0.004318433,0.003352536,0.010426853,-0.007945205,-0.002679850,-0.004432411,0.004124923,0.004034866,0.009565771,0.008046796,-0.000625383,0.004027531,-0.003399220,0.000907524,-0.000738979,-0.000518876,0.006355090,0.006805080,0.007158710,0.004983495,0.009920053,0.007515053,0.009032354,0.002114455,-0.006832922,-0.003233787,0.002535302,0.003769288,0.001102084,-0.004703473,0.006175501,0.010243602,0.009708132,-0.003187315,0.007197326,0.001921567,0.002929044,-0.003058528,0.003838199,-0.000018640,0.003647625,0.001061894,-0.000282309,0.002651892,0.006859166,0.000636494,0.007146277,-0.001196826,-0.001003960,0.000818559,-0.001895612,
0.024729996,0.017681798,0.058618353,0.035180017,0.021937028,0.027888952,0.052841833,0.052781116,0.020238647,0.055503248,0.038112971,0.038232718,0.024323532,0.035544317,0.058183217,0.009908373,0.055186172,0.035873199,0.041928004,0.032471377,0.061030156,0.034019653,0.010058478,0.045758217,0.023006317,0.048998128,0.045766650,0.015017010,0.036438202,-0.973697009,0.007318912,0.005567866,-0.015335050,-0.000733859,0.015440613,-0.000141991,0.027464113,0.014386593,-0.009629798,-0.015279025,-0.013687329,0.016333226,0.013007367,0.012020119,0.012219447,-0.011166072,-0.001967095,-0.002162191,0.007530705,-0.004801100,0.005647402,0.008457924,0.002936289,0.006218374,-0.000616428,-0.002295984,0.001554283,0.002519105,-0.009385719,0.011510425,0.014657392,0.002007773,0.008708528,0.010338150,0.000776620,0.009484021,0.003217574,0.010328459,-0.005264478,0.008943504,-0.009814348,-0.002857458,0.020635761,0.012604955,0.007116612,-0.006662134,0.001058443,-0.000054519,0.006493780,0.002431377,0.000412559,0.005316155,-0.003468884,0.005844791,-0.004021953,0.008799757,-0.003190625,0.002765080,0.001534354,-0.002930984,0.001206630,0.003433090,0.005631298,0.003906985,0.014741896,0.008255678,-0.001969644,0.006681978,0.011978731,0.006054066,0.004275816,-0.005129162,-0.001250065,-0.000110455,0.000458282,-0.000151028,0.000374128,0.008748282,0.010083981,0.011616359,0.013115516,0.009873923,0.001946476,0.001660140,0.012332733,-0.005045006,0.000146912,-0.000713848,-0.001303461,0.000580298,0.000826578,0.015247971,0.003084210,0.008099242,0.002100107,-0.001177295,0.002806046,0.010715877,
0.016450801,0.049006547,0.026495026,0.010992904,0.030276121,0.007607976,0.018973374,0.038252905,0.018964160,0.059500376,0.026994381,0.017558227,0.036624013,0.061617568,0.029546436,0.064457075,0.031925283,0.036716145,0.019938916,0.044442330,0.056994387,0.007112306,0.029133685,0.023738438,0.009419290,0.021453566,0.052966378,0.042354620,-0.978441569,-0.005229480,0.010868492,0.013445096,-0.012827383,-0.006736753,-0.006311960,-0.008891771,-0.011918747,-0.012679930,-0.009447152,-0.004481047,0.016340015,-0.025582957,-0.006670545,-0.000862218,-0.023534784,0.003166011,0.000813248,-0.018187515,-0.003985750,-0.010992163,0.008364617,-0.015479499,-0.000876851,0.003018519,-0.009896266,-0.003128220,0.006128445,-0.002296595,-0.008431559,0.009052177,0.010934500,-0.000215117,-0.005757010,-0.014515701,-0.012053624,0.001166612,-0.003730433,0.000870784,0.004352821,0.001030960,-0.008082981,-0.004480019,-0.014993603,-0.006170346,-0.011055598,-0.016085625,-0.001788193,-0.004660786,-0.006071627,-0.007414922,0.007362012,0.002871022,-0.000311319,0.004040684,-0.009759852,-0.008764435,0.003915638,-0.003892744,0.003620466,0.003169587,-0.005798400,-0.005470006,0.003044852,0.003619322,-0.009197166,-0.001468885,-0.004682294,-0.002911526,-0.014911772,0.005262265,-0.011572136,0.001167389,-0.007709363,-0.002372719,-0.004055211,-0.002662073,-0.006104767,-0.001116814,0.002000915,-0.008185691,-0.003591752,-0.006857592,-0.001369016,-0.000288884,-0.002219262,0.001299495,-0.001732098,-0.002196110,-0.004664751,-0.011369407,-0.001718214,0.000578151,-0.006118793,-0.008001707,-0.003656508,0.000350988,-0.002343183,-0.011615378,
0.016543289,0.052480340,0.038511869,0.049967089,0.019990266,0.011152406,0.031095745,0.020102508,0.059068474,0.026425490,0.018038226,0.056041186,0.048924375,0.032956690,0.009039323,0.021374588,0.054425873,0.043027588,0.012879961,0.046054876,0.043045482,0.015062992,0.012100772,0.049324543,0.043442396,0.050816226,0.017748674,-0.977601142,-0.014143589,0.019290152,-0.036384658,0.015068655,0.013273738,0.018984591,0.015446071,0.008037578,0.011756460,-0.000140825,-0.001840539,-0.000142069,-0.012559642,-0.012584259,-0.014902970,-0.002790993,-0.008304825,0.010802240,-0.018520617,0.018000024,0.003851155,-0.010870099,0.002994016,-0.002191175,-0.005317891,-0.005465908,0.008649742,-0.012709793,0.004089899,0.006264859,-0.012157841,-0.004589104,0.000352528,0.004970403,-0.005338345,0.009648333,0.013740911,0.002170791,-0.003180406,0.004754992,0.003231559,0.007035363,0.007532739,-0.001747380,-0.013381896,0.003476376,-0.001968537,-0.010327692,-0.001864747,0.006933175,-0.004922777,-0.002810033,0.005485985,-0.005761552,-0.001713756,0.000734171,-0.000467875,0.004149831,-0.004650243,0.003982633,-0.007747964,-0.000497851,0.001654362,0.003287536,-0.001083173,-0.002248951,0.011094266,-0.006106937,-0.002525452,0.006460131,-0.004433028,0.007094255,0.005979978,0.008450887,0.005177415,0.002906790,-0.000588235,-0.002132811,-0.005945461,0.006929174,0.007851522,0.008370758,0.005219338,-0.004522475,-0.001415105,-0.000052214,-0.007945969,0.002394285,-0.000066531,0.001476060,0.002090971,-0.004881468,0.002249028,0.009001081,0.002549761,-0.004617797,0.003802847,-0.001061496,0.000508698,0.002992299,
0.050004859,0.016774221,0.042649251,0.074617412,0.023303563,0.019947726,0.080892874,0.063125861,0.067275652,0.036362249,0.039406506,0.016160292,0.032473263,0.015117074,0.018189027,0.056524970,0.059398435,0.012162829,0.043087772,0.017185045,0.047844568,0.052215927,0.073504954,0.032690215,0.047539911,0.025136118,-0.967806026,0.019661329,-0.020615735,-0.005209870,0.013407379,0.026538599,-0.003696216,0.021201987,0.020597548,0.004605597,-0.018911009,-0.006740545,-0.008050417,-0.019854479,-0.015667021,-0.022836231,0.011829681,0.000035883,0.014646870,0.013640127,0.009493386,0.007233065,-0.011383459,0.018435199,0.005460147,-0.011189919,0.002026689,-0.002828491,0.014806498,0.012942999,0.000189391,-0.002621125,-0.005322935,0.019204403,-0.005193171,-0.000065047,-0.005337845,0.012162216,-0.004903795,0.007272733,-0.007724643,0.000278857,0.006856735,0.017418273,0.005934701,0.019070748,-0.000140957,0.003239860,-0.009601976,0.010003511,-0.001670922,0.005011378,-0.003933707,0.000833445,-0.005956100,-0.005738672,0.003227910,0.000885242,-0.005572442,0.011526957,0.004541384,0.008636286,-0.001662283,0.006142673,0.006883279,0.006009849,-0.002150970,-0.001585322,0.001356109,0.010532013,0.003550283,0.008271919,-0.000187667,-0.002008950,0.000072739,0.012896093,0.003501139,0.000555584,-0.001053795,0.002160724,0.000242040,0.007569537,-0.003627690,0.002021305,-0.000222792,0.014441896,0.003831409,-0.001701881,-0.003749061,0.001175417,0.001531107,0.003924328,-0.001706953,0.005468349,0.000768482,-0.005368906,0.006177413,0.003558478,0.004496175,0.001292383,-0.001019564,0.002389652,
0.056183783,0.076434537,0.021315422,0.024706921,0.021141270,0.023257887,0.045473433,0.067566180,0.053118260,0.047668195,0.073179234,0.051584383,0.033546252,0.053591597,0.028750373,0.015229032,0.010384033,0.028928991,0.028667763,0.063484771,0.024657801,0.062977944,0.009285536,0.030672744,0.070319122,-0.970333417,0.017703990,-0.013695176,0.009372978,-0.009187366,-0.006115694,0.007324480,0.010807517,0.012775368,0.019820445,-0.003958839,-0.009150714,-0.002730072,0.015657743,0.012916800,-0.002952749,0.016351146,-0.003966749,-0.011141270,-0.006998025,0.002863810,0.012833258,0.009974219,0.012317385,0.006440094,0.009428122,-0.005070700,0.015085227,0.014361728,-0.002487340,-0.004196795,-0.001977317,0.008130614,-0.008221635,-0.010116137,0.008668571,-0.011348130,0.005110859,-0.002004459,-0.000154050,0.003461161,-0.008041257,-0.000055583,-0.000083401,0.017951935,0.004198203,0.015350710,0.016465388,-0.000527356,0.002960015,0.001635340,0.005791590,0.000789691,-0.000638063,0.007204235,0.002620235,0.005827523,-0.000686901,0.000107417,-0.006288438,0.005747351,0.000123154,-0.000076186,-0.005386949,0.001135995,0.002298200,-0.003701600,-0.001779045,0.003369800,0.014475043,0.006152974,0.004067985,0.006327354,0.015379419,0.006241727,0.010313471,0.011686005,-0.003094532,-0.001169297,-0.000421688,0.002891328,0.000513068,0.003401815,0.003869788,0.000663679,0.003956832,0.002133900,0.001270398,0.002835649,-0.000881732,0.002182049,0.001679136,-0.004503281,0.002100806,0.011029408,0.000655450,0.008032525,0.000048147,-0.001442794,-0.001662956,0.001629592,-0.000232244,-0.001245420,
0.035749681,0.040811553,0.076897870,0.024226808,0.058359950,0.022370645,0.034415227,0.011449247,0.052254660,0.015191755,0.043711134,0.074500595,0.063400264,0.010142818,0.063792623,0.011735971,0.010496373,0.013980183,0.044064689,0.030575706,0.058030109,0.033984062,0.049926371,0.061660515,-0.970716324,-0.034020679,-0.010491547,-0.012833692,0.016797910,0.011282737,0.021194619,0.017075166,-0.010804842,-0.002183927,-0.021063722,0.019751386,-0.022550695,0.015336683,-0.021065565,0.017586303,-0.025716478,0.007433894,0.007204803,0.004512777,0.009032299,0.010797526,-0.014073790,0.021403503,-0.006780218,-0.015279498,0.005501239,-0.006565034,-0.013035554,0.013569592,-0.014746974,0.015325289,0.003881142,-0.006548713,-0.006449603,-0.014582723,-0.014204850,0.007010109,-0.001296079,-0.002848399,-0.007132834,0.005794674,0.002224035,0.009622825,0.007173480,-0.003297784,0.000605149,-0.013277470,-0.003062284,-0.005427157,0.010335079,0.005730636,-0.000314916,-0.012025911,0.005925911,0.000010045,0.005188037,0.003505713,-0.004972390,-0.005909553,-0.004245194,-0.007237203,-0.000643200,0.000306089,0.000501995,0.001977888,-0.000466077,0.002020213,-0.002591971,-0.004333541,-0.003150095,-0.010890645,-0.003220451,-0.006658231,0.009135022,0.005323043,-0.002710205,0.004873569,0.008578477,-0.000129524,-0.000793301,0.001797799,-0.003408396,-0.010952247,0.001186036,0.004094835,-0.003436766,-0.004339623,0.001688344,-0.000785313,0.005688229,-0.000129129,-0.001367235,-0.006546263,-0.004682879,-0.006054965,-0.000472709,-0.010104419,0.005585465,0.003498698,0.000940784,-0.002545363,-0.003902250,0.002912227,
0.062658596,0.062542942,0.015030780,0.042932757,0.017949569,0.033619683,0.038579076,0.020558641,0.043246394,0.031126265,0.046282797,0.042068293,0.030152028,0.066786849,0.012031621,0.062248907,0.067410204,0.047141380,0.051136338,0.069789929,0.052234069,0.016250045,0.021417223,-0.971948086,-0.029485966,0.006772844,0.004538808,-0.015316468,0.010682771,-0.012891832,-0.037251470,0.010331357,-0.004319440,0.008795154,-0.009241502,-0.007608937,0.007800925,0.005550463,-0.001541832,-0.000239010,0.015200028,-0.011640799,0.008264949,-0.006209201,0.006479778,-0.000200983,0.007191558,-0.009814625,-0.014500166,0.000322083,-0.014323629,-0.001038783,-0.004271237,-0.004823317,0.002974469,-0.017441607,0.007324661,0.006197245,-0.010359066,0.001776634,0.001756622,-0.007667039,-0.005164120,0.009513545,0.014213615,-0.015130359,0.008441539,0.004611383,-0.001333142,-0.012803464,0.003422203,-0.009453493,-0.005080147,-0.005662634,-0.007621685,0.002905926,-0.000454148,-0.016611682,-0.000904575,-0.005801832,-0.012599830,-0.003747930,0.003009698,0.003700969,0.001212879,-0.012954152,-0.005602989,-0.012322588,-0.007914412,0.004216863,0.002394363,0.002773084,0.001652705,0.003161734,-0.010159750,0.002603856,0.003715394,-0.009604074,-0.003631579,-0.005537847,-0.003741864,-0.004084068,0.003521021,-0.000872139,-0.003385556,-0.003002047,0.000209648,-0.007708556,-0.002518468,-0.012297564,-0.012210134,0.008136155,0.000663510,0.002268465,-0.008673857,-0.004306680,-0.001132133,0.001429707,-0.000132478,-0.008055565,0.000642963,-0.013595716,-0.009260548,0.003174550,-0.001535485,0.000811275,0.000315231,-0.004473521,
0.044508826,0.038769841,0.070762803,0.075326600,0.013046024,0.057066997,0.024870807,0.047594801,0.066673943,0.042134150,0.039118864,0.032734851,0.074113858,0.064089411,0.041886742,0.010395223,0.042010446,0.012840587,0.018656887,0.008888684,0.039721921,0.049907625,-0.970551266,0.014936839,-0.013501024,0.028640046,-0.032467943,0.022217533,-0.002651774,0.028663783,0.009746593,-0.029949277,-0.004129197,0.020655604,0.024910401,-0.005416791,0.009462856,-0.005629115,0.004991695,0.017120480,-0.020988180,0.001664298,0.009284245,0.013447961,0.018091135,0.000851226,-0.013893235,-0.007315925,0.001534657,0.001389824,0.005076926,0.011169726,-0.009041669,-0.012457159,0.012095040,-0.005162619,0.004126627,0.008183939,0.002759424,0.001822917,0.012255465,0.008308492,-0.002526696,-0.007024880,0.014096646,0.003202353,-0.007859183,-0.007032186,0.009512890,-0.008983896,-0.002853782,0.000878931,0.014521157,-0.010354569,0.009193944,-0.005966948,-0.003235007,0.003843495,0.002628312,-0.007649387,0.011738008,-0.003168967,0.001853506,-0.003604730,-0.006851570,-0.003820167,-0.001444107,-0.005114270,0.008100198,-0.002071658,-0.002765446,0.002318137,0.004818518,-0.001561835,0.010618741,0.010687741,-0.003870734,0.007527376,0.006265481,-0.007867900,-0.001222915,-0.006448645,-0.008323055,-0.001112456,0.002183945,-0.002786031,-0.004314265,0.003798812,-0.004268903,0.007199435,0.006344227,0.011510260,0.001150182,0.001734847,0.002461439,-0.005580924,-0.000414940,-0.001190887,0.001687688,0.006597306,0.001590333,-0.010436655,-0.005331133,0.004919141,0.002825916,0.004652691,0.000649157,-0.004424144,
0.069777931,0.057573084,0.071987911,0.032264212,0.035455296,0.068025532,0.008318095,0.071220612,0.008615822,0.060176704,0.013703173,0.042672700,0.070185558,0.065977404,0.052036144,0.039367720,0.021376162,0.017851383,0.058941833,0.040898322,0.007450887,-0.967393783,-0.006382448,0.023887366,0.004710208,-0.026613724,-0.019971184,0.011381153,0.027021443,-0.001174930,0.022177587,-0.040527318,-0.002315828,-0.000682166,-0.020836501,0.004165992,-0.010410492,-0.000965504,-0.023608836,-0.008555684,-0.011224147,-0.031494539,0.013939947,-0.002137176,-0.019703907,-0.001873609,0.009405851,-0.025519414,0.001859618,-0.006645912,-0.004896738,0.009886555,-0.017452717,-0.017323428,0.012632854,-0.009004993,0.005355362,-0.012199901,-0.013821870,-0.001259810,0.002695166,-0.008203984,-0.010775481,-0.012856218,0.007618994,0.005470593,-0.008208021,-0.012539250,-0.001461831,-0.013149340,0.003398914,-0.011356396,-0.015172309,-0.000372742,-0.000472310,0.002507973,-0.007491681,-0.014716049,-0.001759572,-0.007027086,-0.006354145,0.000477343,-0.004792333,-0.000462075,-0.005473120,0.002656699,0.002478702,-0.007936880,-0.001838227,0.003261384,-0.002141828,-0.006089485,0.002547550,0.001243321,-0.001121396,-0.012879598,-0.000272469,-0.011015997,-0.014489808,0.002968339,-0.002712215,-0.009718811,-0.018020979,-0.002618349,-0.003065673,-0.004034374,-0.003146796,-0.006828233,0.002340450,-0.014964157,-0.009271644,-0.006409873,-0.004011557,-0.000902227,-0.014758610,-0.004833077,-0.000827899,0.000353881,0.000462687,0.001197984,-0.003054079,-0.014331903,-0.008262193,0.001632675,-0.002370457,-0.003075002,-0.003135972,0.000921923,
0.048151880,0.074832457,0.057327289,0.071670099,0.069326380,0.073677219,0.016893989,0.031180699,0.058750558,0.038912061,0.074547803,0.055731566,0.036825985,0.059218055,0.025171803,0.067242382,0.037287249,0.056163741,0.069789722,0.008003234,-0.963611953,0.038553771,0.008025819,-0.004320429,-0.021210629,0.019839372,-0.002504963,-0.008668274,-0.023507508,-0.022092990,-0.001467384,-0.018985376,-0.010106802,0.001426849,0.017563199,-0.005709009,0.011968674,-0.010213933,0.021634038,-0.016505170,0.019315627,-0.002584677,0.018040279,0.010322896,0.005281310,-0.004771098,0.013197206,-0.010268370,0.002570686,0.015946421,-0.003372691,-0.009193954,0.013674058,-0.001242701,0.015083296,0.017461567,-0.004285697,-0.014551697,-0.002161916,0.015121482,0.003649751,0.010660778,-0.007746005,-0.001152956,-0.005044871,0.014356880,0.008446720,-0.001620467,-0.001259277,0.012772797,0.005049218,0.004213461,0.004125663,0.006209245,-0.009828131,0.013509855,0.000678524,0.009827123,0.009646251,0.010703582,-0.008368959,0.006697647,0.004095778,0.003875022,-0.002733702,-0.002566671,-0.000361654,-0.004750381,-0.001546421,0.006757749,-0.004608240,0.005199118,-0.005617217,-0.002066806,-0.000966790,0.004390929,0.003369287,-0.001306218,0.011133167,0.005478766,0.009445046,0.001507173,0.006863021,0.002663597,0.003857559,-0.002632566,0.002658885,0.011857305,-0.000547152,-0.002762322,0.004142150,-0.000080839,-0.000685142,0.004015973,0.002417361,-0.006287014,-0.001311083,0.003506141,0.002439058,-0.003771615,0.000299447,0.012932983,0.000738684,-0.001930344,0.003592408,-0.003348858,-0.000132839,-0.001188201,
0.071288263,0.039207893,0.009340715,0.069242699,0.048408071,0.022017381,0.040546498,0.074186550,0.023521187,0.066069888,0.023389998,0.029594714,0.017124548,0.039472698,0.047273537,0.068596476,0.057773450,0.045514643,0.071363575,-0.968399474,0.037254450,0.001886118,0.022794588,-0.024764833,0.001609056,-0.029370373,0.021237161,-0.018360042,-0.011036101,-0.001201371,-0.041553926,0.008488021,-0.003427099,-0.023815201,-0.015774165,0.014163582,0.001671244,0.000643242,-0.001567676,0.009914450,-0.025851547,-0.007447615,0.003759364,0.004932342,-0.013950932,0.003615198,0.001690411,0.001800631,-0.011907652,0.006877723,-0.005015778,0.004730489,0.009428571,-0.005918886,-0.021547226,-0.003631967,0.005161048,-0.009126214,0.000607288,-0.003904596,-0.013253607,-0.018832140,-0.000996360,0.011700238,-0.014814176,0.004208970,0.001532998,-0.008793816,-0.000363097,-0.016340740,-0.009582021,-0.017358712,-0.010575185,0.002691473,-0.010567798,-0.017280727,-0.002579954,-0.003604795,0.003471916,-0.002325882,-0.019646837,-0.004710762,-0.004574475,-0.003255209,-0.010332835,-0.001686948,-0.004453550,-0.016466482,-0.007235631,-0.006959810,-0.004294902,0.000375777,-0.006103876,-0.000461849,-0.017433029,-0.016373278,-0.001677663,-0.011625767,-0.007926654,-0.007867660,-0.013687814,-0.013351621,-0.005252975,0.000840753,-0.004508826,-0.002408518,0.000590508,-0.004408532,0.002865838,-0.008577863,-0.015953651,-0.014081018,-0.001288145,0.001445838,-0.013548582,-0.003055090,-0.002292042,-0.012786836,-0.001385517,-0.005806608,-0.002687818,-0.003233033,-0.011268774,-0.003993272,-0.003320049,-0.000859255,-0.001501898,-0.018030989,
0.023673146,0.042266422,0.013828101,0.045081340,0.068800252,0.053332539,0.078532987,0.059633846,0.084444793,0.043379963,0.057552527,0.016470970,0.055222692,0.080621474,0.032423766,0.026151135,0.032610153,0.074891276,-0.968014934,-0.028880957,-0.022060039,-0.019477608,0.018940713,-0.014227763,-0.015600457,0.002400742,-0.008286415,0.012254399,0.010370348,-0.013807145,0.011306466,0.002327663,-0.021507674,-0.019344025,-0.010388842,-0.002784688,0.013205586,-0.006123868,-0.020444664,0.001770274,0.007175026,-0.020376415,0.013130695,0.007862915,-0.000130384,0.000240524,0.002797906,-0.003346120,-0.002755000,0.013503203,-0.002774157,-0.006749432,0.011196770,-0.007383374,-0.015496462,-0.015971482,-0.001306201,-0.008739415,0.001500522,-0.005645111,-0.007250051,0.004581190,-0.003396922,-0.011124756,0.000433010,0.005580085,0.000695195,-0.010686773,0.000399851,-0.000074072,-0.010975236,-0.024169682,-0.016042218,-0.008017996,-0.001967932,-0.002413596,0.001504233,-0.004094016,-0.008269824,0.001173637,-0.023972861,0.000468725,0.003195778,0.000389975,-0.007073986,0.002480192,-0.001676143,-0.000889958,-0.002043363,-0.003854596,0.002252266,-0.005845465,-0.001034657,0.001239535,-0.015688002,-0.000408646,-0.001144721,-0.003022436,-0.015337200,-0.013411142,-0.012096250,0.003972117,-0.010996378,-0.003420343,0.000945483,0.000115357,-0.001243143,0.004974786,0.005203160,-0.004746681,-0.000226945,0.003383969,-0.002216357,-0.001183104,-0.012692075,-0.014563122,-0.003256397,-0.000278329,0.000657492,0.001516068,0.001256458,-0.007558993,-0.000006291,-0.005841972,-0.000631176,0.000227253,-0.003257593,-0.016974268,
0.046878680,0.091870995,0.072070613,0.088132386,0.012008293,0.049453509,0.057118866,0.019654836,0.063601630,0.076333326,0.094961864,0.026290799,0.017765374,0.080553035,0.058489600,0.069006621,0.063727953,-0.958052946,-0.028443078,-0.004095660,0.001156255,0.020420010,0.034667633,-0.003059682,0.022088400,0.019839518,0.038320112,-0.003913093,-0.001497395,0.006900111,-0.010295087,0.016263674,0.016072039,-0.004045818,0.016388409,-0.004856241,-0.010504650,0.005305298,-0.008093751,-0.009327767,0.018750118,-0.001625006,0.022846543,-0.010301898,0.021121949,0.009076157,-0.006078082,0.026812998,0.000187843,-0.006778769,-0.001313602,0.004213323,0.017570267,0.000901253,0.016775566,-0.000536432,0.002800994,-0.005418750,0.002420394,-0.000659485,0.005454858,-0.012356256,0.004169758,-0.000944193,-0.006834872,0.018335773,0.004889411,0.008325998,0.003111758,0.004794886,0.016891271,0.007477768,0.014580139,0.014876670,0.014361546,0.017236476,0.003635017,-0.005624272,0.008984630,0.020184427,0.011942628,-0.006256838,0.002315156,0.004968824,0.008981737,0.004657173,0.004663402,0.013252516,0.007990025,0.000267517,0.007644260,-0.002793728,0.003812291,0.001192325,0.001059133,0.004475377,-0.001791299,0.000737726,0.008185931,0.012638670,0.009020433,-0.000491571,0.010574428,0.002075353,0.001106263,0.002851224,-0.001775020,0.013086525,0.000730435,0.009823140,0.000884599,0.007268300,0.000904103,-0.000068528,-0.000289437,0.015500325,0.002724151,0.011966275,0.005448183,0.008017269,-0.000173201,-0.000857830,0.003252561,0.008720180,0.000763222,0.007635975,-0.001045127,-0.002397033,
0.042745350,0.138617118,0.048006264,0.088612601,0.074900644,0.067194394,0.045268178,0.044940985,0.071964520,0.076932683,0.087394239,0.046508066,0.068356790,0.058304224,0.027995847,0.052840967,-0.952755999,0.008411411,0.020217768,-0.012997698,0.030509456,0.024603466,0.012854368,-0.019434593,0.031639934,0.045493061,-0.007885061,-0.010424304,0.005004569,-0.010994612,-0.013809141,0.019678441,-0.015255684,0.020178174,0.008948204,-0.005788253,-0.004604284,0.010444939,-0.001248921,0.004237132,0.022996666,0.009892962,-0.008435700,-0.003739485,0.017021722,0.011989788,0.004662941,-0.002521227,0.024425783,0.011085536,0.007383229,0.002681215,-0.003898725,0.013889729,0.008786199,-0.008185690,-0.000635182,0.003346924,0.005476807,0.015656641,-0.005035958,0.016511281,-0.004701047,-0.001070801,0.022310281,0.003912997,-0.006986703,0.012713402,0.013123806,-0.001726069,-0.005454144,0.012187274,0.023328677,0.003372286,0.004190247,-0.000728353,0.004838773,0.011718269,0.000617902,0.007867211,-0.004833239,-0.001567739,-0.002397857,0.002169325,-0.001794040,0.004881297,-0.003437713,0.006284525,0.003264373,-0.001043048,-0.003217215,-0.001930794,0.003554610,0.001160295,-0.001474926,0.002174810,0.006029124,0.009312979,0.003165799,0.006063024,0.011310263,0.010146427,0.006943033,0.003348941,0.003413519,-0.002108879,0.005165814,0.002089595,0.012960477,0.013946066,0.013805273,0.001032903,0.003715089,0.002092610,-0.002532429,0.006489497,-0.000063529,0.009536373,0.002916967,0.000436748,0.001787689,0.010521722,0.009604146,-0.000995282,0.006671694,0.005783704,0.003525116,0.015667754,
0.103799292,0.081903980,0.019871426,0.066678432,0.018513117,0.095630704,0.103337155,0.019677828,0.068327138,0.095265366,0.030731650,0.054322506,0.089647901,0.109775850,0.026147749,-0.949886731,0.023662275,-0.002282916,0.028895088,-0.022395284,-0.005819690,0.008222588,0.045943365,-0.016539276,0.023074461,0.033762949,-0.005944136,0.018558454,-0.031217380,0.029993096,-0.025211961,-0.022407884,-0.012911739,-0.008781672,0.026523081,0.017302121,0.021350273,-0.006158761,0.024585557,0.003772168,0.014313095,-0.003996198,-0.005132911,-0.001781909,0.016702629,0.017160423,0.002520687,-0.004325348,0.011021789,0.017851318,0.008973295,0.000285528,-0.003455009,-0.011068825,-0.003998006,0.000032164,-0.002235051,0.005607629,-0.007798323,0.011063943,0.008328002,0.014648180,0.005855168,-0.001521254,-0.005958647,0.002855294,0.007270603,-0.004074586,0.006049213,0.004159974,-0.004716473,0.006612412,-0.002336651,0.004900341,-0.004476888,0.009658543,0.001228129,0.008382106,0.003149844,-0.001006189,-0.011901116,0.000304150,-0.003329978,0.008063496,0.007906643,0.005111685,0.005335895,0.007731934,-0.004507855,-0.003325041,-0.003799947,0.000767604,0.005306280,-0.000096105,0.003405586,0.013428588,-0.000525485,0.005947567,0.011135972,0.004369076,0.011516058,0.001106226,0.017015734,0.004829436,0.001791708,0.002571578,-0.000069815,0.003106785,0.009163874,0.011517399,-0.002536980,-0.003483740,0.003671558,0.002466174,0.009313791,-0.006256474,-0.000500771,0.010288752,0.004407645,0.007985777,0.001757300,0.008885155,0.008241517,0.004258899,0.003559554,-0.000228351,-0.002112393,0.006058043,
0.042302819,0.064470392,0.090469730,0.096376585,0.024822414,0.028430210,0.044194416,0.012601241,0.083383662,0.094789910,0.039318360,0.043724890,0.088532260,0.047146495,-0.964625909,0.034082117,0.031214194,-0.003704586,0.013252265,-0.006985935,0.024240039,-0.006679162,0.007571495,0.027832173,-0.024979486,0.006161288,0.021245660,0.027131740,0.004867603,-0.021625683,-0.010025385,-0.012759971,-0.015375352,-0.024213557,0.014455919,0.011554631,0.016417087,-0.013703048,-0.010141220,0.000784073,0.001505900,-0.013139198,-0.004846626,0.002816097,-0.003079805,-0.025469614,-0.011535677,0.004895232,0.001985668,-0.019076228,0.006616343,0.003116491,-0.015232900,-0.009426134,0.004868150,-0.010570276,-0.007216094,-0.001391850,0.001888282,-0.013705064,-0.015719307,-0.004409915,0.001019088,-0.010259170,-0.001269069,0.005300229,0.000553973,-0.010816981,-0.001143262,-0.008393958,-0.013932758,-0.014023452,0.002137640,-0.003197133,-0.007270522,-0.001454107,-0.001937293,-0.016484089,0.000331846,-0.009263281,0.004877800,-0.005789568,0.003133088,-0.002294398,-0.001498688,-0.009409606,0.004219282,-0.012723636,-0.000957156,-0.009064067,-0.005691500,0.003038772,0.001887826,-0.003966219,0.002720090,-0.001115229,0.001635741,-0.005871373,0.002171159,-0.008306697,-0.001582619,0.002435447,-0.009162290,0.001506155,-0.001058671,-0.002771168,0.000231484,0.001551060,-0.000626860,0.006883384,0.003222318,0.001534370,-0.000343547,-0.001314891,-0.010381967,-0.004768131,-0.001484450,-0.000916527,0.000416171,0.002495828,-0.000899071,-0.004675444,-0.011351854,-0.001877988,0.001250642,-0.004444389,-0.006013714,-0.015205133,
0.032789598,0.076907952,0.078611523,0.077683972,0.127780896,0.032077863,0.092455906,0.103297230,0.131918139,0.133203853,0.034144189,0.042923779,0.121150285,-0.936014361,0.020711973,-0.031282727,0.024328013,-0.015247278,-0.019055213,0.004820915,-0.002439907,-0.016480204,-0.009068676,-0.030333182,0.033059744,-0.001300061,0.038162929,0.009378489,-0.024112593,0.008643712,0.009942013,0.015763192,-0.020923623,-0.009326510,0.013556401,-0.007213447,-0.004034650,0.013859983,-0.009029466,-0.017912037,0.008877751,-0.007047645,-0.015423457,0.000998618,-0.007490966,0.027179794,0.014008580,-0.007580269,-0.008184186,0.020568902,-0.006643517,0.013089410,-0.000216793,0.004975394,0.001648156,0.012164466,0.006870098,0.002579410,-0.008688417,0.017881983,0.012306504,0.014713356,-0.007916567,-0.003267830,0.008283448,-0.007908723,-0.001599299,-0.002395098,0.007182542,0.020732006,0.009897922,0.004403637,0.008974398,0.003353792,0.006833838,0.002214202,0.005200447,0.010813974,-0.002376014,0.001066683,0.015576039,0.001871360,-0.000831365,-0.000761084,0.005171290,-0.003507379,0.009110106,0.010016202,0.003424545,-0.005115387,0.000520719,-0.004543317,0.004185763,-0.001500106,0.007962862,0.010697668,0.007320254,-0.005521329,0.002148170,-0.001782072,0.011307334,0.005873294,-0.004280522,0.002617691,0.004692041,-0.003199692,-0.004589272,0.006866822,0.003397318,-0.002070427,0.010246521,0.016649165,-0.001257983,0.000169889,0.010776219,0.007260756,0.001626375,0.011178668,-0.000368472,0.010807141,0.000402139,-0.003098659,0.005755748,0.010040341,0.000237648,-0.000137458,0.001349457,0.008339965,
0.101227716,0.064258004,0.016631502,0.087530936,0.079450472,0.075127929,0.072016894,0.128583882,0.126553483,0.110568298,0.068427239,0.015169465,-0.946529799,-0.033106440,-0.037041009,-0.031016347,-0.004849225,0.029500180,-0.003137141,0.026175522,0.011807171,-0.030778778,-0.030760950,0.006837460,-0.031613376,0.009916385,0.008135161,-0.017253099,-0.011714325,0.007722412,0.007315405,0.002118466,0.009705211,0.004843206,-0.005205747,-0.002542005,-0.002739369,-0.020552781,-0.014576740,0.017340857,0.005526976,0.009871694,0.006931544,0.011561969,-0.006422024,0.021583889,0.009971110,0.012408827,-0.015613020,0.006214555,-0.003321747,0.006883696,0.010839218,0.004369838,-0.005885231,-0.018016258,-0.003918646,0.009361196,-0.000750605,0.015185776,0.012848167,0.018206030,0.005193240,-0.002753520,0.007024774,-0.002833904,-0.000785387,0.010657544,-0.001694046,-0.003381168,-0.013781162,-0.016172695,-0.014851396,-0.011974982,0.008372932,0.003278138,-0.003151529,0.006492365,0.007503893,-0.008891109,0.003394924,0.001631430,-0.004718280,-0.002888928,0.005405813,-0.000535693,0.005071449,0.009819341,-0.000020253,0.000997252,0.003865605,-0.003812399,0.000192189,-0.004842332,-0.009710390,0.005156073,-0.004534305,-0.010723858,0.009737618,-0.002302781,0.003480522,-0.005619849,0.007208696,0.000476873,-0.001815056,0.001050697,-0.000056663,0.000636659,0.007158155,0.003575988,0.006186802,-0.008301440,-0.000239861,0.000125099,-0.001991750,0.000350130,-0.001416508,-0.003141917,0.001806828,0.004460479,-0.000433534,-0.001113846,0.005265163,-0.003613077,-0.003132716,-0.001954130,0.001229264,-0.003173103,
0.036371981,0.093169514,0.034331409,0.038702682,0.107240758,0.063067047,0.023790065,0.089185080,0.116482969,0.063502240,0.097489209,-0.959475503,0.056871589,0.032508003,0.008710663,0.000248648,0.019573867,0.024028427,0.036703542,0.015688790,0.001239387,0.001939108,0.012027695,0.001196921,-0.036245422,-0.007479458,0.020120809,-0.022559957,0.012992698,-0.005203413,-0.023449693,-0.012705351,0.013187171,0.003185417,-0.004462347,-0.015288008,0.014166565,-0.011106680,0.009279210,-0.008156341,-0.004576195,0.009533162,-0.018131299,-0.012649791,0.002632861,0.002996485,-0.019460012,-0.011614263,-0.000616432,-0.004406383,-0.014789154,-0.008871204,-0.003597198,-0.013652123,0.012961168,-0.002030424,0.006220904,0.001979846,0.005607515,-0.012321889,-0.013294286,0.007575944,-0.004462389,0.013575245,0.000764331,0.007398214,0.003232998,-0.009447504,0.000969495,-0.007932523,-0.010816900,-0.013198262,-0.001409333,-0.003959116,0.004578550,-0.011960207,-0.005332736,0.004981830,0.006218254,-0.009847555,-0.006357007,-0.006928940,-0.006181986,0.000646249,0.003831943,-0.002348329,-0.000612480,-0.006251079,-0.000552200,-0.004953894,-0.001077662,-0.004274453,-0.009123102,0.003692119,0.003229606,-0.011941361,0.002407693,-0.001897496,-0.000872516,-0.004149959,-0.007216465,-0.010335338,0.001754677,-0.000336063,-0.004991890,0.000881449,-0.008592572,0.004829149,-0.003071344,-0.008556716,-0.002963916,-0.002971224,0.002701316,0.001415113,0.000084520,0.004798660,-0.000696606,-0.003476730,-0.000623597,0.000467330,-0.000084798,-0.000238154,-0.009197216,-0.002712553,-0.002713726,-0.006551330,-0.000644902,-0.001095981,
0.163740070,0.138875528,0.100400246,0.059069181,0.116651671,0.028525107,0.157882051,0.043312027,0.036273252,0.075316029,-0.935400796,-0.036842885,0.004814541,0.049557899,0.016150582,0.043080869,-0.013791400,-0.029536664,-0.007015986,0.025215064,-0.020446113,0.036246546,0.005423332,-0.002803691,-0.003452995,-0.022513856,0.008834430,0.010068256,0.006175110,-0.001332381,0.002425611,0.017288737,-0.007567934,-0.019247948,-0.018640505,0.001373498,0.016035061,0.006922566,0.008470548,0.025997222,-0.000187816,-0.004358584,0.007303243,0.011631757,-0.002986163,0.029105833,0.005669174,-0.012304030,-0.005953196,0.015047128,0.002850480,0.012413616,0.003564254,0.020862474,0.017336163,-0.004136682,-0.000639673,0.003332906,-0.001831438,0.005916444,0.013622693,-0.007403195,-0.005221605,0.002133312,-0.003116760,-0.010229397,-0.000050450,-0.003496452,0.011736908,-0.005544571,-0.011450333,0.003678424,0.007607609,-0.002516023,0.014321387,-0.002157509,0.004787098,-0.003531414,0.002492677,0.003338156,0.003733495,0.004351126,0.004912215,0.006563097,0.003346220,0.010979680,-0.002352227,-0.008463949,0.003606187,-0.005648466,0.000129280,0.002230502,0.005064908,0.003305391,-0.007383035,0.000739082,0.006381499,0.002306385,-0.001596241,0.012286190,-0.000920274,0.009155485,-0.005556468,0.002200201,0.001111490,0.001473639,0.002029590,-0.002268970,-0.003501838,-0.002361913,0.011011771,0.005932915,-0.000025930,0.001064399,0.006753408,-0.003018672,-0.000444314,-0.000272361,0.003898053,0.006926879,0.003001350,0.009055554,0.001732165,0.005304702,0.003261842,0.003340130,-0.002649449,0.007111464,
0.104271218,0.156217573,0.081123273,0.129229841,0.038839618,0.168346245,0.050244019,0.151262637,0.158413380,-0.920303913,0.012513849,0.013426220,-0.007138956,-0.038307848,-0.031827818,-0.018982649,0.006799059,-0.011829852,0.008614572,-0.018831464,0.023474788,-0.012497103,0.013316783,0.009016933,0.022836394,0.004348953,0.020495700,0.013869629,-0.032588000,-0.017369764,-0.010412419,0.020999154,-0.016982044,0.016105892,-0.000742047,0.000222729,0.011941764,0.007140779,0.016982541,0.021332176,-0.008466068,-0.023334997,-0.010719975,0.004497095,0.015248917,0.001334108,0.015351505,-0.000688084,0.014124263,-0.000342995,0.016129340,0.008565902,0.007786251,0.008189922,0.012563897,0.007802427,-0.008623649,0.010344470,0.007760504,-0.002893342,-0.003011732,0.019200046,0.008452268,-0.007828390,-0.001042312,-0.006129223,0.008044287,-0.001590906,0.001157722,0.001501370,0.001518730,0.007286038,-0.004513911,0.011147497,0.009124907,0.005114576,0.005026906,-0.004902604,0.003449255,-0.005099540,-0.001879252,0.000247131,0.003169828,0.006223696,-0.001468138,0.002936835,0.006822199,0.013940847,0.006325576,0.002880045,-0.004674041,0.006256202,-0.001967205,0.002685641,-0.003448070,0.000931715,0.002602593,-0.001839657,0.009910883,0.005134227,-0.000505057,-0.004744223,0.010605584,0.001191069,0.000142750,0.001014982,0.004927421,0.006930447,-0.000099519,-0.000716798,-0.000001477,0.011372138,0.001187276,-0.000642027,-0.003097254,0.009491328,0.001495232,0.003369216,-0.000974106,0.013684577,-0.000521656,0.009947240,0.004122685,0.001307322,-0.001192671,0.003901722,0.003199902,0.006749945,
0.087047644,0.190283270,0.054981808,0.061296548,0.190277341,0.083525620,0.208569335,0.134351867,-0.902761330,-0.042406319,0.080557044,-0.034963569,-0.029611025,-0.047259235,-0.039497654,-0.013226331,0.001626840,-0.011839595,-0.025294248,0.021600104,-0.005107240,0.031073606,-0.029018584,-0.002070835,-0.016118486,-0.005307594,-0.021241450,-0.027868339,0.003869255,0.006869375,-0.031473367,0.000798781,0.002322498,0.018881995,-0.002072143,-0.020287382,0.008440184,-0.024291490,-0.018424368,-0.013885947,0.009284648,-0.037885170,-0.001441613,-0.005631624,0.002354859,0.018192814,-0.012365356,0.011037295,0.009825335,-0.005645077,-0.011872014,-0.012960029,0.012047664,-0.008719099,-0.012167891,-0.023697270,-0.006907786,-0.015348212,0.002298224,-0.003665953,0.000692020,-0.005209996,-0.000653111,-0.007970367,-0.004156060,-0.005723752,-0.003269125,-0.013761269,-0.002318191,-0.007974633,-0.008273798,-0.013827294,-0.007014736,0.001824221,-0.011999548,-0.004642269,0.003514397,-0.005910879,0.002339286,-0.013103525,-0.002009185,0.003049394,-0.003537732,-0.001013455,-0.008585608,0.001072442,-0.006141139,-0.011349131,-0.010809204,-0.002346169,-0.007719942,0.002859603,-0.005931976,-0.005849737,-0.016751564,-0.014884687,0.003768673,-0.002170850,-0.013237652,0.000914587,-0.011920701,-0.006988910,0.001351698,-0.001767419,0.001252728,-0.000716693,-0.002945495,-0.012765800,-0.013317236,-0.014053302,-0.000437259,0.001979247,-0.004740483,-0.001530668,-0.008536411,-0.005970242,-0.000584931,-0.013531005,-0.000524170,-0.005890901,-0.003007850,0.000959755,0.000662964,-0.003324657,-0.005074536,-0.006006806,-0.001253800,-0.019501716,
0.215029588,0.190368798,0.042072105,0.028118178,0.175980319,0.160541674,0.144849541,-0.899636002,0.022882731,-0.030374695,0.079695242,-0.014890082,-0.040983066,-0.030091600,0.032965482,0.053790027,0.038893611,0.047061482,-0.000140189,-0.015138215,0.037170505,-0.018660117,-0.004479739,0.030903751,0.035626574,-0.010709050,-0.008694334,0.015991961,-0.004702898,-0.011199189,-0.017384888,0.028999323,-0.004753916,-0.007129388,-0.009506203,-0.014883086,0.008388398,-0.007543727,0.003043303,0.006076845,-0.007434348,0.014316701,0.000770688,-0.002034452,-0.012131202,-0.003362516,0.006593737,0.014403152,0.005649348,0.011473546,0.011502759,0.001235819,-0.003250118,0.004822395,0.003632499,0.019210042,0.009187315,0.006244242,0.005898546,-0.002840050,-0.001969474,-0.001354817,-0.007132405,0.004474918,-0.001866644,-0.006407497,0.006236672,-0.007418505,0.003063110,0.003665261,0.006953066,0.003825504,-0.006826483,0.014379491,0.010502144,-0.007992251,-0.003236529,0.009332934,0.001851972,-0.001524391,-0.004837552,0.004103862,0.003408420,-0.003150178,0.003954254,0.008099526,0.002908436,0.004465730,0.007090947,-0.005663355,0.006256527,-0.000701312,0.006657733,0.002121812,0.000357704,-0.000335565,0.000749966,0.000776040,-0.000074832,-0.003107454,-0.000934959,-0.001305943,-0.003771680,-0.002116260,0.005878456,-0.000316666,0.002187777,0.002820999,-0.000411399,0.007372559,0.008901716,0.006851306,-0.001261312,0.000102753,0.002046636,-0.003213918,0.000408926,0.000023228,0.000965160,0.001461099,0.001002165,0.003010214,0.002921482,-0.000331995,-0.000072526,0.004244069,0.003255943,-0.005116067,
0.244908020,0.112897284,0.168554188,0.083845792,0.226605494,0.149373141,-0.886588858,0.017551727,-0.084524010,0.052499726,-0.033763008,0.031116181,0.002529386,-0.011384754,0.007665839,-0.028408877,0.032527928,0.002483709,-0.040102799,0.004519765,0.045472582,0.050212930,0.026153485,0.001003416,0.015760717,0.000875913,-0.032208108,0.002408665,0.006615105,-0.008614086,0.002554027,0.003203707,0.014441914,-0.002334959,0.019972184,0.018838153,0.006881519,-0.013574044,-0.014205207,-0.000218088,0.019576867,0.014968460,0.011119811,-0.010646716,-0.005513717,0.005509168,0.000291297,0.017645927,0.027024000,0.005872450,0.006281290,-0.010364749,-0.008076491,0.018932962,0.011206928,0.005074184,-0.007150250,0.019821112,-0.000074339,0.020803331,0.003242952,0.007550149,-0.008004279,0.015502498,0.019101641,-0.009675734,0.006245785,0.007320590,-0.002253002,0.007715534,0.003177266,0.017692474,0.005738465,0.017556765,0.019193616,-0.002784058,-0.000298812,0.015228265,-0.001180197,0.008079046,0.007816844,-0.001817998,-0.002563252,0.002894900,-0.002128084,-0.000947196,0.004707131,0.014847302,0.005850112,0.005526330,0.002942397,-0.003261185,-0.003033177,0.001206458,0.002785789,0.014370260,0.006748456,0.012229971,0.005667514,0.000763908,0.006317276,0.007465627,0.001197631,0.002623272,0.006245986,0.002362561,0.005059090,0.011844846,0.006964858,0.001141575,0.003608255,0.012975984,0.004124396,0.001224232,0.004704597,0.010328908,0.001448169,0.003984806,0.002546738,0.015122329,0.000125348,0.008617573,0.003522511,0.000162755,0.002245662,-0.001015103,0.003177910,0.014058140,
0.235531208,0.121950034,0.099374704,0.219388468,0.180685714,-0.900500268,0.008967292,-0.018751875,0.025897851,-0.067718218,0.077983844,-0.000074379,-0.001065954,0.039557448,0.026743481,-0.028364281,0.011180223,0.019019846,-0.008789630,0.021462162,-0.007695725,-0.020757891,-0.004533465,0.010484091,0.022388233,0.022454017,0.024430102,0.026609183,0.014492252,0.009470865,0.000832208,-0.001991310,0.014066532,0.011041445,-0.012545049,0.009656705,0.035476483,0.010447923,-0.014764806,0.010535325,-0.003581527,0.018524814,0.007108337,-0.000364265,-0.005681733,0.023138960,-0.005884333,0.012120862,-0.004639651,0.000086977,-0.007163059,-0.009065499,-0.003834223,0.010234770,0.012697901,0.011502680,0.006660640,0.024405373,0.016769148,0.016023098,0.011346096,-0.002882670,0.000423493,-0.004694736,0.004800652,0.002029110,-0.004346424,-0.003441522,0.003982245,-0.000007627,0.006920973,0.008779946,0.020785472,0.018262278,0.012870719,0.013129686,0.003403316,-0.002244427,0.006385079,0.004735093,0.010013998,-0.005651520,0.003738282,0.010059308,0.005693090,-0.000655434,0.008158999,0.000689340,-0.002405614,0.002657568,0.006572823,0.002634447,0.000202623,0.006416017,0.011604481,-0.003054570,-0.001275570,0.005927780,0.014343500,0.002060936,0.005470194,0.004613580,0.011226502,0.003835265,0.003017800,0.001061521,0.004794366,0.000675970,0.007107151,0.017090324,0.003906674,0.015141351,0.005409466,-0.000997088,0.012223657,0.007599363,0.001562032,0.012833901,0.006853796,0.006252728,0.001279521,-0.003448756,-0.000104700,0.005885939,0.005495098,0.005571372,0.002330674,0.003484402,
0.051057021,0.099973800,0.389492588,0.428051409,-0.772825803,0.016984589,-0.038752244,-0.082267765,-0.108112217,0.055282021,-0.009387098,-0.065321172,-0.029288099,-0.050175928,0.053123817,0.022025266,0.004713012,0.069586928,-0.038207282,-0.004243055,0.000202977,0.011998085,0.045250346,0.010199426,-0.006760970,0.000705361,0.027242748,0.018797871,-0.003454991,0.023516935,0.004237157,0.043154292,0.001888266,0.007012903,0.016387209,-0.016570557,0.011227649,0.021722334,0.006383503,0.029622926,0.003335500,-0.012068083,0.018778064,0.014940794,0.009669363,0.016562371,0.012535765,-0.007141554,0.001612371,0.001465969,-0.004141002,0.008231312,-0.008280571,0.006667022,-0.002705557,0.018043206,0.011015624,-0.011276749,0.010705381,0.000352758,-0.006088296,-0.002738027,-0.001779082,-0.010842210,0.017681536,0.021797636,0.001375459,-0.005884583,0.000513477,0.015095430,-0.005021147,0.001540326,0.017252863,0.003893499,0.008355141,0.001511058,0.007613881,0.011127138,0.010586357,0.001855308,0.004121509,-0.004858259,-0.001773064,0.003588928,0.005414026,-0.000499745,0.004165686,-0.002153198,0.006281229,0.005017240,-0.000366895,0.000353993,0.001802254,0.002987699,0.010231332,-0.001578232,0.003033663,0.007202137,0.005328281,0.003722439,0.010415430,0.015315292,-0.009748532,-0.000874228,0.000483010,0.003304063,0.005420517,-0.009356352,0.013629498,0.007670677,0.015137302,0.013665180,0.003682030,0.002428937,0.012861195,0.012680387,0.003260362,0.008054288,0.000094918,0.000493219,0.002372688,0.012148694,0.012937276,0.002115528,0.000364957,0.002566733,0.001876079,0.003787415,
0.221191834,0.332593931,0.382222623,-0.788806010,-0.203562797,-0.082683968,0.037041885,0.075898656,0.035137225,0.003147149,0.061908998,0.007582809,-0.020389232,-0.010928238,-0.014868176,0.003334327,-0.002912214,0.004140597,-0.019045327,-0.031680689,-0.010353522,0.024648052,-0.008925734,0.000486291,0.020516524,0.034286632,-0.019794831,-0.003863455,0.016137471,0.007130913,0.015770912,-0.007972670,0.003897140,-0.006979782,-0.001056814,0.016205356,-0.005981783,-0.013255082,0.017599829,0.014882719,0.012070824,-0.002039272,-0.006379122,0.002940546,-0.013712523,-0.004360578,-0.001241620,0.019681622,-0.010423958,0.019813603,-0.007928608,0.006527344,0.002915237,0.001811492,0.006656719,0.024426718,0.000631410,0.015405521,-0.002465045,0.018079742,-0.002609183,0.008994309,0.004110349,0.009507640,-0.004099477,-0.004690833,-0.007006523,0.005944888,-0.002913306,0.016891724,-0.003776423,0.008595204,0.000160702,-0.000472140,-0.001636784,0.000885827,-0.002202491,0.002775215,-0.000618666,0.004961857,0.015216535,-0.004368581,0.000788049,-0.003934141,0.007586251,0.004873790,0.002349213,0.011151703,0.008093436,0.003806031,-0.000440320,0.007777904,0.006985102,0.001719173,-0.000806422,0.006480930,0.004510864,0.002962164,0.004088263,-0.003177592,0.001892363,-0.005636515,0.010501246,-0.002764778,0.005252202,0.000132861,-0.000578513,0.003869435,0.005883949,-0.004926798,0.012033246,0.003116807,0.001463842,0.003908050,-0.000407335,-0.006349196,-0.001404097,-0.004145294,0.001196903,0.009369061,0.000602025,0.014677386,0.000782463,-0.001403473,0.003516115,-0.002242411,0.002451470,-0.000149515,
0.400515502,0.392088576,-0.749064517,-0.000728057,-0.302619428,0.006510051,-0.054424896,0.078562593,0.010696478,0.047026883,0.009842853,0.007726581,0.049281302,-0.042797172,-0.020269423,0.057835095,0.024322520,0.002086926,0.000179474,0.029570777,-0.002746147,-0.003260471,-0.014133903,0.043280331,-0.043591089,0.038530358,-0.004675133,-0.000012750,0.008155340,-0.025136107,0.011291692,0.008430197,0.009195295,-0.029466230,0.027681261,-0.003009319,0.020316905,-0.009625642,0.015797948,0.008252542,0.025231196,-0.001937673,0.000862876,-0.000176283,0.008597096,-0.002281325,0.011103858,-0.012919086,0.008455875,0.006141175,0.005597020,0.004208412,0.005037046,-0.004445489,0.003351484,0.004079125,-0.007235230,0.005746323,-0.003905825,0.001774688,0.005159592,0.012960491,0.004837878,-0.002741157,0.003118688,-0.008913729,0.003177675,-0.006301980,0.005534598,0.000158482,-0.006008919,0.009175007,-0.001908304,-0.011658790,0.002939186,-0.005646069,0.006770731,-0.000894112,0.000046672,-0.001427464,0.009012430,-0.001181550,-0.001573843,0.002213788,-0.003468018,-0.006199110,0.001233316,-0.000094293,0.005277720,-0.000512983,0.001587880,0.005791504,0.005065026,-0.000477418,0.006949031,-0.005076720,0.002460819,-0.005951231,-0.008035151,0.004646715,-0.004450255,0.010596772,0.005491253,-0.000319912,-0.000578765,0.000980272,0.000553550,0.001547368,-0.002164866,0.008423276,0.005062949,0.003690463,0.003295820,0.001840680,0.005518658,0.005372541,-0.001144910,0.006803073,0.001429232,-0.001229066,0.001649357,-0.005681516,-0.004906481,-0.002179332,0.004592411,-0.005244299,0.003820043,-0.005424911,
0.703322718,-0.676302795,0.041612085,-0.053974665,-0.052512976,0.072436980,0.105479952,0.043005055,-0.038925511,-0.022138319,0.040364907,-0.036219190,0.036385270,-0.026017590,-0.015260969,0.026579712,-0.064124107,-0.026446067,-0.009421369,0.022227615,-0.018067735,0.015468334,0.005323209,0.001158632,-0.000850988,-0.006302109,0.029094668,-0.027444072,-0.020454183,0.007755791,-0.020241089,-0.001757472,-0.008952766,-0.007890361,-0.002441605,-0.022403990,-0.007780482,0.003709999,-0.010250971,0.002830038,-0.001366749,-0.016515859,0.017827715,0.002030134,-0.012969418,0.003166459,-0.021062324,-0.002184715,0.001509368,-0.004277293,-0.006877669,-0.000075262,-0.008680301,0.006567995,-0.015930168,-0.005792016,0.005584183,-0.011837704,-0.006670824,0.007812906,0.017719458,0.019120814,0.005932217,-0.013086277,0.000033316,0.002094687,-0.010781599,0.001631532,-0.003688580,0.020848103,-0.000058440,0.007078486,-0.007217470,0.003831675,-0.001785854,-0.002150954,-0.002009104,0.004817615,-0.007856869,-0.001086871,-0.013269707,-0.000518346,0.000562268,-0.008121886,0.004996248,-0.002060001,0.003765214,-0.011619161,0.003067131,0.003041452,0.004452038,-0.003075095,-0.000087616,-0.003055809,-0.009701757,0.001211886,0.000119066,0.000007470,0.012946309,0.009920822,-0.001337644,-0.012075001,-0.010397528,-0.000693580,-0.002690904,0.002557716,-0.005727080,0.008349209,0.000973215,0.005381268,-0.002471031,0.002114666,0.001203808,-0.001992850,-0.003590371,-0.004140944,0.000692747,-0.010199902,0.002350865,-0.002133591,0.000629377,0.001204999,-0.003085440,-0.003302477,-0.000551807,-0.001437072,0.001744354,-0.002134660
};
double tmp[MAXL][MAXL];
double pos_x[MAXN] = { 155.839996338,-271.271636963,100.832305908,239.857788086,-85.923889160,93.496643066,-221.017456055,192.596557617,-130.348663330, -6.072753906 };
double pos_y[MAXN] = { -224.812438965,60.006896973,-234.456390381,-290.246551514,297.212890625,68.183715820,275.597137451,183.148223877,-134.9456787111, 0.887298584 };///电荷位置
int q[MAXN] = { -20,-11,19,12,2,-2,-19,12,13,-18 };
//生成标准高斯分布的随机数
double gaussrand() {
static double U, V;
static int phase = 0;
double Z;
const double PI = 3.1415926535;
if (phase == 0) {
U = rand() / (RAND_MAX + 1.0);
V = rand() / (RAND_MAX + 1.0);
Z = sqrt(-2.0 * log(U)) * sin(2.0 * PI * V);
}
else {
Z = sqrt(-2.0 * log(U)) * cos(2.0 * PI * V);
}
phase = 1 - phase;
return Z;
}
//密钥生成,生成随机线性投影用的加密矩阵
void generate_Matrix(double Matrix[][128]) {
int i, j, k, row, col;
double sum, co, abs;
for (i = 0; i < MAXL; i++) {
for (j = 0; j < MAXL - i; j++) {
Matrix[i][j] = MIN + ((MAX - MIN + 1) * rand()) / (double)(RAND_MAX + 1);
}
for (j = 0; j < i; j++) {
for (k = 0; k < i; k++) {
tmp[j][k] = Matrix[j][k + MAXL - i];
}
sum = 0;
for (k = 0; k < MAXL - i; k++) {
sum += Matrix[i][k] * Matrix[j][k];
}
tmp[j][i] = -sum;
}
for (row = 0; row < i; row++) {
for (j = row + 1; j < i; j++) {
co = -tmp[j][row] / tmp[row][row];
for (col = row; col < i + 1; col++) {
tmp[j][col] += co * tmp[row][col];
}
}
}
for (row = i - 1; row >= 1; row--) {
for (j = row - 1; j >= 0; j--) {
co = -tmp[j][row] / tmp[row][row];
for (col = j; col < i + 1; col++) {
tmp[j][col] += co * tmp[row][col];
}
}
}
for (j = MAXL - i; j < MAXL; j++) {
Matrix[i][j] = tmp[j - MAXL + i][i] / tmp[j - MAXL + i][j - MAXL + i];
}
}
for (i = 0; i < MAXL; i++) {
abs = 0.0;
for (j = 0; j < MAXL; j++) {
abs = abs + Matrix[i][j] * Matrix[i][j];
}
abs = sqrt(abs);
for (j = 0; j < MAXL; j++) {
Matrix[i][j] /= abs;
}
}
}
//密钥生成,生成表面褶皱变换用的电荷分布
void generate_charge(int n, double pos_x[], double pos_y[], int q[]) {/// n 表示生成的个数
K = n;
for (int i = 0; i < n; i++) {
pos_x[i] = a + (b - a + 1) * rand() / (double)(RAND_MAX + 1);
pos_y[i] = a + (b - a + 1) * rand() / (double)(RAND_MAX + 1);
q[i] = MINQ + rand() % (MAXQ - MINQ + 1);
}
}
//随机线性投影
void transformation1(double Matrix[][128], float data[], float trans_data[]) {
float res;
int j;
for (int i = 0; i < MAXL; i++) {
res = 0.0;
for (j = 0; j < MAXL; j++) {
res += Matrix[i][j] * data[j];
}
trans_data[i] = res * 320;
}
}
//表面褶皱变换
void transformation2(double pos_x[], double pos_y[], int q[], float data[]) {
int j;
double trans_x, trans_y, abs_F, delta_x, delta_y, random;
for (int i = 0; i < 64; i++) {
trans_x = 0.0, trans_y = 0.0;
for (j = 0; j < K; j++) {
delta_x = (pos_x[j] - data[i * 2 - 2]);
delta_y = (pos_y[j] - data[i * 2 - 1]);
abs_F = q[j] / (delta_x * delta_x + delta_y * delta_y);
if (q[j] < 0) {
trans_x += delta_x / sqrt(delta_x * delta_x + delta_y * delta_y) * abs_F;
trans_y += delta_y / sqrt(delta_x * delta_x + delta_y * delta_y) * abs_F;
}
else {
trans_x -= delta_x / sqrt(delta_x * delta_x + delta_y * delta_y) * abs_F;
trans_y -= delta_x / sqrt(delta_x * delta_x + delta_y * delta_y) * abs_F;
}
}
random = gaussrand();
while (fabs(random) > 1.5) { random = gaussrand(); }
data[i * 2 - 2] = data[i * 2 - 2] + trans_x + random;
while (fabs(random) > 1.5) { random = gaussrand(); }
data[i * 2 - 1] = data[i * 2 - 1] + trans_y + random;
}
}
//特征向量经过两次变换之后,其各分量范围都在-320到320
|
c6d563822911be5971a107945d07c968327978c3 | da19b619f3eddf61f4b46bfb310959e26a3b27bb | /src/compiler/osr.cc | 3360a1a321f81f86259e56523dffea76e161b58f | [
"BSD-3-Clause",
"bzip2-1.0.6"
] | permissive | brandonobermeyer/taint-chromium-v8 | 40c497ddf4806f28a320e9c14ac15221db6c31d3 | 3da5a729e83a8bf1e6ef308f1e24f43931fa1772 | refs/heads/master | 2022-11-04T19:59:22.294635 | 2015-01-13T20:27:55 | 2015-01-13T20:28:13 | 30,933,984 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,906 | cc | osr.cc | // Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/compiler.h"
#include "src/compiler/common-operator.h"
#include "src/compiler/control-reducer.h"
#include "src/compiler/frame.h"
#include "src/compiler/graph.h"
#include "src/compiler/js-graph.h"
#include "src/compiler/node.h"
#include "src/compiler/node-marker.h"
#include "src/compiler/osr.h"
#include "src/scopes.h"
namespace v8 {
namespace internal {
namespace compiler {
OsrHelper::OsrHelper(CompilationInfo* info)
: parameter_count_(info->scope()->num_parameters()),
stack_slot_count_(info->scope()->num_stack_slots()) {}
void OsrHelper::Deconstruct(JSGraph* jsgraph, CommonOperatorBuilder* common,
Zone* tmp_zone) {
NodeDeque queue(tmp_zone);
Graph* graph = jsgraph->graph();
NodeMarker<bool> marker(graph, 2);
queue.push_back(graph->end());
marker.Set(graph->end(), true);
while (!queue.empty()) {
Node* node = queue.front();
queue.pop_front();
// Rewrite OSR-related nodes.
switch (node->opcode()) {
case IrOpcode::kOsrNormalEntry:
node->ReplaceUses(graph->NewNode(common->Dead()));
break;
case IrOpcode::kOsrLoopEntry:
node->ReplaceUses(graph->start());
break;
default:
break;
}
for (Node* const input : node->inputs()) {
if (!marker.Get(input)) {
marker.Set(input, true);
queue.push_back(input);
}
}
}
ControlReducer::ReduceGraph(tmp_zone, jsgraph, common);
}
void OsrHelper::SetupFrame(Frame* frame) {
// The optimized frame will subsume the unoptimized frame. Do so by reserving
// the first spill slots.
frame->ReserveSpillSlots(UnoptimizedFrameSlots());
}
} // namespace compiler
} // namespace internal
} // namespace v8
|
88687d49b2562509b7734c6d4f0144fac6d6df0c | e1ea290c9d0e7280648f72a585a18cddecba0316 | /DesignPatterns/Whip.h | 1af75f5a2955de62c584a6fa6e402c986d3cf0e8 | [
"MIT"
] | permissive | ITnull/DesignPatterns | 3ffc8e1c474333ac1c000f59f4b640d39531c626 | 2753f1a62b0fd2f94d460819f63075916c24ecbc | refs/heads/master | 2020-11-24T18:22:51.739162 | 2020-04-22T15:12:06 | 2020-04-22T15:12:06 | 228,289,524 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | h | Whip.h | #pragma once
#include "CondimentDecorator.h"
class Whip :
public CondimentDecorator
{
public:
Whip();
~Whip();
virtual double cost();
virtual string getDescription();
};
|
b4274df5da190fdc625bf4e0f0789b391dc25049 | 3b1d08997d0dc9c444f2bdaaab55a8606c60d332 | /IOCMain/Download/ZModemRecv.cpp | 718418dd340098baa4536e00983f9a826407f9ba | [] | no_license | zjsaisi/sm2000 | 8303ece373516c871694d382bb3daef9f5129d1a | 0fa74cdb7566621162e1845dd4558723182a49ac | refs/heads/master | 2020-04-16T09:22:12.797424 | 2019-01-23T10:31:07 | 2019-01-23T10:31:07 | 165,461,667 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 18,279 | cpp | ZModemRecv.cpp | // ZModemRecv.cpp: implementation of the CZModemRecv class.
//
//////////////////////////////////////////////////////////////////////
// MFC specific
#include "stdafx.h"
#include "ZModemRecv.h"
#include "comm.h"
#include "Storage.h"
#include "CRC16.h"
#include "CRC32.h"
#include <stdio.h>
#include <string.h>
#include "PV.h"
// #include <assert.h>
#ifdef WIN32
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
#endif
#ifndef WIN32
#define TRACE //
#define assert //
#endif
#define CHAR_XON 0x11
#define CHAR_XOFF 0x13
#define CHAR_CR 0xd
#define CHAR_LF 0xa
#define CHAR_SOH 1
#define CHAR_STX 2
#define CHAR_ETX 3
#define CHAR_DLE 0x10
#define CHAR_CAN 0x18
#define CHAR_PAD 0x2a
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
const char zmodem_test_data[20] = {
0, 0x18, 0x18, '*', '*', 0x18, 1, 0, 0 , 0 ,
0x18, 0x18, 1, 2, 3, 4, 5, 6, 7, 8
};
void CZModemRecv::Dummy(void)
{
m_inputHead = 0;
for (int i = 0; i < zmodem_test_data[0]; i++) {
m_inputHead++;
}
}
CZModemRecv::CZModemRecv()
{
Dummy();
m_inputBuffer[0] = 0;
m_inputHead = m_inputTail = 0;
m_pPort = NULL;
m_pStorage = NULL;
m_state = STATE_INIT;
m_currentRecvPacketType = PACKET_HEX16;
m_filePosition = 0;
m_endOfSession = SESSION_START;
m_currentErrorCnt = 0;
m_totalErrorCnt = 0;
m_contentStarted = 0;
m_cancelRequest = 0;
}
CZModemRecv::~CZModemRecv()
{
}
void CZModemRecv::ClearInputBuffer(void)
{
m_inputHead = m_inputTail = 0;
m_inputBuffer[INPUT_BUFFER_SIZE-1] = 0;
}
int CZModemRecv::Start(Ccomm *pPort, CStorage *pStorage)
{
int ret = -1;
int result;
m_pPort = pPort;
m_pStorage = pStorage;
m_totalErrorCnt = 0;
m_currentErrorCnt = 0;
m_contentStarted = 0;
m_cancelRequest = 0;
ClearInputBuffer();
m_endOfSession = SESSION_START;
SendReceiveCapability();
while (1) {
result = WaitPacket(1000);
switch (result) {
case PACKET_BIN16:
m_currentRecvPacketType = PACKET_BIN16;
result = DecodeBin16Packet(5000);
if (result < 0) {
TRACE("Decoding Bin16 packet failed %d\r\n", result);
m_totalErrorCnt++;
m_currentErrorCnt++;
} else {
m_currentErrorCnt = 0;
}
break;
case PACKET_HEX16:
m_currentRecvPacketType = PACKET_HEX16;
result = DecodeHex16Packet(3000);
if (result < 0) {
TRACE("Decoding Hex16 packet failed %d\r\n", result);
m_totalErrorCnt++;
m_currentErrorCnt++;
} else {
m_currentErrorCnt = 0;
}
break;
case PACKET_BIN32:
m_currentRecvPacketType = PACKET_BIN32;
result = DecodeBin32Packet(3000);
if (result < 0) {
TRACE("Decoding Bin32 packet failed %d\r\n", result);
m_totalErrorCnt++;
m_currentErrorCnt++;
} else {
m_currentErrorCnt = 0;
}
break;
}
if (m_endOfSession >= SESSION_COMPLETE) {
TRACE("Sesssion done: Err: %ld %ld\r\n"
,m_totalErrorCnt ,m_currentErrorCnt);
ret = 1;
break;
}
if (m_totalErrorCnt > MAX_TOTAL_ERROR) {
TRACE("Too many error: %ld\r\n", m_totalErrorCnt);
ret = -1;
break;
}
if (m_currentErrorCnt > MAX_CURRENT_ERROR) {
TRACE("Too many bursty error: %ld\r\n", m_currentErrorCnt);
ret = -2;
break;
}
}
// absorb the "OO" and other possible garbage
m_pPort->Receive((char *)m_inputBuffer, 100, 500);
return ret;
}
int CZModemRecv::DecodeBin16Packet(long timeout)
{
return DecodeBinaryPacket(timeout, 16);
}
int CZModemRecv::DecodeBin32Packet(long timeout)
{
return DecodeBinaryPacket(timeout, 32);
}
int CZModemRecv::DecodeBinaryPacket(long timeout, int crcbits)
{
CCRC16 crc16;
CCRC32 crc32;
int cnt = 0;
int escape = 0;
int len;
unsigned char ch;
int max = 7 + ((crcbits == 32) ? (2) : (0));
unsigned char frame[100];
unsigned char type;
unsigned long parameter;
while (1) {
while (GetInputSize() < 1) {
len = ReadLink(timeout, 1);
if (len <= 0) {
TRACE("Recv bin pack timeout, fileposition: %ld\r\n", m_filePosition);
return -1;
}
}
ch = m_inputBuffer[m_inputHead];
if (escape) {
switch (ch) {
case 'l':
ch = 0x7f;
break;
case 'm':
ch = 0xff;
break;
default:
ch ^= 0x40;
break;
}
escape = 0;
} else {
if (ch == CHAR_CAN) {
escape = 1;
m_inputHead = NextIndex(m_inputHead);
continue;
}
}
frame[cnt] = ch;
cnt++;
if (crcbits == 16) {
crc16.UpdateCrc(ch);
} else {
crc32.UpdateCRC32(ch);
}
m_inputHead = NextIndex(m_inputHead);
if (cnt >= max) {
break;
}
}
if (crcbits == 16) {
if (crc16.GetCrc16() != 0) {
TRACE("CRC error in bin16 packet FilePosition:%ld InputBuffSize:%d\r\n"
, m_filePosition, GetInputSize());
return -100;
}
} else {
if (crc32.GetCRC32() != 0) {
TRACE("CRC error in bin32 packet FilePosition:%ld\r\n", m_filePosition);
return -200;
}
}
type = frame[0];
parameter = frame[1] + ((unsigned long)frame[2] << 8) + ((unsigned long)frame[3] << 16)
+ ((unsigned long)frame[4] << 24);
return ProcessPacket(type, parameter, timeout);
}
int CZModemRecv::DecodeHex16Packet(long timeout)
{
int len;
int next;
char buff[10];
int ch;
int cnt = 0;
unsigned char frame[100];
CCRC16 crc;
unsigned char type;
unsigned long parameter;
while (1) {
while (GetInputSize() < 2) {
len = ReadLink(timeout, 2);
if (len <= 0) return -1;
}
buff[0] = m_inputBuffer[m_inputHead];
next = NextIndex(m_inputHead);
buff[1] = m_inputBuffer[next];
m_inputHead = NextIndex(next);
ch = ConvertHex(buff);
if (ch < 0) return -2;
crc.UpdateCrc((uint8)ch);
frame[cnt] = (unsigned char)ch;
cnt++;
if (cnt >= 7) {
unsigned short checksum;
checksum = crc.GetCrc16();
if (checksum != 0) {
return -3;
}
break;
}
}
type = frame[0];
parameter = frame[1] + ((unsigned long)frame[2] << 8) + ((unsigned long)frame[3] << 16)
+ ((unsigned long)frame[4] << 24);
return ProcessPacket(type, parameter, timeout);
}
int CZModemRecv::ProcessPacket(unsigned char type, unsigned long parameter, long timeout)
{
int result;
int len;
TRACE("Processing Packet type: %d InputPipe=%ld\r\n", type, GetInputSize());
switch (type) {
case PACKET_TYPE_ZRQINIT:
SendReceiveCapability();
break;
case PACKET_TYPE_ZFILE:
m_filePosition = 0;
while (1) {
len = 0;
result = ReceiveData(NULL, timeout, &len);
switch (result) {
case 1: // ZCRCE
m_contentStarted = 1;
break;
case 2: // ZCRCG
m_contentStarted = 1;
break;
case 3: // ZCRCQ
m_contentStarted = 1;
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
return 3;
case 4: // ZCRCW
m_contentStarted = 1;
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
break;
case 0:
return 0;
default:
return -1;
}
}
break;
case PACKET_TYPE_ZDATA:
if (m_filePosition != (int32)parameter) {
ClearInputBuffer();
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
return -1;
}
while (1) {
len = 0;
result = ReceiveData(m_pStorage, timeout, &len);
switch (result) {
case 1: // ZCRCE
m_filePosition += len;
m_currentErrorCnt = 0;
//SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
break;
case 2: // ZCRCG
m_filePosition += len;
m_currentErrorCnt = 0;
//SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
break;
case 3: // ZCRCQ
m_filePosition += len;
TRACE("ZCRCQ File position: %ld\r\n", m_filePosition);
SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
m_currentErrorCnt = 0;
break;
case 4: // ZCRCW
m_filePosition += len;
TRACE("ZCRCW File Position: %ld\r\n", m_filePosition);
SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
m_currentErrorCnt = 0;
break;
case 0:
// SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
if (0) {
char buff[100];
sprintf(buff, "result is zero %d\r\n", result);
m_pPort->Send(buff, -1, 0);
}
return 0;
default:
if (0) {
char buff[100];
sprintf(buff, "result is %d\r\n", result);
m_pPort->Send(buff, -1, 0);
}
ClearInputBuffer();
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
return -1;
}
}
break;
case PACKET_TYPE_ZEOF:
TRACE("ZEOF parameter=%ld\r\n", parameter);
if ((int32)parameter != m_filePosition) {
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
return -1;
}
m_endOfSession = SESSION_EOF;
SendReceiveCapability();
break;
case PACKET_TYPE_ZFIN:
if (m_endOfSession != SESSION_EOF) {
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
return -1;
}
SendBPacket(PACKET_TYPE_ZFIN, 0);
m_endOfSession = SESSION_COMPLETE;
TRACE("File length : %ld\r\n", m_filePosition);
break;
default:
TRACE("Do not know packet type %d 0x%08lX\r\n", type, parameter);
return -100;
}
return 1;
}
int CZModemRecv::ReceiveData(CStorage *pStore, long timeout, int *pLength)
{
CCRC16 crc16;
CCRC32 crc32;
register unsigned char ch;
int escape = 0;
char hex[10];
int hexIndex = 0;
int len;
int max = 1524;
int cnt = 0;
int proceed = 1;
int crcStart = 0;
unsigned char dataBuff[1532];
int dataSize = 0;
int linkBufferSize = 64;
int idleCnt = 0;
int reAckCnt = 0;
TRACE("Start to receive data\r\n");
while (1) {
// proceed = 1;
if (m_inputHead == m_inputTail) /*(GetInputSize() < 1) */ {
linkBufferSize = m_pPort->GetRxSize();
if (linkBufferSize < 0) {
linkBufferSize = INPUT_BUFFER_SIZE;
} else if (linkBufferSize == 0) {
linkBufferSize = INPUT_BUFFER_SIZE >> 1; // zmiao: 5/27/2008 weird. It cannot be 1
CPVOperation::Pause(1);
idleCnt += 1000 / TICK_1SEC;
reAckCnt += 1000 / TICK_1SEC;
if (idleCnt > timeout) return -2;
if (reAckCnt > 1500) {
SendBPacket(PACKET_TYPE_ZACK, m_filePosition);
reAckCnt = 0;
}
continue;
} else if (linkBufferSize > INPUT_BUFFER_SIZE) {
linkBufferSize = INPUT_BUFFER_SIZE;
} else if (linkBufferSize > 2) {
linkBufferSize -= 1;
}
len = ReadLink(timeout, /* INPUT_BUFFER_SIZE */ linkBufferSize );
if (len <= 0) {
return -1;
}
continue;
}
idleCnt = 0;
reAckCnt = 0;
ch = m_inputBuffer[m_inputHead];
if ((escape) && ((ch >='A') && (ch <= 'C'))) {
int back;
unsigned char bch;
back = m_inputHead + INPUT_BUFFER_SIZE - 2;
back %= INPUT_BUFFER_SIZE;
bch = m_inputBuffer[back];
if (bch == CHAR_PAD) {
// Frame header found. go back
m_inputHead = back;
TRACE("Packet started unexpectedly File Offset=%ld dataSize=%ld inputHead=%d\r\n"
, m_filePosition ,dataSize, m_inputHead );
return 0;
}
}
m_inputHead = NextIndex(m_inputHead);
switch (m_currentRecvPacketType) {
case PACKET_BIN16:
if (escape) {
escape = 0;
switch(ch) {
case 'l':
ch = 0x7f;
break;
case 'm':
ch = 0xff;
break;
case 'h':
crcStart = 1;
max = 2;
proceed = 0;
cnt = 0;
break;
case 'i':
crcStart = 2;
max = 2;
proceed = 0;
cnt = 0;
break;
case 'j':
crcStart = 3;
max = 2;
proceed = 0;
cnt = 0;
break;
case 'k':
crcStart = 4;
max = 2;
proceed = 0;
cnt = 0;
break;
default:
ch ^= 0x40;
break;
}
crc16.UpdateCrc(ch);
if (proceed) {
cnt++;
dataBuff[dataSize++] = ch;
}
proceed = 1;
} else if (ch == CHAR_CAN) {
escape = 1;
// proceed = 0;
} else {
crc16.UpdateCrc(ch);
cnt++;
dataBuff[dataSize++] = ch;
}
break;
case PACKET_HEX16:
hex[hexIndex++] = ch;
hexIndex %= 2;
break;
case PACKET_BIN32:
break;
}
if (cnt >= max) {
uint32 crcResult;
if (!crcStart) {
// something wrong.
TRACE("CRC lost %d\r\n", m_currentRecvPacketType);
return -100; // Should send nak.
}
dataSize -= max;
if (m_currentRecvPacketType == PACKET_BIN32) {
crcResult = crc32.GetCRC32();
} else {
crcResult = (uint32)crc16.GetCrc16();
}
if (crcResult != 0) {
TRACE("CRC error in data %d\r\n", m_currentRecvPacketType);
}
// Save data if needed
if (dataSize > 0) {
if (pStore) {
TRACE("Saving received data: %ld offset:%ld(%lx)\r\n"
, dataSize, m_filePosition, m_filePosition);
TRACE("Input pipe: %d\r\n", GetInputSize());
pStore->Write((char *)dataBuff, dataSize);
TRACE("\r\n");
}
}
max = 1524;
if (crcStart) {
TRACE("Data receive %d crc=%d\r\n", dataSize, crcStart);
*pLength = dataSize;
return crcStart;
}
dataSize = 0;
crcStart = 0;
}
}
return -1000; // should never be here.
}
int CZModemRecv::WaitPacket(long timeout)
{
int len;
int next;
int32 bytesDropped = 0;
int dropMask = 0xf;
int32 shoutBack = 0;
int timeoutCnt = 0;
unsigned char ch;
while (1) {
if ((bytesDropped & dropMask) == dropMask) {
TRACE("Input dropped %ld\r\n", bytesDropped);
if (dropMask < 0x1000) {
dropMask <<= 1; dropMask |= 1;
}
}
if ((bytesDropped - shoutBack) > 10240) {
if (m_contentStarted) {
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
shoutBack = bytesDropped;
}
}
while (GetInputSize() <= 3) {
len = ReadLink(timeout, 3);
if (len > 0) break;
timeoutCnt++;
if ((timeoutCnt & 1) == 0) {
if (m_contentStarted) {
SendBPacket(PACKET_TYPE_ZRPOS, m_filePosition);
}
}
if (timeoutCnt >= 10) {
return 0;
}
}
ch = m_inputBuffer[m_inputHead];
if (ch == CHAR_CAN) {
if (++m_cancelRequest >= 5) {
m_endOfSession = SESSION_ABORT;
return 0;
}
m_inputHead = NextIndex(m_inputHead);
bytesDropped++;
continue;
}
m_cancelRequest = 0;
if ( ch != CHAR_PAD) {
m_inputHead = NextIndex(m_inputHead);
bytesDropped++;
continue;
}
next = NextIndex(m_inputHead);
if (m_inputBuffer[next] != CHAR_CAN) {
m_inputHead = NextIndex(m_inputHead);
bytesDropped += 2;
continue;
}
next = NextIndex(next);
switch (m_inputBuffer[next]) {
case 'A': // Binary packet CRC16
m_inputHead = NextIndex(next);
TRACE("Found BIN16\r\n");
return PACKET_BIN16;
case 'B': // hexadecimal CRC16
m_inputHead = NextIndex(next);
TRACE("Found Hex16\r\n");
return PACKET_HEX16;
case 'C': // Binary packet CRC32
m_inputHead = NextIndex(next);
TRACE("Found Bin32\r\n");
return PACKET_BIN32;
default:
m_inputHead = NextIndex(m_inputHead);
bytesDropped += 3;
break;
}
}
}
int CZModemRecv::SendBPacket(unsigned char type, unsigned long parameter)
{
char buff[32];
CCRC16 crc;
unsigned short checksum;
char *ptr;
strcpy(buff, "**\x18" "B");
crc.UpdateCrc(type);
crc.UpdateCrc((unsigned char)(parameter & 0xff));
crc.UpdateCrc((unsigned char)((parameter >> 8) & 0xff));
crc.UpdateCrc((unsigned char)((parameter >> 16) & 0xff));
crc.UpdateCrc((unsigned char)((parameter >> 24) & 0xff));
checksum = crc.GetCrc16();
ptr = buff + 4;
PrintHex(type, ptr); ptr += 2;
PrintHex((unsigned char)(parameter & 0xff), ptr); ptr += 2;
PrintHex((unsigned char)((parameter >> 8) & 0xff), ptr); ptr += 2;
PrintHex((unsigned char)((parameter >> 16) & 0xff), ptr); ptr += 2;
PrintHex((unsigned char)((parameter >> 24) & 0xff), ptr); ptr += 2;
PrintHex((checksum >> 8) & 0xff, ptr); ptr += 2;
PrintHex((checksum & 0xff), ptr); ptr += 2;
strcpy(ptr, "\x0d\x0a\x11");
WriteLink(buff, strlen(buff));
return 1;
}
int CZModemRecv::SendReceiveCapability(void)
{
return SendBPacket(1, 0x03000000 + 0x7000 /* 0x27000000 + 0x100*/);
}
void CZModemRecv::PrintHex(unsigned char ch, char *pBuff)
{
static const char *pList = "0123456789abcdef";
*pBuff++ = pList[ch >> 4];
*pBuff = pList[ch & 0xf];
}
int CZModemRecv::WriteLink(char *pBuff, int size)
{
int result;
result = m_pPort->Send(pBuff, size, 0);
m_pPort->flush();
return result;
}
int CZModemRecv::ReadLink(long timeout, int max_len /* = INPUT_BUFFER_SIZE */)
{
int next = NextIndex(m_inputTail);
int len;
int block;
#if 0
if (next == m_inputHead) {
// it's full
return 0;
}
#endif
if (m_inputHead == m_inputTail) {
m_inputHead = m_inputTail = 0;
block = INPUT_BUFFER_SIZE - 6;
if (block > max_len) {
block = max_len;
}
len = m_pPort->Receive((char *)m_inputBuffer, block, timeout);
if (len > 0) {
m_inputTail += len;
assert(m_inputTail < INPUT_BUFFER_SIZE);
DisplayByteStream((char *)m_inputBuffer, len);
return len;
}
return 0;
}
if (m_inputHead > m_inputTail) {
block = m_inputHead - m_inputTail - 7;
if (block <= 0) return 0;
if (block > max_len) {
block = max_len;
}
len = m_pPort->Receive((char *)m_inputBuffer + m_inputTail, block, timeout);
if (len > 0) {
DisplayByteStream((char *)m_inputBuffer + m_inputTail, len);
m_inputTail += len;
assert(m_inputTail < m_inputHead);
return len;
}
return 0;
}
if (m_inputHead < m_inputTail) {
int total = 0;
if (m_inputTail <= (INPUT_BUFFER_SIZE - 1)) {
block = INPUT_BUFFER_SIZE - m_inputTail;
if (m_inputHead <= 10) {
block -= 3;
}
if (block > max_len) {
block = max_len;
}
if (block <= 0) return 0;
len = m_pPort->Receive((char *)m_inputBuffer + m_inputTail, block, timeout);
if (len <= 0) return 0;
DisplayByteStream((char *)m_inputBuffer + m_inputTail, len);
next = m_inputTail + len;
if (next <= INPUT_BUFFER_SIZE - 1) {
m_inputTail = next;
return len;
} else {
m_inputTail = 0;
}
max_len -= len;
total += len;
if (max_len <= 0) {
return total;
}
}
if ((m_inputHead > 10) && (m_inputTail == 0)) {
block = m_inputHead - 7;
if (block > max_len) {
block = max_len;
}
len = m_pPort->Receive((char *)m_inputBuffer, block, timeout);
if (len <= 0) return total;
DisplayByteStream((char *)m_inputBuffer, len);
m_inputTail = len;
assert(m_inputTail < m_inputHead);
return total + len;
}
return total;
}
return 0;
}
void CZModemRecv::DisplayByteStream(char *pBuff, int len)
{
#if 0
char buff[10];
int lineCut = 0;
for (int i = 0; i < len; i++) {
PrintHex((unsigned char)(*pBuff++), buff);
buff[2] = 0x20; buff[3] = 0;
TRACE(buff);
lineCut++;
if (lineCut >= 20) {
TRACE("\r\n");
lineCut = 0;
} else if (lineCut == 10) {
TRACE("- ");
}
}
TRACE("\r\n");
#endif
}
|
b2fd9a050c96e5d360c7621548eccce581ff5b66 | c14fe08ab8d4d18ee33f9f544eb75e16a85a04f7 | /Source/SummerDeliverables/WaveManager.h | 1e67a063bf129c1b52f1a43284a796a71c0570ae | [] | no_license | Deme72/Summer-Deliverables | 98ceb887c5267a42fc0e3103df31800a85f85e7c | 74963af343747d1015e31600e9e0e6a293ba9112 | refs/heads/master | 2023-02-25T08:43:19.918941 | 2021-01-03T18:02:58 | 2021-01-03T18:02:58 | 282,299,276 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,920 | h | WaveManager.h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "BaseEnemyCharacter.h"
#include "GameFramework/Actor.h"
#include "WaveManager.generated.h"
UENUM(BlueprintType)
enum EEnemyType
{
CriminalTier1,
CriminalTier2,
CriminalTier3,
LeaderTier1,
LeaderTier2,
LeaderTier3,
GhostHunterTier1,
GhostHunterTier2,
GhostHunterTier3
};
USTRUCT(BlueprintType)
struct FWave {
GENERATED_BODY()
//a list of enum objects for each enemy we want to spawn
UPROPERTY( EditAnywhere, BlueprintReadWrite )
TArray<TEnumAsByte<EEnemyType>> SpawnedObjects;
};
UCLASS()
class SUMMERDELIVERABLES_API AWaveManager : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
AWaveManager();
/// Class to use for the tier 1 criminal enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> CriminalTier1Type;
/// Class to use for the tier 2 criminal enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> CriminalTier2Type;
/// Class to use for the tier 3 criminal enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> CriminalTier3Type;
/// Class to use for the follower/minion enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> MinionType;
/// Class to use for the tier 1 leader enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> LeaderTier1Type;
/// Class to use for the tier 2 leader enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> LeaderTier2Type;
/// Class to use for the tier 3 leader enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> LeaderTier3Type;
/// Class to use for the tier 1 ghost hunter enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> GhostHunterTier1Type;
/// Class to use for the tier 2 ghost hunter enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> GhostHunterTier2Type;
/// Class to use for the tier 3 ghost hunter enemy
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "EnemyClassReferences")
class TSubclassOf<ABaseEnemyCharacter> GhostHunterTier3Type;
/// All waves that will be spawned
UPROPERTY(EditAnywhere, BlueprintReadWrite)
TArray<FWave> Waves;
//the time between waves
UPROPERTY(EditAnywhere, BlueprintReadWrite)
float TimeBetweenWaves = 30;
//the entrance that enemies spawn at
UPROPERTY(EditAnywhere, BlueprintReadWrite)
AActor * Entrance;
//the current wave
UPROPERTY(VisibleAnywhere,BlueprintReadOnly)
int CurrentWave = 0;
//time until the next wave
float TimeUntilNextWave;
protected:
// Called when the game starts or when spawned
virtual void BeginPlay() override;
public:
// Called every frame
virtual void Tick(float DeltaTime) override;
/// Spawns this wave, returns true if the wave was successfully spawned, otherwise returns false
virtual bool SpawnWave(int number);
/// Attempts to spawn an enemy at the target location, returns true if they were successfully spawned
virtual APawn* SpawnEnemy(TSubclassOf<ABaseEnemyCharacter> EnemyToSpawn, FVector TargetLocation, float LocationSpread, FRotator TargetRotation = FRotator::ZeroRotator);
/// Checks if there are waves remaining
bool AreWavesRemaining() {return CurrentWave < Waves.Num();}
///This function counts how many enemies exist for use by the game mode to check the win condition
int NumEnemies();
};
|
e4b189e2a0659a343ce964b16a3dfc4299b88ce4 | c9cf0586ace11aa32fa67606d237a130a06364ee | /circular-cylinder-2-10/19.75/phi | 547d04a764346036daaa0ef86a9988934899805c | [] | no_license | jezvonek/CFD-Final-Project | c74cfa21f22545c27d97d85cf30eb6dc8c824dc1 | 7c9a7fb032d74f20888effa0a0b75b212bf899f4 | refs/heads/master | 2022-07-05T14:43:52.967657 | 2020-05-14T03:40:56 | 2020-05-14T03:40:56 | 262,370,756 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 199,024 | phi | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6.0
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class surfaceScalarField;
location "19.75";
object phi;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 3 -1 0 0 0 0];
internalField nonuniform List<scalar>
18940
(
0.000111137
-0.115537
0.115425
0.000522117
-0.101966
0.101555
0.00122156
-0.091986
0.0912865
0.00217988
-0.0846004
0.0836421
0.0033608
-0.0790776
0.0778966
0.00472615
-0.0748762
0.0735109
0.0062392
-0.071607
0.070094
0.00786636
-0.0689924
0.0673652
0.00957785
-0.0668352
0.0651237
0.0113479
-0.0649961
0.063226
0.0131548
-0.0633765
0.0615696
0.0149802
-0.0619074
0.0600819
0.0168096
-0.0605405
0.0587111
0.0186311
-0.0592419
0.0574204
0.0204356
-0.0579878
0.0561833
0.0222163
-0.0567607
0.0549801
0.0239679
-0.0555469
0.0537953
0.0256863
-0.0543342
0.0526157
0.0273676
-0.05311
0.0514286
-0.0518591
0.0502192
0.0290075
0.000131578
-0.115668
0.000571264
-0.102406
0.00130745
-0.0927222
0.00230678
-0.0855997
0.00352917
-0.0802999
0.00493362
-0.0762807
0.00648136
-0.0731548
0.00813739
-0.0706484
0.00987101
-0.0685689
0.011656
-0.066781
0.0134704
-0.0651908
0.0152961
-0.0637331
0.0171188
-0.0623632
0.0189272
-0.0610504
0.020713
-0.0597736
0.02247
-0.0585177
0.0241939
-0.0572708
0.0258817
-0.056022
0.0275307
-0.054759
-0.0534662
0.0291379
0.000147258
-0.115815
0.000615988
-0.102875
0.00138835
-0.0934945
0.00242677
-0.0866381
0.00368758
-0.0815607
0.00512713
-0.0777202
0.00670476
-0.0747324
0.00838419
-0.0723278
0.010134
-0.0703186
0.0119275
-0.0685746
0.0137428
-0.0670061
0.0155621
-0.0655524
0.0173715
-0.0641725
0.0191604
-0.0628392
0.0209211
-0.0615343
0.0226484
-0.0602451
0.0243391
-0.0589615
0.025991
-0.0576739
0.0276028
-0.0563708
-0.0550361
0.0291728
0.000161096
-0.115976
0.000657706
-0.103371
0.00146465
-0.0943015
0.00253962
-0.0877131
0.00383541
-0.0828565
0.00530578
-0.0791906
0.00690831
-0.0763349
0.00860557
-0.0740251
0.0103655
-0.0720786
0.0121613
-0.0703704
0.0139711
-0.0688159
0.0157776
-0.0673589
0.0175673
-0.0659623
0.0193305
-0.0646024
0.0210603
-0.0632642
0.0227525
-0.0619373
0.0244048
-0.0606137
0.0260163
-0.0592854
0.0275868
-0.0579413
-0.0565653
0.0291159
0.000173908
-0.11615
0.000696921
-0.103894
0.00153639
-0.095141
0.00264503
-0.0888218
0.00397208
-0.0841836
0.0054688
-0.0806873
0.00709111
-0.0779572
0.00880058
-0.0757346
0.0105647
-0.0738427
0.0123566
-0.0721623
0.0141547
-0.070614
0.0159421
-0.0691463
0.0177061
-0.0677263
0.0194379
-0.0663342
0.0211315
-0.0649577
0.0227837
-0.0635894
0.0243931
-0.0622232
0.0259602
-0.0608525
0.0274859
-0.059467
-0.0580506
0.0289713
0.000185973
-0.116336
0.000733823
-0.104442
0.00160352
-0.0960106
0.00274271
-0.0899609
0.0040971
-0.085538
0.00561556
-0.0822058
0.00725246
-0.0795941
0.00896852
-0.0774506
0.0107309
-0.0756051
0.0125128
-0.0739442
0.0142932
-0.0723943
0.0160557
-0.0709088
0.0177885
-0.0694592
0.0194836
-0.0680293
0.0211361
-0.0666103
0.0227438
-0.0651971
0.0243066
-0.063786
0.0258259
-0.0623718
0.027304
-0.0609451
-0.0594898
0.0287433
0.000197379
-0.116534
0.000768449
-0.105013
0.00166591
-0.0969081
0.00283238
-0.0911274
0.0042101
-0.0869157
0.00574562
-0.0837413
0.0073919
-0.0812404
0.00910897
-0.0791677
0.0108638
-0.0773599
0.01263
-0.0757104
0.0143868
-0.0741512
0.0161189
-0.0726409
0.0178153
-0.0711556
0.0194689
-0.0696829
0.021076
-0.0682173
0.0226353
-0.0667565
0.0241481
-0.0652988
0.0256168
-0.0638405
0.0270449
-0.0623732
-0.0608811
0.0284361
0.000208139
-0.116742
0.000800775
-0.105606
0.00172347
-0.0978308
0.00291387
-0.0923178
0.00431082
-0.0883126
0.00585868
-0.0852892
0.00750917
-0.0828909
0.00922179
-0.0808803
0.0109635
-0.0791017
0.0127084
-0.0774552
0.0144363
-0.0758791
0.0161328
-0.0743374
0.017788
-0.0728107
0.0193957
-0.0712906
0.0209533
-0.0697749
0.0224608
-0.068264
0.0239205
-0.0667585
0.0253361
-0.0652561
0.0267124
-0.0637494
-0.0622229
0.0280542
0.00021824
-0.11696
0.000830761
-0.106218
0.00177612
-0.0987762
0.00298706
-0.0935288
0.00439913
-0.0897247
0.00595466
-0.0868447
0.00760427
-0.0845405
0.00930712
-0.0825832
0.0110304
-0.080825
0.0127486
-0.0791734
0.0144426
-0.0775731
0.0160987
-0.0759935
0.0177082
-0.0744202
0.019266
-0.0728485
0.0207707
-0.0712795
0.0222233
-0.0697166
0.0236273
-0.0681624
0.0249876
-0.0666165
0.0263103
-0.0650721
-0.0635142
0.0276015
0.000227657
-0.117188
0.000858382
-0.106849
0.00182384
-0.0997416
0.00305193
-0.0947569
0.00447505
-0.0911478
0.00603363
-0.0884033
0.00767741
-0.0861843
0.00936537
-0.0842711
0.0110651
-0.0825247
0.0127516
-0.08086
0.0144069
-0.0792284
0.0160184
-0.077605
0.0175782
-0.07598
0.0190825
-0.0743528
0.020531
-0.072728
0.0219258
-0.0711115
0.0232716
-0.0695082
0.0245746
-0.0679195
0.0258421
-0.0663396
-0.0647536
0.0270815
0.000236377
-0.117424
0.00088365
-0.107496
0.00186667
-0.100725
0.00310858
-0.0959988
0.00453872
-0.092578
0.00609585
-0.0899604
0.00772903
-0.0878175
0.00939723
-0.0859393
0.0110685
-0.0841959
0.0127189
-0.0825104
0.0143312
-0.0808407
0.0158939
-0.0791677
0.0174005
-0.0774865
0.0188481
-0.0758005
0.0202374
-0.0741173
0.0215718
-0.0724459
0.022857
-0.0707934
0.0241006
-0.069163
0.0253111
-0.0675501
-0.0659399
0.0264974
0.000244395
-0.117669
0.000906633
-0.108159
0.00190476
-0.101723
0.0031572
-0.0972512
0.00459043
-0.0940112
0.00614177
-0.0915118
0.00775977
-0.0894355
0.00940362
-0.0875832
0.011042
-0.0858344
0.012652
-0.0841203
0.0142174
-0.0824061
0.0157279
-0.0806783
0.017178
-0.0789366
0.018566
-0.0771885
0.0198935
-0.0754448
0.021165
-0.0737173
0.0223872
-0.0720156
0.023569
-0.0703449
0.0247206
-0.0687016
-0.0670714
0.0258521
0.000251747
-0.11792
0.000927481
-0.108834
0.00193835
-0.102734
0.00319811
-0.098511
0.00463062
-0.0954437
0.00617197
-0.0930531
0.00777047
-0.091034
0.00938571
-0.0891984
0.0109872
-0.0874358
0.0125529
-0.085686
0.014068
-0.0839211
0.0155232
-0.0821335
0.0169141
-0.0803275
0.0182401
-0.0785144
0.0195034
-0.0767082
0.0207096
-0.0749234
0.0218663
-0.0731724
0.0229837
-0.0714623
0.0240736
-0.0697915
-0.0681457
0.0251479
0.000258529
-0.118179
0.000946462
-0.109522
0.00196781
-0.103755
0.00323176
-0.0997749
0.00465982
-0.0968718
0.00618719
-0.0945805
0.00776215
-0.0926089
0.00934487
-0.0907811
0.0109058
-0.0889967
0.012424
-0.0872043
0.0138859
-0.085383
0.0152833
-0.0835309
0.0166129
-0.0816571
0.0178747
-0.0797762
0.019072
-0.0779055
0.0202106
-0.0760621
0.0212991
-0.074261
0.022349
-0.0725122
0.0233737
-0.0708162
-0.0691592
0.0243872
0.000264973
-0.118444
0.000964032
-0.110221
0.00199365
-0.104785
0.00325867
-0.10104
0.00467867
-0.0982918
0.00618824
-0.09609
0.00773593
-0.0941566
0.00928262
-0.0923278
0.0107998
-0.0905139
0.0122678
-0.0886723
0.0136742
-0.0867893
0.0150119
-0.0848687
0.0162786
-0.0829237
0.017475
-0.0809726
0.0186047
-0.0790352
0.0196739
-0.0771313
0.0206917
-0.0752787
0.0216703
-0.0734907
0.022625
-0.0717709
-0.0701068
0.0235725
0.000271543
-0.118715
0.000980878
-0.110931
0.00201651
-0.10582
0.00327943
-0.102303
0.0046878
-0.0997001
0.006176
-0.0975782
0.007693
-0.0956736
0.00920058
-0.0938354
0.0106714
-0.0919847
0.012087
-0.0900879
0.0134362
-0.0881385
0.0147132
-0.0861457
0.0159163
-0.0841268
0.0170468
-0.0821031
0.0181085
-0.0800969
0.0191073
-0.0781301
0.0200521
-0.0762235
0.0209552
-0.0743939
0.0218338
-0.0726495
-0.0709814
0.0227084
0.000279031
-0.118994
0.000997911
-0.11165
0.00203707
-0.106859
0.00329462
-0.10356
0.00468787
-0.101093
0.0061513
-0.0990417
0.00763452
-0.0971568
0.00910033
-0.0953012
0.0105226
-0.0934071
0.0118844
-0.0914497
0.0131756
-0.0894297
0.0143915
-0.0873616
0.0155313
-0.0852666
0.0165967
-0.0831685
0.0175913
-0.0810915
0.0185204
-0.0790592
0.0193915
-0.0770946
0.0202161
-0.0752184
0.0210121
-0.0734455
-0.0717739
0.0218047
0.000288767
-0.119283
0.00101648
-0.112377
0.00205623
-0.107899
0.00330482
-0.104809
0.00467945
-0.102468
0.00611489
-0.100477
0.00756153
-0.0986035
0.0089833
-0.096723
0.0103555
-0.0947792
0.0116624
-0.0927566
0.0128954
-0.0906627
0.014051
-0.0885171
0.0151289
-0.0863446
0.0161314
-0.084171
0.0170617
-0.0820218
0.017924
-0.0799216
0.0187238
-0.0778944
0.0194694
-0.075964
0.0201765
-0.0741526
-0.0724725
0.0208751
0.000304272
-0.119587
0.00103953
-0.113112
0.00207535
-0.108935
0.00331062
-0.106044
0.00466292
-0.10382
0.00606728
-0.101881
0.00747481
-0.100011
0.00885065
-0.0980988
0.0101715
-0.0961001
0.0114232
-0.0940084
0.0125987
-0.0918381
0.0136954
-0.0896139
0.0147144
-0.0873635
0.015658
-0.0851146
0.0165295
-0.0828932
0.0173315
-0.0807236
0.0180663
-0.0786291
0.0187348
-0.0766326
0.0193449
-0.0747627
-0.0730712
0.0199436
0.000336855
-0.119924
0.00107126
-0.113847
0.00209489
-0.109959
0.00331165
-0.107261
0.00463804
-0.105147
0.00600852
-0.103252
0.00737473
-0.101377
0.00870302
-0.0994271
0.00997166
-0.0973687
0.0111682
-0.0952049
0.012287
-0.0929569
0.0133272
-0.0906541
0.0142911
-0.0883274
0.0151824
-0.0860059
0.0160051
-0.0837159
0.0167622
-0.0814807
0.0174531
-0.07932
0.0180683
-0.0772478
0.018589
-0.0752834
-0.0735195
0.0190373
0.125182
0.000257579
-0.12544
0.124934
0.000248461
0.124685
0.000249382
0.124431
0.000253608
0.124172
0.00025901
0.123907
0.000264772
0.123637
0.000270399
0.123361
0.000275593
0.123081
0.000280202
0.122797
0.000284158
0.122509
0.000287424
0.122219
0.000289989
0.121928
0.000291838
0.121635
0.000292949
0.121341
0.00029327
0.121049
0.000292686
0.120758
0.000290937
0.12047
0.000287405
0.12019
0.000280536
0.000265604
0.125894
0.000717047
-0.126354
0.125406
0.000736224
0.124896
0.000760015
0.124363
0.000785894
0.12381
0.00081204
0.123238
0.000837645
0.122646
0.000862168
0.122036
0.000885185
0.12141
0.000906411
0.120768
0.000925663
0.120113
0.000942823
0.119445
0.000957811
0.118767
0.000970558
0.118079
0.000980989
0.117383
0.000988997
0.116681
0.00099439
0.115975
0.000996822
0.115267
0.000995634
0.114558
0.000989628
0.000976584
0.125892
0.00124061
-0.126415
0.125322
0.00130606
0.124711
0.00137101
0.124061
0.00143512
0.123376
0.00149746
0.122656
0.00155744
0.121904
0.00161467
0.12112
0.00166875
0.120307
0.00171936
0.119467
0.00176626
0.1186
0.00180925
0.11771
0.00184818
0.116797
0.00188292
0.115865
0.00191335
0.114915
0.00193931
0.113949
0.00196062
0.112968
0.00197698
0.111976
0.00198795
0.110973
0.00199288
0.00199085
0.12496
0.00174326
-0.125463
0.124402
0.00186451
0.12379
0.00198237
0.123129
0.00209692
0.122418
0.00220767
0.121662
0.00231419
0.12086
0.00241611
0.120016
0.00251305
0.119131
0.00260467
0.118206
0.00269068
0.117245
0.00277083
0.116248
0.00284489
0.115218
0.00291268
0.114157
0.00297402
0.113068
0.00302873
0.111952
0.00307662
0.110811
0.00311745
0.109648
0.00315095
0.108465
0.00317674
0.00319445
0.123153
0.00217574
-0.123585
0.122658
0.0023587
0.122104
0.00253672
0.121491
0.00270975
0.120822
0.0028774
0.120096
0.00303924
0.119318
0.00319485
0.118487
0.00334381
0.117606
0.00348573
0.116676
0.00362026
0.1157
0.00374706
0.114679
0.00386585
0.113615
0.00397636
0.112511
0.00407837
0.111368
0.00417164
0.110189
0.00425599
0.108975
0.00433121
0.107729
0.00439708
0.106452
0.0044534
0.00450001
0.120624
0.00251571
-0.120964
0.120219
0.00276365
0.11975
0.00300583
0.119218
0.00324198
0.118624
0.00347167
0.117969
0.00369437
0.117254
0.00390959
0.116481
0.00411683
0.115651
0.00431561
0.114766
0.00450548
0.113827
0.00468604
0.112836
0.00485691
0.111794
0.00501775
0.110705
0.00516826
0.109568
0.00530817
0.108387
0.00543725
0.107163
0.00555529
0.105898
0.0056621
0.104593
0.00575754
0.00584156
0.117569
0.00275883
-0.117812
0.117259
0.00307285
0.116885
0.00338074
0.116444
0.00368204
0.11594
0.00397619
0.115372
0.0042626
0.114741
0.00454065
0.114048
0.00480975
0.113294
0.00506933
0.112481
0.00531886
0.111609
0.00555782
0.11068
0.00578576
0.109696
0.00600224
0.108657
0.0062069
0.107566
0.0063994
0.106423
0.00657946
0.105232
0.00674685
0.103993
0.0069014
0.102707
0.00704296
0.00717151
0.114175
0.00291168
-0.114328
0.113956
0.00329124
0.113673
0.00366459
0.113324
0.00403111
0.11291
0.00439013
0.112431
0.00474097
0.111889
0.00508291
0.111283
0.00541528
0.110615
0.00573741
0.109886
0.00604867
0.109095
0.00634846
0.108244
0.00663624
0.107335
0.00691149
0.106368
0.00717377
0.105345
0.00742269
0.104267
0.00765791
0.103134
0.00787917
0.101949
0.00808627
0.100713
0.0082791
0.00845764
0.110606
0.00298661
-0.110681
0.110468
0.00343006
0.110265
0.00386739
0.109998
0.00429787
0.109667
0.00472073
0.109273
0.0051352
0.108816
0.00554049
0.108295
0.00593584
0.107712
0.00632051
0.107067
0.00669379
0.10636
0.00705501
0.105593
0.00740353
0.104766
0.00773878
0.103879
0.00806025
0.102934
0.00836747
0.101932
0.00866008
0.100874
0.00893777
0.0997596
0.00920035
0.098591
0.00944771
0.00967989
0.106993
0.0029983
-0.107005
0.10692
0.00350333
0.106785
0.00400243
0.106588
0.00449476
0.10633
0.00497948
0.106009
0.00545576
0.105627
0.00592274
0.105183
0.0063796
0.104678
0.00682554
0.104112
0.00725979
0.103485
0.00768161
0.102799
0.00809031
0.102052
0.00848526
0.101246
0.00886587
0.100382
0.00923166
0.0994601
0.00958221
0.0984807
0.00991719
0.0974446
0.0102364
0.0963525
0.0105398
0.0108275
0.103432
0.00296158
-0.103395
0.10341
0.00352558
0.103329
0.00408384
0.103188
0.00463544
0.102988
0.00517952
0.102728
0.00571516
0.10241
0.00624147
0.102032
0.0067576
0.101595
0.00726268
0.101098
0.00775591
0.100544
0.00823651
0.0999301
0.00870374
0.0992584
0.00915692
0.0985289
0.00959544
0.0977418
0.0100188
0.0968975
0.0104264
0.0959966
0.0108182
0.0950393
0.0111937
0.094026
0.0115531
0.0118966
0.0999892
0.00289012
-0.0999177
0.100004
0.00351042
0.099963
0.00412511
0.0998652
0.00473326
0.0997108
0.00533392
0.0994998
0.00592618
0.0992322
0.0065091
0.098908
0.0070818
0.0985273
0.00764339
0.0980901
0.00819303
0.0975967
0.00872993
0.0970471
0.0092533
0.0964416
0.00976246
0.0957803
0.0102568
0.0950634
0.0107356
0.0942913
0.0111986
0.0934641
0.0116454
0.092582
0.0120757
0.0916454
0.0124897
0.0128879
0.0967061
0.00279579
-0.0966118
0.0967467
0.00346982
0.0967335
0.00413829
0.0966665
0.00480025
0.0965457
0.00545472
0.0963711
0.00610077
0.0961428
0.00673744
0.0958608
0.00736382
0.0955251
0.00797903
0.095136
0.00858221
0.0946933
0.00917254
0.0941974
0.00974924
0.0936483
0.0103116
0.093046
0.010859
0.0923909
0.0113907
0.0916831
0.0119065
0.0909226
0.0124058
0.0901098
0.0128886
0.0892448
0.0133546
0.0138054
0.0936055
0.00268841
-0.0934981
0.0936615
0.00341377
0.0936663
0.00413354
0.0936198
0.00484671
0.0935222
0.00555232
0.0933736
0.00624939
0.0931741
0.00693698
0.0929237
0.00761416
0.0926227
0.00828004
0.0922712
0.00893376
0.0918692
0.00957451
0.091417
0.0102015
0.0909146
0.010814
0.0903621
0.0114114
0.0897598
0.0119931
0.0891077
0.0125585
0.0884061
0.0131074
0.0876551
0.0136396
0.0868552
0.0141545
0.0146547
0.0906955
0.00257571
-0.0905828
0.0907591
0.00335025
0.0907736
0.00411901
0.0907393
0.00488101
0.0906564
0.00563525
0.090525
0.00638074
0.0903454
0.00711654
0.0901179
0.00784172
0.0898425
0.0085554
0.0895196
0.0092567
0.0891493
0.00994483
0.0887318
0.010619
0.0882672
0.0112785
0.0877559
0.0119228
0.0871979
0.0125511
0.0865934
0.013163
0.0859426
0.0137581
0.0852458
0.0143364
0.0845039
0.0148965
0.0154426
0.0879744
0.0024635
-0.0878622
0.0880394
0.00328526
0.0880575
0.00410096
0.0880289
0.00490959
0.087954
0.00571016
0.087833
0.00650165
0.0876665
0.00728313
0.0874545
0.00805366
0.0871975
0.00881237
0.0868959
0.0095584
0.0865497
0.0102909
0.0861595
0.0110093
0.0857254
0.0117127
0.0852476
0.0124005
0.0847265
0.0130722
0.0841623
0.0137273
0.0835552
0.0143653
0.0829054
0.0149862
0.0822145
0.0155874
0.0161764
0.0854338
0.00235582
-0.0853261
0.085496
0.00322304
0.0855132
0.0040838
0.0854857
0.00493707
0.085414
0.00578184
0.0852986
0.00661709
0.0851398
0.00744187
0.0849382
0.00825526
0.0846942
0.00905638
0.0844082
0.0098444
0.0840807
0.0106185
0.0837119
0.011378
0.0833024
0.0121222
0.0828525
0.0128504
0.0823625
0.0135622
0.0818327
0.0142571
0.0812633
0.0149347
0.0806543
0.0155952
0.0800075
0.0162342
0.0168638
0.0830617
0.00225514
-0.0829611
0.0831186
0.00316619
0.0831321
0.00407026
0.0831029
0.00496629
0.0830315
0.00585327
0.0829184
0.00673015
0.0827643
0.00759599
0.0825697
0.00844985
0.0823352
0.00929088
0.0820614
0.0101182
0.0817487
0.0109311
0.0813978
0.0117289
0.0810092
0.0125108
0.0805833
0.0132763
0.0801206
0.0140249
0.0796215
0.0147562
0.0790861
0.0154701
0.0785139
0.0161673
0.0779035
0.0168446
0.0175195
0.0808437
0.00216247
-0.0807511
0.0808942
0.00311574
0.0809031
0.00406139
0.080871
0.00499836
0.0807987
0.00592558
0.0806868
0.006842
0.0805362
0.00774667
0.0803474
0.00863865
0.0801212
0.00951709
0.0798582
0.0103812
0.0795593
0.0112301
0.0792249
0.0120632
0.0788559
0.0128799
0.0784528
0.0136794
0.0780162
0.0144615
0.0775467
0.0152257
0.0770445
0.0159723
0.0765096
0.0167022
0.0759336
0.0174207
0.0181696
0.0787638
-0.0786789
0.00207761
0.0788081
0.00307144
0.0788126
0.00405687
0.0787781
0.00503285
0.0787054
0.00599826
0.0785954
0.00695204
0.0784489
0.0078932
0.0782667
0.00882084
0.0780497
0.00973408
0.0777987
0.0106321
0.0775146
0.0115142
0.0771981
0.0123797
0.0768501
0.0132279
0.0764712
0.0140583
0.0760624
0.0148703
0.0756243
0.0156637
0.0751578
0.0164388
0.0746645
0.0171955
0.0741334
0.0179518
0.0187836
0.127294
9.15927e-06
-0.127303
0.127301
-7.5336e-06
0.127307
-5.96324e-06
0.127305
2.45046e-06
0.127291
1.40909e-05
0.127263
2.75467e-05
0.127221
4.19374e-05
0.127165
5.67082e-05
0.127093
7.15411e-05
0.127007
8.62556e-05
0.126906
0.000100734
0.126791
0.000114896
0.126662
0.000128666
0.12652
0.000141971
0.126366
0.000154726
0.126199
0.000166803
0.126021
0.000177986
0.125833
0.000187833
0.125638
0.000195309
0.000197788
0.128746
-0.000185457
-0.128552
0.128907
-0.000167934
0.129039
-0.000138426
0.129143
-0.000101242
0.129217
-5.95275e-05
0.129259
-1.47052e-05
0.129269
3.22255e-05
0.129245
8.04397e-05
0.129187
0.000129318
0.129095
0.000178408
0.128968
0.000227354
0.128807
0.000275863
0.128612
0.000323671
0.128384
0.000370529
0.128122
0.000416177
0.127829
0.000460312
0.127504
0.000502543
0.12715
0.00054229
0.126766
0.000578651
0.000610542
0.127567
-0.000582777
-0.12717
0.127915
-0.000515937
0.128219
-0.000442195
0.12848
-0.000362067
0.128698
-0.000277147
0.128871
-0.000188445
0.129
-9.67627e-05
0.129084
-2.88735e-06
0.129121
9.24572e-05
0.12911
0.000188643
0.129053
0.000285114
0.128947
0.000381371
0.128794
0.000476945
0.128593
0.000571389
0.128345
0.000664261
0.12805
0.000755099
0.127709
0.000843398
0.127323
0.000928585
0.126892
0.00100997
0.00108705
0.124564
-0.00115723
-0.12399
0.125087
-0.00103924
0.125561
-0.000915568
0.125984
-0.000785865
0.126358
-0.000650836
0.126681
-0.000511202
0.126952
-0.000367655
0.12717
-0.000220934
0.127334
-7.18002e-05
0.127444
7.9012e-05
0.127498
0.000230803
0.127497
0.000382906
0.127439
0.000534678
0.127325
0.000685499
0.127154
0.000834761
0.126927
0.000981857
0.126645
0.00112618
0.126306
0.0012671
0.125912
0.00140398
0.00153639
0.120422
-0.00187894
-0.1197
0.121094
-0.001711
0.121715
-0.00153661
0.122285
-0.00135543
0.122802
-0.00116785
0.123265
-0.000974471
0.123673
-0.000775984
0.124025
-0.000573144
0.12432
-0.000366766
0.124557
-0.000157673
0.124734
5.33152e-05
0.124852
0.000265393
0.124909
0.000477773
0.124905
0.000689689
0.124839
0.000900388
0.124712
0.00110913
0.124523
0.00131521
0.124272
0.0015179
0.123959
0.00171654
0.00191064
0.115662
-0.00271672
-0.114824
0.116452
-0.00250087
0.117192
-0.00227697
0.117882
-0.00204486
0.118519
-0.00180485
0.119102
-0.00155755
0.119629
-0.00130369
0.1201
-0.00104409
0.120513
-0.000779649
0.120867
-0.000511293
0.12116
-0.000239954
0.121392
3.3442e-05
0.121562
0.000307981
0.121669
0.000582769
0.121712
0.000856931
0.121692
0.00112961
0.121607
0.00139999
0.121458
0.00166728
0.121243
0.00193071
0.00218971
0.110663
-0.00364143
-0.109738
0.111542
-0.00337993
0.112374
-0.00310848
0.113156
-0.00282706
0.113887
-0.002536
0.114566
-0.00223595
0.11519
-0.00192772
0.115758
-0.00161223
0.116269
-0.00129048
0.116721
-0.000963518
0.117113
-0.000632377
0.117445
-0.000298103
0.117714
3.82789e-05
0.117921
0.000375763
0.118065
0.000713369
0.118144
0.00105014
0.118159
0.00138517
0.118109
0.00171756
0.117993
0.00204647
0.0023712
0.105689
-0.00462786
-0.104702
0.106632
-0.00432291
0.107529
-0.00400606
0.10838
-0.0036773
0.109181
-0.00333701
0.10993
-0.00298591
0.110628
-0.00262493
0.111271
-0.00225512
0.111858
-0.00187759
0.112388
-0.0014935
0.112859
-0.00110402
0.113272
-0.000710304
0.113623
-0.000313468
0.113914
8.53779e-05
0.114142
0.000485163
0.114307
0.000884845
0.114409
0.00128342
0.114447
0.00167993
0.11442
0.00207343
0.00246312
0.100908
-0.00565533
-0.0998807
0.101894
-0.005309
0.102837
-0.0049488
0.103734
-0.00457462
0.104584
-0.00418693
0.105385
-0.00378655
0.106134
-0.00337456
0.106832
-0.00295214
0.107475
-0.00252057
0.108062
-0.00208115
0.108593
-0.00163515
0.109067
-0.00118383
0.109482
-0.000728417
0.109837
-0.000270108
0.110132
0.000189949
0.110367
0.000650634
0.110539
0.00111087
0.110649
0.00156963
0.110697
0.0020259
0.00247877
0.0964207
-0.0067075
-0.0953685
0.0974334
-0.00632176
0.0984048
-0.00592011
0.0993324
-0.00550226
0.100214
-0.00506878
0.101048
-0.00462068
0.101833
-0.0041592
0.102567
-0.00368574
0.103248
-0.00320176
0.103875
-0.0027087
0.104448
-0.00220796
0.104965
-0.00170093
0.105426
-0.00118892
0.105829
-0.000673208
0.106174
-0.000155009
0.10646
0.00036449
0.106687
0.00088415
0.106853
0.00140288
0.10696
0.00191961
0.00243336
0.0922748
-0.00777191
-0.0912104
0.0933019
-0.00734881
0.0942893
-0.00690749
0.0952345
-0.00644744
0.0961351
-0.00596946
0.0969893
-0.0054748
0.0977951
-0.004965
0.098551
-0.0044417
0.0992559
-0.0039066
0.0999085
-0.00336132
0.100508
-0.00280742
0.101053
-0.00224637
0.101544
-0.0016796
0.101979
-0.00110843
0.102358
-0.00053417
0.102681
4.19513e-05
0.102946
0.000618744
0.103154
0.00119506
0.103304
0.0017698
0.00234191
0.0884844
-0.00883939
-0.0874169
0.089517
-0.00838137
0.0905116
-0.00790211
0.0914652
-0.007401
0.0923751
-0.00687936
0.0932391
-0.00633882
0.0940554
-0.00578133
0.0948226
-0.00520891
0.0955396
-0.00462356
0.0962053
-0.0040271
0.0968192
-0.00342124
0.0973804
-0.00280758
0.0978884
-0.00218761
0.0983427
-0.00156273
0.0987428
-0.000934303
0.0990884
-0.000303594
0.0993789
0.000328162
0.0996142
0.000959785
0.0997939
0.00159013
0.00221809
0.0850407
-0.00990355
-0.0839765
0.0860732
-0.00941389
0.0870694
-0.00889834
0.0880253
-0.00835687
0.0889377
-0.00779176
0.0898042
-0.00720534
0.0906231
-0.00660016
0.091393
-0.00597881
0.092113
-0.00534361
0.0927825
-0.00469661
0.093401
-0.00403968
0.0939679
-0.0033745
0.0944829
-0.00270264
0.0949457
-0.00202554
0.095356
-0.0013446
0.0957136
-0.000661119
0.0960181
2.36394e-05
0.0962694
0.000708465
0.0964673
0.00139219
0.00207367
0.0819217
-0.0109606
-0.0808647
0.0829516
-0.0104439
0.0839466
-0.00989334
0.0849011
-0.00931134
0.0858114
-0.00870205
0.086675
-0.00806888
0.0874902
-0.00741537
0.0882561
-0.00674475
0.0889722
-0.00605971
0.0896381
-0.00536253
0.0902536
-0.00465515
0.0908184
-0.00393932
0.0913324
-0.00321664
0.0917954
-0.00248859
0.0922074
-0.00175656
0.0925682
-0.0010219
0.0928777
-0.00028587
0.0931359
0.000450285
0.0933427
0.00118538
0.00191823
0.0790991
-0.0120091
-0.0780505
0.0801269
-0.0114717
0.0811199
-0.0108864
0.0820708
-0.0102623
0.0829755
-0.00960673
0.0838316
-0.008925
0.0846382
-0.0082219
0.0853948
-0.00750135
0.0861014
-0.00676631
0.086758
-0.00601914
0.0873646
-0.00526182
0.0879214
-0.00449609
0.0884283
-0.00372352
0.0888853
-0.00294561
0.0892925
-0.00216375
0.0896499
-0.00137929
0.0899576
-0.00059352
0.0902155
0.000192308
0.0904239
0.000976987
0.00175931
0.0765431
-0.0130513
-0.0755009
0.0775716
-0.0125002
0.0785631
-0.0118779
0.0795086
-0.0112077
0.0804042
-0.0105023
0.0812486
-0.00976946
0.082042
-0.00901529
0.0827848
-0.00824414
0.0834775
-0.007459
0.0841205
-0.00666213
0.0847141
-0.00585541
0.0852585
-0.00504049
0.0857539
-0.0042189
0.0862004
-0.00339212
0.0865982
-0.00256154
0.0869474
-0.00172851
0.0872482
-0.000894337
0.0875008
-6.02917e-05
0.0877054
0.000772398
0.0016025
0.0742252
-0.014096
-0.0731805
0.0752597
-0.0135347
0.0762496
-0.0128678
0.0771865
-0.0121446
0.0780687
-0.0113845
0.078897
-0.0105978
0.0796731
-0.00979142
0.0803984
-0.00896945
0.0810739
-0.00813447
0.0817002
-0.00728843
0.0822778
-0.00643296
0.0828069
-0.00556961
0.0832878
-0.00469985
0.0837208
-0.00382512
0.0841061
-0.00294682
0.0844439
-0.00206632
0.0847345
-0.00118494
0.0849782
-0.000303978
0.0851753
0.000575317
0.00145168
0.0721204
-0.0151675
-0.0710489
0.0731667
-0.0145809
0.0741518
-0.0138529
0.0750746
-0.0130675
0.0759379
-0.0122477
0.0767456
-0.0114055
0.0775011
-0.0105469
0.0782063
-0.0096747
0.0788625
-0.00879064
0.0794703
-0.0078962
0.0800301
-0.00699278
0.0805423
-0.00608179
0.0810071
-0.00516466
0.0814248
-0.00424285
0.0817958
-0.00331777
0.0821202
-0.0023908
0.0823986
-0.00146331
0.0826313
-0.000536624
0.0828186
0.000387986
0.00130921
0.070219
-0.0162973
-0.0690892
0.0712689
-0.0156307
0.0722386
-0.0148227
0.073139
-0.0139678
0.0739778
-0.0130865
0.0747617
-0.0121894
0.0754947
-0.0112799
0.0761787
-0.0103588
0.0768148
-0.0094267
0.0774034
-0.00848479
0.0779448
-0.00753422
0.0784394
-0.00657635
0.0788873
-0.00561264
0.0792891
-0.00464457
0.0796449
-0.0036736
0.0799552
-0.00270115
0.0802205
-0.00172861
0.0804413
-0.000757348
0.0806179
0.000211324
0.00117605
0.0685124
-0.0674015
-0.0174083
0.0695289
-0.0166472
0.0704705
-0.0157643
0.0713416
-0.0148389
0.072154
-0.0138989
0.0729142
-0.0129496
0.0736252
-0.0119909
0.0742886
-0.0110221
0.0749049
-0.010043
0.0754745
-0.0090544
0.0759976
-0.00805735
0.0764746
-0.00705328
0.0769056
-0.00604371
0.0772913
-0.00503019
0.0776319
-0.00401421
0.077928
-0.00299727
0.0781802
-0.00198078
0.078389
-0.000966141
0.078555
4.5293e-05
0.00105212
0.0232037
0.0435619
-0.0421724
-0.0245932
0.0218042
0.0451379
-0.0437383
0.0203953
0.0468634
-0.0454546
0.0189783
0.0487685
-0.0473515
0.0175547
0.0508881
-0.0494644
0.0161264
0.0532613
-0.051833
0.0146959
0.0559327
-0.0545023
0.0132663
0.0589514
-0.0575218
0.0118414
0.0623695
-0.0609446
0.0104256
0.0662394
-0.0648237
0.00902455
0.0706098
-0.0692088
0.0076454
0.0755194
-0.0741402
0.00629781
0.0809885
-0.0796409
0.00499519
0.0870074
-0.0857048
0.00375666
0.0935192
-0.0922807
0.00260964
0.100397
-0.09925
0.00159324
0.107411
-0.106395
0.000762896
0.114182
-0.113352
0.000197618
0.120101
-0.119535
0.124265
-0.124067
0.0232048
0.0449459
-0.0245888
0.0218101
0.0465326
0.0204056
0.048268
0.0189922
0.0501819
0.0175713
0.052309
0.0161448
0.0546879
0.014715
0.0573625
0.013285
0.0603814
0.0118585
0.063796
0.0104401
0.0676579
0.00903554
0.0720144
0.00765236
0.0769026
0.00630069
0.0823402
0.00499458
0.0883135
0.00375395
0.0947599
0.00260721
0.101544
0.00159456
0.108424
0.000771666
0.115005
0.000212167
0.12066
0.124477
0.0231689
0.0463228
-0.0245457
0.0217808
0.0479206
0.0203824
0.0496664
0.0189743
0.05159
0.0175579
0.0537253
0.016135
0.0561108
0.0147079
0.0587896
0.0132794
0.0618098
0.0118534
0.065222
0.0104346
0.0690768
0.00902873
0.0734202
0.00764381
0.0782875
0.00629035
0.0836937
0.00498302
0.0896209
0.0037424
0.0960005
0.00259761
0.102689
0.00158919
0.109433
0.0007719
0.115823
0.000215468
0.121216
0.124692
0.0230966
0.047691
-0.0244649
0.0217167
0.0493005
0.0203258
0.0510573
0.0189248
0.052991
0.0175146
0.0551355
0.0160971
0.0575283
0.0146744
0.0602123
0.0132495
0.0632348
0.011826
0.0666455
0.0104088
0.070494
0.00900384
0.0748251
0.0076194
0.0796719
0.00626642
0.0850466
0.00496006
0.0909272
0.00372152
0.097239
0.00258038
0.10383
0.00157727
0.110436
0.000766092
0.116634
0.000214304
0.121768
0.124907
0.0229887
0.0490494
-0.024347
0.0216183
0.0506709
0.0202365
0.0524391
0.0188439
0.0543836
0.0174416
0.0565378
0.0160311
0.0589388
0.0146147
0.0616288
0.0131951
0.0646543
0.0117761
0.0680645
0.0103625
0.0719076
0.00896065
0.076227
0.0075789
0.0810537
0.00622862
0.0863969
0.00492547
0.0922304
0.00369115
0.0984733
0.00255563
0.104965
0.00155953
0.111432
0.000755995
0.117437
0.000210779
0.122313
0.125118
0.022846
0.0503966
-0.0241932
0.0214863
0.0520306
0.0201148
0.0538106
0.018732
0.0557664
0.0173389
0.0579309
0.0159371
0.0603406
0.0145286
0.0630373
0.0131162
0.0660668
0.0117036
0.069477
0.0102957
0.0733155
0.008899
0.0776237
0.00752213
0.0824306
0.0061768
0.0877422
0.00487913
0.093528
0.00365126
0.0997012
0.00252349
0.106093
0.00153638
0.112419
0.000742355
0.118231
0.000205668
0.12285
0.125323
0.0226692
0.0517319
-0.0240045
0.0213212
0.0533786
0.0199611
0.0551708
0.0185893
0.0571381
0.0172069
0.0593133
0.0158152
0.0617324
0.0144162
0.0644363
0.0130126
0.0674703
0.0116083
0.0708814
0.0102082
0.0747156
0.00881875
0.0790131
0.00744896
0.0838004
0.00611086
0.0890803
0.00482097
0.0948179
0.00360186
0.10092
0.00248407
0.107211
0.0015081
0.113395
0.000725651
0.119014
0.000199434
0.123376
0.125523
0.0224592
0.0530547
-0.023782
0.0211236
0.0547142
0.0197757
0.0565186
0.0184161
0.0584978
0.0170455
0.0606839
0.0156652
0.0631126
0.0142773
0.0658242
0.0128844
0.0688632
0.0114903
0.0722755
0.0100998
0.0761061
0.00871976
0.0803931
0.00735927
0.0851608
0.00603071
0.0904089
0.00475096
0.0960977
0.00354297
0.102128
0.00243752
0.108316
0.00147496
0.114357
0.000706255
0.119782
0.000192355
0.12389
0.125715
0.0222166
0.0543648
-0.0235266
0.0208938
0.0560371
0.0195589
0.0578535
0.0182122
0.0598444
0.0168545
0.0620416
0.0154871
0.06448
0.0141118
0.0671995
0.0127313
0.0702437
0.0113491
0.0736577
0.00997038
0.0774848
0.00860189
0.0817616
0.00725296
0.0865098
0.00593628
0.0917256
0.00466909
0.0973649
0.00347466
0.103323
0.00238397
0.109407
0.00143718
0.115304
0.000684415
0.120535
0.000184575
0.12439
0.1259
0.0219415
0.0556623
-0.023239
0.0206317
0.0573468
0.0193102
0.059175
0.0179774
0.0611773
0.0166338
0.0633852
0.0152805
0.0658333
0.0139194
0.0685607
0.0125529
0.0716102
0.0111847
0.0750259
0.00981974
0.0788498
0.00846499
0.0831164
0.00712993
0.0878448
0.00582754
0.093028
0.00457537
0.098617
0.00339701
0.104501
0.00232356
0.11048
0.00139495
0.116233
0.000660297
0.12127
0.000176165
0.124874
0.126076
0.0216336
0.0569477
-0.022919
0.0203368
0.0586437
0.0190292
0.0604826
0.0177109
0.0624956
0.0163825
0.0647136
0.0150448
0.0671709
0.0136995
0.069906
0.012349
0.0729607
0.0109967
0.0763782
0.00964766
0.0801988
0.00830892
0.0844551
0.00699011
0.0891636
0.00570446
0.0943136
0.00446984
0.0998516
0.0033101
0.105661
0.00225643
0.111534
0.00134842
0.117141
0.000634026
0.121984
0.000167172
0.125341
0.126243
0.0212916
0.0582218
-0.0225658
0.0200076
0.0599277
0.0187142
0.061776
0.0174115
0.0637983
0.0160995
0.0660256
0.0147791
0.0684914
0.0134515
0.0712336
0.0121189
0.0742933
0.0107847
0.0777124
0.00945392
0.0815296
0.00813355
0.0857755
0.00683346
0.0904637
0.00556708
0.09558
0.0043526
0.101066
0.00321408
0.106799
0.00218275
0.112565
0.00129775
0.118026
0.000605716
0.122676
0.00015763
0.125789
0.126401
0.0209126
0.0594857
-0.0221764
0.0196414
0.0611989
0.0183631
0.0630543
0.0170772
0.0650842
0.0157834
0.0673193
0.0144822
0.0697926
0.0131745
0.0725413
0.0118622
0.0756056
0.0105485
0.0790261
0.00923832
0.0828398
0.00793884
0.087075
0.00666
0.0917426
0.0054155
0.0968245
0.00422377
0.102258
0.00310912
0.107914
0.00210271
0.113572
0.00124314
0.118885
0.000575495
0.123344
0.000147589
0.126217
0.126548
0.0204914
0.0607399
-0.0217456
0.0192337
0.0624566
0.0179721
0.0643159
0.0167052
0.0663511
0.0154322
0.0685923
0.0141529
0.071072
0.0128677
0.0738265
0.0115783
0.0768951
0.0102877
0.0803166
0.00900081
0.0841266
0.00772481
0.088351
0.00646985
0.0929975
0.00524988
0.0980445
0.0040836
0.103424
0.00299547
0.109002
0.00201657
0.114551
0.0011848
0.119717
0.000543532
0.123985
0.000137114
0.126623
0.126685
0.0200202
0.0619837
-0.021264
0.0187784
0.0636984
0.0175367
0.0655576
0.0162925
0.0675953
0.0150438
0.0698409
0.0137898
0.072326
0.0125304
0.075086
0.0112669
0.0781585
0.0100023
0.0815812
0.00874149
0.0853875
0.00749169
0.0896008
0.00626329
0.0942259
0.00507054
0.0992372
0.0039324
0.104562
0.00287347
0.110061
0.00192467
0.1155
0.00112306
0.120519
0.000510063
0.124598
0.000126317
0.127007
0.126812
0.019487
0.0632136
-0.0207169
0.0182668
0.0649186
0.0170512
0.0667732
0.0158355
0.068811
0.0146164
0.07106
0.0133922
0.0735503
0.0121624
0.0763157
0.0109283
0.0793926
0.00969278
0.0828167
0.0084608
0.0866195
0.00723991
0.0908217
0.00604076
0.0954251
0.0048779
0.1004
0.00377059
0.10567
0.00274355
0.111088
0.00182743
0.116416
0.00105832
0.121288
0.000475441
0.125181
0.000115387
0.127367
0.126927
0.0188755
0.0644193
-0.0200812
0.0176889
0.0661051
0.0165106
0.0679515
0.0153324
0.0699892
0.0141497
0.0722427
0.0129606
0.0747394
0.0117647
0.0775116
0.0105634
0.0805939
0.00935993
0.0840202
0.00815956
0.0878198
0.00697019
0.092011
0.00580287
0.0965924
0.00467253
0.10153
0.00359871
0.106743
0.00260623
0.112081
0.00172539
0.117296
0.000991153
0.122022
0.000440221
0.125732
0.000104684
0.127703
0.127032
0.0181648
0.0655743
-0.0193198
0.0170357
0.0672341
0.0159128
0.0690744
0.0147841
0.071118
0.0136458
0.073381
0.0124974
0.0758879
0.0113395
0.0786696
0.0101741
0.0817592
0.00900533
0.085189
0.00783898
0.0889862
0.00668351
0.0931665
0.00555043
0.0977255
0.0044551
0.102626
0.00341736
0.107781
0.00246209
0.113036
0.00161918
0.118139
0.000922302
0.122719
0.000405313
0.126249
9.49706e-05
0.128013
0.127127
0.0173307
0.0666148
-0.0183711
0.0163078
0.068257
0.015268
0.0701143
0.0142016
0.0721844
0.0131141
0.0744685
0.0120097
0.0769922
0.0108917
0.0797876
0.00976388
0.082887
0.00863134
0.0863216
0.00750073
0.0901168
0.00638106
0.0942862
0.00528434
0.0988222
0.00422634
0.103684
0.00322719
0.10878
0.0023118
0.113951
0.00150956
0.118942
0.000852764
0.123376
0.000372229
0.12673
8.80502e-05
0.128297
0.127215
0.0163556
-0.0171423
0.0155234
0.0145887
0.0135926
0.0125602
0.0115019
0.0104248
0.00933531
0.00823993
0.00714627
0.00606394
0.00500543
0.00398689
0.00302871
0.0021558
0.00139701
0.000783235
0.00034266
8.82527e-05
0.0152207
0.0170685
-0.0157904
-0.0164987
0.0140665
0.0185791
-0.0174249
0.0130129
0.0203527
-0.019299
0.0120165
0.0223824
-0.021386
0.011056
0.0246825
-0.0237219
0.010122
0.0272864
-0.0263524
0.00920976
0.0302346
-0.0293224
0.00831625
0.0335718
-0.0326783
0.00743915
0.0373474
-0.0364703
0.00657664
0.041614
-0.0407514
0.00572742
0.0464268
-0.0455776
0.00489121
0.0518428
-0.0510066
0.00406948
0.0579178
-0.0570961
0.00326651
0.0647037
-0.0639007
0.00249086
0.0722418
-0.0714662
0.00175729
0.080553
-0.0798194
0.0010896
0.0896214
-0.0889537
0.000525728
0.099366
-0.0988022
0.00012987
0.109583
-0.109188
0.119898
-0.119768
0.0160619
0.018299
-0.0172924
0.0148725
0.0197685
0.0137404
0.0214848
0.0126617
0.0234611
0.0116259
0.0257182
0.010625
0.0282874
0.00965281
0.0312067
0.00870487
0.0345198
0.00777769
0.0382746
0.00686868
0.042523
0.00597612
0.0473194
0.00509956
0.0527193
0.00424047
0.0587769
0.00340333
0.0655409
0.00259711
0.073048
0.00183741
0.0813127
0.00114945
0.0903093
0.000572394
0.0999431
0.000164619
0.109991
0.120063
0.0168113
0.0195112
-0.0180236
0.0156043
0.0209755
0.0144277
0.0226614
0.0132901
0.0245987
0.0121915
0.0268168
0.0111289
0.02935
0.0100984
0.0322373
0.009096
0.0355221
0.00811826
0.0392523
0.00716223
0.043479
0.00622593
0.0482557
0.00530871
0.0536366
0.00441199
0.0596736
0.00354034
0.0664125
0.00270297
0.0738854
0.00191587
0.0820998
0.00120468
0.0910205
0.000608159
0.10054
0.000181627
0.110418
0.120244
0.0174917
0.0207291
-0.0187095
0.0162708
0.0221964
0.015065
0.0238672
0.0138853
0.0257783
0.012737
0.0279651
0.0116214
0.0304656
0.0105377
0.033321
0.00948374
0.0365761
0.00845683
0.0402792
0.00745445
0.0444814
0.0064747
0.0492355
0.00551691
0.0545944
0.00458252
0.060608
0.00367613
0.0673189
0.00280708
0.0747545
0.00199156
0.0829153
0.00125535
0.0917567
0.000637121
0.101158
0.000192283
0.110863
0.120437
0.0181224
0.0219612
-0.0193545
0.0168856
0.0234331
0.015656
0.0250968
0.0144436
0.0269907
0.0132553
0.0291535
0.012095
0.0316259
0.0109642
0.0344517
0.00986282
0.0376775
0.00878944
0.0413526
0.00774237
0.0455284
0.00672015
0.0502577
0.00572239
0.0555921
0.00475061
0.0615798
0.00380953
0.06826
0.00290863
0.0756554
0.00206425
0.0837597
0.00130237
0.0925186
0.000662053
0.101798
0.000200041
0.111325
0.120637
0.0187121
0.023211
-0.0199619
0.0174573
0.0246879
0.0162058
0.0263483
0.0149658
0.0282308
0.013744
0.0303752
0.0125455
0.0328244
0.0113735
0.0356238
0.0102291
0.0388218
0.00911263
0.0424691
0.0080232
0.0466179
0.00696013
0.0513207
0.00592343
0.0566288
0.00491494
0.0625883
0.00393956
0.0692354
0.00300697
0.0765879
0.00213373
0.0846329
0.00134617
0.0933062
0.00068407
0.10246
0.00020611
0.111803
0.120843
0.0192648
0.02448
-0.0205337
0.0179911
0.0259616
0.0167185
0.0276209
0.0154537
0.0294956
0.0142029
0.0316261
0.0129712
0.034056
0.0117627
0.0368323
0.0105798
0.0400048
0.00942366
0.0436253
0.00829458
0.0477469
0.00719264
0.0524227
0.00611845
0.057703
0.00507427
0.0636325
0.00406531
0.0702443
0.00310152
0.0775517
0.0021998
0.0855346
0.00138697
0.094119
0.000703834
0.103143
0.000211183
0.112295
0.121054
0.0197823
0.0257681
-0.0210704
0.0184896
0.0272543
0.0171967
0.0289137
0.0159092
0.0307831
0.0146324
0.0329029
0.0133714
0.035317
0.0121305
0.0380732
0.0109129
0.0412224
0.00972047
0.0448177
0.00855455
0.0489129
0.00741598
0.0535613
0.00630604
0.0588129
0.00522748
0.064711
0.00418595
0.0712858
0.00319177
0.0785459
0.00226227
0.0864641
0.00142495
0.0949563
0.000721791
0.103847
0.000215639
0.112801
0.121269
0.0202651
0.0270747
-0.0215716
0.018954
0.0285654
0.0176419
0.0302257
0.0163333
0.0320917
0.0150331
0.0342031
0.0137458
0.0366042
0.0124759
0.0393431
0.0112269
0.0424715
0.0100015
0.0460431
0.00880155
0.0501128
0.00762871
0.0547341
0.00648494
0.0599567
0.00537357
0.0658224
0.00430075
0.0723587
0.00327724
0.0795694
0.00232097
0.0874204
0.0014602
0.0958171
0.00073818
0.104569
0.000219643
0.11332
0.121489
0.020713
0.0283984
-0.0220367
0.0193847
0.0298938
0.0180546
0.0315558
0.0167267
0.0334196
0.0154052
0.0355247
0.0140943
0.037915
0.0127984
0.040639
0.0115211
0.0437487
0.0102656
0.0472986
0.00903433
0.051344
0.00782965
0.0559388
0.00665412
0.0611322
0.00551168
0.0669648
0.00440903
0.0734613
0.00335752
0.0806209
0.00237569
0.0884022
0.00149272
0.0967001
0.000753093
0.105308
0.000223242
0.11385
0.121712
0.0211257
0.0297376
-0.022465
0.0197816
0.0312379
0.0184351
0.0329022
0.0170896
0.0347651
0.0157488
0.0368655
0.0144167
0.0392472
0.0130973
0.0419584
0.0117946
0.0450515
0.0105118
0.0485814
0.0092519
0.0526039
0.0080178
0.0571729
0.00681267
0.0623374
0.00564105
0.0681364
0.00451025
0.0745921
0.00343222
0.081699
0.00242626
0.0894082
0.00152245
0.0976039
0.000766548
0.106064
0.000226438
0.11439
0.121939
0.0215027
0.0310905
-0.0228557
0.0201445
0.0325961
0.0187833
0.0342635
0.017422
0.0361265
0.0160639
0.0382236
0.0147128
0.0405983
0.0133725
0.0432987
0.0120468
0.0463772
0.0107394
0.0498889
0.00945347
0.0538898
0.00819236
0.058434
0.00695983
0.0635699
0.00576103
0.0693352
0.00460388
0.0757493
0.00350101
0.0828018
0.00247247
0.0904367
0.00154933
0.098527
0.000778527
0.106835
0.000229213
0.114939
0.122168
0.0218434
0.0324553
-0.0232081
0.0204729
0.0339665
0.0190988
0.0356376
0.0177236
0.0375017
0.0163503
0.0395969
0.0149823
0.0419662
0.0136235
0.0446575
0.0122774
0.0477232
0.0109478
0.0512185
0.00963834
0.0551993
0.00835263
0.0597197
0.00709496
0.0648276
0.00587106
0.0705591
0.00468949
0.0769308
0.00356357
0.0839277
0.00251416
0.0914861
0.00157329
0.0994679
0.000789008
0.107619
0.000231558
0.115497
0.1224
0.0221473
0.0338299
-0.0235219
0.0207665
0.0353473
0.0193813
0.0370228
0.0179941
0.0388889
0.0166076
0.0409834
0.015225
0.0433488
0.0138499
0.0460327
0.0124858
0.0490873
0.0111366
0.0525677
0.00980596
0.0565299
0.00849803
0.0610276
0.00721751
0.0661081
0.00597067
0.071806
0.0047667
0.0781348
0.00361965
0.0850748
0.00255118
0.0925546
0.00159426
0.100425
0.00079798
0.108415
0.000233468
0.116061
0.122633
0.0224139
0.0352123
-0.0237964
0.0210248
0.0367365
0.0196306
0.038417
0.0182334
0.0402861
0.0168357
0.0423811
0.0154406
0.0447439
0.0140514
0.0474219
0.0126716
0.0504671
0.0113051
0.0539342
0.00995583
0.0578792
0.00862807
0.0623554
0.007327
0.0674092
0.00605944
0.0730735
0.0048352
0.0793591
0.00366903
0.086241
0.00258341
0.0936402
0.00161223
0.101396
0.000805466
0.109222
0.000234966
0.116632
0.122868
0.022643
0.0366006
-0.0240313
0.0212475
0.038132
0.0198462
0.0398183
0.018441
0.0416913
0.0170343
0.0437878
0.0156288
0.0461494
0.0142277
0.048823
0.0128346
0.0518602
0.0114532
0.0553156
0.0100875
0.0592448
0.0087423
0.0637006
0.00742303
0.0687284
0.00613702
0.0743595
0.0048947
0.0806014
0.00371153
0.0874241
0.0026108
0.0947409
0.00162722
0.10238
0.000811552
0.110038
0.000236121
0.117207
0.123104
0.0228342
0.0379927
-0.0242263
0.0214343
0.0395319
0.0200279
0.0412247
0.0186168
0.0431024
0.017203
0.0452015
0.0157893
0.0475631
0.0143786
0.0502337
0.0129743
0.0532645
0.0115803
0.0567097
0.0102007
0.0606244
0.00884036
0.0650609
0.00750524
0.0700636
0.00620311
0.0756617
0.00494498
0.0818595
0.00374704
0.0886221
0.00263333
0.0958547
0.00163934
0.103374
0.000816439
0.110861
0.000237099
0.117786
0.123341
0.0229873
0.0393867
-0.0243813
0.021585
0.0409342
0.0201755
0.0426342
0.0187604
0.0445175
0.0173417
0.0466202
0.0159219
0.048983
0.0145037
0.0516519
0.0130905
0.0546776
0.0116862
0.058114
0.0102949
0.0620156
0.00892191
0.066434
0.00757331
0.0714122
0.00625742
0.0769776
0.00498585
0.0831311
0.00377547
0.0898325
0.00265105
0.0969791
0.00164881
0.104376
0.000820531
0.111689
0.000238296
0.118369
0.12358
0.0231023
0.0407806
-0.0244962
0.0216996
0.042337
0.020289
0.0440448
0.0188719
0.0459345
0.0174503
0.0480418
0.0160263
0.050407
0.0146028
0.0530755
0.0131829
0.0560975
0.0117706
0.0595264
0.01037
0.0634161
0.00898665
0.0678174
0.00762696
0.0727719
0.00629972
0.0783048
0.00501713
0.0844137
0.00379674
0.0910529
0.00266406
0.0981118
0.00165599
0.105384
0.000824575
0.11252
0.000240707
0.118953
0.12382
0.0231794
-0.0245712
0.021778
0.0203682
0.0189511
0.0175285
0.0161025
0.0146757
0.0132513
0.0118332
0.0104256
0.00903423
0.00766585
0.0063297
0.00503858
0.00381073
0.00267244
0.00166125
0.000829699
0.000246999
-0.0147455
0.0141621
-0.015207
-0.0138615
0.0134732
-0.0143572
-0.0130529
0.0127205
-0.0135291
-0.0123029
0.0119254
-0.0126754
-0.011612
0.0111227
-0.0118136
-0.010982
0.0103283
-0.0109583
-0.010415
0.00955137
-0.0101184
-0.00991251
0.00879819
-0.00930068
-0.00947537
0.00807368
-0.00851082
-0.00910357
0.00738167
-0.00775347
-0.00879636
0.0067252
-0.0070324
-0.00855231
0.00610646
-0.00635051
-0.00836938
0.00552683
-0.00570977
-0.00824499
0.00498677
-0.00511115
-0.00817621
0.00448583
-0.00455461
-0.00815978
0.00402262
-0.00403904
-0.00819231
0.0035948
-0.00356228
-0.00827032
0.00319912
-0.0031211
-0.00839046
0.00283145
-0.00271131
0.00248688
-0.00854957
-0.00232777
-0.0164911
0.0132283
-0.0156011
0.0125831
-0.0147764
0.0118958
-0.0140197
0.0111688
-0.0133293
0.0104322
-0.012704
0.00970303
-0.0121437
0.00899114
-0.0116486
0.00830309
-0.0112184
0.00764344
-0.0108523
0.00701557
-0.010549
0.00642193
-0.0103068
0.0058642
-0.0101232
0.00534326
-0.00999561
0.00485917
-0.00992094
0.00441117
-0.00989597
0.00399764
-0.00991734
0.00361617
-0.00998174
0.00326352
-0.010086
0.00293569
0.00262804
-0.0102271
-0.0183811
0.0123103
-0.0175051
0.0117071
-0.0166857
0.0110764
-0.0159329
0.010416
-0.0152476
0.00974695
-0.0146289
0.00908434
-0.0140759
0.00843814
-0.0135878
0.00781492
-0.0131634
0.00721906
-0.0128014
0.00665361
-0.0125001
0.00612064
-0.0122574
0.00562141
-0.0120705
0.00515643
-0.0119368
0.00472545
-0.0118531
0.00432748
-0.0118163
0.0039608
-0.011823
0.00362293
-0.0118702
0.00331071
-0.0119549
0.00302035
0.00274749
-0.0120743
-0.0204821
0.0114064
-0.0196219
0.0108469
-0.0188156
0.0102701
-0.0180729
0.00967322
-0.0173962
0.00907024
-0.0167853
0.00847353
-0.0162394
0.00789224
-0.0157571
0.00733261
-0.0153369
0.00679879
-0.0149768
0.00629355
-0.0146748
0.00581867
-0.0144285
0.0053751
-0.0142352
0.00496308
-0.0140919
0.00458214
-0.0139955
0.00423116
-0.0139431
0.00390832
-0.0139314
0.00361122
-0.0139575
0.0033368
-0.0140186
0.00308151
0.00284129
-0.0141124
-0.0228351
0.0105196
-0.0219927
0.0100044
-0.0212026
0.00948001
-0.0204727
0.0089434
-0.0198063
0.00840382
-0.0192038
0.00787096
-0.0186642
0.00735264
-0.018186
0.00685449
-0.0177676
0.00638031
-0.0174066
0.00593259
-0.0171008
0.00551284
-0.0168475
0.00512182
-0.0166439
0.00475954
-0.0164872
0.00442542
-0.0163743
0.00411824
-0.0163022
0.00383621
-0.016268
0.003577
-0.0162689
0.00333773
-0.0163025
0.0031151
0.00290539
-0.0163666
-0.0254823
0.00964947
-0.0246579
0.00918006
-0.0238846
0.00870667
-0.0231685
0.00822727
-0.0225126
0.00774793
-0.0219176
0.007276
-0.0213828
0.00681788
-0.0209067
0.00637838
-0.0204873
0.00596086
-0.0201222
0.00556752
-0.019809
0.00519965
-0.019545
0.00485781
-0.0193274
0.0045419
-0.0191532
0.00425126
-0.0190196
0.00398465
-0.0189238
0.00374036
-0.0188629
0.00351616
-0.0188346
0.00330942
-0.0188366
0.00311707
0.00293578
-0.018867
-0.0284682
0.0087953
-0.0276607
0.00837254
-0.0269031
0.00794908
-0.0261998
0.00752402
-0.0255535
0.00710155
-0.0249646
0.00668712
-0.0244325
0.00628581
-0.0239557
0.0059016
-0.0235322
0.00553733
-0.0231596
0.00519489
-0.0228353
0.00487538
-0.0225567
0.0045792
-0.022321
0.00430618
-0.0221254
0.00405563
-0.0219671
0.00382636
-0.0218435
0.00361675
-0.021752
0.00342474
-0.0216905
0.00324792
-0.021657
0.00308353
0.0029286
-0.0216498
-0.0318394
0.00795633
-0.031047
0.00758015
-0.0303032
0.00720529
-0.0296109
0.00683179
-0.0289721
0.00646269
-0.028387
0.00610206
-0.027855
0.00575382
-0.0273746
0.00542116
-0.0269437
0.00510642
-0.02656
0.00481119
-0.0262209
0.00453635
-0.025924
0.00428222
-0.0256663
0.00404857
-0.0254454
0.00383473
-0.0252587
0.00363958
-0.0251036
0.00346164
-0.0249779
0.00329904
-0.0248795
0.00314961
-0.0248069
0.00301091
0.0028803
-0.0247586
-0.0356454
0.00713143
-0.0348662
0.00680089
-0.0341338
0.0064729
-0.0334501
0.00614811
-0.0328162
0.00582885
-0.0322324
0.00551818
-0.0316976
0.00521907
-0.0312105
0.00493402
-0.030769
0.00466493
-0.0303708
0.00441307
-0.0300137
0.00417917
-0.0296949
0.00396345
-0.029412
0.00376568
-0.0291625
0.00358521
-0.028944
0.00342104
-0.0287542
0.00327183
-0.0285911
0.00313593
-0.0284529
0.00301143
-0.0283381
0.00289618
0.00278789
-0.0282457
-0.0399393
0.00631926
-0.0391711
0.00603275
-0.0384477
0.00574949
-0.0377701
0.00547044
-0.0371387
0.00519747
-0.0365534
0.00493288
-0.0360132
0.00467891
-0.0355167
0.00443749
-0.0350619
0.00421012
-0.0346466
0.00399781
-0.0342686
0.00380114
-0.0339254
0.00362025
-0.0336146
0.00345492
-0.033334
0.00330458
-0.0330813
0.00316833
-0.0328544
0.003045
-0.0326517
0.00293316
-0.0324714
0.00283114
-0.0323123
0.00273713
0.00264915
-0.0321736
-0.0447771
0.0055187
-0.0440185
0.00527414
-0.0433021
0.00503312
-0.0426284
0.00479675
-0.0419974
0.00456653
-0.0414088
0.00434419
-0.0408613
0.00413143
-0.0403535
0.00392972
-0.0398836
0.00374021
-0.0394495
0.0035637
-0.039049
0.00340063
-0.0386799
0.0032511
-0.0383398
0.00311491
-0.0380268
0.00299155
-0.0377388
0.00288026
-0.0374738
0.00278004
-0.0372303
0.00268967
-0.0370069
0.00260775
-0.0368025
0.00253274
0.00246302
-0.0366164
-0.0502174
0.00472953
-0.0494677
0.00452445
-0.0487575
0.00432296
-0.0480869
0.00412612
-0.0474556
0.00393517
-0.0468628
0.0037514
-0.0463074
0.00357608
-0.045788
0.0034103
-0.0453027
0.00325496
-0.0448497
0.00311065
-0.0444268
0.00297772
-0.0440319
0.00285624
-0.043663
0.00274602
-0.0433181
0.00264664
-0.0429953
0.00255746
-0.0426929
0.00247765
-0.0424094
0.00240619
-0.0421436
0.00234194
-0.0418945
0.00228365
0.00223003
-0.0416615
-0.0563197
0.00395319
-0.0555802
0.00378488
-0.0548773
0.00362003
-0.0542107
0.00345961
-0.0535801
0.00330455
-0.0529846
0.00315583
-0.0524229
0.00301437
-0.0518935
0.00288098
-0.0513949
0.00275632
-0.0509251
0.00264083
-0.0504822
0.00253479
-0.0500641
0.00243822
-0.0496691
0.00235098
-0.0492952
0.00227271
-0.0489406
0.0022029
-0.0486038
0.00214086
-0.0482834
0.00208579
-0.0479782
0.00203676
-0.0476874
0.00199279
0.00195294
-0.0474103
-0.0631414
0.00319387
-0.062416
0.00305941
-0.0617242
0.00292826
-0.0610657
0.00280115
-0.0604399
0.00267876
-0.0598459
0.00256179
-0.0592824
0.00245086
-0.0587479
0.00234655
-0.058241
0.00224933
-0.0577596
0.00215952
-0.0573022
0.00207732
-0.0568667
0.00200275
-0.0564514
0.00193567
-0.0560545
0.00187582
-0.0556744
0.00182275
-0.0553094
0.00177593
-0.0549584
0.00173472
-0.05462
0.00169838
-0.0542934
0.0016662
0.00163755
-0.053978
-0.0707321
0.00245981
-0.0700288
0.0023561
-0.0693561
0.00225561
-0.0687138
0.00215877
-0.068101
0.00206598
-0.0675168
0.00197763
-0.0669601
0.00189412
-0.0664294
0.00181582
-0.0659231
0.00174303
-0.0654396
0.001676
-0.0649771
0.00161483
-0.0645339
0.00155955
-0.0641082
0.00151004
-0.0636985
0.00146607
-0.063303
0.00142728
-0.0629203
0.00139323
-0.062549
0.00136341
-0.0621878
0.00133721
-0.0618358
0.00131411
0.00129382
-0.061492
-0.0791246
0.00176501
-0.0784571
0.00168865
-0.0778172
0.0016157
-0.0772046
0.00154609
-0.0766184
0.00147987
-0.076058
0.00141715
-0.0755219
0.00135809
-0.075009
0.00130288
-0.0745177
0.0012517
-0.0740464
0.0012047
-0.0735935
0.00116194
-0.0731574
0.00112344
-0.0727364
0.00108908
-0.072329
0.00105867
-0.0719336
0.0010319
-0.0715488
0.00100839
-0.071173
0.000987652
-0.070805
0.000969161
-0.0704432
0.00095236
0.000937141
-0.0700866
-0.0883202
0.0011315
-0.0877101
0.00107862
-0.0871242
0.00102981
-0.0865624
0.000984226
-0.086024
0.000941462
-0.0855081
0.000901295
-0.0850137
0.00086367
-0.0845394
0.000828621
-0.0840839
0.00079622
-0.0836458
0.000766541
-0.0832235
0.000739626
-0.0828155
0.00071547
-0.0824204
0.000693994
-0.0820368
0.00067503
-0.0816632
0.000658297
-0.0812982
0.000643403
-0.0809404
0.000629859
-0.0805882
0.000617019
-0.0802398
0.000603925
0.000590076
-0.0798927
-0.0982631
0.000592429
-0.0977427
0.000558241
-0.0972426
0.000529712
-0.096763
0.000504573
-0.0963032
0.000481722
-0.0958625
0.000460604
-0.0954398
0.000440982
-0.095034
0.000422778
-0.0946438
0.000405994
-0.0942679
0.000390659
-0.0939051
0.000376801
-0.093554
0.000364423
-0.0932135
0.000353486
-0.0928824
0.000343875
-0.0925594
0.00033536
-0.0922436
0.000327553
-0.0919336
0.000319907
-0.0916282
0.000311576
-0.091325
0.000300722
0.000284681
-0.0910196
-0.108789
0.000193753
-0.108405
0.000174212
-0.108038
0.000162335
-0.107686
0.000153386
-0.10735
0.00014582
-0.107029
0.000139043
-0.106721
0.000132825
-0.106425
0.000127081
-0.106141
0.000121794
-0.105867
0.000116974
-0.105603
0.000112639
-0.105347
0.000108808
-0.105099
0.000105481
-0.104858
0.00010263
-0.104623
0.000100145
-0.104393
9.77812e-05
-0.104168
9.51053e-05
-0.103948
9.13679e-05
-0.103732
8.44777e-05
6.76027e-05
-0.103515
-0.119574
-0.1194
-0.119238
-0.119084
-0.118939
-0.1188
-0.118667
-0.11854
-0.118418
-0.118301
-0.118188
-0.118079
-0.117974
-0.117871
-0.117771
-0.117673
-0.117578
-0.117487
-0.117402
-0.117335
-0.00874551
0.00216304
-0.00196709
-0.0089752
0.00184716
-0.00161747
-0.0092368
0.00153588
-0.00127429
-0.00952909
0.00122231
-0.000930018
-0.00985155
0.000899426
-0.000576965
-0.0102044
0.000560334
-0.000207507
-0.0105885
0.000198392
0.000185711
-0.0110055
-0.00019258
0.000609552
-0.0114575
-0.000618145
0.00107022
-0.0119475
-0.00108315
0.00157313
-0.0124786
-0.00159162
0.00212275
-0.0130545
-0.00214662
0.0027225
-0.013679
-0.00275025
0.00337472
-0.014356
-0.00340361
0.0040806
-0.0150893
-0.00410684
0.00484016
-0.0158823
-0.00485938
0.00565237
-0.016737
-0.00566104
0.00651573
-0.017655
-0.00651345
0.00743142
-0.0186555
-0.00742276
0.0084233
-0.00848251
-0.0197209
0.0095479
-0.0104035
0.00233934
-0.010612
0.00205569
-0.0108512
0.00177507
-0.0111201
0.00149121
-0.0114184
0.00119778
-0.0117466
0.000888557
-0.0121058
0.000557582
-0.0124977
0.000199318
-0.0129247
-0.000191206
-0.0133895
-0.000618316
-0.0138955
-0.00108563
-0.0144462
-0.00159593
-0.0150453
-0.00215118
-0.0156964
-0.0027525
-0.0164028
-0.00340038
-0.0171671
-0.00409511
-0.0179899
-0.00483826
-0.0188685
-0.00563481
-0.0197925
-0.00649877
-0.00751866
-0.0207564
-0.0122272
0.00249224
-0.0124108
0.00223923
-0.0126236
0.00198796
-0.0128652
0.00173277
-0.0131354
0.00146797
-0.0134348
0.00118799
-0.0137647
0.000887499
-0.014127
0.000561543
-0.0145239
0.000205682
-0.0149582
-0.000183966
-0.0154332
-0.000610686
-0.015952
-0.0010771
-0.016518
-0.00158515
-0.0171343
-0.00213625
-0.0178031
-0.00273153
-0.0185256
-0.00337257
-0.0193008
-0.00406307
-0.0201246
-0.00481104
-0.0209892
-0.0056342
-0.00659447
-0.0219134
-0.0142379
0.00261778
-0.0143925
0.00239381
-0.0145751
0.00217056
-0.0147853
0.00194295
-0.0150232
0.0017059
-0.0152897
0.00145443
-0.015586
0.00118378
-0.0159139
0.000889526
-0.0162759
0.000567682
-0.0166746
0.000214732
-0.017113
-0.00017237
-0.0175939
-0.000596175
-0.0181203
-0.00105877
-0.0186945
-0.00156197
-0.0193184
-0.00210769
-0.0199922
-0.00269872
-0.0207151
-0.00334018
-0.0214851
-0.00404108
-0.0223021
-0.00481722
-0.00570519
-0.0231913
-0.0164608
0.00271196
-0.0165824
0.00251543
-0.0167307
0.00231886
-0.0169054
0.00211772
-0.017107
0.00190746
-0.0173362
0.00168366
-0.0175945
0.00144208
-0.0178838
0.00117876
-0.0182062
0.000890095
-0.0185643
0.000572851
-0.0189608
0.000224158
-0.0193985
-0.000158534
-0.0198797
-0.000577502
-0.0204067
-0.00103497
-0.0209809
-0.0015335
-0.021603
-0.00207662
-0.0222734
-0.00266986
-0.022993
-0.00332138
-0.0237675
-0.00404281
-0.0048527
-0.02462
-0.0189258
0.0027708
-0.0190105
0.00260015
-0.0191206
0.0024289
-0.0192559
0.00225305
-0.019417
0.00206858
-0.0196049
0.00187154
-0.019821
0.00165816
-0.0200671
0.00142488
-0.0203455
0.00116842
-0.0206584
0.00088578
-0.0210084
0.000574216
-0.0213981
0.000231173
-0.0218299
-0.000145787
-0.0223057
-0.000559176
-0.0228273
-0.00101189
-0.0233962
-0.00150768
-0.0240144
-0.00205162
-0.0246857
-0.00265008
-0.0254182
-0.00331039
-0.00404003
-0.0262308
-0.0216695
0.00279051
-0.0217135
0.00264416
-0.0217815
0.00249688
-0.0218736
0.00234514
-0.0219904
0.00218538
-0.022133
0.00201412
-0.0223028
0.00182798
-0.0225017
0.00162376
-0.0227317
0.00139846
-0.0229952
0.00114929
-0.0232946
0.000873626
-0.0236324
0.000568935
-0.0240109
0.000232714
-0.0244324
-0.000137653
-0.0248992
-0.0005451
-0.0254138
-0.000993121
-0.0259795
-0.00148587
-0.0266018
-0.0020278
-0.0272894
-0.00262279
-0.0032724
-0.028057
-0.0247357
0.00276762
-0.0247356
0.00264398
-0.024758
0.00251928
-0.0248033
0.00239042
-0.0248721
0.00225426
-0.0249657
0.00210771
-0.0250855
0.00194778
-0.0252334
0.00177158
-0.0254113
0.00157637
-0.0256215
0.00135956
-0.0258666
0.00111866
-0.0261489
0.000851225
-0.026471
0.000554801
-0.0268355
0.000226849
-0.0272452
-0.000135356
-0.0277035
-0.000534796
-0.0282148
-0.000974597
-0.0287851
-0.00145754
-0.0294226
-0.00198524
-0.00255652
-0.0301385
-0.0281773
0.00269917
-0.02813
0.00259666
-0.0281038
0.0024931
-0.0280992
0.00238582
-0.028117
0.00227205
-0.0281583
0.00214909
-0.0282248
0.00201425
-0.0283182
0.00186497
-0.0284406
0.00169874
-0.0285942
0.00151318
-0.0287815
0.00130597
-0.0290051
0.00107483
-0.0292677
0.000817448
-0.0295724
0.000531498
-0.0299224
0.000214605
-0.0303215
-0.000135615
-0.0307748
-0.000521365
-0.0312881
-0.000944224
-0.0318689
-0.00140447
-0.00190003
-0.0325254
-0.0320574
0.00258298
-0.0319607
0.00249993
-0.0318836
0.00241602
-0.0318267
0.00232892
-0.0317909
0.00223624
-0.0317774
0.0021356
-0.0317878
0.00202465
-0.0318239
0.00190107
-0.0318878
0.00176264
-0.0319818
0.00160717
-0.0321084
0.00143257
-0.0322703
0.00123675
-0.0324705
0.00101763
-0.0327122
0.000773175
-0.032999
0.000501399
-0.0333351
0.00020048
-0.0337254
-0.000131072
-0.0341755
-0.000494059
-0.0346919
-0.000888125
-0.00131114
-0.0352808
-0.0364514
0.00241798
-0.0363041
0.00235264
-0.0361748
0.00228674
-0.0360642
0.00221829
-0.0359732
0.00214524
-0.0359031
0.00206551
-0.0358555
0.00197704
-0.0358322
0.0018778
-0.0358354
0.00176581
-0.0358674
0.00163914
-0.0359307
0.00149589
-0.0360282
0.00133424
-0.0361629
0.00115236
-0.0363382
0.000948521
-0.036558
0.000721118
-0.0368263
0.000468778
-0.0371479
0.000190515
-0.0375279
-0.000114036
-0.0379717
-0.000444299
-0.000798436
-0.0384844
-0.0414482
0.00220465
-0.0412507
0.00215512
-0.0410694
0.00210542
-0.040905
0.00205389
-0.0407585
0.00199878
-0.0406313
0.0019383
-0.0405249
0.00187067
-0.0404413
0.00179415
-0.0403825
0.00170699
-0.0403508
0.00160751
-0.040349
0.00149406
-0.0403798
0.00136504
-0.0404464
0.00121892
-0.0405521
0.00105424
-0.0407007
0.000869723
-0.0408962
0.000664321
-0.0411431
0.000437367
-0.0414458
0.000188707
-0.041809
-8.10766e-05
-0.000370503
-0.042237
-0.0471513
0.00194567
-0.046906
0.00190981
-0.0466749
0.00187428
-0.0464586
0.00183767
-0.0462584
0.00179852
-0.0460754
0.00175533
-0.0459113
0.00170657
-0.0457679
0.00165076
-0.0456473
0.00158642
-0.0455519
0.0015121
-0.0454843
0.00142639
-0.0454472
0.00132795
-0.0454437
0.00121547
-0.0454772
0.00108776
-0.0455513
0.000943759
-0.0456696
0.000782669
-0.0458363
0.00060399
-0.0460552
0.000407641
-0.0463304
0.000194122
-3.53759e-05
-0.0466655
-0.053679
0.00164668
-0.0533913
0.00162213
-0.0531155
0.00159843
-0.0528522
0.00157444
-0.0526026
0.00154893
-0.052368
0.00152065
-0.0521498
0.00148836
-0.0519498
0.00145079
-0.0517701
0.00140674
-0.051613
0.00135498
-0.051481
0.00129435
-0.0513767
0.00122372
-0.0513033
0.001142
-0.0512637
0.0010482
-0.0512614
0.000941438
-0.0512998
0.000821035
-0.0513823
0.000686565
-0.0515126
0.000537932
-0.051694
0.000375517
0.00020034
-0.0519297
-0.0611627
0.0013174
-0.0608421
0.00130148
-0.0605307
0.00128701
-0.0602292
0.001273
-0.0599388
0.00125844
-0.0596604
0.00124229
-0.0593956
0.00122355
-0.059146
0.00120123
-0.0589136
0.00117432
-0.0587005
0.00114187
-0.058509
0.00110291
-0.0583419
0.00105654
-0.0582017
0.00100186
-0.0580915
0.000938015
-0.0580143
0.000864245
-0.0579732
0.000779917
-0.0579712
0.00068459
-0.0580114
0.000578063
-0.0580964
0.000460533
0.000332936
-0.058229
-0.069742
0.000972891
-0.0694033
0.000962735
-0.069071
0.000954678
-0.0687457
0.000947761
-0.0684284
0.000941121
-0.06812
0.000933925
-0.0678219
0.000925378
-0.0675353
0.000914715
-0.0672622
0.000901188
-0.0670044
0.000884065
-0.0667641
0.00086262
-0.0665437
0.000836126
-0.0663457
0.000803871
-0.0661728
0.000765134
-0.0660278
0.000719208
-0.0659133
0.000665439
-0.065832
0.000603282
-0.0657863
0.000532302
-0.065778
0.000452281
0.000363951
-0.065809
-0.0795549
0.000635099
-0.07922
0.0006278
-0.0788887
0.000623344
-0.0785615
0.000620595
-0.0782391
0.00061874
-0.0779223
0.000617092
-0.077612
0.000615049
-0.0773093
0.000612068
-0.0770158
0.000607638
-0.076733
0.00060126
-0.0764628
0.000592438
-0.0762073
0.000580663
-0.0759689
0.000565403
-0.0757498
0.00054608
-0.0755526
0.000522043
-0.0753798
0.000492576
-0.0752334
0.000456941
-0.0751154
0.000414282
-0.0750265
0.000363388
0.000303936
-0.0749665
-0.0907187
0.000334262
-0.0904181
0.0003272
-0.0901188
0.000324014
-0.0898212
0.000322934
-0.0895255
0.000323041
-0.0892321
0.000323732
-0.0889416
0.000324584
-0.0886548
0.000325262
-0.0883727
0.000325479
-0.0880964
0.000324968
-0.0878274
0.000323464
-0.0875674
0.000320691
-0.0873184
0.000316336
-0.0870823
0.000310023
-0.0868615
0.000301235
-0.0866582
0.000289255
-0.0864744
0.000273165
-0.0863117
0.000251616
-0.08617
0.000221698
0.000179173
-0.0860453
-0.103289
0.000108059
-0.103062
0.000100767
-0.102836
9.82998e-05
-0.102611
9.76714e-05
-0.102386
9.79132e-05
-0.102161
9.86044e-05
-0.101936
9.9528e-05
-0.101711
0.000100549
-0.101487
0.000101572
-0.101265
0.00010252
-0.101045
0.000103318
-0.100828
0.000103899
-0.100616
0.000104173
-0.10041
0.000104012
-0.100212
0.000103185
-0.100024
0.000101246
-0.0998479
9.74563e-05
-0.0996869
9.0576e-05
-0.0995423
7.71475e-05
4.57651e-05
-0.0994089
-0.117227
-0.117126
-0.117028
-0.11693
-0.116832
-0.116734
-0.116634
-0.116533
-0.116432
-0.116329
-0.116226
-0.116122
-0.116018
-0.115914
-0.115811
-0.11571
-0.115612
-0.115522
-0.115444
-0.115399
-0.000104825
-0.115294
-0.0002357
-0.099278
-0.000328117
-0.0859529
-0.00034284
-0.0749518
-0.000258133
-0.0658937
-6.55014e-05
-0.0584216
0.000235342
-0.0522306
0.000639929
-0.0470701
0.00114123
-0.0427383
0.00173106
-0.0390742
0.00240095
-0.0359506
0.00314278
-0.0332672
0.00394934
-0.030945
0.00481497
-0.0289226
0.00573661
-0.0271525
0.00671545
-0.0255988
0.00776027
-0.0242362
0.00889655
-0.0230496
0.0101855
-0.0220453
-0.0212732
0.0117378
-8.67759e-05
-0.115207
-0.000200817
-0.099164
-0.00026689
-0.0858868
-0.000244752
-0.0749739
-0.00011421
-0.0660243
0.000131795
-0.0586676
0.000492319
-0.0525911
0.00096193
-0.0475397
0.0015329
-0.0433093
0.00219657
-0.0397379
0.00294421
-0.0366983
0.00376759
-0.0340906
0.00465944
-0.0318369
0.00561398
-0.0298772
0.00662741
-0.0281659
0.00769861
-0.02667
0.00883004
-0.0253676
0.0100287
-0.0242483
0.0113006
-0.0233171
-0.0225946
0.012622
-7.57877e-05
-0.115131
-0.000169455
-0.0990703
-0.000205205
-0.085851
-0.000142835
-0.0750363
3.64664e-05
-0.0662036
0.000338325
-0.0589695
0.000760558
-0.0530133
0.0012967
-0.0480759
0.0019382
-0.0439507
0.00267569
-0.0404754
0.00349983
-0.0375224
0.00440168
-0.0349924
0.00537306
-0.0328083
0.00640662
-0.0309107
0.00749591
-0.0292552
0.00863516
-0.0278093
0.00981892
-0.0265513
0.0110406
-0.0254701
0.0122879
-0.0245643
-0.0238398
0.0135331
-6.681e-05
-0.115064
-0.00013883
-0.0989983
-0.00014182
-0.0858481
-3.67289e-05
-0.0751414
0.000193659
-0.066434
0.000553398
-0.0593292
0.00103895
-0.0534989
0.00164269
-0.0486796
0.00235507
-0.0446631
0.00316588
-0.0412862
0.00406487
-0.0384214
0.00504216
-0.0359697
0.00608834
-0.0338545
0.00719437
-0.0320168
0.00835138
-0.0304122
0.00955029
-0.0290082
0.0107811
-0.0277822
0.0120321
-0.026721
0.0132875
-0.0258198
-0.0250785
0.0145262
-5.83541e-05
-0.115006
-0.000107786
-0.0989489
-7.61505e-05
-0.0858797
7.37304e-05
-0.0752913
0.000357179
-0.0667174
0.000776516
-0.0597486
0.0013267
-0.0540491
0.00199886
-0.0493518
0.00278234
-0.0454466
0.00366593
-0.0421698
0.00463845
-0.0393939
0.00568903
-0.0370203
0.00680712
-0.0349725
0.00798237
-0.033192
0.00920434
-0.0316342
0.0104621
-0.030266
0.011744
-0.0290641
0.0130368
-0.0280138
0.0143255
-0.0271084
-0.0263461
0.015593
-4.98354e-05
-0.114956
-7.57179e-05
-0.098923
-7.8532e-06
-0.0859476
0.000188612
-0.0754877
0.00052684
-0.0670556
0.00100725
-0.060229
0.0016232
-0.054665
0.00236444
-0.050093
0.00321917
-0.0463013
0.00417516
-0.0431258
0.0052203
-0.0404391
0.00634281
-0.0381428
0.00753127
-0.036161
0.00877444
-0.0344352
0.010061
-0.0329207
0.0113793
-0.0315843
0.0127172
-0.0304019
0.0140614
-0.0293581
0.015398
-0.0284451
-0.0276605
0.0167125
-4.10059e-05
-0.114915
-4.23267e-05
-0.0989217
6.32373e-05
-0.0860531
0.00030789
-0.0757324
0.000702405
-0.0674502
0.00124515
-0.0607717
0.00192778
-0.0553476
0.00273864
-0.0509038
0.00366472
-0.0472274
0.00469277
-0.0441538
0.00580981
-0.0415561
0.0070033
-0.0393363
0.00826116
-0.0374189
0.00957157
-0.0357456
0.0109229
-0.034272
0.0123031
-0.0329646
0.0137002
-0.031799
0.0151015
-0.0307593
0.0164937
-0.0298373
-0.0290303
0.0178635
-3.17563e-05
-0.114883
-7.47606e-06
-0.098946
0.000137164
-0.0861978
0.000431445
-0.0760267
0.000883552
-0.0679023
0.00148968
-0.0613779
0.0022397
-0.0560977
0.00312048
-0.0517846
0.00411783
-0.0482248
0.00521749
-0.0452535
0.00640566
-0.0427443
0.00766914
-0.0405998
0.00899534
-0.0387451
0.0103721
-0.0371224
0.0117877
-0.0356875
0.0132301
-0.0344071
0.0146876
-0.0332565
0.0161479
-0.0322196
0.0175983
-0.0312877
-0.0304581
0.0190261
-2.20416e-05
-0.114861
2.88751e-05
-0.0989969
0.000213878
-0.0863828
0.000559064
-0.0763718
0.00106985
-0.068413
0.00174016
-0.0620482
0.00255799
-0.0569155
0.00350874
-0.0527354
0.00457698
-0.049293
0.0057475
-0.046424
0.00700571
-0.0440025
0.00833783
-0.0419319
0.00973085
-0.0401381
0.0111725
-0.038564
0.0126508
-0.0371658
0.0141541
-0.0359104
0.015671
-0.0347733
0.0171894
-0.033738
0.0186973
-0.0327956
-0.0319429
0.020182
-1.1852e-05
-0.11485
6.67081e-05
-0.0990754
0.000293254
-0.0866093
0.000690441
-0.076769
0.00126075
-0.0689834
0.00199572
-0.0627831
0.00288147
-0.0578012
0.00390184
-0.0537558
0.00504022
-0.0504314
0.00628041
-0.0476642
0.00760708
-0.0453291
0.0090059
-0.0433307
0.0104635
-0.0415957
0.0119675
-0.0400679
0.0135059
-0.0387043
0.0150674
-0.0374719
0.0166407
-0.0363466
0.0182143
-0.0353116
0.0197764
-0.0343576
-0.0334809
0.0213144
-1.19521e-06
-0.114848
0.000105965
-0.0991826
0.000375113
-0.0868785
0.000825185
-0.0772191
0.00145558
-0.0696138
0.00225537
-0.0635829
0.00320872
-0.0587546
0.00429795
-0.054845
0.00550522
-0.0516387
0.00681335
-0.0489723
0.00820629
-0.0467221
0.00966919
-0.0447936
0.0111884
-0.0431149
0.0127513
-0.0416308
0.0143461
-0.0402991
0.0159617
-0.0390875
0.017587
-0.0379719
0.0192109
-0.0369356
0.020822
-0.0359687
-0.0350667
0.0224078
9.90536e-06
-0.114858
0.000146566
-0.0993193
0.000459228
-0.0871911
0.000962831
-0.0777227
0.00165355
-0.0703045
0.00251792
-0.0644473
0.00353814
-0.0597748
0.00469496
-0.0560018
0.00596931
-0.052913
0.00734306
-0.0503461
0.00879943
-0.0481785
0.0103231
-0.0463172
0.0119
-0.0446919
0.0135175
-0.0432484
0.0151639
-0.0419455
0.0168283
-0.0407518
0.0184999
-0.0396435
0.0201681
-0.0386039
0.0218218
-0.0376223
-0.0366935
0.0234486
2.14308e-05
-0.11488
0.000188427
-0.0994863
0.000545349
-0.087548
0.00110286
-0.0782802
0.00185377
-0.0710554
0.00278207
-0.0653756
0.00386794
-0.0608607
0.00509056
-0.0572244
0.00642962
-0.0542521
0.00786604
-0.0517825
0.00938232
-0.0496947
0.0109626
-0.0478975
0.0125927
-0.0463219
0.0142597
-0.0449154
0.015952
-0.0436379
0.0176589
-0.0424587
0.0193702
-0.0413548
0.0210757
-0.0403093
0.0227645
-0.0393111
-0.0383537
0.0244247
3.33768e-05
-0.114913
0.000231489
-0.0996844
0.000633227
-0.0879498
0.0012447
-0.0788917
0.0020553
-0.071866
0.00304641
-0.0663667
0.0041962
-0.0620105
0.00548229
-0.0585105
0.00688311
-0.0556529
0.00837864
-0.053278
0.00995066
-0.0512668
0.0115829
-0.0495297
0.0132607
-0.0479998
0.0149713
-0.046626
0.0167032
-0.0453697
0.0184458
-0.0442014
0.0201895
-0.0430985
0.0219244
-0.0420442
0.0236403
-0.0410271
-0.0400392
0.0253258
4.57994e-05
-0.114959
0.000275758
-0.0999143
0.00072263
-0.0883966
0.00138776
-0.0795568
0.00225709
-0.0727353
0.00330943
-0.067419
0.00452093
-0.063222
0.00586761
-0.0598572
0.00732667
-0.057112
0.00887715
-0.0548285
0.0105002
-0.0528898
0.0121789
-0.0512085
0.0138986
-0.0497195
0.0156464
-0.0483737
0.0174108
-0.0471341
0.0191818
-0.0459724
0.02095
-0.0448666
0.0227062
-0.0438005
0.0244409
-0.0427618
-0.0417414
0.0261431
5.8877e-05
-0.115018
0.000321359
-0.100177
0.000813369
-0.0888887
0.00153142
-0.0802749
0.00245808
-0.073662
0.00356958
-0.0685305
0.00484005
-0.0644924
0.00624394
-0.0612611
0.00775721
-0.0586252
0.00935795
-0.0564293
0.0110266
-0.0545584
0.012746
-0.0529279
0.0145012
-0.0514746
0.0162792
-0.0501517
0.0180689
-0.0489238
0.0198605
-0.047764
0.0216451
-0.0466513
0.0234144
-0.0455698
0.0251594
-0.0445067
-0.0434519
0.0268699
7.29643e-05
-0.115091
0.000368536
-0.100472
0.000905274
-0.0894254
0.00167504
-0.0810446
0.00265714
-0.0746441
0.00382527
-0.0696987
0.00515152
-0.0658187
0.00660875
-0.0627183
0.00817168
-0.0601882
0.00981752
-0.0580751
0.0115261
-0.056267
0.0132798
-0.0546816
0.0150637
-0.0532585
0.0168647
-0.0519528
0.0186721
-0.0507312
0.0204764
-0.0495683
0.0222694
-0.0484443
0.0240434
-0.0473438
0.0257904
-0.0462537
-0.0451625
0.027501
8.87222e-05
-0.115179
0.0004178
-0.100801
0.000998276
-0.0900059
0.00181798
-0.0818643
0.00285313
-0.0756792
0.00407489
-0.0709204
0.00545328
-0.0671971
0.00695954
-0.0642246
0.00856718
-0.0617958
0.0102525
-0.0597605
0.0119949
-0.0580093
0.0137764
-0.0564631
0.0155819
-0.0550639
0.0173986
-0.0537695
0.019216
-0.0525486
0.0210252
-0.0513775
0.0228186
-0.0502377
0.0245893
-0.0491144
0.0263302
-0.0479946
-0.0468653
0.028033
0.000108123
-0.115288
0.000470593
-0.101164
0.00109256
-0.0906278
0.00195955
-0.0827313
0.00304482
-0.0767645
0.00431679
-0.0721924
0.00574331
-0.0686236
0.00729392
-0.0657752
0.00894097
-0.0634429
0.01066
-0.0614795
0.0124297
-0.0597791
0.0142321
-0.0582655
0.0160521
-0.0568839
0.017877
-0.0555945
0.0196969
-0.0543684
0.0215033
-0.0531839
0.0232894
-0.0520238
0.0250491
-0.0508742
0.0267764
-0.0497219
-0.0485531
0.0284642
0.000137828
0.000529141
0.00118785
0.00209861
0.00323072
0.00454924
0.00601958
0.00760961
0.0092905
0.011037
0.0128276
0.014644
0.0164712
0.0182971
0.020112
0.0219082
0.0236796
0.0254212
0.027128
0.028794
0.0323157
-0.248401
0.245093
0.0343063
-0.229315
0.227324
0.0353826
-0.208325
0.207249
0.0359251
-0.189854
0.189311
0.0362161
-0.173486
0.173195
0.0363837
-0.159257
0.15909
0.0364858
-0.146772
0.146669
0.0365418
-0.135657
0.135601
0.0365589
-0.125611
0.125594
0.0365411
-0.116406
0.116423
0.0364921
-0.107877
0.107926
0.0364158
-0.0999072
0.0999835
0.0363165
-0.0924116
0.092511
0.0361984
-0.0853302
0.0854483
0.0360657
-0.0786203
0.078753
0.0359223
-0.0722523
0.0723957
0.0357717
-0.066206
0.0663566
0.0356171
-0.0604678
0.0606224
0.0354614
-0.0550291
0.0551848
0.0353071
-0.0498839
0.0500382
0.0351563
-0.0450288
0.0451796
0.0350112
-0.0404592
0.0406043
0.0348733
-0.0361721
0.0363101
0.0347444
-0.0321575
0.0322864
0.0346253
-0.0284094
0.0285285
0.0345183
-0.0249031
0.0250101
0.0344224
-0.0216274
0.0217233
0.0343412
-0.0185318
0.018613
0.0342708
-0.0155945
0.0156649
0.0342161
-0.0127422
0.0127969
0.03417
-0.00989829
0.00994442
0.0341352
-0.00707438
0.00710911
0.0341054
-0.00388738
0.00391722
0.0340701
-0.000971459
0.00100673
0.0340294
0.00331849
-0.00327771
0.0339587
0.00609841
-0.00602774
0.0338355
0.0123808
-0.0122576
0.0336841
0.0147632
-0.0146118
0.0333828
0.0220303
-0.021729
0.0256459
-0.0253058
0.0319122
-0.251175
0.0335634
-0.230966
0.0344446
-0.209207
0.0349055
-0.190315
0.0351861
-0.173767
0.0353807
-0.159452
0.0355263
-0.146917
0.0356313
-0.135762
0.0356983
-0.125678
0.035729
-0.116436
0.0357261
-0.107874
0.0356933
-0.0998744
0.0356346
-0.092353
0.0355544
-0.08525
0.0354568
-0.0785227
0.0353457
-0.0721412
0.0352247
-0.066085
0.0350971
-0.0603402
0.0349657
-0.0548977
0.0348333
-0.0497515
0.0347021
-0.0448976
0.0345744
-0.0403315
0.0344517
-0.0360494
0.0343361
-0.032042
0.0342286
-0.0283019
0.0341316
-0.0248061
0.0340444
-0.0215402
0.0339706
-0.0184581
0.0339067
-0.0155305
0.0338577
-0.0126933
0.0338166
-0.00985719
0.0337867
-0.00704443
0.0337611
-0.00386179
0.0337299
-0.000940269
0.0336934
0.00335495
0.0336256
0.00616621
0.0335076
0.0124988
0.0333584
0.0149124
0.0330611
0.0223276
0.0259781
0.0314136
-0.253416
0.0327339
-0.232286
0.0334366
-0.209909
0.0338293
-0.190707
0.0341083
-0.174046
0.0343343
-0.159678
0.034525
-0.147108
0.0346797
-0.135917
0.0347966
-0.125795
0.0348759
-0.116515
0.0349195
-0.107918
0.0349307
-0.0998856
0.0349135
-0.0923358
0.034872
-0.0852085
0.0348103
-0.0784611
0.0347325
-0.0720634
0.0346421
-0.0659946
0.0345425
-0.0602406
0.0344366
-0.0547919
0.0343273
-0.0496422
0.0342169
-0.0447872
0.0341077
-0.0402223
0.0340016
-0.0359433
0.0339008
-0.0319412
0.0338063
-0.0282074
0.0337208
-0.0247206
0.0336437
-0.0214631
0.0335789
-0.0183933
0.033523
-0.0154746
0.0334815
-0.0126517
0.0334471
-0.00982283
0.0334237
-0.007021
0.0334042
-0.00384226
0.033379
-0.000915114
0.0333488
0.00338513
0.0332861
0.00622899
0.0331754
0.0126094
0.0330305
0.0150573
0.0327398
0.0226182
0.0262996
0.0308269
-0.255127
0.0318252
-0.233285
0.0323651
-0.210449
0.0327018
-0.191044
0.032986
-0.17433
0.0332465
-0.159939
0.0334831
-0.147344
0.0336876
-0.136121
0.0338547
-0.125962
0.0339828
-0.116644
0.0340733
-0.108008
0.0341292
-0.0999414
0.0341541
-0.0923607
0.0341522
-0.0852066
0.0341275
-0.0784364
0.0340839
-0.0720198
0.0340252
-0.0659359
0.0339547
-0.0601701
0.0338755
-0.0547127
0.0337904
-0.0495571
0.0337019
-0.0446988
0.0336126
-0.040133
0.0335243
-0.035855
0.0334395
-0.0318564
0.0333594
-0.0281272
0.0332868
-0.0246479
0.0332213
-0.0213977
0.0331671
-0.0183391
0.0331208
-0.0154284
0.0330882
-0.0126191
0.0330623
-0.00979687
0.0330471
-0.00700583
0.0330354
-0.00383055
0.0330181
-0.000897856
0.0329961
0.00340715
0.0329404
0.0062847
0.0328392
0.0127107
0.0327008
0.0151958
0.0324194
0.0228997
0.0266078
0.0301592
-0.256315
0.0308444
-0.23397
0.0312364
-0.210841
0.0315272
-0.191335
0.0318219
-0.174625
0.0321187
-0.160235
0.0324018
-0.147627
0.032656
-0.136376
0.0328732
-0.126179
0.0330506
-0.116821
0.0331886
-0.108146
0.0332898
-0.100043
0.0333578
-0.0924287
0.0333964
-0.0852451
0.0334096
-0.0784496
0.0334014
-0.0720116
0.0333754
-0.0659099
0.0333351
-0.0601297
0.0332836
-0.0546612
0.0332239
-0.0494974
0.0331586
-0.0446335
0.0330903
-0.0400647
0.0330211
-0.0357859
0.0329536
-0.0317889
0.0328891
-0.0280628
0.0328307
-0.0245895
0.0327783
-0.0213452
0.032736
-0.0182968
0.0327009
-0.0153933
0.0326788
-0.0125971
0.0326629
-0.0097809
0.0326576
-0.00700056
0.0326554
-0.00382838
0.0326479
-0.000890297
0.0326358
0.0034192
0.0325891
0.00633136
0.0324994
0.0128004
0.0323696
0.0153256
0.0320999
0.0231693
0.0269001
0.0294176
-0.256989
0.0297984
-0.234351
0.0300559
-0.211099
0.0303093
-0.191588
0.0306181
-0.174934
0.0309521
-0.160569
0.0312815
-0.147957
0.0315854
-0.136679
0.031853
-0.126447
0.0320799
-0.117048
0.0322662
-0.108333
0.0324137
-0.10019
0.0325256
-0.0925406
0.0326058
-0.0853253
0.032658
-0.0785018
0.0326862
-0.0720398
0.032694
-0.0659177
0.032685
-0.0601207
0.0326624
-0.0546385
0.0326292
-0.0494642
0.0325882
-0.0445924
0.0325421
-0.0400186
0.0324932
-0.0357369
0.0324442
-0.0317399
0.0323966
-0.0280152
0.0323538
-0.0245467
0.0323157
-0.0213071
0.0322867
-0.0182678
0.0322642
-0.0153707
0.0322541
-0.012587
0.0322497
-0.00977647
0.0322559
-0.00700676
0.0322649
-0.00383738
0.0322688
-0.000894174
0.0322684
0.00341952
0.0322327
0.00636705
0.0321564
0.0128767
0.0320372
0.0154449
0.0317816
0.0234249
0.027174
0.0286089
-0.257162
0.0286934
-0.234435
0.0288282
-0.211234
0.029051
-0.191811
0.029376
-0.175259
0.0297474
-0.160941
0.0301229
-0.148332
0.0304763
-0.137033
0.0307945
-0.126765
0.0310718
-0.117325
0.0313071
-0.108568
0.0315018
-0.100385
0.0316589
-0.0926977
0.0317817
-0.0854481
0.031874
-0.0785942
0.0319398
-0.0721055
0.0319825
-0.0659605
0.0320059
-0.0601441
0.0320133
-0.0546459
0.0320077
-0.0494586
0.031992
-0.0445768
0.0319693
-0.0399958
0.0319418
-0.0357095
0.0319125
-0.0317106
0.0318831
-0.0279859
0.031857
-0.0245205
0.0318345
-0.0212846
0.0318202
-0.0182535
0.0318116
-0.0153621
0.031815
-0.0125903
0.0318235
-0.00978505
0.0318427
-0.00702597
0.0318645
-0.00385913
0.0318815
-0.000911152
0.0318946
0.00340644
0.0318717
0.00638991
0.0318107
0.0129377
0.0317039
0.0155517
0.0314649
0.0236639
0.0274272
0.0277395
-0.256847
0.0275353
-0.234231
0.0275574
-0.211256
0.0277547
-0.192008
0.0280969
-0.175601
0.0285052
-0.161349
0.0289262
-0.148753
0.0293293
-0.137436
0.0296985
-0.127134
0.0300269
-0.117654
0.0303122
-0.108853
0.0305554
-0.100628
0.0307586
-0.0929009
0.0309253
-0.0856148
0.031059
-0.0787279
0.0311634
-0.07221
0.0312423
-0.0660394
0.0312992
-0.0602011
0.0313376
-0.0546843
0.0313607
-0.0494817
0.0313716
-0.0445877
0.0313732
-0.0399975
0.0313683
-0.0357045
0.0313598
-0.0317021
0.0313497
-0.0279758
0.0313415
-0.0245124
0.0313359
-0.021279
0.0313375
-0.0182552
0.0313442
-0.0153687
0.0313623
-0.0126084
0.0313852
-0.00980802
0.0314189
-0.00705963
0.0314549
-0.00389513
0.0314866
-0.000942827
0.0315147
0.00337833
0.0315064
0.00639818
0.0314625
0.0129816
0.0313701
0.0156441
0.0311499
0.0238841
0.0276573
0.0268152
-0.256061
0.0263295
-0.233745
0.0262468
-0.211173
0.0264222
-0.192184
0.0267813
-0.17596
0.0272257
-0.161793
0.0276918
-0.14922
0.0281446
-0.137889
0.0285657
-0.127555
0.0289461
-0.118034
0.0292826
-0.10919
0.0295753
-0.100921
0.0298261
-0.0931517
0.0300379
-0.0858265
0.0302141
-0.0789041
0.0303584
-0.0723543
0.0304746
-0.0661555
0.0305662
-0.0602927
0.0306367
-0.0547548
0.0306896
-0.0495346
0.030728
-0.0446261
0.0307552
-0.0400246
0.0307739
-0.0357232
0.0307873
-0.0317155
0.0307976
-0.0279861
0.0308085
-0.0245233
0.0308209
-0.0212914
0.0308397
-0.0182739
0.0308628
-0.0153918
0.0308969
-0.0126426
0.0309356
-0.00984674
0.0309851
-0.00710911
0.0310368
-0.00394684
0.0310847
-0.00099072
0.0311294
0.00333366
0.0311374
0.00639014
0.0311122
0.0130068
0.0310361
0.0157202
0.0308368
0.0240833
0.0278623
0.0258417
-0.254821
0.025081
-0.232985
0.0248991
-0.210991
0.0250546
-0.192339
0.0254296
-0.176335
0.0259089
-0.162273
0.0264199
-0.149731
0.0269228
-0.138392
0.0273965
-0.128029
0.0278301
-0.118468
0.0282191
-0.109579
0.0285628
-0.101264
0.0288625
-0.0934514
0.0291207
-0.0860848
0.0293408
-0.0791241
0.0295262
-0.0725397
0.0296808
-0.0663101
0.0298082
-0.0604201
0.029912
-0.0548586
0.0299958
-0.0496184
0.0300628
-0.0446931
0.0301165
-0.0400783
0.0301598
-0.0357665
0.0301962
-0.0317518
0.030228
-0.0280179
0.0302591
-0.0245545
0.0302906
-0.021323
0.0303276
-0.0183109
0.0303684
-0.0154326
0.0304197
-0.0126939
0.0304755
-0.00990247
0.0305421
-0.00717573
0.0306109
-0.00401562
0.0306764
-0.00105628
0.0307391
0.00327097
0.0307651
0.00636416
0.0307603
0.0130115
0.0307021
0.0157785
0.030526
0.0242595
0.02804
0.0248236
-0.253147
0.0237943
-0.231955
0.0235163
-0.210713
0.0236527
-0.192475
0.0240421
-0.176724
0.0245551
-0.162786
0.0251106
-0.150286
0.0256643
-0.138945
0.0261915
-0.128556
0.0266797
-0.118956
0.0271227
-0.110022
0.0275189
-0.101661
0.0278689
-0.0938014
0.028175
-0.0863908
0.0284402
-0.0793893
0.0286681
-0.0727676
0.0288623
-0.0665044
0.0290267
-0.0605844
0.0291648
-0.0549968
0.0292805
-0.0497341
0.0293772
-0.0447898
0.0294585
-0.0401596
0.0295274
-0.0358354
0.0295877
-0.0318121
0.029642
-0.0280721
0.0296943
-0.0246068
0.029746
-0.0213747
0.0298024
-0.0183673
0.0298619
-0.0154921
0.0299316
-0.0127637
0.0300056
-0.00997641
0.0300906
-0.00726073
0.0301777
-0.00410277
0.0302623
-0.00114088
0.0303445
0.00318884
0.0303899
0.00631869
0.0304071
0.0129943
0.0303686
0.015817
0.0302175
0.0244105
0.0281885
0.0237649
-0.25106
0.0224729
-0.230663
0.0220996
-0.21034
0.0222163
-0.192592
0.0226182
-0.177126
0.0231638
-0.163331
0.023764
-0.150886
0.0243692
-0.13955
0.0249515
-0.129138
0.0254957
-0.1195
0.0259943
-0.11052
0.0264445
-0.102111
0.0268464
-0.0942033
0.0272018
-0.0867463
0.0275136
-0.0797011
0.0277852
-0.0730392
0.0280204
-0.0667395
0.0282228
-0.0607869
0.0283965
-0.0551705
0.0285452
-0.0498828
0.0286725
-0.0449172
0.0287823
-0.0402693
0.0288779
-0.035931
0.0289631
-0.0318974
0.0290408
-0.0281498
0.0291153
-0.0246813
0.0291882
-0.0214475
0.0292649
-0.018444
0.0293443
-0.0155715
0.0294335
-0.012853
0.0295268
-0.0100697
0.0296314
-0.00736528
0.0297381
-0.00420952
0.0298431
-0.00124583
0.029946
0.00308596
0.0300124
0.00625223
0.030053
0.0129537
0.0300357
0.0158344
0.0299118
0.0245345
0.0283058
0.0226675
-0.24858
0.0211184
-0.229114
0.0206485
-0.20987
0.0207447
-0.192688
0.0211574
-0.177539
0.0217347
-0.163909
0.02238
-0.151532
0.0230379
-0.140208
0.0236767
-0.129777
0.0242787
-0.120102
0.0248347
-0.111076
0.0253407
-0.102617
0.0257961
-0.0946587
0.0262025
-0.0871526
0.0265623
-0.0800609
0.026879
-0.0733559
0.0271562
-0.0670168
0.027398
-0.0610287
0.0276083
-0.0553807
0.027791
-0.0500655
0.02795
-0.0450762
0.0280893
-0.0404086
0.0282124
-0.0360541
0.0283235
-0.0320085
0.0284256
-0.0282519
0.0285232
-0.0247789
0.0286183
-0.0215425
0.0287163
-0.018542
0.0288165
-0.0156716
0.0289263
-0.0129627
0.02904
-0.0101834
0.0291652
-0.00749048
0.0292927
-0.00433705
0.0294192
-0.00137234
0.0295441
0.00296108
0.0296329
0.00616338
0.0296983
0.0128883
0.0297038
0.0158289
0.0296088
0.0246295
0.0283901
0.021533
-0.245725
0.0197357
-0.227317
0.0191661
-0.2093
0.0192391
-0.192761
0.0196603
-0.17796
0.0202682
-0.164516
0.020959
-0.152223
0.0216709
-0.14092
0.0223679
-0.130474
0.0230296
-0.120764
0.0236448
-0.111692
0.0242084
-0.10318
0.0247191
-0.0951695
0.025178
-0.0876114
0.0255873
-0.0804703
0.0259505
-0.0737191
0.0262712
-0.0673375
0.0265535
-0.061311
0.0268014
-0.0556287
0.0270192
-0.0502833
0.0272109
-0.0452679
0.0273806
-0.0405784
0.0275323
-0.0362058
0.0276701
-0.0321463
0.0277975
-0.0283793
0.0279191
-0.0249006
0.0280372
-0.0216606
0.0281575
-0.0186623
0.0282794
-0.0157936
0.0284107
-0.013094
0.0285458
-0.0103186
0.0286927
-0.00763737
0.0288421
-0.00448645
0.0289913
-0.00152157
0.0291394
0.002813
0.029252
0.00605081
0.0293435
0.0127968
0.0293733
0.015799
0.029309
0.0246938
0.0284399
0.0203724
-0.242525
0.0183408
-0.225285
0.0176632
-0.208623
0.0177059
-0.192804
0.018131
-0.178385
0.0187672
-0.165153
0.0195031
-0.152958
0.0202699
-0.141687
0.0210266
-0.131231
0.0217496
-0.121487
0.0224259
-0.112368
0.0230489
-0.103804
0.0236167
-0.0957372
0.0241297
-0.0881244
0.0245901
-0.0809307
0.0250011
-0.0741301
0.0253665
-0.0677029
0.0256905
-0.0616349
0.0259772
-0.0559154
0.0262311
-0.0505372
0.0264564
-0.0454932
0.0266575
-0.0407795
0.0268385
-0.0363868
0.027004
-0.0323118
0.0271575
-0.0285327
0.027304
-0.0250471
0.0274459
-0.0218025
0.0275894
-0.0188058
0.027734
-0.0159382
0.0278876
-0.0132476
0.0280451
-0.0104761
0.0282147
-0.00780692
0.028387
-0.00465874
0.02856
-0.00169459
0.0287324
0.00264062
0.0288699
0.00591327
0.0289887
0.0126779
0.0290443
0.0157435
0.0290123
0.0247257
0.0284534
0.0191976
-0.239015
0.0169403
-0.223028
0.0161401
-0.207823
0.016144
-0.192808
0.0165694
-0.178811
0.0172321
-0.165815
0.0180131
-0.153739
0.0188357
-0.14251
0.0196536
-0.132049
0.0204398
-0.122273
0.021179
-0.113107
0.0218634
-0.104488
0.0224899
-0.0963638
0.0230587
-0.0886932
0.0235717
-0.0814437
0.024032
-0.0745904
0.0244434
-0.0681143
0.0248102
-0.0620017
0.0251369
-0.056242
0.0254279
-0.0508282
0.0256877
-0.045753
0.0259212
-0.0410129
0.0261324
-0.0365981
0.0263264
-0.0325057
0.0265068
-0.0287132
0.026679
-0.0252193
0.0268456
-0.0219691
0.027013
-0.0189731
0.0271811
-0.0161063
0.0273579
-0.0134245
0.0275387
-0.0106568
0.0277318
-0.00800003
0.027928
-0.00485488
0.0281258
-0.00189243
0.0283235
0.0024429
0.0284872
0.00574956
0.0286345
0.0125306
0.0287171
0.0156609
0.0287192
0.0247237
0.0284291
0.0179502
-0.23516
0.0154609
-0.220539
0.0145373
-0.206899
0.0145116
-0.192782
0.0149471
-0.179246
0.0156439
-0.166512
0.0164761
-0.154572
0.0173597
-0.143393
0.0182433
-0.132932
0.0190964
-0.123126
0.0199018
-0.113912
0.0206502
-0.105236
0.021338
-0.0970516
0.0219648
-0.0893199
0.0225322
-0.0820111
0.0230435
-0.0751016
0.0235024
-0.0685733
0.0239134
-0.0624128
0.0242812
-0.0566097
0.0246104
-0.0511574
0.0249058
-0.0460485
0.0251725
-0.0412796
0.0254149
-0.0368405
0.0256381
-0.032729
0.0258463
-0.0289214
0.026045
-0.025418
0.0262371
-0.0221612
0.0264291
-0.0191652
0.0266215
-0.0162986
0.0268224
-0.0136254
0.0270273
-0.0108617
0.0272448
-0.00821755
0.0274657
-0.00507578
0.0276893
-0.002116
0.0279133
0.00221887
0.0281043
0.00555858
0.0282811
0.0123538
0.0283921
0.0155499
0.0284296
0.0246862
0.0283658
0.0165098
-0.230795
0.0138096
-0.217838
0.0127925
-0.205882
0.0127629
-0.192753
0.0132297
-0.179713
0.0139767
-0.167259
0.0148729
-0.155468
0.0158277
-0.144348
0.016785
-0.133889
0.0177116
-0.124053
0.0185885
-0.114789
0.0194055
-0.106053
0.0201582
-0.0978043
0.020846
-0.0900077
0.0214706
-0.0826357
0.022035
-0.075666
0.0225433
-0.0690816
0.0230002
-0.0628696
0.0234104
-0.05702
0.0237791
-0.0515261
0.0241113
-0.0463807
0.0244122
-0.0415805
0.0246867
-0.0371149
0.0249401
-0.0329824
0.0251769
-0.0291581
0.0254028
-0.0256439
0.0256212
-0.0223796
0.0258387
-0.0193828
0.0260561
-0.016516
0.0262818
-0.0138511
0.0265116
-0.0110914
0.0267543
-0.00846026
0.0270008
-0.00532228
0.027251
-0.00236618
0.0275022
0.00196761
0.0277215
0.0053393
0.0279289
0.0121464
0.0280695
0.0154093
0.0281439
0.0246118
0.028262
0.0151925
-0.226044
0.0123311
-0.214977
0.0111708
-0.204722
0.0110801
-0.192662
0.0115406
-0.180174
0.0123154
-0.168034
0.0132623
-0.156415
0.0142811
-0.145367
0.0153086
-0.134917
0.0163073
-0.125051
0.0172557
-0.115738
0.0181418
-0.106939
0.0189603
-0.0986229
0.0197102
-0.0907576
0.020393
-0.0833184
0.0210116
-0.0762847
0.0215704
-0.0696404
0.0220741
-0.0633733
0.0225278
-0.0574737
0.0229368
-0.0519351
0.0233065
-0.0467504
0.0236424
-0.0419163
0.0239496
-0.0374222
0.0242339
-0.0332667
0.0245
-0.0294241
0.0247538
-0.0258978
0.0249991
-0.0226248
0.0252428
-0.0196265
0.0254859
-0.0167591
0.0257371
-0.0141023
0.0259924
-0.0113467
0.026261
-0.00872888
0.0265339
-0.00559513
0.0268114
-0.00264375
0.0270908
0.0016883
0.0273393
0.00509076
0.0275782
0.0119075
0.0277495
0.0152379
0.0278621
0.0244992
0.0281166
0.0148384
-0.221845
0.0117365
-0.211875
0.0101932
-0.203178
0.00983611
-0.192305
0.0101551
-0.180492
0.0108644
-0.168743
0.0117963
-0.157346
0.0128337
-0.146404
0.0139002
-0.135983
0.0149495
-0.126101
0.0159541
-0.116742
0.0168986
-0.107884
0.0177754
-0.0994997
0.018582
-0.0915642
0.019319
-0.0840554
0.0199891
-0.0769548
0.0205962
-0.0702475
0.0211453
-0.0639223
0.0216413
-0.0579697
0.0220899
-0.0523838
0.0224967
-0.0471571
0.0228673
-0.042287
0.0232072
-0.0377621
0.0235224
-0.0335819
0.0238179
-0.0297196
0.0240999
-0.0261799
0.0243725
-0.0228973
0.0246427
-0.0198968
0.0249121
-0.0170285
0.0251892
-0.0143794
0.0254707
-0.0116282
0.0257658
-0.00902392
0.0260658
-0.00589517
0.0263713
-0.00294928
0.0266796
0.00138004
0.0269581
0.00481224
0.0272293
0.0116363
0.0274326
0.0150347
0.0275843
0.0243474
0.0279283
0.133799
-0.201956
-0.153687
0.118747
-0.196824
0.105928
-0.19036
0.0958156
-0.182192
0.0878763
-0.172553
0.0815644
-0.162431
0.0765112
-0.152293
0.0724246
-0.142318
0.0690739
-0.132633
0.0662888
-0.123316
0.0639435
-0.114397
0.0619449
-0.105885
0.0602239
-0.0977787
0.0587287
-0.0900691
0.0574207
-0.0827474
0.0562704
-0.0758045
0.0552554
-0.0692325
0.0543581
-0.063025
0.053565
-0.0571766
0.0528653
-0.051684
0.0522502
-0.0465421
0.0517128
-0.0417495
0.051247
-0.0372963
0.0508479
-0.0331828
0.0505111
-0.0293828
0.0502331
-0.0259019
0.05001
-0.0226742
0.0498398
-0.0197266
0.0497175
-0.0169062
0.049643
-0.0143049
0.0496083
-0.0115935
0.0496123
-0.00902797
0.049647
-0.00592984
0.0496926
-0.00299483
0.0497679
0.00130473
0.0497862
0.00479389
0.0498324
0.0115901
0.0497735
0.0150936
0.0496735
0.0244475
0.0279088
0.143316
-0.182625
-0.162647
0.12799
-0.181497
0.115064
-0.177434
0.104501
-0.171628
0.096006
-0.164059
0.0891163
-0.155542
0.0834974
-0.146674
0.078889
-0.137709
0.0750734
-0.128817
0.0718802
-0.120122
0.06918
-0.111697
0.0668737
-0.103579
0.0648858
-0.0957908
0.0631586
-0.0883419
0.0616482
-0.0812369
0.0603205
-0.0744769
0.0591495
-0.0680614
0.0581146
-0.0619901
0.0571997
-0.0562618
0.0563921
-0.0508764
0.0556814
-0.0458314
0.0550592
-0.0411273
0.0545185
-0.0367556
0.0540533
-0.0327176
0.0536586
-0.0289881
0.0533298
-0.0255732
0.0530631
-0.0224075
0.0528549
-0.0195184
0.0527011
-0.0167524
0.0525993
-0.0142031
0.0525434
-0.0115376
0.052529
-0.0090136
0.0525512
-0.00595202
0.0525855
-0.00302912
0.052656
0.00123415
0.0526669
0.004783
0.0527176
0.0115395
0.0526563
0.0151549
0.0525781
0.0245257
0.0278463
0.15296
-0.163869
-0.171716
0.137542
-0.16608
0.124448
-0.16434
0.11345
-0.16063
0.104409
-0.155018
0.0969612
-0.148094
0.0907948
-0.140508
0.0856727
-0.132587
0.0813908
-0.124535
0.0777817
-0.116513
0.0747144
-0.108629
0.0720861
-0.100951
0.0698163
-0.093521
0.0678424
-0.0863681
0.0661156
-0.0795101
0.0645978
-0.072959
0.0632591
-0.0667227
0.0620758
-0.0608069
0.0610295
-0.0552154
0.060105
-0.0499519
0.0592904
-0.0450168
0.0585758
-0.0404126
0.057953
-0.0361328
0.057415
-0.0321796
0.0569561
-0.0285292
0.0565708
-0.0251878
0.0562547
-0.0220914
0.0560035
-0.0192672
0.0558132
-0.0165621
0.0556798
-0.0140697
0.0555984
-0.0114562
0.0555624
-0.00897759
0.0555685
-0.00595815
0.0555897
-0.00305031
0.0556532
0.00117061
0.0556567
0.00477952
0.055713
0.0114831
0.055652
0.0152159
0.055606
0.0245717
0.0277309
0.162605
-0.146032
-0.180442
0.147309
-0.150784
0.134117
-0.151148
0.122773
-0.149286
0.113226
-0.145471
0.105231
-0.140099
0.0985172
-0.133794
0.0928699
-0.12694
0.0881033
-0.119769
0.0840564
-0.112467
0.0805986
-0.105172
0.0776246
-0.0979768
0.0750502
-0.0909466
0.0728085
-0.0841263
0.070846
-0.0775477
0.0691206
-0.0712336
0.0675986
-0.0652007
0.0662532
-0.0594615
0.0650631
-0.0540253
0.0640108
-0.0488997
0.0630826
-0.0440886
0.0622666
-0.0395967
0.0615537
-0.0354199
0.0609355
-0.0315613
0.0604055
-0.0279991
0.0599571
-0.0247394
0.0595858
-0.0217201
0.0592858
-0.0189672
0.0590538
-0.01633
0.0588839
-0.0138999
0.0587726
-0.0113448
0.0587109
-0.00891588
0.0586976
-0.00594489
0.0587031
-0.00305582
0.0587579
0.00111585
0.058754
0.00478343
0.0588179
0.0114192
0.0587621
0.0152718
0.0587599
0.0245739
0.0275503
0.172155
-0.129276
-0.188911
0.157169
-0.135798
0.143984
-0.137963
0.132405
-0.137707
0.122429
-0.135495
0.113924
-0.131594
0.106678
-0.126547
0.100505
-0.120767
0.0952405
-0.114504
0.0907359
-0.107962
0.0868637
-0.101299
0.0835188
-0.094632
0.0806148
-0.0880426
0.078081
-0.0815925
0.0758603
-0.075327
0.0739067
-0.06928
0.0721828
-0.0634768
0.0706587
-0.0579374
0.0693101
-0.0526766
0.068117
-0.0477066
0.0670635
-0.0430351
0.066136
-0.0386693
0.0653238
-0.0346077
0.064617
-0.0308545
0.0640082
-0.0273904
0.0634897
-0.0242209
0.0630566
-0.021287
0.0627018
-0.0186124
0.0624223
-0.0160506
0.0622106
-0.0136882
0.0620646
-0.0111988
0.0619728
-0.00882407
0.0619365
-0.00590861
0.0619237
-0.00304299
0.061968
0.00107152
0.0619574
0.00479402
0.0620321
0.0113445
0.0619882
0.0153156
0.062044
0.0245181
0.0272904
0.181493
-0.113691
-0.197078
0.167006
-0.121311
0.153949
-0.124906
0.142251
-0.126009
0.131944
-0.125187
0.122991
-0.122642
0.11525
-0.118806
0.108567
-0.114084
0.102805
-0.108742
0.0978318
-0.102989
0.0935274
-0.096995
0.0897896
-0.0908941
0.0865318
-0.0847847
0.0836814
-0.0787422
0.0811787
-0.0728243
0.0789743
-0.0670756
0.0770278
-0.0615303
0.075306
-0.0562156
0.0737817
-0.0511524
0.0724327
-0.0463576
0.0712404
-0.0418428
0.0701894
-0.0376183
0.0692671
-0.0336854
0.0684623
-0.0300497
0.0677662
-0.0266943
0.0671698
-0.0236245
0.0666676
-0.0207848
0.0662513
-0.0181961
0.0659181
-0.0157174
0.0656588
-0.0134289
0.0654728
-0.0110128
0.0653462
-0.00869743
0.0652831
-0.0058455
0.0652493
-0.00300921
0.0652818
0.00103897
0.0652663
0.00480955
0.0653559
0.0112549
0.0653338
0.0153378
0.0654647
0.0243872
0.0269349
0.190531
-0.0993141
-0.204908
0.176696
-0.107476
0.163897
-0.112107
0.152201
-0.114314
0.141678
-0.114664
0.132362
-0.113326
0.124182
-0.110625
0.117025
-0.106927
0.110782
-0.1025
0.105341
-0.097548
0.100596
-0.0922496
0.0964494
-0.0867476
0.0928176
-0.081153
0.0896284
-0.0755529
0.0868204
-0.0700163
0.0843421
-0.0645973
0.0821508
-0.0593389
0.0802105
-0.0542753
0.0784916
-0.0494335
0.0769692
-0.0448351
0.0756226
-0.0404962
0.0744343
-0.0364299
0.0733896
-0.0326408
0.0724757
-0.0291357
0.0716824
-0.025901
0.0709993
-0.0229414
0.07042
-0.0202055
0.0699347
-0.0177108
0.0695411
-0.0153237
0.0692278
-0.0131156
0.0689961
-0.0107811
0.0688295
-0.00853089
0.0687356
-0.00575156
0.0686783
-0.00295198
0.0686982
0.00101909
0.0686808
0.00482694
0.0687916
0.0111441
0.0688043
0.0153251
0.0690303
0.0241612
0.0264655
0.199182
-0.0861461
-0.21235
0.186117
-0.0944101
0.173711
-0.0997011
0.162146
-0.102749
0.151533
-0.10405
0.141957
-0.103751
0.133414
-0.102082
0.125836
-0.0993493
0.119144
-0.0958079
0.113252
-0.0916554
0.108067
-0.0870651
0.103504
-0.0821846
0.0994841
-0.0771329
0.0959372
-0.072006
0.0928027
-0.0668818
0.0900284
-0.061823
0.0875699
-0.0568804
0.0853894
-0.0520949
0.0834553
-0.0474993
0.0817405
-0.0431203
0.0802222
-0.0389779
0.0788807
-0.0350884
0.0776996
-0.0314597
0.076664
-0.0281001
0.0757623
-0.0249992
0.0749823
-0.0221613
0.0743166
-0.0195399
0.0737541
-0.0171483
0.0732922
-0.0148618
0.0729179
-0.0127413
0.0726342
-0.0104973
0.0724224
-0.0083191
0.0722935
-0.00562267
0.0722106
-0.00286911
0.0722177
0.00101197
0.0722034
0.00484133
0.0723438
0.0110037
0.0724083
0.0152606
0.0727528
0.0238168
0.0258623
0.207378
-0.0741698
-0.219354
0.195173
-0.0822051
0.18329
-0.0878182
0.171986
-0.0914455
0.161414
-0.0934772
0.151696
-0.0940338
0.142882
-0.0932678
0.134953
-0.0914197
0.127861
-0.0887156
0.121545
-0.0853395
0.115934
-0.0814547
0.110956
-0.0772064
0.10654
-0.0727169
0.102621
-0.0680875
0.0991424
-0.0634027
0.0960515
-0.0587321
0.0933041
-0.054133
0.0908616
-0.0496525
0.088691
-0.0453287
0.0867634
-0.0411928
0.0850543
-0.0372689
0.0835422
-0.0335763
0.0822088
-0.0301262
0.0810371
-0.0269285
0.080014
-0.0239761
0.0791254
-0.0212728
0.078363
-0.0187774
0.0777137
-0.016499
0.0771748
-0.014323
0.0767319
-0.0122983
0.0763892
-0.0101546
0.0761264
-0.00805633
0.0759583
-0.0054546
0.0758481
-0.00275886
0.0758434
0.00101664
0.0758391
0.00484564
0.0760207
0.010822
0.0761585
0.0151228
0.0766478
0.0233275
0.0251033
0.215096
-0.0633556
-0.225911
0.203813
-0.0709213
0.192564
-0.0765699
0.181647
-0.0805278
0.171245
-0.0830751
0.161509
-0.0842978
0.152529
-0.0842882
0.14433
-0.0832208
0.136899
-0.081284
0.130201
-0.0786419
0.124189
-0.0754427
0.118806
-0.0718234
0.113993
-0.0679043
0.109695
-0.0637888
0.105857
-0.0595647
0.102431
-0.0553064
0.0993743
-0.0510764
0.0966484
-0.0469266
0.0942195
-0.0428998
0.092058
-0.0390313
0.090138
-0.0353488
0.0884363
-0.0318747
0.0869329
-0.0286228
0.0856092
-0.0256048
0.08445
-0.022817
0.0834399
-0.0202626
0.0825686
-0.0179061
0.0818218
-0.0157522
0.0811962
-0.0136974
0.0806758
-0.011778
0.0802664
-0.00974528
0.0799466
-0.00773652
0.0797351
-0.00524314
0.0795964
-0.00262009
0.0795823
0.00103068
0.0795978
0.0048302
0.0798354
0.0105844
0.0800726
0.0148856
0.0807361
0.0226639
0.0241654
0.222381
-0.0536573
-0.232079
0.212047
-0.0605872
0.201518
-0.0660411
0.191095
-0.0701051
0.180983
-0.0729628
0.171348
-0.0746631
0.162311
-0.075251
0.153933
-0.0748425
0.146233
-0.073584
0.139205
-0.0716144
0.132825
-0.0690632
0.127056
-0.0660544
0.121854
-0.0627018
0.117172
-0.0591067
0.112965
-0.0553575
0.109189
-0.0515306
0.105804
-0.0476918
0.102774
-0.0438966
0.100066
-0.0401912
0.0976489
-0.0366144
0.0954969
-0.0331968
0.0935855
-0.0299633
0.0918933
-0.0269306
0.0904
-0.0241115
0.0890887
-0.0215057
0.0879422
-0.0191161
0.0869486
-0.0169126
0.0860922
-0.0148958
0.0853688
-0.012974
0.0847613
-0.0111705
0.0842768
-0.00926072
0.0838934
-0.00735318
0.0836344
-0.0049841
0.0834667
-0.00245242
0.0834475
0.00104987
0.0834953
0.00478242
0.0838079
0.0102718
0.084175
0.0145185
0.0850445
0.0217945
0.0230245
0.229349
-0.0450084
-0.237998
0.219959
-0.0511977
0.2102
-0.0562815
0.200354
-0.0602595
0.190631
-0.0632392
0.181204
-0.0652361
0.172212
-0.066259
0.163745
-0.0663754
0.155851
-0.0656904
0.148552
-0.0643149
0.141846
-0.0623573
0.135716
-0.0599252
0.130137
-0.0571221
0.125073
-0.0540434
0.120491
-0.0507748
0.116352
-0.0473923
0.112623
-0.0439626
0.10927
-0.040543
0.10626
-0.037182
0.103566
-0.0339204
0.101161
-0.0307913
0.0990191
-0.0278214
0.0971181
-0.0250296
0.0954366
-0.02243
0.0939557
-0.0200249
0.0926568
-0.0178171
0.0915262
-0.015782
0.0905468
-0.0139164
0.0897132
-0.0121404
0.089008
-0.0104653
0.0884389
-0.00869168
0.0879853
-0.00689953
0.0876746
-0.00467341
0.0874786
-0.0022564
0.0874605
0.00106792
0.0875562
0.00468671
0.0879666
0.00986141
0.0884982
0.013987
0.0896069
0.0206857
0.021656
0.236194
-0.0373211
-0.243881
0.22771
-0.0427144
0.218732
-0.047303
0.209511
-0.0510388
0.200247
-0.0539751
0.191112
-0.0561014
0.182254
-0.0574005
0.173781
-0.0579024
0.165766
-0.0576754
0.158253
-0.0568022
0.151265
-0.0553692
0.144806
-0.0534658
0.138866
-0.0511823
0.133427
-0.0486048
0.128466
-0.0458137
0.123956
-0.0428817
0.119867
-0.039874
0.116172
-0.0368476
0.112841
-0.0338517
0.109849
-0.030928
0.107168
-0.0281107
0.104775
-0.0254277
0.102644
-0.0228994
0.100755
-0.0205407
0.0990865
-0.0183562
0.0976181
-0.0163487
0.0963345
-0.0144984
0.0952176
-0.0127994
0.0942606
-0.0111834
0.0934461
-0.00965071
0.0927826
-0.0080282
0.0922516
-0.0063685
0.0918854
-0.00430727
0.0916626
-0.00203359
0.0916542
0.00107633
0.0918163
0.00452462
0.0923511
0.00932661
0.0930841
0.013254
0.0944658
0.0193039
0.0200357
0.243177
-0.0304905
-0.250008
0.235532
-0.0350692
0.227309
-0.0390801
0.218724
-0.0424535
0.209956
-0.0452074
0.201169
-0.0473144
0.192509
-0.0487409
0.184097
-0.0494903
0.176023
-0.0496009
0.16835
-0.0491294
0.161121
-0.0481407
0.154362
-0.0467061
0.14808
-0.0449005
0.142274
-0.042799
0.136934
-0.0404734
0.132043
-0.0379909
0.127582
-0.0354126
0.123527
-0.0327934
0.119857
-0.0301809
0.116545
-0.0276163
0.113568
-0.0251337
0.110901
-0.0227611
0.108521
-0.0205193
0.106404
-0.0184238
0.104529
-0.0164808
0.102874
-0.0146932
0.101421
-0.0130455
0.100151
-0.0115298
0.0990567
-0.0100891
0.0981208
-0.00871477
0.0973525
-0.00725995
0.096737
-0.00575304
0.0963121
-0.00388233
0.0960652
-0.00178667
0.096077
0.00106454
0.0963261
0.0042755
0.0970146
0.00863807
0.0979866
0.012282
0.0996741
0.0176164
0.0181403
0.250632
-0.0243975
-0.256725
0.243731
-0.0281685
0.236204
-0.0315527
0.228226
-0.0344757
0.219954
-0.0369351
0.211535
-0.0388955
0.20311
-0.0403156
0.194801
-0.0411818
0.186711
-0.0415104
0.178918
-0.0413363
0.171482
-0.0407053
0.164447
-0.0396709
0.157839
-0.0382927
0.151673
-0.0366329
0.145953
-0.0347531
0.140674
-0.0327125
0.135828
-0.0305661
0.131398
-0.0283641
0.127368
-0.026151
0.123717
-0.0239653
0.120423
-0.0218396
0.117463
-0.0198007
0.114813
-0.0178691
0.112449
-0.0160599
0.110348
-0.0143803
0.108488
-0.0128331
0.106849
-0.0114068
0.105412
-0.0100924
0.104166
-0.00884359
0.103097
-0.00764534
0.102214
-0.00637678
0.101507
-0.00504639
0.101021
-0.00339581
0.100753
-0.00151932
0.100797
0.00102052
0.101155
0.00391772
0.102027
0.00776565
0.103274
0.0110353
0.105297
0.0155934
0.0159482
0.258967
-0.0189125
-0.264452
0.252696
-0.0218971
0.245772
-0.0246291
0.238337
-0.0270401
0.230519
-0.0291177
0.22245
-0.0308259
0.214257
-0.0321232
0.206063
-0.0329877
0.197974
-0.0334212
0.19008
-0.0334422
0.182455
-0.0330802
0.175157
-0.0323735
0.168231
-0.0313666
0.161707
-0.0301084
0.155603
-0.0286491
0.149928
-0.0270378
0.144684
-0.0253217
0.139864
-0.023544
0.135457
-0.0217439
0.131447
-0.0199556
0.127816
-0.0182086
0.124542
-0.0165269
0.121603
-0.0149296
0.118973
-0.0134305
0.11663
-0.012037
0.114549
-0.0107519
0.112709
-0.0095669
0.11109
-0.00847302
0.10968
-0.00743381
0.108466
-0.00643118
0.107458
-0.0053694
0.106655
-0.00424265
0.106104
-0.00284576
0.105821
-0.00123594
0.10591
0.000931922
0.106397
0.00343065
0.107481
0.00668136
0.109033
0.00948334
0.111416
0.0132103
0.0134404
0.268686
-0.0138952
-0.273703
0.262908
-0.016119
0.256466
-0.0181873
0.249469
-0.0200434
0.242024
-0.0216725
0.234241
-0.0230434
0.226238
-0.0241201
0.21813
-0.0248795
0.210025
-0.0253157
0.202019
-0.0254364
0.194198
-0.0252591
0.186633
-0.0248086
0.179383
-0.0241163
0.172492
-0.0232178
0.165994
-0.0221512
0.159911
-0.0209545
0.154254
-0.0196647
0.149026
-0.0183167
0.144225
-0.0169422
0.139839
-0.0155695
0.135853
-0.0142227
0.132248
-0.0129222
0.129002
-0.0116838
0.126091
-0.0105195
0.12349
-0.00943585
0.121173
-0.00843541
0.119119
-0.0075126
0.117306
-0.00665945
0.115721
-0.00584889
0.114352
-0.00506295
0.113213
-0.00423029
0.112308
-0.00333728
0.111693
-0.0022311
0.111398
-0.000940914
0.111542
0.000787947
0.112175
0.0027975
0.113493
0.00536335
0.115372
0.00760435
0.118132
0.0104507
0.0106015
0.280407
-0.00919301
-0.285109
0.274965
-0.0106769
0.268852
-0.0120739
0.262151
-0.0133428
0.25495
-0.0144714
0.247344
-0.015437
0.239437
-0.0162131
0.231338
-0.0167809
0.223155
-0.0171327
0.214989
-0.0172703
0.206932
-0.0172026
0.199068
-0.0169443
0.191467
-0.016515
0.184187
-0.0159379
0.177274
-0.0152384
0.170762
-0.0144427
0.164674
-0.0135766
0.159022
-0.0126644
0.153809
-0.011729
0.14903
-0.0107905
0.144673
-0.00986645
0.140723
-0.00897174
0.137157
-0.00811806
0.133952
-0.00731414
0.131081
-0.00656515
0.128519
-0.00587305
0.126241
-0.00523442
0.124224
-0.00464325
0.122457
-0.00408151
0.120929
-0.00353457
0.119653
-0.00295489
0.118644
-0.00232774
0.117964
-0.00155158
0.117661
-0.000637409
0.117867
0.000582012
0.118655
0.00200926
0.120217
0.00380107
0.122432
0.00538947
0.125573
0.00730957
0.00742152
0.294932
-0.00463162
-0.299493
0.289637
-0.00538208
0.283657
-0.00609456
0.277061
-0.00674653
0.269921
-0.00733136
0.262321
-0.00783699
0.254357
-0.00824915
0.246133
-0.00855714
0.237757
-0.00875588
0.229331
-0.00884517
0.220957
-0.00882857
0.212726
-0.00871276
0.204718
-0.00850716
0.197004
-0.00822328
0.189639
-0.00787396
0.182669
-0.0074726
0.176125
-0.0070326
0.170027
-0.00656678
0.164385
-0.0060871
0.159199
-0.00560431
0.154461
-0.00512782
0.150154
-0.00466553
0.14626
-0.00422381
0.142753
-0.00380737
0.139607
-0.00341909
0.136794
-0.00306007
0.134289
-0.0027287
0.132067
-0.00242166
0.130115
-0.00212988
0.128426
-0.00184496
0.127014
-0.00154292
0.1259
-0.00121416
0.125156
-0.000807635
0.124845
-0.000325581
0.125112
0.000315004
0.126051
0.00106974
0.127851
0.00200068
0.130391
0.00284946
0.133905
0.00379651
0.00389899
0.313295
-0.317926
0.307913
0.301818
0.295072
0.28774
0.279903
0.271654
0.263097
0.254341
0.245496
0.236667
0.227955
0.219447
0.211224
0.20335
0.195878
0.188845
0.182278
0.176191
0.170587
0.165459
0.160793
0.15657
0.152762
0.149343
0.146283
0.143554
0.141133
0.139003
0.137158
0.135615
0.134401
0.133593
0.133268
0.133583
0.134652
0.136653
0.139502
0.143299
0.173379
0.00169619
-0.172998
0.173623
0.00282808
0.173726
0.00395331
0.173688
0.00507064
0.173508
0.00617877
0.173184
0.00727645
0.172714
0.00836247
0.172099
0.0094357
0.171338
0.0104951
0.170431
0.0115395
0.169377
0.0125681
0.168177
0.0135799
0.166831
0.0145741
0.165339
0.0155496
0.163704
0.0165056
0.161927
0.0174409
0.160012
0.0183543
0.157963
0.0192438
0.1558
0.0201153
0.020896
0.176648
0.00135809
-0.17631
0.176883
0.00259304
0.177013
0.00382296
0.177037
0.00504636
0.176954
0.00626177
0.176763
0.00746772
0.176463
0.00866278
0.176053
0.0098456
0.175533
0.0110148
0.174903
0.0121693
0.174164
0.0133077
0.173315
0.0144289
0.172357
0.0155319
0.171291
0.0166157
0.170117
0.0176792
0.168837
0.0187213
0.16745
0.0197408
0.165958
0.020736
0.164359
0.0217148
0.0226075
0.180164
0.00106931
-0.179876
0.180385
0.00237254
0.180536
0.00367185
0.180617
0.00496566
0.180626
0.00625241
0.180563
0.00753054
0.180427
0.00879852
0.180218
0.0100549
0.179935
0.0112982
0.179577
0.0125272
0.179144
0.0137406
0.178636
0.0149372
0.178051
0.0161161
0.177391
0.0172763
0.176653
0.0184171
0.175836
0.0195379
0.174939
0.0206384
0.173956
0.0217188
0.172885
0.022786
0.0237762
0.183993
0.000840903
-0.183764
0.184185
0.00218068
0.184339
0.00351736
0.184456
0.00484937
0.184533
0.00617517
0.18457
0.0074932
0.184567
0.00880197
0.184522
0.0101
0.184434
0.0113859
0.184303
0.0126583
0.184128
0.0139159
0.183907
0.0151576
0.183641
0.0163823
0.183328
0.0175891
0.182968
0.0187771
0.18256
0.0199456
0.182105
0.0210939
0.181601
0.0222225
0.181052
0.0233351
0.0243865
0.18809
0.000666518
-0.187916
0.188255
0.00201571
0.18841
0.00336221
0.188555
0.00470452
0.188689
0.00604115
0.188812
0.00737061
0.188922
0.00869146
0.18902
0.0100023
0.189104
0.0113017
0.189174
0.0125883
0.189229
0.013861
0.189268
0.0151186
0.189291
0.0163599
0.189296
0.017584
0.189283
0.0187899
0.189251
0.0199771
0.189201
0.0211448
0.189129
0.0222937
0.189038
0.0234261
0.0245136
0.192323
0.000527822
-0.192185
0.192475
0.00186358
0.192641
0.00319678
0.192819
0.00452597
0.193011
0.00584973
0.193215
0.00716664
0.193431
0.0084753
0.193659
0.00977436
0.193898
0.0110625
0.194148
0.0123385
0.194408
0.0136011
0.194677
0.0148492
0.194955
0.0160817
0.195242
0.0172978
0.195535
0.0184965
0.195835
0.019677
0.196141
0.0208388
0.196452
0.0219824
0.196769
0.0231094
0.0242048
0.19658
0.000408499
-0.19646
0.196732
0.00171104
0.196918
0.00301105
0.197137
0.00430714
0.197389
0.0055979
0.197673
0.00688198
0.197991
0.00815802
0.19834
0.00942471
0.198722
0.0106808
0.199135
0.0119251
0.19958
0.0131563
0.200056
0.0143735
0.200562
0.0155756
0.201098
0.0167617
0.201664
0.0179309
0.202258
0.0190823
0.202882
0.0202155
0.203533
0.021331
0.204212
0.0224304
0.0235087
0.200815
0.000299671
-0.200706
0.200975
0.00155158
0.201185
0.00280098
0.201445
0.0040465
0.201756
0.00528676
0.202118
0.00652042
0.20253
0.00774617
0.202992
0.00896272
0.203504
0.0101688
0.204065
0.0113634
0.204677
0.0125451
0.205337
0.0137131
0.206046
0.0148662
0.206805
0.0160036
0.207611
0.0171244
0.208466
0.0182278
0.209368
0.0193132
0.210318
0.0203812
0.211314
0.0214339
0.0224728
0.205051
0.000199061
-0.20495
0.205217
0.00138535
0.205449
0.00256911
0.205746
0.00374898
0.206109
0.00492362
0.206538
0.0060917
0.207032
0.00725193
0.207592
0.00840304
0.208217
0.00954384
0.208907
0.0106731
0.209663
0.0117898
0.210483
0.0128929
0.211368
0.0139813
0.212317
0.0150541
0.213331
0.0161104
0.214409
0.0171496
0.215552
0.0181709
0.216758
0.0191752
0.218027
0.0201649
0.0211451
0.209351
0.000107662
-0.209259
0.20952
0.00121587
0.209768
0.00232151
0.210094
0.00342321
0.210497
0.00451965
0.21098
0.00560952
0.21154
0.00669154
0.212179
0.00776448
0.212895
0.00882712
0.21369
0.00987832
0.214563
0.010917
0.215514
0.0119421
0.216543
0.0129526
0.217649
0.0139476
0.218833
0.0149263
0.220095
0.0158878
0.221434
0.0168318
0.22285
0.0177588
0.224343
0.0186719
0.0195778
0.213807
2.73456e-05
-0.213726
0.213975
0.00104754
0.214232
0.00206508
0.214576
0.00307863
0.215009
0.00408685
0.21553
0.00508847
0.216139
0.00608221
0.216837
0.00706685
0.217623
0.0080412
0.218497
0.00900413
0.219459
0.00995455
0.22051
0.0108914
0.221649
0.0118138
0.222876
0.0127208
0.224191
0.0136114
0.225593
0.0144851
0.227084
0.0153412
0.228662
0.0161807
0.230327
0.0170066
0.0178263
0.218537
-4.00301e-05
-0.218469
0.2187
0.000884446
0.218959
0.0018062
0.219313
0.0027239
0.219764
0.00363625
0.22031
0.00454197
0.220953
0.00543981
0.221691
0.00632857
0.222525
0.00720708
0.223455
0.00807423
0.224481
0.00892894
0.225602
0.00977019
0.226819
0.010597
0.228131
0.0114086
0.229538
0.012204
0.231041
0.0129825
0.232638
0.0137438
0.234331
0.0144886
0.236117
0.01522
0.0159455
0.22369
-9.27638e-05
-0.223637
0.223844
0.000730145
0.2241
0.0015503
0.224458
0.0023664
0.224917
0.00317719
0.225477
0.0039814
0.226139
0.00477784
0.226903
0.00556532
0.227767
0.0063427
0.228732
0.00710889
0.229799
0.00786286
0.230965
0.00860361
0.232232
0.0093302
0.233599
0.0100418
0.235065
0.0107375
0.236631
0.0114167
0.238296
0.0120791
0.240059
0.0127253
0.241921
0.0133583
0.0139853
0.229458
-0.000129358
-0.229421
0.2296
0.000587555
0.229849
0.00130175
0.230203
0.00201198
0.230663
0.00271704
0.231229
0.00341573
0.2319
0.0041069
0.232676
0.0047894
0.233556
0.00546216
0.234541
0.00612412
0.23563
0.0067743
0.236822
0.00741174
0.238116
0.00803555
0.239513
0.00864488
0.241012
0.00923899
0.242611
0.00981722
0.244311
0.0103793
0.24611
0.0109259
0.248009
0.0114593
0.0119869
0.236079
-0.000148655
-0.23606
0.236208
0.000458777
0.236446
0.00106361
0.236793
0.00166469
0.237249
0.0022609
0.237814
0.00285112
0.238487
0.00343428
0.239267
0.00400931
0.240154
0.00457522
0.241147
0.00513102
0.242245
0.00567578
0.243448
0.00620863
0.244755
0.00672873
0.246165
0.0072353
0.247676
0.00772765
0.249288
0.00820518
0.251
0.00866764
0.25281
0.00911557
0.254719
0.00955092
0.00998055
0.243856
-0.000150039
-0.243854
0.24397
0.000344836
0.244196
0.000837343
0.244534
0.00132646
0.244984
0.00181119
0.245544
0.00229052
0.246215
0.00276352
0.246995
0.00322922
0.247884
0.00368674
0.248879
0.0041352
0.249981
0.00457377
0.251188
0.00500167
0.252499
0.00541814
0.253912
0.0058225
0.255425
0.00621412
0.257038
0.0065925
0.258748
0.00695739
0.260555
0.00730919
0.262456
0.00764944
0.0079844
0.253168
-0.000133726
-0.253184
0.253267
0.000245356
0.253482
0.000622428
0.253812
0.000996641
0.254256
0.00136715
0.254813
0.00173314
0.255483
0.00209379
0.256264
0.00244834
0.257155
0.00279601
0.258154
0.00313609
0.25926
0.00346789
0.26047
0.00379073
0.261785
0.004104
0.2632
0.00440711
0.264715
0.00469956
0.266326
0.00498092
0.268033
0.00525096
0.269832
0.00550995
0.271722
0.00575903
0.00600351
0.264506
-0.000101035
-0.264539
0.264593
0.000158198
0.2648
0.000415924
0.265125
0.000671508
0.265568
0.000924334
0.266127
0.00117379
0.266801
0.00141927
0.26759
0.00166021
0.268489
0.00189604
0.269499
0.00212621
0.270617
0.00235022
0.27184
0.00256756
0.273166
0.00277778
0.274593
0.00298045
0.276117
0.00317517
0.277737
0.00336164
0.279448
0.00353967
0.281249
0.00370939
0.283136
0.00387155
0.00403009
0.278516
-5.46315e-05
-0.278563
0.278595
7.91175e-05
0.278799
0.000212009
0.279127
0.000343691
0.279578
0.000473815
0.280149
0.000602041
0.280841
0.000728036
0.281649
0.000851479
0.282573
0.000972054
0.28361
0.00108946
0.284757
0.00120342
0.286011
0.00131365
0.287369
0.00141989
0.288827
0.00152192
0.290383
0.00161952
0.292032
0.00171251
0.293771
0.00180079
0.295596
0.00188441
0.297504
0.00196373
0.00204086
0.296094
-0.296149
0.296173
0.296385
0.296729
0.297203
0.297805
0.298533
0.299384
0.300356
0.301446
0.302649
0.303963
0.305383
0.306905
0.308524
0.310237
0.312037
0.313922
0.315885
0.142767
-0.0193023
-0.140873
0.145323
-0.0192035
0.147754
-0.0181946
0.150055
-0.0171402
0.152289
-0.0161333
0.154448
-0.015108
0.156513
-0.0140559
0.158477
-0.0129867
0.160337
-0.0119028
0.162088
-0.0108051
0.163726
-0.00969562
0.165249
-0.00857638
0.166655
-0.00744914
0.16794
-0.00631553
0.169103
-0.00517707
0.170141
-0.00403526
0.171052
-0.00289157
0.171833
-0.00174741
0.172482
-0.000604224
0.000536556
0.152365
-0.0211926
-0.150475
0.154418
-0.0212566
0.156411
-0.0201879
0.158276
-0.0190052
0.160052
-0.0179087
0.161751
-0.0168073
0.163365
-0.0156697
0.16489
-0.0145117
0.166328
-0.0133411
0.167681
-0.012158
0.168948
-0.0109629
0.17013
-0.00975757
0.171224
-0.0085433
0.17223
-0.00732134
0.173145
-0.00609293
0.173969
-0.00485936
0.1747
-0.003622
0.175335
-0.00238222
0.175872
-0.00114145
9.8841e-05
0.162878
-0.0226455
-0.161425
0.164321
-0.0227003
0.165709
-0.021575
0.167003
-0.0202996
0.168222
-0.0191282
0.169389
-0.0179741
0.170505
-0.016785
0.171565
-0.0155725
0.172572
-0.0143479
0.173526
-0.0131114
0.174425
-0.0118624
0.175269
-0.0106019
0.176057
-0.0093311
0.176787
-0.00805131
0.177458
-0.00676368
0.178068
-0.00546952
0.178616
-0.00417017
0.179101
-0.00286706
0.179521
-0.00156165
-0.000255446
0.173252
-0.0235738
-0.172324
0.174096
-0.0235447
0.174914
-0.0223928
0.17569
-0.0210752
0.176421
-0.0198597
0.177122
-0.0186744
0.177795
-0.0174586
0.17844
-0.0162172
0.179055
-0.0149626
0.17964
-0.0136964
0.180195
-0.0124176
0.18072
-0.0111268
0.181214
-0.00982526
0.181677
-0.00851417
0.182108
-0.00719472
0.182506
-0.00586817
0.182872
-0.00453583
0.183204
-0.00319907
0.183502
-0.00185934
-0.000518099
0.18302
-0.0240235
-0.182571
0.183343
-0.023867
0.183664
-0.0227144
0.183988
-0.0213987
0.184298
-0.0201698
0.184596
-0.0189731
0.184888
-0.0177503
0.185172
-0.0165014
0.185448
-0.0152379
0.185714
-0.0139628
0.185972
-0.0126755
0.186221
-0.0113763
0.186462
-0.0100663
0.186695
-0.00874692
0.18692
-0.00741919
0.187136
-0.00608435
0.187344
-0.00474368
0.187543
-0.00339849
0.187734
-0.00205017
-0.000700108
0.192074
-0.0240399
-0.192058
0.191952
-0.0237446
0.191844
-0.0226066
0.191768
-0.0213227
0.191705
-0.0201062
0.191649
-0.0189173
0.191605
-0.0177061
0.191573
-0.01647
0.191554
-0.0152187
0.191547
-0.0139556
0.191552
-0.0126806
0.19157
-0.011394
0.1916
-0.0100969
0.191644
-0.00879045
0.191701
-0.00747585
0.191771
-0.00615428
0.191854
-0.00482698
0.191951
-0.00349525
0.192061
-0.00216044
-0.000823902
0.200461
-0.0236512
-0.20085
0.199947
-0.0232298
0.199462
-0.0221216
0.19903
-0.0208909
0.198633
-0.019709
0.198263
-0.0185473
0.197923
-0.0173664
0.197615
-0.0161627
0.19734
-0.0149436
0.197097
-0.0137125
0.196886
-0.0124697
0.196708
-0.0112155
0.196562
-0.00995092
0.196449
-0.00867714
0.196368
-0.00739532
0.19632
-0.00610664
0.196306
-0.00481233
0.196324
-0.00351368
0.196376
-0.002212
-0.000908661
0.208253
-0.0228867
-0.209017
0.20739
-0.0223673
0.206575
-0.021306
0.205829
-0.0201456
0.205138
-0.0190178
0.204493
-0.0179024
0.203896
-0.0167695
0.20335
-0.015616
0.202853
-0.0144473
0.202407
-0.0132662
0.202011
-0.0120733
0.201664
-0.0108692
0.201368
-0.00965485
0.201123
-0.00843132
0.200927
-0.00719981
0.200782
-0.0059615
0.200687
-0.00471763
0.200643
-0.00346947
0.200649
-0.00221833
-0.000965577
0.215522
-0.0217886
-0.21662
0.214361
-0.0212067
0.213264
-0.0202087
0.212251
-0.0191323
0.211308
-0.0180749
0.210428
-0.0170224
0.209611
-0.0159533
0.208861
-0.0148653
0.208176
-0.0137622
0.207556
-0.0126465
0.207002
-0.0115189
0.206512
-0.01038
0.206088
-0.00923084
0.20573
-0.00807257
0.205436
-0.00690636
0.205208
-0.00573338
0.205045
-0.0045549
0.204948
-0.00337218
0.204916
-0.00218655
-0.000999345
0.222359
-0.0204099
-0.223737
0.220953
-0.0198015
0.219625
-0.0188804
0.218391
-0.0178977
0.217239
-0.0169231
0.216163
-0.015947
0.215165
-0.0149547
0.214244
-0.0139447
0.213402
-0.0129197
0.212637
-0.0118817
0.21195
-0.0108317
0.21134
-0.0097704
0.210808
-0.00869884
0.210354
-0.00761817
0.209977
-0.00652957
0.209678
-0.00543426
0.209456
-0.0043335
0.209313
-0.00322858
0.209247
-0.00212081
-0.00101154
0.228888
-0.0188068
-0.230491
0.22729
-0.0182037
0.22578
-0.0173695
0.224369
-0.0164867
0.223049
-0.0156037
0.221816
-0.0147141
0.22067
-0.0138085
0.219611
-0.0128859
0.21864
-0.0119486
0.217756
-0.010998
0.21696
-0.0100353
0.216251
-0.00906129
0.215629
-0.00807704
0.215095
-0.00708373
0.214648
-0.00608254
0.214288
-0.00507471
0.214016
-0.00406151
0.213832
-0.00304424
0.213735
-0.00202421
-0.00100278
0.235279
-0.0170328
-0.237053
0.233535
-0.0164601
0.231885
-0.0157193
0.230338
-0.0149397
0.228888
-0.0141538
0.227532
-0.0133578
0.226269
-0.0125458
0.225101
-0.0117175
0.224027
-0.0108747
0.223048
-0.0100186
0.222163
-0.00915042
0.221373
-0.00827098
0.220677
-0.00738143
0.220076
-0.00648293
0.21957
-0.00557667
0.219159
-0.00466391
0.218844
-0.00374589
0.218623
-0.00282393
0.218499
-0.00189933
-0.000973428
0.241748
-0.0151343
-0.243646
0.239898
-0.0146108
0.238146
-0.0139667
0.236497
-0.0132911
0.234948
-0.0126051
0.233497
-0.0119068
0.232144
-0.0111929
0.23089
-0.0104634
0.229735
-0.00971962
0.228679
-0.00896291
0.227723
-0.00819424
0.226867
-0.00741463
0.226111
-0.00662516
0.225455
-0.00582698
0.224899
-0.00502128
0.224445
-0.00420929
0.224091
-0.00339224
0.223838
-0.00257141
0.223687
-0.0017481
-0.000923615
0.248565
-0.0131482
-0.250551
0.246641
-0.0126869
0.244814
-0.0121401
0.243091
-0.0115675
0.241468
-0.0109822
0.239945
-0.0103837
0.238522
-0.00977005
0.2372
-0.00914174
0.235981
-0.0084999
0.234863
-0.00784563
0.233849
-0.00717989
0.232938
-0.00650371
0.232131
-0.00581814
0.231428
-0.00512429
0.23083
-0.0044233
0.230337
-0.00371635
0.22995
-0.00300464
0.229668
-0.00228939
0.229491
-0.00157184
-0.000853242
0.256061
-0.0111003
-0.258109
0.254084
-0.0107094
0.252202
-0.0102587
0.250422
-0.00978684
0.248741
-0.00930172
0.247161
-0.00880325
0.245681
-0.0082908
0.244305
-0.00776487
0.243031
-0.00722645
0.241862
-0.00667649
0.240798
-0.00611592
0.23984
-0.00554569
0.238989
-0.00496678
0.238245
-0.00438024
0.237608
-0.00378713
0.237081
-0.00318854
0.236662
-0.00258559
0.236352
-0.00197943
0.236151
-0.0013712
-0.000762064
0.264633
-0.00900394
-0.266729
0.262612
-0.00868835
0.260685
-0.00833166
0.258856
-0.00795785
0.257125
-0.00757142
0.255495
-0.00717261
0.253965
-0.00676139
0.252539
-0.00633832
0.251216
-0.00590419
0.25
-0.00545983
0.24889
-0.00500608
0.247888
-0.00454376
0.246995
-0.00407379
0.246212
-0.00359707
0.245539
-0.00311456
0.244978
-0.00262723
0.244529
-0.00213608
0.244191
-0.00164211
0.243966
-0.00114636
-0.000649867
0.274756
-0.00686076
-0.276899
0.27269
-0.00662313
0.270717
-0.00635807
0.268839
-0.00607975
0.267058
-0.00579052
0.265376
-0.00549075
0.263795
-0.00518069
0.262318
-0.00486085
0.260945
-0.00453185
0.25968
-0.00419438
0.258523
-0.00384912
0.257476
-0.00349678
0.25654
-0.00313809
0.255717
-0.00277383
0.255007
-0.00240478
0.254412
-0.00203175
0.253931
-0.00165558
0.253566
-0.00127711
0.253317
-0.000897184
-0.000516676
0.287018
-0.00466115
-0.289217
0.284897
-0.0045027
0.282866
-0.00432722
0.280929
-0.0041424
0.279088
-0.00394934
0.277345
-0.00374841
0.275705
-0.00353988
0.274168
-0.00332416
0.272738
-0.0031017
0.271416
-0.002873
0.270206
-0.00263855
0.269108
-0.00239888
0.268124
-0.00215455
0.267257
-0.00190611
0.266506
-0.00165415
0.265874
-0.00139927
0.26536
-0.00114208
0.264966
-0.000883217
0.264692
-0.000623299
-0.000362968
0.302167
-0.00238425
-0.304444
0.29997
-0.00230545
0.297861
-0.00221819
0.295844
-0.00212587
0.293924
-0.00202892
0.292103
-0.00192756
0.290385
-0.00182197
0.288773
-0.00171238
0.287271
-0.00159903
0.28588
-0.0014822
0.284603
-0.00136217
0.283444
-0.00123923
0.282403
-0.00111368
0.281483
-0.000985856
0.280685
-0.000856074
0.28001
-0.000724671
0.27946
-0.000591993
0.279035
-0.000458388
0.278736
-0.00032421
-0.000189817
0.321216
-0.3236
0.318911
0.316693
0.314567
0.312538
0.31061
0.308788
0.307076
0.305477
0.303995
0.302632
0.301393
0.30028
0.299294
0.298438
0.297713
0.297121
0.296663
0.296338
0.0640699
0.00317619
-0.0032315
0.064243
0.00955016
-0.00972332
0.0645349
0.0159753
-0.0162672
0.0649537
0.0225197
-0.0229384
0.0655095
0.029241
-0.0297968
0.0662173
0.0361992
-0.0369069
0.0670976
0.0434584
-0.0443387
0.068178
0.0510886
-0.052169
0.069495
0.0591659
-0.0604829
0.0710965
0.0677743
-0.0693758
0.073046
0.077003
-0.0789525
0.0754274
0.0869512
-0.0893326
0.0783549
0.0977094
-0.100637
0.0819796
0.10939
-0.113014
0.0865289
0.122008
-0.126557
0.0922665
0.135741
-0.141479
0.0997771
0.150031
-0.157541
0.109185
0.166031
-0.175439
0.123534
0.178224
-0.192574
0.199048
-0.216387
0.0689324
0.00310742
0.06914
0.00934258
0.0694861
0.0156291
0.0699793
0.0220265
0.0706311
0.0285892
0.0714585
0.0353717
0.0724848
0.0424321
0.0737413
0.0498322
0.0752692
0.057638
0.077123
0.0659205
0.0793741
0.0747518
0.0821168
0.0842085
0.0854766
0.0943496
0.0896182
0.105248
0.0947801
0.116846
0.10123
0.129291
0.109564
0.141698
0.119855
0.15574
0.134716
0.163364
0.183289
0.0741581
0.00302693
0.0744003
0.00910036
0.0748042
0.0152252
0.0753781
0.0214526
0.0761349
0.0278323
0.0770934
0.0344132
0.0782794
0.041246
0.0797276
0.048384
0.0814836
0.0558821
0.0836073
0.0637967
0.0861772
0.072182
0.0892954
0.0810902
0.0930962
0.0905488
0.097753
0.100591
0.103507
0.111092
0.11062
0.122178
0.119652
0.132665
0.130586
0.144806
0.14511
0.148841
0.166974
0.0797779
0.00293466
0.0800557
0.00882256
0.0805203
0.0147607
0.0811803
0.0207926
0.08205
0.0269626
0.0831498
0.0333134
0.0845077
0.0398881
0.0861613
0.0467304
0.0881598
0.0538836
0.0905675
0.0613891
0.0934673
0.0692821
0.096967
0.0775906
0.101204
0.0863117
0.106354
0.095441
0.112651
0.104795
0.120333
0.114496
0.12989
0.123108
0.141237
0.133459
0.15542
0.134658
0.15007
0.0858228
0.00283006
0.0861377
0.00850768
0.0866657
0.0142326
0.0874165
0.0200418
0.0884055
0.0259736
0.0896548
0.0320641
0.0911944
0.0383484
0.0930644
0.0448605
0.0953165
0.0516315
0.0980177
0.0586879
0.101253
0.0660464
0.105133
0.0737113
0.109792
0.0816522
0.115401
0.0898317
0.122178
0.0980188
0.130322
0.106352
0.140243
0.113186
0.15188
0.121822
0.165665
0.120873
0.133164
0.0923247
0.00271265
0.0926781
0.00815425
0.0932719
0.0136388
0.0941167
0.0191971
0.0952293
0.0248611
0.0966334
0.0306601
0.0983607
0.036621
0.100453
0.0427683
0.102963
0.049121
0.10596
0.0556913
0.109528
0.0624784
0.113774
0.0694652
0.118829
0.0765975
0.124848
0.0838128
0.132026
0.0908403
0.140522
0.0978563
0.150646
0.103062
0.162446
0.110022
0.175669
0.10765
0.116775
0.099318
0.00258208
0.0997111
0.00776121
0.100372
0.0129779
0.101312
0.0182566
0.10255
0.023623
0.104111
0.0290996
0.106027
0.0347051
0.108341
0.0404544
0.111106
0.0463557
0.11439
0.0524075
0.118274
0.0585938
0.12286
0.0648795
0.128267
0.0711908
0.134629
0.0774505
0.142115
0.0833547
0.150845
0.0891261
0.160997
0.0929102
0.172787
0.0982318
0.185327
0.0951104
0.101253
0.10684
0.00243822
0.107273
0.00732815
0.108001
0.0122495
0.109037
0.0172207
0.110399
0.0222606
0.112114
0.0273851
0.114214
0.0326052
0.116741
0.0379269
0.119749
0.0433481
0.1233
0.048856
0.127473
0.0544217
0.132356
0.0599965
0.138055
0.0654915
0.14468
0.0708251
0.152362
0.0756729
0.161201
0.0802867
0.171213
0.0828986
0.182782
0.0866626
0.1946
0.083292
0.0868355
0.114929
0.0022812
0.115402
0.00685559
0.116196
0.0114549
0.117326
0.0160916
0.118808
0.0207781
0.12067
0.0255234
0.122943
0.0303318
0.125669
0.035201
0.128897
0.0401205
0.132685
0.0450677
0.137102
0.0500042
0.142226
0.0548725
0.148144
0.0595743
0.154939
0.0640295
0.162697
0.0679148
0.171512
0.0714725
0.181245
0.0731651
0.192378
0.0755298
0.203464
0.0722061
0.0736795
0.123629
0.00211155
0.12414
0.00634515
0.124997
0.0105972
0.126215
0.0148744
0.12781
0.019183
0.129807
0.0235261
0.132237
0.0279013
0.135139
0.0322997
0.138556
0.0367036
0.14254
0.0410838
0.147149
0.045395
0.152445
0.0495758
0.158495
0.0535245
0.165359
0.0571652
0.173074
0.0602002
0.181724
0.0628224
0.191074
0.0638155
0.201585
0.0650181
0.211911
0.0618809
0.0618528
0.132986
0.0019302
0.133531
0.00579971
0.134447
0.00968158
0.135744
0.0135771
0.13744
0.0174871
0.139557
0.0214092
0.142123
0.0253357
0.14517
0.0292523
0.148737
0.0331362
0.152868
0.0369538
0.157606
0.0406566
0.162999
0.0441826
0.16909
0.0474337
0.175918
0.0503374
0.183476
0.0526418
0.19183
0.0544684
0.200708
0.0549374
0.210468
0.0552581
0.219987
0.0523622
0.0513485
0.143048
0.00173848
0.143624
0.0052233
0.144591
0.00871504
0.145957
0.0122102
0.147739
0.0157051
0.149956
0.0191928
0.15263
0.0226616
0.155789
0.0260934
0.159463
0.0294621
0.163684
0.0327324
0.168486
0.0358554
0.173896
0.0387717
0.179938
0.0413922
0.186628
0.0436476
0.193929
0.0453401
0.201875
0.0465231
0.210205
0.0466066
0.219142
0.0463214
0.227815
0.0436898
0.0421099
0.153868
0.00153805
0.15447
0.00462095
0.155479
0.00770624
0.156903
0.0107865
0.158753
0.0138545
0.161046
0.0169002
0.163799
0.0199088
0.167032
0.0228603
0.170766
0.0257275
0.175024
0.0284752
0.179822
0.0310571
0.185175
0.0334185
0.191085
0.0354827
0.197547
0.037185
0.204508
0.038379
0.211962
0.0390694
0.219686
0.0388827
0.227777
0.0382304
0.235587
0.0358795
0.0340511
0.165505
0.00133079
0.166127
0.00399825
0.167169
0.00666471
0.168635
0.00931991
0.170536
0.0119541
0.172881
0.0145554
0.175682
0.0171077
0.178952
0.0195904
0.182702
0.0219769
0.186943
0.0242342
0.19168
0.0263206
0.19691
0.028188
0.20262
0.029773
0.208787
0.0310183
0.215346
0.0318196
0.22226
0.0321559
0.229343
0.0317994
0.236604
0.0309692
0.243568
0.028916
0.0270679
0.178019
0.00111852
0.178656
0.0033607
0.179721
0.00559972
0.181218
0.00782361
0.18315
0.0100215
0.185525
0.0121808
0.188347
0.0142855
0.191621
0.016316
0.19535
0.018248
0.199533
0.0200519
0.204161
0.0216922
0.209221
0.0231282
0.214684
0.02431
0.220513
0.0251896
0.226638
0.0256946
0.232998
0.0257957
0.23944
0.0253573
0.245918
0.0244909
0.252083
0.0227513
0.0210416
0.191478
0.000902771
0.192126
0.00271282
0.193207
0.00451876
0.194722
0.00630821
0.196674
0.00807047
0.199061
0.00979346
0.201884
0.0114627
0.205139
0.0130606
0.208821
0.0145663
0.212917
0.0159553
0.217411
0.0171985
0.222275
0.0182637
0.227473
0.019113
0.232953
0.0197089
0.238645
0.0200023
0.244475
0.0199659
0.250313
0.01952
0.256084
0.0187198
0.261528
0.0173069
0.0158407
0.205955
0.000684373
0.206611
0.00205694
0.207704
0.00342556
0.209233
0.0047788
0.211197
0.00610728
0.213589
0.00740068
0.216405
0.00864692
0.219634
0.00983183
0.223261
0.0109388
0.227268
0.0119489
0.231626
0.0128402
0.236301
0.0135887
0.241247
0.0141674
0.246406
0.0145492
0.251707
0.0147021
0.257068
0.0146049
0.262375
0.0142122
0.267545
0.0135501
0.272378
0.0124742
0.0113197
0.221528
0.000462953
0.222193
0.00139181
0.223301
0.00231773
0.224848
0.00323162
0.226829
0.00412648
0.229234
0.00499475
0.232054
0.00582773
0.23527
0.00661534
0.238863
0.00734607
0.242805
0.00800686
0.247062
0.00858314
0.251592
0.00905896
0.256342
0.00941699
0.261252
0.0096398
0.266246
0.00970816
0.271242
0.00960815
0.276139
0.00931539
0.280847
0.00884177
0.28521
0.00811179
0.00731235
0.238281
0.000236307
0.238962
0.000710826
0.240096
0.00118388
0.241678
0.00165007
0.243698
0.00210575
0.246146
0.0025469
0.249005
0.00296889
0.252254
0.00336642
0.255867
0.00373348
0.25981
0.0040634
0.264044
0.00434878
0.268522
0.00458164
0.273185
0.00475343
0.27797
0.0048556
0.282799
0.00487907
0.28759
0.00481701
0.292246
0.00465878
0.296679
0.00440905
0.300755
0.00403564
0.00362372
0.256308
0.257019
0.258203
0.259853
0.261959
0.264506
0.267474
0.270841
0.274574
0.278638
0.282987
0.287568
0.292322
0.297177
0.302056
0.306873
0.311532
0.315941
0.319977
0.0355442
0.00263209
-0.0028224
0.035724
0.00828151
-0.00846128
0.0358919
0.0139906
-0.0141585
0.0360456
0.0197934
-0.0199471
0.0361819
0.0257332
-0.0258695
0.0362963
0.0318548
-0.0319692
0.036383
0.0382073
-0.0382939
0.0364341
0.0448447
-0.0448958
0.0364399
0.0518288
-0.0518347
0.0363881
0.059229
-0.0591772
0.0362628
0.0671317
-0.0670063
0.0360443
0.0756307
-0.0754122
0.0357062
0.0848666
-0.0845285
0.035216
0.0949623
-0.0944722
0.0345251
0.106199
-0.105508
0.0335747
0.118679
-0.117728
0.0322641
0.133116
-0.131806
0.0304694
0.149269
-0.147474
0.0279658
0.169411
-0.166907
0.19279
-0.189417
0.0355388
0.00244654
0.0357102
0.00811014
0.0358663
0.0138346
0.0360049
0.0196547
0.0361231
0.025615
0.0362166
0.0317613
0.0362796
0.0381443
0.0363047
0.0448196
0.0362824
0.0518511
0.0362008
0.0593106
0.0360445
0.0672879
0.035795
0.0758803
0.0354268
0.0852347
0.0349097
0.0954794
0.0341982
0.106911
0.0332387
0.119638
0.0319372
0.134418
0.0301884
0.151018
0.0277726
0.171827
0.195974
0.0355305
0.00226878
0.0356904
0.0079502
0.0358316
0.0136933
0.0359522
0.0195341
0.0360492
0.0255179
0.0361186
0.0316919
0.0361548
0.0381081
0.0361508
0.0448237
0.0360972
0.0519047
0.0359826
0.0594252
0.0357923
0.0674782
0.0355083
0.0761642
0.035107
0.085636
0.0345598
0.0960266
0.0338247
0.107646
0.0328536
0.120609
0.0315591
0.135712
0.029856
0.152721
0.0275305
0.174152
0.198958
0.0355191
0.00210182
0.0356646
0.0078047
0.035788
0.0135699
0.0358875
0.0194346
0.0359603
0.0254451
0.0360026
0.0316497
0.036009
0.0381017
0.0359727
0.04486
0.0358847
0.0519927
0.0357339
0.059576
0.0355063
0.0677058
0.0351848
0.0764858
0.0347471
0.0860737
0.0341666
0.0966071
0.0334049
0.108407
0.0324194
0.121595
0.0311304
0.137001
0.0294727
0.154379
0.0272402
0.176385
0.201734
0.0355048
0.00194865
0.0356329
0.00767662
0.0357355
0.0134673
0.0358109
0.0193592
0.0358566
0.0253994
0.0358688
0.0316374
0.0358424
0.038128
0.0357707
0.0449317
0.0356452
0.0521183
0.0354551
0.0597661
0.0351871
0.0679738
0.0348247
0.0768481
0.0343475
0.086551
0.0337304
0.0972242
0.0329393
0.109199
0.0319367
0.122597
0.0306515
0.138287
0.0290386
0.155991
0.0269024
0.178521
0.204289
0.0354876
0.00181224
0.0355953
0.0075689
0.0356741
0.0133885
0.0357226
0.0193108
0.0357382
0.0253838
0.0357175
0.0316582
0.0356553
0.0381902
0.0355453
0.0450417
0.0353793
0.0522843
0.0351467
0.0599986
0.0348351
0.0682855
0.0344287
0.0772545
0.0339086
0.087071
0.0332518
0.097881
0.0324284
0.110022
0.0314057
0.12362
0.0301232
0.139569
0.0285542
0.15756
0.0265183
0.180557
0.206614
0.0354675
0.00169554
0.0355519
0.00748447
0.0356041
0.0133362
0.0356228
0.0192921
0.0356055
0.025401
0.0355489
0.0317149
0.0354481
0.0382909
0.0352969
0.0451929
0.0350873
0.052494
0.0348093
0.0602766
0.0344509
0.0686439
0.0339972
0.0777081
0.0334312
0.0876371
0.0327314
0.0985808
0.0318727
0.110881
0.0308271
0.124666
0.0295463
0.14085
0.02802
0.159087
0.0260895
0.182487
0.208699
0.0354446
0.00160147
0.0355028
0.0074262
0.0355256
0.0133135
0.0355116
0.0193061
0.0354586
0.025454
0.0353634
0.0318101
0.0352211
0.0384332
0.0350258
0.0453882
0.0347697
0.0527501
0.0344432
0.0606031
0.034035
0.0690521
0.033531
0.0782121
0.0329157
0.0882524
0.0321697
0.0993268
0.031273
0.111777
0.0302014
0.125737
0.0289217
0.14213
0.0274365
0.160572
0.0256179
0.184306
0.210535
0.0354188
0.0015329
0.0354481
0.00739692
0.0354387
0.0133229
0.0353893
0.0193555
0.0352979
0.0255454
0.0351613
0.0319468
0.0349748
0.0386196
0.0347326
0.0456304
0.0344272
0.0530555
0.0340492
0.060981
0.0335881
0.0695133
0.0330305
0.0787697
0.0323629
0.08892
0.0315675
0.100122
0.03063
0.112715
0.0295293
0.126838
0.0282504
0.143408
0.0268044
0.162018
0.025106
0.186004
0.212114
0.0353904
0.00149269
0.0353879
0.00739941
0.0353435
0.0133673
0.0352561
0.0194429
0.0351237
0.0256778
0.034943
0.0321274
0.0347097
0.038853
0.0344177
0.0459223
0.0340601
0.0534132
0.0336278
0.0614133
0.0331108
0.0700303
0.0324966
0.0793838
0.0317735
0.0896431
0.0309255
0.10097
0.0299443
0.113696
0.0288118
0.127971
0.0275337
0.144687
0.0261243
0.163427
0.0245567
0.187572
0.213432
0.0353592
0.00148363
0.0353223
0.00743639
0.0352403
0.0134492
0.0351123
0.0195709
0.0349363
0.0258538
0.034709
0.0323547
0.034426
0.0391359
0.0340817
0.0462666
0.0336691
0.0538258
0.0331796
0.0619028
0.0326037
0.0706062
0.0319299
0.0800577
0.0311482
0.0904248
0.0302445
0.101874
0.0292169
0.114724
0.0280497
0.129138
0.0267726
0.145964
0.0253971
0.164803
0.0239738
0.188995
0.214487
0.0353255
0.00150848
0.0352514
0.0075105
0.0351293
0.0135713
0.0349582
0.019742
0.034736
0.026076
0.0344595
0.0326312
0.0341244
0.039471
0.0337251
0.0466659
0.0332548
0.0542961
0.0327052
0.0624524
0.0320675
0.0712439
0.031331
0.0807941
0.0304876
0.0912682
0.0295253
0.102836
0.0284484
0.1158
0.0272442
0.130342
0.0259683
0.14724
0.0246239
0.166147
0.0233613
0.190258
0.215282
0.0352891
0.00156991
0.0351753
0.00762431
0.0350106
0.0137359
0.034794
0.0199587
0.0345232
0.0263468
0.0341951
0.0329593
0.0338054
0.0398608
0.0333484
0.0471229
0.0328176
0.0548269
0.0322051
0.0630648
0.0315027
0.0719463
0.0307006
0.0815962
0.0297924
0.0921764
0.0287686
0.10386
0.0276396
0.116929
0.0263963
0.131585
0.0251216
0.148514
0.0238063
0.167463
0.0227239
0.19134
0.21583
0.0352503
0.00167056
0.0350943
0.00778031
0.0348847
0.0139456
0.0346201
0.0202232
0.0342984
0.0266685
0.0339163
0.0333415
0.0334692
0.0403078
0.0329519
0.0476402
0.032358
0.0554209
0.0316798
0.063743
0.0309097
0.0727164
0.030039
0.0824669
0.0290631
0.0931523
0.0279749
0.104948
0.026791
0.118113
0.0255071
0.132869
0.0242333
0.149788
0.0229465
0.168749
0.0220665
0.19222
0.216151
0.0352091
0.00181297
0.0350085
0.00798085
0.0347517
0.0142024
0.034437
0.0205379
0.034062
0.0270434
0.0336233
0.0337801
0.0331166
0.0408146
0.0325363
0.0482205
0.0318763
0.0560808
0.0311295
0.0644898
0.0302887
0.0735572
0.0293464
0.0834093
0.0282996
0.0941991
0.0271444
0.106104
0.0259028
0.119355
0.0245775
0.134194
0.0233036
0.151062
0.0220476
0.170005
0.0213929
0.192875
0.216279
0.0351655
0.0019996
0.0349182
0.00822819
0.0346119
0.0145087
0.0342449
0.020905
0.0338144
0.0274739
0.0333168
0.0342777
0.0327477
0.0413838
0.0321017
0.0488665
0.0313728
0.0568097
0.0305542
0.0653084
0.0296396
0.0744718
0.0286224
0.0844265
0.0275015
0.09532
0.0262765
0.107329
0.0249745
0.120657
0.0236074
0.135561
0.0223318
0.152338
0.0211131
0.171224
0.0207047
0.193283
0.216267
0.0351198
0.00223277
0.0348236
0.00852442
0.0344658
0.0148665
0.0340443
0.0213266
0.0335559
0.0279623
0.0329969
0.0348367
0.0323627
0.042018
0.031648
0.0495812
0.030847
0.0576107
0.0299532
0.0662021
0.0289611
0.075464
0.0278653
0.0855222
0.0266667
0.0965186
0.0253687
0.108627
0.0240031
0.122022
0.0225943
0.13697
0.0213146
0.153617
0.0201453
0.172393
0.0199965
0.193432
0.216182
0.0350721
0.0025147
0.034725
0.00887148
0.0343137
0.0152778
0.0338354
0.0218049
0.0332867
0.028511
0.0326636
0.0354599
0.0319613
0.0427202
0.0311746
0.0503679
0.0302977
0.0584876
0.0293247
0.0671752
0.0282505
0.0765382
0.0270715
0.0867012
0.0257904
0.0977997
0.0244152
0.110002
0.0229824
0.123455
0.0215314
0.138421
0.020245
0.154904
0.0191434
0.173495
0.0192512
0.193324
0.216114
0.0350227
0.00284738
0.0346232
0.00927105
0.0341564
0.0157445
0.0336193
0.022342
0.033008
0.0291223
0.0323182
0.0361497
0.0315449
0.0434935
0.0306827
0.0512301
0.0297259
0.0594444
0.028669
0.0682321
0.0275076
0.0776996
0.0262395
0.0879693
0.0248697
0.0991696
0.0234112
0.11146
0.0219054
0.124961
0.02041
0.139917
0.0191135
0.1562
0.0181025
0.174506
0.0184419
0.192985
0.216185
0.0349731
0.0345208
0.0339981
0.0334017
0.0327272
0.03197
0.0311248
0.0301859
0.0291473
0.0280036
0.0267507
0.0253874
0.0239201
0.0223661
0.0207702
0.019208
0.0178666
0.0169334
0.0173443
0.0350191
0.00337757
-0.00304546
0.0347314
0.0094301
-0.00914246
0.0344879
0.0154783
-0.0152348
0.0342871
0.0215617
-0.021361
0.0341267
0.027701
-0.0275405
0.0340021
0.0339153
-0.0337907
0.0339066
0.0402206
-0.0401251
0.0338306
0.0466288
-0.0465528
0.0337604
0.0531449
-0.0530747
0.0336767
0.0597657
-0.059682
0.0335529
0.0664712
-0.0663473
0.0333513
0.0732237
-0.0730221
0.03302
0.0799427
-0.0796114
0.0324854
0.0865127
-0.0859782
0.0316472
0.0926968
-0.0918586
0.0303612
0.0982178
-0.0969318
0.0284388
0.102417
-0.100495
0.0256726
0.104876
-0.10211
0.0215641
0.104297
-0.100188
0.102144
-0.0970788
0.0350742
0.0036563
0.0348391
0.00966515
0.0346455
0.0156719
0.0344919
0.0217153
0.0343757
0.0278172
0.0342923
0.0339987
0.034235
0.0402779
0.0341942
0.0466696
0.0341564
0.0531827
0.0341028
0.0598193
0.0340072
0.0665667
0.0338333
0.0733977
0.0335301
0.0802458
0.0330264
0.0870165
0.0322231
0.0935001
0.0309821
0.0994588
0.0291079
0.104291
0.026432
0.107552
0.0224311
0.108298
0.107283
0.0351252
0.00388535
0.0349385
0.00985181
0.0347908
0.0158196
0.0346803
0.0218258
0.034604
0.0278936
0.0345571
0.0340456
0.0345329
0.0403021
0.0345219
0.0466806
0.0345108
0.0531938
0.0344812
0.0598489
0.0344077
0.0666402
0.034255
0.0735505
0.0339739
0.0805269
0.0334956
0.0874948
0.0327237
0.094272
0.0315268
0.100656
0.0297067
0.106112
0.0271037
0.110155
0.023186
0.112215
0.112445
0.0351732
0.00406741
0.035032
0.00999303
0.0349274
0.0159242
0.0348573
0.021896
0.0348182
0.0279327
0.0348052
0.0340586
0.0348114
0.0402959
0.0348274
0.0466647
0.0348399
0.0531813
0.0348311
0.0598577
0.0347761
0.0666952
0.0346406
0.0736859
0.0343769
0.0807906
0.0339189
0.0879528
0.033172
0.0950188
0.0320115
0.101816
0.0302351
0.107888
0.0276874
0.112703
0.0238448
0.116058
0.117581
0.0352184
0.00420511
0.0351197
0.0100917
0.0350556
0.0159883
0.0350232
0.0219283
0.0350188
0.027937
0.0350373
0.0340401
0.0350716
0.0402615
0.0351122
0.0466241
0.0351462
0.0531473
0.035156
0.059848
0.0351172
0.066734
0.0349967
0.0738064
0.0347481
0.0810392
0.0343074
0.0883935
0.0335821
0.0957441
0.0324531
0.102945
0.0307161
0.109625
0.0282169
0.115202
0.0244564
0.119818
0.122683
0.0352608
0.00430107
0.0352018
0.0101507
0.0351752
0.016015
0.0351777
0.0219257
0.0352054
0.0279094
0.0352528
0.0339927
0.0353127
0.0402016
0.0353758
0.046561
0.035429
0.0530941
0.0354552
0.0598218
0.0354308
0.0667584
0.0353234
0.0739138
0.0350878
0.0812747
0.0346628
0.0888186
0.0339573
0.0964495
0.0328576
0.104045
0.0311597
0.111323
0.0287069
0.117655
0.0250284
0.123497
0.127749
0.0353004
0.00435797
0.0352782
0.0101729
0.0352861
0.0160071
0.0353207
0.0218912
0.0353775
0.0278525
0.0354511
0.0339191
0.0355341
0.0401186
0.035617
0.0464781
0.0356872
0.0530239
0.0357276
0.0597813
0.0357152
0.0667708
0.0356187
0.0740103
0.0353943
0.0814992
0.0349827
0.0892301
0.0342951
0.0971372
0.0332225
0.105118
0.0315632
0.112982
0.0291544
0.120064
0.0255552
0.127096
0.13277
0.0353372
0.00437851
0.0353488
0.0101613
0.0353882
0.0159677
0.0354518
0.0218276
0.0355349
0.0277694
0.0356318
0.0338222
0.0357352
0.0400152
0.0358354
0.0463779
0.0359199
0.0529394
0.0359721
0.0597291
0.0359694
0.0667735
0.0358816
0.0740981
0.035666
0.0817148
0.0352657
0.0896304
0.0345937
0.0978092
0.0335456
0.106166
0.0319237
0.114604
0.0295569
0.122431
0.0260355
0.130617
0.137736
0.035371
0.00436543
0.0354136
0.0101187
0.0354815
0.0158998
0.035571
0.0217381
0.0356773
0.027663
0.0357946
0.0337049
0.0359155
0.0398944
0.0360303
0.0462631
0.0361266
0.0528431
0.0361881
0.0596676
0.0361927
0.0667688
0.0361112
0.0741796
0.035902
0.081924
0.0355106
0.0900218
0.0348521
0.0984677
0.0338258
0.107192
0.0322398
0.11619
0.0299145
0.124756
0.0264697
0.134062
0.142634
0.035402
0.0043215
0.0354726
0.0100482
0.0355659
0.0158065
0.0356782
0.0216258
0.0358046
0.0275366
0.0359393
0.0335702
0.0360747
0.039759
0.0362013
0.0461365
0.0363067
0.0527377
0.0363749
0.0595994
0.0363844
0.0667594
0.0363067
0.0742572
0.0361017
0.0821291
0.0357167
0.0904067
0.0350694
0.099115
0.0340623
0.108199
0.0325107
0.117742
0.0302268
0.12704
0.0268579
0.137431
0.147455
0.0354301
0.00424954
0.0355257
0.00995251
0.0356413
0.0156909
0.0357732
0.0214939
0.0359166
0.0273932
0.0360656
0.0334213
0.0362125
0.0396121
0.0363479
0.0460011
0.0364596
0.052626
0.0365319
0.0595272
0.0365437
0.0667476
0.0364674
0.0743335
0.036264
0.0823325
0.035883
0.0907877
0.0352447
0.0997533
0.0342543
0.10919
0.0327354
0.119261
0.0304934
0.129282
0.0271997
0.140725
0.15219
0.0354552
0.00415241
0.0355729
0.00983479
0.0357077
0.0155561
0.0358561
0.0213455
0.0360133
0.027236
0.0361733
0.0332613
0.0363287
0.0394567
0.03647
0.0458598
0.0365851
0.0525108
0.0366587
0.0594536
0.03667
0.0667362
0.0365925
0.074411
0.0363882
0.0825368
0.0360088
0.0911672
0.035377
0.100385
0.0344011
0.110165
0.0329129
0.120749
0.0307134
0.131481
0.0274946
0.143943
0.156829
0.0354773
0.004033
0.0356141
0.00969799
0.035765
0.0154052
0.0359267
0.0211839
0.0360944
0.0270683
0.0362623
0.0330934
0.036423
0.0392961
0.0365671
0.0457157
0.0366827
0.0523952
0.0367547
0.0593816
0.0367629
0.066728
0.0366815
0.0744923
0.0364738
0.0827445
0.0360932
0.0915478
0.0354656
0.101013
0.0345017
0.111129
0.0330423
0.122208
0.030886
0.133637
0.0277424
0.147087
0.161363
0.0354964
0.00389423
0.0356492
0.00954512
0.0358132
0.0152412
0.035985
0.0210121
0.03616
0.0268933
0.0363326
0.0329209
0.0364953
0.0391333
0.0366391
0.0455719
0.0367521
0.0522822
0.0368196
0.0593142
0.0368218
0.0667258
0.0367337
0.0745804
0.0365199
0.0829583
0.0361356
0.0919322
0.0355096
0.101639
0.0345556
0.112083
0.0331227
0.123641
0.0310103
0.13575
0.0279425
0.150155
0.165783
0.0355124
0.00373907
0.0356783
0.00937922
0.0358522
0.0150673
0.0360308
0.0208334
0.03621
0.0267141
0.0363839
0.0327469
0.0365456
0.0389717
0.0366858
0.0454317
0.0367932
0.0521748
0.0368531
0.0592543
0.0368464
0.0667325
0.0367489
0.0746779
0.0365262
0.083181
0.0361354
0.092323
0.0355086
0.102265
0.0345621
0.11303
0.0331536
0.12505
0.0310857
0.137818
0.0280945
0.153146
0.170082
0.0355254
0.00357051
0.0357012
0.00920334
0.0358819
0.0148867
0.0360643
0.020651
0.0362443
0.0265341
0.0364165
0.0325748
0.0365737
0.0388144
0.0367073
0.0452981
0.0368058
0.0520763
0.0368551
0.059205
0.0368365
0.0667511
0.0367266
0.0747878
0.0364922
0.0834153
0.0360922
0.092723
0.0354618
0.102896
0.0345207
0.113971
0.0331343
0.126436
0.0311115
0.139841
0.028198
0.15606
0.174248
0.0355353
0.00339153
0.0357181
0.00902054
0.0359024
0.0147024
0.0360854
0.020468
0.036263
0.0263565
0.0364301
0.0324077
0.0365797
0.0386648
0.0367033
0.0451745
0.0367898
0.0519898
0.0368254
0.0591694
0.0367918
0.0667846
0.0366665
0.0749131
0.0364176
0.0836643
0.0360056
0.093135
0.0353689
0.103532
0.0344308
0.114909
0.0330642
0.127803
0.0310869
0.141818
0.0282525
0.158894
0.178274
0.0355421
0.00320517
0.0357288
0.00883388
0.0359136
0.0145175
0.036094
0.0202876
0.0362662
0.0261844
0.0364249
0.032249
0.0365637
0.038526
0.0366741
0.0450641
0.0367453
0.0519186
0.036764
0.0591508
0.0367123
0.0668362
0.0365686
0.0750569
0.0363021
0.0839307
0.0358752
0.0935619
0.0352295
0.104178
0.0342921
0.115846
0.0329432
0.129152
0.0310117
0.143749
0.0282578
0.161648
0.182151
0.0355459
0.00301444
0.0357333
0.00864644
0.0359156
0.0143352
0.0360903
0.0201129
0.0362537
0.026021
0.0364009
0.0321017
0.0365256
0.0384013
0.0366196
0.0449702
0.0366724
0.0518658
0.0366709
0.0591523
0.036598
0.0669091
0.0364327
0.0752222
0.0361457
0.0842178
0.035701
0.0940066
0.0350434
0.104836
0.0341044
0.116785
0.0327708
0.130485
0.0308853
0.145635
0.0282137
0.164319
0.185868
0.0355466
0.0357317
0.0359084
0.0360742
0.0362257
0.0363583
0.0364656
0.03654
0.036571
0.0365462
0.036449
0.0362589
0.0359482
0.0354827
0.0348103
0.0338674
0.032547
0.0307076
0.0281199
0.255795
0.00019008
0.255224
0.000570791
0.254277
0.000946846
0.252966
0.00131102
0.251308
0.00165811
0.249325
0.00198294
0.247045
0.00228024
0.2445
0.00254465
0.241729
0.00277089
0.238776
0.00295377
0.235687
0.00308836
0.232517
0.0031701
0.229322
0.00319496
0.226162
0.00315967
0.223101
0.0030619
0.2202
0.00290052
0.217524
0.0026757
0.215135
0.00238938
0.213091
0.00204359
0.00165114
0.21144
0.237787
0.000374207
0.237235
0.00112291
0.23632
0.00186211
0.235052
0.00257882
0.233447
0.00326282
0.231526
0.00390401
0.229314
0.00449216
0.226842
0.00501685
0.224145
0.00546762
0.221265
0.00583417
0.218247
0.00610656
0.215141
0.00627549
0.212004
0.00633261
0.208892
0.00627102
0.205868
0.00608563
0.202995
0.00577372
0.200336
0.00533525
0.197951
0.00477367
0.195902
0.0040932
0.00331921
0.194234
0.221041
0.000557129
0.220493
0.00167102
0.219585
0.00277054
0.218325
0.00383796
0.21673
0.00485861
0.214816
0.00581786
0.212607
0.00670078
0.210132
0.007492
0.207424
0.00817592
0.204521
0.00873696
0.201468
0.00915979
0.198313
0.00942984
0.195112
0.00953374
0.191923
0.00946007
0.188809
0.00920007
0.185834
0.00874848
0.183065
0.00810423
0.180567
0.00727163
0.178403
0.0062573
0.00509983
0.176622
0.205471
0.0007413
0.204919
0.00222247
0.204005
0.00368461
0.202737
0.00510627
0.201127
0.00646887
0.199191
0.00775376
0.19695
0.00894157
0.19443
0.0100122
0.191661
0.0109447
0.18868
0.0117182
0.185528
0.0123112
0.182255
0.0127032
0.178914
0.0128746
0.175566
0.0128084
0.172275
0.0124905
0.169112
0.0119117
0.166148
0.0110686
0.163454
0.0099652
0.161101
0.0086109
0.00705768
0.159143
0.190995
0.000927355
0.190438
0.0027793
0.189515
0.00460804
0.188232
0.00638933
0.186599
0.0081014
0.184631
0.0097221
0.182344
0.0112281
0.179762
0.0125946
0.176911
0.0137957
0.173825
0.0148044
0.170543
0.015593
0.167112
0.0161337
0.163587
0.0163995
0.16003
0.0163659
0.156509
0.0160117
0.153099
0.0153215
0.14988
0.0142877
0.146933
0.0129121
0.144337
0.0112071
0.00923782
0.142157
0.177539
0.00111468
0.176978
0.00333983
0.176048
0.00553829
0.174753
0.00768399
0.173102
0.00975278
0.171104
0.0117197
0.168774
0.0135579
0.16613
0.0152385
0.163196
0.0167304
0.16
0.0180006
0.156578
0.0190144
0.152976
0.0197357
0.149247
0.0201289
0.145453
0.0201594
0.141668
0.0197967
0.137973
0.0190162
0.134458
0.0178031
0.131216
0.0161546
0.128338
0.0140851
0.0116729
0.125903
0.165031
0.00130186
0.16447
0.00389992
0.16354
0.00646872
0.162243
0.00898132
0.160583
0.0114121
0.158569
0.013734
0.156209
0.0159175
0.153518
0.0179301
0.150513
0.0197358
0.147218
0.0212956
0.143665
0.0225673
0.139894
0.0235059
0.135958
0.024065
0.13192
0.0241982
0.127854
0.0238621
0.123851
0.0230195
0.12001
0.0216443
0.116439
0.0197249
0.113248
0.0172762
0.0143891
0.110532
0.153405
0.00148702
0.152851
0.0044541
0.151929
0.00739038
0.150641
0.010269
0.14899
0.0130638
0.146977
0.0157468
0.144608
0.0182864
0.141891
0.020647
0.138838
0.0227887
0.135467
0.0246667
0.131803
0.026231
0.127882
0.0274269
0.123751
0.028196
0.119472
0.0284774
0.115122
0.0282117
0.110798
0.0273442
0.10661
0.0258322
0.102685
0.0236497
0.099153
0.0208084
0.017411
0.096131
0.1426
0.00166815
0.142058
0.00499639
0.141155
0.00829341
0.13989
0.0115333
0.138263
0.0146906
0.136273
0.017737
0.13392
0.02064
0.131204
0.0233621
0.128133
0.02586
0.124716
0.0280836
0.120972
0.0299756
0.116927
0.0314713
0.112624
0.0324989
0.108121
0.0329811
0.103494
0.0328385
0.0988442
0.031994
0.094295
0.0303814
0.0899927
0.027952
0.0860923
0.0247088
0.0207655
0.0827378
0.132558
0.00184329
0.132033
0.00552101
0.131159
0.00916819
0.129931
0.0127608
0.128347
0.0162749
0.126401
0.0196831
0.124088
0.0229531
0.121403
0.0260463
0.118346
0.0289172
0.114918
0.0315115
0.111129
0.0337653
0.106996
0.0356039
0.102553
0.0369419
0.0978504
0.0376836
0.0929629
0.0377261
0.0879926
0.0369642
0.0830736
0.0353004
0.0783725
0.0326531
0.0740749
0.0290064
0.0244848
0.0703556
0.123225
0.00201072
0.122723
0.00602285
0.121885
0.0100061
0.120707
0.0139392
0.119181
0.0178006
0.117299
0.021565
0.115051
0.0252012
0.112427
0.0286709
0.109416
0.0319275
0.106014
0.0349141
0.102218
0.037561
0.0980371
0.0397848
0.0934926
0.0414864
0.0886254
0.0425508
0.0835024
0.042849
0.0782246
0.0422421
0.0729329
0.0405921
0.0678142
0.0377718
0.0630878
0.0337328
0.0286094
0.0589632
0.114551
0.00216905
0.114076
0.00649774
0.113283
0.0108001
0.112163
0.0150582
0.11071
0.0192541
0.10891
0.0233652
0.106749
0.0273625
0.10421
0.0312094
0.101278
0.0348599
0.0979364
0.0382555
0.0941745
0.0413229
0.089988
0.0439713
0.0853854
0.0460891
0.080394
0.0475422
0.0750694
0.0481736
0.0695054
0.0478061
0.0638454
0.0462521
0.058293
0.0433242
0.0531039
0.0389218
0.0331896
0.0485237
0.10649
0.00231727
0.106045
0.00694262
0.1053
0.0115447
0.104249
0.0161099
0.102878
0.0206244
0.101174
0.0250692
0.0991181
0.0294187
0.0966884
0.0336391
0.093862
0.0376862
0.0906151
0.0415023
0.0869257
0.0450123
0.082777
0.0481201
0.0781623
0.0507037
0.0730929
0.0526116
0.0676079
0.0536586
0.0617883
0.0536257
0.0557727
0.0522677
0.0497753
0.0493216
0.0440887
0.0446085
0.0382864
0.0389919
0.0989973
0.00245474
0.0985844
0.00735552
0.0978926
0.0122365
0.0969136
0.0170889
0.0956342
0.0219038
0.094037
0.0266664
0.0921002
0.0313555
0.089798
0.0359413
0.0871013
0.040383
0.0839783
0.0446253
0.0803971
0.0485936
0.0763278
0.0521893
0.0717481
0.0552834
0.0666503
0.0577095
0.0610531
0.0592558
0.0550174
0.0596614
0.0486691
0.058616
0.0422225
0.0557682
0.0360046
0.0508264
0.0439709
0.0303201
0.0920332
0.00258112
0.0916533
0.00773546
0.0910164
0.0128735
0.0901134
0.0179919
0.0889299
0.0230873
0.0874467
0.0281496
0.0856394
0.0331627
0.0834788
0.0381019
0.0809305
0.0429313
0.0779563
0.0475995
0.0745147
0.0520351
0.0705636
0.0561404
0.0660648
0.0597823
0.06099
0.0627842
0.0553342
0.0649116
0.0491312
0.0658643
0.0424849
0.0652623
0.0355943
0.0626588
0.0288154
0.0576053
0.0503234
0.0224629
0.0855602
0.00269634
0.0852135
0.00808221
0.0846321
0.0134548
0.0838065
0.0188176
0.0827213
0.0241724
0.0813562
0.0295148
0.0796848
0.034834
0.0776753
0.0401114
0.0752896
0.045317
0.0724837
0.0504054
0.0692083
0.0553105
0.0654101
0.0599386
0.0610354
0.064157
0.0560353
0.0677843
0.0503786
0.0705683
0.0440661
0.0721768
0.0371701
0.0721584
0.0298539
0.0699749
0.0224911
0.0649681
0.0574333
0.0153812
0.0795435
0.00280046
0.0792296
0.00839608
0.0787036
0.0139808
0.0779553
0.0195659
0.0769689
0.0251588
0.0757232
0.0307605
0.074191
0.0363663
0.0723385
0.0419639
0.070125
0.0475304
0.0675024
0.053028
0.064415
0.058398
0.0607998
0.0635538
0.0565894
0.0683673
0.0517148
0.0726589
0.0461184
0.0761648
0.0397632
0.078532
0.0326824
0.0792392
0.0249775
0.0776798
0.0170181
0.0729274
0.0654065
0.00904493
0.0739507
0.00289374
0.0736693
0.00867751
0.0731979
0.0144522
0.0725258
0.020238
0.071637
0.0260476
0.0705103
0.0318873
0.0691179
0.0377586
0.0674255
0.0436563
0.0653909
0.049565
0.0629632
0.0554558
0.060082
0.0612792
0.0566767
0.0669591
0.0526686
0.0723754
0.0479705
0.077357
0.0425004
0.0816349
0.0361815
0.0848509
0.0290036
0.0864171
0.0209761
0.0857073
0.012414
0.0814895
0.0743803
0.00344026
0.0687529
0.00297603
0.0685038
0.0089266
0.0680861
0.0148699
0.0674884
0.0208357
0.0666952
0.0268408
0.0656857
0.0328968
0.0644327
0.0390116
0.0629022
0.0451868
0.0610517
0.0514155
0.0588291
0.0576784
0.0561717
0.0639366
0.0530037
0.0701271
0.0492381
0.0761411
0.044773
0.0818221
0.0395064
0.0869014
0.0333248
0.0910325
0.0261749
0.093567
0.0179469
0.0939352
0.00879396
0.0906425
0.0846034
-0.00142917
0.0639253
0.0637094
0.0633445
0.0628193
0.0621195
0.0612256
0.060112
0.0587461
0.0570868
0.0550832
0.0526724
0.0497774
0.0463071
0.042151
0.0371939
0.0312946
0.0243668
0.0161919
0.00664633
-0.005829
0.20906
0.00238025
0.206799
0.00226108
0.204659
0.00214007
0.202642
0.00201663
0.200751
0.00189077
0.198989
0.00176265
0.197356
0.00163239
0.195856
0.00150013
0.19449
0.00136597
0.19326
0.00123004
0.192168
0.00109245
0.191214
0.00095332
0.190402
0.000812755
0.189731
0.000670867
0.189203
0.000527767
0.188819
0.000383564
0.188581
0.000238368
0.188489
9.22873e-05
0.188543
-5.45663e-05
-0.000202081
0.188745
0.19207
0.00454374
0.190013
0.00431828
0.188064
0.0040894
0.186225
0.00385545
0.184499
0.00361641
0.182889
0.00337258
0.181397
0.00312427
0.180026
0.00287176
0.178777
0.00261529
0.177651
0.00235514
0.176652
0.00209154
0.175781
0.00182476
0.175039
0.00155504
0.174427
0.00128264
0.173947
0.00100779
0.1736
0.000730741
0.173386
0.000451741
0.173308
0.000171035
0.173364
-0.000111131
-0.000394505
0.173557
0.174688
0.00647797
0.172848
0.00615871
0.171102
0.0058352
0.169453
0.00550397
0.167905
0.00516477
0.16646
0.0048181
0.165119
0.00446449
0.163887
0.00410439
0.162764
0.00373819
0.161753
0.0033663
0.160855
0.00298912
0.160073
0.00260706
0.159407
0.00222052
0.15886
0.00182991
0.158432
0.00143561
0.158125
0.00103804
0.157939
0.000637589
0.157875
0.000234656
0.157935
-0.000170349
-0.000577019
0.158117
0.157443
0.00817828
0.155824
0.00777742
0.154287
0.00737252
0.152833
0.00695732
0.151467
0.00653105
0.150191
0.00609451
0.149007
0.00564849
0.147917
0.0051936
0.146925
0.0047304
0.146032
0.00425944
0.14524
0.00378131
0.14455
0.00329656
0.143965
0.00280577
0.143485
0.00230951
0.143113
0.00180835
0.142848
0.00130285
0.142692
0.000793587
0.142645
0.000281143
0.142709
-0.000233901
-0.00075095
0.142883
0.140689
0.00964605
0.139291
0.00917539
0.137961
0.00870216
0.136702
0.00821609
0.135518
0.00771564
0.13441
0.00720196
0.133383
0.0066762
0.132437
0.00613914
0.131576
0.00559148
0.130801
0.00503395
0.130115
0.00446731
0.12952
0.0038923
0.129016
0.00330969
0.128605
0.00272021
0.128289
0.00212463
0.128068
0.00152371
0.127943
0.00091822
0.127916
0.000308937
0.127985
-0.000303345
-0.000917815
0.128152
0.124661
0.0108872
0.123479
0.010358
0.122352
0.00982902
0.121283
0.00928473
0.120276
0.00872249
0.119334
0.00814394
0.11846
0.00755063
0.117656
0.00694351
0.116924
0.00632346
0.116266
0.00569139
0.115685
0.00504826
0.115183
0.004395
0.11476
0.00373257
0.114418
0.00306194
0.114159
0.00238406
0.113982
0.00169994
0.11389
0.00101057
0.113882
0.000316971
0.113958
-0.000379801
-0.00107866
0.114119
0.109508
0.011911
0.108532
0.0113339
0.1076
0.010761
0.106715
0.0101705
0.105879
0.00955811
0.105097
0.00892624
0.10437
0.00827685
0.103703
0.00761112
0.103096
0.00693007
0.102553
0.00623484
0.102074
0.00552659
0.101663
0.0048065
0.10132
0.00407576
0.101046
0.00333558
0.100843
0.00258718
0.100711
0.00183183
0.100651
0.00107081
0.100662
0.000305479
0.100745
-0.000462791
-0.00123255
0.100899
0.0953126
0.0127295
0.0945325
0.012114
0.0937853
0.0115082
0.0930733
0.0108824
0.0924007
0.0102307
0.0917708
0.00955617
0.0911863
0.00886131
0.0906499
0.00814753
0.0901639
0.00741608
0.0897304
0.00666831
0.0893513
0.00590566
0.0890282
0.00512959
0.0887624
0.00434157
0.0885549
0.00354313
0.0884062
0.00273583
0.0883168
0.00192128
0.0882864
0.00110117
0.0883147
0.000277252
0.0884005
-0.000548633
-0.00137457
0.0885425
0.0821109
0.0133564
0.0815137
0.0127111
0.0809396
0.0120824
0.0803909
0.0114312
0.0798718
0.0107498
0.0793859
0.0100421
0.0789358
0.00931139
0.0785241
0.00855922
0.0781531
0.00778709
0.0778247
0.00699669
0.0775406
0.00618977
0.077302
0.00536816
0.0771099
0.0045337
0.0769647
0.00368834
0.0768664
0.00283407
0.0768147
0.00197299
0.0768086
0.00110731
0.0768465
0.000239323
0.0769264
-0.000628556
-0.00149381
0.0770457
0.0699045
0.0138075
0.069476
0.0131395
0.069062
0.0124964
0.0686647
0.0118284
0.0682887
0.0111258
0.0679374
0.0103935
0.0676133
0.00963542
0.067319
0.00885359
0.0670563
0.00804979
0.0668268
0.0072261
0.0666319
0.00638474
0.0664721
0.00552798
0.0663476
0.00465818
0.0662581
0.00377783
0.0662027
0.0028895
0.0661797
0.00199592
0.0661871
0.00109992
0.066222
0.000204477
0.0662807
-0.000687336
-0.00157235
0.0663593
0.0586705
0.0141002
0.0583947
0.0134154
0.0581262
0.0127649
0.0578672
0.0120874
0.0576224
0.0113707
0.0573949
0.010621
0.0571871
0.00984319
0.057001
0.00903967
0.0568381
0.00821268
0.0566994
0.00736485
0.0565852
0.00649896
0.0564952
0.0056179
0.0564287
0.0047247
0.0563841
0.0038225
0.056359
0.00291459
0.0563505
0.00200443
0.0563548
0.00109556
0.0563676
0.000191653
0.0563839
-0.000703562
-0.00158634
0.0563979
0.0483698
0.0142541
0.0482283
0.0135569
0.0480885
0.0129047
0.0479525
0.0122234
0.0478247
0.0114985
0.0477079
0.0107377
0.0476041
0.00994701
0.0475145
0.00912929
0.0474398
0.00828744
0.0473798
0.00742477
0.047334
0.00654483
0.0473006
0.00565124
0.0472775
0.00474779
0.0472616
0.00383842
0.047249
0.00292718
0.0472352
0.00201826
0.0472149
0.00111587
0.0471823
0.000224259
0.0471311
-0.000652376
-0.00150999
0.0470547
0.0389537
0.0142924
0.0389248
0.0135857
0.0388935
0.012936
0.0388615
0.0122554
0.0388329
0.0115271
0.03881
0.0107607
0.0387937
0.00996329
0.0387844
0.00913863
0.0387814
0.00829034
0.0387836
0.00742261
0.0387886
0.00653982
0.0387934
0.00564647
0.038794
0.00474714
0.0387859
0.00384653
0.0387637
0.00294942
0.0387214
0.00206054
0.0386527
0.0011846
0.0385508
0.000326119
0.0384091
-0.000510624
-0.00132171
0.0382208
0.0303697
0.0142427
0.0304265
0.013529
0.030478
0.0128845
0.0305257
0.0122077
0.0305729
0.0114798
0.0306211
0.0107125
0.0306702
0.0099142
0.0307192
0.00908962
0.0307662
0.00824336
0.0308082
0.00738059
0.0308414
0.0065066
0.0308612
0.00562669
0.0308621
0.0047462
0.0308382
0.00387045
0.030783
0.00300466
0.0306897
0.00215385
0.0305515
0.00132281
0.0303617
0.000515901
0.030114
-0.000262999
-0.00101063
0.029803
0.0225653
0.0141403
0.0226731
0.0134212
0.022774
0.0127835
0.0228692
0.0121125
0.0229614
0.0113876
0.023051
0.0106229
0.0231366
0.00982858
0.0232158
0.00901038
0.0232852
0.00817402
0.0233401
0.00732566
0.0233753
0.00647145
0.0233846
0.00561738
0.0233615
0.00476928
0.0232992
0.00393277
0.0231907
0.00311316
0.0230292
0.00231534
0.0228083
0.00154368
0.0225223
0.000801896
0.0221664
9.29743e-05
-0.000580962
0.0217367
0.0154909
0.0140306
0.0156038
0.0133083
0.0157099
0.0126774
0.0158105
0.012012
0.0159079
0.0112903
0.0160012
0.0105295
0.0160881
0.00974177
0.0161643
0.00893412
0.0162249
0.00811346
0.0162637
0.00728686
0.016274
0.00646112
0.0162488
0.0056426
0.0161808
0.00483728
0.0160629
0.00405064
0.0158884
0.00328762
0.0156513
0.00255247
0.0153463
0.00184872
0.0149692
0.00117898
0.0145172
0.000544947
-5.27089e-05
0.0139889
0.00909902
0.0139765
0.00915724
0.0132501
0.00921182
0.0126228
0.00926558
0.0119582
0.00932047
0.0112354
0.00937446
0.0104755
0.00942324
0.00969299
0.0094611
0.00889626
0.00948118
0.00809337
0.00947596
0.00729208
0.00943766
0.00649942
0.00935856
0.00572171
0.00923127
0.00496456
0.00904903
0.00423289
0.00880587
0.00353077
0.00849692
0.00286143
0.0081185
0.00222713
0.00766835
0.00162913
0.0071457
0.0010676
0.000541628
0.00655136
0.00333795
0.0140788
0.00325098
0.0133371
0.00317671
0.0126971
0.00312098
0.0120139
0.00308206
0.0112743
0.00305356
0.010504
0.00302787
0.00971868
0.00299649
0.00892764
0.00295039
0.00813947
0.00288054
0.00736194
0.00277827
0.00660169
0.00263552
0.00586445
0.00244511
0.00515498
0.00220087
0.00447713
0.00189785
0.00383379
0.00153247
0.00322681
0.00110259
0.00265701
0.000607596
0.00212413
4.84145e-05
0.00162678
0.00116253
-0.000572492
-0.00180218
0.0144518
-0.00217676
0.0137116
-0.00247853
0.0129989
-0.00271146
0.0122469
-0.00289302
0.0114559
-0.00304052
0.0106515
-0.00316882
0.00984698
-0.00329147
0.00905029
-0.00342068
0.00826868
-0.0035672
0.00750847
-0.00374044
0.00677493
-0.00394845
0.00607246
-0.00419796
0.00540448
-0.00449429
0.00477347
-0.00484135
0.00418084
-0.00524154
0.003627
-0.00569578
0.00311125
-0.00620349
0.00263184
-0.00676264
0.00218592
0.0017697
-0.00736981
-0.00658426
-0.00722978
-0.00776001
-0.00818853
-0.00854624
-0.00885304
-0.00912446
-0.00937485
-0.00961699
-0.00986199
-0.0101195
-0.0103975
-0.0107028
-0.0110405
-0.0114143
-0.0118263
-0.0122773
-0.0127666
-0.013292
-0.01385
0.189096
-0.000350732
0.189595
-0.000499224
0.190243
-0.000648028
0.19104
-0.000797021
0.191987
-0.000946077
0.193082
-0.00109507
0.194325
-0.00124386
0.195718
-0.00139231
0.197258
-0.00154027
0.198946
-0.00168761
0.20078
-0.00183414
0.20276
-0.00197972
0.204884
-0.00212416
0.207151
-0.00226726
0.20956
-0.0024088
0.212108
-0.00254854
0.214794
-0.00268612
0.217616
-0.00282111
0.220568
-0.00295287
-0.00307976
0.223648
0.173886
-0.000679951
0.174351
-0.000964978
0.174954
-0.00125044
0.175693
-0.00153606
0.176568
-0.00182157
0.17758
-0.00210668
0.178727
-0.0023911
0.18001
-0.00267453
0.181426
-0.00295665
0.182975
-0.00323714
0.184657
-0.00351565
0.186469
-0.00379183
0.18841
-0.0040653
0.190479
-0.00433564
0.192672
-0.00460241
0.194989
-0.00486506
0.197426
-0.00512292
0.199979
-0.00537507
0.202647
-0.00562033
-0.00585578
0.205423
0.158424
-0.000986515
0.158854
-0.00139526
0.159408
-0.00180439
0.160085
-0.00221346
0.160886
-0.00262203
0.161809
-0.00302962
0.162853
-0.00343574
0.164019
-0.00383991
0.165304
-0.00424159
0.166707
-0.00464025
0.168226
-0.00503532
0.169861
-0.00542622
0.171608
-0.00581233
0.173465
-0.00619298
0.17543
-0.00656745
0.1775
-0.0069349
0.179671
-0.00729431
0.181941
-0.00764434
0.184304
-0.00798342
-0.00830811
0.186756
0.143168
-0.00127137
0.143563
-0.0017906
0.144069
-0.00230997
0.144684
-0.00282883
0.145408
-0.00334652
0.146241
-0.00386233
0.147181
-0.00437554
0.148226
-0.00488542
0.149376
-0.00539117
0.150628
-0.00589201
0.15198
-0.00638708
0.153429
-0.00687551
0.154973
-0.0073564
0.156609
-0.0078288
0.158333
-0.00829167
0.160142
-0.00874389
0.162032
-0.00918411
0.163998
-0.00961065
0.166037
-0.0100218
-0.0104148
0.168143
0.128416
-0.00153592
0.128778
-0.00215224
0.129236
-0.00276817
0.12979
-0.00338279
0.130439
-0.00399515
0.131181
-0.00460428
0.132014
-0.00520914
0.132938
-0.00580867
0.133948
-0.00640178
0.135044
-0.0069873
0.136221
-0.00756406
0.137476
-0.00813084
0.138806
-0.00868638
0.140206
-0.00922942
0.141673
-0.00975862
0.143202
-0.0102726
0.144788
-0.0107698
0.146425
-0.0112483
0.14811
-0.0117068
-0.0121444
0.14984
0.114364
-0.00178102
0.114693
-0.00248065
0.115103
-0.00317887
0.115595
-0.00387442
0.116166
-0.00456598
0.116814
-0.00525219
0.117536
-0.00593163
0.11833
-0.00660283
0.119193
-0.00726427
0.12012
-0.0079144
0.121108
-0.00855164
0.122151
-0.00917438
0.123246
-0.00978103
0.124386
-0.01037
0.125568
-0.0109398
0.126784
-0.0114888
0.12803
-0.0120155
0.129299
-0.0125178
0.130588
-0.0129954
-0.0134514
0.131895
0.101123
-0.002005
0.101416
-0.00277315
0.101775
-0.00353806
0.102199
-0.00429803
0.102684
-0.00505126
0.103228
-0.00579593
0.103826
-0.00653013
0.104475
-0.00725193
0.10517
-0.00795936
0.105906
-0.00865045
0.106678
-0.00932324
0.107479
-0.00997584
0.108305
-0.0106064
0.109148
-0.0112132
0.110003
-0.0117947
0.110864
-0.0123495
0.111724
-0.0128761
0.112579
-0.0133726
0.113423
-0.0138399
-0.0142871
0.114259
0.0887389
-0.00220134
0.088987
-0.00302125
0.0892838
-0.0038349
0.0896258
-0.00464005
0.0900089
-0.00543438
0.0904285
-0.00621554
0.0908796
-0.00698116
0.0913565
-0.00772888
0.0918536
-0.00845638
0.0923645
-0.00916142
0.0928832
-0.00984188
0.0934031
-0.0104958
0.093918
-0.0111213
0.0944218
-0.011717
0.0949085
-0.0122815
0.0953727
-0.0128137
0.0958095
-0.0133128
0.0962137
-0.0137768
0.0965821
-0.0142082
-0.0146236
0.0969185
0.077201
-0.00235666
0.0773885
-0.00320871
0.0776036
-0.00405005
0.0778414
-0.00487786
0.0780964
-0.00568937
0.0783627
-0.00648181
0.078634
-0.0072525
0.078904
-0.0079989
0.0791663
-0.00871864
0.0794144
-0.00940953
0.0796422
-0.0100697
0.0798439
-0.0106975
0.0800142
-0.0112916
0.0801482
-0.011851
0.0802417
-0.012375
0.0802913
-0.0128633
0.0802939
-0.0133154
0.0802464
-0.0137293
0.0801468
-0.0141086
-0.0144785
0.0800017
0.0664527
-0.00245012
0.0665558
-0.00331176
0.0666626
-0.00415685
0.0667669
-0.0049822
0.0668623
-0.00578479
0.0669423
-0.00656177
0.0670004
-0.00731055
0.0670303
-0.00802882
0.0670263
-0.00871464
0.0669832
-0.00936642
0.0668964
-0.00998297
0.0667624
-0.0105635
0.0665783
-0.0111074
0.066342
-0.0116147
0.0660525
-0.0120855
0.0657093
-0.0125202
0.0653123
-0.0129184
0.0648605
-0.0132775
0.064354
-0.0136022
-0.0139268
0.0638023
0.0564034
-0.00245568
0.0563942
-0.00330254
0.0563636
-0.00412623
0.0563049
-0.00492359
0.0562119
-0.00569179
0.0560786
-0.00642841
0.0558995
-0.00713148
0.0556702
-0.00779949
0.055387
-0.00843148
0.0550475
-0.00902692
0.0546503
-0.00958577
0.0541952
-0.0101084
0.053683
-0.0105953
0.0531156
-0.0110473
0.0524953
-0.0114652
0.0518252
-0.0118501
0.0511081
-0.0122012
0.0503451
-0.0125145
0.0495386
-0.0127956
-0.0130893
0.048701
0.0469463
-0.00234727
0.0467994
-0.00315563
0.0466077
-0.00393451
0.0463654
-0.00468131
0.0460676
-0.00539397
0.0457103
-0.00607107
0.0452906
-0.00671179
0.0448071
-0.00731597
0.0442596
-0.007884
0.0436494
-0.00841676
0.0429792
-0.00891555
0.0422527
-0.00938186
0.0414747
-0.00981723
0.0406505
-0.0102231
0.039786
-0.0106007
0.038887
-0.0109511
0.0379587
-0.0112729
0.0370038
-0.0115596
0.0360263
-0.0118181
-0.0121063
0.0350434
0.0379795
-0.00210595
0.0376797
-0.0028559
0.0373168
-0.00357162
0.0368872
-0.00425162
0.0363883
-0.00489515
0.0358195
-0.00550227
0.0351814
-0.00607371
0.0344764
-0.0066109
0.0337081
-0.00711577
0.032882
-0.00759062
0.0320044
-0.00803794
0.0310827
-0.00846013
0.0301248
-0.00885931
0.0291388
-0.00923711
0.0281328
-0.00959476
0.0271147
-0.00993299
0.0260908
-0.010249
0.0250643
-0.0105331
0.024041
-0.0107949
-0.0111093
0.023044
0.0294234
-0.00172636
0.0289721
-0.00240459
0.0284469
-0.00304642
0.0278471
-0.00365187
0.0271738
-0.00422186
0.0264297
-0.00475813
0.0256191
-0.00526313
0.0247481
-0.00573985
0.0238239
-0.00619162
0.0228552
-0.00662189
0.0218512
-0.00703398
0.0208219
-0.00743078
0.019777
-0.00781448
0.0187264
-0.00818643
0.017679
-0.0085474
0.0166436
-0.00889759
0.015627
-0.00923235
0.0146321
-0.00953823
0.013666
-0.00982873
-0.0102024
0.012759
0.0212305
-0.00122018
0.0206474
-0.00182149
0.0199882
-0.0023872
0.0192554
-0.00291905
0.0184532
-0.0034197
0.0175876
-0.00389255
0.0166661
-0.00434158
0.0156973
-0.00477112
0.0146913
-0.00518558
0.0136586
-0.00558917
0.0126102
-0.00598562
0.0115573
-0.00637789
0.0105107
-0.00676785
0.00948048
-0.0071562
0.00847611
-0.00754303
0.00750647
-0.00792794
0.00657836
-0.00830425
0.00569369
-0.00865357
0.00486008
-0.00899512
-0.00945859
0.00411629
0.0133841
-0.00061528
0.0127049
-0.00114236
0.0119551
-0.00163737
0.0111398
-0.00210373
0.0102657
-0.00254566
0.00934114
-0.00296796
0.00837541
-0.00337586
0.00737894
-0.00377465
0.00636284
-0.00416947
0.00533862
-0.00456495
0.00431794
-0.00496495
0.0033123
-0.00537225
0.00233272
-0.00578827
0.00138948
-0.00621296
0.000492113
-0.00664566
-0.000350311
-0.00708552
-0.00113088
-0.00752368
-0.00184889
-0.00793556
-0.00249695
-0.00834705
-0.00892667
-0.00302887
0.00588709
4.89904e-05
0.00515757
-0.000412838
0.00436835
-0.00084815
0.00352639
-0.00126177
0.00263989
-0.00165916
0.00171817
-0.00204624
0.000771369
-0.00242906
-0.000189695
-0.00281359
-0.00115379
-0.00320538
-0.00210945
-0.00360928
-0.00304521
-0.00402919
-0.00394971
-0.00446775
-0.00481187
-0.00492611
-0.0056211
-0.00540373
-0.00636737
-0.00589939
-0.00704071
-0.00641218
-0.00763269
-0.0069317
-0.00814221
-0.00742603
-0.00856352
-0.00792574
-0.00864677
-0.00884343
-0.00125197
0.000728469
-0.0019839
0.000319091
-0.00276169
-7.0358e-05
-0.00357766
-0.000445798
-0.00442319
-0.00081363
-0.00528893
-0.0011805
-0.00616496
-0.00155303
-0.00704096
-0.00193759
-0.00790633
-0.00234001
-0.00875027
-0.00276534
-0.00956183
-0.00321763
-0.0103298
-0.00369974
-0.0110428
-0.00421315
-0.0116888
-0.00475768
-0.0122559
-0.00533234
-0.0127313
-0.0059368
-0.0131014
-0.00656163
-0.0133578
-0.00716964
-0.0134963
-0.00778715
-0.00866707
-0.013476
-0.00802121
0.00137987
-0.00871005
0.00100794
-0.00942947
0.000649056
-0.0101717
0.000296482
-0.0109285
-5.6858e-05
-0.0116909
-0.000418114
-0.0124496
-0.000794287
-0.0131952
-0.001192
-0.013918
-0.00161729
-0.0146079
-0.00207543
-0.0152547
-0.00257078
-0.0158478
-0.00310668
-0.0163755
-0.0036854
-0.0168253
-0.00430794
-0.0171833
-0.00497433
-0.0174354
-0.00568472
-0.0175629
-0.00643406
-0.0175376
-0.00719502
-0.0173431
-0.00798156
-0.00896735
-0.0170429
-0.0144373
-0.0150468
-0.015672
-0.0163056
-0.0169394
-0.017565
-0.0181736
-0.018756
-0.0193031
-0.0198054
-0.0202534
-0.0206376
-0.0209483
-0.0211756
-0.0213098
-0.0213421
-0.0212605
-0.0210241
-0.0205823
-0.0200018
0.227519
-0.00387114
0.231955
-0.00443556
0.23695
-0.00499523
0.2425
-0.00555008
0.248597
-0.0060967
0.255221
-0.0066237
0.262337
-0.00711675
0.2699
-0.00756234
0.277848
-0.00794819
0.286111
-0.00826306
0.294608
-0.00849716
0.303251
-0.00864298
0.311947
-0.00869593
0.320601
-0.0086545
0.329122
-0.00852034
0.33742
-0.0082979
0.345414
-0.0079945
0.353033
-0.00761896
0.360216
-0.00718247
0.366911
-0.00669563
0.373082
-0.00617106
0.378701
-0.00561872
0.383751
-0.00504975
0.388224
-0.00447299
0.392117
-0.00389366
0.39544
-0.00332297
0.398193
-0.00275302
0.400399
-0.00220537
0.402049
-0.00165047
0.403179
-0.00112953
0.403765
-0.000586437
0.403856
-9.06032e-05
0.403408
0.000448033
0.402508
0.000900169
0.401065
0.0014423
0.399289
0.00177653
0.396985
0.00230424
0.394609
0.0023755
0.391818
0.00279127
0.00240822
0.20909
-0.00753796
0.213288
-0.00863427
0.218011
-0.00971775
0.223251
-0.0107898
0.228997
-0.0118434
0.235229
-0.0128551
0.241909
-0.0137974
0.248992
-0.0146446
0.256418
-0.015374
0.264119
-0.0159648
0.272021
-0.0163991
0.280042
-0.0166638
0.288097
-0.0167511
0.296101
-0.0166587
0.303972
-0.0163905
0.311629
-0.0159552
0.319001
-0.015367
0.326025
-0.0146425
0.332646
-0.0138032
0.338819
-0.0128688
0.344511
-0.0118636
0.349698
-0.0108057
0.354366
-0.00971765
0.358507
-0.0086138
0.362121
-0.00750751
0.365213
-0.00641513
0.367788
-0.00532831
0.369862
-0.00427937
0.371435
-0.00322279
0.372529
-0.00222402
0.373134
-0.00119143
0.373282
-0.000238461
0.372947
0.000783088
0.372189
0.00165799
0.370948
0.00268301
0.369386
0.00333878
0.367351
0.00433931
0.365233
0.00449336
0.362728
0.00529614
0.00457721
0.19026
-0.0110421
0.194266
-0.0126405
0.19876
-0.0142114
0.203732
-0.0157621
0.20917
-0.0172812
0.215048
-0.0187331
0.221329
-0.0200784
0.227967
-0.0212824
0.234907
-0.0223141
0.242087
-0.0231451
0.249439
-0.0237512
0.25689
-0.0241144
0.264363
-0.0242241
0.271782
-0.0240773
0.27907
-0.0236794
0.286158
-0.0230426
0.292978
-0.0221871
0.299473
-0.0211371
0.305593
-0.0199231
0.311298
-0.0185738
0.316559
-0.0171245
0.321354
-0.0156008
0.325672
-0.0140362
0.329508
-0.0124493
0.332863
-0.0108631
0.335743
-0.00929512
0.338156
-0.00774154
0.340115
-0.00623808
0.341624
-0.00473154
0.342702
-0.00330218
0.343343
-0.00183202
0.343572
-0.00046835
0.343372
0.000983292
0.342787
0.00224323
0.341777
0.00369328
0.340459
0.00465684
0.338729
0.00606851
0.336888
0.00633436
0.334716
0.00746853
0.0065047
0.171481
-0.0143795
0.175286
-0.0164456
0.179536
-0.0184615
0.184223
-0.0204488
0.189334
-0.022393
0.194848
-0.0242465
0.200731
-0.0259616
0.206947
-0.0274979
0.213449
-0.0288168
0.220186
-0.0298815
0.227094
-0.0306596
0.234106
-0.031126
0.241146
-0.0312646
0.248139
-0.0310698
0.255006
-0.0305472
0.261677
-0.0297132
0.268084
-0.0285944
0.274171
-0.0272237
0.27989
-0.0256425
0.285206
-0.0238896
0.290094
-0.0220121
0.294536
-0.0200435
0.298529
-0.0180289
0.30207
-0.0159899
0.305167
-0.0139605
0.307828
-0.0119555
0.310066
-0.00997999
0.311893
-0.00806551
0.313321
-0.00615941
0.314366
-0.00434645
0.315025
-0.00249115
0.315322
-0.000765533
0.315242
0.00106345
0.314819
0.00266645
0.314027
0.00448489
0.312944
0.00573972
0.311511
0.00750153
0.309936
0.00790942
0.308084
0.00932063
0.00820935
0.152956
-0.0174953
0.156498
-0.0199882
0.160442
-0.0224054
0.164792
-0.0247982
0.169548
-0.0271493
0.174702
-0.0294002
0.180238
-0.0314976
0.186133
-0.0333933
0.192351
-0.0350351
0.19884
-0.03637
0.205531
-0.0373503
0.212343
-0.037938
0.219187
-0.0381088
0.225972
-0.0378547
0.232609
-0.0371845
0.239019
-0.0361228
0.245132
-0.0347079
0.250895
-0.0329865
0.256266
-0.0310138
0.261219
-0.028842
0.265737
-0.0265307
0.269816
-0.0241223
0.27346
-0.0216726
0.276675
-0.0192049
0.279478
-0.016764
0.281881
-0.0143584
0.283906
-0.0120051
0.285564
-0.00972378
0.286875
-0.00746965
0.28785
-0.0053216
0.288494
-0.00313499
0.288827
-0.00109854
0.288834
0.00105601
0.288545
0.00295531
0.28794
0.00509058
0.287065
0.00661384
0.285895
0.00867158
0.284558
0.0092465
0.282991
0.0108876
0.0097231
0.134703
-0.0203036
0.137902
-0.0231873
0.141483
-0.0259866
0.145485
-0.0287998
0.149936
-0.0316007
0.154853
-0.0343167
0.160237
-0.036882
0.16607
-0.0392261
0.172302
-0.0412672
0.178855
-0.0429231
0.185627
-0.0441229
0.192504
-0.0448148
0.199367
-0.044971
0.206101
-0.0445893
0.212609
-0.0436922
0.218808
-0.0423222
0.224638
-0.0405378
0.230056
-0.0384047
0.235038
-0.0359957
0.239574
-0.0333775
0.243665
-0.0306216
0.24732
-0.0277778
0.250558
-0.0249101
0.253394
-0.0220417
0.255856
-0.0192258
0.257959
-0.0164616
0.259733
-0.0137785
0.261187
-0.0111785
0.262348
-0.00863047
0.263224
-0.00619766
0.263824
-0.00373475
0.264164
-0.00143896
0.264229
0.000991058
0.264047
0.00313762
0.263592
0.0055453
0.262898
0.00730796
0.261952
0.00961803
0.260821
0.010377
0.259497
0.0122116
0.011079
0.116692
-0.0227367
0.119514
-0.0260088
0.122767
-0.02924
0.126545
-0.0325778
0.130909
-0.0359644
0.135888
-0.0392958
0.141477
-0.0424711
0.147622
-0.045371
0.154221
-0.0478659
0.161136
-0.0498383
0.168212
-0.0511988
0.175291
-0.0518939
0.182229
-0.051909
0.188905
-0.051265
0.195225
-0.0500125
0.201126
-0.0482228
0.206568
-0.04598
0.211535
-0.043372
0.216028
-0.0404883
0.220058
-0.0374078
0.223647
-0.0342104
0.226819
-0.0309502
0.229604
-0.0276952
0.232028
-0.0244657
0.234123
-0.0213202
0.235908
-0.0182465
0.237415
-0.0152859
0.238655
-0.0124184
0.239656
-0.00963139
0.240422
-0.00696368
0.240966
-0.00427813
0.241298
-0.00177163
0.241402
0.000887089
0.241306
0.00323347
0.240974
0.00587715
0.240436
0.00784625
0.239677
0.0103773
0.238725
0.0113288
0.237604
0.0133323
0.0123051
0.0989945
-0.0248127
0.10153
-0.0285443
0.104657
-0.0323672
0.108519
-0.0364396
0.11318
-0.040625
0.11864
-0.044756
0.124832
-0.0486634
0.131619
-0.0521582
0.138814
-0.0550612
0.14621
-0.0572336
0.153601
-0.0585903
0.160809
-0.0591022
0.167692
-0.0587911
0.174145
-0.0577186
0.180107
-0.0559741
0.185546
-0.0536622
0.190459
-0.050893
0.19486
-0.0477732
0.198776
-0.0444043
0.202241
-0.0408722
0.20529
-0.0372597
0.207961
-0.0336209
0.210289
-0.0300234
0.212306
-0.0264827
0.214045
-0.0230593
0.215527
-0.0197287
0.216784
-0.0165431
0.217825
-0.0134588
0.218678
-0.0104841
0.219341
-0.00762759
0.219832
-0.00476845
0.220154
-0.00209408
0.22029
0.000751473
0.220268
0.00325522
0.220039
0.0061062
0.219638
0.00824762
0.219035
0.01098
0.218238
0.0121253
0.217287
0.0142838
0.0134228
0.0818739
-0.0266849
0.0843802
-0.0310506
0.0877505
-0.0357375
0.0921288
-0.0408179
0.0975192
-0.0460154
0.103831
-0.0510675
0.110884
-0.0557168
0.118435
-0.0597095
0.126217
-0.0628423
0.133972
-0.0649894
0.141486
-0.0661043
0.148594
-0.0662098
0.155185
-0.0653826
0.161201
-0.0637345
0.166623
-0.0613956
0.171461
-0.0585004
0.175747
-0.0551788
0.179523
-0.0515488
0.182835
-0.0477168
0.185732
-0.0437694
0.18826
-0.0397872
0.190459
-0.0358206
0.192369
-0.0319334
0.194022
-0.0281349
0.195448
-0.0244855
0.196668
-0.0209489
0.197711
-0.0175863
0.198583
-0.0143309
0.199313
-0.0112134
0.199893
-0.00820805
0.200342
-0.00521742
0.200659
-0.00241076
0.200825
0.000585531
0.200869
0.00321109
0.200728
0.00624707
0.200448
0.00852799
0.199975
0.0114521
0.199315
0.0127855
0.198505
0.0150944
0.0144475
0.0657607
-0.0286433
0.0686268
-0.0339166
0.0726845
-0.0397952
0.0779913
-0.0461247
0.084422
-0.0524461
0.0917505
-0.058396
0.0996746
-0.063641
0.107863
-0.0678982
0.116007
-0.0709855
0.123848
-0.0728307
0.131199
-0.0734558
0.137944
-0.0729542
0.144025
-0.0714643
0.149438
-0.0691466
0.154207
-0.066165
0.158381
-0.0626748
0.162019
-0.0588163
0.16518
-0.0547103
0.167925
-0.050461
0.170306
-0.0461506
0.172372
-0.0418531
0.174164
-0.0376134
0.17572
-0.033489
0.177068
-0.0294833
0.178238
-0.0256547
0.179245
-0.0219566
0.180117
-0.0184581
0.180857
-0.0150703
0.18149
-0.0118466
0.182007
-0.00872554
0.182428
-0.00563778
0.182744
-0.00272724
0.18294
0.000389463
0.183043
0.00310859
0.182978
0.00631179
0.182804
0.0087024
0.18244
0.0118157
0.181899
0.0133263
0.181206
0.0157877
0.0153905
0.0511187
-0.0310609
0.0547666
-0.0375646
0.0598913
-0.0449199
0.0663739
-0.0526073
0.0739268
-0.059999
0.0821923
-0.0666615
0.0907788
-0.0722275
0.0993185
-0.0764378
0.10751
-0.0791769
0.115137
-0.0804579
0.12207
-0.0803891
0.128255
-0.0791387
0.133693
-0.0769028
0.138427
-0.0738806
0.142521
-0.0702585
0.146047
-0.0662013
0.149081
-0.06185
0.151692
-0.0573211
0.153942
-0.0527111
0.155885
-0.0480941
0.157568
-0.0435357
0.159028
-0.0390737
0.160299
-0.0347593
0.161405
-0.03059
0.162372
-0.0266214
0.163214
-0.0227988
0.163953
-0.019197
0.164591
-0.0157084
0.165151
-0.0124071
0.165623
-0.00919691
0.166024
-0.00603907
0.166344
-0.00304689
0.166568
0.00016516
0.16672
0.00295622
0.16672
0.00631174
0.166637
0.00878624
0.166362
0.0120902
0.165925
0.013763
0.16533
0.0163836
0.0162605
0.0382957
-0.0343133
0.0430692
-0.0423381
0.0494674
-0.0513181
0.0571503
-0.0602902
0.06569
-0.0685387
0.0746418
-0.0756133
0.0835802
-0.081166
0.0921522
-0.0850099
0.100105
-0.0871294
0.107287
-0.0876399
0.113637
-0.0867395
0.119164
-0.0846652
0.123919
-0.0816586
0.127983
-0.0779445
0.131444
-0.0737189
0.134389
-0.0691461
0.136898
-0.0643599
0.139044
-0.0594669
0.140886
-0.054553
0.142475
-0.0496824
0.14385
-0.0449115
0.145048
-0.040271
0.146094
-0.0358056
0.147012
-0.0315079
0.147821
-0.0274307
0.148535
-0.0235129
0.149172
-0.0198334
0.149732
-0.0162688
0.150237
-0.0129116
0.150673
-0.00963353
0.15106
-0.00642639
0.151384
-0.00336996
0.151632
-8.31151e-05
0.151824
0.00276371
0.151878
0.00625818
0.151869
0.00879519
0.151666
0.0122927
0.151319
0.01411
0.150804
0.0168993
0.0170644
0.0274377
-0.0387069
0.0335307
-0.0484311
0.0412094
-0.0589968
0.0499339
-0.0690147
0.0591991
-0.0778038
0.0685303
-0.0849445
0.0775181
-0.0901538
0.08586
-0.0933517
0.0933712
-0.0946406
0.0999733
-0.094242
0.105671
-0.0924371
0.110525
-0.0895188
0.114626
-0.0857599
0.118078
-0.0813965
0.120982
-0.0766233
0.123432
-0.0715955
0.125506
-0.0664345
0.127273
-0.0612339
0.128788
-0.0560673
0.130094
-0.0509886
0.131228
-0.0460454
0.132219
-0.0412618
0.13309
-0.0366765
0.13386
-0.0322784
0.134546
-0.028117
0.13516
-0.0241265
0.135715
-0.0203887
0.136214
-0.0167676
0.136673
-0.0133708
0.137081
-0.0100418
0.137456
-0.00680105
0.13778
-0.00369419
0.138047
-0.000349293
0.138269
0.00254132
0.138365
0.00616216
0.138416
0.00874464
0.13827
0.0124382
0.137999
0.0143811
0.137549
0.0173491
0.0178079
0.0184933
-0.0444412
0.0259385
-0.0558763
0.0347495
-0.0678079
0.0442634
-0.0785285
0.0539667
-0.0875071
0.0633997
-0.0943776
0.0722004
-0.0989544
0.0801341
-0.101285
0.0870902
-0.101597
0.0930592
-0.100211
0.0981021
-0.0974801
0.10232
-0.093737
0.105831
-0.0892706
0.10875
-0.0843161
0.111185
-0.0790575
0.113225
-0.0736353
0.114945
-0.0681553
0.116408
-0.0626967
0.117662
-0.0573208
0.118745
-0.0520715
0.119687
-0.0469883
0.120515
-0.0420895
0.121247
-0.0374086
0.1219
-0.0329314
0.122488
-0.0287045
0.12302
-0.0246589
0.123509
-0.0208775
0.123957
-0.0172152
0.124377
-0.0137911
0.12476
-0.0104246
0.125121
-0.00716198
0.125442
-0.00401586
0.125719
-0.000626503
0.125962
0.00229899
0.12609
0.00603408
0.126186
0.008649
0.126084
0.0125392
0.125877
0.0145888
0.12548
0.0177456
0.0184961
0.0112787
-0.0516036
0.0199814
-0.064579
0.0296962
-0.0775227
0.0397356
-0.0885679
0.049626
-0.0973975
0.058947
-0.103699
0.0673994
-0.107407
0.0748219
-0.108708
0.0811758
-0.107951
0.0865125
-0.105548
0.090938
-0.101906
0.0945827
-0.0973817
0.0975785
-0.0922664
0.100046
-0.086784
0.10209
-0.0811015
0.103796
-0.0753407
0.105231
-0.0695906
0.10645
-0.0639158
0.107495
-0.058366
0.1084
-0.052976
0.10919
-0.0477782
0.109886
-0.0427859
0.110506
-0.0380283
0.111063
-0.0334886
0.111569
-0.0292106
0.112034
-0.0251234
0.112466
-0.0213098
0.112869
-0.017618
0.113253
-0.0141757
0.113612
-0.0107827
0.113957
-0.00750703
0.114272
-0.00433085
0.114553
-0.000907998
0.114806
0.00204567
0.114957
0.00588328
0.115085
0.0085211
0.115018
0.0126064
0.114862
0.0147445
0.114509
0.0180987
0.0191332
0.00555688
-0.0601894
0.0153456
-0.0743676
0.025721
-0.0878981
0.0360571
-0.098904
0.0459388
-0.107279
0.0549958
-0.112756
0.0629989
-0.11541
0.0698603
-0.115569
0.0756071
-0.113697
0.0803421
-0.110283
0.0842053
-0.105769
0.0873453
-0.100522
0.0899003
-0.0948215
0.0919899
-0.0888736
0.0937121
-0.0828236
0.0951447
-0.0767733
0.0963486
-0.0707944
0.0973707
-0.0649379
0.0982475
-0.0592427
0.0990073
-0.0537358
0.0996725
-0.0484435
0.100261
-0.0433747
0.100788
-0.0385549
0.101265
-0.0339657
0.101702
-0.0296478
0.102108
-0.0255294
0.102491
-0.0216923
0.102853
-0.0179805
0.103204
-0.0145269
0.103538
-0.0111163
0.103865
-0.0078339
0.104169
-0.00463537
0.104449
-0.00118778
0.104706
0.0017889
0.104871
0.00571779
0.10502
0.00837184
0.104979
0.0126482
0.104865
0.0148584
0.104547
0.0184166
0.0197233
0.00109498
-0.0701278
0.0117678
-0.0850405
0.0225841
-0.0987144
0.0330346
-0.109355
0.0427596
-0.117004
0.0514471
-0.121443
0.058941
-0.122904
0.0652245
-0.121853
0.0703834
-0.118856
0.0745615
-0.114461
0.0779225
-0.10913
0.0806244
-0.103223
0.0828052
-0.0970023
0.084579
-0.0906473
0.0860355
-0.0842802
0.0872445
-0.0779823
0.0882592
-0.0718091
0.0891202
-0.0657989
0.0898588
-0.0599813
0.0904993
-0.0543764
0.091061
-0.0490052
0.0915596
-0.0438733
0.0920077
-0.039003
0.0924163
-0.0343742
0.0927938
-0.0300254
0.0931485
-0.0258841
0.0934864
-0.0220302
0.0938117
-0.0183058
0.0941308
-0.014846
0.0944396
-0.0114251
0.0947464
-0.00814069
0.0950373
-0.00492631
0.0953105
-0.00146096
0.0955647
0.00153467
0.0957383
0.00554422
0.0959
0.0082101
0.095877
0.0126713
0.0957964
0.014939
0.095507
0.018706
0.0202697
-0.00232339
-0.0812804
0.00904635
-0.0964102
0.0201182
-0.109786
0.0305403
-0.119777
0.039995
-0.126459
0.0482394
-0.129688
0.0551918
-0.129856
0.0609017
-0.127563
0.0655048
-0.123459
0.0691759
-0.118132
0.0720933
-0.112047
0.0744172
-0.105547
0.076281
-0.0988662
0.0777904
-0.0921567
0.0790264
-0.0855162
0.0800504
-0.0790063
0.0809085
-0.0726673
0.0816359
-0.0665262
0.0822594
-0.0606048
0.0828
-0.054917
0.0832745
-0.0494797
0.0836966
-0.0442954
0.0840774
-0.0393838
0.0844268
-0.0347236
0.0847522
-0.0303507
0.0850612
-0.0261931
0.0853588
-0.0223278
0.0856496
-0.0185967
0.0859382
-0.0151346
0.0862222
-0.0117091
0.0865077
-0.0084262
0.0867829
-0.00520145
0.0870457
-0.00172379
0.0872929
0.00128747
0.0874693
0.00536782
0.0876366
0.00804284
0.0876271
0.0126808
0.0875724
0.0149937
0.0873067
0.0189717
0.0207754
-0.00483618
-0.0934871
0.00701981
-0.108266
0.0181992
-0.120966
0.0284762
-0.130054
0.0375733
-0.135556
0.0453264
-0.137441
0.0517261
-0.136256
0.056881
-0.132718
0.0609675
-0.127546
0.064182
-0.121346
0.0667097
-0.114575
0.0687079
-0.107546
0.0703023
-0.100461
0.071589
-0.0934434
0.0726401
-0.0865674
0.0735092
-0.0798754
0.0742361
-0.0733942
0.074851
-0.0671412
0.0753773
-0.061131
0.0758331
-0.0553728
0.0762332
-0.0498797
0.0765897
-0.0446519
0.0769123
-0.0397064
0.0772101
-0.0350214
0.0774895
-0.0306301
0.0777577
-0.0264613
0.0780187
-0.0225888
0.0782776
-0.0188556
0.0785372
-0.0153942
0.078797
-0.0119689
0.0790607
-0.00868989
0.0793186
-0.00545937
0.0795685
-0.00197367
0.0798055
0.00105047
0.0799807
0.00519261
0.0801482
0.00787531
0.0801484
0.0126805
0.0801137
0.0150284
0.0798677
0.0192177
0.0212434
-0.00662426
-0.106865
0.00557443
-0.120465
0.0167285
-0.13212
0.0267574
-0.140083
0.035433
-0.144232
0.0426686
-0.144676
0.0485212
-0.142108
0.05315
-0.137347
0.0567625
-0.131158
0.0595688
-0.124153
0.061755
-0.116761
0.063472
-0.109263
0.0648361
-0.101825
0.0659336
-0.0945409
0.0668279
-0.0874617
0.0675655
-0.0806129
0.0681809
-0.0740095
0.0687
-0.0676603
0.0691431
-0.0615741
0.0695262
-0.0557559
0.0698621
-0.0502157
0.0701617
-0.0449515
0.0704336
-0.0399784
0.0706861
-0.0352739
0.0709247
-0.0308688
0.0711565
-0.026693
0.0713843
-0.0228166
0.0716138
-0.0190851
0.0718459
-0.0156263
0.0720826
-0.0122056
0.072324
-0.00893131
0.0725646
-0.00570001
0.0727991
-0.00220815
0.0730247
0.000824844
0.0731949
0.00502247
0.0733598
0.00771034
0.073366
0.0126744
0.0733473
0.015047
0.073117
0.0194481
0.0216755
0.0194616
-0.114589
0.026556
-0.127559
0.0322179
-0.137782
0.0366199
-0.144484
0.0396994
-0.147311
0.0416132
-0.14659
0.0425869
-0.143082
0.0428701
-0.13763
0.0426864
-0.130975
0.0422142
-0.12368
0.0415832
-0.11613
0.0408821
-0.108561
0.0401679
-0.10111
0.0394762
-0.0938492
0.0388282
-0.0868137
0.0382365
-0.0800212
0.0377078
-0.0734808
0.0372456
-0.0671982
0.0368514
-0.0611799
0.036525
-0.0554296
0.0362655
-0.0499561
0.0360713
-0.0447573
0.03594
-0.039847
0.0358696
-0.0352035
0.0358563
-0.0308555
0.0358988
-0.0267355
0.0359919
-0.0229096
0.0361349
-0.0192281
0.0363218
-0.0158132
0.0365518
-0.0124355
0.0368196
-0.0091992
0.0371213
-0.00600163
0.0374522
-0.00253911
0.037809
0.000468096
0.0381687
0.00466274
0.0385572
0.00732186
0.0388893
0.0123423
0.0392453
0.014691
0.0395034
0.01919
0.0214976
0.020233
-0.1222
0.0273794
-0.134706
0.0330311
-0.143433
0.0373476
-0.148801
0.0402987
-0.150262
0.0420847
-0.148376
0.0429546
-0.143952
0.043167
-0.137842
0.0429443
-0.130752
0.042458
-0.123194
0.0418301
-0.115502
0.041142
-0.107873
0.0404454
-0.100414
0.0397721
-0.093176
0.0391411
-0.0861827
0.0385634
-0.0794434
0.0380449
-0.0729624
0.037589
-0.0667423
0.0371968
-0.0607877
0.0368684
-0.0551012
0.0366028
-0.0496905
0.0363989
-0.0445533
0.0362541
-0.0397022
0.036167
-0.0351163
0.0361338
-0.0308223
0.0361535
-0.0267552
0.0362208
-0.022977
0.0363357
-0.019343
0.0364919
-0.0159694
0.0366889
-0.0126325
0.0369213
-0.0094316
0.0371854
-0.00626573
0.0374764
-0.00283013
0.0377905
0.000153963
0.0381056
0.00434765
0.038446
0.00698151
0.0387269
0.0120614
0.0390299
0.014388
0.0392286
0.0189914
0.0213785
0.021244
-0.12991
0.0283863
-0.141848
0.0339528
-0.149
0.0381155
-0.152964
0.0408909
-0.153038
0.0425187
-0.150004
0.0432674
-0.144701
0.0434007
-0.137975
0.0431358
-0.130487
0.0426354
-0.122694
0.0420119
-0.114879
0.0413387
-0.1072
0.0406619
-0.099737
0.0400093
-0.0925233
0.0393972
-0.0855707
0.0388353
-0.0788815
0.038329
-0.0724561
0.0378811
-0.0662944
0.0374927
-0.0603993
0.0371639
-0.0547724
0.0368941
-0.0494207
0.036682
-0.0443412
0.0365255
-0.0395458
0.0364234
-0.0350142
0.0363721
-0.030771
0.0363707
-0.0267539
0.0364143
-0.0230206
0.0365029
-0.0194317
0.0366304
-0.0160968
0.0367965
-0.0127986
0.0369957
-0.0096308
0.0372245
-0.00649449
0.0374782
-0.00308383
0.037752
-0.000119915
0.0380255
0.00407422
0.0383202
0.00668675
0.0385533
0.0118283
0.0388062
0.0141351
0.0389492
0.0188484
0.0213151
0.0223812
-0.137765
0.0294709
-0.148938
0.0349049
-0.154434
0.0388778
-0.156936
0.0414571
-0.155617
0.0429169
-0.151464
0.0435414
-0.145325
0.0435954
-0.138029
0.0432891
-0.130181
0.042775
-0.12218
0.0421559
-0.11426
0.0414973
-0.106542
0.0408395
-0.0990793
0.0402066
-0.0918904
0.0396128
-0.0849768
0.0390663
-0.078335
0.0385717
-0.0719615
0.0381315
-0.0658542
0.037747
-0.0600147
0.0374181
-0.0544436
0.0371444
-0.0491469
0.0369248
-0.0441217
0.0367576
-0.0393786
0.0366415
-0.0348981
0.0365732
-0.0307028
0.0365521
-0.0267328
0.0365735
-0.0230419
0.0366375
-0.0194957
0.036738
-0.0161973
0.0368752
-0.0129358
0.0370433
-0.0097989
0.0372389
-0.00669014
0.0374577
-0.00330256
0.0376938
-0.000356062
0.0379283
0.00383975
0.0381802
0.0064348
0.0383686
0.01164
0.0385744
0.0139292
0.0386651
0.0187578
0.0213036
0.0235837
-0.145756
0.0305685
-0.155923
0.0358325
-0.159698
0.0395891
-0.160693
0.0419611
-0.157989
0.0432511
-0.152754
0.0437548
-0.145829
0.0437348
-0.138009
0.043392
-0.129838
0.0428681
-0.121656
0.0422558
-0.113647
0.0416132
-0.105899
0.0409751
-0.0984412
0.0403623
-0.0912775
0.0397867
-0.0844013
0.0392555
-0.0778038
0.0387726
-0.0714786
0.0383404
-0.065422
0.0379599
-0.0596342
0.0376314
-0.0541151
0.0373543
-0.0488699
0.0371281
-0.0438954
0.0369509
-0.0392014
0.0368218
-0.0347689
0.0367378
-0.0306188
0.0366983
-0.0266934
0.0366989
-0.0230424
0.0367399
-0.0195367
0.0368153
-0.0162726
0.0369254
-0.013046
0.0370644
-0.00993792
0.0372292
-0.00685488
0.0374153
-0.00348866
0.0376162
-0.00055698
0.0378144
0.00364156
0.0380263
0.00622289
0.038173
0.0114932
0.038335
0.0137672
0.0383766
0.0187161
0.0213405
0.0247958
-0.153839
0.0316276
-0.162754
0.036691
-0.164761
0.0402129
-0.164215
0.0423731
-0.160149
0.0434971
-0.153878
0.043888
-0.14622
0.0438026
-0.137924
0.0434311
-0.129466
0.0429034
-0.121128
0.0423024
-0.113046
0.0416787
-0.105275
0.0410623
-0.0978248
0.0404708
-0.0906861
0.0399144
-0.0838449
0.0393993
-0.0772886
0.0389289
-0.0710082
0.0385053
-0.0649985
0.0381296
-0.0592585
0.0378023
-0.0537877
0.0375228
-0.0485904
0.0372909
-0.0436635
0.0371048
-0.0390154
0.036964
-0.0346281
0.0368656
-0.0305203
0.0368093
-0.0266371
0.0367906
-0.0230238
0.0368104
-0.0195565
0.0368623
-0.0163246
0.0369474
-0.013131
0.0370594
-0.0100499
0.0371955
-0.00699093
0.0373513
-0.00364445
0.0375195
-0.000725173
0.037684
0.00347699
0.0378586
0.00604828
0.0379669
0.011385
0.038088
0.0136461
0.038084
0.0187201
0.0214223
0.0259809
-0.161957
0.0326173
-0.169391
0.0374547
-0.169599
0.0407299
-0.16749
0.0426791
-0.162098
0.0436447
-0.154843
0.0439332
-0.146508
0.043793
-0.137784
0.0434017
-0.129075
0.042877
-0.120603
0.042292
-0.112461
0.0416906
-0.104674
0.0410983
-0.0972325
0.0405298
-0.0901176
0.039994
-0.0833091
0.039496
-0.0767906
0.039039
-0.0705512
0.0386251
-0.0645845
0.0382552
-0.0588887
0.0379301
-0.0534626
0.0376494
-0.0483097
0.0374129
-0.043427
0.0372193
-0.0388218
0.0370681
-0.0344769
0.0369568
-0.030409
0.0368851
-0.0265654
0.0368489
-0.0229876
0.0368491
-0.0195566
0.0368796
-0.0163551
0.0369415
-0.0131929
0.0370286
-0.010137
0.0371382
-0.00710051
0.037266
-0.00377227
0.037404
-0.000863137
0.0375376
0.00334338
0.0376777
0.00590822
0.0377505
0.0113122
0.0378338
0.0135627
0.0377876
0.0187663
0.0215453
0.0271143
-0.170045
0.0335186
-0.175795
0.0381086
-0.174188
0.0411301
-0.170512
0.0428726
-0.163841
0.0436901
-0.155661
0.0438885
-0.146707
0.0437047
-0.1376
0.0433027
-0.128673
0.0427878
-0.120088
0.0422238
-0.111897
0.0416481
-0.104098
0.0410821
-0.0966666
0.0405385
-0.0895739
0.0400245
-0.0827951
0.0395448
-0.0763109
0.0391024
-0.0701088
0.0386992
-0.0641813
0.0383364
-0.0585258
0.0380146
-0.0531408
0.0377339
-0.0480291
0.0374942
-0.0431873
0.0372945
-0.0386221
0.0371344
-0.0343168
0.0370116
-0.0302862
0.0369261
-0.02648
0.0368741
-0.0229356
0.0368565
-0.0195391
0.0368674
-0.016366
0.0369082
-0.0132337
0.0369724
-0.0102013
0.0370578
-0.00718584
0.0371599
-0.00387443
0.0372701
-0.000973358
0.0373754
0.00323812
0.0374836
0.00579998
0.0375241
0.0112717
0.0375727
0.0135142
0.0374876
0.0188514
0.0217058
0.0281772
-0.17804
0.0343178
-0.181936
0.0386425
-0.178513
0.0414081
-0.173277
0.0429514
-0.165384
0.043633
-0.156343
0.0437543
-0.146828
0.0435384
-0.137384
0.0431347
-0.12827
0.0426361
-0.11959
0.0420975
-0.111359
0.0415506
-0.103551
0.0410133
-0.0961292
0.0404961
-0.0890568
0.0400054
-0.0823044
0.0395454
-0.0758508
0.0391187
-0.0696822
0.0387274
-0.06379
0.0383728
-0.0581712
0.0380557
-0.0528237
0.0377763
-0.0477497
0.0375348
-0.0429458
0.0373304
-0.0384177
0.0371629
-0.0341492
0.0370303
-0.0301536
0.0369327
-0.0263824
0.0368666
-0.0228694
0.036833
-0.0195055
0.0368262
-0.0163592
0.0368478
-0.0132553
0.0368913
-0.0102448
0.0369546
-0.00724913
0.0370334
-0.00395322
0.0371183
-0.0010583
0.0371978
0.00315862
0.037277
0.00572085
0.0372881
0.0112606
0.0373048
0.0134974
0.0371842
0.018972
0.0219005
0.0291544
-0.18588
0.0350047
-0.187786
0.0390502
-0.182559
0.0415613
-0.175789
0.0429156
-0.166738
0.0434752
-0.156902
0.0435329
-0.146886
0.0432961
-0.137147
0.0428991
-0.127873
0.0424228
-0.119113
0.0419138
-0.11085
0.0413985
-0.103036
0.0408919
-0.0956226
0.0404027
-0.0885676
0.0399366
-0.0818383
0.0394974
-0.0754116
0.0390877
-0.0692725
0.0387096
-0.0634119
0.0383645
-0.0578261
0.0380534
-0.0525126
0.0377768
-0.0474731
0.0375349
-0.0427039
0.0373273
-0.0382101
0.037154
-0.0339759
0.0370132
-0.0300127
0.0369053
-0.0262745
0.0368267
-0.0227908
0.036779
-0.0194578
0.0367564
-0.0163366
0.0367609
-0.0132598
0.0367857
-0.0102697
0.0368292
-0.00729258
0.0368869
-0.00401095
0.036949
-0.00112042
0.0370053
0.00310232
0.037058
0.00566816
0.0370428
0.0112759
0.0370306
0.0135096
0.0368777
0.0191249
0.0221256
0.0300339
-0.193506
0.0355716
-0.193324
0.0393276
-0.186315
0.0415897
-0.178051
0.0427674
-0.167916
0.0432198
-0.157355
0.0432275
-0.146893
0.0429807
-0.136901
0.0425983
-0.12749
0.0421496
-0.118665
0.0416738
-0.110374
0.0411925
-0.102555
0.0407182
-0.0951483
0.0402585
-0.0881078
0.0398182
-0.081398
0.039401
-0.0749944
0.0390095
-0.068881
0.0386458
-0.0630483
0.0383116
-0.0574919
0.0380079
-0.0522089
0.0377355
-0.0472006
0.0374948
-0.0424633
0.0372856
-0.0380008
0.0371081
-0.0337984
0.0369607
-0.0298654
0.0368441
-0.026158
0.036755
-0.0227017
0.0366951
-0.0193979
0.0366586
-0.0163001
0.0366479
-0.0132491
0.0366562
-0.0102779
0.036682
-0.00731838
0.0367209
-0.00404988
0.0367626
-0.00116214
0.0367982
0.00306668
0.0368272
0.00563924
0.0367885
0.0113145
0.0367503
0.0135477
0.0365684
0.0193068
0.0223777
0.0308056
-0.200863
0.0360129
-0.198531
0.0394732
-0.189775
0.0414948
-0.180072
0.0425102
-0.168931
0.042871
-0.157715
0.0428422
-0.146864
0.0425956
-0.136654
0.0422348
-0.127129
0.0418185
-0.118248
0.0413787
-0.109934
0.0409335
-0.102109
0.0404931
-0.0947079
0.0400639
-0.0876787
0.0396506
-0.0809847
0.0392565
-0.0746003
0.0388844
-0.0685088
0.0385364
-0.0627003
0.0382143
-0.0571698
0.0379195
-0.0519141
0.0376527
-0.0469339
0.0374148
-0.0422253
0.0372055
-0.0377916
0.0370255
-0.0336183
0.0368733
-0.0297132
0.0367499
-0.0260345
0.036652
-0.0226038
0.0365816
-0.0193275
0.0365332
-0.0162517
0.0365094
-0.0132252
0.0365031
-0.0102717
0.0365135
-0.00732872
0.0365359
-0.00407226
0.0365596
-0.00118588
0.0365771
0.0030492
0.0365848
0.00563148
0.0365256
0.0113737
0.0364643
0.0136091
0.0362567
0.0195145
0.0226534
0.0314622
-0.207901
0.036325
-0.203394
0.0394874
-0.192937
0.0412799
-0.181865
0.0421487
-0.1698
0.0424338
-0.158
0.0423814
-0.146812
0.0421443
-0.136417
0.0418114
-0.126796
0.0414313
-0.117868
0.0410302
-0.109533
0.0406227
-0.101702
0.0402173
-0.0943025
0.0398198
-0.0872812
0.0394344
-0.0805993
0.0390645
-0.0742303
0.0387128
-0.0681572
0.0383818
-0.0623692
0.0380732
-0.0568612
0.0377886
-0.0516295
0.037529
-0.0466743
0.0372953
-0.0419917
0.0370877
-0.037584
0.0369068
-0.0334374
0.0367516
-0.029558
0.036623
-0.0259059
0.0365182
-0.022499
0.0364393
-0.0192486
0.0363809
-0.0161933
0.0363459
-0.0131902
0.0363272
-0.010253
0.0363243
-0.00732576
0.0363323
-0.00408032
0.0363405
-0.001194
0.0363422
0.00304744
0.0363314
0.00564227
0.0362545
0.0114506
0.0361728
0.0136908
0.0359426
0.0197447
0.0229491
0.0319983
-0.214573
0.0365064
-0.207902
0.0393723
-0.195803
0.0409494
-0.183442
0.0416885
-0.170539
0.0419133
-0.158225
0.0418496
-0.146748
0.0416305
-0.136198
0.0413309
-0.126497
0.0409903
-0.117528
0.0406299
-0.109173
0.0402613
-0.101333
0.0398919
-0.0939332
0.039527
-0.0869162
0.0391704
-0.0802428
0.0388257
-0.0738856
0.0384956
-0.0678271
0.0381826
-0.0620563
0.0378888
-0.0565674
0.0376158
-0.0513565
0.0373649
-0.0464234
0.0371371
-0.0417638
0.0369327
-0.0373797
0.0367527
-0.0332574
0.0365961
-0.0294014
0.0364642
-0.025774
0.0363543
-0.0223892
0.0362687
-0.0191631
0.0362023
-0.0161268
0.036158
-0.013146
0.036129
-0.010224
0.0361149
-0.00731164
0.0361109
-0.00407628
0.0361057
-0.00118887
0.0360942
0.00305898
0.0360674
0.00566907
0.0359756
0.0115424
0.0358762
0.0137902
0.0356266
0.0199943
0.0232615
0.0324107
-0.220841
0.0365573
-0.212049
0.0391317
-0.198378
0.0405089
-0.184819
0.0411354
-0.171166
0.0413153
-0.158405
0.0412514
-0.146684
0.0410578
-0.136004
0.0407959
-0.126235
0.0404975
-0.117229
0.0401791
-0.108854
0.0398506
-0.101005
0.039518
-0.0936006
0.0391864
-0.0865846
0.0388595
-0.0799159
0.0385408
-0.0735669
0.0382334
-0.0675196
0.0379397
-0.0617626
0.0376619
-0.0562896
0.037402
-0.0510966
0.0371612
-0.0461825
0.0369407
-0.0415434
0.0367412
-0.0371802
0.0365637
-0.0330798
0.0364074
-0.0292452
0.036274
-0.0256405
0.0361608
-0.022276
0.0360705
-0.0190727
0.0359979
-0.0160542
0.0359465
-0.0130946
0.0359091
-0.0101867
0.0358859
-0.00728849
0.035872
-0.0040623
0.0358559
-0.0011728
0.0358334
0.00308144
0.0357932
0.00570934
0.0356892
0.0116464
0.0355748
0.0139045
0.0353089
0.0202602
0.0235873
0.032698
-0.226669
0.0364795
-0.21583
0.0387707
-0.200669
0.0399648
-0.186013
0.040496
-0.171697
0.0406453
-0.158555
0.0405913
-0.14663
0.0404294
-0.135842
0.0402089
-0.126015
0.0399546
-0.116975
0.0396796
-0.108579
0.0393918
-0.100717
0.0390967
-0.0933056
0.038799
-0.0862869
0.0385026
-0.0796194
0.0382109
-0.0732752
0.0379271
-0.0672358
0.0376538
-0.0614893
0.0373934
-0.0560292
0.0371478
-0.050851
0.0369185
-0.0459533
0.036707
-0.0413319
0.036514
-0.0369871
0.0363406
-0.0329064
0.0361864
-0.0290911
0.0360531
-0.0255072
0.0359385
-0.0221614
0.0358452
-0.0189795
0.0357684
-0.0159774
0.0357118
-0.0130379
0.0356681
-0.010143
0.035638
-0.00725838
0.0356162
-0.00404053
0.0355915
-0.00114806
0.0355604
0.00311249
0.0355092
0.00576062
0.0353957
0.0117599
0.0352689
0.0140313
0.0349898
0.0205393
0.0239233
0.0328609
-0.232029
0.0362764
-0.219246
0.0382952
-0.202688
0.0393238
-0.187042
0.0397767
-0.17215
0.0399086
-0.158686
0.0398733
-0.146595
0.0397483
-0.135718
0.0395721
-0.125838
0.0393635
-0.116766
0.0391326
-0.108348
0.0388862
-0.10047
0.0386292
-0.0930486
0.0383661
-0.0860238
0.0381008
-0.0793542
0.037837
-0.0730114
0.0375778
-0.0669766
0.0373261
-0.0612376
0.0370842
-0.0557873
0.0368543
-0.050621
0.036638
-0.045737
0.0364369
-0.0411308
0.0362518
-0.0368021
0.0360842
-0.0327388
0.0359339
-0.0289407
0.0358025
-0.0253758
0.0356882
-0.022047
0.0355938
-0.0188851
0.0355146
-0.0158982
0.0354546
-0.0129779
0.0354066
-0.010095
0.0353717
-0.0072234
0.0353442
-0.00401309
0.0353131
-0.00111691
0.0352757
0.00314984
0.0352159
0.00582046
0.0350955
0.0118803
0.0349589
0.0141679
0.0346695
0.0208287
0.0242662
0.0329014
-0.236897
0.0359527
-0.222297
0.0377123
-0.204447
0.0385931
-0.187923
0.0389839
-0.172541
0.0391104
-0.158813
0.0391013
-0.146586
0.0390174
-0.135634
0.0388876
-0.125709
0.0387257
-0.116604
0.0385396
-0.108162
0.0383349
-0.100266
0.0381165
-0.0928302
0.0378886
-0.0857959
0.0376553
-0.0791209
0.0374202
-0.0727763
0.0371866
-0.066743
0.0369575
-0.0610085
0.0367354
-0.0555652
0.0365224
-0.0504081
0.0363205
-0.045535
0.0361312
-0.0409416
0.0359557
-0.0366266
0.0357955
-0.0325785
0.0356506
-0.0287957
0.0355228
-0.0252481
0.0354106
-0.0219348
0.0353169
-0.0187914
0.0352372
-0.0158186
0.0351758
-0.0129165
0.0351254
-0.0100446
0.0350876
-0.00718555
0.0350565
-0.00398205
0.0350212
-0.00108155
0.0349797
0.00319128
0.0349137
0.00588648
0.034789
0.012005
0.0346451
0.0143118
0.0343484
0.0211253
0.024613
0.032823
-0.241256
0.035514
-0.224988
0.0370292
-0.205963
0.03778
-0.188673
0.0381239
-0.172885
0.0382553
-0.158944
0.0382785
-0.146609
0.038239
-0.135594
0.038157
-0.125627
0.0380426
-0.11649
0.0379017
-0.108021
0.0377393
-0.100103
0.0375599
-0.0926508
0.0373678
-0.0856038
0.0371672
-0.0789202
0.0369616
-0.0725708
0.0367547
-0.066536
0.0365492
-0.060803
0.036348
-0.0553639
0.0361533
-0.0502134
0.0359671
-0.0453488
0.0357911
-0.0407656
0.0356267
-0.0364621
0.0354754
-0.0324272
0.0353374
-0.0286578
0.035215
-0.0251256
0.0351065
-0.0218263
0.0350153
-0.0187001
0.0349369
-0.0157402
0.0348759
-0.0128556
0.0348251
-0.00999381
0.0347864
-0.00714681
0.0347538
-0.00394943
0.0347163
-0.00104412
0.034673
0.00323461
0.0346031
0.00595633
0.0344766
0.0121316
0.0343278
0.0144605
0.0340268
0.0214264
0.0249605
0.0326306
0.034967
0.0362536
0.0368915
0.0372022
0.0373476
0.037408
0.037415
0.037382
0.0373154
0.0372201
0.0371003
0.0369604
0.0368049
0.0366376
0.0364626
0.0362831
0.0361025
0.0359234
0.0357482
0.0355789
0.0354177
0.0352657
0.0351248
0.0349955
0.03488
0.0347769
0.0346899
0.0346146
0.0345559
0.0345065
0.0344688
0.0344366
0.0343992
0.0343561
0.0342847
0.0341586
0.0340073
0.0337048
)
;
boundaryField
{
inlet
{
type calculated;
value nonuniform List<scalar>
80
(
-0.0640146
-0.0688636
-0.0740776
-0.0796856
-0.0857182
-0.0922073
-0.0991875
-0.106696
-0.114772
-0.12346
-0.132804
-0.142856
-0.153668
-0.165297
-0.177807
-0.191262
-0.205737
-0.221306
-0.238055
-0.256072
-0.0353539
-0.0353533
-0.0353527
-0.0353521
-0.0353516
-0.0353512
-0.0353508
-0.0353505
-0.0353503
-0.0353502
-0.0353502
-0.0353503
-0.0353506
-0.0353509
-0.0353515
-0.0353521
-0.035353
-0.035354
-0.0353554
-0.0353572
-0.0353512
-0.0353529
-0.0353542
-0.0353553
-0.0353561
-0.0353568
-0.0353573
-0.0353577
-0.035358
-0.0353581
-0.0353581
-0.0353581
-0.0353579
-0.0353576
-0.0353572
-0.0353568
-0.0353563
-0.0353557
-0.0353552
-0.0353545
-0.255985
-0.237971
-0.221224
-0.205655
-0.191181
-0.177726
-0.165218
-0.15359
-0.142781
-0.132733
-0.123393
-0.11471
-0.106638
-0.0991348
-0.0921596
-0.0856754
-0.0796476
-0.074044
-0.0688352
-0.0639947
)
;
}
outlet
{
type calculated;
value nonuniform List<scalar>
80
(
0.049693
0.0526406
0.0557214
0.0589404
0.062304
0.0658202
0.0694996
0.073356
0.0774068
0.081674
0.0861855
0.0909754
0.0960861
0.10157
0.107489
0.113924
0.120971
0.128753
0.137427
0.147198
0.0330427
0.0327288
0.0324183
0.0321112
0.0318076
0.0315077
0.0312117
0.0309197
0.0306318
0.0303483
0.0300691
0.0297945
0.0295245
0.0292592
0.0289988
0.0287434
0.028493
0.0282477
0.0280075
0.0277726
0.0396813
0.0393476
0.0390126
0.0386765
0.0383397
0.0380023
0.0376646
0.037327
0.0369895
0.0366526
0.0363163
0.035981
0.0356469
0.0353142
0.0349831
0.0346538
0.0343266
0.0340017
0.0336793
0.0333595
0.38941
0.360559
0.332789
0.306379
0.281478
0.258141
0.236378
0.216169
0.19748
0.180263
0.16446
0.15
0.136806
0.124792
0.113872
0.103957
0.0949606
0.0868009
0.0793997
0.0726849
)
;
}
top
{
type symmetryPlane;
value uniform 0;
}
bottom
{
type symmetryPlane;
value uniform 0;
}
cylinder
{
type calculated;
value nonuniform List<scalar>
160
(
-3.16809e-19
-2.37289e-19
-1.44e-18
9.88523e-19
1.39242e-18
4.04845e-18
-4.75148e-19
2.47775e-18
1.47984e-18
-2.57517e-19
-1.784e-18
6.53199e-18
5.68206e-18
4.68513e-18
5.18586e-18
-5.28479e-18
9.19428e-19
3.27279e-18
-5.70208e-18
5.27068e-18
1.11558e-19
2.91364e-20
1.29258e-18
1.8085e-18
1.71566e-18
-1.82983e-18
-1.40152e-18
-4.15438e-18
-8.00021e-18
2.76142e-18
-2.21927e-19
-3.62732e-18
-3.73655e-18
-4.11437e-18
-3.18222e-18
-1.16435e-18
4.27254e-18
-1.61824e-18
-7.16576e-19
-6.7284e-18
1.59075e-18
7.16576e-19
2.06363e-19
4.3468e-18
5.07853e-18
5.63831e-18
4.11437e-18
3.73655e-18
1.19006e-17
2.21927e-19
-2.76142e-18
3.30398e-18
2.56191e-18
1.40152e-18
1.82983e-18
-1.71566e-18
-1.8085e-18
-1.29258e-18
-2.91364e-20
5.58974e-20
-1.66996e-19
2.37289e-19
1.44e-18
-9.88523e-19
-1.39242e-18
-4.04845e-18
4.75148e-19
-1.77542e-18
-1.47984e-18
2.57517e-19
1.784e-18
-6.53199e-18
-5.68206e-18
-4.68513e-18
1.34659e-18
-1.22077e-18
-9.03535e-19
-1.00161e-17
-1.23681e-18
-5.27068e-18
1.09111e-17
1.23681e-18
3.27279e-18
7.87422e-18
1.43744e-18
5.18586e-18
4.68513e-18
5.68206e-18
1.25639e-17
-1.784e-18
-2.57517e-19
4.29978e-18
2.47775e-18
-4.75148e-19
4.04845e-18
1.39242e-18
9.88523e-19
-1.44e-18
-2.37289e-19
-1.55541e-19
-6.7284e-18
-7.16576e-19
-8.55713e-18
4.27254e-18
-2.05382e-18
-3.18222e-18
-4.11437e-18
-3.73655e-18
-3.62732e-18
-2.21927e-19
2.76142e-18
-8.00021e-18
-2.56191e-18
-1.40152e-18
-1.82983e-18
1.71566e-18
1.8085e-18
1.29258e-18
2.91364e-20
1.11558e-19
5.58974e-20
-2.91364e-20
-1.29258e-18
-1.8085e-18
-1.71566e-18
1.82983e-18
1.40152e-18
2.56191e-18
8.00021e-18
-2.76142e-18
2.21927e-19
3.62732e-18
3.73655e-18
4.11437e-18
5.63831e-18
2.05382e-18
-9.53099e-18
2.06363e-19
-5.07052e-18
6.7284e-18
-5.27068e-18
-1.23681e-18
3.86167e-18
-9.03535e-19
5.28479e-18
1.34659e-18
-4.68513e-18
-5.68206e-18
-6.53199e-18
1.784e-18
2.57517e-19
-1.47984e-18
-2.47775e-18
4.75148e-19
-4.04845e-18
-1.39242e-18
-9.88523e-19
1.44e-18
2.37289e-19
-1.66996e-19
)
;
}
frontandback
{
type empty;
value nonuniform 0();
}
}
// ************************************************************************* //
| |
aa2107212613f68abacfca0301d55367bf84295b | 58457842abd6ac0073ce969eccb1ed22caef9ea2 | /lulib/win32api/font/detail/attribute/init.hpp | 755370fe215db9fca42ae4c6c0c4a350ac16dc5c | [] | no_license | luluci/lulib | abbf7cf09765bd1a76ed1acf30b289b111b8f431 | 235378b85cb07169ffc627021cd01094affd5c99 | refs/heads/master | 2021-03-12T23:01:26.865103 | 2012-01-02T15:19:33 | 2012-01-02T15:19:33 | 1,025,943 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 339 | hpp | init.hpp | #pragma once
#pragma warning(disable : 4819)
#include <windows.h>
namespace lulib { namespace win32api { namespace font_detail { namespace attribute {
struct init {
init(HWND hWnd) : hWnd_(hWnd) {}
inline HWND operator()() { return hWnd_; }
private:
HWND hWnd_;
};
}}}}// namespace lulib::win32api::window_detail::attribute
|
b7ef0521093b92ab92f2196decc39c8f9520dbbb | b84e06f21f99e59fa10388d0dffa9c12d56dcc3b | /src/Cryptography/Tests/TestChecksum.cpp | 5c500b6244052fc34100331e6324b89a8498a1a8 | [] | no_license | visualcortex/Foundation | de238b9e15c8a2a957f3a94ea1bdb2f1179e48ec | bacc6151bceae65ea2c2ebfc64aab6491abb3f3a | refs/heads/master | 2021-01-22T02:40:06.790379 | 2012-06-01T01:43:40 | 2012-06-01T01:43:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,297 | cpp | TestChecksum.cpp | /******************************************************************************
* @file
* @author Ivan Makarov <im.visualcortex@gmail.com>
*
* @section LICENSE
*
* Copyright (C) 2012, Ivan Makarov
* Licensed under the MIT license.
*
*****************************************************************************/
#include "Common.hpp"
#include <boost/test/unit_test.hpp>
BOOST_AUTO_TEST_SUITE(CryptographyTestSuite)
BOOST_AUTO_TEST_CASE(ChecksumTestZero)
{
Checksum checksum;
byte rawHash[Checksum::SIZE_HASH];
size_t sizeData = checksum.getHashValue(rawHash);
string hash = Convert::ToHexString(rawHash, Checksum::SIZE_HASH);
BOOST_CHECK(sizeData == 0);
BOOST_CHECK(_stricmp(hash.c_str(), CHECKSUM_00.c_str()) == 0);
}
BOOST_AUTO_TEST_CASE(ChecksumTestStatic)
{
std::auto_ptr<byte> safebuf(new byte[SIZE_DATA]);
byte *data = safebuf.get();
for (size_t i = 0; i < NUM_DATA_PARTS; i++)
memcpy(data + i*SIZE_DATA_PART, DATA_PART, SIZE_DATA_PART);
uint32 checksum = 0;
byte buffer[Checksum::SIZE_HASH] = { 0 };
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA, buffer), SIZE_DATA);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_01);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA - 1, buffer), SIZE_DATA - 1);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_02);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA - 2, buffer), SIZE_DATA - 2);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_03);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA - 3, buffer), SIZE_DATA - 3);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_04);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, 3, buffer), 3);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_05);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, 2, buffer), 2);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_06);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, 1, buffer), 1);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_07);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, 0, buffer), 0);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_08);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA/2, buffer), SIZE_DATA/2);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_09);
BOOST_CHECK_EQUAL(Checksum::ComputeHash(data, SIZE_DATA/2 + 1, buffer), SIZE_DATA/2 + 1);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_10);
}
BOOST_AUTO_TEST_CASE(ChecksumTestDynamic)
{
std::auto_ptr<byte> safebuf(new byte[SIZE_DATA]);
byte *data = safebuf.get();
for (size_t i = 0; i < NUM_DATA_PARTS; i++)
memcpy(data + i*SIZE_DATA_PART, DATA_PART, SIZE_DATA_PART);
uint32 checksum = 0;
byte buffer[Checksum::SIZE_HASH] = { 0 };
Checksum gen;
gen.updateHashData(data, SIZE_DATA/2);
gen.updateHashData(data + SIZE_DATA/2, SIZE_DATA - SIZE_DATA/2);
BOOST_CHECK_EQUAL(gen.getHashValue(buffer), SIZE_DATA);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_01);
gen.resetHashData();
gen.updateHashData(data, (SIZE_DATA - 1)/2);
gen.updateHashData(data + (SIZE_DATA - 1)/2, (SIZE_DATA - 1) - (SIZE_DATA - 1)/2);
BOOST_CHECK_EQUAL(gen.getHashValue(buffer), SIZE_DATA - 1);
checksum = Convert::ToUInt32(buffer[3], buffer[2], buffer[1], buffer[0]);
BOOST_CHECK_EQUAL(checksum, CHECKSUM_02);
}
BOOST_AUTO_TEST_SUITE_END()
|
cd8c7552e4a35c47269fec0b3cd36bd05a382df6 | eddeb9c9967493d441e135a68f40c45bd9ea3036 | /main.cpp | 7fc427729da9984923e311210805f2f95d5306d0 | [] | no_license | patrickmaingi/3GL | 69db4d0b24fa02cbd139d84faa4cad621bcddbe8 | fcf74b1c8606a9e2a59a5e6851dded7f8dc919ab | refs/heads/main | 2023-07-04T14:21:19.526821 | 2021-08-10T07:13:55 | 2021-08-10T07:13:55 | 394,523,655 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,256 | cpp | main.cpp | #include<stdio.h>
#include<GL/glut.h>
float speed=0.5;
int x=-1,y=-1,z=-1;
float rotate[3]={0,0,0};
int axis=-1;
int flag=1;//rotation is disabled
int size=0;
float a=0.5,b=0.5,c=0.5;
GLubyte roofPat[]={
0xff, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0xff, 0x01, 0xff, 0x01,
0xff, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0x00, 0x01, 0x00, 0x01,
0xff, 0x01, 0xff, 0x01
};
//housebase data
int houseBase[][3]={
{-90,-90,90},
{90,-90,90},
{90,-70,90},
{-90,-70,90},
{90,-70,-90},
{90,-90,-90},
{-90,-70,-90},
{-90,-90,-90}
};
//secondary housebase data
int houseBaseSecondary[][3]={
{-40,-90,-90},
{40,-90,-90},
{40,-70,-90},
{-40,-70,-90},
{40,-70,-150},
{40,-90,-150},
{-40,-70,-150},
{-40,-90,-150}
};
//housewall data
int houseWall[][3]={
{-80,-70,80},
{80,-75,80},
{80,50,80},
{-80,50,80},
{80,50,-80},
{80,-75,-80},
{-80,50,-80},
{-80,-75,-80}
};
//housewall secondary data
int houseWallSecondary[][3]={
{-40,-70,-80},
{40,-70,-80},
{40,30,-80},
{-40,30,-80},
{40,30,-140},
{40,-70,-140},
{-40,30,-140},
{-40,-70,-140}
};
//house roof data
int houseRoof[][3]={
{-120,50,80},
{120,50,80},
{0,120,80},
{0,120,80},
{0,120,-80},
{120,50,-80},
{0,120,-80},
{-120,50,-80}
};
//houseRoof data
int houseRoofSecondary[][3]={
{-55,30,-80},
{55,30,-80},
{0,50,-80},
{0,50,-80},
{0,50,-140},
{55,30,-140},
{0,50,-140},
{-55,30,-140}
};
//houseRoof secondary data
int houseDoor[][3]={
{-30,-70,-140},
{30,-70,-140},
{30,20,-140},
{-30,20,-140},
{30,20,-141},
{30,-70,-141},
{-30,20,-141},
{-30,-70,-141}
};
//init method
void init()
{
glMatrixMode(GL_PROJECTION);
glClearColor(0.57,0.57,0.57,1.0);
glColor3f(0.4,0.2,0.6);
glOrtho(-100.0,100.0,-100.0,100.0,-100.0,100.0);
glMatrixMode(GL_MODELVIEW);
}
//metod to draw cube
void drawface(int *A,int *B,int *C,int *D)
{
glBegin(GL_POLYGON);
glVertex3iv(A);
glVertex3iv(B);
glVertex3iv(C);
glVertex3iv(D);
glEnd();
}
//method to drawcube with pattern
void drawfacepat(int *A,int *B,int *C,int *D)
{
glBegin(GL_POLYGON);
glVertex3iv(A);
glVertex3iv(B);
glVertex3iv(C);
glVertex3iv(D);
glEnd();
}
//method to draw houseRoof Pattern
void drawHouseRoofpat(int cube[][3])
{
glColor3f(1.0,1.0,1.0);
glEnable(GL_POLYGON_STIPPLE);
glPolygonStipple(roofPat);
//glColor3f(0.23,0.25,0.2);
drawfacepat(cube[0],cube[1],cube[2],cube[3]);
//glColor3f(0.23,0.26,0.2);
drawfacepat(cube[1],cube[2],cube[4],cube[5]);
//glColor3f(0.23,0.27,0.2);
drawfacepat(cube[0],cube[3],cube[6],cube[7]);
//glColor3f(0.23,0.25,0.2);
drawfacepat(cube[0],cube[1],cube[5],cube[7]);
//glColor3f(0.23,0.24,0.2);
drawfacepat(cube[2],cube[3],cube[6],cube[4]);
//glColor3f(0.23,0.25,0.2);
drawface(cube[4],cube[5],cube[7],cube[6]);
glDisable(GL_POLYGON_STIPPLE);
}
//method to draw house base
void drawBase(int cube[][3])
{
glColor3f(1.0,1.0,1.0);
glEnable(GL_POLYGON_STIPPLE);
glPolygonStipple(roofPat);
//glColor3f(1.0,0.63,0.24);
drawface(cube[0],cube[1],cube[2],cube[3]);
//glColor3f(1.0,0.53,0.24);
drawface(cube[1],cube[2],cube[4],cube[5]);
//glColor3f(1.0,0.73,0.24);
drawface(cube[0],cube[3],cube[6],cube[7]);
//glColor3f(1.0,0.53,0.24);
drawface(cube[0],cube[1],cube[5],cube[7]);
//glColor3f(1.0,0.63,0.24);
drawface(cube[2],cube[3],cube[6],cube[4]);
//glColor3f(1.0,0.73,0.24);
drawface(cube[4],cube[5],cube[7],cube[6]);
glDisable(GL_POLYGON_STIPPLE);
glColor3f(1.0,0.63,0.24);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(1.0,0.53,0.24);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(1.0,0.73,0.24);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(1.0,0.53,0.24);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(1.0,0.63,0.24);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(1.0,0.73,0.24);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//metod to draw secondary house base
void drawBaseSecondary(int cube[][3])
{
glColor3f(1.0,0.63,0.24);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(1.0,0.53,0.24);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(1.0,0.73,0.24);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(1.0,0.53,0.24);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(1.0,0.63,0.24);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(1.0,0.73,0.24);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//method to draw HouseWall
void drawHouseWall(int cube[][3])
{
glColor3f(0.86,0.86,0.86);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(0.86,0.76,0.86);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(0.86,0.76,0.86);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(0.86,0.86,0.86);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(0.86,0.76,0.86);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(0.86,0.66,0.86);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//method to draw house Wall Secondary
void drawHouseWallSecondary(int cube[][3])
{
glColor3f(0.0,0.4,0.9);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(0.0,0.5,0.8);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(0.0,0.6,0.9);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(0.0,0.5,0.9);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(0.0,0.5,0.8);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(0.0,0.5,0.7);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//method to draw House Roof
void drawHouseRoof(int cube[][3])
{
glColor3f(0.23,0.25,0.2);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(0.23,0.26,0.2);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(0.23,0.27,0.2);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(0.23,0.25,0.2);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(0.23,0.24,0.2);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(0.23,0.25,0.2);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//method to draw House Roof Secondary
void drawHouseRoofSecondary(int cube[][3])
{
glColor3f(0.2,0.4568,0.51569);
drawface(cube[0],cube[1],cube[2],cube[3]);
glColor3f(0.2,0.4568,0.41569);
drawface(cube[1],cube[2],cube[4],cube[5]);
glColor3f(0.2,0.5068,0.41569);
drawface(cube[0],cube[3],cube[6],cube[7]);
glColor3f(0.2,0.4568,0.51569);
drawface(cube[0],cube[1],cube[5],cube[7]);
glColor3f(0.2,0.4568,0.51569);
drawface(cube[2],cube[3],cube[6],cube[4]);
glColor3f(0.2,0.4568,0.51569);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//metod to draw house door
void drawHouseDoor(int cube[][3])
{
glColor3f(1,1,1);
drawface(cube[0],cube[1],cube[2],cube[3]);
//glColor3f(0.2,0.4568,0.41569);
drawface(cube[1],cube[2],cube[4],cube[5]);
//glColor3f(0.2,0.5068,0.41569);
drawface(cube[0],cube[3],cube[6],cube[7]);
//glColor3f(0.2,0.4568,0.51569);
drawface(cube[0],cube[1],cube[5],cube[7]);
//glColor3f(0.2,0.4568,0.51569);
drawface(cube[2],cube[3],cube[6],cube[4]);
//glColor3f(0.2,0.4568,0.51569);
drawface(cube[4],cube[5],cube[7],cube[6]);
}
//method to draw house
void drawHouse(){
drawBase(houseBase);
drawBaseSecondary(houseBaseSecondary);
drawHouseWall(houseWall);
drawHouseWallSecondary(houseWallSecondary);
//drawHouseRoofpat(houseRoof);
drawHouseRoof(houseRoof);
drawHouseRoofSecondary(houseRoofSecondary);
drawHouseDoor(houseDoor);
}
//method to draw scenery
void background(){
glBegin(GL_POLYGON);//mountain
glColor3f(0.5,0.5,0.5);
glVertex3f(-100,60,-80);
glVertex3f(-90,60,-80);
glVertex3f(-85,70,-80);
glVertex3f(-50,90,-80);
glVertex3f(0,60,-80);
glVertex3f(20,60,-80);
glVertex3f(50,90,-80);
glVertex3f(90,60,-80);
glBegin(GL_POLYGON);//sky
glColor3f(0.0,0.0,1.0);
glVertex3f(-100,60,-80);
glVertex3f(-100,100,-80);
glVertex3f(100,100,-80);
glVertex3f(100,60,-80);
glEnd();
glBegin(GL_POLYGON);//ground
glColor3f(0.0,1.0,0.0);
glVertex3f(-100,-100,-80);
glVertex3f(-100,-20,-80);
glVertex3f(-90,-25,-80);
glVertex3f(-80,-35,-80);
glVertex3f(-70,-30,-80);
glVertex3f(-60,-20,-80);
glVertex3f(-40,-25,-80);
glVertex3f(-20,-40,-80);
glVertex3f(0,-35,-80);
glVertex3f(10,-25,-80);
glVertex3f(30,-10,-80);
glVertex3f(40,-15,-80);
glVertex3f(50,-20,-80);
glVertex3f(60,-25,-80);
glVertex3f(70,-30,-80);
glVertex3f(80,-35,-80);
glVertex3f(90,-35,-80);
glVertex3f(100,-35,-80);
glVertex3f(100,-100,-80);
glEnd();
}
//method to handle the mouse clicks
void mouse(int button,int state,int a,int b)
{
if (button==GLUT_LEFT_BUTTON&&state==GLUT_DOWN){
axis=0;
x*=-1;
}
else if (button==GLUT_RIGHT_BUTTON&&state==GLUT_UP){
axis=1;
y*=-1;
}
else if (button==GLUT_MIDDLE_BUTTON&&state==GLUT_UP){
axis=2;
z*=-1;
}
}
//method to handel keyboard events
void keyboard(unsigned char key, int x, int y)
{
if(key=='s'){
flag*=-1;
}
if(key=='a'){
size=1;
if(a<1.25){
a+=0.01;
b+=0.01;
c+=0.01;
}
}
if(key=='A'){
size=1;
if(a>=0.4){
a-=0.01;
b-=0.01;
c-=0.01;
}
}
}
void drawScene()
{
glColor3f(1.0,1.0,0.6);
glBegin(GL_POLYGON);
glVertex3f(-200,-200,-200);
glVertex3f(200,-200,-200);
glVertex3f(-200,0,-200);
glVertex3f(200,0,-200);
glEnd();
}
//method to rotate house
void rotateHouse(){
if(flag==1){
switch(axis)
{
case 0: rotate[0]+=(speed*x);
break;
case 1: rotate[1]+=(speed*y);
break;
case 2: rotate[2]+=(speed*z);
break;
}
}
glRotatef( rotate[0], 1.0, 0.0, 0.0 );
glRotatef( rotate[1], 0.0, 1.0, 0.0 );
glRotatef( rotate[2], 0.0, 0.0, 1.0 );
drawHouse();
}
//display method
void display()
{
glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
glLoadIdentity();
background();
glPushMatrix();
glScalef(a,b,c);
rotateHouse();
glPopMatrix();
glFlush();
glutSwapBuffers();
glutPostRedisplay();
}
int main(int argc,char **argv)
{
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB|GLUT_DEPTH);
glutInitWindowSize(800,800);
glutInitWindowPosition(0,0);
glutCreateWindow("House Rotation");
glEnable(GL_DEPTH_TEST);
init();
glutDisplayFunc(display);
glutMouseFunc(mouse);
glutKeyboardFunc(keyboard);
glutMainLoop();
}
|
a1695d74b0ed05e087e52e9db7673d0e46524a7f | b39b0652150a981c9e08d63b78a5b8d57197601e | /doom_py/src/vizdoom/src/g_hexen/a_fighterhammer.cpp | 42aae31fbdd230790309fd795d6fad5c5c2f6795 | [
"MIT"
] | permissive | jaekyeom/doom-py | 476026afd7dad6ecd47cf2633c745e3b09fa5c9c | a7d08a0f2e92b0ba4be538e182791be4c5a11a1b | refs/heads/master | 2020-03-06T18:52:38.651857 | 2018-04-05T14:28:14 | 2018-04-05T14:28:14 | 127,015,715 | 1 | 0 | MIT | 2018-03-27T16:29:10 | 2018-03-27T16:29:10 | null | UTF-8 | C++ | false | false | 3,445 | cpp | a_fighterhammer.cpp | /*
#include "actor.h"
#include "gi.h"
#include "m_random.h"
#include "s_sound.h"
#include "d_player.h"
#include "a_action.h"
#include "p_local.h"
#include "a_action.h"
#include "p_pspr.h"
#include "gstrings.h"
#include "a_hexenglobal.h"
#include "thingdef/thingdef.h"
*/
const fixed_t HAMMER_RANGE = MELEERANGE+MELEERANGE/2;
static FRandom pr_hammeratk ("FHammerAtk");
extern void AdjustPlayerAngle (AActor *pmo, AActor *linetarget);
//============================================================================
//
// A_FHammerAttack
//
//============================================================================
DEFINE_ACTION_FUNCTION(AActor, A_FHammerAttack)
{
angle_t angle;
int damage;
fixed_t power;
int slope;
int i;
player_t *player;
AActor *linetarget;
if (NULL == (player = self->player))
{
return;
}
AActor *pmo=player->mo;
damage = 60+(pr_hammeratk()&63);
power = 10*FRACUNIT;
for (i = 0; i < 16; i++)
{
angle = pmo->angle + i*(ANG45/32);
slope = P_AimLineAttack (pmo, angle, HAMMER_RANGE, &linetarget, 0, ALF_CHECK3D);
if (linetarget)
{
P_LineAttack (pmo, angle, HAMMER_RANGE, slope, damage, NAME_Melee, PClass::FindClass ("HammerPuff"), true, &linetarget);
if (linetarget != NULL)
{
AdjustPlayerAngle(pmo, linetarget);
if (linetarget->flags3&MF3_ISMONSTER || linetarget->player)
{
P_ThrustMobj (linetarget, angle, power);
}
pmo->weaponspecial = false; // Don't throw a hammer
goto hammerdone;
}
}
angle = pmo->angle-i*(ANG45/32);
slope = P_AimLineAttack(pmo, angle, HAMMER_RANGE, &linetarget, 0, ALF_CHECK3D);
if(linetarget)
{
P_LineAttack(pmo, angle, HAMMER_RANGE, slope, damage, NAME_Melee, PClass::FindClass ("HammerPuff"), true, &linetarget);
if (linetarget != NULL)
{
AdjustPlayerAngle(pmo, linetarget);
if (linetarget->flags3&MF3_ISMONSTER || linetarget->player)
{
P_ThrustMobj(linetarget, angle, power);
}
pmo->weaponspecial = false; // Don't throw a hammer
goto hammerdone;
}
}
}
// didn't find any targets in meleerange, so set to throw out a hammer
angle = pmo->angle;
slope = P_AimLineAttack (pmo, angle, HAMMER_RANGE, &linetarget, 0, ALF_CHECK3D);
if (P_LineAttack (pmo, angle, HAMMER_RANGE, slope, damage, NAME_Melee, PClass::FindClass ("HammerPuff"), true) != NULL)
{
pmo->weaponspecial = false;
}
else
{
pmo->weaponspecial = true;
}
hammerdone:
// Don't spawn a hammer if the player doesn't have enough mana
if (player->ReadyWeapon == NULL ||
!player->ReadyWeapon->CheckAmmo (player->ReadyWeapon->bAltFire ?
AWeapon::AltFire : AWeapon::PrimaryFire, false, true))
{
pmo->weaponspecial = false;
}
return;
}
//============================================================================
//
// A_FHammerThrow
//
//============================================================================
DEFINE_ACTION_FUNCTION(AActor, A_FHammerThrow)
{
AActor *mo;
player_t *player;
if (NULL == (player = self->player))
{
return;
}
if (!player->mo->weaponspecial)
{
return;
}
AWeapon *weapon = player->ReadyWeapon;
if (weapon != NULL)
{
if (!weapon->DepleteAmmo (weapon->bAltFire, false))
return;
}
mo = P_SpawnPlayerMissile (player->mo, PClass::FindClass ("HammerMissile"));
if (mo)
{
mo->special1 = 0;
}
}
|
9346096fcb93e85376735d3e1f8870c391f0faa5 | 059ad38cb52ef27eba41a73662a780676f981cb4 | /src/TerrainSizeInputDialog.h | 1cacbc000cd44d4dc76aedb610cc2758e8b8d8da | [] | no_license | Arking1995/DSC | 0745f30d2131ff8ee0d1ab9406b4750c7f528b94 | 5c1dc1007ca2a1918238663243ce5511c3e7dd96 | refs/heads/master | 2020-06-12T13:19:34.909699 | 2019-08-15T20:02:21 | 2019-08-15T20:02:21 | 194,311,855 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 413 | h | TerrainSizeInputDialog.h | #pragma once
#include "src/glew/include/GL/glew.h"
#include <QtWidgets/QDockWidget>
#include "ui_TerrainSizeInputDialog.h"
class MainWindow;
class TerrainSizeInputDialog : public QDialog {
Q_OBJECT
private:
Ui::TerrainSizeInputDialog ui;
MainWindow* mainWin;
public:
int side;
int cellResolution;
public:
TerrainSizeInputDialog(MainWindow* mainWin);
public slots:
void onOK();
void onCancel();
};
|
3254c38528d2452e6aeb83ddc9591630e05fe889 | 79564cffc852b4d7b01b500b178ce6bfde893bbf | /sivparameters.cpp | e455713437f6f9f91ef3b32286a23eff3a225f8e | [] | no_license | xiaomailong/Guangzhou | e72f3133975c0b3e80464220b868a34d956b0da2 | 2e824e01c6b1f5ac487ac798ffdf440ffe39cd94 | refs/heads/master | 2021-06-21T23:38:28.961981 | 2017-08-14T09:34:28 | 2017-08-14T09:34:28 | 106,808,496 | 0 | 1 | null | 2017-10-13T10:03:09 | 2017-10-13T10:03:09 | null | UTF-8 | C++ | false | false | 12,580 | cpp | sivparameters.cpp | #include "sivparameters.h"
#include "ui_sivparameters.h"
#include "tableacontrol.h"
#include "vehiclelogo.h"
#define _MAX_PAGE 2
SivParameters::SivParameters(QWidget *parent) :
MyBase(parent),
ui(new Ui::SivParameters)
{
ui->setupUi(this);
this->tableControl = new TableAControl(this);
this->tableControl->setGeometry(5, 98, this->tableControl->width(), this->tableControl->height());
this->tableControl->show();
this->vehicleLogo = new VehicleLogo(this);
this->vehicleLogo->setGeometry(123, 10, this->vehicleLogo->width(), this->vehicleLogo->height());
this->vehicleLogo->show();
this->page = 1;
ui->lblPage->setText(QString::number(this->page) + QString(" / ") + QString::number(_MAX_PAGE));
}
SivParameters::~SivParameters()
{
delete ui;
}
void SivParameters::updatePage()
{
if (1 == this->page)
{
this->showPage1();
}
else if (2 == this->page)
{
this->showPage2();
}
}
void SivParameters::showEvent(QShowEvent *)
{
this->vehicleLogo->setLeftHeadState(false);
this->vehicleLogo->setRightHeadState(false);
this->vehicleLogo->setA1Number(QString("A1"));
this->vehicleLogo->setB1Number(QString("B1"));
this->vehicleLogo->setC1Number(QString("C1"));
this->vehicleLogo->setD1Number(QString("D1"));
this->vehicleLogo->setD2Number(QString("D2"));
this->vehicleLogo->setC2Number(QString("C2"));
this->vehicleLogo->setB2Number(QString("B2"));
this->vehicleLogo->setA2Number(QString("A2"));
}
void SivParameters::showPage2()
{
QList<QString> signal;
signal.clear();
signal << QString("A相桥臂电流(A)")
<< QString::number(this->database->bridgeACurrentA1) << QString("- -")
<< QString::number(this->database->bridgeACurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->bridgeACurrentC2)
<< QString("- -") << QString::number(this->database->bridgeACurrentA2);
this->tableControl->fillLine(1, signal);
signal.clear();
signal << QString("B相桥臂电流(A)")
<< QString::number(this->database->bridgeBCurrentA1) << QString("- -")
<< QString::number(this->database->bridgeBCurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->bridgeBCurrentC2)
<< QString("- -") << QString::number(this->database->bridgeBCurrentA2);
this->tableControl->fillLine(2, signal);
signal.clear();
signal << QString("C相桥臂电流(A)")
<< QString::number(this->database->bridgeCCurrentA1) << QString("- -")
<< QString::number(this->database->bridgeCCurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->bridgeCCurrentC2)
<< QString("- -") << QString::number(this->database->bridgeCCurrentA2);
this->tableControl->fillLine(3, signal);
signal.clear();
signal << QString("交流输出U相电流(A)")
<< QString::number(this->database->acOutputUCurrentA1) << QString("- -")
<< QString::number(this->database->acOutputUCurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->acOutputUCurrentC2)
<< QString("- -") << QString::number(this->database->acOutputUCurrentA2);
this->tableControl->fillLine(4, signal);
signal.clear();
signal << QString("交流输出V相电流(A)")
<< QString::number(this->database->acOutputVCurrentA1) << QString("- -")
<< QString::number(this->database->acOutputVCurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->acOutputVCurrentC2)
<< QString("- -") << QString::number(this->database->acOutputVCurrentA2);
this->tableControl->fillLine(5, signal);
signal.clear();
signal << QString("交流输出W相电流(A)")
<< QString::number(this->database->acOutputWCurrentA1) << QString("- -")
<< QString::number(this->database->acOutputWCurrentC1) << QString("- -")
<< QString("- -") << QString::number(this->database->acOutputWCurrentC2)
<< QString("- -") << QString::number(this->database->acOutputWCurrentA2);
this->tableControl->fillLine(6, signal);
signal.clear();
signal << QString("交流输出UV相线电压(V)")
<< QString::number(this->database->acOutputUvVoltageA1) << QString("- -")
<< QString::number(this->database->acOutputUvVoltageC1) << QString("- -")
<< QString("- -") << QString::number(this->database->acOutputUvVoltageC2)
<< QString("- -") << QString::number(this->database->acOutputUvVoltageA2);
this->tableControl->fillLine(7, signal);
signal.clear();
signal << QString("交流输出UW相线电压(V)")
<< QString::number(this->database->acOutputUwVoltageA1) << QString("- -")
<< QString::number(this->database->acOutputUwVoltageC1) << QString("- -")
<< QString("- -") << QString::number(this->database->acOutputUwVoltageC2)
<< QString("- -") << QString::number(this->database->acOutputUwVoltageA2);
this->tableControl->fillLine(8, signal);
signal.clear();
signal << QString("交流母线UV相线电压(V)")
<< QString::number(this->database->sivGeneratrixUvVoltageA1) << QString("- -")
<< QString::number(this->database->sivGeneratrixUvVoltageC1) << QString("- -")
<< QString("- -") << QString::number(this->database->sivGeneratrixUvVoltageC2)
<< QString("- -") << QString::number(this->database->sivGeneratrixUvVoltageA2);
this->tableControl->fillLine(9, signal);
signal.clear();
signal << QString("交流母线UW相线电压(V)")
<< QString::number(this->database->sivGeneratrixUwVoltageA1) << QString("- -")
<< QString::number(this->database->sivGeneratrixUwVoltageC1) << QString("- -")
<< QString("- -") << QString::number(this->database->sivGeneratrixUwVoltageC2)
<< QString("- -") << QString::number(this->database->sivGeneratrixUwVoltageA2);
this->tableControl->fillLine(10, signal);
signal.clear();
signal << QString("SIV并网指令")
<< this->boolToString(this->database->ccuSivStartA1) << QString("")
<< this->boolToString(this->database->ccuSivStartC1) << QString("")
<< QString("") << this->boolToString(this->database->ccuSivStartC2)
<< QString("") << this->boolToString(this->database->ccuSivStartA2);
this->tableControl->fillLine(11, signal);
}
void SivParameters::showPage1()
{
QList<QString> signal;
signal.clear();
signal << QString("KM1故障保护")
<< this->boolToString(this->database->sivKm1FaultProtectA1) << QString("--")
<< this->boolToString(this->database->sivKm1FaultProtectC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKm1FaultProtectC2)
<< QString("--") << this->boolToString(this->database->sivKm1FaultProtectA2);
this->tableControl->fillLine(1, signal);
signal.clear();
signal << QString("KM2故障保护")
<< this->boolToString(this->database->sivKm2FaultProtectA1) << QString("--")
<< this->boolToString(this->database->sivKm2FaultProtectC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKm2FaultProtectC2)
<< QString("--") << this->boolToString(this->database->sivKm2FaultProtectA2);
this->tableControl->fillLine(2, signal);
signal.clear();
signal << QString("KMA故障保护")
<< this->boolToString(this->database->sivKmaFaultProtectA1) << QString("--")
<< this->boolToString(this->database->sivKmaFaultProtectC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKmaFaultProtectC2)
<< QString("--") << this->boolToString(this->database->sivKmaFaultProtectA2);
this->tableControl->fillLine(3, signal);
signal.clear();
signal << QString("KM1驱动信号")
<< this->boolToString(this->database->sivKm1DriverSignalA1) << QString("--")
<< this->boolToString(this->database->sivKm1DriverSignalC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKm1DriverSignalC2)
<< QString("--") << this->boolToString(this->database->sivKm1DriverSignalA2);
this->tableControl->fillLine(4, signal);
signal.clear();
signal << QString("KM2驱动信号")
<< this->boolToString(this->database->sivKm2DriverSignalA1) << QString("--")
<< this->boolToString(this->database->sivKm2DriverSignalC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKm2DriverSignalC2)
<< QString("--") << this->boolToString(this->database->sivKm2DriverSignalA2);
this->tableControl->fillLine(5, signal);
signal.clear();
signal << QString("KMA驱动信号")
<< this->boolToString(this->database->sivKmaDriverSignalA1) << QString("--")
<< this->boolToString(this->database->sivKmaDriverSignalC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivKmaDriverSignalC2)
<< QString("--") << this->boolToString(this->database->sivKmaDriverSignalA2);
this->tableControl->fillLine(6, signal);
signal.clear();
signal << QString("SIV OK")
<< this->boolToString(this->database->siv380vOkA1) << QString("--")
<< this->boolToString(this->database->siv380vOkC1) << QString("--")
<< QString("--") << this->boolToString(this->database->siv380vOkC2)
<< QString("--") << this->boolToString(this->database->siv380vOkA2);
this->tableControl->fillLine(7, signal);
signal.clear();
signal << QString("ACU Bus Active")
<< this->boolToString(this->database->sivAcuBusActiveA1) << QString("--")
<< this->boolToString(this->database->sivAcuBusActiveC1) << QString("--")
<< QString("--") << this->boolToString(this->database->sivAcuBusActiveC2)
<< QString("--") << this->boolToString(this->database->sivAcuBusActiveA2);
this->tableControl->fillLine(8, signal);
signal.clear();
signal << QString("输入电压(V)")
<< QString::number(this->database->inputVoltageSivA1) << QString("--")
<< QString::number(this->database->inputVoltageSivC1) << QString("--")
<< QString("--") << QString::number(this->database->inputVoltageSivC2)
<< QString("--") << QString::number(this->database->inputVoltageSivA2);
this->tableControl->fillLine(9, signal);
signal.clear();
signal << QString("中间电容电压(V)")
<< QString::number(this->database->middleCapacitorVoltageSivA1) << QString("--")
<< QString::number(this->database->middleCapacitorVoltageSivC1) << QString("--")
<< QString("--") << QString::number(this->database->middleCapacitorVoltageSivC2)
<< QString("--") << QString::number(this->database->middleCapacitorVoltageSivA2);
this->tableControl->fillLine(10, signal);
signal.clear();
signal << QString("输入电流(A)")
<< QString::number(this->database->inputCurrentSivA1) << QString("--")
<< QString::number(this->database->inputCurrentSivC1) << QString("--")
<< QString("--") << QString::number(this->database->inputCurrentSivC2)
<< QString("--") << QString::number(this->database->inputCurrentSivA2);
this->tableControl->fillLine(11, signal);
}
void SivParameters::on_btnBcu_pressed()
{
emit this->changePage(uBcuParametersPage);
}
void SivParameters::on_btnBack_clicked()
{
emit this->changePage(uTroubleShootingPage);
}
QString SivParameters::boolToString(bool value)
{
if (value)
{
return QString("true");
}
else
{
return QString("false");
}
}
void SivParameters::on_btnUp_clicked()
{
if (this->page < _MAX_PAGE)
{
this->page ++;
}
ui->lblPage->setText(QString::number(this->page) + QString(" / ") + QString::number(_MAX_PAGE));
}
void SivParameters::on_btnDown_clicked()
{
if (this->page > 1)
{
this->page --;
}
ui->lblPage->setText(QString::number(this->page) + QString(" / ") + QString::number(_MAX_PAGE));
}
void SivParameters::on_btnDcu_pressed()
{
this->changePage(uDcuParametersPage);
}
void SivParameters::on_btnOthers_pressed()
{
this->changePage(uOthersParametersPage);
}
|
e812cc0e3ca39f060f8d615a6f54d23b6dfffc78 | fcb631f65ce83f9593657e5fc45117e977361965 | /Contest/Round #629/B/main.cpp | 7f93005551f0ec3b4da563f31ac6875a4ba95f8a | [] | no_license | MassimoSandre/Codeforces | 5e0592c0ed53811e2046bbd0c5bd60be2c0853f3 | 6d52bfcf39c4cf5bee2f00388cc42634f2a46009 | refs/heads/main | 2023-04-08T20:14:21.958488 | 2021-04-17T12:09:45 | 2021-04-17T12:09:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 550 | cpp | main.cpp | #include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
using namespace std;
int main()
{
unsigned long long t, n, k, p1=-1,p2,temp;
cin >> t;
for(int i = 0; i < t;i++) {
cin >> n >> k;
temp = (-1+sqrt((unsigned long long)1+((unsigned long long)8*(k-1))))/2;
p2 = n-temp-2;
p1 = n-(k - ((temp)*(temp+1)/2+1))-1;
for(int j = 0; j < n; j++) {
if(j == p2 || j == p1) cout << "b";
else cout << "a";
}
cout << endl;
}
return 0;
}
|
093e95dd94e60c074717e2dfaf827f605ed7e14a | 1dbf007249acad6038d2aaa1751cbde7e7842c53 | /frs/include/huaweicloud/frs/v2/model/AddFacesByBase64Response.h | 44f08bb057939787719c1cfcf81d737d33aa2c46 | [] | permissive | huaweicloud/huaweicloud-sdk-cpp-v3 | 24fc8d93c922598376bdb7d009e12378dff5dd20 | 71674f4afbb0cd5950f880ec516cfabcde71afe4 | refs/heads/master | 2023-08-04T19:37:47.187698 | 2023-08-03T08:25:43 | 2023-08-03T08:25:43 | 324,328,641 | 11 | 10 | Apache-2.0 | 2021-06-24T07:25:26 | 2020-12-25T09:11:43 | C++ | UTF-8 | C++ | false | false | 2,405 | h | AddFacesByBase64Response.h |
#ifndef HUAWEICLOUD_SDK_FRS_V2_MODEL_AddFacesByBase64Response_H_
#define HUAWEICLOUD_SDK_FRS_V2_MODEL_AddFacesByBase64Response_H_
#include <huaweicloud/frs/v2/FrsExport.h>
#include <huaweicloud/core/utils/ModelBase.h>
#include <huaweicloud/core/http/HttpResponse.h>
#include <huaweicloud/frs/v2/model/FaceSetFace.h>
#include <string>
#include <vector>
namespace HuaweiCloud {
namespace Sdk {
namespace Frs {
namespace V2 {
namespace Model {
using namespace HuaweiCloud::Sdk::Core::Utils;
using namespace HuaweiCloud::Sdk::Core::Http;
/// <summary>
/// Response Object
/// </summary>
class HUAWEICLOUD_FRS_V2_EXPORT AddFacesByBase64Response
: public ModelBase, public HttpResponse
{
public:
AddFacesByBase64Response();
virtual ~AddFacesByBase64Response();
/////////////////////////////////////////////
/// ModelBase overrides
void validate() override;
web::json::value toJson() const override;
bool fromJson(const web::json::value& json) override;
/////////////////////////////////////////////
/// AddFacesByBase64Response members
/// <summary>
/// 人脸库ID。 调用失败时无此字段。
/// </summary>
std::string getFaceSetId() const;
bool faceSetIdIsSet() const;
void unsetfaceSetId();
void setFaceSetId(const std::string& value);
/// <summary>
/// 人脸库名称。 调用失败时无此字段。
/// </summary>
std::string getFaceSetName() const;
bool faceSetNameIsSet() const;
void unsetfaceSetName();
void setFaceSetName(const std::string& value);
/// <summary>
/// [人脸库当中的人脸结构,详见[FaceSetFace](https://support.huaweicloud.com/api-face/face_02_0018.html)。调用失败时无此字段。](tag:hc) [人脸库当中的人脸结构,详见[FaceSetFace](https://support.huaweicloud.com/intl/zh-cn/api-face/face_02_0018.html)。调用失败时无此字段。](tag:hk)
/// </summary>
std::vector<FaceSetFace>& getFaces();
bool facesIsSet() const;
void unsetfaces();
void setFaces(const std::vector<FaceSetFace>& value);
protected:
std::string faceSetId_;
bool faceSetIdIsSet_;
std::string faceSetName_;
bool faceSetNameIsSet_;
std::vector<FaceSetFace> faces_;
bool facesIsSet_;
#ifdef RTTR_FLAG
RTTR_ENABLE()
#endif
};
}
}
}
}
}
#endif // HUAWEICLOUD_SDK_FRS_V2_MODEL_AddFacesByBase64Response_H_
|
0108effd84ae16ec49542d5447af4d8bd0a15add | 49e2bccf605c332d66bf8006839e17f671b28128 | /include/PololuMath.h | dc1a0f08151d3fd745fdc1c531e4c11140b31fb5 | [] | no_license | hansonrobotics/ros_pololu_servo | 73ab035e891a871e01c24172c03b1d51261dac81 | 114bedb365818573058bee2dc9abd9e83c01c3f3 | refs/heads/master | 2021-01-18T06:18:34.406912 | 2015-06-02T04:38:55 | 2015-06-02T04:38:55 | 20,589,372 | 1 | 1 | null | 2015-02-03T11:28:08 | 2014-06-07T09:03:48 | C++ | UTF-8 | C++ | false | false | 524 | h | PololuMath.h | #pragma once
#include <ros/ros.h>
#include "Motor.h"
#include "Calibration.h"
#include <angles/angles.h>
class PololuMath
{
public:
static double EPSILON;
static bool are_same(double a, double b);
static double interpolate(double value, double old_min, double old_max, double new_min, double new_max);
static double to_pulse(double radians, Motor motor);
static double to_radians(double pulse, Motor motor);
static double clamp(double value, double min, double max);
};
|
64ea94eaaf4dcd6dfa20de545dc63f6c03f51b0d | efe1131a33ee82e7c46b5af4cf200dcae8eb4add | /mfc/SRC/16-BIT/DLGCORE.CPP | 0cc553067c1780d432e8b76a1909a97ad72f9439 | [
"BSL-1.0"
] | permissive | ALEHACKsp/dmc | 819398bbb46e8b5a8ef5c344ef2a0f8b4ee8903c | 9478d25a677f70dbe4fc0ed317cc5a5e5050ef8b | refs/heads/master | 2022-12-28T13:36:57.721262 | 2020-10-11T07:47:16 | 2020-10-11T07:47:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,966 | cpp | DLGCORE.CPP | // This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1993 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and Microsoft
// QuickHelp and/or WinHelp documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
#include "stdafx.h"
#ifdef AFX_CORE1_SEG
#pragma code_seg(AFX_CORE1_SEG)
#endif
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#define new DEBUG_NEW
#endif
/////////////////////////////////////////////////////////////////////////////
// Special case for remaining dialog cases
// Most messages will go through the window proc (AfxWndProc) of the
// subclassed dialog. Some messages like WM_SETFONT and WM_INITDIALOG
// are sent directly to the dialog proc only. These messages cannot be
// passed on to DefWindowProc() or infinite recursion will result!
// In responding to these messages, you shouldn't call the Default handler
LRESULT CALLBACK AFX_EXPORT
_AfxDlgProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
CDialog* pDlg;
// test for special case (Win 3.0 will call dialog proc instead
// of SendMessage for these two messages).
if (message != WM_SETFONT && message != WM_INITDIALOG)
return 0L; // normal handler
// assume it is already wired up to a permanent one
pDlg = (CDialog*) CWnd::FromHandlePermanent(hWnd);
ASSERT(pDlg != NULL);
ASSERT(pDlg->m_hWnd == hWnd);
// prepare for callback, make it look like message map call
LONG lResult = 0;
MSG oldState = _afxLastMsg; // save for nesting
_afxLastMsg.hwnd = hWnd;
_afxLastMsg.message = message;
_afxLastMsg.wParam = wParam;
_afxLastMsg.lParam = lParam;
TRY
{
if (message == WM_SETFONT)
pDlg->OnSetFont(CFont::FromHandle((HFONT)wParam));
else // WM_INITDIALOG
lResult = pDlg->OnInitDialog();
}
CATCH_ALL(e)
{
// fall through
TRACE0("Warning: something went wrong in dialog init\n");
pDlg->EndDialog(IDABORT); // something went wrong
ASSERT(FALSE);
}
END_CATCH_ALL
_afxLastMsg = oldState;
return lResult;
}
/////////////////////////////////////////////////////////////////////////////
// CDialog - Modeless and Modal
IMPLEMENT_DYNAMIC(CDialog, CWnd)
BEGIN_MESSAGE_MAP(CDialog, CWnd)
//{{AFX_MSG_MAP(CDialog)
ON_WM_CTLCOLOR()
ON_COMMAND(IDOK, OnOK)
ON_COMMAND(IDCANCEL, OnCancel)
ON_MESSAGE(WM_COMMANDHELP, OnCommandHelp)
ON_MESSAGE(WM_HELPHITTEST, OnHelpHitTest)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
BOOL CDialog::PreTranslateMessage(MSG* pMsg)
{
// for modeless processing (or modal)
ASSERT(m_hWnd != NULL);
// don't translate dialog messages when in Shift+F1 help mode
CFrameWnd* pFrameWnd = GetTopLevelFrame();
if (pFrameWnd != NULL && pFrameWnd->m_bHelpMode)
return FALSE;
// filter both messages to dialog and from children
if (pMsg->message >= WM_KEYFIRST && pMsg->message <= WM_KEYLAST)
return ::IsDialogMessage(m_hWnd, pMsg);
return FALSE;
}
WNDPROC* CDialog::GetSuperWndProcAddr()
{
static WNDPROC NEAR pfnSuper;
return &pfnSuper;
}
BOOL CDialog::OnCmdMsg(UINT nID, int nCode, void* pExtra,
AFX_CMDHANDLERINFO* pHandlerInfo)
{
if (CWnd::OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
return TRUE;
if ((nCode != CN_COMMAND && nCode != CN_UPDATE_COMMAND_UI) ||
!IS_COMMAND_ID(nID) || nID >= 0xf000)
{
// control notification or non-command button or system command
return FALSE; // not routed any further
}
// if we have an owner window, give it second crack
CWnd* pOwner = GetWindow(GW_OWNER);
if (pOwner != NULL)
{
#ifdef _DEBUG
if (afxTraceFlags & 8)
TRACE1("Routing command id 0x%04X to owner window\n", nID);
#endif
ASSERT(pOwner != this);
if (pOwner->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
return TRUE;
}
// last crack goes to the WinApp
CWinApp* pApp = AfxGetApp();
if (pApp != NULL)
{
#ifdef _DEBUG
if (afxTraceFlags & 8)
TRACE1("Routing command id 0x%04X to app\n", nID);
#endif
if (pApp->OnCmdMsg(nID, nCode, pExtra, pHandlerInfo))
return TRUE;
}
#ifdef _DEBUG
if (afxTraceFlags & 8)
{
TRACE2("IGNORING command id 0x%04X sent to %Fs dialog\n", nID,
GetRuntimeClass()->m_lpszClassName);
}
#endif
return FALSE;
}
/////////////////////////////////////////////////////////////////////////////
// Modeless Dialogs have 2-phase construction
CDialog::CDialog()
{
ASSERT(m_hWnd == NULL);
AFX_ZERO_INIT_OBJECT(CWnd);
}
CDialog::~CDialog()
{
if (m_hWnd != NULL)
{
TRACE0("Warning: calling DestroyWindow in CDialog::~CDialog\n");
TRACE0("\tOnDestroy or PostNcDestroy in derived class will not be called\n");
DestroyWindow();
}
}
BOOL CDialog::Create(LPCSTR lpszTemplateName, CWnd* pParentWnd)
{
ASSERT(_AFX_FP_SEG(lpszTemplateName) == 0 ||
AfxIsValidString(lpszTemplateName));
if (pParentWnd == NULL)
pParentWnd = AfxGetMainWnd();
if (pParentWnd != NULL)
ASSERT_VALID(pParentWnd);
m_lpDialogTemplate = lpszTemplateName; // used for help
if (HIWORD(m_lpDialogTemplate) == 0 && m_nIDHelp == 0)
m_nIDHelp = LOWORD(m_lpDialogTemplate);
#ifdef _DEBUG
if (!_AfxCheckDialogTemplate(lpszTemplateName, FALSE))
{
ASSERT(FALSE); // invalid dialog template name
PostNcDestroy(); // cleanup if Create fails too soon
return FALSE;
}
#endif //_DEBUG
HINSTANCE hInst = AfxFindResourceHandle(lpszTemplateName, RT_DIALOG);
_AfxHookWindowCreate(this);
HWND hWnd = ::CreateDialog(hInst, lpszTemplateName,
pParentWnd->GetSafeHwnd(), (DLGPROC)_AfxDlgProc);
if (!_AfxUnhookWindowCreate())
PostNcDestroy(); // cleanup if Create fails too soon
if (hWnd == NULL)
return FALSE;
ASSERT(hWnd == m_hWnd);
return TRUE;
}
typedef void FAR* LPCDLGTEMPLATE;
BOOL CDialog::CreateIndirect(const void FAR* lpDialogTemplate, CWnd* pParentWnd)
{
if (pParentWnd == NULL)
pParentWnd = AfxGetMainWnd();
if (pParentWnd != NULL)
ASSERT_VALID(pParentWnd);
_AfxHookWindowCreate(this);
HWND hWnd = ::CreateDialogIndirect(AfxGetInstanceHandle(),
(LPCDLGTEMPLATE)lpDialogTemplate, pParentWnd->GetSafeHwnd(),
(DLGPROC)_AfxDlgProc);
if (!_AfxUnhookWindowCreate())
PostNcDestroy(); // cleanup if Create fails too soon
if (hWnd == NULL)
return FALSE;
ASSERT(hWnd == m_hWnd);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// Modal Dialogs
// Modal Constructors just save parameters
CDialog::CDialog(LPCSTR lpszTemplateName, CWnd* pParentWnd)
{
ASSERT(_AFX_FP_SEG(lpszTemplateName) == 0 ||
AfxIsValidString(lpszTemplateName));
AFX_ZERO_INIT_OBJECT(CWnd);
m_pParentWnd = pParentWnd;
m_lpDialogTemplate = lpszTemplateName;
if (HIWORD(m_lpDialogTemplate) == 0)
m_nIDHelp = LOWORD(m_lpDialogTemplate);
}
CDialog::CDialog(UINT nIDTemplate, CWnd* pParentWnd)
{
AFX_ZERO_INIT_OBJECT(CWnd);
m_pParentWnd = pParentWnd;
m_lpDialogTemplate = MAKEINTRESOURCE(nIDTemplate);
m_nIDHelp = nIDTemplate;
}
BOOL CDialog::InitModalIndirect(HGLOBAL hDialogTemplate)
{
// must be called on an empty constructed CDialog
ASSERT(m_lpDialogTemplate == NULL);
ASSERT(m_hDialogTemplate == NULL);
m_hDialogTemplate = hDialogTemplate;
return TRUE; // always ok (DoModal actually brings up dialog)
}
HWND CDialog::PreModal()
{
// cannot call DoModal on a dialog already constructed as modeless
ASSERT(m_hWnd == NULL);
AfxGetApp()->EnableModeless(FALSE);
// find parent HWND
HWND hWndParent = _AfxGetSafeOwner(m_pParentWnd);
_AfxHookWindowCreate(this);
return hWndParent;
}
void CDialog::PostModal()
{
_AfxUnhookWindowCreate(); // just in case
Detach(); // just in case
AfxGetApp()->EnableModeless(TRUE);
}
int CDialog::DoModal()
{
int nResult;
// can be constructed with a resource template or InitModalIndirect
ASSERT(m_lpDialogTemplate != NULL || m_hDialogTemplate != NULL);
HWND hWndParent = PreModal();
if (m_lpDialogTemplate != NULL)
{
HINSTANCE hInst = AfxFindResourceHandle(m_lpDialogTemplate, RT_DIALOG);
nResult = ::DialogBox(hInst, m_lpDialogTemplate,
hWndParent, (DLGPROC)_AfxDlgProc);
}
else
{
HINSTANCE hInst = AfxGetInstanceHandle();
nResult = ::DialogBoxIndirect(hInst, m_hDialogTemplate,
hWndParent, (DLGPROC)_AfxDlgProc);
}
PostModal();
return nResult;
}
/////////////////////////////////////////////////////////////////////////////
// Standard CDialog implementation
BOOL PASCAL _AfxHelpEnabled()
{
// help is enabled if the app has a handler for ID_HELP
AFX_CMDHANDLERINFO info;
// try main window first
CWnd* pWnd = AfxGetMainWnd();
if (pWnd != NULL && pWnd->OnCmdMsg(ID_HELP, CN_COMMAND, NULL, &info))
return TRUE;
// try app last
return AfxGetApp()->OnCmdMsg(ID_HELP, CN_COMMAND, NULL, &info);
}
void CDialog::OnSetFont(CFont*)
{
// ignore it
}
BOOL CDialog::OnInitDialog()
{
// initialize VBX controls etc
if (!ExecuteDlgInit(m_lpDialogTemplate))
return FALSE;
if (!UpdateData(FALSE))
{
TRACE0("Warning: UpdateData failed during dialog init\n");
EndDialog(IDABORT);
return FALSE;
}
CWnd* pHelpButton = GetDlgItem(ID_HELP);
if (pHelpButton != NULL)
pHelpButton->ShowWindow(_AfxHelpEnabled() ? SW_SHOW : SW_HIDE);
return TRUE; // set focus to first one
}
void CDialog::OnOK()
{
if (!UpdateData(TRUE))
{
TRACE0("UpdateData failed during dialog termination\n");
// the UpdateData routine will set focus to correct item
return;
}
EndDialog(IDOK);
}
void CDialog::OnCancel()
{
EndDialog(IDCANCEL);
}
/////////////////////////////////////////////////////////////////////////////
// Gray background support
HBRUSH CDialog::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
{
LRESULT lResult;
if (pWnd->SendChildNotifyLastMsg(&lResult))
return (HBRUSH)lResult; // eat it
if (!GrayCtlColor(pDC->m_hDC, pWnd->GetSafeHwnd(), nCtlColor,
afxDlgBkBrush, afxDlgTextClr))
return (HBRUSH)Default();
return afxDlgBkBrush;
}
// implementation of OnCtlColor for default gray backgrounds
// (works for any window containing controls)
// return value of FALSE means caller must call DefWindowProc's default
// TRUE means that 'hbrGray' will be used and the appropriate text
// ('clrText') and background colors are set.
BOOL PASCAL CWnd::GrayCtlColor(HDC hDC, HWND hWnd, UINT nCtlColor,
HBRUSH hbrGray, COLORREF clrText)
{
ASSERT(hDC != NULL);
if (hbrGray == NULL ||
nCtlColor == CTLCOLOR_EDIT || nCtlColor == CTLCOLOR_MSGBOX ||
nCtlColor == CTLCOLOR_SCROLLBAR)
{
return FALSE;
}
if (nCtlColor == CTLCOLOR_LISTBOX)
{
// only handle requests to draw the space between edit and drop button
// in a drop-down combo (not a drop-down list)
if (!_AfxIsComboBoxControl(hWnd, (UINT)CBS_DROPDOWN))
return FALSE;
}
// set background color and return handle to brush
LOGBRUSH logbrush;
VERIFY(::GetObject(hbrGray, sizeof(LOGBRUSH), (LPSTR)&logbrush));
::SetBkColor(hDC, logbrush.lbColor);
if (clrText == (COLORREF)-1)
clrText = ::GetSysColor(COLOR_WINDOWTEXT); // normal text
::SetTextColor(hDC, clrText);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// Centering dialog support (works for any non-child window)
void CWnd::CenterWindow(CWnd* pAlternateOwner /*= NULL*/)
{
CRect rcScreen(0, 0, ::GetSystemMetrics(SM_CXSCREEN),
::GetSystemMetrics(SM_CYSCREEN));
// hWndOwner is the window we should center ourself in
HWND hWndOwner = (pAlternateOwner != NULL) ?
pAlternateOwner->m_hWnd : ::GetWindow(m_hWnd, GW_OWNER);
// rcParent is the rectange we should center ourself in
CRect rcParent;
if (hWndOwner == NULL)
rcParent = rcScreen;
else
::GetWindowRect(hWndOwner, &rcParent);
// find ideal center point
int xMid = (rcParent.left + rcParent.right) / 2;
int yMid = (rcParent.top + rcParent.bottom) / 2;
// find dialog's upper left based on that
CRect rcDlg;
GetWindowRect(&rcDlg);
int xLeft = xMid - rcDlg.Width() / 2;
int yTop = yMid - rcDlg.Height() / 2;
// if the dialog is outside the screen, move it inside
if (xLeft < 0)
xLeft = 0;
else if (xLeft + rcDlg.Width() > rcScreen.right)
xLeft = rcScreen.right - rcDlg.Width();
if (yTop < 0)
yTop = 0;
else if (yTop + rcDlg.Height() > rcScreen.bottom)
yTop = rcScreen.bottom - rcDlg.Height();
SetWindowPos(NULL, xLeft, yTop, -1, -1, SWP_NOSIZE | SWP_NOZORDER);
}
/////////////////////////////////////////////////////////////////////////////
// CDialog support for context sensitive help.
LRESULT CDialog::OnCommandHelp(WPARAM, LPARAM lParam)
{
if (lParam == 0 && m_nIDHelp != 0)
lParam = HID_BASE_RESOURCE + m_nIDHelp;
if (lParam != 0)
{
AfxGetApp()->WinHelp(lParam);
return TRUE;
}
return FALSE;
}
LRESULT CDialog::OnHelpHitTest(WPARAM, LPARAM)
{
if (m_nIDHelp != 0)
return HID_BASE_RESOURCE + m_nIDHelp;
return 0;
}
/////////////////////////////////////////////////////////////////////////////
// CDialog Diagnostics
#ifdef _DEBUG
void CDialog::AssertValid() const
{
CWnd::AssertValid();
}
void CDialog::Dump(CDumpContext& dc) const
{
CWnd::Dump(dc);
AFX_DUMP0(dc, "\nm_lpDialogTemplate = ");
if (HIWORD(m_lpDialogTemplate) == 0)
dc << (int)LOWORD(m_lpDialogTemplate);
else
dc << m_lpDialogTemplate;
AFX_DUMP1(dc, "\nm_hDialogTemplate = ", (UINT)m_hDialogTemplate);
AFX_DUMP1(dc, "\nm_pParentWnd = ", (void*)m_pParentWnd);
AFX_DUMP1(dc, "\nm_nIDHelp = ", m_nIDHelp);
}
// diagnostic routine to check for and decode dialog templates
// return FALSE if a program error occurs (i.e. bad resource ID or
// bad dialog styles).
BOOL AFXAPI _AfxCheckDialogTemplate(LPCSTR lpszResource, BOOL bInvisibleChild)
{
ASSERT(lpszResource != NULL);
HINSTANCE hInst = AfxFindResourceHandle(lpszResource, RT_DIALOG);
HRSRC hResource = ::FindResource(hInst, lpszResource, RT_DIALOG);
if (hResource == NULL)
{
if (HIWORD(lpszResource) != 0)
TRACE1("ERROR: Cannot find dialog template named '%Fs'\n",
lpszResource);
else
TRACE1("ERROR: Cannot find dialog template with IDD 0x%04X\n",
LOWORD(lpszResource));
return FALSE;
}
if (!bInvisibleChild)
return TRUE; // that's all we need to check
// we must check that the dialog template is for an invisible child
// window that can be used for a form-view or dialog-bar
HGLOBAL hTemplate = ::LoadResource(hInst, hResource);
if (hTemplate == NULL)
{
TRACE0("Warning: LoadResource failed for dialog template\n");
// this is only a warning, the real call to CreateDialog will fail
return TRUE; // not a program error - just out of memory
}
// style is first DWORD in resource
DWORD dwStyle = *(DWORD FAR*)::LockResource(hTemplate);
::UnlockResource(hTemplate);
::FreeResource(hTemplate);
if (dwStyle & WS_VISIBLE)
{
if (HIWORD(lpszResource) != 0)
TRACE1("ERROR: Dialog named '%Fs' must be invisible\n",
lpszResource);
else
TRACE1("ERROR: Dialog with IDD 0x%04X must be invisible\n",
LOWORD(lpszResource));
return FALSE;
}
if (!(dwStyle & WS_CHILD))
{
if (HIWORD(lpszResource) != 0)
TRACE1("ERROR: Dialog named '%Fs' must have the child style\n",
lpszResource);
else
TRACE1("ERROR: Dialog with IDD 0x%04X must have the child style\n",
LOWORD(lpszResource));
return FALSE;
}
return TRUE;
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
|
5e0c0afc047baab644dd24b8689c8484efdbd86b | 7cc4bd5ce79fcbaa5fa2a58558aa05f89df0f7a4 | /attic/torsor.hpp | c6a5ed36e72dc6490296849505805361d269c770 | [] | no_license | wovo/godafoss-c- | 5bde98b077bfd3a2bb0cbe9057abf5b7b0c3ebf4 | 77be6d2661be47af6b6591a944c169021ee71020 | refs/heads/master | 2023-03-17T07:17:15.014692 | 2021-03-27T10:16:18 | 2021-03-27T10:16:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,360 | hpp | torsor.hpp |
/// absolute version of an arithmetic value type
///
/// For a value type that denotes a ratio scale value (a value
/// for which addition yields a value on the same scale), the
/// torsor of that type is the corresponding interval scale
/// (anchored) type.
///
/// Examples of ratio scales and their corresponding anchored
/// interval scales are:
/// temperature difference - absolute temperature
/// distance vector - location
/// duration - moment in time
///
/// In a unit system like SI a torsor and its ratio type have the
/// same unit.
/// But just like adding two values that have different SI units
/// makes no sense, adding two torsor values makes no sense.
/// This torsor class template uses the type system to block
/// such meaningless operations at compile time.
/// It is designed to have zero runtime overhead.
///
///
template< typename T >
class torsor {
private:
T value;
public:
torsor():value( 0 ){}
template< typename U >
constexpr torsor operator+( const U & right ) const {
return torsor( value + right );
}
template< typename U >
constexpr torsor operator-( const U & right ) const {
return torsor( value - right );
}
template< typename U >
constexpr auto operator-( const torsor< U > & right ) const {
return value - right;
}
}; |
672714a07cebe24a8f6799fc4bff8db36d03fe71 | 51e8abe780348857f5023fe97810d6f1fdd5f690 | /plane3d/figures/pyramid.h | 302194feca21db63282c4c9e3a18dc3aa695725d | [] | no_license | rbaygildin/learn-graphics | 959a0182d7a81a7a3c33349e337aa5adea0ff32c | b6b88659b4028a6e3b5c05c68954503afd3e1c97 | refs/heads/master | 2021-09-15T03:08:58.803772 | 2018-05-24T19:00:44 | 2018-05-24T19:00:44 | 109,318,622 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | h | pyramid.h | //
// Created by Roman Yarnykh on 31.10.17.
//
#ifndef SEM5_ROBERTS_PYRAMID_H
#define SEM5_ROBERTS_PYRAMID_H
#include "figure.h"
#define PYRAMID_V1 0
#define PYRAMID_V2 1
#define PYRAMID_V3 2
#define PYRAMID_V4 3
#define PYRAMID_V 4
#define PYRAMID_E 6
#define PYRAMID_F 4
#define PYRAMID_P 3
#define PYRAMID_SIDE_RIGHT 1
#define PYRAMID_SIDE_LEFT 0
#define PYRAMID_SIDE_BACK 2
#define PYRAMID_BOTTOM 3
#define PYRAMID_P1 0
#define PYRAMID_P2 1
#define PYRAMID_P3 2
#define PYRAMID_P4 3
class Pyramid : public Figure{
public:
Pyramid(double edge, QGraphicsScene *scene);
protected:
arma::mat vertex() override;
arma::mat faces() override;
};
#endif //SEM5_ROBERTS_PYRAMID_H
|
68f4535ea47bb9b21959d8bb3799c0094d4a9be8 | 984bc4181baec6e5a4b05a657e666b0e9f89f3f3 | /src/tsqlobject.cpp | 2cfc72a34cf0bab8014370d2ac0c69ef353113b8 | [
"BSD-3-Clause"
] | permissive | treefrogframework/treefrog-framework | 0173245ff92162d2107af79861505981980d1eca | a1df97793e8cc628779378e5adae9af6987460c1 | refs/heads/master | 2023-08-22T03:57:58.891846 | 2023-05-18T14:00:42 | 2023-05-18T14:00:42 | 7,067,532 | 1,152 | 263 | BSD-3-Clause | 2023-08-08T20:25:03 | 2012-12-08T13:17:01 | C++ | UTF-8 | C++ | false | false | 18,725 | cpp | tsqlobject.cpp | /* Copyright (c) 2010-2019, AOYAMA Kazuharu
* All rights reserved.
*
* This software may be used and distributed according to the terms of
* the New BSD License, which is incorporated herein by reference.
*/
#include "tsqldatabase.h"
#include "tsqldriverextension.h"
#include <QCoreApplication>
#include <QMetaObject>
#include <QMetaType>
#include <QtSql>
#include <TSqlObject>
#include <TSqlQuery>
#include <TSystemGlobal>
const QByteArray LockRevision("lock_revision");
const QByteArray CreatedAt("created_at");
const QByteArray UpdatedAt("updated_at");
const QByteArray ModifiedAt("modified_at");
/*!
\class TSqlObject
\brief The TSqlObject class is the base class of ORM objects.
\sa TSqlORMapper
*/
/*!
Constructor.
*/
TSqlObject::TSqlObject() :
TModelObject(), QSqlRecord(), sqlError()
{
}
/*!
Copy constructor.
*/
TSqlObject::TSqlObject(const TSqlObject &other) :
TModelObject(), QSqlRecord(*static_cast<const QSqlRecord *>(&other)),
sqlError(other.sqlError)
{
}
/*!
Assignment operator.
*/
TSqlObject &TSqlObject::operator=(const TSqlObject &other)
{
QSqlRecord::operator=(*static_cast<const QSqlRecord *>(&other));
sqlError = other.sqlError;
return *this;
}
/*!
Returns the table name, which is generated from the class name.
*/
QString TSqlObject::tableName() const
{
static const QString ObjectStr = "Object";
QString tblName;
QString clsname(metaObject()->className());
if (Q_LIKELY(clsname.endsWith(ObjectStr))) {
clsname.resize(clsname.length() - ObjectStr.length());
}
tblName.reserve(clsname.length() * 1.2);
for (int i = 0; i < clsname.length(); ++i) {
if (i > 0 && clsname.at(i).isUpper()) {
tblName += QLatin1Char('_');
}
tblName += clsname.at(i).toLower();
}
return tblName;
}
/*!
\fn virtual int TSqlObject::primaryKeyIndex() const
Returns the position of the primary key field on the table.
This is a virtual function.
*/
/*!
\fn virtual int TSqlObject::autoValueIndex() const
Returns the position of the auto-generated value field on
the table. This is a virtual function.
*/
/*!
\fn virtual int TSqlObject::databaseId() const
Returns the database ID.
*/
/*!
\fn bool TSqlObject::isNull() const
Returns true if there is no database record associated with the
object; otherwise returns false.
*/
/*!
\fn bool TSqlObject::isNew() const
Returns true if it is a new object, otherwise returns false.
Equivalent to isNull().
*/
/*!
\fn QSqlError TSqlObject::error() const
Returns a QSqlError object which contains information about
the last error that occurred on the database.
*/
/*!
Sets the \a record. This function is for internal use only.
*/
void TSqlObject::setRecord(const QSqlRecord &record, const QSqlError &error)
{
QSqlRecord::operator=(record);
syncToObject();
sqlError = error;
}
/*!
Inserts new record into the database, based on the current properties
of the object.
*/
bool TSqlObject::create()
{
// Sets the values of 'created_at', 'updated_at' or 'modified_at' properties
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
const char *propName = metaObject()->property(i).name();
QByteArray prop = QByteArray(propName).toLower();
if (Tf::strcmp(prop, CreatedAt) || Tf::strcmp(prop, UpdatedAt) || Tf::strcmp(prop, ModifiedAt)) {
setProperty(propName, QDateTime::currentDateTime());
} else if (Tf::strcmp(prop, LockRevision)) {
// Sets the default value of 'revision' property
setProperty(propName, 1); // 1 : default value
} else {
// do nothing
}
}
syncToSqlRecord();
QString autoValName;
QSqlRecord record = *this;
if (autoValueIndex() >= 0) {
autoValName = field(autoValueIndex()).name();
record.remove(autoValueIndex()); // not insert the value of auto-value field
}
auto &database = getDatabase();
QString ins, values;
ins.reserve(511);
values.reserve(255);
ins += QLatin1String("INSERT INTO ");
ins += TSqlQuery::escapeIdentifier(tableName(), QSqlDriver::TableName, database.driver());
ins += QLatin1String(" (");
int autoidx = metaObject()->propertyOffset() + autoValueIndex();
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
auto metaProp = metaObject()->property(i);
const char *propName = metaProp.name();
QVariant val = QObject::property(propName);
if (i != autoidx) {
ins += TSqlQuery::escapeIdentifier(QLatin1String(propName), QSqlDriver::FieldName, database.driver());
ins += QLatin1Char(',');
#if QT_VERSION < 0x060000
values += TSqlQuery::formatValue(val, metaProp.type(), database);
#else
values += TSqlQuery::formatValue(val, metaProp.metaType(), database);
#endif
values += QLatin1Char(',');
}
}
ins.chop(1);
ins += QLatin1String(") VALUES (");
values.chop(1);
ins += values;
ins += QLatin1Char(')');
TSqlQuery query(database);
bool ret = query.exec(ins);
sqlError = query.lastError();
if (Q_LIKELY(ret)) {
// Gets the last inserted value of auto-value field
if (autoValueIndex() >= 0) {
QVariant lastid = query.lastInsertId();
#if QT_VERSION >= 0x050400
if (!lastid.isValid() && database.driver()->dbmsType() == QSqlDriver::PostgreSQL) {
#else
if (!lastid.isValid() && database.driverName().toUpper() == QLatin1String("QPSQL")) {
#endif
// For PostgreSQL without OIDS
ret = query.exec(QStringLiteral("SELECT LASTVAL()"));
sqlError = query.lastError();
if (Q_LIKELY(ret)) {
lastid = query.getNextValue();
}
}
if (lastid.isValid()) {
QObject::setProperty(autoValName.toLatin1().constData(), lastid);
QSqlRecord::setValue(autoValueIndex(), lastid);
}
}
}
return ret;
}
/*!
Updates the corresponding record with the properties of the object.
*/
bool TSqlObject::update()
{
if (isNew()) {
sqlError = QSqlError(QLatin1String("No record to update"),
QString(), QSqlError::UnknownError);
tWarn("Unable to update the '%s' object. Create it before!", metaObject()->className());
return false;
}
auto &database = getDatabase();
QString where;
where.reserve(255);
where.append(QLatin1String(" WHERE "));
// Updates the value of 'updated_at' or 'modified_at' property
bool updflag = false;
int revIndex = -1;
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
const char *propName = metaObject()->property(i).name();
QByteArray prop = QByteArray(propName).toLower();
if (!updflag && (Tf::strcmp(prop, UpdatedAt) || Tf::strcmp(prop, ModifiedAt))) {
setProperty(propName, QDateTime::currentDateTime());
updflag = true;
} else if (revIndex < 0 && Tf::strcmp(prop, LockRevision)) {
bool ok;
int oldRevision = property(propName).toInt(&ok);
if (!ok || oldRevision <= 0) {
sqlError = QSqlError(QLatin1String("Unable to convert the 'revision' property to an int"),
QString(), QSqlError::UnknownError);
tError("Unable to convert the 'revision' property to an int, %s", qUtf8Printable(objectName()));
return false;
}
setProperty(propName, oldRevision + 1);
revIndex = i;
where.append(QLatin1String(propName));
#if QT_VERSION < 0x060000
constexpr auto metaType = QVariant::Int;
#else
static const QMetaType metaType(QMetaType::Int);
#endif
where.append(QLatin1Char('=')).append(TSqlQuery::formatValue(oldRevision, metaType, database));
where.append(QLatin1String(" AND "));
} else {
// continue
}
}
QString upd; // UPDATE Statement
upd.reserve(512);
upd.append(QLatin1String("UPDATE "));
upd.append(TSqlQuery::escapeIdentifier(tableName(), QSqlDriver::TableName, database.driver()));
upd.append(QLatin1String(" SET "));
int pkidx = metaObject()->propertyOffset() + primaryKeyIndex();
QMetaProperty metaProp = metaObject()->property(pkidx);
const char *pkName = metaProp.name();
if (primaryKeyIndex() < 0 || !pkName) {
QString msg = QString("Primary key not found for table ") + tableName() + QLatin1String(". Create a primary key!");
sqlError = QSqlError(msg, QString(), QSqlError::StatementError);
tError("%s", qUtf8Printable(msg));
return false;
}
#if QT_VERSION < 0x060000
auto pkType = metaProp.type();
#else
auto pkType = metaProp.metaType();
#endif
QVariant origpkval = value(pkName);
where.append(QLatin1String(pkName));
where.append(QLatin1Char('=')).append(TSqlQuery::formatValue(origpkval, pkType, database));
// Restore the value of primary key
QObject::setProperty(pkName, origpkval);
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
metaProp = metaObject()->property(i);
const char *propName = metaProp.name();
QVariant newval = QObject::property(propName);
QVariant recval = QSqlRecord::value(QLatin1String(propName));
if (i != pkidx && recval.isValid() && recval != newval) {
upd.append(TSqlQuery::escapeIdentifier(QLatin1String(propName), QSqlDriver::FieldName, database.driver()));
upd.append(QLatin1Char('='));
#if QT_VERSION < 0x060000
upd.append(TSqlQuery::formatValue(newval, metaProp.type(), database));
#else
upd.append(TSqlQuery::formatValue(newval, metaProp.metaType(), database));
#endif
upd.append(QLatin1Char(','));
}
}
if (!upd.endsWith(QLatin1Char(','))) {
tSystemDebug("SQL UPDATE: Same values as that of the record. No need to update.");
return true;
}
upd.chop(1);
syncToSqlRecord();
upd.append(where);
TSqlQuery query(database);
bool ret = query.exec(upd);
sqlError = query.lastError();
if (ret) {
// Optimistic lock check
if (revIndex >= 0 && query.numRowsAffected() != 1) {
QString msg = QString("Row was updated or deleted from table ") + tableName() + QLatin1String(" by another transaction");
sqlError = QSqlError(msg, QString(), QSqlError::UnknownError);
throw SqlException(msg, __FILE__, __LINE__);
}
}
return ret;
}
/*!
Depending on whether condition matches, inserts new record or updates
the corresponding record with the properties of the object. If possible,
invokes UPSERT in relational database.
*/
bool TSqlObject::save()
{
auto &sqldb = getDatabase();
auto &db = TSqlDatabase::database(sqldb.connectionName());
QString lockrev;
if (!db.isUpsertSupported() || !db.isUpsertEnabled()) {
return (isNew()) ? create() : update();
}
// Sets the values of 'created_at', 'updated_at' or 'modified_at' properties
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
const char *propName = metaObject()->property(i).name();
QByteArray prop = QByteArray(propName).toLower();
if (Tf::strcmp(prop, CreatedAt) || Tf::strcmp(prop, UpdatedAt) || Tf::strcmp(prop, ModifiedAt)) {
setProperty(propName, QDateTime::currentDateTime());
} else if (Tf::strcmp(prop, LockRevision)) {
// Sets the default value of 'revision' property
setProperty(propName, 1); // 1 : default value
lockrev = LockRevision;
} else {
// do nothing
}
}
syncToSqlRecord();
QSqlRecord recordToInsert = *this;
QSqlRecord recordToUpdate = *this;
QList<int> removeFields;
QString autoValName;
if (autoValueIndex() >= 0 && autoValueIndex() != primaryKeyIndex()) {
autoValName = field(autoValueIndex()).name();
recordToInsert.remove(autoValueIndex()); // not insert the value of auto-value field
}
int idxtmp;
if ((idxtmp = recordToUpdate.indexOf(CreatedAt)) >= 0) {
recordToUpdate.remove(idxtmp);
}
if ((idxtmp = recordToUpdate.indexOf(LockRevision)) >= 0) {
recordToUpdate.remove(idxtmp);
}
QString upst = db.driverExtension()->upsertStatement(tableName(), recordToInsert, recordToUpdate, field(primaryKeyIndex()).name(), lockrev);
if (upst.isEmpty()) {
// In case unable to generate upsert statement
return (isNew()) ? create() : update();
}
TSqlQuery query(sqldb);
bool ret = query.exec(upst);
sqlError = query.lastError();
if (ret) {
// Gets the last inserted value of auto-value field
if (autoValueIndex() >= 0) {
QVariant lastid = query.lastInsertId();
if (lastid.isValid()) {
QObject::setProperty(autoValName.toLatin1().constData(), lastid);
QSqlRecord::setValue(autoValueIndex(), lastid);
}
}
}
return ret;
}
/*!
Deletes the record with this primary key from the database.
*/
bool TSqlObject::remove()
{
if (isNew()) {
sqlError = QSqlError(QLatin1String("No record to remove"),
QString(), QSqlError::UnknownError);
tWarn("Unable to remove the '%s' object. Create it before!", metaObject()->className());
return false;
}
QSqlDatabase &database = getDatabase();
QString del = database.driver()->sqlStatement(QSqlDriver::DeleteStatement, tableName(), *static_cast<QSqlRecord *>(this), false);
if (del.isEmpty()) {
sqlError = QSqlError(QLatin1String("Unable to delete row"),
QString(), QSqlError::StatementError);
return false;
}
del.append(QLatin1String(" WHERE "));
int revIndex = -1;
for (int i = metaObject()->propertyOffset(); i < metaObject()->propertyCount(); ++i) {
const char *propName = metaObject()->property(i).name();
QByteArray prop = QByteArray(propName).toLower();
if (Tf::strcmp(prop, LockRevision)) {
bool ok;
int revision = property(propName).toInt(&ok);
if (!ok || revision <= 0) {
sqlError = QSqlError(QLatin1String("Unable to convert the 'revision' property to an int"),
QString(), QSqlError::UnknownError);
tError("Unable to convert the 'revision' property to an int, %s", qUtf8Printable(objectName()));
return false;
}
del.append(QLatin1String(propName));
#if QT_VERSION < 0x060000
constexpr auto intid = QVariant::Int;
#else
static const QMetaType intid(QMetaType::Int);
#endif
del.append(QLatin1Char('=')).append(TSqlQuery::formatValue(revision, intid, database));
del.append(QLatin1String(" AND "));
revIndex = i;
break;
}
}
auto metaProp = metaObject()->property(metaObject()->propertyOffset() + primaryKeyIndex());
const char *pkName = metaProp.name();
if (primaryKeyIndex() < 0 || !pkName) {
QString msg = QString("Primary key not found for table ") + tableName() + QLatin1String(". Create a primary key!");
sqlError = QSqlError(msg, QString(), QSqlError::StatementError);
tError("%s", qUtf8Printable(msg));
return false;
}
del.append(QLatin1String(pkName));
#if QT_VERSION < 0x060000
auto metaType = metaProp.type();
#else
auto metaType = metaProp.metaType();
#endif
del.append(QLatin1Char('=')).append(TSqlQuery::formatValue(value(pkName), metaType, database));
TSqlQuery query(database);
bool ret = query.exec(del);
sqlError = query.lastError();
if (ret) {
// Optimistic lock check
if (query.numRowsAffected() != 1) {
if (revIndex >= 0) {
QString msg = QString("Row was updated or deleted from table ") + tableName() + QLatin1String(" by another transaction");
sqlError = QSqlError(msg, QString(), QSqlError::UnknownError);
throw SqlException(msg, __FILE__, __LINE__);
}
tWarn("Row was deleted by another transaction, %s", qUtf8Printable(tableName()));
}
clear();
}
return ret;
}
/*!
Reloads the values of the record onto the properties.
*/
bool TSqlObject::reload()
{
if (isEmpty()) {
return false;
}
syncToObject();
return true;
}
/*!
Returns true if the values of the properties differ with the record on the
database; otherwise returns false.
*/
bool TSqlObject::isModified() const
{
if (isNew())
return false;
for (int i = 0; i < QSqlRecord::count(); ++i) {
QString name = field(i).name();
int index = metaObject()->indexOfProperty(name.toLatin1().constData());
if (index >= 0) {
if (value(name) != property(name.toLatin1().constData())) {
return true;
}
}
}
return false;
}
/*!
Synchronizes the internal record data to the properties of the object.
This function is for internal use only.
*/
void TSqlObject::syncToObject()
{
int offset = metaObject()->propertyOffset();
for (int i = 0; i < QSqlRecord::count(); ++i) {
QString propertyName = field(i).name();
QByteArray name = propertyName.toLatin1();
int index = metaObject()->indexOfProperty(name.constData());
if (index >= offset) {
QObject::setProperty(name.constData(), value(propertyName));
}
}
}
/*!
Synchronizes the properties to the internal record data.
This function is for internal use only.
*/
void TSqlObject::syncToSqlRecord()
{
auto &db = getDatabase();
QSqlRecord::operator=(db.record(tableName()));
const QMetaObject *metaObj = metaObject();
for (int i = metaObj->propertyOffset(); i < metaObj->propertyCount(); ++i) {
const char *propName = metaObj->property(i).name();
int idx = indexOf(propName);
if (idx >= 0) {
QSqlRecord::setValue(idx, QObject::property(propName));
} else {
tWarn("invalid name: %s", propName);
}
}
}
QSqlDatabase &TSqlObject::getDatabase()
{
if (!_database.isValid()) {
_database = Tf::currentSqlDatabase(databaseId());
}
return _database;
}
|
15b16d96d46b5964f70cd5cca2f61c7383bd80a7 | 89a71d5d812c512f0ce38b95f65ac0ccfdfb7866 | /Ex_Files_C_PlusPlus_Templates/Exercise Files/Chap06/stablesort.cpp | b256a389b1ae3b2971fb7888b85eab9763e1b168 | [
"MIT"
] | permissive | gilson27/learning_experiments | 03db1e903662efbb635f465ff3bca1bbb7fd7855 | c329b1e0de8dd50afc70fb257540b569927156d1 | refs/heads/master | 2023-04-07T19:42:18.343118 | 2020-05-13T09:18:39 | 2020-05-13T09:18:39 | 225,115,257 | 0 | 0 | MIT | 2023-03-25T00:13:01 | 2019-12-01T06:12:41 | Python | UTF-8 | C++ | false | false | 927 | cpp | stablesort.cpp | // stablesort.cpp by Bill Weinman <http://bw.org/>
// 2018-10-01 for CppSTL
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
template <typename T>
bool mycomp(const T & lh, const T & rh) {
return int(lh) < int(rh);
}
template <typename T>
void disp_v(const T & v) {
if(!v.size()) return;
for(auto e : v) { cout << e << " "; }
cout << endl;
}
int main() {
// prime numbers < 100
vector<int> v1 = { 83, 53, 47, 23, 13, 59, 29, 41, 19, 71, 31, 67, 11, 2, 97, 7, 61, 73, 3, 79, 37, 43, 17, 5, 89 };
vector<double> v2 = { 3.07, 2.49, 3.73, 6.58, 3.3, 2.72, 3.44, 8.78, 9.23, 4.09, 4.4, 1.65, 4.92, 0.42, 4.87, 5.03, 3.27, 7.29, 8.4, 6.12 };
disp_v(v2);
vector<double> v3;
v3 = v2;
sort(v3.begin(), v3.end(), mycomp<double>);
disp_v(v3);
v3 = v2;
stable_sort(v3.begin(), v3.end(), mycomp<double>);
disp_v(v3);
return 0;
}
|
38df25489dc46457baa86b0423d545d54d3a0d5f | 1a3f297fc535af61bdb80e4fc7cc0df54764d353 | /include/Hitbox.h | ee15c2d706e3e9981e4c41d7358a79b5afa75af4 | [] | no_license | adriengivry/Platformer-Engine | 42af71936fe10ba3c5e94f3971aff13fcd345d7d | 7f7c83d480ab65d3607a273cd1f21144759f72be | refs/heads/master | 2021-07-24T20:10:00.307969 | 2017-11-05T16:19:31 | 2017-11-05T16:19:31 | 109,282,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 844 | h | Hitbox.h | #pragma once
#include "cinder/app/App.h"
#include "Component.h"
class Hitbox : public Component
{
public:
explicit Hitbox(const float p_x = 0, const float p_y = 0, const float p_sizeX = 0, const float p_sizeY = 0);
~Hitbox() {}
glm::vec2& GetPosition() { return m_position; }
glm::vec2 GetPosition() const { return m_position; }
glm::vec2& GetSize() { return m_size; }
glm::vec2 GetSize() const { return m_size; }
cinder::Rectf GetRectf();
void SetPosition(const float p_x, const float p_y);
void SetPosition(const glm::vec2& p_position) { m_position = p_position; }
void SetSize(const float p_sizeX, const float p_sizeY);
void SetSize(const glm::vec2& p_size) { m_size = p_size; }
bool Intersect(const glm::vec2& p_point);
bool Intersect(const Hitbox& p_otherHitbox);
private:
glm::vec2 m_position;
glm::vec2 m_size;
}; |
4c7ae21f4c32043df33419754ce7b9b07a109254 | 68a1b52b579629a8ca9daa5c61bbbdba69aa96a4 | /RNG.cpp | 1217db5eebedf3ce4d0f12659d44a053700227a5 | [] | no_license | minhnq410/DSA_Lab | e9031f74c8d233486b455563e4e10c4e1288f107 | 38ba7e8532f4730a325e887af7a720f4f2590c82 | refs/heads/master | 2020-03-29T13:53:11.412386 | 2018-11-13T09:22:09 | 2018-11-13T09:22:09 | 149,987,065 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 415 | cpp | RNG.cpp | #include <fstream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main()
{
srand(time(NULL));
int n = rand() % 100 + 1;
int array [n];
for (int i = 0; i < n; i++)
{
array[i] = rand() % 1000 + 1;
}
ofstream fileOut ("EXX2.IN.TXT");
fileOut << n << " ";
for (int i = 0; i < n; i ++)
{
fileOut << array[i] << " ";
}
fileOut.close();
}
|
23fcc7f3a9b961947267d3cddaa104101324e076 | 71214e50d567967dcbb5721505fabbf076243023 | /includes/edge.h | e1de45b94fe30152f1e4948430df9e1f4b58462e | [] | no_license | yebra06/prims-algorithm | 20661436697a08c1a2c500850ba12bb7fbe79399 | 4e5101bc9853f61cf8db7af300803074a23c2aaf | refs/heads/master | 2021-01-01T04:13:01.146630 | 2017-05-10T02:52:24 | 2017-05-10T02:52:24 | 56,794,381 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 235 | h | edge.h | #ifndef EDGE_H
#define EDGE_H
class Edge {
public:
/// Member variables.
int index;
int end1;
int end2;
int weight;
/// Member methods.
Edge(int index = 0);
void edge_set(int end1, int end2, int weight);
};
#endif
|
4d94178da2d35fc910e3fa73220fedd551063a10 | 4e71065fa9f81d3ada64a4807fdf288be0fefd33 | /weex_core/Source/include/JavaScriptCore/profiler/ProfilerOrigin.h | ded74502ffd33bc1cc201b85c96e477318ddb7b5 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | acton393/incubator-weex | c2d9fc7f80eed5d95b054ab6f1af42f8ef9cd47a | c7dd6c76fe726a4413b08d3c895c91d521d01755 | refs/heads/master | 2021-03-24T12:15:30.348499 | 2019-01-07T03:19:18 | 2019-01-07T03:19:18 | 83,516,877 | 2 | 2 | Apache-2.0 | 2018-04-02T09:19:33 | 2017-03-01T05:48:09 | JavaScript | UTF-8 | C++ | false | false | 3,103 | h | ProfilerOrigin.h | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#pragma once
#include "CodeBlockHash.h"
#include "JSCJSValue.h"
#include <wtf/HashMap.h>
#include <wtf/PrintStream.h>
namespace JSC {
class CodeBlock;
namespace Profiler {
class Bytecodes;
class Database;
class Origin {
public:
Origin()
: m_bytecodeIndex(std::numeric_limits<unsigned>::max())
{
}
Origin(WTF::HashTableDeletedValueType)
: m_bytecodeIndex(std::numeric_limits<unsigned>::max() - 1)
{
}
Origin(Bytecodes* bytecodes, unsigned bytecodeIndex)
: m_bytecodes(bytecodes)
, m_bytecodeIndex(bytecodeIndex)
{
ASSERT(m_bytecodeIndex < std::numeric_limits<unsigned>::max() - 1);
}
Origin(Database&, CodeBlock*, unsigned bytecodeIndex);
bool operator!() const { return m_bytecodeIndex == std::numeric_limits<unsigned>::max(); }
Bytecodes* bytecodes() const { return m_bytecodes; }
unsigned bytecodeIndex() const { return m_bytecodeIndex; }
bool operator==(const Origin&) const;
bool operator!=(const Origin& other) const { return !(*this == other); }
unsigned hash() const;
bool isHashTableDeletedValue() const;
void dump(PrintStream&) const;
JSValue toJS(ExecState*) const;
private:
Bytecodes* m_bytecodes;
unsigned m_bytecodeIndex;
};
inline bool Origin::operator==(const Origin& other) const
{
return m_bytecodes == other.m_bytecodes
&& m_bytecodeIndex == other.m_bytecodeIndex;
}
inline unsigned Origin::hash() const
{
return WTF::PtrHash<Bytecodes*>::hash(m_bytecodes) + m_bytecodeIndex;
}
inline bool Origin::isHashTableDeletedValue() const
{
return m_bytecodeIndex == std::numeric_limits<unsigned>::max();
}
struct OriginHash {
static unsigned hash(const Origin& key) { return key.hash(); }
static bool equal(const Origin& a, const Origin& b) { return a == b; }
static const bool safeToCompareToEmptyOrDeleted = true;
};
} } // namespace JSC::Profiler
namespace WTF {
template<typename T> struct DefaultHash;
template<> struct DefaultHash<JSC::Profiler::Origin> {
typedef JSC::Profiler::OriginHash Hash;
};
template<typename T> struct HashTraits;
template<> struct HashTraits<JSC::Profiler::Origin> : SimpleClassHashTraits<JSC::Profiler::Origin> { };
} // namespace WTF
|
efaf5b6a30ec460820980a7c5b34d66b866d3396 | b4078bcdd061deab7bdc7fc085e8dbc10105866b | /ReverseList/reverse_double_list.cpp | b4d46312379b30b91342bd2394091e46178b0876 | [] | no_license | xmpace/AlgorithmPractice | 5a8cc09e488b38dc6bcb8812af4a5c822772ac86 | 4a1077267fb8871c93e508d69225c14562c852a0 | refs/heads/master | 2021-01-23T12:17:36.332167 | 2013-08-30T08:51:48 | 2013-08-30T08:51:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,540 | cpp | reverse_double_list.cpp | #include <iostream>
using namespace std;
struct double_list_node {
int key;
struct double_list_node *next;
struct double_list_node *prev;
};
static struct double_list_node *double_list_head = NULL;
void add_to_double_list(struct double_list_node *node)
{
if (!double_list_head) {
node->next = node->prev = NULL;
double_list_head = node;
return;
}
node->next = double_list_head;
node->prev = NULL;
double_list_head->prev = node;
double_list_head = node;
}
void destroy()
{
struct double_list_node *p = NULL;
while (double_list_head) {
p = double_list_head;
double_list_head = double_list_head->next;
if (double_list_head)
double_list_head->prev = NULL;
delete p;
}
}
void reverse_double_list()
{
struct double_list_node *first = NULL;
struct double_list_node *second = double_list_head;
struct double_list_node *third = double_list_head;
while (third) {
third = third->next;
second->next = first;
second->prev = third;
first = second;
second = third;
}
double_list_head = first;
}
void print_double_list()
{
struct double_list_node *p = double_list_head;
while (p) {
cout << p->key << " ";
p = p->next;
}
}
int main(int argc, char **argv)
{
struct double_list_node *p;
for (int i = 0; i < 31; i++) {
p = new struct double_list_node;
p->key = i;
add_to_double_list(p);
}
print_double_list();
cout << endl;
reverse_double_list();
print_double_list();
cout << endl;
destroy();
return 0;
}
|
211497967f59d9d780f53cff191967ce3bb82c8d | 1ef5a27c9326065db448dd539810e900cae9460d | /Classes/Round013_04.h | 76195bbc8f234a52cd16cf928938b666a4cedb19 | [] | no_license | langtuandroid/SuperBaby | c4e3f7faaa82d40c8da0f518b71251a8ff466c2f | 957a5202ba7d1078bdcfb6b0cd6b73a966893efe | refs/heads/master | 2021-01-06T20:43:54.083245 | 2017-06-18T14:19:00 | 2017-06-18T14:19:00 | 99,549,410 | 0 | 1 | null | 2017-08-07T07:25:29 | 2017-08-07T07:25:29 | null | UTF-8 | C++ | false | false | 1,859 | h | Round013_04.h | //
// Round013_04.h
// AbelLLExplorer
//
// Created by Administrator on 2015/03/27.
//
//
#ifndef __AbelLLExplorer__Round013_04__
#define __AbelLLExplorer__Round013_04__
#include "RoundBase.h"
USING_NS_CC;
class Actor;
class SocialShareNode;
class StageScene;
class Round013_04 : public RoundBase
{
public:
Round013_04();
virtual ~Round013_04();
public:
bool initWithRoundIndex(const int, StageScene*, const Vec2& pos = Vec2::ZERO);
static Round013_04* createWithRoundIndex(const int, StageScene*, const Vec2& pos = Vec2::ZERO);
public:
void cleanUp();
virtual void onEnterRound();
virtual void celebrate(const float);
virtual void onPreLoadedRes();
/* 开启触摸 */
virtual void openTouch();
/* 回合结束回调 */
virtual void endRound();
/* 处理 npc 收集 */
virtual void processNpcCollect();
//回合结束分享调用
void roundEndShareCallBack(bool isShare);
//分享回调
void shareCallback();
//渐变变黑退出
void fadeOutLayer(float);
private:
/* 缩放完成回调 */
void scaleCompleteCB();
/* 答对回调 */
void answerCorrectCB();
/* */
void moveCB();
private:
Actor* m_pRobotActor[5]; // 机器人 actor
Vec2 m_originalPoints[5];
Vec2 m_touchBeganPoint; // 拖放开始位置
Sprite* m_targetSp[3];
bool m_targetSelected[3] = {false, false, false};
Sprite* m_doorSp = nullptr;
Sprite* m_OverSp = nullptr;
unsigned int m_numberIndex = 0;
unsigned int m_correctNumber = 0; // 答对的数量
int m_effectId = 0; // 音效play的id
GLubyte m_opacity = 0;
LayerColor* m_LayerColor = nullptr;
};
#endif /* defined(__AbelLLExplorer__Round013_04__) */
|
5da9e2d768dbed4204a098dccdf52e96b15c9039 | c0ce9d59cfe3b2e4ae55e16534272b2d8c4fb0ed | /server/Program.cpp | 23eb3897cabb86dd1a2ad517fb0f5f489d4449b0 | [] | no_license | TheNytangel/Networking | 4c6a595e97326ec5d88433309fe28179ec2d02c9 | 2211ee1dae933774138c851089b266f72600ed30 | refs/heads/master | 2021-01-20T02:38:19.667889 | 2017-04-26T04:04:14 | 2017-04-26T04:04:14 | 89,436,336 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,234 | cpp | Program.cpp | #include "Program.h"
// Need to initialize the acceptor before the rest of the class actually runs. Run on port 420
CProgram::CProgram() : acceptor(service, asio::ip::tcp::endpoint(asio::ip::tcp::v4(), 420))
{
}
CProgram::~CProgram()
{
}
void CProgram::initialize()
{
// Make space for 4 threads in the vector so that it doesn't need to resize 4 times when making new threads
threads.reserve(4);
// Add the 4 threads to the vector
threads.push_back(make_shared<thread>(&CProgram::acceptorLoop, this));
threads.push_back(make_shared<thread>(&CProgram::requestLoop, this));
threads.push_back(make_shared<thread>(&CProgram::responseLoop, this));
threads.push_back(make_shared<thread>(&CProgram::serverCommandsLoop, this));
// Join each thread
for (vector<shared_ptr<thread>>::iterator it = threads.begin(); it != threads.end(); ++it)
{
(*it)->join();
}
}
void CProgram::update()
{
}
void CProgram::quit()
{
cout << endl;
system("pause");
}
bool CProgram::isRunning()
{
return running;
}
void CProgram::acceptorLoop()
{
cout << "Waiting for clients..." << endl;
while (running)
{
// Make a new client socket
shared_ptr<asio::ip::tcp::socket> clientSocket = make_shared<asio::ip::tcp::socket>(service);
// When running gets switched to false, the thread keeps waiting
// for a new client and will only exit the program once it gets a new client.
// It's a feature, not a bug.
// Wait for the socket to accept a connection
acceptor.accept(*clientSocket);
// Log that there was a connection
cout << "New client joined! There are now ";
// Add the client socket to the list of clients
clientListMutex.lock();
clientList.emplace_back(clientSocket);
clientListMutex.unlock();
cout << clientList.size() << " clients connected" << endl;
}
}
void CProgram::requestLoop()
{
while (running)
{
// Sleep for a couple milliseconds
this_thread::sleep_for(chrono::milliseconds(sleepLengths::big));
if (clientList.empty())
{
continue;
}
// Lock the client list
clientListMutex.lock();
// Loop through the list of client sockets
for (list<shared_ptr<asio::ip::tcp::socket>>::iterator clientSocket = clientList.begin(); clientSocket != clientList.end(); ++clientSocket)
{
// Check if the client socket is available
if (!(*clientSocket)->available())
{
continue;
}
shared_ptr<string> msg = make_shared<string>("");
// Make a vector of characters to hold what the client sent since the buffer function can't take a string
vector<char> bufferVector(BUFFER_SIZE);
// Read from the client socket
int bytesInBuffer = (*clientSocket)->read_some(asio::buffer(bufferVector));
{
int i = 0;
// Convert the vector of characters into the message string
for (vector<char>::const_iterator it = bufferVector.begin(); it != bufferVector.end() && i < bytesInBuffer; ++it, ++i)
{
*msg += *it;
}
}
// Check if the client message contained "exit"
if (msg->find("exit") != string::npos)
{
// Disconnect the client
disconnectClient(*clientSocket);
// Need to break instead of continue because the list of clients is now 1 shorter and if we continue we will try to go out of range of the list
break;
}
// Map the client to the message they sent and add the map to the message queue
shared_ptr<map<shared_ptr<asio::ip::tcp::socket>, shared_ptr<string>>> clientMap = make_shared<map<shared_ptr<asio::ip::tcp::socket>, shared_ptr<string>>>();
clientMap->insert(pair<shared_ptr<asio::ip::tcp::socket>, shared_ptr<string>>(*clientSocket, msg));
messageQueueMutex.lock();
messageQueue.push(clientMap);
messageQueueMutex.unlock();
cout << "ChatLog: " << *msg << endl;
}
// Unlock the client list
clientListMutex.unlock();
}
}
void CProgram::responseLoop()
{
while (running)
{
// Sleep for a couple milliseconds
this_thread::sleep_for(chrono::milliseconds(sleepLengths::big));
if (messageQueue.empty())
{
continue;
}
messageQueueMutex.lock();
// Get the next message in the queue
shared_ptr<map<shared_ptr<asio::ip::tcp::socket>, shared_ptr<string>>> message = messageQueue.front();
// Remove the message from the queue
messageQueue.pop();
messageQueueMutex.unlock();
clientListMutex.lock();
// Loop through each of the clients and send each one the message
for (list<shared_ptr<asio::ip::tcp::socket>>::const_iterator clientSocket = clientList.begin(); clientSocket != clientList.end(); ++clientSocket)
{
(*clientSocket)->write_some(asio::buffer(*(message->begin()->second)));
}
clientListMutex.unlock();
}
}
void CProgram::serverCommandsLoop()
{
while (running)
{
// Get the command from the command line
string command;
getline(cin, command);
if (command == "stop")
{
// Lock the client list and loop through them
clientListMutex.lock();
for (list<shared_ptr<asio::ip::tcp::socket>>::iterator clientSocket = clientList.begin(); clientSocket != clientList.end(); ++clientSocket)
{
// Tell the clients the server is shutting down
(*clientSocket)->write_some(asio::buffer("Server is shutting down"));
// Shutdown the socket to the client
(*clientSocket)->shutdown(asio::ip::tcp::socket::shutdown_both);
// Close the socket
(*clientSocket)->close();
}
// Clear the client list otherwise the other threads still try to loop through it and it throws an exception
clientList.clear();
clientListMutex.unlock();
// Might not be needed but just to make sure the message gets sent to every client before the program quits
this_thread::sleep_for(chrono::milliseconds(500));
running = false;
}
}
}
void CProgram::disconnectClient(shared_ptr<asio::ip::tcp::socket> clientSocket)
{
// Find the client in the client list
list<shared_ptr<asio::ip::tcp::socket>>::iterator client = find(clientList.begin(), clientList.end(), clientSocket);
// Shutdown the socket to the client
clientSocket->shutdown(asio::ip::tcp::socket::shutdown_both);
// Close the socket
clientSocket->close();
// Remove the client from the list
clientList.erase(client);
cout << "Client diconnected! There are now " << clientList.size() << " clients connected" << endl;
}
|
63be03a4092206ecd74755339bb58539920445f0 | ab0e971833988ece49ea9c6be17826779abec43a | /introduction.cpp | f0594b79a297822943fd3b448a3f19cf2ac28d53 | [] | no_license | yogendrarp/concurrent-cpp | da7d9250cfd49d734e61ab115e5026b46093303a | 7e821fe70a0a2075c0a988d6fb4d14f03a462bbd | refs/heads/main | 2023-04-24T04:14:34.949355 | 2021-05-13T04:30:00 | 2021-05-13T04:30:00 | 365,938,918 | 0 | 0 | null | 2021-05-13T04:30:01 | 2021-05-10T06:22:46 | C++ | UTF-8 | C++ | false | false | 554 | cpp | introduction.cpp | #include<iostream>
#include<thread>
using namespace std;
void function_1(){
cout<<"Beauty of thing is joy forever"<<endl;
}
int main(){
thread t1(function_1);
//t1.join(); //main thread waits for t1 to finish
t1.detach(); // t1 is free on its own and main thread may exit before the exc of child
// you can only join or detatch once. thread::join failed: Invalid argument
//t1.join();
//alternatively you can check if the thread is joinable and then do join, which wont crash, but not joins.
cout<<"Im out"<<endl;
}
|
ee30dfc8f6c6ae02c91e6f245b58acda49462698 | a0f45dac9048e2fcb1297c73c4f14811e91d2fdb | /src/Data/RIDS/FibreList.cc | 14b4487f05857fce9ffe02b4e3d994d8b7246ba2 | [] | no_license | snoplus/snogoggles | ef6bd1078d5327d8263362e0cc6a04fac24243b6 | ae6051ba5b0fe9caf0bd569d4f3577b28afa421b | refs/heads/master | 2016-09-05T21:19:38.710515 | 2013-06-13T15:10:16 | 2013-06-13T15:10:16 | 3,463,699 | 4 | 1 | null | 2013-03-29T23:44:57 | 2012-02-16T20:34:27 | C++ | UTF-8 | C++ | false | false | 2,678 | cc | FibreList.cc | #include <RAT/DB.hh>
#include <RAT/Log.hh>
#include <string>
using namespace std;
#include <Viewer/RIDS/FibreList.hh>
using namespace Viewer::RIDS;
void
FibreList::Initialise( int /*runID*/ ) /// < Run ID defines which pmt info table to use
{
RAT::Log::Init("/dev/null");
RAT::DB* db = RAT::DB::Get();
assert(db);
string data = getenv("GLG4DATA");
assert(data != "");
db->Load(data + "/SMELLIE.ratdb");
db->Load(data + "/AMELLIE.ratdb");
db->Load(data + "/TELLIE.ratdb");
RAT::DBLinkPtr amellieInfo = db->GetLink("LEDARRAY", "AMELLIE");
RAT::DBLinkPtr smellieInfo = db->GetLink("LEDARRAY", "SMELLIE");
RAT::DBLinkPtr tellieInfo = db->GetLink("LEDARRAY", "TELLIE");
assert(amellieInfo);
assert(smellieInfo);
assert(tellieInfo);
{
vector<double> xPos = amellieInfo->GetDArray("x");
vector<double> yPos = amellieInfo->GetDArray("y");
vector<double> zPos = amellieInfo->GetDArray("z");
vector<double> uDir = amellieInfo->GetDArray("dir_x");
vector<double> vDir = amellieInfo->GetDArray("dir_y");
vector<double> wDir = amellieInfo->GetDArray("dir_z");
for( size_t iPos = 0; iPos < xPos.size(); iPos++ )
{
fPositions.push_back( sf::Vector3<double>( xPos[iPos], yPos[iPos], zPos[iPos] ) );
fDirections.push_back( sf::Vector3<double>( uDir[iPos], vDir[iPos], wDir[iPos] ) );
fTypes.push_back(eAMELLIE);
}
}
{
vector<double> xPos = smellieInfo->GetDArray("x");
vector<double> yPos = smellieInfo->GetDArray("y");
vector<double> zPos = smellieInfo->GetDArray("z");
vector<double> uDir = smellieInfo->GetDArray("dir_x");
vector<double> vDir = smellieInfo->GetDArray("dir_y");
vector<double> wDir = smellieInfo->GetDArray("dir_z");
for( size_t iPos = 0; iPos < xPos.size(); iPos++ )
{
fPositions.push_back( sf::Vector3<double>( xPos[iPos], yPos[iPos], zPos[iPos] ) );
fDirections.push_back( sf::Vector3<double>( uDir[iPos], vDir[iPos], wDir[iPos] ) );
fTypes.push_back(eSMELLIE);
}
}
{
vector<double> xPos = tellieInfo->GetDArray("x");
vector<double> yPos = tellieInfo->GetDArray("y");
vector<double> zPos = tellieInfo->GetDArray("z");
vector<double> uDir = tellieInfo->GetDArray("dir_x");
vector<double> vDir = tellieInfo->GetDArray("dir_y");
vector<double> wDir = tellieInfo->GetDArray("dir_z");
for( size_t iPos = 0; iPos < xPos.size(); iPos++ )
{
fPositions.push_back( sf::Vector3<double>( xPos[iPos], yPos[iPos], zPos[iPos] ) );
fDirections.push_back( sf::Vector3<double>( uDir[iPos], vDir[iPos], wDir[iPos] ) );
fTypes.push_back(eTELLIE);
}
}
}
|
d946a02f2d07c5bcdcc08cf55730f75ce759b060 | 5722320a61864ceef8e02d79dea6fe568117b8e6 | /include/bbn/electrons.h | 4fe45f0f3bbbe0ad2c0814c04e7eb528fd214abd | [] | no_license | GraCosPA/BBN | 390dc463bead631e51cb07b0f4d91f89ece3216c | 39a7c94be79ad8008a9bf95beeb69bd210d7d7ea | refs/heads/master | 2022-02-23T17:04:31.503963 | 2016-03-14T14:29:15 | 2016-03-14T14:29:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,872 | h | electrons.h | #ifndef __BBN_ELECTRONS_H__
#define __BBN_ELECTRONS_H__
#include <iostream>
#include <fstream>
#include <sstream>
#include "bbn/common.h"
#include "bbn/structures.h"
double Analytical_form_inverse_compton(double s, Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters);
double rate_electron_inverse_compton(double z,
double E_e,
Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters,
Structure_Output_Options * pt_Output_Options);
double dsigma_inverse_compton_electron_spectrum_v3(double z,
double E_e,
double E_e_prime,
Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters,
Structure_Output_Options * pt_Output_Options);
double gamma_inverse_compton_analytical(double gamma_e,
double E_gamma,
double z,
int N,
Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters,
Structure_Output_Options * pt_Output_Options);
double gamma_inverse_compton_analytical_v2(double gamma_e, double E_gamma, double z,Structure_Output_Options * pt_Output_Options);
double dsigma_inverse_compton_electron_spectrum(double z,
double gamma_e,
double gamma_prime,
Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters,
Structure_Output_Options * pt_Output_Options);
double dsigma_inverse_compton_electron_spectrum_v2(double z,
double gamma_e,
double gamma_prime,
Structure_Spectrum_and_Precision_Parameters * pt_Spectrum_and_Precision_Parameters,
Structure_Output_Options * pt_Output_Options);
#endif // __BBN_ELECTRONS_H__
|
67be72210a472ff9cecf3723509897d6d90f8618 | e7b17850c0826f8ee69cbd5354a0e4873ad8a1be | /list.cpp | 7e5cc69867f99e27085ab6fcec90efbc39488baa | [] | no_license | subhashis002/CPP | a717ef9c5d5d9b6f701a21994ad6e33b1dfcc47a | c6abb8ce55ede1ba191ce47a6b9aa4237726def0 | refs/heads/master | 2020-11-28T10:37:53.029311 | 2019-12-23T19:19:02 | 2019-12-23T19:19:02 | 229,786,644 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 521 | cpp | list.cpp | #include<iostream>
#include<list>
#include<vector>
#include<iterator>
using namespace std;
void showList(list<int> g){
list<int>::iterator it;
for(it = g.begin(); it != g.end(); ++it){
cout<<*it<<" ";
}
cout<<endl;
}
int main(){
list<int> gqlist1, gqlist2;
for(int i=0 ;i<10; ++i){
gqlist1.push_back(i*2);
gqlist2.push_front(i*3);
}
cout<<"\nList1 gqlist1 is :"<<endl;
showList(gqlist1);
cout<<"\nList1 gqlist1 is :"<<endl;
showList(gqlist1);
}
|
6016dba3ca05317154e96cd61d9bcd1af9c8bdd5 | 4c143777c2a974e8bf11cab395878bb6048ba73e | /mexfun/BCD_Zpart.cpp | 00cd3d86cd123c0454a1179948bdf7ce1fb4849e | [] | no_license | SCUT-OptGroup/Proximal_AM | 7da4091224d47c6f11ce9a9e0afae35b021467d7 | cc1e1652c4ebf52aa2782dfde720c0cb91eb97d7 | refs/heads/main | 2021-07-04T13:57:53.748412 | 2020-10-29T05:43:53 | 2020-10-29T05:43:53 | 189,818,059 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,641 | cpp | BCD_Zpart.cpp | #include "mex.h"
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
double *Z, *ylambda, *n, *sig_alpha, *alpha, *beta, *WZ;
double *temp_Zk;
int m, nn, N;
int sum1 = 0;
mxAssert(nlhs == 1 && nrhs == 7, "Error: number of variables");
m = mxGetM(prhs[0]);
nn = mxGetN(prhs[0]);
N = mxGetN(prhs[1]);
plhs[0] = mxCreateDoubleMatrix(m, nn, mxREAL);
temp_Zk = (double*)mxGetData(plhs[0]);
Z = (double*)mxGetData(prhs[0]);
ylambda = (double*)mxGetData(prhs[1]);
n = (double*)mxGetData(prhs[2]);
sig_alpha = (double*)mxGetData(prhs[3]);
alpha = (double*)mxGetData(prhs[4]);
beta = (double*)mxGetData(prhs[5]);
WZ = (double*)mxGetData(prhs[6]);
double *sum3 = new double[m*N];
for (int s = 1; s <= m*N; s++)
{
sum3[s - 1] = 0;
}
for (int s = 1; s <= N; s++)
{
for (int j = 1; j <= n[s - 1]; j++)
{
for (int i = 1; i <= m; i++)
{
sum3[(s - 1)*m + i - 1] = sum3[(s - 1)*m + i - 1] + Z[(sum1 + j - 1)*m + i - 1];
}
}
for (int j = 1; j <= n[s - 1]; j++)
{
for (int i = 1; i <= m; i++)
{
temp_Zk[(sum1 + j - 1)*m + i - 1] = (1 / (sig_alpha[s - 1] + alpha[0])) * (sig_alpha[s - 1]*Z[(sum1 + j - 1)*m + i - 1] - beta[0]* sum3[(s - 1)*m + i - 1] + WZ[(sum1 + j - 1)*m + i - 1] + ylambda[(s - 1)*m + i - 1]);
}
}
sum1 = sum1 + n[s-1];
}
delete []sum3;
} |
a90a644fc635de757493267c7cf9111414a4ce87 | f4a00816d38706c828cb77b973bdeb47af36c1c3 | /students.cpp | fb4c3a29d8e696c94c94f5ea1b9e4c229658a621 | [] | no_license | InfiniteAndBeyond/Computercontrol | 7d60fb4db7ff4abfcf404710972699e514deddaf | a234909e527dd45a6bd1f942d509da17731752f7 | refs/heads/master | 2020-03-18T02:00:34.591754 | 2018-05-20T17:12:09 | 2018-05-20T17:12:09 | 134,170,263 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 11,558 | cpp | students.cpp |
/*
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
using namespace std;
struct student
{
int id; // 学号
char name[30]; // 姓名
char sex[2]; // 性别
float gread; // 成绩
};
typedef struct student DataType; // 指定struct student为DataType
struct SeqList
{
int MAX; // 顺序表中最大元素的个数
int count; // 存放线性表中元素的个数count <= MAXLENGTH
DataType* element; // element[0], element[1], ..., element[n - 1]存放线性表中的元素
};
typedef struct SeqList *MySeqList;
// 初始化并创建空顺序表
MySeqList initSeqList(int m);
// 判断线性表是否为空
int isEmptySeqList(MySeqList mySeqList);
// 在顺序表中求某元素的下标
int locateSeqList(MySeqList mySeqList, int id);
// 在顺序表中修改值
int updateSeqList(MySeqList mySeqList, int id);
// 顺序表的插入(元素p之前插入)
int insertPreSeqList(MySeqList mySeqList, int p, DataType x);
// 顺序表的插入(元素p之后插入)
int insertNextSeqList(MySeqList mySeqList, int p, DataType x);
// 顺序表的删除(根据下标删除)
int deleteSeqList(MySeqList mySeqList, int p);
// 顺序表的删除(根据元素值删除)
int deleteSeqListByValue(MySeqList mySeqList, int id);
// 将顺序表表示的线性表逆置
int reverseSeqList(MySeqList mySeqList);
int deleteAllVSeqList(MySeqList mySeqList, DataType x);
// 求出下标为i的元素的前驱和后继
int findPrePostSeqList(MySeqList mySeqList, int i, DataType &m, DataType &n);
// 顺序表实现部分:找出值为x的元素的前驱和后继的存储位置(即下标)
int locatePrePostSeqList(MySeqList mySeqList, DataType x, int &i, int &j);
// 输出线性表的元素值
void printSeqList(MySeqList &mySeqList);
// 根据学生id,输出线性表的元素值
void printSeqListById(MySeqList &mySeqList,int id);
// 在顺序表中修改值
int updateSeqList(MySeqList mySeqList, int id) //学生信息登入
{
int iRc = locateSeqList(mySeqList, id);
if (iRc == -1)
{
printf("不存在指定下标!\n");
return (0);
}
cout<<"学号 姓名 性别 成绩 "<<endl;
cin>>mySeqList->element[iRc].id>>mySeqList->element[iRc].name>>mySeqList->element[iRc].sex>>mySeqList->element[iRc].gread;
return 1;
}
// 功能: 创建空顺序表
MySeqList initSeqList(int m)
{
MySeqList mySeqList = (MySeqList)malloc(sizeof(struct SeqList)); // 分配内存空间
if (mySeqList != NULL)
{
mySeqList->element = (DataType*)malloc(sizeof(DataType) * m); // 为里面的元素分配m个DataType大小的内存空间,相当于初始化了一个长度为m的数组
if (mySeqList->element)
{
mySeqList->MAX = m; // 如果创建了元素,MAXLENGTH为最大元素的个数
mySeqList->count = 0; // 空表长度为0
return (mySeqList);
}
else
free(mySeqList); // 记得要手动释放空间,否则很容易产生内存泄漏
}
printf("内存空间不足,请关闭一些程序,然后再试!\n"); // 存储分配失败,提示空间不足
return NULL;
}
// 功能: 判断线性表是否为空
int isEmptySeqList(MySeqList mySeqList)
{
return (mySeqList->count ==0);
}
// 功能:在顺序表中求某元素的下标,没有查找到,则返回-1
int locateSeqList(MySeqList mySeqList, int id)
{
for (int i = 0; i < mySeqList->count; ++i)
if (mySeqList->element[i].id == id) // 传入一个元素x,查找到后返回下标i
return (i);
return (-1);
}
// 功能:顺序表的pos下标前面插入,插入成功返回1,失败返回0
int insertPreSeqList(MySeqList mySeqList, int pos, DataType x)
{
++mySeqList->count;
if (mySeqList->count > mySeqList->MAX) // 溢出
{
--mySeqList->count;
printf("表产生了溢出!\n");
return (0);
}
if (pos < 0 || pos >= mySeqList->count) // 不存在下标为pos的元素
{
--mySeqList->count;
printf("不存在指定下标!\n");
return (0);
}
for (int i = mySeqList->count - 1; i != pos; --i)
{mySeqList->element[i] = mySeqList->element[i - 1]; // 插入位置及之后的元素均后移一个位置
mySeqList->element[i] = x; // 插入元素x
return (1);
}
}
// 功能:顺序表的pos下标后面插入,插入成功返回1,失败返回0
int insertNextSeqList(MySeqList mySeqList, int pos, DataType x)
{
if (pos < 0 || pos >= mySeqList->count)
{
printf("不存在指定下标!\n");
return (0);
}
++mySeqList->count;
if (mySeqList->count >= mySeqList->MAX)
{
--mySeqList->count;
printf("表产生了溢出!\n");
return (0);
}
for (int i = mySeqList->count - 1; i != pos + 1; --i)
{mySeqList->element[i] = mySeqList->element[i - 1]; // 同样地,把pos+1插入位置及之后的元素均后移一个位置
mySeqList->element[i] = x; // 插入元素x
return (1);
}
}
// 功能:顺序表的删除(根据下标删除)
int deleteSeqList(MySeqList mySeqList, int pos)
{
if (pos < 0 || pos >= mySeqList->count) // 不存在下标为pos的元素,注意下标范围是从0到count-1
{
printf("不存在指定下标!\n");
return (0);
}
for (int i = pos; i < mySeqList->count - 1; ++i)
mySeqList->element[i] = mySeqList->element[i + 1]; // 被删除元素之后的元素均前移一个位置
--mySeqList->count; // 元素个数减1
return (1);
}
// 功能:根据元素值删除,实现顺序表的删除
int deleteSeqListByValue(MySeqList mySeqList, int id)
{
int pos = locateSeqList(mySeqList, id);
if (pos == -1)
{
printf("不存在指定下标!\n");
return (0);
}
deleteSeqList(mySeqList, pos);
return (1);
}
int deleteAllSeqListByValue(MySeqList mySeqList, int x)
{
if (mySeqList->count == 0)
{
printf("该表为空!\n");
return (0);
}
for (int i = 0; i != mySeqList->count; ++i)
{
if (mySeqList->element[i].id == x )
{
deleteSeqListByValue(mySeqList,x); // 删除x,删除后要将下标减少1
i--;
}
}
return (1);
}
int deleteAllVSeqList(MySeqList mySeqList, int x)
{
if (mySeqList->count == 0)
{
printf("该表为空!\n");
return (0);
}
int p = 0, q = 0;
while (mySeqList->element[p].id != x && p != mySeqList->count - 1) // 跳过开始不是x的元素
{
++p;
++q;
}
for (; p != mySeqList->count - 1; ++p) // 遍历元素,不遍历最后一个元素(为了防止越界)
{
while (mySeqList->element[p].id == x && p != mySeqList->count - 1) // 如果元素是x,则游标p后移(用while处理多个x连续的情况)
{
++p;
}
if (p != mySeqList->count - 1)
{
mySeqList->element[q] = mySeqList->element[p];
++q;
}
}
if (mySeqList->element[mySeqList->count - 1].id != x)
{
mySeqList->element[q] = mySeqList->element[mySeqList->count - 1];
++q;
}
mySeqList->count = q;
return (1);
}
// 功能:找出值为x的元素的前驱和后继的存储位置(即下标)
int locatePrePostSeqList(MySeqList mySeqList, int x, int &i, int &j)
{
int k = locateSeqList(mySeqList, x);
if (k == -1)
return (0);
if (k == 0)
i = -1;
else
i = k - 1;
if (k == mySeqList->count - 1)
j = -1;
else
j = k + 1;
return (1);
}
// 输出线性表的元素值
void printSeqList(MySeqList &mySeqList)
{
for (int i = 0; i < mySeqList->count; ++i) // 输出线性表的元素值
{
cout<< "学号:" << mySeqList->element[i].id << ",姓名:" << mySeqList->element[i].name << ",性别:" << mySeqList->element[i].sex ;
cout<< "成绩:" << mySeqList->element[i].gread;
cout<<endl;
}
cout << endl;
}
// 根据学生id,输出线性表的元素值
void printSeqListById(MySeqList &mySeqList,int id)
{
for (int i = 0; i < mySeqList->count; ++i) // 输出线性表的元素值
{
if (id == mySeqList->element[i].id)
{
cout<< "学号:" << mySeqList->element[i].id << ",姓名:" << mySeqList->element[i].name << ",性别:" << mySeqList->element[i].sex ;
cout<< "成绩:" << mySeqList->element[i].gread;
cout<<endl;
break;
}
}
}
int main(int argc, char* argv[])
{
MySeqList mySeqList = initSeqList(34); // 初始化一个长20的表
//struct MySeqList mySeqList[20];
//mySeqList[0] = (struct MySeqList){"peter1",22,"nan",4.2};
L:
system("cls");
cout<< " ""学生成绩管理系统"" "<<endl;
cout<<endl;
cout<<" --------------------------------------- "<<endl;
cout<< " | 1. 添加学生信息 | " <<endl;
cout<< " | 2. 查找学生信息 | " <<endl;
cout<< " | 3. 删除学生信息 | " <<endl;
cout<< " | 4. 修改学生信息 | " <<endl;
cout<< " | 5. 退出学生系统 | " <<endl;
cout<<" --------------------------------------- "<<endl;
int i;
cout<< "请选择一个操作(1-5):";
cin>>i;
if (i == 1)
{
mySeqList->count = 1;
int iRc = 0;
while(true&&mySeqList->count<34)
{
cout<<endl<<"请添加学生信息(输入*退出添加):"<<endl;
cout<<"姓名:";
cin>>mySeqList->element[iRc].name;
if (strcmp(mySeqList->element[iRc].name,"*") == 0)
{
mySeqList->count--;
goto L;
}
cout<<"学号: ";
cin>>mySeqList->element[iRc].id;
cout<<"性别: ";
cin>>mySeqList->element[iRc].sex;
cout<<"成绩: ";
cin>>mySeqList->element[iRc].gread;
cout << "成功添加学生成绩信息成绩。"<<endl;
printSeqList(mySeqList);
mySeqList->count++;
iRc++;
}
}
else if (i == 2)
{
L4:
cout<<"请输入要查找的学生学号:"<<endl;
int sid;
cin>>sid;
if (locateSeqList(mySeqList,sid) != -1)
{
cout<<"成功查询学号为"<<sid<<"的学生成绩。"<<endl;
printSeqListById(mySeqList,sid);
}
else
{
cout<<"查询学生成绩错误,可能不存在学号为"<<sid<<"的学生."<<endl;
}
int iopselect;
cout<<endl<<"还要继续查询吗?(按0返回主菜单,否则继续此操作。)"<<endl;
cin>>iopselect;
if (iopselect == 0)
goto L ;
else
goto L4;
}
else if (i == 3)
{
L1:
cout<<"请输入要删除的学生学号:"<<endl;
int stu_id;
cin>>stu_id;
if (deleteSeqListByValue(mySeqList,stu_id) == 1)
cout<<"成功删除学生成绩。"<<endl;
else
cout<<"删除学生成绩出错。"<<endl;
printSeqList(mySeqList);
int iop;
cout<<endl<<"还要继续删除吗?(按0返回主菜单,否则继续此操作。)"<<endl;
cin>>iop;
if (iop == 0)
goto L ;
else
goto L1;
}
else if (i == 4)
{
L3:
cout<<"请输入要修改的学生学号:"<<endl;
int id;
cin>>id;
if(updateSeqList(mySeqList,id) ==1)
cout << "成功修改学生成绩信息成绩。"<<endl;
else
cout << "修改学生成绩信息成绩出错。"<<endl;
printSeqList(mySeqList);
int iselect;
cout<<endl<<"还要继续修改吗?(按0返回主菜单,否则继续此操作。)"<<endl;
cin>>iselect;
if (iselect == 0)
goto L ;
else
goto L3;
}
else if (i == 5)
{
system("cls");
cout<<"您已经出本系统,欢迎下次再使用."<<endl;
}
return 0;
}
*/ |
d5a68c419adfd22665255c428d56ef4ad46bbefb | 7a473613652611b0b67dcdfa5600e6676a312800 | /session09/howdeleteworks.cc | 11ce2018eb64994d31cc192a9bd0575d078bc12c | [] | no_license | StevensDeptECE/EE553_2017S | 0cac8fa24c7b6672931798cd08ef8e2c39a635b4 | 6048bd58f9981fb93d0e564e8fbeadffc0d23abb | refs/heads/master | 2021-01-11T19:26:57.938467 | 2017-05-01T02:20:09 | 2017-05-01T02:20:09 | 79,369,055 | 13 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 568 | cc | howdeleteworks.cc | class Elephant {
private:
int* p; // pretend p gets allocated
public:
Elephant() { cout << "Elephant born"; }
~Elephant() { cout << "Elephant about to die"; }
};
int main() {
/*
4
p --> int
400
q --> int int int int ....
800
e --> E E E E E E E E
*/
int* p = new int;
*p = 5;
int *q = new int[100];
delete [] q;
Elephant* e = new Elephant;
delete e;
e = new Elephant[100];
delete e; // incorrectly deletes only the first elephant
delete [] e;
|
3a57865356bc7ee817268620124a0da86cf13526 | 5986cc50dfab725dbb1d04e14e3cb928c7e1ea5f | /src/main.cpp | 18f3042702bd9874e6551831672669d3638f834a | [] | no_license | team-iot-fkekk/mkr1000-ILP-favoriot | c283808eab36fb04ae04db238a6b3343079f29d7 | 57d4b3453c26b30c2a943400ea2a9b7f14594cbb | refs/heads/master | 2021-05-19T06:04:11.142003 | 2020-07-27T16:44:02 | 2020-07-27T16:44:02 | 251,559,045 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,533 | cpp | main.cpp | #include <Arduino.h>
#include <SPI.h>
#include <WiFi101.h>
//#include "secrets.h"
#define sensorPin 0
//#define pushButton 7
char ssid[] = "YOUR_SSID"; // change it!
char pass[] = "YOUR_PASSWORD"; // change it!
//const String yourDevice = YOUR_DEVICE_DEVELOPER_ID; // change it!
String apikey = "YOUR_APIKEY";
int status = WL_IDLE_STATUS;
char serverAddr[] = "apiv2.favoriot.com";
WiFiClient client;
int sensorValue = 0;
float celcius = 0.0;
float voltage = 0.0;
void dataStream(float celcius);
void setup()
{
Serial.begin(115200);
analogReadResolution(10);
// attempt to connect to WiFi network:
while (status != WL_CONNECTED)
{
Serial.print("Attempting to connect to WPA SSID: ");
Serial.println(ssid);
// Connect to WPA/WPA2 network:
status = WiFi.begin(ssid, pass);
// wait 5 seconds for connection:
delay(5000);
}
// you're connected now, so print out the data:
Serial.print("You're connected to the network");
}
void loop()
{
// if (digitalRead(pushButton) == LOW) //disable this line to retrieve data automatically without pressing the button
// {
//execute when the push button is pressed only
sensorValue = analogRead(sensorPin); //read the temperature and convert to celcius
voltage = sensorValue * (3300 / 1024);
celcius = (voltage - 500) / 10;
dataStream(celcius); //send data to FAVORIOT platform
// }
delay(5000); //enable this line if you disable the 'if' condition
}
void dataStream(float celcius)
{
// Json Data to send to Platform
String json = "{\"device_developer_id\":\"deviceDefault@stiotchallenge\",\"data\":{\"Temperature\":\"" + String(celcius) + "\"}}";
// display temperature value
Serial.println("\n TEMPERATURE : " + String(celcius) + " Celcius");
if (client.connect(serverAddr, 80))
{
// Make a HTTP request:
Serial.println(" STATUS : Sending data..."); //Display sending status
client.println("POST /v2/streams HTTP/1.1");
client.println("Host: apiv2.favoriot.com");
client.print(String("apikey: "));
client.println(apikey);
client.println("Content-Type: application/json");
client.println("cache-control: no-cache");
client.print("Content-Length: ");
int thisLength = json.length();
client.println(thisLength);
client.println("Connection: close");
client.println();
client.println(json);
Serial.println(" STATUS : Data sent!"); //display sent status
}
} |
28b73b95522a11bb92e9376ce15ab6d95be7a931 | 45162ab49fa11b55daa0f3ef5905f99f1ceee226 | /Shushao/src/Shushao/Font.cpp | 8cd8a3f3e8c91e4b40edb4eff26c7acebc2f5321 | [] | no_license | stefanocaronia/ShushaoEngine | 727ed7e3931b3a0734e2985c52e97e2b7dcebf2d | 1ad17c44eae283b272c519e6ccc3b0d2a00dc41a | refs/heads/master | 2023-06-24T20:21:08.641499 | 2023-06-12T21:30:43 | 2023-06-12T21:30:43 | 109,894,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,843 | cpp | Font.cpp | #include "sepch.h"
#include <glad/glad.h>
#include "Resources.h"
#include "Core.h"
#include "Utility.h"
#include "Font.h"
#include "GLManager.h"
namespace se {
Font::Font(std::string filename, std::string n) {
if (filename != "") Load(filename);
name = (n == "" ? util::basename(filename) : n);
}
Font::~Font() {
delete (face);
}
void Font::SetSize(float wsize_) {
SetPixelSize(wsize_ * Config::pixelPerUnit);
}
void Font::SetPixelSize(int size_) {
_size = size_;
FT_Set_Pixel_Sizes(face, 0, _size);
}
bool Font::Load(std::string filename) {
if (FT_New_Face(GLManager::lFreetype, filename.c_str(), 0, &face)) {
Debug::Log(ERROR) << "Could not load font: " << filename << std::endl;
return false;
}
init();
return true;
}
bool Font::LoadEmbedded(int IDRES, std::string library) {
std::vector<char> data = Resources::GetEmbeddedData(IDRES, library, RT_FONT);
//bytes = (FT_Byte*)(data.data());
if (bytes != nullptr) delete (bytes);
bytes = new FT_Byte[data.size()];
std::copy(data.begin(), data.end(), bytes);
FT_Error r = FT_New_Memory_Face(GLManager::lFreetype, bytes, data.size() * sizeof(char), 0, &face);
if (r == 0) init();
return r == 0;
}
void Font::init() {
int result = FT_Select_Charmap(face, FT_ENCODING_UNICODE);
if (result > 0) {
Debug::Log(WARNING) << "Impossible to select charmap in font " << name << std::endl;
}
}
bool Font::LoadCharTexture(const wchar_t p) {
/* if (FT_Load_Char(font->face, *p, FT_LOAD_RENDER)) {
return false
} */
unsigned long c = FT_Get_Char_Index(face, p);
if (FT_Load_Glyph(face, c, FT_LOAD_RENDER)) {
return false;
}
glTexImage2D(GL_TEXTURE_2D, 0, GL_RED, face->glyph->bitmap.width, face->glyph->bitmap.rows, 0, GL_RED, GL_UNSIGNED_BYTE, face->glyph->bitmap.buffer);
return true;
}
} // namespace se
|
0ff26d12fd05c182a480bcdb83c5aabc7fe92e32 | 0aa9dcb3cef817ec55eaa8fae2102106f939f594 | /src/rtcmix/rtsendsamps.cpp | 36752fa92a167df813629f59eeaf9233845a2367 | [
"Apache-2.0"
] | permissive | RTcmix/RTcmix | fd30a7d610b2b7b8688cbb5a6d77475201b8ad07 | 4e89415929d7752f325b7813b5aae2a042c08e64 | refs/heads/master | 2023-08-30T23:23:48.806948 | 2023-08-22T19:34:56 | 2023-08-22T19:34:56 | 21,259,864 | 45 | 15 | Apache-2.0 | 2023-06-28T20:53:49 | 2014-06-27T01:07:32 | C++ | UTF-8 | C++ | false | false | 4,468 | cpp | rtsendsamps.cpp | /* RTcmix - Copyright (C) 2000 The RTcmix Development Team
See ``AUTHORS'' for a list of contributors. See ``LICENSE'' for
the license to this software and for a DISCLAIMER OF ALL WARRANTIES.
*/
/* rev'd for v2.3, JGG, 20-Feb-00 */
/* major revision for 3.7 (converted to C++ source), DS, April-04
(see deleted .c file for earlier history)
*/
#include <stdio.h>
#include <unistd.h>
#include <math.h> /* for fabs */
#include <assert.h>
#include <RTcmix.h>
#include "prototypes.h"
#include "buffers.h"
#include <ugens.h>
#include <sndlibsupport.h>
#include "rtdefs.h"
#include <AudioDevice.h>
#include <AudioFileDevice.h>
#include "RTOption.h"
#include <bus.h>
/* #define DUMP_AUDIO_TO_RAW_FILE */
/* #define USE_REAL2INT */
static int printing_dots = 0;
/* local prototypes */
static int write_to_audio_device(BufPtr out_buffer[], int samps, AudioDevice *);
#ifdef DUMP_AUDIO_TO_RAW_FILE
/* ----------------------------------------------- dump_audio_to_raw_file --- */
/* For debugging audio device writes.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
static void
dump_audio_to_raw_file(OBufPtr dest, int nbytes)
{
int result;
static int fd = -1;
if (fd == -1) {
fd = open("dumpaudio.raw", O_RDWR | O_CREAT | O_TRUNC, 0666);
assert(fd > 0);
fprintf(stderr, "Dumping audio to \"dumpaudio.raw\".\n");
}
result = write(fd, dest, nbytes);
assert(result != -1);
}
#endif /* DUMP_AUDIO_TO_RAW_FILE */
#ifdef USE_REAL2INT
/* ------------------------------------------------------------- real2int --- */
/* This is supposed to be more efficient than casting from float to int,
but I didn't notice much difference. This came from info off of the
music-dsp list. -JGG
*/
typedef long int32;
static double _double2fixmagic = 68719476736.0 * 1.5;
static int32 _shiftamt = 16;
#if MUS_LITTLE_ENDIAN /* processor is little-endian */
#define iman_ 0
#else
#define iman_ 1
#endif
static INLINE int
real2int(float val)
{
double x = (double) val;
x = x + _double2fixmagic;
return ((int32 *) &x)[iman_] >> _shiftamt;
}
#endif /* USE_REAL2INT */
/* ------------------------------------------------ write_to_audio_device --- */
static int
write_to_audio_device(BufPtr out_buffer[], int samps, AudioDevice *device)
{
return device->sendFrames(out_buffer, samps) == samps ? 0 : AUDIO_ERROR;
}
/* ---------------------------------------------------------- rtsendzeros --- */
/* Send a buffer of zeros to the audio output device, and to the output sound
file if <also_write_to_file> is true.
NOTE NOTE NOTE: This clears all the global out_buffers!
*/
int
RTcmix::rtsendzeros(AudioDevice *device, int also_write_to_file)
{
int err = 0;
clear_output_buffers();
if (RTOption::play()) {
err = ::write_to_audio_device(out_buffer, bufsamps(), device);
if (err) {
rtcmix_warn("rtsendzeros error", "%s\n", device->getLastError());
return err;
}
}
return err;
}
/* ---------------------------------------------------------- rtsendsamps --- */
/* Called by the scheduler to write the output buffer to the audio device
and/or a sound file. All format conversion and limting happens inside
the AudioDevice.
*/
int
RTcmix::rtsendsamps(AudioDevice *device)
{
int err = 0;
const bool playing = RTOption::play();
/* If we're writing to a file, and not playing, print a dot to show
we've output one buffer.
*/
if (!playing && rtfileit && RTOption::print()) {
printing_dots = 1;
printf("."); /* no '\n' */
}
err = ::write_to_audio_device(out_buffer, bufsamps(), device);
if (err != 0) {
rtcmix_warn("rtsendsamps error", "%s\n", device->getLastError());
}
return err;
}
/* -------------------------------------------------------- rtreportstats --- */
// BGG -- this isn't used in maxmsp
void
RTcmix::rtreportstats(AudioDevice *device)
{
static const double dbref = ::dbamp(32768.0);
if (RTOption::checkPeaks()) {
BUFTYPE peaks[MAXBUS];
long peaklocs[MAXBUS];
printf("\nPeak amplitudes of output:\n");
for (int n = 0; n < NCHANS; n++) {
peaks[n] = device->getPeak(n, &peaklocs[n]);
double peak_dbfs = ::dbamp(peaks[n]) - dbref;
printf(" channel %d: %12.6f (%6.2f dBFS) at frame %ld (%g seconds)\n",
n, peaks[n], peak_dbfs, peaklocs[n], (float) peaklocs[n] / sr());
}
}
}
|
d016740be9943eea47b97e093e95d898500b3da7 | 50ee168f18ab161ee8aeb310d7edca190baabeae | /demo4/XCSTG/util/AppFrameWork.h | 718501de911c03447d601b71e3fa0c8846e46feb | [] | no_license | lr8soft/xcustomized_standard | 9a3d963d65172eb93550095a2e92974b0ca8639a | 46f2928a6111175893c40b7637dcbbf9ea40a7e1 | refs/heads/master | 2020-05-03T14:56:27.783056 | 2019-05-11T05:01:52 | 2019-05-11T05:01:52 | 178,692,080 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | h | AppFrameWork.h | #pragma once
#ifndef _ogl_class_
#define _ogl_class_
#include <GLFW/glfw3.h>
#include "../PlayerRenderGroup.h"
#include "../BackGroundRenderGroup.h"
#include "../EnemyRenderGroup.h"
namespace xc_ogl {
class AppFrameWork
{
private:
EnemyRenderGroup eygroup;
BackGroundRenderGroup bggroup;
PlayerRenderGroup rendergroup;
static AppFrameWork* app_ptr;
const char* title;
int width, height;
bool have_init = false;
GLFWwindow* screen;
static void screen_resize(GLFWwindow*,int,int);
void display();
void key_check();
void render();
void shader_init();
public:
AppFrameWork();
AppFrameWork(int width,int height,const char* title);
~AppFrameWork()=default;
void finalizer();
void init();
void message_loop();
};
}
#endif
|
31576733ac42168c1e4daf27eb5d3689eca80577 | 7a2d4c3d3b236048d5e8f76d98885146d6c3ad38 | /src/allapplicationdialog.h | 7b71eabab19f5931054a8ab28ebc5d01af9f09bd | [] | no_license | SiteView/MPC-QT | 17ad5db1e2addf29d5f6145c78d85806bf997552 | 99569be35d481d19da5e773401a4704082fc86fa | refs/heads/master | 2016-09-16T14:33:00.085154 | 2013-04-01T03:00:05 | 2013-04-01T03:00:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,819 | h | allapplicationdialog.h | #ifndef ALLAPPLICATIONDIALOG_H
#define ALLAPPLICATIONDIALOG_H
#include <QMainWindow>
#include <QTableWidget>
#include <QMenuBar>
#include <QToolBar>
#include <QSystemTrayIcon>
#include <QDockWidget>
#include <QClipboard>
#include <QSplitter>
#include <QTreeWidget>
#include <QListWidget>
#include <QHBoxLayout>
#include <QScrollArea>
#include <QCloseEvent>
#include <QMutex>
class HttpHandle;
class InformationAnalyze;
class AES;
#include "downloadthread.h"
#include <QWidget>
class AllApplicationDialog : public QWidget
{
Q_OBJECT
public:
explicit AllApplicationDialog(QWidget *parent = 0);
void setTableInformation();
void createUpdateFile();
void createTaskInformationOld();
signals:
public slots:
void slt_vUpdate();
//void showThreadMessages(int taskInfoListId, int taskThreadListId, int messagesType, QString strResponseHeader);
void getFileSize(int taskInfoListId, qint64 fileSize);
void getFileDownloadFinished(int taskInfoListId, int taskThreadListId);
void slt_vSetupFinished(int iTaskId);
public slots:
protected:
void closeEvent(QCloseEvent *event);
void changeEvent(QEvent *event);
#ifdef WIN32
bool winEvent( MSG *m, long *result );
#endif
private slots:
void OnBtnDownloadClicked();
void OnBtnPauseClicked();
void runTask(int taskInfoListId = -1);
void runAllTask();
void showTaskMessages();
//void newTask(QString urlString = "");
void threadsDetailTableWidgetClear();
void stopTask(int m_taskInfoList = -1);
void stopAllTask();
void pauseTask(int m_taskInfoList = -1);
void deleteTask();
void redownloadTask();
void modifyTask();
//void viewDropWindowTriggered();
//void viewSpeedWidgetDockTriggered();
//void viewTaskToolBarTriggered();
void preferencesTriggered();
//void about();
void deleteTaskDownloadThread();
//void taskTableWidgetSelectionChanged();
//void taskTableWidgetDoubleClicked(int row, int column);
//void threadNumberSelectionChanged();
//void trayIconActivated(QSystemTrayIcon::ActivationReason reason);
void quitTriggered();
#if defined(DEBUG)
void testTriggered();
#endif
void quitApplication();
void copyTaskThreadsDetail();
void switchLanguage(QAction *action);
void showApplicationNormal();
void acceptClipboard();
//void monitorClipboardTriggered();
private:
void createActions();
void createTrayIcon();
void createMenus();
void createLanguageMenu();
void createToolBars();
//void createSpeedWidgetDock();
void createTaskTableWidget();
void createTaskGraphPainterWidget();
void createThreadNumberTreeWidget();
void createTaskInformation();
void createSmallWindow();
void saveSettings();
void readSettings();
void saveAllTask();
void createTaskTableWidgetContextMenu();
void createTaskThreadsDetailTableWidgetContextMenu();
void deleteTaskAndTableWidget(int taskInfoListId);
int getCurrentTaskInfoListId();
int getCurrentTaskThreadListId();
void showTaskState(int taskInfoListId);
bool newNotDownload(int taskInfoListId);
void startFinishedThread(int taskInfoListId, int taskThreadListId);
void saveTaskState(int taskInfoListId);
void readTaskState(int taskInfoListId);
void connectTaskThread(int taskInfoListId, int taskThreadListId);
void showGraphWidget(bool refreshAll = false, int taskInfoListId = -1, int newThreadReceivedListId = -1);
void showSmallWindow();
void threadNewReceivedListAppend(int taskInfoListId, int taskThreadListId, int notDownloadListId);
int getRunningTasksCount();
void startTaskThread(int taskInfoListId, int taskThreadListId, int notDownloadListId, bool connectTaskThreadBool=false);
void showActionState();
void checkNotDownloadList(int taskInfoListId);
void checkTaskThread(int taskInfoListId);
int getProxyTitleToId(QString title);
void restartTask(int taskInfoListId);
//QMenuBar *menuBar;
QMenu *trayIconMenu;
//QMenu *fileMenu;
//QMenu *taskMenu;
//QMenu *viewMenu;
//QMenu *languageSubMenu;
//QMenu *optionMenu;
//QMenu *helpMenu;
//QToolBar *taskToolBar;
//QActionGroup *languageActionGroup;
//QAction *quitAct;
//QAction *addTaskAct;
//QAction *runTaskAct;
//QAction *runAllTaskAct;
//QAction *stopTaskAct;
//QAction *stopAllTaskAct;
//QAction *deleteTaskAct;
//QAction *redownloadTaskAct;
//QAction *modifyTaskAct;
//QAction *viewDropWindowAct;
//QAction *viewSpeedWidgetDockAct;
//QAction *viewTaskToolBarAct;
//QAction *preferencesTaskAct;
//QAction *monitorClipboardAct;
//QAction *aboutAct;
//QAction *aboutQtAct;
//QAction *restoreAct;
//QAction *hideAct;
//QAction *copyTaskThreadsDetailAct;
//QAction *separatorAct;
//QAction *separatorAct2;
//QAction *separatorAct3;
//QAction *testAct;
QTableWidget *threadsDetailTableWidget;
//QClipboard *clipboard;
//QDockWidget *speedWidgetDock;
//SmallWindow *smallWindow;
//SpeedGraphWidget *speedGraphWidget;
QSystemTrayIcon *trayIcon;
QTableWidget *m_tableWidget;
QSplitter *taskInfoSplitter;
//QSplitter *infoDetailSplitter;
QHBoxLayout *taskGraphDetailLayout;
QWidget *threadGraphDetailWidget;
QScrollArea *taskGraphWidget;
QTreeWidget *threadNumberTreeWidget;
QTreeWidgetItem *threadInfomationTreeWidgetItem;
QTreeWidgetItem *threadNumberTreeWidgetItem;
QTimer *timer;
QTimer *deleteTaskTimer;
QTimer *quitApplicationTimer;
QMutex showThreadMessagesMutex;
QMutex getNewReceiveDataMutex;
int retryMax;
int smallWindowTaskInfoListId;
int smallWindowShowSeconds;
HttpHandle *m_pHttpHandle;
InformationAnalyze *m_pInformationAnalyze;
AES *m_pAES;
QList <int> deleteTaskList;
QString m_sCurrentPath;
struct _TaskPreferences
{
int maxRunningTasksInt;
int splitInt;
qint64 minimumSplitSizeInt64;
bool useLastPathBool;
bool useDefaultPathBool;
QString saveToString;
int connectTimeOutInt;
int maxRetryNumberInt;
int retryDelayInt;
qint64 maxSpeedGraph;
int maxHeightGraph;
int pixelWidthGraph;
qint64 blockSizeGraph;
bool monitorClipboardBool;
QString monitorTypesString;
};
typedef struct _TaskPreferences TaskPreferences;
TaskPreferences taskPreferences;
DownloadThread *downloadThread;
QList <DownloadThread *> taskThreadList;
struct _NotDownload
{
int taskThreadListId;
qint64 startPosition;
qint64 endPosition;
};
typedef struct _NotDownload NotDownload;
NotDownload *notDownload;
struct _TaskInfomation
{
int taskInfoListId;
int controlState;
int state;
QUrl url;
QStringList urlsStringList;
bool noProxyBool;
bool singleProxyBool;
int singleProxyId;
bool mutipleProxyBool;
QList <int> mutipleProxyIdsList;
QString referrer;
QString saveTo;
QString rename;
QString comment;
QString user;
QString password;
int splite;
int retry;
qint64 size;
qint64 completed;
qint64 lastCompleted;
qint64 startPosition;
qint64 speed;
qint64 elapsedTime;
QList <qint64> speedPointList;
QList <NotDownload *> notDownloadList;
QList <DownloadThread *> taskThreadList;
QString applicationName;
QString silentParam;
QString currentVersion;
QString updateVersion;
};
typedef struct _TaskInfomation TaskInfomation;
QList <TaskInfomation *> m_taskInfoList;
enum ThreadMessagesType
{
uploadMessages = 0,
downloadMessages,
infomationMessages,
errorMessages
};
enum tableWidgetHeader
{
stateHeader = 0,
fileNameHeader,
sizeHeader,
//compeletedHeader,
progressHeader,
speedHeader,
elapsedTimeHeader,
timeLeftHeader,
retryHeader,
DownloadHeader,
PauseHeader,
commentHeader
//tr("Progress") << tr("Speed")<< tr("Elapsed time")<< tr("Time left") << tr("Retry") << tr("") << tr("") << tr("Comment");
};
enum DownloadTaskState
{
noState = -1,
//aaron
doneState = 0,
stopState,
runningState,
finishedState,
pauseState,
errorState,
installingState
};
public:
explicit AllApplicationDialog(QList <TaskInfomation *> &taskInfoList, QWidget *parent = 0);
void setTaskInformation(QList <TaskInfomation *> &taskInfoList);
};
#endif
|
366fb7ecad6be6159b8fcaeeda89e9bd09667035 | 9f3b2fe9d27105fd336c1df6cd13d5f6d353774e | /game/Player.h | 139931a1e5b1457fd9ba3806f875d2575d16adab | [] | no_license | Coreficent/Flare | 163b02b3dc79a463ec82005cdd58e9cce91b2992 | 1d72b904c25874382e0e21fb3b2d6b8459b58368 | refs/heads/master | 2023-03-28T17:17:28.258791 | 2021-04-13T00:56:53 | 2021-04-13T00:56:53 | 347,856,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 286 | h | Player.h | #pragma once
#include "flare/Key.h"
#include <flare/Sprite.h>
namespace Game
{
using namespace Flare;
class Player : public Sprite
{
public:
Player(int window_width) noexcept;
void enter_frame() override;
private:
int window_width{};
float move_speed{ 10.0f };
};
}
|
9fb1a0488994272ea938a1397af5f679b653a2b3 | 16b69166caef465ecf44d65f7808ab0c2ecff2d3 | /DFS/DecodeString.cpp | b0ce27a29d2ae309b87df48d47962e98cd9964f1 | [] | no_license | llu0120/Cpp-Algorithm | 10fcc3ac8e3c0c9a55a7ba981fae92e80037267f | 3ed4cffd290b9702454facc803a3e530f2e1eaef | refs/heads/master | 2020-05-04T03:39:38.219288 | 2020-04-19T21:25:57 | 2020-04-19T21:25:57 | 178,950,835 | 9 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,850 | cpp | DecodeString.cpp | /*
Given an encoded string, return its decoded string.
The encoding rule is: k[encoded_string], where the encoded_string inside the square brackets is being repeated exactly k times. Note that k is guaranteed to be a positive integer.
You may assume that the input string is always valid; No extra white spaces, square brackets are well-formed, etc.
Furthermore, you may assume that the original data does not contain any digits and that digits are only for those repeat numbers, k. For example, there won't be input like 3a or 2[4].
Examples:
s = "3[a]2[bc]", return "aaabcbc".
s = "3[a2[c]]", return "accaccacc".
s = "2[abc]3[cd]ef", return "abcabccdcdcdef".
*/
//induce the 2nd example to understand the algorithm
//Iterative
class Solution {
public:
string decodeString(string s) {
stack<string> str_stack;
stack<int> num_stack;
string current;
for (int i = 0; i < s.size(); i++) {
if (isdigit(s[i])) {
//loop over the digits till "["
int start = i;
while (i < s.size() && isdigit(s[i])) {
i++;
}
int num = stoi(s.substr(start, i-start));
num_stack.push(num);
str_stack.push(current);
current ="";
} else if (s[i] == ']') {
int num = num_stack.top();
string tmp = current;
for (int i = 0; i < num-1; i++) { //Don't need to loop to num because the original current already includes one set of string
current += tmp;
}
num_stack.pop();
current = str_stack.top() + current;
str_stack.pop();
} else {
current.push_back(s[i]);
}
}
return current;
}
};
//Recursive
//Take 3[a]2[bc] to understand the code
class Solution {
public:
string decodeString(string s) {
int pos = 0;
return dfs(pos, s);
}
string dfs(int &pos, string s) {
int num = 0;
string current = "";
while (pos < s.size()) {
if (isdigit(s[pos])) {
int start = pos;
while (pos < s.size() && isdigit(s[pos])) {
pos++;
}
num = stoi(s.substr(start, pos-start));
} else if (s[pos] == '[') {
pos++;
string tmp = dfs(pos, s);
for (int i = 0; i < num ; i++) {
current += tmp;
}
} else if (s[pos] == ']') {
pos++;
return current;
} else {
current.push_back(s[pos]);
pos++;
}
}
return current;
}
};
|
f2c2a437d2908c1e9d8fe608934323ad7c06be2b | 00535d7e950011c99049da5b2e324f3239d9d513 | /imagesavethread.cpp | 98992e6cc8f9ff27cbacab6faf50ec4ed5808138 | [] | no_license | SAKURABAi/FluoImaging | 5ecae1fb8132fb5b0c51635c9a7a43c751567a75 | 23b45f71d34514b3d816f61c74179cdbca44d2e3 | refs/heads/master | 2022-12-17T14:00:17.986056 | 2020-09-25T05:05:14 | 2020-09-25T05:05:14 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,962 | cpp | imagesavethread.cpp | #include "imagesavethread.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
ImageSaveThread::ImageSaveThread(QVector<ImageBuffer *> buffers, QString imageFolder, QString prefix, QString imageFormat, QObject *parent)
: buffers(buffers), imageFolder(imageFolder), prefix(prefix), imageFormat(imageFormat), QThread(parent)
{
m_stopFlag = false;
m_isStopped = true;
}
ImageSaveThread::ImageSaveThread(ImageBuffer *imageBuffer, unsigned int count, QString imageFolder, QString prefix, QString imageFormat, QObject *parent)
: imageFolder(imageFolder), prefix(prefix), imageFormat(imageFormat), QThread(parent)
{
m_stopFlag = false;
this->buffers.resize(count);
for (unsigned int i = 0; i < count; i++) {
this->buffers[i] = imageBuffer + i;
}
}
ImageSaveThread::~ImageSaveThread()
{
}
void ImageSaveThread::stop() {
//QMutexLocker locker(&mutex);
m_stopFlag = true;
}
bool ImageSaveThread::isStoped() {
return m_isStopped;
}
void ImageSaveThread::run() {
m_isStopped = false;
for (QVector<ImageBuffer *>::iterator iterBuffer = buffers.begin(); iterBuffer != buffers.end(); iterBuffer++) {
//{
// QMutexLocker locker(&mutex);
// if (m_stopFlag) break;
//}
if (m_stopFlag) break;
ImageBuffer *p_buffer = *iterBuffer;
QString filename = imageFolder+"\\"+prefix+"_"+QString::number(p_buffer->timestamp)+"."+imageFormat;
if (p_buffer->data_type == USHORT_TYPE){
ushort* image_data = (ushort*)(p_buffer->image_data);
cv::Mat image(p_buffer->image_height, p_buffer->image_width, CV_16UC1, image_data);
imwrite(filename.toStdString(), image);
}
else if (p_buffer->data_type == UCHAR_TYPE){
uchar* image_data = (uchar*)(p_buffer->image_data);
cv::Mat image(p_buffer->image_height, p_buffer->image_width, CV_8UC1, image_data);
imwrite(filename.toStdString(), image);
}
delete p_buffer->image_data;
p_buffer->image_data = NULL;
emit onImageSaved(p_buffer);
}
m_isStopped = true;
}
|
e9f8b9689d9c4ef26c6067a823818eaa5fba29f5 | 42fb8772cedb232819ac952445b2f4430bff7420 | /ChessQtGUI/ChessQtGUI/chessqtgui.h | ba99bc573e1f3ff1a9cd536a44381c7e635606cc | [] | no_license | squaretriangle902/Chess | cabd0bb21e3e411a3a3c5dc7c00e0758cb13339a | 5fd88e1e981d8099077ee48b3309db1fc4d44ada | refs/heads/master | 2021-05-21T21:44:09.928443 | 2020-11-18T13:50:21 | 2020-11-18T13:50:21 | 252,815,119 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,059 | h | chessqtgui.h | #ifndef CHESSQTGUI_H
#define CHESSQTGUI_H
#include <QMainWindow>
#include <QtCore>
#include <QtGui>
#include <QGraphicsScene>
#include <QGraphicsItem>
#include <QGraphicsItemGroup>
#include "../../Chess/Piece.h"
#include "../../Chess/Pieces.h"
#include "../../Chess/ChessBoard.h"
#include "../../Chess/LongRangePiece.h"
#include "PieceDisplay.h"
#include "InputPieceDialog.h"
#include <vector>
QT_BEGIN_NAMESPACE
namespace Ui { class ChessQtGUI; }
QT_END_NAMESPACE
class ChessQtGUI : public QMainWindow
{
Q_OBJECT
public:
ChessQtGUI(QWidget *parent = nullptr);
~ChessQtGUI();
private:
Ui::ChessQtGUI *ui;
ChessBoard* chessBoardPtr;
Game* game;
QGraphicsScene* scene;
QGraphicsItemGroup* squareMarkerGroup;
QGraphicsItemGroup* lastMoveMarkerGroup;
SquareMarker* checkMarker;
Position currentPiecePosition;
void AddPiece(Position position, PieceType type, Color color);
void AddPiece(Position position, Piece* piecePtr);
void AddPiece(int vertical, int horizontal, PieceType type, Color color);
Position QPointFToPosition(QPointF qPointF);
QPointF PositionToQPointF(Position position, bool isOffset);
QPointF NearestSquareCenter(QPointF qPointF);
int SquareSize();
void DeleteAllMarkers(QGraphicsItemGroup* markerGroup);
void SelectAllAvailableSquares(vector<Position> possibleMovesVector);
Position FindRookDisplay(Position kingPosition, Chess::Direction castlingDirection);
InputPieceDialog* inputPieceDialog;
void Taking(QGraphicsItem* pieceDisplay, QPointF position);
void ReturnPieceDisplay(QGraphicsItem* pieceDisplay);
void Promotion(Color color, QPointF position, Position endChessPosition);
void Castling(Position rookDisplayPosition, Position endChessPosition,
Chess::Direction castlingDirection);
void GameResultMessage(GameResult gameResult);
void CheckMarker(Color kingColor);
public slots:
void SelectPiece(QPointF position);
void TryMovePiece(QPointF position);
};
#endif // CHESSQTGUI_H
|
c21907290db15b616a2a4c7a033c17dfc6d9a1a3 | 08509d1d559f3f7eab7495cd4e072f229488166a | /Solution/Game_Shared/SharedLevelFactory.h | 0b74eb079c2ec1913e0839a9d1941c2c0d8ad779 | [] | no_license | LastVision/DistortionGamesFPS | 8a9da37990c68bb6ba193a289633f91ffa47bd6b | e26bd778b3ce16e01e6c9d67ad8e0ce7d1f0f6e0 | refs/heads/master | 2021-06-01T08:32:46.430309 | 2016-04-28T10:34:38 | 2016-04-28T10:34:38 | 51,527,472 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,544 | h | SharedLevelFactory.h | #pragma once
#include <GrowingArray.h>
#include <unordered_map>
class SharedLevel;
class XMLReader;
namespace tinyxml2
{
class XMLElement;
}
struct LevelPathInformation
{
LevelPathInformation() : myID(-1), myPath("No Level") {};
LevelPathInformation(const int aID, const std::string& aPath) : myID(aID), myPath(aPath) {};
int myID;
std::string myPath;
};
class SharedLevelFactory
{
public:
SharedLevelFactory(const std::string& aLevelListPath);
~SharedLevelFactory();
//SharedLevel* LoadLevel(const int& aID);
//virtual SharedLevel* LoadCurrentLevel() = 0;
//SharedLevel* LoadNextLevel();
//bool IsLastLevel();
const std::string& GetLevelPath(const int aLevelID) const;
const CU::Vector3<float> GetMinPoint() const;
const CU::Vector3<float> GetMaxPoint() const;
const bool& GetIsLoadingLevel() const;
protected:
void ReadLeveList(const std::string& aLevelListPath);
virtual void ReadLevel(const std::string& aLevelPath);
virtual void LoadRooms(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadProps(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadDoors(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadUnits(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadTriggers(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadPlayerStartPosition(XMLReader& aReader, tinyxml2::XMLElement* aElement) = 0;
virtual void LoadSpawnpoint(XMLReader& aReader, tinyxml2::XMLElement* anElement);
void ReadGID(XMLReader& aReader, tinyxml2::XMLElement* aElement, unsigned int& aOutGID);
void ReadOrientation(XMLReader& aReader, tinyxml2::XMLElement* aElement,
CU::Vector3f& aOutPosition, CU::Vector3f& aOutRotation, CU::Vector3f& aOutScale);
int myCurrentID;
bool myIsLoadingLevel;
std::unordered_map<int, std::string> myLevelPaths;
CU::Vector3<float> myMinPoint;
CU::Vector3<float> myMaxPoint;
};
//inline bool SharedLevelFactory::IsLastLevel()
//{
// return myCurrentID >= myLevelPaths.Size();
//}
inline const CU::Vector3<float> SharedLevelFactory::GetMinPoint() const
{
return myMinPoint;
}
inline const CU::Vector3<float> SharedLevelFactory::GetMaxPoint() const
{
return myMaxPoint;
}
inline const std::string& SharedLevelFactory::GetLevelPath(const int aLevelID) const
{
return myLevelPaths.at(aLevelID);
}
inline const bool& SharedLevelFactory::GetIsLoadingLevel() const
{
return myIsLoadingLevel;
} |
fb511506d58551923981c88c02a50716886ab45b | 6ad89d7c9a533ca22810575e3db71878c295e45c | /Final/main/main.ino | 1b188ec1dfbe772b5b3ae6a11e60d04daad07937 | [] | no_license | ethandudu/Robot-accueil | 0c6483e282419f2cf004d384262cef009d47aaf4 | a8b0aeca1b12f458ff00e32edf1243d86e60fcf5 | refs/heads/main | 2023-05-12T22:12:01.462685 | 2021-06-03T09:25:38 | 2021-06-03T09:25:38 | 348,332,139 | 4 | 0 | null | 2021-06-03T09:25:39 | 2021-03-16T12:05:17 | HTML | UTF-8 | C++ | false | false | 8,016 | ino | main.ino | /*
Programme réalisé par la STI2D B, plus d'infos sur le github du projet : https://github.com/ethandudu/Robot-Accueil
*/
//Définition des librairies à utiliser
#include <LiquidCrystal_I2C.h> // Écran LCD
#include <Wire.h> // Shield de l'écran
#include "pitches.h" // Notes du buzzer
#include <Servo.h> // Servo moteurs
// Définition des angles des servos E = Activé, D = Désactivé, A = Angle
// Enable
int AEServoRTete = 91; // OK
int AEServoITete = 45; // OK
int AEServoIYeux = 10; //?
int AEServoRYeux = 10; //?
int AEServoFYeux = 70; // OK
int AEServoOBoucheB = 90; //?
int AEServoOBoucheH = 90; //?
// Disable Pas d'angle pour la rotation de la tête car ne bouge pas
int DEServoITete = 90; // OK
int DEServoIYeux = 70; //?
int DEServoRYeux = 70; //?
int DEServoFYeux = 10; // OK
int DEServoOBoucheB = 70; //?
int DEServoOBoucheH = 70; //?
// Définition pins autres
int PinBuzzer = 4;
// Définition pins Leds
int PinLedPower = 8;
int PinLedStatus = 9;
int PinLedDebug = 5;
// Définition pins HC-SR04
int PinHCTrigger = 7;
int PinHCEcho = 6;
// Définition pins servos Pin = Pin, S = Servo-moteur, R= Rotation, O = Ouverture, B = Bas, H = Haut, I = Inclinaison, F = Fermeture
int PinSRTete = 3; // Rotation de la tête
int PinSITete = 17; //Inclinaison tête
int PinSIYeux = 16; // Inclinaison des yeux
int PinSRYeux = 15; // Rotation des yeux
int PinSFYeux = 14; // Fermeture des paupières
int PinSOBoucheB = 18; // Lèvre bas //?
int PinSOBoucheH = 19; // Lèvre haut //?
// Définition servos
Servo ServoRTete; // Rotation de la tête
Servo ServoITete; //Inclinaison tête
Servo ServoIYeux; // Inclinaison des yeux
Servo ServoRYeux; // Rotation des yeux
Servo ServoFYeux; // Fermeture des paupières
Servo ServoOBoucheB; // Lèvre bas
Servo ServoOBoucheH; // Lèvre haut
// Variables pour le HC-SR04
long lecho; // Variable de lecture de l'echo
long cm; // Variable pour passer en cm
// Écran
const int tps = 150; // temps d'attente pour l'écran en ms
LiquidCrystal_I2C lcd(0x27, 20, 4); // Définition des pins de communication entre l'écran et l'Arduino (20 (Data), 21 (Fréquence))
byte pacman[] = {
B00000,
B00000,
B00000,
B01110,
B11011,
B11111,
B11100,
B01110
};
byte ball[] = {
B00000,
B00000,
B00000,
B00000,
B00000,
B01100,
B01100,
B00000
};
byte clear[] = {
B00000,
B00000,
B00000,
B00000,
B00000,
B00000,
B00000,
B00000
};
void setup()
{
// Initialisation Serial
//Serial.begin(1200); // Lancement moniteur série pour débug A désactiver une fois fini pour opti
//Serial.print("Chargement termine !"); // Annonce fin du chargement sur le serial
// Définifition des pinModes
//HC-SR04
pinMode(PinHCTrigger, OUTPUT); // Trigger HC-SR04
pinMode(PinHCEcho, INPUT); // Echo HC-SR04
//LEDS
pinMode(PinLedPower, OUTPUT); // Led Power
pinMode(PinLedStatus, OUTPUT); // Led Statut
pinMode(PinLedDebug, OUTPUT); // Led DEBUG
//Autres
pinMode(PinBuzzer, OUTPUT); //Buzzer
// Lien pins avec les servos
ServoRTete.attach(PinSRTete);
ServoITete.attach(PinSITete);
ServoIYeux.attach(PinSIYeux);
ServoRYeux.attach(PinSRYeux);
ServoFYeux.attach(PinSFYeux);
ServoOBoucheB.attach(PinSOBoucheB);
ServoOBoucheH.attach(PinSOBoucheH);
digitalWrite(PinLedPower, HIGH); // Activation Led Power
// Indication sonore
tone(PinBuzzer, NOTE_D4, 300);
delay(500);
tone(PinBuzzer, NOTE_D4, 300);
// Démarrage de l'écran
lcd.init();
lcd.backlight();
lcd.createChar(1, pacman);
lcd.createChar(2, ball);
lcd.createChar(3, clear);
lcd.begin(16, 2);
lcd.setCursor(4,0);
lcd.print("Demarrage");
lcd.setCursor(1,1);
lcd.write((byte)1);
lcd.setCursor(3,1);
lcd.write((byte)2);
lcd.setCursor(5,1);
lcd.write((byte)2);
lcd.setCursor(7,1);
lcd.write((byte)2);
lcd.setCursor(9,1);
lcd.write((byte)2);
lcd.setCursor(11,1);
lcd.write((byte)2);
lcd.setCursor(13,1);
lcd.write((byte)2);
// Initialisation de la position des servos
ServoRTete.write(AEServoRTete);
delay(200); /*
ServoITete.write(AEServoITete);
delay(1000);
ServoIYeux.write(AEServoIYeux);
delay(1000);
ServoRYeux.write(AEServoRYeux);
delay(1000);
ServoFYeux.write(AEServoFYeux);
delay(1000);
ServoOBoucheB.write(AEServoOBoucheB);
delay(1000);
ServoOBoucheH.write(AEServoOBoucheH);
delay(1000); */
delay(500);
for(int i = 1; i < 14; i++)
{
lcd.setCursor(i,1);
lcd.write((byte)1);
delay(tps);
lcd.setCursor(i,1);
lcd.write((byte)3);
delay(tps);
}
lcd.clear();
thumbsup();
//digitalWrite(PinLedPower, LOW); // Reste désormais active
digitalWrite(PinLedStatus, HIGH); // Allume la LED verte
delay(1000);
systemop();
}
// Définition du pouce en l'air une fois le chargement fini
void thumbsup()
{
byte thumb1[8] = {B00100,B00011,B00100,B00011,B00100,B00011,B00010,B00001};
byte thumb2[8] = {B00000,B00000,B00000,B00000,B00000,B00000,B00000,B00011};
byte thumb3[8] = {B00000,B00000,B00000,B00000,B00000,B00000,B00001,B11110};
byte thumb4[8] = {B00000,B01100,B10010,B10010,B10001,B01000,B11110,B00000};
byte thumb5[8] = {B00010,B00010,B00010,B00010,B00010,B01110,B10000,B00000};
byte thumb6[8] = {B00000,B00000,B00000,B00000,B00000,B10000,B01000,B00110};
lcd.createChar(4, thumb1);
lcd.createChar(5, thumb2);
lcd.createChar(6, thumb3);
lcd.createChar(7, thumb4);
lcd.createChar(8, thumb5);
lcd.createChar(9, thumb6);
lcd.setCursor(6,1);
lcd.write((byte)4);
lcd.setCursor(6,0);
lcd.write((byte)5);
lcd.setCursor(7,1);
lcd.write((byte)6);
lcd.setCursor(7,0);
lcd.write((byte)7);
lcd.setCursor(8,1);
lcd.write((byte)8);
lcd.setCursor(8,0);
lcd.write((byte)9);
}
// Définition de l'affichage "système démarré" de l'écran + Welcoming musical
void systemop()
{
lcd.home();
lcd.setCursor(5,0);
lcd.print("Systeme");
lcd.setCursor(5,1);
lcd.print("demarre");
// Welcoming sonore
tone(PinBuzzer, NOTE_G4, 200);
delay(400);
tone(PinBuzzer, NOTE_A4, 200);
delay(400);
tone(PinBuzzer, NOTE_B4, 200);
delay(1000);
lcd.clear();
}
void loop()
{
detection(); // OOOOOPTIIIIMIIIISAAATIOOON
activation();
}
void detection() //Utilisation du HC-SR04
{
digitalWrite(PinHCTrigger, HIGH); // Activation Trigger HC-SR04
delay(10); // Attente de 10ms
digitalWrite(PinHCTrigger, LOW); // Désactivation Trigger HC-SR04
lecho = pulseIn(PinHCEcho, HIGH); //Récupération Echo
// Peut être une opti en rajoutant digitalWrite(PinHCEcho, LOW) car jamais désactivé ?
cm = lecho /58; // Conversion Echo en cm
//Serial.println(cm); Debug avec affichage de la distance en serial
}
// Lecture de la distance et affichage ou non d'un message sur l'écran + activation LED
void activation()
{
if (cm <= 15) // Distance d'activation
{
//delay(500);
digitalWrite(PinLedDebug, HIGH); // Activation LED détection
// Positionnement des servos en actif
ServoITete.write(AEServoITete);
delay(200);
ServoIYeux.write(AEServoIYeux);
delay(200);
ServoRYeux.write(AEServoRYeux);
delay(200);
ServoFYeux.write(AEServoFYeux);
delay(200);
ServoOBoucheB.write(AEServoOBoucheB);
delay(200);
ServoOBoucheH.write(AEServoOBoucheH);
// Affichage sur l'écran
lcd.setCursor(4,0);
lcd.print ("BONJOUR,");
delay(1000);
lcd.clear();
lcd.print("COMMENT PUIS-JE");
lcd.setCursor(3,1);
lcd.print("VOUS AIDER ?");
delay(1000);
lcd.clear();
}
else
{
// Positionnement des servos en repos
ServoITete.write(DEServoITete);
delay(200);
ServoIYeux.write(DEServoIYeux);
delay(200);
ServoRYeux.write(DEServoRYeux);
delay(200);
ServoFYeux.write(DEServoFYeux);
delay(200);
ServoOBoucheB.write(DEServoOBoucheB);
delay(200);
ServoOBoucheH.write(DEServoOBoucheH);
digitalWrite(PinLedDebug, LOW); // Désactivation LED détection
}
}
|
25cbe647183f5aa9627e5b5719b5b357f41bb1d1 | 35e314e3f3981259fad3bc5fb6de0c0475fdda05 | /linux_c/IPC/read_write_lock/read_write.cpp | 6235f6839d2521b55edcc4b3d645ff143a990e3a | [] | no_license | isliulin/iwork | 708ae59cdabc0c719386dc176db2cd4164e23252 | a114e460dead6ef54bf1b92af36d1b9e4de389bf | refs/heads/master | 2023-04-14T10:03:57.089975 | 2021-05-01T12:34:34 | 2021-05-01T12:34:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,660 | cpp | read_write.cpp | #include"read_write.h"
using namespace std;
rdlock::rdlock(int inum)
{
iNum=inum;
}
rdlock::~rdlock()
{
}
void* rdlock::pthread_fun(void *ags)
{
while(1)
{
pthread_rwlock_rdlock(&rwlock);
cout<<"read thread----"<<iNum<<"----count:"<<(var.count)<<endl;
pthread_rwlock_unlock(&rwlock);
sleep(1);
}
}
wrlock::wrlock(int inum)
{
iNum=inum;
}
wrlock::~wrlock()
{
}
void* wrlock::pthread_fun(void *ags)
{
while(1)
{
pthread_rwlock_wrlock(&rwlock);
if(iNum<(var.ipriority))
{
pthread_rwlock_unlock(&rwlock);
var.ipriority=iNum;
continue;
}
else
{
var.ipriority=iNum;
var.count++;
cout<<"write thread####"<<iNum<<"#####"<<endl;
}
pthread_rwlock_unlock(&rwlock);
sleep(2);
}
}
int main(int argc ,char *argv[])
{
pthread_t thread[6];
rdlock *rd;
wrlock *wr;
int ires;
for(int iTrun=0; iTrun<3;iTrun++)
{
//read thread
rd=new rdlock(iTrun);
ires=pthread_create(&thread[iTrun],NULL, rd->pthread_fun,NULL);
if(ires !=0)
{
cout<<"create read--"<<iTrun<<"--thread error"<<endl;
}
else
{
cout<<"create read--"<<iTrun<<"--thread ok"<<endl;
}
// write thread
wr=new wrlock(iTrun+3);
ires=pthread_create(&thread[iTrun+3],NULL, wr->pthread_fun,NULL);
if(ires !=0)
{
cout<<"create write--"<<iTrun+3<<"--thread error"<<endl;
}
else
{
cout<<"create write--"<<iTrun+3<<"--thread ok"<<endl;
}
}
sleep(60);
}
|
56b56c3074d2110384d8de5efd5bf7126a27ab22 | d1082dbc7c8f99234bfc18f7119b541460bb7d7d | /distributed/utils.h | 606f05d54d2d2fe84dfd141ea171b46f4ff306dd | [] | no_license | mirceadino/pdp-filters | 48207b4aca227bb70fad9b969fda9dbe6e1cdbcd | f5e8c38027980094d971da6a8848a9f1e361fc40 | refs/heads/master | 2021-05-05T16:17:45.542462 | 2018-01-13T14:56:30 | 2018-01-13T14:56:30 | 117,346,064 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,255 | h | utils.h | #ifndef PDP_PROJECT_UTILS_
#define PDP_PROJECT_UTILS_
#include <bits/stdc++.h>
#include <Magick++.h>
#include <mpi.h>
#include "matrix.h"
template<typename T>
struct RgbMatrix {
RgbMatrix(int h, int w):
height(h), width(w), red(h, w), green(h, w), blue(h, w) {}
int height, width;
Matrix<T> red;
Matrix<T> green;
Matrix<T> blue;
};
RgbMatrix<int> ImageToRgbMatrix(const Magick::Image& image) {
const int h = image.rows();
const int w = image.columns();
RgbMatrix<int> matrix(h, w);
for (int i = 0; i < h; ++i) {
for (int j = 0; j < w; ++j) {
Magick::Color color = image.pixelColor(j, i);
const int rvalue = color.quantumRed() * 1LL * 255 / QuantumRange;
const int gvalue = color.quantumGreen() * 1LL * 255 / QuantumRange;
const int bvalue = color.quantumBlue() * 1LL * 255 / QuantumRange;
matrix.red[i][j] = rvalue;
matrix.green[i][j] = gvalue;
matrix.blue[i][j] = bvalue;
}
}
return matrix;
}
Magick::Image RgbMatrixToImage(const RgbMatrix<int>& matrix) {
const int h = matrix.height;
const int w = matrix.width;
Magick::Image image(Magick::Geometry(w, h), "white");
for (int i = 0; i < h; ++i) {
for (int j = 0; j < w; ++j) {
const int rvalue = matrix.red[i][j] * 1LL * QuantumRange / 255;
const int gvalue = matrix.green[i][j] * 1LL * QuantumRange / 255;
const int bvalue = matrix.blue[i][j] * 1LL * QuantumRange / 255;
Magick::Color color(rvalue, gvalue, bvalue);
image.pixelColor(j, i, color);
}
}
return image;
}
RgbMatrix<int> Crop(const RgbMatrix<int>& matrix, int x0, int y0, int x1,
int y1) {
const int h = x1 - x0;
const int w = y1 - y0;
RgbMatrix<int> output(h, w);
output.red = matrix.red.crop(x0, y0, x1, y1);
output.green = matrix.green.crop(x0, y0, x1, y1);
output.blue = matrix.blue.crop(x0, y0, x1, y1);
return output;
}
void Expand(const RgbMatrix<int>& new_matrix, RgbMatrix<int>* old_matrix) {
old_matrix->red.expand(new_matrix.red);
old_matrix->green.expand(new_matrix.green);
old_matrix->blue.expand(new_matrix.blue);
old_matrix->height += new_matrix.height;
}
void MPI_RecvVector(std::vector<int>* vector, int source) {
MPI_Status status;
int num_elements;
int* elements;
MPI_Recv(&num_elements, 1, MPI_INT, source, MPI_ANY_TAG, MPI_COMM_WORLD,
&status);
elements = new int[num_elements];
MPI_Recv(elements, num_elements, MPI_INT, source, MPI_ANY_TAG, MPI_COMM_WORLD,
&status);
*vector = std::vector<int>(elements, elements + num_elements);
delete elements;
}
void MPI_SendVector(const std::vector<int>& vector, int destination) {
int num_elements = vector.size();
const int* elements = vector.data();
MPI_Send(&num_elements, 1, MPI_INT, destination, 123, MPI_COMM_WORLD);
MPI_Send(elements, num_elements, MPI_INT, destination, 123, MPI_COMM_WORLD);
}
void MPI_RecvMatrix(Matrix<int>* matrix, int source) {
MPI_Status status;
int height;
int width;
MPI_Recv(&height, 1, MPI_INT, source, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
MPI_Recv(&width, 1, MPI_INT, source, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
std::vector<std::vector<int>> rows(height, std::vector<int>(width, 0));
for (int i = 0; i < height; ++i) {
MPI_RecvVector(&rows[i], source);
}
(*matrix) = Matrix<int>(rows);
}
void MPI_SendMatrix(const Matrix<int>& matrix, int destination) {
int height = matrix.h();
int width = matrix.w();
MPI_Send(&height, 1, MPI_INT, destination, 123, MPI_COMM_WORLD);
MPI_Send(&width, 1, MPI_INT, destination, 123, MPI_COMM_WORLD);
for (int i = 0; i < height; ++i) {
MPI_SendVector(matrix[i], destination);
}
}
void MPI_RecvRgbMatrix(RgbMatrix<int>* rgb_matrix, int source) {
MPI_RecvMatrix(&rgb_matrix->red, source);
MPI_RecvMatrix(&rgb_matrix->green, source);
MPI_RecvMatrix(&rgb_matrix->blue, source);
rgb_matrix->height = rgb_matrix->red.h();
rgb_matrix->width = rgb_matrix->red.w();
}
void MPI_SendRgbMatrix(const RgbMatrix<int>& rgb_matrix, int destination) {
MPI_SendMatrix(rgb_matrix.red, destination);
MPI_SendMatrix(rgb_matrix.green, destination);
MPI_SendMatrix(rgb_matrix.blue, destination);
}
#endif // PDP_PROJECT_UTILS_
|
ee3c38e03db76b9eabef2ef75ec29dca46344d81 | 8ed682d563f78668f9fdffc4208c3b00e8048fe9 | /genShpIMG.cpp | 38665182541c450c6a10ae724ff8ceafe50633ce | [] | no_license | xialang2012/AircraftsFinder | cf82efe7e118931e83a7b7541f2739dfd13fa0d6 | 86a5abc0f9800cdb6b126e357b7a3d84dc17aabe | refs/heads/master | 2020-03-24T09:04:47.726351 | 2018-08-19T15:50:08 | 2018-08-19T15:50:08 | 142,617,866 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,704 | cpp | genShpIMG.cpp | #include "genShpIMG.h"
// reference http://www.gdal.org/ogr_apitut.html
int HandleShpFile::initShp()
{
const char *pszDriverName = "ESRI Shapefile";
//GDALDriver *poDriver;
GDALAllRegister();
poDriver = GetGDALDriverManager()->GetDriverByName(pszDriverName);
if (poDriver == NULL)
{
std::cout << "driver not available" << pszDriverName << std::endl;
return -1;
}
//GDALDataset *poDS;
poDS = poDriver->Create(shpName.c_str(), 0, 0, 0, GDT_Unknown, NULL);
if (poDS == NULL)
{
std::cout << "Creation of output file failed" << std::endl;
return -1;
}
poSpatialRef = new OGRSpatialReference();
poSpatialRef->importFromEPSG(4326);
poLayer = poDS->CreateLayer("Aircrafts", poSpatialRef, wkbPoint, NULL);
if (poLayer == NULL)
{
std::cout << "Layer creation failed" << std::endl;
return -1;
}
OGRFieldDefn oField("sceneId", OFTString);
oField.SetWidth(32);
if (poLayer->CreateField(&oField) != OGRERR_NONE)
{
std::cout << "Creating Name field failed" << std::endl;
return -1;
}
OGRFieldDefn oField1("aircrafts", OFTInteger);
oField1.SetWidth(8);
if (poLayer->CreateField(&oField1) != OGRERR_NONE)
{
std::cout << "Creating Name field failed" << std::endl;
return -1;
}
return 0;
}
int HandleShpFile::closeShp()
{
return 0;
}
int HandleShpFile::addToShp(const std::vector<double> &lats, const std::vector<double> &lons, const std::string &sceneId)
{
for (int i = 0; i < lons.size(); ++i)
{
double x = lons[i], y = lats[i];
OGRFeature *poFeature;
poFeature = OGRFeature::CreateFeature(poLayer->GetLayerDefn());
poFeature->SetField("sceneId", sceneId.c_str());
poFeature->SetField("aircrafts", static_cast<int>(lons.size()));
//OGRLinearRing
OGRPoint pt;
pt.setX(x);
pt.setY(y);
poFeature->SetGeometry(&pt);
if (poLayer->CreateFeature(poFeature) != OGRERR_NONE)
{
std::cout << "Failed to create feature in shapefile" << std::endl;
OGRFeature::DestroyFeature(poFeature);
return -1;
}
OGRFeature::DestroyFeature(poFeature);
}
return 0;
}
HandleShpFile::~HandleShpFile()
{
poSpatialRef->Release();
GDALClose(poDS);
}
int CreateLineShp::initShp()
{
const char *pszDriverName = "ESRI Shapefile";
GDALAllRegister();
poDriver = GetGDALDriverManager()->GetDriverByName(pszDriverName);
if (poDriver == NULL)
{
std::cout << "driver not available" << pszDriverName << std::endl;
return -1;
}
//GDALDataset *poDS;
poDS = poDriver->Create(shpName.c_str(), 0, 0, 0, GDT_Unknown, NULL);
if (poDS == NULL)
{
std::cout << "Creation of output file failed" << std::endl;
return -1;
}
poSpatialRef = new OGRSpatialReference();
poSpatialRef->importFromEPSG(4326);
poLayer = poDS->CreateLayer("Aircrafts", poSpatialRef, wkbLineString, NULL);
if (poLayer == NULL)
{
std::cout << "Layer creation failed" << std::endl;
return -1;
}
OGRFieldDefn oField("sceneId", OFTString);
oField.SetWidth(32);
if (poLayer->CreateField(&oField) != OGRERR_NONE)
{
std::cout << "Creating Name field failed" << std::endl;
return -1;
}
return 0;
}
int CreateLineShp::addToShp(const std::vector<double> &lats, const std::vector<double> &lons, const std::string &sceneId)
{
OGRFeature *poFeature;
poFeature = OGRFeature::CreateFeature(poLayer->GetLayerDefn());
poFeature->SetField("sceneId", sceneId.c_str());
double z = 0;
if (abs(lons[1] - lons[3]) > 180)
{
return 0;
// left
OGRLineString ptLeft;
double x = 0, y = 0;
for (int i = 0; i < lons.size(); ++i)
{
if (i == 1 || i == 2)
{
if (lons[i] > 0)
{
x = 180;
}
else
{
y = -180;
}
y = lats[i];
}
else
{
x = lons[i], y = lats[i];
}
ptLeft.addPoint(x, y, z); std::cout << "left" << x << y << z << std::endl;
}
ptLeft.addPoint(lons[0], lats[0], z);
poFeature->SetGeometry(&ptLeft);
// right
OGRLineString ptRight;
for (int i = 0; i < lons.size(); ++i)
{
if (i == 0 || i == 3)
{
if (lons[i] > 0)
{
x = 180;
}
else
{
y = -180;
}
y = lats[i];
}
else
{
x = lons[i], y = lats[i];
}
ptRight.addPoint(x, y, z); std::cout << "right" << x << y << z << std::endl;
}
ptRight.addPoint(-180, lats[0], z);
poFeature->SetGeometry(&ptRight);
}
else
{
OGRLineString pt;
for (int i = 0; i < lons.size(); ++i)
{
double x = lons[i], y = lats[i];
pt.addPoint(x, y, z);
}
pt.addPoint(lons[0], lats[0], z);
poFeature->SetGeometry(&pt);
}
if (poLayer->CreateFeature(poFeature) != OGRERR_NONE)
{
std::cout << "Failed to create feature in shapefile" << std::endl;
OGRFeature::DestroyFeature(poFeature);
return -1;
}
OGRFeature::DestroyFeature(poFeature);
return 0;
}
CreateLineShp::~CreateLineShp()
{
}
int CreateLineShp::closeShp()
{
poSpatialRef->Release();
GDALClose(poDS);
return 0;
}
void getCenterPoint(const UINT16* bandCirrus, const BYTE* resultQA, const int &cols, const int &rows, BYTE *finalAircraft, std::vector<int> &finalAircraftsIndex)
{
int padLeft = 10;
int padTop = 10;
//
int maxBandCirrus = 0;
int rowOneAircraft = 0, colOneAircraft = 0;
//
for (int row = padLeft; row < rows - padLeft; ++row)
{
//std::cout << row << std::endl;
for (int col = padTop; col < cols - padTop; ++col)
{
if (resultQA[row * cols + col] == 1.0)
{
if (finalAircraft[row * cols + col] != 0) continue;
maxBandCirrus = 0;
for (int tmpRow = row - 3; tmpRow < row + 3; ++tmpRow)
{
for (int tmpCol = col - 3; tmpCol < col + 3; ++tmpCol)
{
if (resultQA[tmpRow * cols + tmpCol] == 1.0)
{
finalAircraft[tmpRow * cols + tmpCol] = 2;
if (bandCirrus[tmpRow * cols + tmpCol] > maxBandCirrus)
{
maxBandCirrus = bandCirrus[tmpRow * cols + tmpCol];
rowOneAircraft = tmpRow;
colOneAircraft = tmpCol;
}
}
}
}
// add to tmpIndex
finalAircraft[rowOneAircraft*cols + colOneAircraft] = 1;
finalAircraftsIndex.push_back(rowOneAircraft*cols + colOneAircraft);
}
}
}
}
//
int aircraftToLatLonPoint(std::vector<double> &lons, std::vector<double> &lats, const int &cols,
const OGRSpatialReference &inRef, const double *adfDstGeoTransform, std::vector<int> &finalAircraftsIndex)
{
int count = finalAircraftsIndex.size();
int col, row;
double dProjX, dProjY;
OGRSpatialReference* poSpatialRef = new OGRSpatialReference();
poSpatialRef->importFromEPSG(4326);
OGRCoordinateTransformation *coordTrans;
coordTrans = OGRCreateCoordinateTransformation(const_cast<OGRSpatialReference *>(&inRef), const_cast<OGRSpatialReference *>(poSpatialRef));
int aircraftCount = 0;
for (int i = 0; i < count; ++i)
{
if (finalAircraftsIndex[i] == 0) continue;
col = finalAircraftsIndex[i] % cols;
row = floor(finalAircraftsIndex[i] / float(cols));
// get cordination for the row and col, then convert to geographic location
++aircraftCount;
ImageRowCol2Projection(adfDstGeoTransform, col, row, dProjX, dProjY);
coordTrans->Transform(1, &dProjX, &dProjY);
lats.push_back(dProjY);
lons.push_back(dProjX);
}
coordTrans->DestroyCT(coordTrans);
poSpatialRef->Release();
return aircraftCount;
}
inline void ImageRowCol2Projection(const double *adfGeoTransform, const int iCol, const int iRow, double &dProjX, double &dProjY)
{
dProjX = adfGeoTransform[0] + adfGeoTransform[1] * iCol + adfGeoTransform[2] * iRow;
dProjY = adfGeoTransform[3] + adfGeoTransform[4] * iCol + adfGeoTransform[5] * iRow;
}
// expand aircraft pixel for bettter visualization
int fillAround(const BYTE* finalAircraft, const UINT16* bandCirrus, BYTE* jpgData, const int& cols, const int & rows)
{
int padLeft = 25;
int aircraftCount = 0;
//
for (int row = padLeft; row < rows - padLeft; ++row)
{
for (int col = padLeft; col < cols - padLeft; ++col)
{
// color for aircraft of RGB(255, 0, 0)
if (finalAircraft[row*cols + col] == 1)
{
++aircraftCount;
//jpgData[i - padLeft:i + padLeft, j - padLeft : j + padLeft]
for (int tmpRow = row - padLeft; tmpRow <= row + padLeft; ++tmpRow)
{
for (int tmpCol = col - padLeft; tmpCol <= col + padLeft; ++tmpCol)
{
jpgData[tmpRow*cols + tmpCol] = 1;
//std::cout << "f" << std::endl;
}
}
}
// borde of image
int tmpPadLeft = padLeft / 8;
if ((bandCirrus[row*cols + col] == 0) && (bandCirrus[row*cols + col + 1] != 0))
{
//jpgData[i - padLeft / 8:i + padLeft / 8, j - padLeft / 8 : j + padLeft / 8] = 1;
for (int tmpRow = row - tmpPadLeft; tmpRow <= row + tmpPadLeft; ++tmpRow)
{
for (int tmpCol = col - tmpPadLeft; tmpCol <= col + tmpPadLeft; ++tmpCol)
{
jpgData[tmpRow*cols + tmpCol] = 0;
}
}
}
if ((bandCirrus[row*cols + col] != 0) && (bandCirrus[row*cols + col + 1] == 0))
{
//jpgData[i - padLeft / 8:i + padLeft / 8, j - padLeft / 8 : j + padLeft / 8] = 1;
for (int tmpRow = row - tmpPadLeft; tmpRow <= row + tmpPadLeft; ++tmpRow)
{
for (int tmpCol = col - tmpPadLeft; tmpCol <= col + tmpPadLeft; ++tmpCol)
{
jpgData[tmpRow*cols + tmpCol] = 0;
}
}
}/**/
}
}
return aircraftCount;
}
int getBorder(const UINT16* bandCirrus, const int cols, const int rows, std::vector<int>& borderPoints)
{
// top bottom
int rowTop = 0, rowBottom = rows - 1, flag=0;
// left right
int colLeft = 0, colRight = cols - 1;
// top
for (rowTop = 0; rowTop < rows; ++rowTop)
{
if (flag != 0)break;
for (int col = 0; col < cols; ++col)
{
if (bandCirrus[rowTop*cols + col] != 0)
{
borderPoints.push_back(rowTop*cols + col);
//borderX.push_back(col);
//borderY.push_back(rowTop);
flag++; break;
}
}
}
// right
flag = 0;
for (colRight = cols - 1; colRight > 0; --colRight)
{
if (flag != 0)break;
for (int row = 0; row < rows; ++row)
{
if (bandCirrus[row*cols + colRight] != 0)
{
borderPoints.push_back(row*cols + colRight);
//borderX.push_back(colRight);
//borderY.push_back(row);
flag++; break;
}
}
}
// bottom
flag = 0;
for (rowBottom = rows-1; rowBottom > 0; --rowBottom)
{
if (flag != 0)break;
for (int col = 0; col < cols; ++col)
{
if (bandCirrus[rowBottom*cols + col] != 0)
{
borderPoints.push_back(rowBottom*cols + col);
//borderX.push_back(col);
//borderY.push_back(rowBottom);
flag++; break;
}
}
}
// left
flag = 0;
for (colLeft = 0; colLeft < cols; ++colLeft)
{
if (flag != 0)break;
for (int row = 0; row < rows; ++row)
{
if (bandCirrus[row*cols + colLeft] != 0)
{
borderPoints.push_back(row*cols + colLeft);
//borderX.push_back(colLeft);
//borderY.push_back(row);
flag++; break;
}
}
}
return 0;
}
|
8f708a68bc33aa6696645916c20a3415292b1297 | 976dba6b51a110e7722bf201de54ce7bef5fd90b | /src/prototypes.h | 7e4bce685dad7c93688c2e088c6fd19e3646b9a5 | [] | no_license | Antollo/Starship-battle | ba54942a76ae06dc5f276351066e6211315eabd9 | 67b519b36e765c488984afe3464f82965aa91832 | refs/heads/master | 2023-04-02T04:57:07.384869 | 2023-03-23T23:04:20 | 2023-03-23T23:10:31 | 175,684,293 | 2 | 0 | null | 2022-12-09T07:30:22 | 2019-03-14T19:13:54 | C++ | UTF-8 | C++ | false | false | 1,607 | h | prototypes.h | #ifndef PROTOTYPES_H
#define PROTOTYPES_H
#include <vector>
#include <SFML/System/Angle.hpp>
#include <Box2D.h>
#include "Vec2f.h"
#include "Rng.h"
#include "Shape.h"
class Prototype
{
public:
std::vector<Vec2f> points;
};
class BulletPrototype
{
public:
b2PolygonShape shape;
std::vector<Vec2f> points;
Vec2f origin;
Shape::IdType shapeId;
float damage;
float penetration;
};
class TurretPrototype
{
public:
BulletPrototype bulletPrototype;
std::vector<Vec2f> points;
Vec2f origin;
sf::Angle maxAngle;
float bulletVelocity;
float accuracy;
Shape::IdType shapeId;
mutable Rng::Normal rng;
};
class PositionedTurretPrototype
{
public:
const TurretPrototype *turretPrototype;
Vec2f position;
};
class ShieldPrototype
{
public:
b2PolygonShape shape;
std::vector<Vec2f> points;
Vec2f origin;
Vec2f position;
Shape::IdType shapeId;
};
class SpaceshipPrototype
{
public:
float linearDamping;
float angularDamping;
float force;
float torque;
float friction;
float density;
std::vector<float> reload;
float hp;
float armor;
std::vector<Vec2f> points;
b2PolygonShape shape;
Shape::IdType shapeId;
Vec2f origin;
std::vector<PositionedTurretPrototype> turrets;
std::vector<ShieldPrototype> shields;
};
void from_json(const json &j, TurretPrototype &proto);
void from_json(const json &j, PositionedTurretPrototype &proto);
void from_json(const json &j, ShieldPrototype &proto);
void from_json(const json &j, SpaceshipPrototype &proto);
#endif /* PROTOTYPES_H */
|
34e1f9f0c19f218bab5872f4d2e10ef23cbbefb4 | 29350ae125a99d31939b08e43020ed37f00beb1f | /Sandbox/src/Sandbox2D.cpp | 8e3a5d2ddbf6100198c47fe164406df9c2f4b912 | [
"MIT"
] | permissive | hesseb/Crystal | c80b7a2c33271e68ffbdc417b4b3ee2e2d179696 | 5c759a8b2db7d15a234238127c5ab9e9726ac467 | refs/heads/main | 2022-11-14T12:04:09.701051 | 2020-07-06T22:52:36 | 2020-07-06T22:52:36 | 274,138,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,906 | cpp | Sandbox2D.cpp | #include "Sandbox2D.h"
#include <imgui/imgui.h>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
Sandbox2D::Sandbox2D()
: Layer("Sandbox2D"), m_CameraController(16.0f / 9.0f, true)
{
}
void Sandbox2D::OnAttach()
{
CR_PROFILE_FUNCTION();
m_CheckerboardTexture = Crystal::Texture2D::Create("assets/textures/Checkerboard.png");
m_SpriteTexture = Crystal::Texture2D::Create("assets/textures/head.png");
}
void Sandbox2D::OnDetach()
{
CR_PROFILE_FUNCTION();
}
void Sandbox2D::OnUpdate(Crystal::Timestep ts)
{
CR_PROFILE_FUNCTION();
//Update
m_CameraController.OnUpdate(ts);
Crystal::Renderer2D::ResetStats();
{
CR_PROFILE_SCOPE("Renderer Prep");
//Render
Crystal::RenderCommand::SetClearColor({ 0.1f, 0.1f, 0.1f, 1 });
Crystal::RenderCommand::Clear();
}
/*
{
int side = 50;
static float rotation = 0.0f;
rotation += (float)ts * 50.0f;
CR_PROFILE_SCOPE("Renderer Draw");
Crystal::Renderer2D::BeginScene(m_CameraController.GetCamera());
Crystal::Renderer2D::DrawQuad({ 0.0f, 0.0f, -0.6f }, { 10.0f, 10.0f }, m_CheckerboardTexture, 10.0f);
for (int j = 0; j < side; j++)
{
for (int i = 0; i < side; i++)
{
Crystal::Renderer2D::DrawQuad({ (float)i * 0.12f - 2.0f, (float)j * 0.12f - 2.0f, -0.2f }, { 0.1f, 0.1f },
{i * 1.0f/side, j * 1.0f/side, 0.5f, 1.0f});
}
}
Crystal::Renderer2D::DrawQuad({ 0.0f, 2.1f }, { 1.0f, 1.0f }, m_SquareColorB);
Crystal::Renderer2D::DrawQuad({ -5.0f, -0.5f, -0.1f }, { 1.0f, 1.0f }, m_SpriteTexture, 1.0f);
Crystal::Renderer2D::DrawRotatedQuad({ -0.5f, -0.5f, -0.1f }, { 1.0f, 1.0f }, -45.0f, m_SpriteTexture, 1.0f);
Crystal::Renderer2D::DrawRotatedQuad({ 2.1f, 0.0f }, { 1.0f, 1.0f }, rotation, m_SquareColorA);
Crystal::Renderer2D::DrawQuad({ 0.0f, 0.0f }, { 1.0f, 1.0f }, m_SquareColorA);
Crystal::Renderer2D::EndScene();
}
*/
{
static float rotation = 0.0f;
rotation += (float)ts * 50.0f;
CR_PROFILE_SCOPE("Renderer Draw");
Crystal::Renderer2D::BeginScene(m_CameraController.GetCamera());
Crystal::Renderer2D::DrawRotatedQuad({ 1.0f, 0.0f }, { 0.8f, 0.8f }, -45.0f, { 0.8f, 0.2f, 0.3f, 1.0f });
Crystal::Renderer2D::DrawQuad({ -1.0f, 0.0f }, { 0.8f, 0.8f }, { 0.8f, 0.2f, 0.3f, 1.0f });
Crystal::Renderer2D::DrawQuad({ 0.5f, -0.5f }, { 0.5f, 0.75f }, { 0.2f, 0.3f, 0.8f, 1.0f });
Crystal::Renderer2D::DrawQuad({ 0.0f, 0.0f, -0.1f }, { 10.0f, 10.0f }, m_CheckerboardTexture, 10.0f);
Crystal::Renderer2D::DrawQuad({ 0.0f, 0.0f, -0.1f }, { 20.0f, 20.0f }, m_CheckerboardTexture, 10.0f);
Crystal::Renderer2D::EndScene();
Crystal::Renderer2D::BeginScene(m_CameraController.GetCamera());
for (float y = -5.0f; y < 5.0f; y += 0.5f)
{
for (float x = -5.0f; x < 5.0f; x += 0.5f)
{
glm::vec4 color = { (x + 5.0f) / 10.0f, 0.4f, (y + 5.0f) / 10.0f, 0.7f };
Crystal::Renderer2D::DrawQuad({ x, y }, { 0.45f, 0.45f }, color);
}
}
Crystal::Renderer2D::DrawRotatedQuad({ -2.0f, 0.0f, 0.1f }, { 1.0f, 1.0f }, rotation, m_SpriteTexture, 1.0f);
Crystal::Renderer2D::EndScene();
}
}
void Sandbox2D::OnImGuiRender()
{
CR_PROFILE_FUNCTION();
ImGui::Begin("Settings");
ImGui::ColorEdit4("Square A Color", glm::value_ptr(m_SquareColorA));
ImGui::ColorEdit4("Square B Color", glm::value_ptr(m_SquareColorB));
auto stats = Crystal::Renderer2D::GetStats();
ImGui::Text("Renderer2D Stats:");
ImGui::Text("Draw Calls: %d", stats.DrawCalls);
ImGui::Text("Quads: %d", stats.QuadCount);
ImGui::Text("Vertices: %d", stats.GetTotalVertexCount());
ImGui::Text("Indices: %d", stats.GetTotalIndexCount());
ImGui::Text("Average frametime: %.3f ms (%.1f FPS)", 1000.0f / ImGui::GetIO().Framerate, ImGui::GetIO().Framerate);
uint32_t textureID = m_CheckerboardTexture->GetRendererID();
ImGui::Image((void*)(intptr_t)textureID, ImVec2{ 256.0f, 256.0f });
ImGui::End();
}
void Sandbox2D::OnEvent(Crystal::Event& e)
{
m_CameraController.OnEvent(e);
} |
18c1e866fec6977ad4ab8a6a571665903e98576f | cce3bf9356f1a2a0b4e6c61353a098ab63bd9802 | /BasicLibraryTest/TcpLayerProcessorTest.cpp | 80a61b9785699e7f259587b771425931df11659e | [] | no_license | k06a/RitM | ff98a1282c582fce53fa1f4e1a01615f7c95c90c | 31bb0b8a91ada54d4832a083daf295d2c01d2449 | refs/heads/master | 2020-03-12T00:25:39.644330 | 2018-04-20T11:45:07 | 2018-04-20T11:45:07 | 130,348,755 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,654 | cpp | TcpLayerProcessorTest.cpp | #include "gmock\gmock.h"
#include "gtest\gtest.h"
#include "expect_file.h"
#include "FileAdapter.h"
#include "MacHeaderProcessor.h"
#include "MacSwitch.h"
#include "TcpLayerProcessor.h"
#include "Ipv4HeaderProcessor.h"
#include "TcpHeaderProcessor.h"
#include "Ipv4Splitter.h"
#include "TcpSplitter.h"
#include "AcceptProcessor.h"
#include "TimedStarter.h"
using ::testing::_;
using ::testing::Return;
using namespace RitM;
//////////////////////////////////////////////////////////////////////////
TEST(TcpLayerProcessorTest, ConnectionEstablishing)
{
{
AdapterPtr adapter1(new FileAdapter());
GroupOptionPtr gr1 = SharedPointerCast<GroupOption>(adapter1->getOptions());
FileOpenOptionPtr infile1 = SharedPointerCast<FileOpenOption>(gr1->options_item(0));
FileOpenOptionPtr outfile1 = SharedPointerCast<FileOpenOption>(gr1->options_item(1));
infile1->setFilename("TcpLayerProcessorTest.clientSide.in.pcap");
outfile1->setFilename("TcpLayerProcessorTest.clientSide.out.pcap");
AdapterPtr adapter2(new FileAdapter());
GroupOptionPtr gr2 = SharedPointerCast<GroupOption>(adapter2->getOptions());
FileOpenOptionPtr infile2 = SharedPointerCast<FileOpenOption>(gr2->options_item(0));
FileOpenOptionPtr outfile2 = SharedPointerCast<FileOpenOption>(gr2->options_item(1));
infile2->setFilename("TcpLayerProcessorTest.serverSide.in.pcap");
outfile2->setFilename("TcpLayerProcessorTest.serverSide.out.pcap");
MacHeaderProcessorPtr mac1(new MacHeaderProcessor());
MacHeaderProcessorPtr mac2(new MacHeaderProcessor());
MacSwitchPtr macSwitch(new MacSwitch());
Ipv4SplitterPtr ipv4Splitter(new Ipv4Splitter());
Ipv4HeaderProcessorPtr ipv4Header(new Ipv4HeaderProcessor());
TcpSplitterPtr tcpSplitter(new TcpSplitter());
TcpLayerProcessorPtr tcpProcessor(new TcpLayerProcessor());
TcpHeaderProcessorPtr tcpHeader(new TcpHeaderProcessor());
AcceptProcessorPtr acceptProcessor(new AcceptProcessor());
adapter1->setNextProcessor(mac1->getPointer());
adapter2->setNextProcessor(mac2->getPointer());
mac1->setNextProcessor(macSwitch->getPointer());
mac2->setNextProcessor(macSwitch->getPointer());
macSwitch->setNextProcessor(ipv4Splitter->getPointer());
ipv4Splitter->setNextProcessor(ipv4Header->getPointer());
ipv4Header->setNextProcessor(tcpSplitter->getPointer());
tcpSplitter->setNextProcessor(tcpProcessor->getPointer());
tcpProcessor->setNextProcessor(tcpHeader->getPointer());
tcpHeader->setNextProcessor(acceptProcessor->getPointer());
adapter1->ping(ProcessorPtr());
adapter2->ping(ProcessorPtr());
// --------------------------------
StarterPtr starter(new TimedStarter());
starter->addAdapter(adapter1);
starter->addAdapter(adapter2);
starter->start();
//adapter1->run(false);
//adapter2->run(false);
//fileAdapterPairReader(adapter1, adapter2);
// --------------------------------
adapter1->DestroyHierarchy();
adapter2->DestroyHierarchy();
}
EXPECT_FILE_EQ("TcpLayerProcessorTest.clientSide.good_out.pcap",
"TcpLayerProcessorTest.clientSide.out.pcap");
EXPECT_FILE_EQ("TcpLayerProcessorTest.serverSide.good_out.pcap",
"TcpLayerProcessorTest.serverSide.out.pcap");
}
////////////////////////////////////////////////////////////////////////// |
891d3424c557cb2e999ac6d25bfa52a5cbf791f7 | ad4a9e31928834c4fc7ff75cec50e8c7af4771d3 | /old_v1/libs/solar/Solar.h | b09c9514d61fe5ffaa264bf16d6a2d2a014b1870 | [
"MIT"
] | permissive | paulfantom/pi-solar | a1d1f07688a169dc10b058d485183a4021a8b2e0 | b6a38ad40e3acfa276c7001a9727964b641c8b42 | refs/heads/master | 2020-03-07T14:22:53.619797 | 2018-12-29T19:33:48 | 2018-12-29T19:33:48 | 127,524,933 | 1 | 1 | MIT | 2018-07-22T15:45:42 | 2018-03-31T11:09:00 | HTML | UTF-8 | C++ | false | false | 1,736 | h | Solar.h | #ifndef Solar_h
#define Solar_h
#include <Arduino.h>
class Solar {
// all temperatures are multipled by 100 to avoid using floats
public:
//Solar(int pump_pin);
Solar(int pump_pin, int switch_pin);
Solar(int pump_pin, int pump_switch_pin, int switch_pin);
void setup(int solar_critical, int tank, int on, int off, int pwm_max_temp, uint8_t min_duty_cycle, uint8_t max_duty_cycle);
void update(int solar, int tank, int input, int output);
void setPID(double Kp, double Ki, double Kd);
void run();
void setCriticalDuty(uint8_t duty){_pwm_critical_duty_cycle = duty;}
uint8_t getPWM();
private:
int _valve_pin;
int _switch_pin;
int _pump_pin;
bool _state;
unsigned long int _last = 0;
unsigned int _counter = 0;
int _T;
// PID
double _Kp = 0;
double _Ki = 0;
double _Kd = 0;
double _integral = 0;
int _prev_error = 0;
// user defined values:
int _temperature_critical;
int _temperature_tank;
int _temperature_solar_on;
int _temperature_solar_off;
//int _temperature_solar_min_PWM = _temperature_solar_off;
int _temperature_solar_max_PWM;
uint8_t _pwm_min_duty_cycle;
uint8_t _pwm_max_duty_cycle;
uint8_t _pwm_critical_duty_cycle;
// values from sensors
int _T1;
int _T2;
int _T3;
int _T8;
uint8_t _pwm = 0;
int _computePID(int input, int output);
uint8_t _tempToSignal(int T);
void _setPWM(); // PWM freq = 490Hz, pin 2-13 and 44-46
void _setPWM(uint8_t val);
void _pumpOn();
void _pumpOff();
void _switchOn(){ digitalWrite(_switch_pin,HIGH); }
void _switchOff(){ digitalWrite(_switch_pin,LOW); }
};
#endif |
f6ac0b57dc63596c62a3d3f3b26565509445ae6f | ce7cd2b2f9709dbadf613583d9816c862003b38b | /SRC/engine/PETSc/petsc_preconditioner.h | dedaca3a185311e4483df8c437d742e6e62fd6d3 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | usnistgov/OOF3D | 32b01a25154443d29d0c44d5892387e8ef6146fa | 7614f8ea98a095e78c62c59e8952c0eb494aacfc | refs/heads/master | 2023-05-25T13:01:20.604025 | 2022-02-18T20:24:54 | 2022-02-18T20:24:54 | 29,606,158 | 34 | 7 | null | 2015-02-06T19:56:26 | 2015-01-21T19:04:14 | Python | UTF-8 | C++ | false | false | 1,891 | h | petsc_preconditioner.h | // -*- C++ -*-
/* This software was produced by NIST, an agency of the U.S. government,
* and by statute is not subject to copyright in the United States.
* Recipients of this software assume all responsibilities associated
* with its operation, modification and maintenance. However, to
* facilitate maintenance we ask that before distributing modified
* versions of this software, you first contact the authors at
* oof_manager@nist.gov.
*/
#ifndef PETSCPRECONDITIONER_H
#define PETSCPRECONDITIONER_H
// Headers, where art thou?
// The required headers should preceed this file when included in the implementation (.C) file
// *****************************************
// PETScII
// *****************************************
class PETScPreconditionerWrap
{
public:
PETScPreconditionerWrap()
{
}
virtual ~PETScPreconditionerWrap()
{
}
virtual void SetPCtype(PC &)=0;
};
// Use macro and token pasting, since the classes for all methods look the same
// (assume the default options for each preconditioner are used)
#define PETSCPRECONDITIONER(method) \
class PETSc##method##Preconditioner : public PETScPreconditionerWrap \
{ \
public: \
PETSc##method##Preconditioner() \
{ \
} \
virtual ~PETSc##method##Preconditioner() \
{ \
} \
virtual void SetPCtype(PC& pchandle) \
{ \
PCSetType(pchandle,PC##method); \
} \
}; \
// end #define
PETSCPRECONDITIONER(JACOBI)
PETSCPRECONDITIONER(BJACOBI)
PETSCPRECONDITIONER(SOR)
PETSCPRECONDITIONER(EISENSTAT)
PETSCPRECONDITIONER(ICC)
PETSCPRECONDITIONER(ILU)
PETSCPRECONDITIONER(ASM)
PETSCPRECONDITIONER(KSP)
//PETSCPRECONDITIONER(COMPOSITE)
PETSCPRECONDITIONER(LU)
PETSCPRECONDITIONER(CHOLESKY)
PETSCPRECONDITIONER(NONE)
//PETSCPRECONDITIONER(SHELL)
#endif // PETSCPRECONDITIONER_H
|
cdb90abf3347daad3ce4e2a86e376f9942b97392 | d2ec4eb2a2cc27b6e064510fdee137b00c6bb341 | /lab6przykład/lab6przykład/main.cpp | 0bb8f0d5e5b262c38af32c5c4e32d33691f919f6 | [] | no_license | tadeq/Cpp | 9a9f8eeb3523a8a363beb82e98c9c3b82c15fc42 | aefa8c9426df0b84c3cf3920a7a3e36359f43e94 | refs/heads/master | 2020-03-10T16:00:51.648189 | 2018-05-29T08:42:23 | 2018-05-29T08:42:23 | 129,463,624 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,834 | cpp | main.cpp | #include "Tree.h"
#include <ctime>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;
struct unique_gen {
int n = 1;
unique_gen() { n = 1; }
Tree operator()() {
Tree tree;
tree.set_age(n++);
return tree;
}
};
void grow_tree(Tree & tree) {
tree.grow();
}
int main() {
srand(time(NULL));
Tree tree;
cout << tree <<endl;
vector<Tree> v;
map<int, Tree> m;
for (int i = 0; i < 10; i++) {
Tree tree;
v.push_back(tree);
m[tree.get_key()] = tree;
}
cout << "Vector<Tree>: " << endl;
auto it = v.begin(); //std::vector<Tree>::iterator it = v.begin();
for (; it < v.end(); it++) {
cout << *it << endl;
}
auto mit = m.begin();
for (; mit != m.end(); mit++) {
cout << mit->first <<" "<<mit->second<< endl;
}
v.clear();
vector<Tree> trees (25);
cout << endl << endl << "Generated: " << endl;
generate(trees.begin(), trees.end(), unique_gen());
it = trees.begin();
for (; it < trees.end(); it++) {
cout << *it << endl;
}
auto min = min_element(trees.begin(), trees.end());
cout << "Min: " << *min;
cout << endl<< "Give tree type to find them: ";
string t;
getline(cin, t);
int counter = count_if(trees.begin(), trees.end(), [t](Tree tree) -> bool {return t == tree.get_type(); });
cout << "Number of " << t << " trees: " << counter <<endl;
auto after_rem = remove_if(trees.begin(), trees.end(), [](Tree tree) -> bool {return tree.get_diameter() > 1; });
trees.erase(after_rem, trees.end());
cout << "After erase and remove_if" << endl;
it = trees.begin();
for (; it < trees.end(); it++) {
cout << *it << endl;
}
for_each(trees.begin(), trees.end(), grow_tree);
cout << "After grow" << endl;
it = trees.begin();
for (; it < trees.end(); it++) {
cout << *it << endl;
}
cin.get();
}
|
0dde770bff8f5a24b0685c2457cfb0d71aeaa729 | 03a7a68301c01639af9c1172f7c34ac9b5477baf | /AxonDisplayBlock.h | 55bc49cef302ce79ecda3e05cdd39761a24a1cfb | [] | no_license | simonp54/AxonLibrary | ad59284363203c8a529b3ae474e7ff6cc87bb102 | f51aeba4be37b8f2fcd0ee8f2a7ec373d9ad673a | refs/heads/MASTER | 2021-12-08T08:49:08.143292 | 2021-11-30T08:20:33 | 2021-11-30T08:20:33 | 125,521,355 | 0 | 0 | null | 2018-03-24T17:22:27 | 2018-03-16T13:41:26 | C++ | UTF-8 | C++ | false | false | 368 | h | AxonDisplayBlock.h | #ifndef AXON_DISPLAY_BLOCK_h
#define AXON_DISPLAY_BLOCK_h
#include "AxonEvent.h"
#include "AxonAction.h"
#include "Arduino.h"
class AxonDisplayBlock: public AxonAction
{
public:
virtual void execute( AxonAction *sender, AxonEvent *event ) = 0; // pure virtual function definition of the Execute method (aka doesn't exist here and never will)
private:
};
#endif |
7fac940399bdb2bd4c0ef05d9b7f05a862b1ab55 | 311b48a3c1805e26f37c8074469660c522c2af8b | /doc/bme280_spi-main/bme280_spi.cpp | ded4de45f2db14fd6b54ddbb3854ddb9056fced4 | [
"MIT"
] | permissive | llooman/P2CHub | d639930f4b749650ea597a3ac0ab4f72d0c915e5 | 9feb1b65c3a62d2ffc338b7a5e518fe16cc8ed67 | refs/heads/main | 2023-09-02T05:44:41.905137 | 2021-10-25T19:58:28 | 2021-10-25T19:58:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,223 | cpp | bme280_spi.cpp |
#include "bme280_spi.hpp"
// Initialize BME280 sensor
BME280::BME280( uint spi_no = 0,
uint rx_pin = PICO_DEFAULT_SPI_RX_PIN,
uint tx_pin = PICO_DEFAULT_SPI_TX_PIN,
uint sck_pin = PICO_DEFAULT_SPI_SCK_PIN,
uint cs_pin = PICO_DEFAULT_SPI_CSN_PIN,
uint freq = 500 * 1000,
MODE mode = MODE::MODE_NORMAL) {
this->spi_no = spi_no;
this->rx_pin = rx_pin;
this->tx_pin = tx_pin;
this->sck_pin = sck_pin;
this->cs_pin = cs_pin;
this->freq = freq;
measurement_reg.mode = mode;
switch (spi_no) {
case 0: spi_hw = spi0;
break;
case 1: spi_hw = spi1;
break;
default: return;
}
// initialize SPI access
spi_init(spi_hw, freq);
// set all SPI GPIOs
gpio_set_function(rx_pin, GPIO_FUNC_SPI);
gpio_set_function(sck_pin, GPIO_FUNC_SPI);
gpio_set_function(tx_pin, GPIO_FUNC_SPI);
// Make the SPI pins available to picotool
bi_decl(bi_3pins_with_func(rx_pin, tx_pin, sck_pin, GPIO_FUNC_SPI));
// Chip select is active-low, so we'll initialise it to a driven-high state
gpio_init(cs_pin);
gpio_set_dir(cs_pin, GPIO_OUT);
gpio_put(cs_pin, 1);
// Make the CS pin available to picotool
bi_decl(bi_1pin_with_name(cs_pin, "SPI CS"));
// See if SPI is working - interrograte the device for its I2C ID number, should be 0x60
read_registers(0xD0, &chip_id, 1);
// read compensation params once
read_compensation_parameters();
measurement_reg.osrs_p = 0b011; // x4 Oversampling
measurement_reg.osrs_t = 0b011; // x4 Oversampling
write_register(0xF4, MODE::MODE_SLEEP); //SLEEP_MODE ensures configuration is saved
// save configuration
write_register(0xF2, 0x1); // Humidity oversampling register - going for x1
write_register(0xF4, measurement_reg.get());// Set rest of oversampling modes and run mode to normal
};
BME280::Measurement_t BME280::measure() {
int32_t pressure, humidity, temperature;
if (measurement_reg.mode = MODE::MODE_FORCED) {
write_register(0xf4, measurement_reg.get());
uint8_t buffer;
do {
read_registers(0xf3, &buffer, 1);
sleep_ms(1);
} while (buffer & 0x08); // loop until measurement completed
}
// read raw sensor data from BME280
bme280_read_raw(&humidity,
&pressure,
&temperature);
// compensate raw sensor values
pressure = compensate_pressure(pressure);
humidity = compensate_humidity(humidity);
temperature = compensate_temp(temperature);
measurement.pressure = pressure / 100.0;
measurement.humidity = humidity / 1024.0;
measurement.temperature = temperature / 100.0;
// apply formula to retrieve altitude from air pressure
// pressure at sea level required as a base
float pressure0 = 1013.25;
float tmp = pow(measurement.pressure / pressure0, 1.0 / 5.255);
measurement.altitude = (measurement.temperature + 273.15) * (1 - tmp) / (tmp * 0.0065);
return measurement;
}
uint8_t BME280::get_chipID() {
return chip_id;
}
// for the compensate_functions read the Bosch information on the BME280
int32_t BME280::compensate_temp(int32_t adc_T) {
int32_t var1, var2, T;
var1 = ((((adc_T >> 3) - ((int32_t) dig_T1 << 1))) * ((int32_t) dig_T2)) >> 11;
var2 = (((((adc_T >> 4) - ((int32_t) dig_T1)) * ((adc_T >> 4) - ((int32_t) dig_T1))) >> 12) * ((int32_t) dig_T3))
>> 14;
t_fine = var1 + var2;
T = (t_fine * 5 + 128) >> 8;
return T;
}
uint32_t BME280::compensate_pressure(int32_t adc_P) {
int32_t var1, var2;
uint32_t p;
var1 = (((int32_t) t_fine) >> 1) - (int32_t) 64000;
var2 = (((var1 >> 2) * (var1 >> 2)) >> 11) * ((int32_t) dig_P6);
var2 = var2 + ((var1 * ((int32_t) dig_P5)) << 1);
var2 = (var2 >> 2) + (((int32_t) dig_P4) << 16);
var1 = (((dig_P3 * (((var1 >> 2) * (var1 >> 2)) >> 13)) >> 3) + ((((int32_t) dig_P2) * var1) >> 1)) >> 18;
var1 = ((((32768 + var1)) * ((int32_t) dig_P1)) >> 15);
if (var1 == 0)
return 0;
p = (((uint32_t) (((int32_t) 1048576) - adc_P) - (var2 >> 12))) * 3125;
if (p < 0x80000000)
p = (p << 1) / ((uint32_t) var1);
else
p = (p / (uint32_t) var1) * 2;
var1 = (((int32_t) dig_P9) * ((int32_t) (((p >> 3) * (p >> 3)) >> 13))) >> 12;
var2 = (((int32_t) (p >> 2)) * ((int32_t) dig_P8)) >> 13;
p = (uint32_t) ((int32_t) p + ((var1 + var2 + dig_P7) >> 4));
return p;
}
uint32_t BME280::compensate_humidity(int32_t adc_H) {
int32_t v_x1_u32r;
v_x1_u32r = (t_fine - ((int32_t) 76800));
v_x1_u32r = (((((adc_H << 14) - (((int32_t) dig_H4) << 20) - (((int32_t) dig_H5) * v_x1_u32r)) +
((int32_t) 16384)) >> 15) * (((((((v_x1_u32r * ((int32_t) dig_H6)) >> 10) * (((v_x1_u32r *
((int32_t) dig_H3))
>> 11) + ((int32_t) 32768))) >> 10) + ((int32_t) 2097152)) *
((int32_t) dig_H2) + 8192) >> 14));
v_x1_u32r = (v_x1_u32r - (((((v_x1_u32r >> 15) * (v_x1_u32r >> 15)) >> 7) * ((int32_t) dig_H1)) >> 4));
v_x1_u32r = (v_x1_u32r < 0 ? 0 : v_x1_u32r);
v_x1_u32r = (v_x1_u32r > 419430400 ? 419430400 : v_x1_u32r);
return (uint32_t) (v_x1_u32r >> 12);
}
// select BME280 sensor on SPI bus
inline void BME280::cs_select() {
asm volatile("nop \n nop \n nop");
gpio_put(cs_pin, 0); // Active low
asm volatile("nop \n nop \n nop");
}
// deselect BME280 sensor on SPI bus
inline void BME280::cs_deselect() {
asm volatile("nop \n nop \n nop");
gpio_put(cs_pin, 1);
asm volatile("nop \n nop \n nop");
}
void BME280::write_register(uint8_t reg, uint8_t data) {
uint8_t buf[2];
buf[0] = reg & 0x7f; // remove read bit as this is a write
buf[1] = data;
cs_select();
spi_write_blocking(spi_hw, buf, 2);
cs_deselect();
sleep_ms(10);
}
void BME280::read_registers(uint8_t reg, uint8_t *buf, uint16_t len) {
// For this particular device, we send the device the register we want to read
// first, then subsequently read from the device. The register is auto incrementing
// so we don't need to keep sending the register we want, just the first.
reg |= READ_BIT;
cs_select();
spi_write_blocking(spi_hw, ®, 1);
sleep_ms(10);
spi_read_blocking(spi_hw, 0, buf, len);
cs_deselect();
sleep_ms(10);
}
/* This function reads the manufacturing assigned compensation parameters from the device */
void BME280::read_compensation_parameters() {
read_registers(0x88, buffer, 26);
dig_T1 = buffer[0] | (buffer[1] << 8);
dig_T2 = buffer[2] | (buffer[3] << 8);
dig_T3 = buffer[4] | (buffer[5] << 8);
dig_P1 = buffer[6] | (buffer[7] << 8);
dig_P2 = buffer[8] | (buffer[9] << 8);
dig_P3 = buffer[10] | (buffer[11] << 8);
dig_P4 = buffer[12] | (buffer[13] << 8);
dig_P5 = buffer[14] | (buffer[15] << 8);
dig_P6 = buffer[16] | (buffer[17] << 8);
dig_P7 = buffer[18] | (buffer[19] << 8);
dig_P8 = buffer[20] | (buffer[21] << 8);
dig_P9 = buffer[22] | (buffer[23] << 8);
dig_H1 = buffer[25];
read_registers(0xE1, buffer, 8);
dig_H2 = buffer[0] | (buffer[1] << 8);
dig_H3 = (int8_t) buffer[2];
dig_H4 = buffer[3] << 4 | (buffer[4] & 0xf);
dig_H5 = (buffer[5] >> 4) | (buffer[6] << 4);
dig_H6 = (int8_t) buffer[7];
}
// this functions reads the raw data values from the sensor
void BME280::bme280_read_raw(int32_t *humidity, int32_t *pressure, int32_t *temperature) {
uint8_t readBuffer[8];
read_registers(0xF7, readBuffer, 8);
*pressure = ((uint32_t) readBuffer[0] << 12) | ((uint32_t) readBuffer[1] << 4) | (readBuffer[2] >> 4);
*temperature = ((uint32_t) readBuffer[3] << 12) | ((uint32_t) readBuffer[4] << 4) | (readBuffer[5] >> 4);
*humidity = (uint32_t) readBuffer[6] << 8 | readBuffer[7];
}
|
1962aa3524d7de6611c94f289264c88dac53d076 | b8b41ee53e99a897fd910ccbcabff7f4fd8883fd | /6_1.cpp | 7bb8b31393d99e03cb45938f443aa10b4138530f | [] | no_license | annasychugina/TP_AISD_2016 | d0cdacb6297ac35752a498b82f527ca3bbc7cff3 | 8b1a45e4a389d3dc4ac1a8cea1a72fb9b780e521 | refs/heads/master | 2022-05-16T02:20:57.334089 | 2016-03-25T15:20:40 | 2016-03-25T15:20:40 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 1,911 | cpp | 6_1.cpp | /*
* author: Sychugina Anna
* group: АПО-12
Дано N кубиков. Требуется определить каким количеством способов можно выстроить из этих кубиков
пирамиду. На вход подается количество кубиков N.Вывести число различных пирамид из N кубиков.
6_1.?Высокая пирамида. ?Каждый вышележащий слой пирамиды должен быть не больше нижележащего.
N ? 200.
*
*/
#include <iostream>
#define MAX_AMOUNT 200
long long number_of_pyramids(const int N, const int K, long long** temp_calculation)
{
long long res = 0;
if (temp_calculation[N][K] != -1)
return temp_calculation[N][K];
//Заполнение таблицы
for (int i = N - K; i < N; i++)
{
res += number_of_pyramids(i, std::min(i, N - i), temp_calculation);
}
temp_calculation[N][K] = res; //кол-во пирамид
return res;
}
int main()
{
int N = 0;
std::cin>>N; //ввод N
//Выделение памяти
long long** table = new long long* [N + 1];
for (int i = 0; i <= N; i++)
{
table[i] = new long long[N + 1];
//заполняем -1
for (int j = 0; j <= N; j++)
{
table[i][j] = -1;
}
}
//Начало заполнения таблицы: единицы в 0-строке, 0-столбце
for (int i = 0; i <= N; i++)
{
table[i][0] = 1;
table[0][i] = 1;
}
//Вывод
std::cout << number_of_pyramids(N, N, table);
//Освобождение памяти
for (int i = 0; i <= N; i++)
{
delete [] table[i];
}
delete [] table;
return 0;
} |
2203b2c7453900f07fbf04378f75198f1dfd3e37 | dbf63cb9ed1123b1ebd2ccef9fc310f87fc4dd65 | /DCCPacketScheduler.h | 0a209b0cbd8d361954c55352087599fa7dca3fd8 | [] | no_license | thejpster/CmdrArduino | b3ca9146f977ac55e3ed96cf985ebd09e4e3e44d | a8ce7a69b7381644d5826c3bebc92bff32dffe94 | refs/heads/master | 2020-07-14T06:02:25.072208 | 2015-06-24T15:41:30 | 2015-06-24T15:41:30 | 37,811,702 | 0 | 0 | null | 2015-06-21T14:24:35 | 2015-06-21T14:24:33 | null | UTF-8 | C++ | false | false | 3,862 | h | DCCPacketScheduler.h | /*
* CmdrArduino
*
* DCC Packet Scheduler
*
* Author: Don Goodman-Wilson dgoodman@artificial-science.org
* Changes by: Jonathan Pallant dcc@thejpster.org.uk
*
* based on software by Wolfgang Kufer, http://opendcc.de
*
* Copyright 2010 Don Goodman-Wilson
* Copyright 2015 Jonathan Pallant
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* at your option) any later version.
*
* This program 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef INC_DCCPACKETSCHEDULER_H
#define INC_DCCPACKETSCHEDULER_H
#include "DCCPacket.h"
#include "DCCPacketQueue.h"
#include "DCCEmergencyQueue.h"
#include "DCCRepeatQueue.h"
#include "DCCHardware.h"
class DCCPacketScheduler
{
public:
DCCPacketScheduler(void);
//for configuration
void setDefaultSpeedSteps(uint8_t new_speed_steps);
void setup(void); //for any post-constructor initialization
//for enqueueing packets
bool setSpeed(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, int8_t new_speed, uint8_t steps = 0); //new_speed: [-127,127]
bool setSpeed14(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, int8_t new_speed, bool F0=true); //new_speed: [-13,13], and optionally F0 settings.
bool setSpeed28(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, int8_t new_speed); //new_speed: [-28,28]
bool setSpeed128(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, int8_t new_speed); //new_speed: [-127,127]
//the function methods are NOT stateful; you must specify all functions each time you call one
//keeping track of function state is the responsibility of the calling program.
bool setFunctions(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint8_t F0to4, uint8_t F5to9=0x00, uint8_t F9to12=0x00);
bool setFunctions(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint16_t functions);
bool setFunctions0to4(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint8_t functions);
bool setFunctions5to8(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint8_t functions);
bool setFunctions9to12(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint8_t functions);
//other cool functions to follow. Just get these working first, I think.
bool setBasicAccessory(DCCPacket::address_t address, uint8_t function);
bool unsetBasicAccessory(DCCPacket::address_t address, uint8_t function);
bool opsProgramCV(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind, uint16_t CV, uint8_t CV_data);
//more specific functions
bool eStop(void); //all locos
bool eStop(DCCPacket::address_t address, DCCPacket::address_kind_t address_kind); //just one specific loco
//to be called periodically within loop()
void update(void); //checks queues, puts whatever's pending on the rails via global current_packet. easy-peasy
private:
void repeatPacket(const DCCPacket& p); //insert into the appropriate repeat queue
uint8_t default_speed_steps;
uint16_t last_packet_address;
uint8_t packet_counter;
DCCEmergencyQueue e_stop_queue;
DCCPacketQueue high_priority_queue;
DCCPacketQueue low_priority_queue;
DCCRepeatQueue repeat_queue;
};
#endif // INC_DCCPACKETSCHEDULER_H
|
01d46817648e94fe88bf55086f29ef51d43b8b38 | 8596f8968ae5da3ddeea0f12e444aa1f15794fc9 | /5/ex02/RobotomyRequestForm.cpp | fc62fd70981a8a055d5ff418620846311e85f0a3 | [] | no_license | alromeros/CPP | 9ca607c7cd32d18ceabd4844b5856480adb34ad7 | 517f5111a6bfb60e22288ff648b9d4a9a2fc531a | refs/heads/master | 2022-12-30T20:04:58.528173 | 2020-09-25T13:10:17 | 2020-09-25T13:10:17 | 264,930,460 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,962 | cpp | RobotomyRequestForm.cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* RobotomyRequestForm.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alromero <alromero@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/07/06 11:55:12 by alromero #+# #+# */
/* Updated: 2020/07/08 13:05:01 by alromero ### ########.fr */
/* */
/* ************************************************************************** */
#include "RobotomyRequestForm.hpp"
RobotomyRequestForm::RobotomyRequestForm()
: Form("RobotomyRequestForm", 72, 45), target("unnamed")
{
}
RobotomyRequestForm::RobotomyRequestForm(std::string const target)
: Form("RobotomyRequestForm", 72, 45), target(target)
{
}
RobotomyRequestForm::~RobotomyRequestForm()
{
}
RobotomyRequestForm::RobotomyRequestForm(const RobotomyRequestForm& other)
: Form(other.getName(), other.getGradeSign(), other.getGradeExe()), target(other.target)
{
if (other.getSign())
this->setSign(1);
}
RobotomyRequestForm& RobotomyRequestForm::operator=(const RobotomyRequestForm &other)
{
if (other.getSign())
this->setSign(1);
return (*this);
}
void RobotomyRequestForm::execute(Bureaucrat const & executor) const
{
this->Form::execute(executor);
srand(time(NULL));
std::cout << "BZZZZZZZZZZZZZZZZZZZ... * UNBEARABLE FEEDBACK NOISE *!!!" << std::endl;
if ((rand() % 2))
std::cout << this->target << " has been robotomized!!" << std::endl;
else
std::cout << "Error in " << this->target << " robotization!!" << std::endl;
} |
92fe39a9b78972761947b2e59c5d43a6ced50278 | 169e75df163bb311198562d286d37aad14677101 | /tensorflow/contrib/lite/java/src/main/native/duration_utils_jni.cc | 0e08a04370592f6e3c92b5811fa7e163f808e03c | [
"Apache-2.0"
] | permissive | zylo117/tensorflow-gpu-macosx | e553d17b769c67dfda0440df8ac1314405e4a10a | 181bc2b37aa8a3eeb11a942d8f330b04abc804b3 | refs/heads/master | 2022-10-19T21:35:18.148271 | 2020-10-15T02:33:20 | 2020-10-15T02:33:20 | 134,240,831 | 116 | 26 | Apache-2.0 | 2022-10-04T23:36:22 | 2018-05-21T08:29:12 | C++ | UTF-8 | C++ | false | false | 1,264 | cc | duration_utils_jni.cc | /* Copyright 2017 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include <jni.h>
#include <time.h>
namespace tflite {
// Gets the elapsed wall-clock timespec.
timespec getCurrentTime() {
timespec time;
clock_gettime(CLOCK_MONOTONIC, &time);
return time;
}
// Computes the time diff from two timespecs. Returns '-1' if 'stop' is earlier
// than 'start'.
jlong timespec_diff_nanoseconds(struct timespec* start, struct timespec* stop) {
jlong result = stop->tv_sec - start->tv_sec;
if (result < 0) return -1;
result = 1000000000 * result + (stop->tv_nsec - start->tv_nsec);
if (result < 0) return -1;
return result;
}
} // namespace tflite
|
ad1910e2a33a744854c49342264478b3274b4a98 | a8e5517df264ca12e84c377270574a3cc378f0c1 | /LAVIDA/2002/solution.cpp | 3d1524f0d34eb74a51244a1c6a96f029931927f4 | [] | no_license | wowoto9772/Hungry-Algorithm | cb94edc0d8a4a3518dd1996feafada9774767ff0 | 4be3d0e2f07d01e55653c277870d93b73ec917de | refs/heads/master | 2021-05-04T23:28:12.443915 | 2019-08-11T08:11:39 | 2019-08-11T08:11:39 | 64,544,872 | 1 | 1 | null | null | null | null | UHC | C++ | false | false | 7,943 | cpp | solution.cpp | //#include <stdio.h>
//#include <memory.h>
//#include <limits.h>
//
//#include <vector>
//#include <queue>
//
//using namespace std;
//
//class ele{
//public:
// int a, c;
//};
//
//int x[5003][2], y[5003][2];
//void swp(int *a, int *b){
// int t = *a;
// *a = *b;
// *b = t;
//}
//int m(int a, int b){ return a < b ? a : b; }
//
//int main()
//{
// int r, c;
// scanf("%d %d", &r, &c);
//
// int n;
// scanf("%d", &n);
// for (int i = 1; i <= n; i++){
// int trs;
// scanf("%d", &trs);
// for (int j = 0; j < 2; j++)scanf("%d %d", &x[i][j], &y[i][j]);
// if (x[i][0] > x[i][1])swp(&x[i][0], &x[i][1]);
// if (y[i][0] > y[i][1])swp(&y[i][0], &y[i][1]);
// }
//
// vector < vector <int> > L;
// L.resize(n + 1);
//
// for (int i = 1; i <= n; i++){
// for (int j = 1; j <= n; j++){
// if (i == j)continue;
// if (x[i][0] == x[i][1]){ // 세로
// if (y[j][0] == y[j][1]){ // 가로
// if (x[j][0] <= x[i][0] && x[i][0] <= x[j][1]){
// if (y[i][0] <= y[j][0] && y[j][0] <= y[i][1]){
// L[i].push_back(j);
// }
// }
// }
// else{ // 세로
// if (x[i][0] == x[j][0]){
// if (y[i][0] <= y[j][1] && y[j][1] <= y[i][1]){
// L[i].push_back(j);
// }
// else if (y[j][0] <= y[i][1] && y[i][1] <= y[j][1]){
// L[i].push_back(j);
// }
// }
// }
// }
// else{ // 가로
// if (x[j][0] == x[j][1]){ // 세로
// if (y[j][0] <= y[i][0] && y[i][0] <= y[j][1]){
// if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
// L[i].push_back(j);
// }
// }
// }
// else{ // 가로
// if (y[i][0] == y[j][0]){
// if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
// L[i].push_back(j);
// }
// else if (x[j][0] <= x[i][1] && x[i][1] <= x[j][1]){
// L[i].push_back(j);
// }
// }
// }
// }
// }
// }
//
// int sx, sy, ax, ay;
// scanf("%d %d %d %d", &sx, &sy, &ax, &ay);
//
// ele psh, pop;
//
// int ans = INT_MAX;
//
// for (int i = 1; i <= n; i++){
// if (x[i][0] <= sx && sx <= x[i][1]){
// if (y[i][0] <= sy && sy <= y[i][1]){
// queue <ele> Q;
// int d[5003];
// memset(d, 0x2f, sizeof(d));
// psh.a = i, psh.c = 0;
// Q.push(psh);
// d[i] = 0;
//
// while (!Q.empty()){
// pop = Q.front(); Q.pop();
// pop.c++;
//
// for (int i = 0; i < L[pop.a].size(); i++){
// int nxt = L[pop.a][i];
// if (d[nxt] > pop.c){
// d[nxt] = pop.c;
// psh.a = nxt, psh.c = d[nxt];
// Q.push(psh);
// }
// }
// }
//
// for (int j = 1; j <= n; j++){
// if (x[j][0] <= ax && ax <= x[j][1]){
// if (y[j][0] <= ay && ay <= y[j][1]){
// ans = m(ans, d[j]);
// }
// }
// }
// }
// }
// }
//
// printf("%d\n" , ans+1);
//}
/*
#include <stdio.h>
#include <memory.h>
#include <limits.h>
#include <vector>
#include <queue>
using namespace std;
class ele{
public:
int a, c;
};
int x[5003][2], y[5003][2];
bool L[5003][5003];
void swp(int *a, int *b){
int t = *a;
*a = *b;
*b = t;
}
int CCW(int x, int y, int x2, int y2, int x3, int y3){
long long k = (long long)x*y2 + x2*y3 + x3*y - x2*y - x3*y2 - x*y3;
if (k < 0)return -1;
else if (k > 0)return 1;
else
return 0;
}
int main()
{
int r, c;
scanf("%d %d", &r, &c);
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++){
int trs;
scanf("%d", &trs);
for (int j = 0; j < 2; j++)scanf("%d %d", &x[i][j], &y[i][j]);
if (x[i][0] > x[i][1])swp(&x[i][0], &x[i][1]);
if (y[i][0] > y[i][1])swp(&y[i][0], &y[i][1]);
}
for (int i = 1; i <= n; i++){
for (int j = i + 1; j <= n; j++){
if (x[i][0] == x[i][1]){ // 세로
if (y[j][0] == y[j][1]){ // 가로
if (x[j][0] <= x[i][0] && x[i][0] <= x[j][1]){
if (y[i][0] <= y[j][0] && y[j][0] <= y[i][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
else{ // 세로
if (x[i][0] == x[j][0]){
if (y[i][0] <= y[j][1] && y[j][1] <= y[i][1]){
L[i][j] = true;
L[j][i] = true;
}
else if (y[j][0] <= y[i][1] && y[i][1] <= y[j][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
}
else{ // 가로
if (x[j][0] == x[j][1]){ // 세로
if (y[j][0] <= y[i][0] && y[i][0] <= y[j][1]){
if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
else{ // 가로
if (y[i][0] == y[j][0]){
if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
L[i][j] = true;
L[j][i] = true;
}
else if (x[j][0] <= x[i][1] && x[i][1] <= x[j][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
}
}
}
int sx, sy, ax, ay;
scanf("%d %d %d %d", &sx, &sy, &ax, &ay);
ele psh, pop;
bool chk[5003] = { 0 };
queue <ele> Q;
for (int i = 1; i <= n; i++){
if (x[i][0] <= sx && sx <= x[i][1]){
if (y[i][0] <= sy && sy <= y[i][1]){
psh.a = i, psh.c = 1;
Q.push(psh);
chk[i] = true;
}
}
}
while (!Q.empty()){
pop = Q.front(); Q.pop();
if (x[pop.a][0] <= ax && ax <= x[pop.a][1]){
if (y[pop.a][0] <= ay && ay <= y[pop.a][1]){
printf("%d\n", pop.c);
break;
}
}
for (int j = 1; j <= n; j++){
if (L[pop.a][j] && !chk[j]){
chk[j] = true;
psh.a = j, psh.c = pop.c + 1;
Q.push(psh);
}
}
}
}
*/
#include <stdio.h>
#include <memory.h>
#include <limits.h>
#include <vector>
#include <queue>
using namespace std;
class ele{
public:
int a, c;
};
int x[5003][2], y[5003][2];
bool L[5003][5003];
void swp(int *a, int *b){
int t = *a;
*a = *b;
*b = t;
}
int CCW(int x, int y, int x2, int y2, int x3, int y3){
long long k = (long long)x*y2 + x2*y3 + x3*y - x2*y - x3*y2 - x*y3;
if (k < 0)return -1;
else if (k > 0)return 1;
else
return 0;
}
int main()
{
int r, c;
scanf("%d %d", &r, &c);
int n;
scanf("%d", &n);
for (int i = 1; i <= n; i++){
int trs;
scanf("%d", &trs);
for (int j = 0; j < 2; j++)scanf("%d %d", &x[i][j], &y[i][j]);
if (x[i][0] > x[i][1])swp(&x[i][0], &x[i][1]);
if (y[i][0] > y[i][1])swp(&y[i][0], &y[i][1]);
}
for (int i = 1; i <= n; i++){
for (int j = i + 1; j <= n; j++){
if (x[i][0] == x[i][1]){ // 세로
if (y[j][0] == y[j][1]){ // 가로
if (x[j][0] <= x[i][0] && x[i][0] <= x[j][1]){
if (y[i][0] <= y[j][0] && y[j][0] <= y[i][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
else{ // 세로
if (x[i][0] == x[j][0]){
if (y[i][0] <= y[j][1] && y[j][1] <= y[i][1]){
L[i][j] = true;
L[j][i] = true;
}
else if (y[j][0] <= y[i][1] && y[i][1] <= y[j][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
}
else{ // 가로
if (x[j][0] == x[j][1]){ // 세로
if (y[j][0] <= y[i][0] && y[i][0] <= y[j][1]){
if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
else{ // 가로
if (y[i][0] == y[j][0]){
if (x[i][0] <= x[j][0] && x[j][0] <= x[i][1]){
L[i][j] = true;
L[j][i] = true;
}
else if (x[j][0] <= x[i][1] && x[i][1] <= x[j][1]){
L[i][j] = true;
L[j][i] = true;
}
}
}
}
}
}
int sx, sy, ax, ay;
scanf("%d %d %d %d", &sx, &sy, &ax, &ay);
ele psh, pop;
bool chk[5003] = { 0 };
queue <ele> Q;
for (int i = 1; i <= n; i++){
for (int j = i + 1; j < n; j++){
if (x[i][0] <= sx && sx <= x[i][1]){
if (y[i][0] <= sy && sy <= y[i][1]){
int a = CCW(x[i][0], y[i][0], x[i][1], y[i][1], x[j][0], y[j][0]);
int b = CCW(x[i][0], y[i][0], x[i][1], y[i][1], x[j][1], y[j][1]);
int c = CCW(x[j][0], y[j][0], x[j][1], y[j][1], x[i][0], y[i][0]);
int d = CCW(x[j][0], y[j][0], x[j][1], y[j][1], x[i][1], y[i][1]);
if (a * b <= 0){
if (c * d <= 0){
L[i][j] = true;
L[j][i] = true;
}
}
}
}
}
while (!Q.empty()){
pop = Q.front(); Q.pop();
if (x[pop.a][0] <= ax && ax <= x[pop.a][1]){
if (y[pop.a][0] <= ay && ay <= y[pop.a][1]){
printf("%d\n", pop.c);
break;
}
}
for (int j = 1; j <= n; j++){
if (L[pop.a][j] && !chk[j]){
chk[j] = true;
psh.a = j, psh.c = pop.c + 1;
Q.push(psh);
}
}
}
}
}
/*
1 1
4
1 1 1 1 2
1 2 1 1 1
3 3 3 3 3
1 1 2 1 5
1 1 2 1
*/ |
0669f7c3083f051aadfa89c0df1b377e6600f403 | 153a746ea3246cdc04ac0413c9793309ca924d08 | /src/commands/CmdReport.cpp | 2870b9f5d66037f60da761b97f78d019e3ca4721 | [
"MIT"
] | permissive | GothenburgBitFactory/timewarrior | bfbc0e9960012ce47c1134ca60ba06077cfa8724 | a72659f753af283879a5c3bfb71448583a2ba7b7 | refs/heads/develop | 2023-09-04T20:55:38.830794 | 2020-03-06T13:52:22 | 2023-08-11T18:50:29 | 120,080,436 | 1,082 | 129 | MIT | 2023-09-11T23:20:14 | 2018-02-03T10:15:22 | C++ | UTF-8 | C++ | false | false | 5,301 | cpp | CmdReport.cpp | ////////////////////////////////////////////////////////////////////////////////
//
// Copyright 2016 - 2022, Thomas Lauf, Paul Beckingham, Federico Hernandez.
//
// 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.
//
// https://www.opensource.org/licenses/mit-license.php
//
////////////////////////////////////////////////////////////////////////////////
#include <FS.h>
#include <IntervalFilterAllInRange.h>
#include <IntervalFilterAllWithTags.h>
#include <IntervalFilterAndGroup.h>
#include <cmake.h>
#include <commands.h>
#include <format.h>
#include <iostream>
#include <shared.h>
#include <timew.h>
////////////////////////////////////////////////////////////////////////////////
// Given a partial match for an extension script name, find the full patch of
// the extension it may match.
static std::string findExtension (
const Extensions& extensions,
const std::string& partial)
{
auto scripts = extensions.all ();
std::vector <std::string> options;
for (auto& script : scripts)
{
options.push_back (Path (script).name ());
}
std::vector <std::string> matches;
autoComplete (partial, options, matches);
if (matches.empty ())
{
throw format ("The report '{1}' is not recognized.", partial);
}
if (matches.size () > 1)
{
throw format ("The report '{1}' is ambiguous, and could mean one of: {2}",
partial,
join (", ", matches));
}
// Now map matches[0] back to it's corresponding option.
for (auto& script : scripts)
{
if (Path (script).name () == matches[0])
{
return script;
}
}
return "";
}
std::string basename (const std::string &script_path)
{
const auto lastSlash = script_path.find_last_of ('/');
if (lastSlash != std::string::npos)
{
return script_path.substr (lastSlash + 1);
}
return script_path;
}
std::string dropExtension (const std::string& basename)
{
const auto lastDot = basename.find_last_of ('.');
if (lastDot != std::string::npos)
{
return basename.substr (0, lastDot);
}
return basename;
}
std::string getScriptName (const std::string& script_path)
{
return dropExtension (basename (script_path));
}
////////////////////////////////////////////////////////////////////////////////
int CmdReport (
const CLI& cli,
Rules& rules,
Database& database,
const Extensions& extensions)
{
std::string script_path;
for (auto& arg : cli._args)
{
if (arg.hasTag ("EXT"))
{
script_path = findExtension (extensions, arg.attribute ("canonical"));
}
}
if (script_path.empty ())
{
throw std::string ("Specify which report to run.");
}
auto script_name = getScriptName (script_path);
auto default_hint = rules.get ("reports.range", "all");
auto report_hint = rules.get (format ("reports.{1}.range", script_name), default_hint);
Range default_range = {};
expandIntervalHint (":" + report_hint, default_range);
// Create a filter, and if empty, choose the current week.
auto tags = cli.getTags ();
auto range = cli.getRange (default_range);
IntervalFilterAndGroup filtering ({
std::make_shared <IntervalFilterAllInRange> (range),
std::make_shared <IntervalFilterAllWithTags> (tags)
});
auto tracked = getTracked (database, rules, filtering);
// Compose Header info.
rules.set ("temp.report.start", range.is_started () ? range.start.toISO () : "");
rules.set ("temp.report.end", range.is_ended () ? range.end.toISO () : "");
rules.set ("temp.report.tags", joinQuotedIfNeeded (",", tags));
rules.set ("temp.version", VERSION);
std::stringstream header;
for (auto& name : rules.all ())
{
header << name << ": " << rules.get (name) << '\n';
}
// Get the data.
auto input = header.str ()
+ '\n'
+ jsonFromIntervals (tracked);
// Run the extensions.
std::vector <std::string> output;
int rc = extensions.callExtension (script_path, split (input, '\n'), output);
if (rc != 0 && output.empty ())
{
throw format ("'{1}' returned {2} without producing output.", script_path, rc);
}
// Display the output.
for (auto& line : output)
{
std::cout << line << '\n';
}
return rc;
}
////////////////////////////////////////////////////////////////////////////////
|
440cf9a8e819c351b711bad7c87f83e3d0f7e6ce | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-iot/include/aws/iot/model/AwsJobAbortCriteria.h | 2268dbe938cb331e80634f9400bfdcac2ab3fa8c | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 6,478 | h | AwsJobAbortCriteria.h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/iot/IoT_EXPORTS.h>
#include <aws/iot/model/AwsJobAbortCriteriaFailureType.h>
#include <aws/iot/model/AwsJobAbortCriteriaAbortAction.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace IoT
{
namespace Model
{
/**
* <p>The criteria that determine when and how a job abort takes
* place.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/AwsJobAbortCriteria">AWS
* API Reference</a></p>
*/
class AwsJobAbortCriteria
{
public:
AWS_IOT_API AwsJobAbortCriteria();
AWS_IOT_API AwsJobAbortCriteria(Aws::Utils::Json::JsonView jsonValue);
AWS_IOT_API AwsJobAbortCriteria& operator=(Aws::Utils::Json::JsonView jsonValue);
AWS_IOT_API Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline const AwsJobAbortCriteriaFailureType& GetFailureType() const{ return m_failureType; }
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline bool FailureTypeHasBeenSet() const { return m_failureTypeHasBeenSet; }
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline void SetFailureType(const AwsJobAbortCriteriaFailureType& value) { m_failureTypeHasBeenSet = true; m_failureType = value; }
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline void SetFailureType(AwsJobAbortCriteriaFailureType&& value) { m_failureTypeHasBeenSet = true; m_failureType = std::move(value); }
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline AwsJobAbortCriteria& WithFailureType(const AwsJobAbortCriteriaFailureType& value) { SetFailureType(value); return *this;}
/**
* <p>The type of job execution failures that can initiate a job abort.</p>
*/
inline AwsJobAbortCriteria& WithFailureType(AwsJobAbortCriteriaFailureType&& value) { SetFailureType(std::move(value)); return *this;}
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline const AwsJobAbortCriteriaAbortAction& GetAction() const{ return m_action; }
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline bool ActionHasBeenSet() const { return m_actionHasBeenSet; }
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline void SetAction(const AwsJobAbortCriteriaAbortAction& value) { m_actionHasBeenSet = true; m_action = value; }
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline void SetAction(AwsJobAbortCriteriaAbortAction&& value) { m_actionHasBeenSet = true; m_action = std::move(value); }
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline AwsJobAbortCriteria& WithAction(const AwsJobAbortCriteriaAbortAction& value) { SetAction(value); return *this;}
/**
* <p>The type of job action to take to initiate the job abort.</p>
*/
inline AwsJobAbortCriteria& WithAction(AwsJobAbortCriteriaAbortAction&& value) { SetAction(std::move(value)); return *this;}
/**
* <p>The minimum percentage of job execution failures that must occur to initiate
* the job abort.</p> <p>Amazon Web Services IoT Core supports up to two digits
* after the decimal (for example, 10.9 and 10.99, but not 10.999).</p>
*/
inline double GetThresholdPercentage() const{ return m_thresholdPercentage; }
/**
* <p>The minimum percentage of job execution failures that must occur to initiate
* the job abort.</p> <p>Amazon Web Services IoT Core supports up to two digits
* after the decimal (for example, 10.9 and 10.99, but not 10.999).</p>
*/
inline bool ThresholdPercentageHasBeenSet() const { return m_thresholdPercentageHasBeenSet; }
/**
* <p>The minimum percentage of job execution failures that must occur to initiate
* the job abort.</p> <p>Amazon Web Services IoT Core supports up to two digits
* after the decimal (for example, 10.9 and 10.99, but not 10.999).</p>
*/
inline void SetThresholdPercentage(double value) { m_thresholdPercentageHasBeenSet = true; m_thresholdPercentage = value; }
/**
* <p>The minimum percentage of job execution failures that must occur to initiate
* the job abort.</p> <p>Amazon Web Services IoT Core supports up to two digits
* after the decimal (for example, 10.9 and 10.99, but not 10.999).</p>
*/
inline AwsJobAbortCriteria& WithThresholdPercentage(double value) { SetThresholdPercentage(value); return *this;}
/**
* <p>The minimum number of things which must receive job execution notifications
* before the job can be aborted.</p>
*/
inline int GetMinNumberOfExecutedThings() const{ return m_minNumberOfExecutedThings; }
/**
* <p>The minimum number of things which must receive job execution notifications
* before the job can be aborted.</p>
*/
inline bool MinNumberOfExecutedThingsHasBeenSet() const { return m_minNumberOfExecutedThingsHasBeenSet; }
/**
* <p>The minimum number of things which must receive job execution notifications
* before the job can be aborted.</p>
*/
inline void SetMinNumberOfExecutedThings(int value) { m_minNumberOfExecutedThingsHasBeenSet = true; m_minNumberOfExecutedThings = value; }
/**
* <p>The minimum number of things which must receive job execution notifications
* before the job can be aborted.</p>
*/
inline AwsJobAbortCriteria& WithMinNumberOfExecutedThings(int value) { SetMinNumberOfExecutedThings(value); return *this;}
private:
AwsJobAbortCriteriaFailureType m_failureType;
bool m_failureTypeHasBeenSet = false;
AwsJobAbortCriteriaAbortAction m_action;
bool m_actionHasBeenSet = false;
double m_thresholdPercentage;
bool m_thresholdPercentageHasBeenSet = false;
int m_minNumberOfExecutedThings;
bool m_minNumberOfExecutedThingsHasBeenSet = false;
};
} // namespace Model
} // namespace IoT
} // namespace Aws
|
56ff6f12d4959d940a1520029caf29220649f03f | 09710946270b2006d1dc0fb3a9b365c031425d78 | /src/Grid.hpp | cf4c3db3990d1a1e90aab9d11f6180f7aea9ce0b | [] | no_license | AkiSchmatzler/Raycaster | 89e01c113792532e200fc8194c811575214333bb | 2e3e1ffcbdbed6e9d169d26015165822407be479 | refs/heads/master | 2023-07-19T11:46:15.876621 | 2021-09-07T20:54:28 | 2021-09-07T20:54:28 | 404,119,416 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | hpp | Grid.hpp | /**
* \file Grid.hpp
* \brief header for getGrid function
* \date 07/09/2021
* \author Aki Schmatzler
*/
#ifndef __GRID_H
#define __GRID_H
#include <iostream>
#include <fstream>
#include <cstdlib>
int** getGrid (char* filename, int* X, int* Y);
#endif
|
5b51f88f3569625d5307724bba3cb27e4eac571f | c2c821f8b1c9cd66e2b91963651d0e936ae4d483 | /Student.cpp | a7502dec076f7450820cc30b27a5c8dfa6eda75e | [] | no_license | GezelligCode/Student-Roster-Database | d291b0237714111243db99f4f92873d5bc9f605e | 5bdb6809a5068d628a98c269cf96aba251a8db88 | refs/heads/master | 2023-06-12T06:29:37.074513 | 2021-07-07T01:28:09 | 2021-07-07T01:28:09 | 336,691,782 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,548 | cpp | Student.cpp | #include <iostream>
#include <vector>
#include <string>
#include "student.h"
#include "Roster.h"
using namespace std;
using namespace Degrees;
Degrees::DegreeProgram Convert(string parsedDegreeProgram) {
if (parsedDegreeProgram == "SECURITY") {
return SECURITY;
}
else if (parsedDegreeProgram == "NETWORK") {
return NETWORK;
}
else if (parsedDegreeProgram == "SOFTWARE") {
return SOFTWARE;
}
}
// default constructor
Student::Student() {
cout << "Student default constructor called." << endl;
studentObjPtr = new string; // allocate mem
*studentObjPtr = "-";
return;
}
// copy constructor
Student::Student(const Student& origStudent) {
cout << "Student copy constructor called." << endl;
studentObjPtr = new string;
*studentObjPtr = *(origStudent.studentObjPtr);
return;
}
// destructor
Student::~Student() {
cout << "Student destructor called." << endl;
delete studentObjPtr;
return;
}
string Student::GetStudentID() {
return *studentObjPtr;
};
void Student::SetStudentID(string ID) {
*studentObjPtr = ID;
return;
}
void Student::GetFirstName() {
cout << *studentObjPtr;
return;
}
void Student::SetFirstName(string fName) {
*studentObjPtr = fName;
return;
}
void Student::GetLastName() {
cout << *studentObjPtr;
return;
}
void Student::SetLastName(string lName) {
*studentObjPtr = lName;
return;
}
string Student::GetEmailAddress() {
//cout << *studentObjPtr;
return *studentObjPtr;
};
void Student::SetEmailAddress(string emailAddress) {
*studentObjPtr = emailAddress;
return;
};
void Student::GetAge() {
cout << *studentObjPtr;
return;
};
void Student::SetAge(int age) {
*studentObjPtr = to_string(age);
return;
};
string Student::GetDaysInCourse() {
return *studentObjPtr;
};
void Student::SetDaysInCourse(int daysInCourse1, int daysInCourse2, int daysInCourse3) {
*studentObjPtr = ((to_string(daysInCourse1) + ", " + to_string(daysInCourse2) + ", " + to_string(daysInCourse3)));
return;
};
string Student::GetDegreeProgram() {
return *studentObjPtr;
};
void Student::SetDegreeProgram(DegreeProgram degreeProgram) {
switch (degreeProgram) {
case 0:
*studentObjPtr = "SECURITY";
break;
case 1:
*studentObjPtr = "NETWORK";
break;
case 2:
*studentObjPtr = "SOFTWARE";
break;
}
return;
}
void Student::Print() const {
cout << *studentObjPtr;
return;
} |
c716e4af63af846de16e735d2128d2ba114776d2 | 16b71146baefca3b7bbfacb911312f31b9dc6768 | /tutorial/12-daytime-sync-UDP-server.cpp | be9c0a790a8546279d162c7f464c519b997b4244 | [] | no_license | ya-ming/boost-asio | 27f96dfffcc8012f8fddd122dd569d827d77c800 | b69fd806bb343ae212935f4bfda7b9dda3494a87 | refs/heads/master | 2021-05-23T14:54:17.188406 | 2020-04-22T01:45:39 | 2020-04-22T01:45:39 | 253,348,615 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,308 | cpp | 12-daytime-sync-UDP-server.cpp | #include <ctime>
#include <iostream>
#include <string>
#include <boost/array.hpp>
#include <boost/asio.hpp>
using boost::asio::ip::udp;
std::string make_daytime_string()
{
using namespace std;
time_t now = time(0);
return ctime(&now);
}
int main()
{
try
{
boost::asio::io_context io_context;
/* Create an ip::udp::socket object to receive requests on UDP port 13. */
udp::socket socket(io_context, udp::endpoint(udp::v4(), 13));
/* Wait for a client to initiate contact with us.
The remote_endpoint object will be populated by ip::udp::socket::receive_from(). */
for (;;)
{
boost::array<char, 1> recv_buf;
udp::endpoint remote_endpoint;
boost::system::error_code error;
socket.receive_from(boost::asio::buffer(recv_buf), remote_endpoint);
/* Determine what we are going to send back to the client. */
std::string message = make_daytime_string();
/* Send the response to the remote_endpoint. */
boost::system::error_code ignored_error;
socket.send_to(boost::asio::buffer(message), remote_endpoint, 0, ignored_error);
}
}
/* Finally, handle any exceptions. */
catch (std::exception &e)
{
std::cerr << e.what() << std::endl;
}
return 0;
} |
4414b903d802dda67af50eb50c3882582e1ea8f6 | 5521a03064928d63cc199e8034e4ea76264f76da | /fboss/thrift_cow/visitors/TraverseHelper.h | 85a553e36dab020083cc908f060719374543eccf | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | facebook/fboss | df190fd304e0bf5bfe4b00af29f36b55fa00efad | 81e02db57903b4369200eec7ef22d882da93c311 | refs/heads/main | 2023-09-01T18:21:22.565059 | 2023-09-01T15:53:39 | 2023-09-01T15:53:39 | 31,927,407 | 925 | 353 | NOASSERTION | 2023-09-14T05:44:49 | 2015-03-09T23:04:15 | C++ | UTF-8 | C++ | false | false | 1,399 | h | TraverseHelper.h | // (c) Facebook, Inc. and its affiliates. Confidential and proprietary.
#pragma once
namespace facebook::fboss::thrift_cow {
enum class VisitorType {
/* It can be useful to know the visitor type when making decisions
* in a traverse helper as some use cases compose visitors together
* and the behavior may change depending on which visitor is
* running.
*/
DELTA,
RECURSE
};
template <typename Impl>
class TraverseHelper {
public:
void push(std::string&& tok) {
currentPath_.emplace_back(std::move(tok));
onPush();
}
void pop() {
currentPath_.pop_back();
onPop();
}
bool shouldShortCircuit(VisitorType visitorType) const {
return static_cast<const Impl*>(this)->shouldShortCircuitImpl(visitorType);
}
const std::vector<std::string>& path() const {
// TODO: const ref?
return currentPath_;
}
private:
void onPush() {
return static_cast<Impl*>(this)->onPushImpl();
}
void onPop() {
return static_cast<Impl*>(this)->onPopImpl();
}
std::vector<std::string> currentPath_;
};
struct SimpleTraverseHelper : TraverseHelper<SimpleTraverseHelper> {
using Base = TraverseHelper<SimpleTraverseHelper>;
using Base::shouldShortCircuit;
bool shouldShortCircuitImpl(VisitorType visitorType) const {
return false;
}
void onPushImpl() {}
void onPopImpl() {}
};
} // namespace facebook::fboss::thrift_cow
|
a8f456e76c61337be6121a9da499d5aadd4fec6d | 5144482e307223249e6158dc5f039aee3ce56caf | /Calibration/Calibration/main.cpp | 3e83fcefe4f0cbe6cfb8d957a98660a1e28f3f45 | [] | no_license | AlicePang/Structured-Light-Calibration | 4c02f86e38bf1678c7168d2509a49ff3c88386fc | d07e6201c4fbb0856703ac29207715e52afd18a4 | refs/heads/master | 2022-04-22T04:48:31.438731 | 2020-04-22T10:12:20 | 2020-04-22T10:12:20 | 257,858,606 | 0 | 0 | null | 2020-04-22T09:48:31 | 2020-04-22T09:48:30 | null | GB18030 | C++ | false | false | 240 | cpp | main.cpp | #include "head.h"
using namespace cv;
using namespace std;
int main()
{
// 创建类:
CCalibration myCalibration; // 标定类
myCalibration.Init();
myCalibration.Calibrate();
myCalibration.Result();
system("PAUSE");
return 0;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.